@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Bold.ttf');
    font-weight: 700;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Medium.ttf');
    font-weight: 500;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Light.ttf');
    font-weight: 300;
}

@font-face {
    font-family: 'Onder';
    src: url('../fonts/ONDER-REGULAR.TTF');
}


* {
    margin: 0;
    padding: 0;
    outline: none;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}


button {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

button {
    border: none;
    display: block;
    border-radius: 16px;
    outline: none;
    transition: 0.5s ease-in;
    cursor: pointer;
}

.logo img {
    shape-rendering: geometricPrecision;
    image-rendering: -webkit-optimize-contrast;
}

img {
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style-type: none;
}

img {
    max-width: 100%;
    display: block;
}

table {
    width: 100%;
    border-collapse: collapse;
}

:root {
    --container: 1316px;
    --pad: 16px;
    --pad-lg: 0px;

    --bg-pos-x: 50%;
    --bg-pos-y: 0%;

    --bg: #ffffff;
    --background: #F2F2F2;
    --text: #202020;
    --muted: rgba(14, 20, 34, 0.65);

    --white: #F8F8F8;
    --grey: #F5F5F5;
    --darkgrey: #f9f9f9;
    --dark: #0b1020;
    --dark-2: #1B1E18;
    --btn: #EF5345;

    --radius-lg: 28px;
    --radius-md: 14px;

    --space-8: 8px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-32: 32px;
    --space-40: 40px;
    --space-56: 56px;


    --fs-footer-logo: 24px;
    /* из Figma */
    --fs-footer-title: 14px;
    /* "Проекты", "Компания", "Адрес" */
    --fs-footer-soft-title: 16px;
    /* "Хаусботы и дома на воде" (если отличается) */
    --fs-footer-link: 18px;
    /* ссылки в колонках */
    --fs-footer-contact: 16px;
    /* телефон/email слева, если отличаются */
    --fs-footer-addr: 18px;
    /* адрес/время */
    --fs-footer-badge: 12px;
    /* “Разработано веб-студией” */

    --footer-bg: #191919;
    /* из svg макета */
    --footer-accent: #d1a06f;
    /* песочный */

    /* Production cards (from Figma) */
    --prod-w: 290px;
    --prod-h: 515px;
    --prod-img-h: 402px;
    --prod-label-w: 274px;
    --prod-label-h: 134px;
    --prod-overlap: 21px;
}

body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, Arial,
        sans-serif;
    color: var(--text);
    background: var(--background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.dark-body {
    background: rgba(32, 32, 32, 1);
}

.container {
    max-width: var(--container);
    margin: 0 auto;
}


.section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.flex_row {
    display: flex;
    flex-direction: row;
}

.flex_column {
    display: flex;
    flex-direction: column;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.grid-2_row {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.span-2 {
    grid-column: span 2;
}

.span-4 {
    grid-column: span 4;
}

.top_mar {
    margin-top: 80px;
}

.top_pad {
    padding-top: 80px;
}

.top_pad_62 {
    padding-top: 62px;
}

.top_mar_64 {
    margin-top: 64px;
}

.top_mar_68 {
    margin-top: 68px;
}

.top_mar_44 {
    margin-top: 44px;
}

.top_mar_24 {
    margin-top: 24px;
}

.btm_pad {
    padding-bottom: 80px;
}

.pad_20 {
    padding: var(--space-20);
}

.pad_24 {
    padding: var(--space-24);
}

.gap_8 {
    gap: var(--space-8);
}

.gap_12 {
    gap: var(--space-12);
}

.gap_16 {
    gap: var(--space-16);
}

.gap_24 {
    gap: var(--space-24);
}

.span-2 {
    grid-column: span 2;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

a {
    cursor: pointer;
}

.light--btn {
    background: #fff;
    padding: 10px 32px;
    border-radius: 16px;
}

.dark--btn {
    background-color: var(--text);
    color: var(--bg);
    border-radius: 16px;
}

/* card */
.card {
    background-color: var(--bg);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.card-2 {
    background-color: rgba(42, 42, 42, 1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

/* title */
.title_content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title {
    font-size: 48px;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    letter-spacing: 2%;
}

.title_header {
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
}

.subtitle {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 120%;
    opacity: 0.8;
    letter-spacing: 2%;
}


/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-top: 30px;
}

.header__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 13px 32px;
    border-radius: 16px;
    background: rgba(38, 38, 38, 0.33);
    /* #26262656 */
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    transition: all 0.5s ease;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 32px;
}

.logo img {
    width: 100%;
    max-width: 190px;
    height: auto;
    display: block;
}

.desktop-nav .nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav__link {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: 2%;
    font-weight: 500;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav__link:hover {
    opacity: 0.7;
}

.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__right_icon {
    display: flex;
    gap: 10px;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.icon-btn__icon {
    width: 26px;
    height: 26px;
    display: block;
}

.header__right_btn {
    background: #6B6B6B;
    font-size: 14px;
    letter-spacing: 2%;
    line-height: 20px;
    border-radius: 16px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.header__right_btn:hover {
    background: var(--text);
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: relative;
}

.burger-btn span {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.burger-btn.active span:first-child {
    transform: rotate(45deg);
    position: absolute;
    top: 9px;
    left: 0;
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:last-child {
    transform: rotate(-45deg);
    position: absolute;
    top: 9px;
    left: 0;
}

.mobile-menu {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu.active {
    max-height: fit-content;
    opacity: 1;
}

.mobile-menu.active .header__right_btn {
    display: block;
    margin-bottom: 14px;
}

.mobile-menu .nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 32px 0 0 0;
    margin: 0;
    width: 100%;
}

.mobile-menu .nav__link {
    font-size: 20px;
    color: white;
    text-transform: uppercase;
    font-weight: 400;
}

.mobile-only-right .header__right_btn {
    background-color: var(--btn);
}

/* banner */
.banner_main {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 64px;
    overflow: hidden;
}

section.banner_main {
    border-radius: 0 0 24px 24px;
}

.banner_main::before {
    content: '';
    position: absolute;
    bottom: 103px;
    left: 0;
    right: 0;
    height: 292px;
    background: linear-gradient(180deg, rgba(32, 32, 32, 0) 0%, rgba(32, 32, 32, 1) 100%);
    z-index: 1;
}

.banner_main::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 0px;
    right: 0px;
    height: 145px;
    background: rgba(32, 32, 32, 1);
    z-index: 0;
    border-radius: 0 0 24px 24px;
}

.banner_main__content {
    z-index: 2;
    color: white;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}

.title-sub {
    position: relative;
}


.banner__title,
.banner__title_span {
    font-size: 59px;
    font-weight: bold;
    line-height: 180%;
    font-family: 'Onder';
    text-transform: uppercase;
    white-space: pre-line;
}

.banner_title_sub {
    display: flex;
    align-items: center;
    gap: 24px;
    position: absolute;
    left: 594px;
    top: 13px;
}

.banner_title_sub p {
    white-space: pre-line;
    line-height: 120%;
    font-size: 28px;
    color: #F7F7F7;
    font-weight: 400;
    letter-spacing: 2%;
}

.banner_main__subtitle img {
    width: 30px;
    height: auto;
}

/* cases */
.cases_title {
    align-items: end;
    justify-content: space-between;
}

.cases--content {
    display: none;
    opacity: 0;
    justify-content: center;
    gap: 24px;
    align-items: center;
}

.cases--content.static {
    display: flex;
    opacity: 1;
    justify-content: center;
    gap: 24px;
    align-items: center;
}


.cases--content.active {
    display: flex;
    gap: 24px;
    align-items: center;
    animation: fadeIn 0.4s ease forwards;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.cases_filter {
    margin-bottom: 8px;
    gap: 8px;
    align-items: center;
}

.cases_filter p {
    font-size: 12px;
    line-height: 130%;
    letter-spacing: 2%;
    color: #545454;
}

.cases_filter__tabs {
    background-color: var(--bg);
    padding: 8px 12px;
    border-radius: 24px;
    gap: 16px;
}

.filter_tab {
    padding: 12px 16px;
    transition: 0.5s;
    font-size: 14px;
    border-radius: 16px;
}

.filter_tab.active {
    background-color: var(--text);
    border-radius: 16px;
    color: var(--bg);
    transition: 0.5s;
}

.cases_filter--btn {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    background-color: #FAFAFA;
    letter-spacing: 2%;
    margin-bottom: 9.5px;
    transition: 0.5s ease;
}

.cases_filter--btn:hover {
    background-color: var(--text);
    color: #fff;
}

.cases--btn {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    background-color: #FAFAFA;
    letter-spacing: 2%;
    transition: 0.5s ease;
}

.cases--btn:hover {
    background-color: var(--text);
    color: #fff;
    transition: 0.5s ease;

}

.cases_cards.grid-2 {
    width: 100%;
}

.cases_cards {
    gap: 24px 16px;
}

.cases_card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background-color: var(--card-bg-color, #F8F8F8);
}

.cases_card__bg {
    position: absolute;
    top: 161px;
    left: -10px;
    z-index: 1;

    font-size: 120px;
    line-height: 80%;
    letter-spacing: 2%;
    font-weight: 700;
    opacity: 0.03;
    color: #000;
}

.cases_card--content {

    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;

    z-index: 2;
    pointer-events: none;
}

.cases_card--content {
    position: relative;
    z-index: 3;
    padding: 24px;
}

.cases_card--content h3 {
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 2%;
    font-weight: 700;
}

.cases_card__cheaps {
    gap: 8px;
    margin-top: 175.85px;
}

.cases_card__cheaps p {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 2%;
    font-weight: 300;
}

.cases_card__adv {
    gap: 8px;
}

.cases_card__adv p {
    border-radius: 8px;
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
}

.cases_card_desc {
    font-size: 14px;
    line-height: 120%;
    font-weight: 300;
    margin-bottom: 4px;
}

.cases_card--content {
    position: relative;
    z-index: 3;
    padding: 24px;
}

.cases_card--bg-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    z-index: -1;
    transition: transform 0.6s ease-out;
    pointer-events: none;
    transform-origin: right bottom;
}

.cases_card.card:hover .cases_card--bg-image {
    transform: scale(1.05);
}

/* text_block__v1 */

.text_block__v1--cards {
    gap: 24px;
}

.text_block__v1--card {
    padding: var(--space-24);
}

.text_block__v1_subtitle {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 2%;
    padding-bottom: 8px;
    font-weight: 400;
}

.text_block__v1_title {
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 2%;
    white-space: pre-line;
    padding-bottom: 32px;
    text-transform: uppercase;
    font-weight: 700;
}

.card_cpan {
    color: #EF5345;
}

.text_block__v1_text {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 2%;
    font-weight: 400;
}

.text_block__v1--content img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/* text_block__v2 */
.text_block__v2 {
    position: relative;
    border-radius: 24px;
    width: 100%;
    box-sizing: border-box;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.text_block__v2::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 290px;
    background: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 1) 100%);
    z-index: 1;
}

.text_block__v2--content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 12px;
    padding: 150px 32px 32px 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.text_block__v2--title h2 {
    font-size: 32px;
    font-weight: 600;
    color: #fff;
    line-height: 120%;
    margin-bottom: 8px;
}

.form-span {
    color: #FF3624;
    font-weight: 600;
}

.text_block__v2--title p {
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
    letter-spacing: 2%;
    color: #fff;
    margin-bottom: 18px;
}

.text_block__v2--form {
    display: flex;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form_section__fields {
    align-items: end;
    gap: 16px;
    flex: 1;
    display: grid;
    grid-template-columns: 200px 200px 200px 255px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form_group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.form_label {
    font-size: 12px;
    line-height: 1.4;
    color: var(--bg);
    font-weight: 400;
    padding-left: 8px;
    letter-spacing: 2%;
}

.form_input {
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid transparent;
    background: #FFFEFA;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2%;
    color: #9A9A9A;
    transition: all 0.4s ease;
    font-weight: 400;
    width: 100%;
    box-sizing: border-box;
    height: 44px;
}

.form_input::placeholder {
    color: #9A9A9A;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2%;
}

.form_section__btn {
    padding: 12px 56px;
    background: var(--btn);
    color: var(--bg);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.4s ease;
    white-space: nowrap;
    line-height: 20px;
    letter-spacing: 2%;
    width: 100%;
    justify-self: center;
    box-sizing: border-box;
    transition: 0.5s ease;
}

.form_section__btn:hover {
    background: #b52619;
    transition: 0.5s ease;
}

.form_checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.uderline-span {
    text-decoration: underline;
    transition: 0.5s ease;
}

.uderline-span:hover {
    color: #f94433;
    transition: 0.5s ease;
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    background: var(--bg);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    border-radius: 2px;
}

input[type="checkbox"]:checked {
    background: var(--bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A9A9A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.form-checkbox__text {
    font-size: 12px;
    line-height: 120%;
    color: var(--bg);
    font-weight: 200;
    letter-spacing: 2%;
    padding-top: 1px;
}

/* text_block__v3 */
.dark-section.text_block__v3 .title_content {
    color: #fff;
}

.text_block__v3__title {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.text_block__v3__title--btn {
    padding: 12px 48px;
    line-height: 20px;
    letter-spacing: 2%;
    font-weight: 400;
    color: #2A2A2A;
    max-width: fit-content;
    transition: 0.5s ease;
}

.text_block__v3__title--btn:hover {
    transition: 0.5s ease;
    background-color: var(--text);
    color: #fff;
}

.text_block__v3--content.grid-2 {
    grid-template-rows: 450px;
}

.text_block__v3--content.v2.grid-2 {
    grid-template-rows: repeat(2, 450px);
}

.text_block__v3--btn {
    color: var(--bg);
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 2%;
    width: 100%;
    font-weight: 400;
    display: block;
    margin-top: 24px;
}

.dark-section .text_block__v3 {
    color: #fff;
}

.dark-section .text_block__v3--btn {
    color: #2A2A2A;
    margin-top: 24px;
    text-align: center;
    transition: 0.5s ease;
}

.dark-section .text_block__v3--btn:hover {
    background-color: var(--text);
    color: #fff;
    transition: 0.5s ease;
}

.card-2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;

    height: 100%;
    width: 100%;
    background-image: url(../images/services/ser1.png);
    mask-image: radial-gradient(54.85% 54.85% at 48.22% 54.46%, #D9D9D9 33.17%, rgba(115, 115, 115, 0) 100%);
    -webkit-mask-image: radial-gradient(54.85% 54.85% at 48.22% 54.46%, #D9D9D9 33.17%, rgba(115, 115, 115, 0) 100%);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
    pointer-events: none;
}

.card-n {
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: 1;
    border-radius: 24px;
}

.text_block__v3--card {
    justify-content: space-between;
    padding: 32px;
    gap: 75px;
    max-height: 450px;
    height: 450px;
}

.text_block__v3_top {
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.text_block__v3_top h3,
.text_block__v3_top_v2 h3,
.text_block__v3_topv3 h3 {
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 2%;
    font-weight: 700;
    white-space: pre-line;
    z-index: 1;
}

.text_block__v3_topv3 p {
    font-size: 18px;
    line-height: 120%;
    font-weight: 400;
    letter-spacing: 2%;
    margin-bottom: 6px;
    opacity: 0.6;
}

.text_block__v3_tags {
    display: flex;
    gap: 18.37px;
}

.text_block__v3--card_wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #ffffff60;
    border-radius: 16px;
    padding: 9px 24px 9px 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.text_block__v3--card_wrapper img {
    width: 32px;
}

.text_block__v3--card_wrapper p {
    font-size: 22px;
    line-height: 140%;
    font-weight: 400;
    color: #fff;
}

.text_block__v3_btm {
    display: flex;
    justify-content: space-between;
    align-items: end;
    z-index: 5;
}

.text_block__v3--btn_card {
    background-color: var(--text);
    padding: 12px 20px;
    border-radius: 16px;
    color: #F7F7F7;
    letter-spacing: 2%;
    line-height: 20px;
    font-weight: 400;
    font-size: 16px;
}

.text_block__v3_btm_setup {
    gap: 8px;
}

.text_block__v3_btm_setup p {
    font-size: 16px;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: 2%;
}

.dark-section .text_block__v3_btm_setup p {

    color: #fff;
}

.dark-section .text_block__v3_btm_setup_cheaps p {
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    align-items: center;
    max-width: fit-content;
}

.dark-section .text_block__v3--card_wrapper {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-section .text_block__v3_btm_setup {
    gap: 8px;
}

.text_block__v3_btm_setup_cheaps {
    gap: 8px;
}

.text_block__v3_btm_setup_cheaps p {
    border-radius: 8px;
    background-color: #ffffff60;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 12px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
}

.text_block__v3_btm_info_tags {
    gap: 8px;
}

.text_block__v3_btm_info_tags p {
    border-radius: 8px;
    background-color: #ffffff60;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    padding: 6px 12px;
}

.text_block__v3--content.grid-2 {
    gap: 16px;
}

.card-3 {
    background-color: rgba(42, 42, 42, 1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.card-3::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0px;

    height: 100%;
    width: 100%;
    background-image: url(../images/services/ser2.png);
    mask-image: linear-gradient(180.32deg, rgba(136, 136, 136, 0) 0.29%, rgba(206, 206, 206, 0.37) 22.94%, #FFFFFF 38.95%, #CBCBCB 57.58%, rgba(154, 154, 154, 0) 86.46%, rgba(115, 115, 115, 0) 99.74%);
    -webkit-mask-image: linear-gradient(180.32deg, rgba(136, 136, 136, 0) 0.29%, rgba(206, 206, 206, 0.37) 22.94%, #FFFFFF 38.95%, #CBCBCB 57.58%, rgba(154, 154, 154, 0) 86.46%, rgba(115, 115, 115, 0) 99.74%);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.card-4 {
    background-color: rgba(42, 42, 42, 1);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.card-4::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;

    height: 100%;
    width: 100%;
    background-image: url(../images/services/ser3.png);
    mask-image: linear-gradient(180.32deg, rgba(136, 136, 136, 0) 0.29%, rgba(206, 206, 206, 0.37) 22.94%, #FFFFFF 38.95%, #CBCBCB 57.58%, rgba(154, 154, 154, 0) 86.46%, rgba(115, 115, 115, 0) 99.74%);
    -webkit-mask-image: linear-gradient(180.32deg, rgba(136, 136, 136, 0) 0.29%, rgba(206, 206, 206, 0.37) 22.94%, #FFFFFF 38.95%, #CBCBCB 57.58%, rgba(154, 154, 154, 0) 86.46%, rgba(115, 115, 115, 0) 99.74%);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.text_block__v3_top_v2 p {
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 2%;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 4px;
}

.text_block__v3--content.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.text_block__v3--card_v3 {
    padding: var(--space-24);
}

.dark-section .text_block__v3--card_v3.card {
    background-color: #2A2A2A;
}

.dark-section .text_block__v3--card_v3 {
    color: #fff;
}

.text_block__v3_subtitle {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 2%;
    padding-bottom: 8px;
    font-weight: 400;
}

.dark-section .text_block__v3_subtitle {
    opacity: 0.8;
}

.text_block__v3_title {
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 2%;
    white-space: pre-line;
    text-transform: uppercase;
    font-weight: 700;
}

.text_block__v3_cheaps_title {
    font-size: 14px;
    font-weight: 300;
    line-height: 120%;
    letter-spacing: 2%;
    margin-top: 48px;
}

.text_block__v3_cheaps_tags {
    gap: 8px;
}

.text_block__v3_cheaps_tags p {
    border-radius: 8px;
    background-color: #F2F2F2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    margin-top: 8px;
    align-items: center;
}

.dark-section .text_block__v3_cheaps_tags p {
    background: rgba(242, 242, 242, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dark-section .text_block__v3_cheaps_tag {
    color: rgba(32, 32, 32, 1);
}

.text_block__v3_cheaps_tag {
    gap: 8px;
    border-radius: 8px;
    background-color: #F2F2F2;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 16px 6px 8px;
    align-items: center;
    margin-top: 8px;
}

.text_block__v3_cheaps_tag p {
    all: unset;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}

/* text_block__v4 */
.text_block__v4 .title_content {
    color: #fff;
}

.text_block__v4--content.grid-2 {
    grid-template-rows: 404px;
    gap: 16px;
    color: #fff;
}

.text_block__v4--card {
    justify-content: space-between;
}

.text_block__v4--card.card {
    padding: 32px 21px 32px 32px;
    background-color: #2A2A2A;
}

.text_block__v4--card_top {
    justify-content: space-between;
    align-items: start;
    padding-right: 11px;
}

.text_block__v4--card_title p,
.text_block__v4--card_price p {
    opacity: 0.8;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 2%;
    font-weight: 400;
    padding-top: 4px;
}

.text_block__v4--card_title h3,
.text_block__v4--card_price h3 {
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 2%;
    font-size: 40px;
    z-index: 3;
    position: relative;
}

.text_block__v4--card_price h3 {
    font-weight: 400;
}

.text_block__v4--card_price {
    text-align: right;
}

.text_block__v4_btm {
    gap: 8px;
    z-index: 2;
}

.text_block__v4_btm p {
    letter-spacing: 2%;
    line-height: 120%;
    font-size: 16px;
    font-weight: 300;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
}

.features-grid p {
    border-radius: 8px;
    background-color: #ffffff60;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    padding: 6px 12px;
    letter-spacing: 0%;
}

.dark-section .text_block__v3_btm__cheaps p {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(21.899999618530273px);
    -webkit-backdrop-filter: blur(21.899999618530273px);
}

.text_block__v4--card.card::before {
    content: '';
    position: absolute;
    bottom: 55px;
    top: 18px;
    left: 0;

    width: 100%;
    background-image: url(../images/kit/kitcard1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    mask-image: radial-gradient(55.04% 55.12% at 47.38% 53.14%, #D9D9D9 42.11%, rgba(115, 115, 115, 0) 100%);
    -webkit-mask-image: radial-gradient(55.04% 55.12% at 47.38% 53.14%, #D9D9D9 42.11%, rgba(115, 115, 115, 0) 100%);
}

.text_block__v4--cars.grid-2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
}

.text_block__v4--card_v2.card {
    overflow: visible;
    background-color: #2A2A2A;
    color: #fff;
}

.text_block__v4--card_v2 img {
    position: absolute;
    top: -30px;
    left: 175px;
}

.text_block__v4--card_v2_text {
    padding: 64px 24px 24px 24px;
}

.text_block__v4--card_v2_text h4 {
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 2%;
    white-space: pre-line;
    padding-bottom: 8px;
    font-weight: 700;
}

.text_block__v4--card_v2_text p {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 2%;
    font-weight: 300;
}

.text_block__v4--card_v2.kp {
    padding: var(--space-24);
    justify-content: space-between;
}

.text_block__v4--card_v2_kp h4 {
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 2%;
    padding-bottom: 8px;
    font-weight: 700;
}

.text_block__v4--card_v2_kp p {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 2%;
    font-weight: 300;
    margin-bottom: 24px;
}

.text_block__v4--card_v2--btn {
    background-color: #26AF79;
    color: #F7F7F7;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 2%;
    border-radius: 16px;
    padding: 12px 48.5px;
    transition: 0.5s ease;
}

.text_block__v4--card_v2--btn:hover {
    background-color: #176c4a;
}

/* text_block__v5 */
.dark-section {
    background: var(--text);
    border-radius: 48px 48px 0 0;
    margin-top: 80px;
}

.text_block__v5 .title_content {
    color: var(--bg);
}

.text_block__v5--content.grid-3 {
    gap: 16px;
}

.card-content {
    padding: 24px;
    z-index: 3;
}

.card-content h3 {
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 2%;
    font-size: 40px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.card-desc {
    opacity: 0.8;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 2%;
    font-weight: 400;
    text-transform: uppercase;
}

.card-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 2%;
    opacity: 0.6;
    margin-top: 109px;
}

.card-icons-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.card .icon-1 {
    top: 0;
    right: -60px;
    position: absolute;
}

.card .icon-2 {
    bottom: 15px;
    width: 174px;
    rotate: -30deg;
    right: 125px;
    position: absolute;
    filter: blur(3px);
    -webkit-mask-image: linear-gradient(-149deg, black 16%, transparent 64%);
    mask-image: linear-gradient(-149deg, black 16%, transparent 64%);
}

.card .icon-3 {
    top: 109px;
    width: 93px;
    rotate: -25deg;
    right: 315px;
    position: absolute;
}

.card .icon-4 {
    top: 23px;
    right: -35px;
    position: absolute;
}

.card .icon-5 {
    bottom: 92px;
    width: 113px;
    rotate: -20deg;
    right: 146px;
    position: absolute;
    filter: blur(1.5px);
}

.card .icon-6 {
    bottom: 109px;
    width: 77px;
    rotate: 43deg;
    position: absolute;
    filter: blur(2.5px);
    right: 268px;
}

.card .icon-7 {
    bottom: 106px;
    width: 48px;
    rotate: 16deg;
    right: 352px;
    position: absolute;
    filter: blur(3px);
}

.card .icon-8 {
    top: -5px;
    right: -40px;
    position: absolute;
}

.card .icon-9 {
    bottom: 51px;
    width: 110px;
    rotate: 52deg;
    right: 117px;
    position: absolute;
    filter: blur(4px);
    -webkit-mask-image: linear-gradient(100deg, black 0%, transparent 100%);
    mask-image: linear-gradient(100deg, black 0%, transparent 100%);
}

.card .icon-10 {
    bottom: 25px;
    width: 147px;
    rotate: -35deg;
    right: 231px;
    position: absolute;
    /* filter: blur(2px); */
    -webkit-mask-image: linear-gradient(-149deg, black 15%, transparent 64%);
    mask-image: linear-gradient(-149deg, black 15%, transparent 64%);
}


.card .icon-11 {
    bottom: 107px;
    width: 75px;
    rotate: 27deg;
    right: 364px;
    position: absolute;
    filter: blur(3px);

}

/* text_block__v6 */
.text_block__v6 .title_content {
    color: var(--bg);
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100%;
    margin-bottom: 8px;
}

.text_block__v6.track_wh .title_content {
    color: var(--text);
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: 100%;
}

.partners_slider .swiper-wrapper {
    transition-timing-function: linear;
}

.text_block__v6 {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.partners_content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.partners_slider {
    width: 100%;
    height: 120px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #fff 10%, #fff 89%, transparent);
}

.partners_slide {

    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners_slide img {
    width: 100%;
    height: 100%;
    background-color: #2A2A2A;
    border-radius: 23px;
    object-fit: contain;
    padding: 24px;
    display: block;
}

.text_block__v6.track_wh .partners_slide img {
    background-color: #fff;
    border-radius: 20px;
}

.text_block__v6.track_wh .partners_slide img.track_wh__logo {
    background-color: #fff;
    background-image: radial-gradient(circle, #2A2A2A 65%, transparent 66%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 90px 90px;
    border-radius: 20px;
    padding: 30px;
}

/* footer */
footer {
    background-color: var(--footer-bg);
}

.footer_inner {
    padding: 54px 0;
    display: flex;
    justify-content: space-between;
}

.footer__left {
    justify-content: space-between;
    max-width: fit-content;
}

.logo__footer {
    display: flex;
    gap: 24px;
}

.logo__footer span {
    color: #C9C9C9;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 2%;
    font-weight: 200;
    white-space: pre-line;
}

.logo__footer img {
    object-fit: none;
}

.footer_contacts {
    gap: 55px;
    align-items: end;
    max-width: fit-content;
}

.footer_social {
    gap: 14px;
}

.footer_social h2 {
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 2%;
    font-weight: 700;
    color: var(--bg);
    text-transform: uppercase;
}

.footer_social__tags {
    gap: 16px;
    color: var(--bg);
}

.footer_social__tag {
    gap: 8px;
    align-items: center;
    white-space: nowrap;
}

.footer_social__tag p {
    font-size: 16px;
    line-height: 130%;
    font-weight: 300;
    letter-spacing: 2%;
    transition: 0.5s ease;
}

.footer_social__tag p:hover {
    transition: 0.5s ease;
    color: #c1c1c1;
}

.footer_span {
    color: #FFC935;
}

.footer_warning {
    color: #9A9A9A;
    opacity: 0.3;
    white-space: nowrap;
    font-weight: 300;
    font-size: 12px;
}

.footer_politics {
    gap: 4px;
    padding-bottom: 3px;
    max-width: fit-content;
}

.footer_politics a {
    color: #9A9A9A;
    font-size: 14px;
    line-height: 24px;
    font-weight: 200;
}

.footer_politics p {
    white-space: pre-line;
    line-height: 140%;
    color: #9A9A9A;
    font-weight: 200;
    font-size: 14px;
}

.span-politic {
    font-weight: 400;
}

.footer_right {
    gap: 81px;
    max-width: fit-content;
}

.footer_right.grid-3 {
    grid-template-columns: repeat(3, auto);
}

.footer_right h3 {
    color: var(--bg);
    font-size: 24px;
    line-height: 130%;
    font-weight: 700;
    letter-spacing: 2%;
    text-transform: uppercase;
}

.footer_block__2,
.footer_block__3,
.footer_block__4 {
    gap: 16px;
    max-width: fit-content;
}

.footer_block__3 {
    margin-right: 20px;
}

.footer_block__2 {
    align-items: baseline;
    justify-content: space-between;
}

.footer_block__2 a,
.footer_block__3 a {
    color: #9A9A9A;
    line-height: 130%;
    letter-spacing: 2%;
    font-size: 16px;
    font-weight: 300;
    white-space: pre-line;
    transition: 0.5s ease;
}

.footer_block__2 a:hover,
.footer_block__3 a:hover {
    color: #c1c1c1;
    transition: 0.5s ease;

}

.time,
.footer_mail,
.footer_tel {
    gap: 2px;
}

.time h4,
.footer_mail h4,
.footer_tel h4 {
    font-size: 12px;
    line-height: 130%;
    letter-spacing: 2%;
    font-weight: 200;
    color: #9A9A9A;
}

.time-text,
.footer_mail a,
.footer_tel a {
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 2%;
    white-space: pre-line;
    color: var(--bg);
    font-weight: 300;
}

.footer_mail a {
    white-space: nowrap;
}

.dark-section2 {
    background: var(--text);
    border-radius: 48px 48px 0 0;
    margin-top: 80px;
}

/* banner_s */
.cases_banner {
    position: relative;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 64px;
    overflow: hidden;
}

.cases_banner .banner_main__content {
    z-index: 2;
    color: white;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
}

.cases_banner_content {
    display: flex;
    flex-direction: column;
    gap: 16.51px;
    padding-left: 0;
}

.breadcrumbs__list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs__item,
.breadcrumbs__separator {
    font-size: 28px;
    font-weight: 300;
    color: #F7F7F7;
    opacity: 0.8;
    letter-spacing: 2%;
    line-height: 120%;
}

.cases_title_h1.polit {
    font-size: 30px;
}

.breadcrumbs__link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumbs__link:hover {
    opacity: 1;
}

.cases_title_h1 {
    font-family: 'Onder';
    font-size: 59px;
    line-height: 180%;
    text-transform: uppercase;
    color: #F7F7F7;
    margin: 0;
}

/* text_block__v7 */

.text_block__v7__info.card {
    background-color: #FCFCFC;
}

.text_block__v7__info {
    padding: 26px 39.62px 33px 31px;
    display: flex;
    align-items: flex-start;
}

.text_block__v7__info>.text_block__v7__info-block:first-child {
    margin-right: 154px;
    max-width: none;
}

.text_block__v7__info-group1 {
    display: flex;
    gap: 58px;
    margin-right: 134px;
    max-width: none;
}

.text_block__v7__info-group2 {
    display: flex;
    gap: 68.38px;
    max-width: none;
    /* margin-left: auto; */
}

.text_block__v7__info-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-width: none;
}

.text_block__v7__subtitle {
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 2%;
    color: #545454;
    font-weight: 300;
}

.text_block__v7__info-value {
    font-size: 24px;
    line-height: 130%;
    font-weight: 600;
    color: #1E1E1E;
}

.text_block__v7__info-value.ih {
    font-weight: 700;
}

/* about_company */
.about_company {
    margin-top: 24px;
    margin-bottom: 80px;
}

.about_company--card {
    padding: 32px 29px 32px 24px;
}

.about_company_title {
    font-size: 32px;
    line-height: 130%;
    font-weight: 700;
    letter-spacing: 2%;
    margin-bottom: 16px;
}

.about_company_text {
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
}

.about_company_text.p1 {
    margin-bottom: 19px;
    white-space: pre-line;
}

.about_company__cover_title {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 48px;
    line-height: 130%;
    font-weight: 600;
    color: var(--bg);
    white-space: pre-line;
    text-transform: uppercase;
    z-index: 2;
}

.about_company--btn {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 3;
    padding: 12px 64px;

    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 2%;
    transition: 0.5s ease;
}

.about_company--btn:hover {
    transition: 0.5s ease;
    background: var(--text);
    color: #fff;
}

.about_company__cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 216px;
    background: linear-gradient(to top, rgba(84, 84, 84, 0) 0%, rgb(54, 54, 54) 100%);
    z-index: 1;
    mix-blend-mode: multiply;
}

.about_company__bottom_card {
    border-radius: 32px;
}

.about_company__bottom_card--content {
    padding: 24px 24px 32px 24px;
    gap: 16px;
}

.about_company__bottom_card--content h3 {
    font-size: 32px;
    line-height: 130%;
    letter-spacing: 2%;
    color: var(--bg);
}

.about_company__bottom_card--content {
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    color: var(--bg);
}


.icon-cover {
    position: absolute;
    top: 91px;
    right: 24px;
}

.icon-cover2 {
    position: absolute;
    top: 48px;
    right: 6px;
}

.about_company__bottom_cards {
    gap: 16px;
}

.about_company__text_card {
    padding: 24px;
    justify-content: space-between;
    height: 100%;
}

.about_company__text_card h4 {
    font-size: 22px;
    line-height: 120%;
    letter-spacing: 2%;
    font-weight: 700;
    text-transform: uppercase;
}

.about_company__text_card p {
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
}

/* text_block__v8 */

.text_block__v8--content {
    gap: 32px 16px;
    grid-template-rows: repeat(2, 320px);
}

.text_block__v8_card,
.text_block__v8--card {
    padding: 24px;
    border-radius: 32px;
    height: 100%;
}

.text_block__v8_card.card.flex_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 32px;
    padding: 16px;
}

.company_card__left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    height: 100%;
    padding: 16px 0 16px 16px;
}

.company_card__left img {
    height: 40px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left;
    margin-bottom: 16px;
}

.compny_card__title {
    font-size: 16px;
    line-height: 130%;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.company_card__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.company_card__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}

.company_card--btn {
    padding: 12px 24px;
    text-align: center;
    color: #F7F7F7;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.02em;
    font-weight: 400;
    display: block;
    transition: 0.5s ease;
}

.prodaction--btn:hover {
    background-color: rgb(26, 163, 124) !important;
    transition: 0.5s ease;
}

.design--btn:hover {
    background-color: #b52619 !important;
    transition: 0.5s ease;
}

.ads--btn:hover {
    background-color: rgb(22, 103, 190) !important;
    transition: 0.5s ease;
}

.kit--btn:hover {
    background-color: rgb(49, 44, 159) !important;
    transition: 0.5s ease;

}

.company_card__right {
    gap: 12px;
    justify-content: flex-start;
}

.company_card__adv {
    padding: 15.5px 22px;
    background-color: #F6F6F6;
    border-radius: 24px;
    align-items: center;
    max-width: 102px;
}

.company_card__adv h3,
.company_card__adv h4 {
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 0.02em;
    line-height: 120%;
    text-transform: uppercase;
}

.comp-span {
    font-size: 18px;
    font-weight: 700;
}

.company_card__adv p {
    font-size: 12px;
    line-height: 140%;
    font-weight: 400;
    opacity: 0.6;
}

.text_block__v8--card.card.flex_column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 32px;
}

.text_block__v8_subtitle {
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.02em;
    padding-bottom: 8px;
    font-weight: 400;
}

.text_block__v8_title {
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-weight: 700;
}

.card_cpan {
    color: #EF5345;
}

.text_bottom__v8_bottom {
    gap: 16px;
}

.text_block__v8_text {
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
}

.text_block__v8--btn {
cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.02em;
    padding: 12px 16px;
    width: 100%;
    font-weight: 400;
    text-align: center;
    display: block;
    transition: 0.5s ease;

}
.text_block__v8--btn:hover{
    transition: 0.5s ease;
    background-color: var(--background);
    color: black;
}

/* text_block__v9 */
.vacacy__title {
    padding: 40px 0px 34px 40px;
}

.text_block__v9_top--card {
    justify-content: space-between;
    border-radius: 32px;
}

.text_block__v9_top__text {
    font-size: 16px;
    letter-spacing: 2%;
    line-height: 140%;
    font-weight: 300;
    margin-top: 35px;
}

.text_block__v9_top--card img {
    padding-top: 40px;
    padding-right: 59px;
}

.text_block__v9--content {
    gap: 16px;
}

.vacancy--card {
    padding: 24px;
    justify-content: space-between;
    border-radius: 32px;
}

.vacancy--card h3 {
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 2%;
    font-weight: 650;
    margin-bottom: 6px;
}

.experiance {
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 2%;
    font-weight: 400;
    margin-bottom: 12px;
}

.vacancy__description {
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 2%;
    margin-bottom: 18px;
    font-weight: 400;
}

.vacancy_card__btm {
    justify-content: space-between;
}

.vacancy__skills_title {
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 2%;
    margin-bottom: 8px;
    font-weight: 400;
}

.vacacy__skills {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vacacy__skill {
    gap: 8px;
}

.vacacy__skill p {
    border-radius: 8px;
    background-color: #EAEAEA60;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 140%;
    font-weight: 400;
}

.vacancy--btn {
    padding: 12px 24px;
    text-align: center;
    width: 100%;
    display: block;
    margin-top: 24px;
    letter-spacing: 2%;
    font-weight: 500;
    transition: 0.5s ease;
}

.vacancy--btn:hover {
    background-color: #F2F2F2;
    color: var(--text);
}

/* text_block__v10 */
.text_block__v10--content {
    gap: 16px;
}

.text_block__v10-title {
    justify-content: space-between;
    align-items: end;
}

.text_block__v10--card {
    border-radius: 32px;
}

.text_block__v10--card_content {
    padding: 24px 24px 18px 24px;
}

.text_block__v10_img img {
    width: 100%;
}

.text_block__v10_tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    padding: 6px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 140%;
}

.text_block__v10--card_content h2 {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 120%;
    font-weight: 600;
    white-space: pre-line;
    margin-bottom: 12px;
    color: #0D1122;
}

.text_block__v10--card_content p {
    line-height: 140%;
    font-size: 16px;
    font-weight: 300;
    color: #0D1122;
    margin-bottom: 16px;
    opacity: 0.8;
    max-width: 356px;
}

.text_block__v10_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text_block__v10_info_tags {
    gap: 16px;
}

.text_block__v10_info {
    gap: 6px;
    opacity: 0.23;
    align-items: center;
}

.text_block__v10_info img {
    width: 12px;
}

.text_block__v10_info p {
    font-size: 16px;
    line-height: 140%;
    font-weight: 300;
    margin-bottom: 0;
}

.text_block__v10--btn {
    font-size: 16px;
    font-weight: 300;
    line-height: 140%;
}

.text_block__v10-title--btn {
    background-color: var(--text);
    padding: 12px 32px;
    color: #F7F7F7;
    text-align: center;
    width: 100%;
    display: block;
    letter-spacing: 2%;
    max-width: fit-content;
    font-weight: 500;
    transition: 0.5s ease;
}

.text_block__v10-title--btn:hover{
    color: var(--text);
    background-color: #fff;
}

/* text_block__v11 */
.text_block__v11 {
    align-items: center;
}

.text_block__v11__info {
    background-color: #F8F8F8;
    border-radius: 32px;
    padding: 24px 147px 32px 32px;
    gap: 106px;
    width: 100%;
}

.text_block__v11__info.grid-3 {
    grid-template-columns: auto auto auto;
}

.text_block__v11__info-block {
    gap: 6px;
    max-width: fit-content;
}

.text_block__v11__info-value {
    font-size: 24px;
    line-height: 130%;
    font-weight: 500;
    letter-spacing: 2%;
    color: #051A24;
}

.text_block__v11__subtitle {
    line-height: 120%;
    font-size: 16px;
    opacity: 0.4;
    font-weight: 500;
    color: #1E1E1E;
}

.contacts--content {
    gap: 16px;
}

.contacts_card__left {
    gap: 16px;
    background-color: #F8F8F8;
    border-radius: 32px;
    padding: 32px 50px 31px 32px;
}

.contacts_card__left h4 {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 2%;
    color: #1E1E1E;
    margin-bottom: 12px;
    font-weight: 500;
    white-space: pre-line;
}

.contact_group {
    gap: 4px;
}

.contact_group__rigth_group {
    gap: 45px;
}

.contact_group p {
    color: #A3A3A3;
    font-size: 14px;
    font-weight: 300;
    line-height: 140%;
}

.contact_group a {
    font-size: 18px;
    line-height: 140%;
    font-weight: 600;
    color: #2E2E2E;
    white-space: pre-line;

}

.contact_group h5 {
    font-size: 18px;
    line-height: 140%;
    font-weight: 600;
    color: #2E2E2E;
    white-space: pre-line;
}

p.contact_card__tel {
    color: #A3A3A3;
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    margin-top: 4px;
}

p.contact_card__email {
    color: #A3A3A3;
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
}

.contacts_card__right {
    justify-content: space-between;
}

.contacts_card__right__top {
    background-color: #F8F8F8;
    border-radius: 32px;
    padding: 32px 76px 32px 32px;
}

.contacts_card__right__top h4 {
    text-transform: uppercase;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 2%;
    color: #1E1E1E;
    margin-bottom: 24px;
    font-weight: 500;
    white-space: pre-line;
}

.contacts_card__content {
    grid-template-columns: auto auto;
    gap: 80px;
}

.contacts_card__content-left {
    gap: 16px;
    max-width: fit-content;
}

p.contact_group__left_tel {
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    color: #A3A3A3;
}

.contacts_card__content-right {
    gap: 16px;
}


.contact_group p {
    white-space: pre-line;
}

.contacts_card__right__bottom {
    padding: 24px 32px 32px 24px;
    background-color: #F8F8F8;
    border-radius: 32px;
}

.contacts_card__right__bottom {
    gap: 14px;
}

.contacts_card__right__bottom h4 {
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 2%;
    font-weight: 500;
}

.contacts_card__right_btm {
    justify-content: space-between;
    align-items: end;
}

.contacts_card__right_btm p {
    font-size: 16px;
    line-height: 140%;
    color: #2E2E2E;
    font-weight: 300;
    gap: 28px;
    white-space: pre-line;
}

.contacts_card--btm {
    border-radius: 16px;
    background-color: #EF5345;
    color: #F7F7F7;
    font-size: 16px;
    line-height: 20px;
    initial-letter: 2%;
    font-weight: 400;
    padding: 12px 35px;
}

/* text_block__v12 */
.text_block__v12--content {
    gap: 16px;
}

.text_block__v12--cards-column {
    gap: 16px;
    display: flex;
    flex-direction: column;
}

.text_block__v12--cards {
    gap: 16px;
    transition: all 0.6s ease;
}

.text_block__v12 .title_content {
    color: #FFFFFF;
}

.stack_card {
    background-color: #2A2A2A;
    border-radius: 32px;
    padding: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.stack_card__img {
    position: relative;
    line-height: 0;
}

.text_block__v12--cards.active .stack_card__img img {
    width: 100%;
    height: 145px;
    border-radius: 20px;
    display: block;
}

.text_block__v12--cards .stack_card__img img {
    display: none;
}

.stack_card_tag {
    gap: 8px;
}

.text_block__v12--cards.active .stack_card__tags {
    display: flex;
    flex-direction: column;
    position: absolute;
    right: 0;
    bottom: -0.5px;
    align-items: end;
    gap: 0;
}

.text_block__v12--cards .stack_card__tags {
    display: flex;
    flex-direction: row;
}

.stack_card_tag {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 120%;
    font-weight: 500;
    background-color: #202020;
    border-radius: 20px;
    padding: 12px 18px 12px 12px;
    align-items: center;
    text-transform: uppercase;
    margin: 0;
}

.stack_card_tag img {
    width: 22px !important;
    height: 22px !important;
    border-radius: 0 !important;
    display: block !important;
}

.stac_v1 {
    color: #FFC935;
}

.stac_v2 {
    color: #72F443;
}

.stac_v3 {
    color: #89BCFF;
}

.stack_card__bottom {
    background-color: #202020;
    border-radius: 20px;
    padding: 12px 24px;
    justify-content: space-between;
    align-items: center;
}

.stack_card__bottom p {
    font-size: 12px;
    line-height: 120%;
    font-weight: 300;
    color: var(--bg);
    opacity: 0.8;
    white-space: pre-line;
}


/* close-popup */
.close-popup,
.close-popupKit,
.close-popupVacancy {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none;
}

.close-popup.active,
.close-popupKit.active,
.close-popupVacancy.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.close-popup__form {
    background: #131B1F66;
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    max-width: 359px;
    position: relative;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid #F7F7F733;
    color: #fff;
}

.close-popup__form form {
    max-width: 311px;
    width: 311px;
}

.close-popup__form_clos {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 12px;
    height: 12px;
    cursor: pointer;
}

.close-popup__form_clos::before,
.close-popup__form_clos::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-popup__form_clos::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.close-popup__form_clos:hover {
    opacity: 1;
}

.close-popup__form h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    text-align: left;
    color: #fff;
    line-height: 120%;
}

.input-group {
    margin-bottom: 12px;
}

.input-group label {
    display: block;
    font-weight: 500;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 2%;
    margin-bottom: 4px;
}

.input-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid transparent;
    border-radius: 16px;
    background: #F7F7F7;
    font-size: 16px;
    color: #BBBBBB;
    outline: none;
    font-weight: 200;
    line-height: 24px;
}

.input-group input::placeholder {
    font-weight: 100;
    border-radius: 16px;
    line-height: 24px;
    color: #BBBBBB;

}

.input-error {
    color: #D53B2F;
    font-size: 12px;
    margin-top: 4px;
    display: none;

    font-weight: 400;
    line-height: 140%;
    letter-spacing: 2%;

}

.input-group.error .input-error {
    display: block;
}

.input-group.error input {
    border: 1px solid #D53B2F;
}


.fpopup_checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    max-width: 318px;
    width: 318px;
    margin-top: 4px;
}

.fpopup_checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    background: var(--bg);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    position: relative;
    cursor: pointer;
    border-radius: 2px;
}

input[type="checkbox"]:checked {
    background: var(--bg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A9A9A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px;
}

.popup-checkbox__text {
    font-size: 12px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    white-space: nowrap;
}

.close-popup__form button {
    width: 100%;
    padding: 18px 79px;
    background: var(--btn);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.5s ease;
    margin-top: 12px;
}

button[type="submit"]:hover {
    background: #b52619;
}

.close-popup__policy {
    font-size: 12px;
    text-align: center;
    margin-top: 12px;
    line-height: 120%;
    font-weight: 400;
}

.close-popup__policy a {
    color: var(--text-light-hover);
}

/* confirmed */
.popup-confirmed {
    position: relative;
    background: #131B1F66;
    border-radius: 24px;
    padding: 16px 24px;
    width: 100%;
    max-width: 359px;
    position: relative;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid #F7F7F733;
    color: #fff;
    z-index: 10001;
    display: none;
}


.popup-confirmed--content h2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    margin-bottom: 8px;
}

.popup-confirmed--content p {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0%;
    max-width: 245px;
    width: 245px;
}

.popup-confirmed__icon {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 16px;
    height: 15px;
}


/* cookie */
.cookie-modal {
    position: fixed;
    left: 50%;
    right: 50%;
    bottom: 20px;
    background: #131B1F66;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 24px;
    padding: 20px 26px 20px 16px;
    max-width: fit-content;
    width: 100%;
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #F7F7F733
}

.cookie__agree {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 15px;
}

.cookie-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    max-width: 1316px;
    width: 93%;
    left: 50%;
}

.cookie-modal__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-modal__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #fff;
}

.cookie-modal__text {
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.cookie-modal__link {
    color: #fff;
    text-decoration: underline;
    transition: 0.5s ease;
}

.cookie-modal__link:hover {
    color: var(--text-light-hover);
    transition: 0.5s ease;
}

.cookie-modal__btn {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0%;
    background: rgba(239, 83, 69, 1);
    border-radius: 16px;
    padding: 12px;
    color: rgba(255, 255, 255, 1);
    transition: 0.5s ease;

}

.cookie-modal__btn:hover {
    background: #b52619;
    transition: 0.5s ease;
}

.cookie-modal__close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: rgba(255, 255, 255, 1);
    width: 12px;
    height: 12px;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    transition: color 0.3s ease;
    z-index: 2;
}

.cookie-modal__close:hover {
    color: #fff;
}


.banner_main.cases_banner {
    background-image: url('../images/banner/banner-forest.png');
    background-size: cover;
    background-position: center top;
    height: 100vh;

    position: relative;
}


.banner-visual-elements {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1312px;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.banner-visual-elements2 {
    position: absolute;
    bottom: 0;
    left: calc(45% - 100px);
    transform: translateX(-50%);
    max-width: 1066px;
    height: auto;
    z-index: 0;
    pointer-events: none;

}


.banner-visual-elements3 {
    position: absolute;
    bottom: -10px;
    left: calc(42% - 100px);
    transform: translateX(-50%);
    max-width: 860px;
    width: 100%;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.banner-visual-elements4 {
    position: absolute;
    bottom: 10px;
    right: 50%;
    max-width: 719px;
    width: 100%;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.banner_main__content {
    position: relative;
    z-index: 2;
}

.banner-scaler-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.banner-scaler-content {
    width: 100%;
    transform-origin: top center;
}


.policy_content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.4;
    color: var(--text);
}

.policy_content p {
    margin-bottom: 20px;
    text-align: justify;
}

.policy_content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

.policy_content a {
    color: var(--btn);
    text-decoration: underline;
    transition: color 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}


.text-blockstack1 p,
.text-blockstack2 p {
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    white-space: normal;
    max-width: 122px;
}

.text-blockstack2 p {
    max-width: 131px;
}


.card-2,
.card-3,
.card-4,
.text_block__v3--card_v3,
.text_block__v4--card,
.text_block__v5_card,
.text_block__v3--card,
.text_block__v2 {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

.footer__left_kit.card {
    background: #2A2A2A;

}

.promo-card {
    display: flex;
    align-items: center;
    max-width: 408px;
    margin: 0 auto;
    border-radius: 15.06px;
    overflow: hidden;
    color: white;
}

.promo-card__text {
    flex: 1;
    padding: 16px 200px 16px 16px;
    z-index: 2;
}

.promo-card__tag {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 2%;
    margin-bottom: 4px;
}

.promo-card__title {
    font-weight: 400;
    font-size: 10.04px;
    line-height: 120%;
    letter-spacing: 2%;
    margin-bottom: 20px;
    margin-top: 4px;
}

.promo-card__button {
    display: inline-block;
    background: #26AF79;
    color: #F7F7F7;
    padding: 10px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 500;
    width: fit-content;
    font-size: 14px;
    transition: 0.5s ease;
}

.promo-card__button:hover {
    background: #176c4a;
    transition: 0.5s ease;

}

.promo-card__image {
    flex: 1;
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
}

.promo-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(64.99% 352.16% at 25.43% 104.5%, rgba(42, 42, 42, 1) 32.09%, rgba(115, 115, 115, 0) 100%);
    pointer-events: none;
}

@media (max-width:1024px) {

    .cases_title_h1.polit {
        font-size: 10px;
        flex-wrap: wrap;
    }

    .policy_content {
        padding: 0 10px;
        font-size: 15px;
    }

    .banner h1.policy__title {
        font-size: 35px;
    }

    .policy_content p {
        margin-bottom: 16px;
        text-align: left;
    }

    .policy_content h3 {
        font-size: 20px;
        margin-top: 30px;
    }

    html,
    body {
        overflow-x: hidden;
        max-width: 100vw;
        touch-action: pan-y pinch-zoom;
    }

    .header {
        padding-top: 16px;
    }

    .header__inner {
        padding: 17px 18px;
        background: rgba(19, 27, 31, 0.7);
    }

    .mobile_header__inner {
        margin-right: 14px;
    }

    .logo img {
        max-width: 140px;
    }

    .desktop-nav {
        display: none;
    }

    .header__right_btn {
        display: none;
    }

    .header__right_icon {
        gap: 16px;
    }


    .icon-btn__icon {
        width: 24px !important;
        height: 24px !important;
    }

    .burger-btn {
        display: flex;
        width: 24px;
        height: 18px;
    }

    .mobile-menu .nav__link {
        font-size: 18px;
        text-align: center;
    }

    .mobile-menu .nav__list {
        gap: 16px;
    }

    .dark-section {
        border-radius: 0;
        margin-top: 48px;
    }


    .dark-section2 {
        border-radius: 0;
        margin-top: 48px;
    }

    .container {
        margin-left: 14px;
        margin-right: 14px;
    }

    /* banner */
    .banner__title,
    .banner__title_span {
        font-size: 40px;
    }

    .banner_title_sub {
        gap: 20px;
        left: 400px;
        top: 3px;
    }

    .banner_title_sub p {
        font-size: 24px;
    }

    .banner_title_sub img {
        max-width: 60px;
    }

    /* cases */
    .cases_card__adv_dn {
        display: none;
    }

    .cases_card--content {
        height: 300px;
    }

    .cases_card__cheaps {
        margin-top: 130px;
    }

    .cases_card__bg {
        top: 140px;
        font-size: 100px;
    }

    /* text_block__v1 */
    .text_block__v1--content.grid-3 {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px 0;
    }

    .text_block__v1--content .card .span-2 {
        order: -1;
    }

    .text_block__v1--content:last-child .card.span-2 img.abs-cover {
        object-position: 70% center;
    }

    /* text_block__v2 */
    .text_block__v2 {
        background-position: center;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        isolation: isolate;

    }

    .text_block__v2--content {
        flex-direction: column;
        gap: 24px;
        padding: 24px 16px 24px 16px;
    }

    .text_block__v2::before {
        top: 0;
        height: 100%;
        background: linear-gradient(180deg, rgba(18, 18, 18, 0) 0%, rgba(18, 18, 18, 1) 104%);
    }

    .text_block__v2::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        background: linear-gradient(180.04deg, rgba(18, 18, 18, 0.86) 1.22%, rgba(18, 18, 18, 0) 50%);
        z-index: 1;
        height: 100%;
    }

    .form_section__fields {
        gap: 8px;
        grid-template-columns: 1fr;
    }

    .form_checkbox {
        position: absolute;
        bottom: 24px;
    }

    .form_section__btn {
        padding: 11px;
        font-size: 14px;
        margin-top: 16px;
        margin-bottom: 32px;
    }

    /* text_block__v3 */
    .text_block__v3_btm_info {
        width: 100%;
    }

    .text_block__v3__title--btn {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }

    .text_block__v3--content.grid-2 {
        grid-template-rows: 1fr;
        grid-template-columns: repeat(1, 1fr);
    }

    .card-2::before {
        mask-image: radial-gradient(54.24% 55.52% at 47.7% 62.65%, #D9D9D9 0%, rgba(115, 115, 115, 0) 100%);
        -webkit-mask-image: radial-gradient(54.24% 55.52% at 47.7% 62.65%, #D9D9D9 0%, rgba(115, 115, 115, 0) 100%);
        background-position: center;
        background-size: cover;

    }

    .card-3::before {
        background-image: url(../images/services/ser2.png);
        mask-image: radial-gradient(54.84% 55.8% at 50.14% 47.04%, #D9D9D9 0%, rgba(115, 115, 115, 0) 100%);
        -webkit-mask-image: radial-gradient(54.84% 55.8% at 50.14% 47.04%, #D9D9D9 0%, rgba(115, 115, 115, 0) 100%);
        background-position: center;
        background-size: cover;
    }

    .card-4::before {
        background-image: url(../images/services/ser3.png);
        mask-image: radial-gradient(54.84% 55.8% at 50.14% 47.04%, #D9D9D9 0%, rgba(115, 115, 115, 0) 100%);
        -webkit-mask-image: radial-gradient(54.84% 55.8% at 50.14% 47.04%, #D9D9D9 0%, rgba(115, 115, 115, 0) 100%);
        background-position: center;
        background-size: cover;
    }

    .text_block__v3_btm {
        flex-direction: column;
        align-items: start;
        gap: 18px;
    }

    .text_block__v3_top {
        gap: 12px;
        flex-direction: column;
    }

    .text_block__v3--content.grid-3 {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 8px;
        gap: 8px;
    }

    /* text_block__v4 */
    .text_block__v4--content.grid-2 {
        grid-template-rows: auto;
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
    }

    .text_block__v4--card_v2--btn {
        text-align: center;
    }

    .text_block__v4--card_v2 img {
        left: auto;
        right: 20px;
    }


    .text_block__v4_btm {
        margin-top: 166px;
    }

    .features-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        max-width: 500px;
    }

    /* text_block__v5 */
    .text_block__v5--content.grid-3 {
        grid-template-columns: repeat(1, 1fr);
    }

    /* text_block__v8 */
    .text_block__v8--content {
        grid-template-columns: repeat(2, 1fr);
    }

    /* text_block__v9 */
    .text_block__v9_top--card {
        border-radius: 16px;
        flex-direction: column;
    }

    .text_block__v9_top__text {
        margin-top: 20px;
    }

    .text_block__v9_top--card img {
        padding: 20px 20px 0 20px;
    }

    .text_block__v9--content {
        grid-template-columns: repeat(2, 1fr);
    }

    /* text_block__v10 */
    .text_block__v10--content.company_blog {
        gap: 8px;
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .text_block__v10--content.company_blog .text_block__v1--card {
        flex-shrink: 0;
    }

    .text_block__v10.company_blog {
        padding-bottom: 60px;
    }

    .text_block__v10--content {
        display: flex;
        flex-direction: column;
    }

    .text_block__v10--card {
        border-radius: 22.5px;
        flex-shrink: 0;
    }

    .text_block__v10_img img {
        max-height: 200px;
        height: 100%;
        border-radius: 22.5px;
    }

    /* text_block__v12 */
    .text_block__v12--content {
        gap: 8px;
    }

    .text_block__v12--cards-column {
        flex-direction: row;
        overflow-x: auto;

        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .text_block__v12--cards {
        gap: 8px;
    }

    .stack_card {
        border-radius: 25.64px;
        padding: 10px;
    }

    .stack_card__img {
        position: relative;
        line-height: 0;
    }

    .text_block__v12--cards.active {
        grid-template-columns: repeat(1, 1fr);
        display: grid;
    }


    .text_block__v12--cards {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .text_block__v12--cards .stack_card {
        flex-shrink: 0;
        max-width: 350px;
        width: 100%;
    }


    .text_block__v12--cards.active .stack_card__img img {
        height: 200px;
        border-radius: 16.03px;
    }

    .text_block__v12--cards.active .stack_card {
        max-width: 100%;
        width: 100%;
        height: 183px;
    }

    span.defis {
        display: none;
    }

    .text_block__v12--cards.active .stack_card__bottom {
        flex-direction: row;
        height: fit-content;
    }

    .text_block__v12--cards.active .stack_card__bottom p {
        white-space: pre-line;
    }

    .stack_card_tag {
        gap: 6.41px;
    }

    .stack_card_tag {
        font-size: 14px;
        border-radius: 16.03px;
        padding: 9.62px 14.43px 9.62px 9.62px;
    }

    .stack_card_tag img {
        width: 18px !important;
        height: 18px !important;
    }

    .stack_card__bottom {
        border-radius: 16.03px;
        padding: 9.5px 18px;
        flex-direction: column;
        align-items: start;
        gap: 12px;
        max-height: 88px;
        height: 100%;
    }

    .stack_card__bottom img {
        max-height: 29px;
    }

    .stack_card__bottom p {
        white-space: normal;
    }

    /* text_block__v11 */
    .text_block__v11__info.grid-3 {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    .contacts--content {
        gap: 21px;
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }

    .contacts_card__content {
        justify-content: space-between;
    }

    /* footer */
    .footer_inner {
        flex-direction: column;
        gap: 32px;
        padding: 32px 0 112px 0;
    }

    .footer_right.grid-3 {
        grid-template-columns: repeat(2, auto);
        position: relative;
    }

    .footer__left_kit {
        display: none !important;
    }

    .footer__left {
        width: 100%;
        max-width: 100%;
        gap: 32px;
    }

    .logo__footer {
        margin-bottom: 10px;
    }

    .footer_right {
        width: 100%;
        display: grid;
        gap: 32px clamp(32px, 5vw, 50px);
        align-items: start;
    }

    .footer_block__2 {
        grid-column: 1 / -1;
        order: 1;
        margin-bottom: 10px;
    }

    .footer_social__tags {
        flex-wrap: wrap;
    }

    .footer_block__3 {
        order: 3;
        margin-right: 0;
    }

    .footer_block__2 a,
    .footer_block__3 a {
        font-size: 14px;
    }

    .footer_block__2 h2 {
        margin-bottom: 4px;
    }

    .time-text,
    .footer_mail a,
    .footer_tel a {
        font-size: 14px;
    }

    .footer_block__2,
    .footer_block__3,
    .footer_block__4 {
        gap: 14px;
    }

    .footer_block__4 {
        order: 2;
    }

    .footer_social {
        gap: 8px;
    }

    .footer_right {
        max-width: none;
    }

    .footer_social h2,
    .footer_right h3 {
        font-size: 18px;
    }

    .footer_social__tag p {
        color: #fff;
    }

    .footer_warning {
        white-space: normal;
        margin-top: 0;
        font-size: 11px;
    }

    .footer_politics {
        width: 100%;
        position: absolute;
        bottom: -67px;
    }

    .footer_politics a {
        font-size: 12px;
        white-space: pre-line;
    }

    .footer_politics p {
        margin-top: 32px;
    }

    .logo__footer span {
        font-size: 14px;
    }
}

@media (max-width:768px) {
    .banner_main.cases_banner {
        background-position: center 10%;
        height: 80vh;
        overflow: hidden;
    }

    .banner-visual-elements {
        min-width: 661px;
        width: 661px;
        bottom: 0;
    }

    .banner-visual-elements2 {
        max-width: 486px;
        left: 50%;
    }

    .banner-visual-elements3 {
        left: 50%;
        bottom: 0;
    }

    .banner-visual-elements4 {
        right: 0;
    }

    /* 
    .header__inner {
        margin-right: 0;
    } */

    /* margins */
    .top_mar {
        margin-top: 48px;
    }

    .top_pad {
        padding-top: 48px;
    }

    .top_pad_62 {
        padding-top: 62px;
    }

    .top_mar_64 {
        margin-top: 48px;
    }

    .top_mar_68 {
        margin-top: 68px;
    }

    .top_mar_44 {
        margin-top: 44px;
    }

    .top_mar_24 {
        margin-top: 24px;
    }

    .btm_pad {
        padding-bottom: 48px;
    }

    .card {
        border-radius: 16px;
    }

    .card-2 {
        border-radius: 16px;
    }

    /* title */
    .title_content {
        gap: 6px;
    }

    .title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 14px;
    }

    .section {
        gap: 24px;
    }

    .container {
        margin-left: 14px;
        margin-right: 14px;
    }

    /* banner */
    .banner_main {
        height: 80vh;
        padding-bottom: 40px;
    }

    section.banner_main {
        border-radius: 0;
    }

    .banner_main::before {
        bottom: 0;
        height: 427px;
        background: linear-gradient(180deg, rgba(27, 30, 24, 0) 0%, #1B1E18 87.79%);
    }

    .banner_main.cases_banner::before {
        bottom: 0;
        height: 256px;
        background: linear-gradient(180deg, rgba(27, 30, 24, 0) 0%, #1B1E18 87.79%);
    }

    .banner_main::after {
        display: none;
    }

    .banner__title,
    .banner__title_span {
        font-size: 18px;
        white-space: pre-line;
    }

    .banner_title_sub {
        gap: 12px;
        left: 2px;
        top: -50px;
    }

    .banner_title_sub p {
        font-size: 14px;
    }

    .banner_title_sub img {
        width: 38px;
    }

    /* cases */
    .cases.section {
        gap: 16px;
    }

    .cases--content {
        gap: 16px;
    }

    .cases--content.static {
        gap: 16px;
    }

    .cases--content.active {
        gap: 16px;
    }

    .cases_filter {
        margin-bottom: 0;
        gap: 8px;
    }

    .cases_filter p {
        font-size: 12px;
        line-height: 130%;
        letter-spacing: 2%;
        color: #545454;
    }

    .cases_filter__tabs {
        background-color: var(--bg);
        padding: 5px 8px;
        border-radius: 17px;
        gap: 10px;
        justify-content: space-between;
        width: 100%;
    }

    .filter_tab {
        padding: 6px 10px;
        transition: 0.5s;
        font-size: 11px;
        border-radius: 16px;
    }

    .filter_tab.active {
        background-color: var(--text);
        border-radius: 11px;
        color: var(--bg);
        transition: 0.5s;
    }

    .cases_filter--btn {
        display: none;
    }

    .cases_cards.grid-2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .cases_cards {
        gap: 8px 0;
    }

    .cases--btn {
        width: 100%;
        text-align: center;
    }

    .cases_card__bg {
        top: 80px;
        left: 3px;
        font-size: 70px;
    }

    .cases_card--content {
        height: 191px;
    }

    .cases_card--content {
        padding: 16px;
    }

    .cases_card--content h3 {
        font-size: 24px;
    }

    .cases_card--content.residence h3 {
        white-space: pre-line;
    }

    .cases_card__cheaps {
        margin-top: 62px;
    }

    .cases_card__adv {
        gap: 6px;
    }


    .cases_card__adv p {
        padding: 4px 8px;
        font-size: 11px;
    }

    .cases_card_desc {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .cases_card--bg-image.image2 {
        top: 26px;
    }

    .cases_card--bg-image.image3 {
        top: 10px;
    }

    /* text_block__v1 */

    .text_block__v1--cards {
        gap: 16px;
    }

    .text_block__v1--card {
        padding: 16px 16px 24px 16px;
    }

    .text_block__v1--content.grid-3 {
        gap: 8px 0;
        display: flex;
        flex-direction: column;
    }

    .text_block__v1--content .card.span-2 {
        order: 1;
        width: 100%;
    }

    .text_block__v1--content .text_block__v1--card {
        order: 2;
        width: 100%;
    }

    .text_block__v1--content img {
        height: 250px;
        object-fit: cover;
    }

    .text_block__v1_subtitle {
        font-size: 13px;
    }

    .text_block__v1_title {
        font-size: 24px;
        padding-bottom: 24px;
    }

    .text_block__v1_text {
        font-size: 14px;
    }

    /* text_block__v2 */
    .text_block__v2 {
        border-radius: 16px;
    }

    .text_block__v2--content {
        flex-direction: column;
    }

    .text_block__v2--title h2 {
        font-size: 24px;
        margin-bottom: 10px;
        white-space: pre-line;
    }

    .text_block__v2--title p {
        font-size: 12px;
        margin-bottom: 0;
        opacity: 0.8;
    }

    .text_block__v2--form {
        display: flex;
        gap: 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form_group {
        gap: 4px;
    }


    .form_input {
        padding: 11px 16px;
        height: 42px;
    }

    /* text_block__v3 */
    .text_block__v3--btn {

        border-radius: 16px;
        color: var(--bg);
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 2%;
        padding: 12px 0;
        width: 100%;
        font-weight: 400;
        display: block;
        margin-top: 24px;
    }

    .dark-section .text_block__v3 {
        color: #fff;
    }

    .dark-section.text_block__v3--btn {
        background-color: #fff;
        border-radius: 16px;
        color: #2A2A2A;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 2%;
        padding: 12px;
        text-align: center;
        width: 100%;
        font-weight: 400;
        display: block;
        margin-top: 24px;
    }

    .card-n {
        border-radius: 16px;
    }

    .text_block__v3--card {
        padding: 24px 16px;
        gap: 125px;
        max-height: 388px;
        height: 388px;
        border-radius: 16px;
    }


    .text_block__v3_top h3,
    .text_block__v3_top_v2 h3,
    .text_block__v3_topv3 h3 {
        font-size: 24px;
    }

    .text_block__v3_top_v2 {
        display: flex;
        flex-direction: column;
    }

    .text_block__v3_tags {
        gap: 8px;
        order: -1;
    }

    .text_block__v3--card_wrapper {
        gap: 8px;
        border-radius: 8px;
        padding: 7px 8px 7px 8px;
    }

    .text_block__v3--card_wrapper img {
        width: 14px;
    }

    .text_block__v3--card_wrapper p {
        font-size: 12px;
    }

    .dark-section .text_block__v3--btn {
        margin-top: 16px;
    }

    .text_block__v3_btm {
        flex-direction: column;
        align-items: start;
        gap: 18px;
    }


    .text_block__v3--btn_card {
        background-color: var(--text);
        padding: 12px 20px;
        border-radius: 16px;
        color: #F7F7F7;
        letter-spacing: 2%;
        line-height: 20px;
        font-weight: 400;
        font-size: 16px;
    }

    .text_block__v3_btm_setup p {
        font-size: 14px;
    }

    .text_block__v3_btm_setup_cheaps {
        flex-direction: row;
    }

    .dark-section .text_block__v3_btm_setup_cheaps p {
        padding: 6px 8px;
        font-size: 12px;
    }

    .text_block__v3--content.grid-2 {
        gap: 8px;
    }

    .text_block__v3--cards.gap_24 {
        gap: 8px;
    }


    .text_block__v3_top_v2 p {
        font-size: 12px;
        order: -1;
        display: block;
        margin-top: 0;
        margin-bottom: 4px;
    }



    .text_block__v3--card_v3 {
        padding: 24px 16px;
    }

    .text_block__v3_subtitle {
        font-size: 12px;
        padding-bottom: 4px;
    }

    .text_block__v3_title {
        font-size: 24px;
    }

    .text_block__v3_cheaps_title {
        margin-top: 16px;
    }

    .text_block__v3_cheaps_tags p {
        padding: 6px 8px;
        font-size: 12px;
    }

    .text_block__v3_cheaps_tag {
        padding: 6px 8px 6px 8px;
    }

    .text_block__v3_cheaps_tag img {
        width: 16px;
    }

    .text_block__v3_cheaps_tag p {
        all: unset;
        font-size: 12px;
    }

    .text_block__v3--card,
    .text_block__v3--card_v3,
    .card-2,
    .card-3,
    .card-4 {
        -webkit-mask-image: -webkit-radial-gradient(white, black);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    /* text_block__v4 */

    .text_block__v4--card.card {
        padding: 24px 16px;
    }

    .text_block__v4--card_top {
        padding-right: 0;
    }

    .text_block__v4--card_title {
        display: flex;
        flex-direction: column;
    }

    .text_block__v4--card_title p {
        order: -1;
    }

    .text_block__v4--card_title p,
    .text_block__v4--card_price p {
        font-size: 12px;
        padding-top: 0;
        padding-bottom: 4px;
    }

    .text_block__v4--card_title h3,
    .text_block__v4--card_price h3 {
        font-size: 24px;
    }


    .text_block__v4_btm p {
        font-size: 14px;
    }

    .features-grid {
        max-width: 310px;
    }

    .features-grid p {
        font-size: 12px;
        padding: 6px 8px;
        max-width: fit-content;
    }

    .dark-section .features-grid p {
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(21.899999618530273px);
        -webkit-backdrop-filter: blur(21.899999618530273px);
    }

    .text_block__v4--card.card::before {
        content: '';
        position: absolute;
        bottom: 55px;
        top: 18px;
        left: 0;

        width: 100%;
        background-image: url(../images/kit/kitcard1.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;

        mask-image: radial-gradient(55.04% 55.12% at 47.38% 53.14%, #D9D9D9 42.11%, rgba(115, 115, 115, 0) 100%);
        -webkit-mask-image: radial-gradient(55.04% 55.12% at 47.38% 53.14%, #D9D9D9 42.11%, rgba(115, 115, 115, 0) 100%);
    }

    .text_block__v4--cars.grid-2 {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
    }


    .text_block__v4--card_v2 img {
        left: auto;
        right: 10px;
        width: 127px;
    }

    .text_block__v4--card_v2_text {
        padding: 24px 60px 24px 16px;
    }

    .text_block__v4--card_v2_text h4 {
        font-size: 18px;
        padding-bottom: 12px;
    }

    .text_block__v4--card_v2_text p {
        max-width: 269px;
    }

    .text_block__v4--card_v2_kp h4 {
        font-size: 18px;
    }

    .text_block__v4--card_v2_kp p {
        margin-bottom: 16px;
        max-width: 269px;
    }

    .text_block__v4--card_v2--btn {
        font-size: 14px;
        text-align: center;
    }

    .text_block__v4--card_v2.kp {
        padding: 24px 16px;
    }

    /* text_block__v5 */
    .card-content {
        padding: 16px 22px 24px 16px;
    }

    .card-content h3 {
        font-size: 24px;
    }

    .card-desc {
        font-size: 12px;
    }

    .card-text {
        font-size: 14px;
        white-space: pre-line;
        margin-top: 90px;
    }

    .card .icon-1 {
        width: 188px;
    }

    .card .icon-2 {
        top: 102px;
        width: 120px;
        rotate: -30deg;
        right: 123px;
    }

    .card .icon-3 {
        top: 74px;
        width: 74px;
        right: 275px;
    }

    .card .icon-4 {
        width: 188px;
    }

    .card .icon-5 {
        bottom: 88px;
        width: 97px;
        right: 131px;
    }

    .card .icon-6 {
        width: 65px;
        filter: blur(2.5px);
        right: 245px;
    }

    .card .icon-7 {
        width: 41px;
        right: 315px;
    }

    .card .icon-8 {
        width: 195px;
    }

    .card .icon-9 {
        bottom: 80px;
        width: 87px;
        rotate: 52deg;
        right: 104px;
        position: absolute;
        filter: blur(4px);
        -webkit-mask-image: linear-gradient(100deg, black 0%, transparent 100%);
        mask-image: linear-gradient(100deg, black 0%, transparent 100%);
    }

    .card .icon-10 {
        bottom: 40px;
        width: 140px;
        rotate: -35deg;
        right: 177px;
        position: absolute;
        /* filter: blur(2px); */
        -webkit-mask-image: linear-gradient(-149deg, black 15%, transparent 64%);
        mask-image: linear-gradient(-149deg, black 15%, transparent 64%);
    }


    .card .icon-11 {
        bottom: 107px;
        width: 70px;
        rotate: 27deg;
        position: absolute;
        filter: blur(3px);
        right: 300px;

    }


    /* banner_s */
    .cases_banner {
        height: 90vh;
        padding-bottom: 30px;
    }

    .cases_banner_content {
        gap: 12px;
    }

    .breadcrumbs__item,
    .breadcrumbs__separator {
        font-size: 18px;
    }

    .cases_title_h1 {
        font-size: 20px;
    }

    /* text_block__v8 */

    .text_block__v8--content {
        gap: 8px;
    }

    .text_block__v8--content.grid-3 {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: auto;
    }

    .text_block__v8_card,
    .text_block__v8--card {
        border-radius: 16px;
        height: 100%;
    }

    .text_block__v8_card.card.flex_row {
        gap: 36px;
        padding: 16px 12px;
    }

    .company_card__left {
        padding: 12px 0 0 4px;
    }

    .company_card__left img {
        margin-bottom: 8px;
    }

    .compny_card__title {
        font-size: 12px;
    }

    .company_card__content {
        gap: 12px;
    }

    .company_card__text {
        font-size: 12px;
    }

    .company_card--btn {
        border-radius: 12px;
        padding: 9px;
        font-size: 12px;
    }

    .company_card__right {
        gap: 9px;
    }

    .company_card__adv {
        padding: 13px 10px;
        border-radius: 16px;
    }

    .company_card__adv h3,
    .company_card__adv h4 {
        font-size: 24px;
    }

    .comp-span {
        font-size: 19px;
    }

    .company_card__adv p {
        font-size: 10px;
    }

    .text_block__v8--card.card.flex_column {
        padding: 24px 16px;
    }

    .text_block__v8_subtitle {
        font-size: 14px;
    }

    .text_block__v8_title {
        font-size: 24px;
    }

    .text_block__v8_text {
        font-size: 14px;
    }

    .text_bottom__v8_bottom {
        margin-top: 40px;
    }

    /* text_block__v9 */
    .vacacy__title {
        padding: 24px 24px 0 24px;
    }


    .text_block__v9_top__text {
        font-size: 14px;
        margin-top: 12px;
        white-space: pre-line;
        max-width: 330px;
    }

    .text_block__v9_top--card img {
        padding: 24px 16px 0 16px;
    }

    .text_block__v9--content {
        gap: 8px;

        display: flex;
        overflow-x: auto;

        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-right: 16px;
    }


    .vacancy--card {
        padding: 24px 16px;
        flex-shrink: 0;
        max-width: fit-content;
        border-radius: 16px;
    }

    .vacancy__description {
        white-space: pre-line;
    }

    .vacancy--btn {
        padding: 12px 78.5px;
    }

    /* text_block__v10 */
    .text_block__v10--card_content {
        padding: 14px 16px 12px 16px;
    }

    .text_block__v10_img img {
        width: 100%;
        max-height: 100px;
        height: 100%;
        object-fit: cover;
        border-radius: 22.5px;
    }

    .text_block__v10_tag {
        top: 11.25px;
        left: 11.25px;
        padding: 4.22px 11.25px;
        border-radius: 11.25px;
        font-size: 9.85px;
    }

    .text_block__v10--card_content h2 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .text_block__v10--card_content p {
        font-size: 12px;
        margin-bottom: 10px;
        max-width: 251px;
    }

    .text_block__v10_info_tags {
        gap: 8px;
    }

    .text_block__v10_info {
        gap: 4.22px;
    }

    .text_block__v10_info img {
        width: 8.44px;
    }

    .text_block__v10_info p {
        font-size: 12px;
        margin-bottom: 0;
    }

    .text_block__v10--btn {
        font-size: 12px;
    }

    .text_block__v10 {
        position: relative;
    }

    .text_block__v10-title--btn {
        position: absolute;
        bottom: 0;
        max-width: 100%;
        width: 100%;
    }

    /* text_block__v7 */

    .text_block__v7__info.card {
        border-radius: 16px;
    }

    .text_block__v7__info {
        padding: 24px 16px;
        flex-direction: column;
        gap: 18px;
    }

    .text_block__v7__info>.text_block__v7__info-block:first-child {
        margin-right: 0;
        margin-bottom: 0;
    }

    .text_block__v7__info-group1,
    .text_block__v7__info-group2 {
        display: grid;
        grid-template-columns: 172px 120px;
        gap: 18px;
        margin-right: 0;
        width: 100%;
    }

    .text_block__v7__subtitle {
        font-size: 14px;
    }

    .text_block__v7__info-value {
        font-size: 18px;
    }

    .text_block__v7__info-value.ih {
        font-size: 24px;
        color: rgba(239, 83, 69, 1);
    }

    /* about_company */
    .about_company {
        margin-top: 16px;
        margin-bottom: 48px;
    }

    .about_company--content {
        grid-template-columns: repeat(1, 1fr);
        gap: 8px 0;
    }

    .about_company--card {
        padding: 24px 16px;
    }

    .about_company_title {
        font-size: 24px;
    }

    .about_company_text {
        font-size: 14px;
    }

    .about_company_text.p1 {
        margin-bottom: 20px;
        white-space: normal;
    }

    .about_company__cover {
        height: 365px;
        order: -1;
    }

    .about_company__cover img {
        object-fit: cover;
        height: 100%;
    }

    .about_company__cover_title {
        top: 16px;
        left: 16px;
        font-size: 24px;
        white-space: normal;
        max-width: 274px;

    }

    .about_company--btn {
        bottom: 24px;
        right: 16px;
        left: 16px;
        text-align: center;
    }

    .about_company__cover::before {
        mask-image: linear-gradient(0deg, rgba(84, 84, 84, 0) 0%, #545454 69.04%);
        mix-blend-mode: multiply;
    }

    .about_company__bottom_card--content {
        padding: 8px 8px 24px 8px;
        gap: 12px;
    }

    .about_company__bottom_card--content img {
        max-height: 142px;
        height: 100%;
        border-radius: 8px;
    }

    .about_company__bottom_card--content h3 {
        font-size: 24px;
        padding-left: 8px;
        margin-top: 4px;
    }

    .about_company__bottom_card--content p {
        font-size: 14px;
        padding-left: 8px;
    }


    .icon-cover {
        top: 121px;
        max-width: 76px;
    }

    .icon-cover2 {
        top: 93px;
        right: 17px;
        max-width: 95px;
    }

    .about_company__text_card {
        padding: 24px 84px 24px 16px;
        gap: 16px;
    }

    .about_company__text_card h4 {
        font-size: 24px;
        white-space: nowrap;
    }

    .about_company__text_card p {
        font-size: 14px;
    }

    /* text_block__v11 */
    section.text_block__v11 {
        gap: 16px;
    }

    .text_block__v11__info {
        padding: 24px 42px 24px 24px;
        gap: 24px;
    }



    .text_block__v11__info-value {
        font-size: 18px;
    }

    .text_block__v11__subtitle {
        font-size: 14px;
    }

    .contacts_card__left {
        padding: 24px 12px 24px 24px;
    }

    .contacts_card__left h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .contact_group {
        gap: 4px;
    }

    .contact_group__rigth_group {
        gap: 45px;
    }


    .contacts_card__right__top {
        padding: 24px 21px 24px 24px;
    }

    .contacts_card__right__top h4 {
        font-size: 18px;
    }

    .contacts_card__content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* text_block__v12 */
    .text_block__v12--cards .stack_card {
        max-width: 270px;
        height: 145px;
    }

    .text_block__v12--cards.active .stack_card__img img {
        height: 116px;
    }


    /* text_block__v6 */
    .text_block__v6 .title_content {
        margin-bottom: 9px;
    }

    .text_block__v6 {
        gap: 15px !important;
    }

    .partners_slider {
        height: 79px;
    }

    .partners_slide {
        height: 79px;
    }

    .partners_content {
        gap: 15px;
    }

    .partners_slide img {
        border-radius: 15.82px;
        padding: 16px;
    }



    .text_block__v6.track_wh .partners_slide img.track_wh__logo {
        background-image: radial-gradient(circle, #2A2A2A 65%, transparent 66%);
        background-size: 70px 70px;
        padding: 16px;
    }

    .cases_cards.grid-2 {
        display: flex;
        flex-direction: column;
    }

    .cases_card:nth-child(1) {
        order: 1;
    }

    .cases_card:nth-child(2) {
        order: 2;
    }

    .cases_card:nth-child(3) {
        order: 3;
    }

    .cases_card:nth-child(4) {
        order: 4;
    }

    .cases_card:nth-child(5) {
        order: 5;
    }

    .cases_card:nth-child(6) {
        order: 8;
    }

    .cases_card:nth-child(7) {
        order: 6;
    }

    .cases_card:nth-child(8) {
        order: 7;
    }

    .cases_card:nth-child(9) {
        order: 10;
    }

    .cases_card:nth-child(10) {
        order: 9;
    }

    .cases_card:nth-child(11) {
        order: 11;
    }

    .cases_card:nth-child(12) {
        order: 12;
    }

    .cases_card:nth-child(13) {
        order: 14;
    }

    .cases_card:nth-child(14) {
        order: 13;
    }

    .cases_card:nth-child(15) {
        order: 15;
    }

    .cases_card:nth-child(16) {
        order: 16;
    }

    .cases_card:nth-child(17) {
        order: 17;
    }

    .cases_card:nth-child(18) {
        order: 18;
    }

    .cases_card:nth-child(19) {
        order: 19;
    }

    .cases_card:nth-child(20) {
        order: 20;
    }

    .cases_card:nth-child(21) {
        order: 21;
    }

    .cases_card:nth-child(22) {
        order: 22;
    }

    .cases_card:nth-child(23) {
        order: 23;
    }

    .cases_card:nth-child(24) {
        order: 24;
    }

    .cases_card:nth-child(25) {
        order: 25;
    }

    .cases_card:nth-child(26) {
        order: 26;
    }

    .cases_card:nth-child(27) {
        order: 27;
    }

    .cases_card:nth-child(28) {
        order: 28;
    }

    .text-blockstack1 p,
    .text-blockstack2 p {
        hyphens: none;
        word-break: keep-all;
        white-space: nowrap;
    }

    .text-blockstack2.jsb p {
        word-break: normal !important;
        white-space: pre-line;
        max-width: 216px !important;
    }

    .cookie-modal.active {
        left: 46%;
    }

    .cookie__agree {
        flex-direction: column;
        align-items: start;
    }

}