@font-face {
    font-family: 'Geist';
    font-weight: 200;
    src: url('./fonts/Geist/static/Geist-ExtraLight.ttf');
}

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

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

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

@font-face {
    font-family: 'Geist';
    font-weight: 600;
    src: url('./fonts/Geist/static/Geist-SemiBold.ttf');
}

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

* {
    margin: 0;
    padding: 0;
}

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


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

button {
    background: var(--bg-button);
    color: var(--white);
    border: none;
    display: block;
    border-radius: 24px;
    outline: none;
    transition: 0.3s ease-in;
    cursor: pointer;
}

@media (max-width:900px) {
    button {
        padding: 14px 40px;
        border-radius: 20px;
    }
}

@media (max-width:500px) {
    button {
        padding: 14px 34px;
        border-radius: 18px;
    }
}

@media (max-width:376px) {
    button {
        padding: 12px 32px;
        border-radius: 16px;
    }
}

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: 1208px;
    --pad: 16px;
    --pad-lg: 0px;


    --bg: #ffffff;
    --text: #1B1E18;
    --muted: rgba(14, 20, 34, 0.65);

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

    --btn_hover: #177553;
    --text-accent: #16C988;
    --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: #07080B;
    /* из 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: "Geist", system-ui, -apple-system, Segoe UI, Roboto, Arial,
        sans-serif;
    color: var(--text);
    background: var(--bg);
}

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

@media (max-width: 1240px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width:390px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
}


.form-span {
    color: red;
    letter-spacing: 2%;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
}

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

@media (max-width:390px) {
    .section {
        gap: 25px;
    }
}

.dark-section {
    background: #0D1122;
    color: #FFF;
}

.dark-section:first-child {
    border-radius: 48px 48px 0 0;
}

.dark-section .card {
    background: #161D37;
}

.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_pad {
    padding-top: 80px;
}


.top_s_pad {
    padding-top: 64px;
}



.btm_pad {
    padding-bottom: 80px;
}

.btm_pad--48 {
    padding-bottom: 48px;
}

.btm_pad--40 {
    padding-bottom: 40px;
}


@media (max-width: 1350px) and (min-width: 1201px) {
    .top_pad {
        padding-top: 70px;
    }

    .btm_pad {
        padding-bottom: 70px;
    }

    .top_s_pad {
        padding-top: 56px;
    }

    .btm_s_pad {
        padding-bottom: 56px;
    }

    .btm_pad--48 {
        padding-bottom: 38px;
    }

    .btm_pad--40 {
        padding-bottom: 30px;
    }
}

@media (max-width: 1200px) and (min-width: 993px) {
    .top_pad {
        padding-top: 64px;
    }

    .btm_pad {
        padding-bottom: 64px;
    }

    .top_s_pad {
        padding-top: 52px;
    }

    .btm_s_pad {
        padding-bottom: 52px;
    }

    .btm_pad--48 {
        padding-bottom: 30px;
    }

    .btm_pad--40 {
        padding-bottom: 22px;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    .top_pad {
        padding-top: 56px;
    }

    .btm_pad {
        padding-bottom: 56px;
    }

    .top_s_pad {
        padding-top: 48px;
    }

    .btm_s_pad {
        padding-bottom: 48px;
    }

    .btm_pad--48 {
        padding-bottom: 26px;
    }

    .btm_pad--40 {
        padding-bottom: 18px;
    }
}

@media (max-width: 768px) and (min-width: 601px) {
    .top_pad {
        padding-top: 48px;
    }

    .btm_pad {
        padding-bottom: 48px;
    }

    .top_s_pad {
        padding-top: 40px;
    }

    .btm_s_pad {
        padding-bottom: 40px;
    }

    .btm_pad--48 {
        padding-bottom: 18px;
    }

    .btm_pad--40 {
        padding-bottom: 10px;
    }
}

@media (max-width: 600px) and (min-width: 481px) {
    .top_pad {
        padding-top: 40px;
    }

    .btm_pad {
        padding-bottom: 40px;
    }

    .top_s_pad {
        padding-top: 36px;
    }

    .btm_s_pad {
        padding-bottom: 36px;
    }

    .btm_pad--48 {
        padding-bottom: 14px;
    }

    .btm_pad--40 {
        padding-bottom: 6px;
    }
}



@media (max-width:480px) {
    .btm_pad {
        padding-bottom: 48px;
    }

    .top_pad {
        padding-top: 48px;
    }

    .top_s_pad {
        padding-top: 48px;
    }
}

.btm_s_pad {
    padding-bottom: 64px;
}

.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);
}

.width-308 {
    width: 308px;
}

.width-283 {
    width: 283px;
}

.width-450 {
    width: 450px;
}

.width-238 {
    width: 238px;
}

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

.card_project__details p .span-v2 {
    color: #1B1E18;
    opacity: 0.34;
}

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

.title {
    font-size: 48px;
    font-weight: 650;
    line-height: 100%;
    text-transform: uppercase;
}

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

.subtitle {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 300;
    line-height: 100%;
    opacity: 0.8;
    padding-left: 4px;
}

@media (max-width: 1200px) and (min-width: 951px) {
    .title {
        font-size: 40px;
    }

    .subtitle {
        font-size: 16px;
    }

    .title_content {
        gap: 8px;
    }
}

@media (max-width: 950px) and (min-width: 769px) {
    .title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 16px;
    }

    .title_content {
        gap: 8px;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 15px;
    }

    .title_content {
        gap: 8px;
    }
}

@media (max-width: 480px) and (min-width: 377px) {
    .title {
        font-size: 28px;
    }

    .subtitle {
        font-size: 14px;
    }

    .title_content {
        gap: 6px;
    }
}

@media (max-width:390px) {
    .title_content {
        gap: 6px;
    }

    .title {
        font-size: 24px;
        line-height: 120%;
    }

    .subtitle {
        font-size: 14px;
        padding-left: 0px;
    }
}

/* image */

.abs-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.card_v2 {
    background-color: var(--grey);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

/* header */
.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;
}

.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: 19px 32px;
    border-radius: 24px;
    background: #00000025;
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(7.5px);
    transition: all 0.3s ease;
}

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

.logo img {
    width: 100%;
    max-width: 226px;
    height: auto;
}

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

.nav__link {
    font-size: 16px;
    color: #fff;
    transition: color 150ms ease;
    text-transform: uppercase;
    line-height: 100%;
    letter-spacing: 4%;
    font-weight: 400;
    text-decoration: none;
}

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

.header__phone {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0.04em;
    line-height: 100%;
    text-decoration: none;
}

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

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

.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;
}



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

.burger-btn.active span {
    position: relative;
}

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

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

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

.mobile-menu {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    opacity: 0;
}

.mobile-menu.active {
    max-height: 500px;
    opacity: 1;
}

.mobile-menu .nav__list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    list-style: none;
    padding: 24px 0 0 0;
    margin: 0;
}

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

.mobile-menu .header__right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0 0 0;
    margin-top: 20px;
}

.mobile-menu .header__phone {
    font-size: 18px;
    color: white;
}

.mobile-menu .icon-btn__icon {
    width: 26px;
    height: 26px;
}

/* banner_main */

.banner_main {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    align-items: flex-end;
}

.banner_main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 131px;
    z-index: 0;
    background: linear-gradient(0deg, #1b1e1800 0%, #1B1E18 100%);
}

.banner_main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 427px;
    z-index: 0;
    background: linear-gradient(180deg, rgba(27, 30, 24, 0) 0%, #1B1E18 87.79%);
}

.banner_main__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
    z-index: 1;
    width: 100%;
    padding-bottom: 56px;
}

.banner_main__title {
    font-size: 100px;
    font-weight: 400;
    max-width: 572px;
    line-height: 110%;
    color: var(--white);
    text-transform: uppercase;
}

.banner_main__title_span {
    color: var(--text-accent);
    font-weight: 700;
}

.banner_main__subtitle {
    color: #FFFFFF;
    font-weight: 200;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
}

.banner_main__right {
    max-width: 390px;
    gap: 18px;
    text-align: center;
    align-items: center;
    margin-bottom: 20px;
}

.banner_main__right button {
    font-size: 24px;
    width: 392px;
    font-weight: 300 !important;
    padding: 16px 32px;
    transition: 0.5s ease;

}

.banner_main__right button:hover {
    background-color: var(--btn_hover);
    transition: 0.5s ease;
}


/* advantages */
.advantages {
    padding-top: 16px;
    background: var(--dark-2);
    border-radius: 0 0 48px 48px;
}

.advantages__content {
    gap: 16px;
}

.advantages-card {
    position: relative;
    background: #2B2C29;
    justify-content: space-between;
    gap: 54px;
    padding: 20px 16px 16px 16px;
}

.advantages-card img {
    position: absolute;
    right: 0;
    top: 0;
}

.advantages__title {
    line-height: 120%;
    font-weight: 200;
    font-size: 24px;
    max-width: 242px;
}

.advantages__title,
.advantages__subtitle {
    color: white;
}

.advantages__subtitle {
    font-size: 14px;
    font-weight: 200;
    line-height: 140%;
    opacity: 0.8;
    max-width: 243px;
}

/* text_block__v1 */
.text_block__v1--card {
    display: flex;
    flex-direction: column;
    height: 340px;
}

.mbr{
    display: none;
}

.card-1 {
    padding: 24px 30px 24px 24px;
}

.card-1:last-child {
    padding-right: 24px;
}

.card-2 {
    padding: 24px;
}

.card-2.text_block__v1--card_p2 {
    padding-right: 26px;
}

.text_block__v1--card h3 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 450;
    margin-bottom: 16px;
}

.text_block__v1--card p {
    opacity: 0.8;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300;
}

.text_block__v1--card_p1 {
    margin-bottom: 12px;
}

.main_info {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 1;
    display: flex;
    gap: 12px;
}

.main_info__card {
    padding: 16px 20px;
    border-radius: 24px;
    box-sizing: border-box;
    background: rgba(249, 249, 249, 0.6);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.main_info__card h4 {
    font-size: 32px;
    line-height: 1.4;
    font-weight: 500;
}

.main_info__card p {
    line-height: 1.4;
    font-size: 16px;
    font-weight: 400;
}

.main_info__card span {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 300;
    opacity: 0.6;
    margin-bottom: 3px;
}

.text_block__v1--btn {
    background-color: var(--btn);
    border-radius: 16px;
    padding: 13px 36px;
    text-align: center;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 24px;
    height: 48px;
    transition: 0.5s ease;
    white-space: nowrap;
}

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

.width-308 {
    width: 308px;
}

.width-283 {
    width: 283px;
}

.width-450 {
    width: 450px;
}

.width-238 {
    width: 238px;
}

.span-2-row-1 {
    height: 340px !important;
}

.span-2-row-2 {
    height: 382px !important;
}

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

.abs-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text_block__v1--content {
    display: grid;
    grid-template-columns: repeat(3, 392px);
    gap: 24px;
}


/* text_block__v2 */
.text_block__v2_title {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.text_block__v2_title--btn-dark,
.text_block__v2_title--btn-dark_mob {
    border-radius: 16px;
    background: var(--text);
    color: var(--bg);
    line-height: 1.2;
    font-size: 18px;
    font-weight: 400;
    padding: 13px 32px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.text_block__v2_title--btn-dark:hover,
.text_block__v2_title--btn-dark_mob:hover {
    background: var(--darkgrey);
    border: 1px solid var(--dark-2);
    transition: all 0.4s ease;
    color: var(--text);
}

.text_block__v2_title--btn-dark_mob {
    display: none;
}

.text_block__v2--content {
    align-items: center;
    gap: 32px;
}

.cards_project {
    gap: 32px 16px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.card_project {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 430px;
}

.card_project__content {
    padding-left: 4px;
    height: 55px;
    transition: height 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card_project:hover .card_project__content {
    height: 135px;
}

.card_project__image_wrapper {
    position: relative;
    margin-bottom: 16px;
    overflow: hidden;
    height: 355px;
    width: 100%;
    border-radius: 24px;
    transition: height 0.4s ease;
    flex-shrink: 0;
    background: var(--darkgrey);
}

.card_project__image_wrapper img {
    border-radius: 24px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hit {
    background-color: var(--btn);
    border-radius: 16px;
    padding: 6px 16px;
    color: #fff;
    line-height: 1.4;
    font-weight: 400;
    font-size: 14px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.card_project__tags {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.card_project__tag {
    background: var(--darkgrey);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 6px 16px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}

.card_project__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    flex-shrink: 0;
    margin-bottom: 15px;
}

@media (min-width: 1400px) {
    .card_v3__top_price {
        transform: translateY(1px);
        display: inline-block;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}

@media (min-width: 1920px) {
    .card_v3__top_price {
        transform: translateY(2px);
    }
}

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

.card_project__details h2 {
    font-size: 32px;
    font-weight: 500;
    line-height: 100%;
    margin: 0;
}

.card_project__details p {
    padding-top: 8px;
    font-size: 24px;
    line-height: 100%;
    font-weight: 300;
    white-space: nowrap;
    margin: 0;
}

.card_v3__top_price {
    font-size: 32px;
    font-weight: 300;
    line-height: 100%;
    white-space: nowrap;
    margin: 0;
    transform: scale(0.99);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

span.project_price {
    font-weight: 500;
}

.card_project__hover {
    justify-content: space-between;
    transition: opacity 0.5s ease;
    opacity: 0;
    width: 100%;
    height: 55px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.card_project--btn {
    background-color: var(--btn);
    border-radius: 16px;
    padding: 13px 56px;
    color: #fff;
    line-height: 1.2;
    font-weight: 400;
    font-size: 18px;
    transition: all 0.4s ease;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    flex-shrink: 0;
}

.card_project--btn:hover {
    background-color: var(--btn_hover);
    transition: all 0.4s ease;
}

.card_project:hover .card_project__image_wrapper {
    height: 288px;
}

.card_project:hover .card_project__hover {
    opacity: 1;
}

.card_project__hover_list {
    gap: 24px;
    align-items: center;
    grid-template-columns: 89px 56px 56px 57px;
    flex-shrink: 0;
    display: grid;
}

.card_project__hover_item {
    gap: 6px;
    display: flex;
    flex-direction: column;
}

.card_project__hover_item p {
    font-size: 12px;
    opacity: 0.6;
    line-height: 1.4;
    font-weight: 300;
    white-space: nowrap;
    margin: 0;
}

.card_project__hover_item h3 {
    font-size: 24px;
    line-height: 100%;
    font-weight: 700;
    white-space: nowrap;
    margin: 0;
}

span.hover_span {
    font-weight: 400;
}

.text_block__v2--btn {
    background-color: var(--btn);
    border-radius: 16px;
    padding: 13px 32px;
    color: #fff;
    line-height: 1.2;
    font-weight: 400;
    font-size: 18px;
    transition: all 0.4s ease;
    display: inline-block;
    text-align: center;
}

.text_block__v2--btn:hover {
    background-color: var(--btn_hover);
    transition: all 0.4s ease;
}


/* text_block__v3 */
.text_block__v3--card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text_block__v3--card.card-1 {
    padding: 24px 26px 24px 18px;
}

.text_block__v3--card.card-2 {
    padding: 24px 13px 24px 18px;
}

.text_block__v3--card h3 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 450;
    margin-bottom: 16px;
    letter-spacing: 2%;
    max-width: 300px;
}

.text_block__v3--card p {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300;
    color: #4C4C4C;
}

.text_block__v3--card_p1 {
    margin-bottom: 12px;
}

.text_block__v3--btn {
    background-color: var(--btn);
    border-radius: 16px;
    padding: 13px 28px;
    text-align: center;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 24px;
    height: 48px;
    transition: 0.5s ease;
}

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

.temperature-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.temp-badge {
    position: absolute;
    padding: 16px 20px;
    border-radius: 24px;
    box-sizing: border-box;
    background: rgba(249, 249, 249, 0.6);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.temp-badge--winter {
    bottom: 16px;
    left: 16px;
}

.temp-badge--summer {
    top: 16px;
    right: 16px;
}


.temp-value {
    font-size: 32px;
    font-weight: 500;
    color: #1B1E18;
    line-height: 140%;
}


@media (max-width:1300px) {
    .temp-badge {
        padding: 14px 18px;
    }
}

@media (max-width:950px) {
    .temp-badge {
        padding: clamp(12px, 3vw, 14px) clamp(14px, 3vw, 18px);
    }

    .temp-value {
        font-size: clamp(20px, 5vw, 28px);
    }
}


@media (max-width:390px) {
    .temp-badge {
        padding: 12px 16px;
    }

    .temp-value {
        font-size: 24px;
    }
}

/* text_block__v4 */
.text_block__v4 {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.text_block__v4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(344.69deg, rgba(27, 30, 24, 0) 47.44%, rgba(27, 30, 24, 0.73) 71.83%);
    border-radius: 24px;
    z-index: 1;
}

.text_block__v4::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(143.46deg, rgba(27, 30, 24, 0) 43.88%, rgba(27, 30, 24, 0.63) 77.18%);
    border-radius: 24px;
    z-index: 1;
}

.text_block__v4--content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 32px 14px 24px;
}

.text_block__v4--title {
    max-width: 435px;
}

.text_block__v4--title h2 {
    font-size: 40px;
    font-weight: 450;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.text_block__v4--title p {
    font-size: 16px;
    color: var(--bg);
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.8;
}

.text_block__v4--form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form_section__fields {
    align-items: end;
    gap: 9px 16px;
    flex: 1;
    display: grid;
    grid-template-columns: 399px 399px 314px;
}

.form_group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

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

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

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

.form_section__btn {
    padding: 13px 89px;
    background: var(--btn);
    color: var(--bg);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s ease;
    white-space: nowrap;
    line-height: 100%;
    letter-spacing: 0.02em;
    grid-row: 1;
    grid-column: 3;
    justify-self: center;
    transition: all 0.4s ease;
}

.form_section__btn:hover {
    background: var(--btn_hover);
    transition: all 0.4s ease;
}

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

.form_checkbox_wrapper {
    grid-row: 2;
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    align-self: center;
    padding-left: 8px;
    padding-bottom: 10px;
    padding-top: 4px;
}

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

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: 4px;
}

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: 12px;
}

.form-checkbox__text {
    font-size: 12px;
    line-height: 1.2;
    color: var(--bg);
    font-weight: 400;
}

.form_section__policy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
    text-align: center;
    max-width: 277px;
    font-weight: 400;
    grid-row: 2;
    grid-column: 3;
    justify-self: center;
    align-self: center;
    margin: 0;
}


/* reviews */
.reviews_title {
    justify-content: space-between;
    align-items: end;
    padding-bottom: 32px;
}

.title_buttons button {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2%;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 16px;
}

.make__review {
    align-items: center;
    gap: 10px;
}

.all__reviews {
    background: #545454;
    align-items: center;
    gap: 10px;
}

.make__review svg,
.all__reviews svg {
    padding-bottom: 1.5px;
}

.review_card {
    padding: 18px 32px;
}

.info_user {
    display: flex;
    align-items: center;
    gap: 18px;
}

.name_user {
    font-weight: 500;
    font-size: 24px;
    line-height: 180%;
}

.date_review {
    opacity: 0.6;
    font-weight: 400;
    font-size: 16px;
}

.review_comment {
    opacity: 0.8;
    padding-top: 16px;
    padding-bottom: 19px;
    font-weight: 400;
    font-size: 16px;
}

.where_published {
    font-weight: 500;
    font-size: 16px;
}

.where_published span {
    color: var(--bg-button);
}

.title_buttons_mob {
    display: none;
}


.slider_block__wrapper .swiper-wrapper {
    gap: 0 !important;
}

.slider_block__wrapper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0 !important;
}

/* certificates */
.certificate_section {
    overflow: visible;
    position: relative;
}

.certificate_slider_wrapper {
    position: relative;
    box-sizing: border-box;
    overflow: visible;
}

.certificate_slider.swiper {
    position: relative;
    height: auto;
    overflow: hidden !important;
}

.certificate_slider .swiper-wrapper {
    display: flex;
    height: auto;
    align-items: center;
    transition-timing-function: ease;
}

@media(max-width: 768px) {
    .certificate_slide img {
        height: 100% !important;
    }
}

@media (min-width: 1024px) {
    .certificate_slider .swiper-slide {
        margin-right: 16px !important;
    }
}

.certificate_slider .swiper-slide:last-child {
    margin-right: 0 !important;
}

.certificate_slide {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.certificate_slide img {
    width: 100%;
    height: 416px;
    object-fit: contain;
    display: block;
}

.slide_subtitle {
    text-align: center;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 0.02em;
    line-height: 1.3;
    font-size: 16px;
    font-weight: 600;
    color: #1E1E1E;
    padding-top: 12px;
    width: 100%;
}

.certificate_button-prev,
.certificate_button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    background: #F5F5F5;
    backdrop-filter: blur(21px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.certificate_button-prev:active,
.certificate_button-next:active {
    transition: 0.3s;
    background: #e8e7e7;
}

.certificate_button-prev {
    left: -69px;
}

.certificate_button-next {
    right: -69px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}


@media (min-width: 1350px) {

    .certificate_button-prev,
    .certificate_button-next {
        display: flex;
    }
}

@media (max-width: 1349px) {

    .certificate_button-prev,
    .certificate_button-next {
        display: none !important;
    }
}

/* slider */
.slider_block__wrapper {
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
}

.slider_block__wrapper .swiper-slide {
    width: 100%;
    height: 100%;
}

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

.slider_tabs {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10;
    border-radius: 16px;
    background-color: #ffffff75;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 8px 8px 8px 12px;
    display: inline-flex;
    gap: 8px;
}

.slider_tabs__tab.active {
    background: var(--bg);
    box-shadow: 0 4px 4px #A3A3A320;
    -webkit-box-shadow: 0 4px 4px #A3A3A320;
    -moz-box-shadow: 0 4px 4px #A3A3A320;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.3;
}

.slider_tabs__tab {
    padding: 6px 16px;
    background: transparent;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    white-space: nowrap;
    cursor: pointer;
    color: #1B1E18;

}

.swiper-button-prev,
.swiper-button-next {
    width: 45px;
    height: 45px;
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(21px);
    -webkit-backdrop-filter: blur(21px);
    border-radius: 25px;
    margin: 0;
    top: 52% !important;
    transform: translateY(-50%) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 10;
    background-image: none !important;
    background-position: center;
    background-repeat: no-repeat;
}

.slider_block__wrapper .swiper-button-prev {
    left: 24px !important;
}

.slider_block__wrapper .swiper-button-next {
    right: 24px !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    max-width: 18px;
    flex-shrink: 0;
    display: block;
}

.slider_block__wrapper .swiper_counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 13px 24px;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    z-index: 10;
    white-space: nowrap;
    letter-spacing: 8%;
}

.slider_block--fullscreen {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    flex-shrink: 0;
}

.slider_block--fullscreen svg {
    width: 20px;
    height: 20px;
    stroke: rgba(30, 30, 30, 1);
    display: block;
}

.gallery-fullscreen:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}


/* text_block__v7 */
.text_block__v7 {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    background-size: cover;
}


.text_block__v7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(165deg,
            rgba(27, 30, 24, 0.9) 24%,
            rgba(27, 30, 24, 0.2) 48%,
            rgba(27, 30, 24, 0.6) 69%,
            rgba(27, 30, 24, 0.90) 110%);
    border-radius: 24px;
    z-index: 1;
}

.text_block__v7--content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 24px 32px 16px 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.text_block__v7--title {
    max-width: 461px;
}

.text_block__v7--title h2 {
    font-size: 40px;
    font-weight: 450;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 12px;
}

.text_block__v7--title p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    font-weight: 400;
}

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

.form_section__fields {
    align-items: end;
    gap: 9px 16px;
    flex: 1;
    display: grid;
    grid-template-columns: 399px 399px 314px;
    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: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    padding-left: 8px;
}

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

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

input[type="tel"],
input[type="tel"]::placeholder {
    letter-spacing: 2%;
}

.form_section__btn {
    padding: 13px 89px;
    background: var(--btn);
    color: var(--bg);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s ease;
    white-space: nowrap;
    line-height: 100%;
    letter-spacing: 0.02em;
    grid-row: 1;
    grid-column: 3;
    justify-self: center;
    box-sizing: border-box;
}

.form_section__btn:hover {
    background: var(--btn_hover);
    transition: all 0.4s ease;
}

.form_checkbox_wrapper {
    grid-row: 2;
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    align-self: center;
    padding-left: 8px;
    padding-bottom: 10px;
    padding-top: 4px;
}

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

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: 4px;
}

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: 12px;
}

.form-checkbox__text {
    font-size: 12px;
    line-height: 1.2;
    color: var(--bg);
    font-weight: 400;
}

.form_section__policy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
    text-align: center;
    max-width: 277px;
    font-weight: 400;
    grid-row: 2;
    grid-column: 3;
    justify-self: center;
    align-self: center;
    margin: 0;
}


/* contacts */
.contacts__info-block {
    gap: 6px;
}

.contacts__info {
    margin-bottom: 24px;
}

.contacts__subtitle {
    opacity: 0.4;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
}

.contacts__info-value {
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 4%;
    color: #051A24;
}

.contacts__bottom {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(392px, 1fr));
}

.address_title {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: #1E1E1E;
}

.address_info {
    padding-top: 16px;
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: #1E1E1E;
}

.contacts__tel {
    padding-top: 11px;
    padding-bottom: 12px;
}

.contacts__tel,
.contacts__mail {
    gap: 4px;
}

.contacts__tel p,
.contacts__mail p {
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 2%;
    color: rgba(84, 84, 84, 1);
}

.contacts__tel a,
.contacts__mail a {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 2%;
}

.time__info {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 2%;
    text-transform: uppercase;
    color: #545454;
    margin-top: 6px;
}

.contacts__button button {
    font-size: 18px;
    line-height: 20px;
    padding: 18px 79.5px;
    width: 100%;
    border-radius: 16px;
    margin-top: 24px;
    letter-spacing: 2%;
    font-weight: 500;
}

.contacts__right {
    grid-column: span 2;
    max-width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.contacts__right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    border-radius: 24px;
}

.letter_2 {
    letter-spacing: 2%;
}

/* plan */
.plan_section {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.plan_section.top_s_pad {
    padding-top: 62px;
}

.plan_left-column {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform;
}

@supports (position: sticky) {
    .plan_left-column {
        transition: transform 0.2s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }
}

.plan_right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.plan_project {
    padding: 24px 32px 32px 24px;
    height: fit-content;
}

.title_plan {
    color: #1E1E1E;
    opacity: 76%;
    font-weight: 500;
    font-size: 24px;
}

.plan_project-subtitle {
    color: #1E1E1E;
    padding-top: 5px;
    padding-bottom: 32px;
    opacity: 40%;
    font-weight: 500;
    line-height: 120%;
    font-size: 16px;
}

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

.plan_project_buttons {
    display: flex;
    align-items: center;
    padding: 6.5px 12px;
}

.plan_project_buttons.card {
    background: white;
    border-radius: 16px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.plan_project_buttons button {
    font-size: 16px;
    background: none;
    padding: 0;
    font-weight: 200;
    padding: 6.5px 12px;
    border: none;
    cursor: pointer;
}

.plan_project-img {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.plan_project-img img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    padding-left: 8px;
}

.increase_picture {
    position: absolute;
    top: 22px;
    right: 31px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.plan_project-img:fullscreen {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.plan_project-img:fullscreen img {
    max-height: 90vh;
    width: auto;
    object-fit: contain;
}

.plan_project-img:-webkit-full-screen {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.plan_project-img:-webkit-full-screen img {
    max-height: 90vh;
    width: auto;
    object-fit: contain;
}

.plan_project-img:-moz-full-screen {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.plan_project-img:-moz-full-screen img {
    max-height: 90vh;
    width: auto;
    object-fit: contain;
}

.plan_project-img:fullscreen::after {
    content: "ESC - выход";
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-family: monospace;
    pointer-events: none;
    z-index: 9999;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.second_btn button {
    color: #000;
    padding: 6px 16px;
    font-weight: 200;
}

.second_btn.active button {
    padding: 6px 16px;
    background: var(--dark);
    color: white;
    box-shadow: 0px 4px 4px 0px #A3A3A31F;
    border-radius: 12px;
}

.specifications {
    padding: 24px 20px 15px 24px;
    height: fit-content;
}

.specifications-title {
    padding-bottom: 16px;
}

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

.specification_block-subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    opacity: 40%;
    padding-bottom: 6px;
}

.specification_block-value {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 2%;
    color: #1E1E1E;
}

.options {
    padding-right: 6px;
}

.options_title {
    padding-top: 33px;
}

.description {
    height: fit-content;
    padding-right: 43px;
}

.description-title {
    color: #1E1E1E;
    opacity: 76%;
    font-weight: 500;
    font-size: 24px;
    padding-bottom: 12px;
}

.description-subtitle {
    font-weight: 300;
    line-height: 140%;
    font-size: 16px;
    opacity: 80%;
}

.price {
    padding-bottom: 32px;
}

.price-value {
    padding-top: 16px;
    padding-bottom: 24px;
    font-weight: 500;
    font-size: 32px;
}

.min_price-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    opacity: 0.4;
    padding-bottom: 6px;
}

.min_price-value {
    font-weight: 500;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 2%;
    padding-bottom: 24px;
}

.price button {
    padding: 16px 20px;
    border-radius: 16px;
    font-weight: 200;
    font-size: 18px;
    line-height: 120%;
    width: 100%;
    background: var(--btn);
    color: white;
    border: none;
    cursor: pointer;
}


.accordion_item {
    border-bottom: 1px solid rgba(106, 106, 106, 0.2);
    cursor: pointer;
}

.accordion_item:last-child {
    border-bottom: none;
}

.accordion_item.active {
    border-bottom: 1px solid #139767;
}

.accordion_head {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion_main {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 8px;
}

.accordion_title {
    color: #2b2b2b;
    font-weight: 500;
    font-size: 16px;
}

.accordion_content {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    padding-right: 53px;
    transition: max-height 0.3s ease;
}

.accordion_item.active .accordion_content {
    max-height: 300px;
}

.accordion_content-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 22.4px;
    opacity: 0.8;
}

.accordion_button svg {
    transition: transform 0.3s ease;
}

.accordion_item.active .accordion_button svg {
    transform: rotate(45deg);
}

.accordion_item.active .accordion_button svg path {
    stroke: #1B1E18;
}


.gap_16 {
    gap: 16px;
}

.pad_24 {
    padding: 24px;
}

a {
    text-decoration: none;
}

/* lead */
.lead_section {
    display: grid;
    gap: 10px;
    position: relative;
    overflow: hidden;
    padding: 32px;
    margin-top: 24.5px;
}

.lead_info {
    max-width: 650px;
    z-index: 2;
    position: relative;
}

.lead_section-title {
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    white-space: nowrap;
}

.lead_section-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    opacity: 0.8;
    padding-top: 12px;
    padding-bottom: 32px;
}

.lead_image {
    display: block;
    position: absolute;
    height: 100%;
    width: auto;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.lead_image img {
    height: 100%;
    width: auto;
    object-fit: cover;
}

.lead_section button {
    padding: 13px 32px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 200;
    line-height: 120%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lead_section button a {
    color: inherit;
    text-decoration: none;
}


/* text_block__v6 */

.text_block__v6--conetnt {
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    max-width: 744px;
}

.text_block__v6 img {
    max-width: 496px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    top: 100px;
    align-self: flex-start;
    transition: max-height 0.3s ease;

    max-height: 251px;
}

.text_block__v6__faq {
    background: #F8F8F8;
    border-radius: 24px;
    padding: 32px 39px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 744px;
}


.faq_item.active {
    padding-bottom: 24px;
    border-bottom: 1px solid #139767;
    padding-bottom: 24px;
}

.faq_item {
    padding-bottom: 16px;
    border-bottom: 1px solid #6a6a6a50;
    padding-bottom: 16px;
    gap: 0;
    transition: gap 0.4s ease;
}

.faq_item.active {
    gap: 16px;
}

.faq_head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

.faq_title {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-left: 8px;
}

.faq_title h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

.ol_title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 6px;
}

.faq_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    max-width: 495px;
    flex-shrink: 0;
}

.faq_head,
.faq_content {
    margin: 0;
}

.faq_head svg:last-child {
    transition: transform 0.3s ease;
}

.faq_item.active .faq_head svg:last-child {
    transform: rotate(45deg);
}

.faq_item.active .faq_head svg:last-child path {
    stroke: #1B1E18;
}

.faq_content__title {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    opacity: 0.4;
    margin-bottom: 8px;
}

.faq_content__list {
    margin-left: 23px;
}

.faq_content__list_item {
    line-height: 1.4;
    font-size: 16px;
    opacity: 0.8;
    font-weight: 400;
}

.faq_content__text_title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 6px;
    margin-top: 4px;
}

.faq_content__text {
    line-height: 1.4;
    font-weight: 400;
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 12px;
}


/* about */
.about_info {
    position: absolute;
    align-items: end;
    bottom: 16px;
    left: 16px;
    z-index: 1;
    align-items: stretch;
}

.width-537 {
    width: 537px;
}

.width-289 {
    width: 289px;
}

.about_info__card {
    background: #F9F9F999;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 20px;
    height: 99px;
    border-radius: 24px;
    justify-content: space-between;
}

.about_info__card span {
    font-weight: 300;
    font-size: 14px;
    line-height: 140%;
    opacity: 0.6;
    padding-bottom: 3px;
}

.about__content-card h3 {
    font-size: 24px;
    line-height: 120%;
    font-weight: 500;
}

.about__content-card p {
    font-size: 16px;
    line-height: 1.4;
    opacity: 0.8;
    font-weight: 300;
}

.about_info__card h3 {
    font-size: 32px;
    font-weight: 500;
    line-height: 140%;
}

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



/* steps */
.steps_scroll_wrapper {
    position: relative;
    overflow: visible;
}

.steps_inner {
    position: relative;
}

.steps_line_container {
    position: relative;
    margin: 0 auto;
    padding-top: 32px;
}

.steps_line {
    height: 2px;
    background: linear-gradient(90deg, rgba(19, 151, 103, 0) 0%, var(--bg-button) 6.54%, var(--bg-button) 93.49%, rgba(19, 151, 103, 0) 100%);
    border-radius: 8px;
    position: absolute;
    top: 58px;
    width: 1256px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.step_card.card {
    background-color: #F5F7FA;
}

.line-numbers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 251px;
    padding: 0 117px 0 118px;
    position: relative;
    z-index: 2;
}

.line_number {
    width: 55px;
    height: 55px;
    padding: 15px;
    border-radius: 16px;
    background: var(--bg-button);
    color: var(--white);
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease-in;
    flex-shrink: 0;
    margin: 0 auto;
}

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

.steps_content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-top: 24px;
    width: 1208px;
    margin: 0 auto;
}

.step_card {
    padding: 23px 33px 24px 24px;
}

.step_info {
    max-width: 230px;
    padding-bottom: 24px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.step_numebr {
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    color: var(--bg-button);
    margin: 0;
}

.step_title {
    color: #000;
    font-weight: 500;
    line-height: 120%;
    font-size: 18px;
    margin: 0;
}

.step_points {
    gap: 8px;
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.step_points li {
    font-weight: 300;
    font-size: 16px;
    line-height: 120%;
}


/* specific */
.specific--card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-1 {
    padding: 24px 26px 32px 24px;
}

.card-2 {
    padding: 24px 24px 32px 24px;
}

.specific--card h3 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 450;
    margin-bottom: 12px;
}

.specific--card p {
    opacity: 0.8;
    font-size: 16px;
    line-height: 22.4px;
    font-weight: 300;
}

.specific--card_p1 {
    margin-bottom: 6px;
}

.technology_info {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 1;
}

.technology_info__card {
    padding: 16px 20px;
    border-radius: 24px;
    box-sizing: border-box;
    background: rgba(249, 249, 249, 0.6);
    backdrop-filter: blur(21px);
    -webkit-backdrop-filter: blur(21px);
    height: 99px;
}

.technology_info__card h4 {
    font-size: 32px;
    line-height: 44.8px;
    font-weight: 500;
}

.technology_info__card p {
    line-height: 1.4;
    font-size: 16px;
    font-weight: 400;
    max-width: 444px;
}

.technology_info__card span {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 300;
    opacity: 0.6;
    margin-bottom: 2px;
}

.width-448 {
    width: 448px;
}

.width-270 {
    width: 270px;
}

.width-195 {
    width: 195px;
}

.specific--btn {
    background-color: var(--btn);
    border-radius: 16px;
    padding: 13px 24px;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    margin-top: 24px;
    height: 48px;
    transition: 0.5s ease;
    white-space: nowrap;
    text-align: center;
    max-width: 344px;
}

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


/* complection */
.complection--card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--space-40);
}

.complection--card h4 {
    font-size: 24px;
    font-weight: 500;
    line-height: 33.6px;
}

.complection--card p {
    line-height: 1.4;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}

/* text_block__v5 */
.text_block__v5--conetnt {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.questions_block__tabs {
    display: flex;
    flex-direction: column;
    max-width: 359px;
    gap: 4px;
}

.questions_tab {
    background: var(--grey);
    border-radius: 24px 0 0 24px;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    font-weight: 400px;
}

.questions_tab.active {
    background: #139767;
    color: #FFFEFA;
    font-weight: 550;
}

.questions_block__right {
    background: #F8F8F8;
    border-radius: 0 24px 24px 0;
    padding: 39px 99px 55px 50px;
    max-width: 849px;
    position: relative;
}

.question_content {
    display: none;
}

.question_content.active {
    display: flex;
    height: 100%;
}

.questions_title_subtitle {
    font-size: 12px;
    line-height: 1.2;
    color: #A3A3A3;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 7px;
}

.questions_title_title {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 16px;
}

p.questions_text {
    width: 700px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.questions_block__right--bottom {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: auto;
}

.questions_block__right--bottom svg {
    cursor: pointer;
}

.questions_block__right--bottom p {
    max-width: 368px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}


/* footer */
.footer {
    background: var(--footer-bg);
    margin-top: 40px;
}

.footer__inner {
    padding: 47px 0;
    display: grid;
    grid-template-columns: 516px 596px;
    justify-content: space-between;
}

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

.footer_logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 2px;
}

.footer_logo img {
    max-width: 226px;
    max-height: 19px;
}

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

.footer__icon {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    align-items: center;
    margin-bottom: 35px;
    margin-left: 2px;
}

.footer__icon a {
    display: flex;
    gap: 8px;
    align-items: center;
}

.footer_telegram__p {
    font-size: var(--fs-footer-contact);
    line-height: 1.3;
    letter-spacing: 2%;
    font-weight: 400;
    color: #fff;
}

.footer_tel__p {
    font-size: var(--fs-footer-contact);
    line-height: 100%;
    letter-spacing: 3%;
    font-weight: 400;
    color: #fff;
}

.footer_block__1 img {
    max-width: 301px;
}

.footer_block__right {
    gap: 40px;
    grid-template-columns: 156px 195px 166px;
}

.footer_block__2,
.footer_block__3 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_block__2 h3,
.footer_block__3 h3,
.footer_block__4 h3,
.footer_block__4 h4 {
    font-size: var(--fs-footer-title);
    font-weight: 450;
    line-height: 1.3;
    letter-spacing: 2%;
    opacity: 0.8;
    color: #fff;
}

.footer_block__2 a,
.footer_block__3 a,
.footer_block__4 p {
    font-size: var(--fs-footer-addr);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 2%;
    color: #fff;
}

.footer_block__4 {
    display: flex;
    gap: 6px;
    flex-direction: column;
}

.footer_block__4 h4 {
    margin-top: 10px;
}

.time,
.add {
    gap: 6px;
}


.onTapelogo_mob {
    display: none;
}




@media (max-width: 1200px) and (min-width: 901px) {
    .technology_info {
        gap: 8px;
        right: 8px;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }

    .technology_info__card {
        padding: 12px 16px;
        flex: 1;
        min-width: 0;
        height: auto;
        justify-content: space-between;
    }

    .technology_info__card:first-child {
        max-width: 420px;
    }

    .technology_info__card h4 {
        font-size: clamp(22px, 3.5vw, 28px);
        white-space: normal;
        word-break: break-word;
    }

    .technology_info__card p {
        font-size: clamp(12px, 2.5vw, 14px);
        word-break: break-word;
    }

    .technology_info__card span {
        font-size: 14px;
        word-break: break-word;
    }

    .technology_info__card:last-child {
        max-width: clamp(100px, 25vw, 160px);
        flex: 0 1 auto;
    }

    .span-2 {
        order: -1;
    }


    .specific--content.span-2 {
        order: 1;
    }
}



@media (max-width:1200px) {
    .desktop-nav .nav__list {
        gap: 15px;
    }

    .nav__link {
        font-size: 14px;
    }

    .header__phone {
        font-size: 14px;
    }
}


@media (max-width:1000px) {
    .about_section .width-289 {
        display: none;
    }
}


@media (max-width: 1300px) {
    .main_info {
        gap: 10px;
    }

    .main_info__card {
        padding: 14px 18px;
        justify-content: space-between;
    }

    .width-308,
    .width-283 {
        max-width: 283px;
    }

    .width-450 {
        width: 55%;
        max-width: 450px;
    }

    .width-238 {
        width: 25%;
        max-width: 238px;
    }

    .main_info__card h4 {
        font-size: 28px;
    }

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

    .main_info__card span {
        font-size: 12px;
    }

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

    .span-2 {
        grid-column: span 2;
        min-height: clamp(320px, 50vw, 400px);
        height: auto !important;
    }

    .text_block__v1--card {
        height: auto !important;
        min-height: 360px;
    }

    .text_block__v1--btn {
        padding: clamp(12px, 3vw, 13px) clamp(5px, 5vw, 5px);
        font-size: 16px;
    }

    .abs-cover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card-2,
    .card-1 {
        padding: 15px;
    }

    /*text_block__v3*/
    .text_block__v3--card {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .span-2 {
        height: auto !important;
        min-height: clamp(320px, 45vw, 320px) !important;
        max-height: none !important;
    }

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

    .text_block__v3--card.card-1,
    .text_block__v3--card.card-2 {
        padding: 18px;
    }

    .text_block__v3--btn {
        padding: clamp(12px, 3vw, 13px) clamp(5px, 5vw, 5px);
        font-size: 16px;
    }

    /* slider */
    .slider_block__wrapper {
        height: 550px;
    }


    .slider_tabs {
        top: 20px;
        left: 20px;
        padding: 7px 7px 7px 10px;
        gap: 7px;
        border-radius: 14px;
    }

    .slider_tabs__tab,
    .slider_tabs__tab.active {
        padding: 5px 14px;
        font-size: 15px;
        border-radius: 10px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 46px !important;
        height: 46px !important;
        border-radius: 25px;
        top: 54% !important;
    }

    .swiper-button-prev svg,
    .swiper-button-next svg {
        max-width: 17px;
    }

    .slider_block__wrapper .swiper-button-prev {
        left: 20px !important;
    }

    .slider_block__wrapper .swiper-button-next {
        right: 20px !important;
    }

    .slider_block__wrapper .swiper_counter {
        padding: 12px 22px;
        font-size: 15px;
        bottom: 20px;
    }

    .slider_block--fullscreen {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
        top: 20px;
        right: 20px;
    }

    .slider_block--fullscreen svg {
        width: 18px;
        height: 18px;
    }

    /* lead */
    .lead_section {
        padding: 26px;
    }

    .lead_info {
        max-width: 500px;
    }

    .lead_section-title {
        font-size: 32px;
        white-space: normal;
    }

    .lead_section-subtitle {
        font-size: 14px;
        padding-top: 8px;
        padding-bottom: 24px;
    }

    .lead_image {
        right: -40px;
        opacity: 0.9;
    }

    .lead_section button {
        padding: 11px 26px;
        font-size: 16px;
    }

    /* about */
    .about_section .grid-3 {
        gap: clamp(16px, 3vw, 20px);
    }

    .about_section .span-2 {
        min-height: clamp(320px, 45vw, 382px);
        height: auto !important;
    }

    .about_section .about__content-card {
        height: auto !important;
        min-height: auto !important;
        padding: clamp(20px, 3vw, 24px);
    }

    .about_section .about__content-card h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin-bottom: clamp(12px, 2vw, 16px);
    }

    .about_section .about__content-card p {
        font-size: clamp(14px, 2.5vw, 16px);
    }

    .about_section .about_info {
        gap: clamp(8px, 2vw, 12px);
        bottom: clamp(12px, 2vw, 16px);
        left: clamp(12px, 2vw, 16px);
    }

    .about_section .about_info__card {
        padding: clamp(12px, 2vw, 14px) clamp(20px, 3vw, 24px);
        height: auto;
        min-height: 99px;
    }

    .about_section .width-448 {
        width: clamp(280px, 40vw, 389px);
        max-width: 448px;
    }

    .about_section .width-289 {
        width: clamp(140px, 30vw, 359px);
        max-width: 38%;
        min-width: 140px;
    }

    .about_section .width-537 {
        width: clamp(320px, 45vw, 537px);
        max-width: 537px;
    }

    .about_section .about_info__card h3 {
        font-size: clamp(22px, 4vw, 28px);
        line-height: 1.3;
    }

    .about_section .about_info__card p {
        font-size: clamp(13px, 2.5vw, 16px);
    }

    .about_section .about_info__card span {
        font-size: clamp(11px, 2vw, 14px);
        padding-bottom: clamp(2px, 1vw, 3px);
    }

    /* steps */

    .steps_scroll_wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        margin: 0 calc(-50vw + 50%);
        padding: 0 20px;
        scrollbar-width: none;
    }

    .steps_scroll_wrapper::-webkit-scrollbar {
        display: none;
    }

    .steps_inner {
        width: 1256px;
        margin: 0 auto;
    }

    .steps_line_container {
        width: 1256px;
        margin: 0;
    }

    .steps_line {
        width: 100%;
    }

    .line-numbers {
        gap: 251px;
        padding: 0 141px;
    }

    .line_number {
        width: 55px;
        height: 55px;
    }

    .steps_content {
        display: flex;
        flex-direction: row;
        gap: 24px;
        margin: 0;
    }

    .step_card {
        flex: 0 0 auto;
        width: 290px;
        min-width: 290px;
        padding: 24px;
        box-sizing: border-box;
    }

    .step_info {
        max-width: 100%;
    }

    /* specific */
    .specific--content {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(16px, 3vw, 20px);
    }

    .span-2 {
        grid-column: span 2;
        height: auto !important;
    }

    .specific--card {
        height: auto !important;
        justify-content: start;
        min-height: auto;
    }

    .specific--btn {
        padding: clamp(12px, 3vw, 13px) clamp(5px, 5vw, 5px);
        font-size: 15px;
    }

    .abs-cover {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .card-2,
    .card-1 {
        padding: 18px;
    }

    .width-270 {
        max-width: 250px;
    }

    .technology_info {
        display: flex;
        align-items: stretch;
    }

    .technology_info__card {
        height: auto;
    }

    .technology_info__card p {
        max-width: 420px;
    }

    /* complection */
    .complection--content {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .complection--content::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .complection--card {
        flex: 0 0 auto;
        width: 290px;
        scroll-snap-align: start;
    }

    /* question */
    .questions_block__right {
        max-width: min(849px, calc(100% - 280px));
    }

    p.questions_text {
        max-width: min(700px, 100%);
    }

    /* footer */
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 24px;
    }

    .footer_block__1 {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        gap: 24px;
    }

    .footer_logo {
        margin-left: 0;
    }

    .footer__icon {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: 0;
        flex-wrap: wrap;
    }

    .onTapelogofoot {
        display: none;
    }

    .onTapelogo_mob {
        display: block;
    }

    .footer_block__right {
        gap: 30px;
        grid-template-columns: repeat(3, 1fr);
    }

    .footer_block__4 h4 {
        margin-top: 0;
    }
}

@media (max-width: 1300px) and (min-width: 951px) {
    .text_block__v1--card {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .span-2-row-1,
    .span-2-row-2,
    .span-2 {
        height: auto !important;
        min-height: clamp(320px, 45vw, 320px) !important;
        max-height: none !important;
    }

    /* text_block__v7 */
    .text_block__v7--title h2 {
        font-size: 36px;
    }

    .form_section__fields {
        grid-template-columns: 1fr 1fr auto;
        gap: 14px;
        width: 100%;
        max-width: 100%;
    }

    .form_section__btn {
        padding: 13px 40px;
        font-size: 15px;
    }

    .form_section__policy {
        max-width: 220px;
        font-size: 11px;
    }

    .form-checkbox__text {
        font-size: 11px;
    }

    /* contacts */
    .contacts__info.grid-4 {
        gap: 20px;
    }

    .contacts__info-block {
        gap: 8px;
    }

    .contacts__subtitle {
        font-size: 14px;
    }

    .contacts__info-value {
        font-size: 18px;
        word-break: break-word;
    }

    .contacts__bottom {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .contacts__right {
        grid-column: span 1;
    }

    .contacts__right img {
        max-height: 320px;
    }

    .address_title {
        font-size: 21px;
    }

    .address_info {
        font-size: 16px;
        padding-top: 12px;
    }

    .contacts__tel {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .contacts__tel a,
    .contacts__mail a {
        font-size: 16px;
    }

    .contacts__tel p,
    .contacts__mail p {
        font-size: 13px;
    }

    .contacts__button button {
        padding: 13px 24px;
        font-size: 16px;
        margin-top: 18px;
    }

    .specific--card {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .span-2-row-1,
    .span-2-row-2,
    .span-2 {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }
}

@media (max-width:850px) {
    .header__inner {
        padding: 17px 24px;
    }

    .header__phone {
        font-size: 13px;
    }

    .icon-btn__icon {
        width: 20px;
        height: 20px;
    }

    .burger-btn {
        width: 26px;
        height: 18px;
    }

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

    .mobile-menu .header__phone {
        font-size: 16px;
    }

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

    .contacts__subtitle {
        font-size: 14px;
        opacity: 0.5;
    }

    .contacts__info-value {
        font-size: 18px;
        word-break: break-word;
    }

    /* lead */
    .lead_section {
        padding: 22px;
    }

    .lead_info {
        max-width: 400px;
    }

    .lead_section-title {
        font-size: 26px;
        white-space: normal;
    }

    .lead_section-subtitle {
        font-size: 13px;
        padding-top: 8px;
        padding-bottom: 20px;
    }

    .lead_image {
        right: -80px;
        opacity: 0.75;
    }

    .lead_section button {
        padding: 10px 22px;
        font-size: 14px;
    }

    /* footer */
    .footer {
        margin-top: 24px;
    }

    .footer__inner {
        padding: 32px 16px;
        gap: 32px;
    }

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

    .footer_logo {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

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

    .footer__icon {
        margin-top: 8px;
        margin-bottom: 0;
    }

    .footer_telegram__p,
    .footer_tel__p {
        font-size: 14px;
    }

    .onTapelogofoot {
        display: none;
    }

    .onTapelogo_mob {
        display: block;
    }

    .onTapelogo_mob img {
        height: 100%;
        margin-top: 15px;
    }

    .time {
        padding-right: 10px;
    }

    .footer_block__right {
        gap: 32px;
        grid-template-columns: 1fr 1fr;
    }

    .footer_block__2 h3,
    .footer_block__3 h3,
    .footer_block__4 h3,
    .footer_block__4 h4 {
        font-size: 16px;
        font-weight: 700;
        opacity: 1;
    }

    .footer_block__2 a,
    .footer_block__3 a,
    .footer_block__4 p {
        font-size: 14px;
        opacity: 0.8;
    }

    .footer_block__4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column: 1 / -1;
        grid-row: 2;
        gap: 32px;
    }

    .time,
    .add {
        gap: 8px;
    }

    .footer_block__4 h4 {
        margin-top: 0;
    }

    .time-text {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .time-day,
    .time-hours {
        white-space: nowrap;
    }
}

@media (max-width:1100px) {
    .desktop-nav .nav__list {
        display: none;
    }

    .burger-btn {
        display: flex;
    }

    .header__top {
        gap: 16px;
    }

    a.header__phone {
        display: none;
    }


    .mobile-menu.header__right {
        display: flex;
    }

    .mobile-menu .header__phone {
        display: block;
        color: #139767;
    }

    .mobile-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .mobile-menu .nav__list {
        justify-content: center;
        align-items: center;
        padding-top: 0;
    }

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

    .banner_main__title {
        font-style: 88px;
        margin-bottom: 8px;
    }

    .banner_main__subtitle {
        text-align: left;
    }

    .banner_main__right {
        text-align: left;
        align-items: start;
        gap: 24.5px;
    }

    .banner_main__right button {
        font-size: 22px;
    }

    .advantages-card {
        position: relative;
        background: #2B2C29;
        justify-content: space-between;
        max-height: 177px;
        gap: 10px;
    }

    .advantages-card img {
        max-width: 120px;
        position: absolute;
        right: 0;
        top: 40px;
    }

    .advantages__title {
        font-size: 20px;
        max-width: 100%;
    }

    .advantages__subtitle {
        max-width: 195px;
    }

    /* reviews */
    .reviews_content {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        overflow: visible;
    }

    .reviews_title {
        padding-bottom: 24px;
    }

    .reviews .container {
        overflow-x: hidden;
    }

    .reviews_content {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .reviews_content::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .review_card {
        flex: 0 0 auto;
        width: 320px;
        scroll-snap-align: start;
        padding: 18px 28px;
    }

    .name_user {
        font-size: 22px;
    }

    .date_review {
        font-size: 15px;
    }

    .review_comment {
        font-size: 15px;
        padding-top: 14px;
        padding-bottom: 17px;
    }

    .info_user {
        gap: 16px;
    }

    .title_buttons {
        display: none;
    }


    .title_buttons_mob {
        display: flex;
        margin-top: 20px;
        gap: 13px;
        width: 100%;
    }


    .make__review_mob button,
    .all__reviews_mob button {
        padding: 12px 32px;
        font-size: 16px;
        width: 100%;
        flex: 1;
        white-space: nowrap;
        border-radius: 16px;
    }

    .all__reviews_mob button {
        background: rgba(84, 84, 84, 1);
    }

    /* text_block__v7 */

    .text_block__v7,
    .text_block__v4 {
        background-image: none !important;
        background-color: rgba(0, 56, 36, 1);
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .text_block__v7::before,
    .text_block__v4::before {
        display: none;
    }

    .text_block__v7--content,
    .text_block__v4--content {
        padding: 28px 24px;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .text_block__v7--title,
    .text_block__v4--title {
        max-width: 100%;
    }

    .text_block__v7--title h2,
    .text_block__v4--title h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .text_block__v7--title p,
    .text_block__v4--title p {
        font-size: 14px;
    }

    .form_section__fields {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form_group {
        width: 100%;
        max-width: 100%;
        gap: 6px;
        box-sizing: border-box;
    }

    .form_label {
        font-size: 12px;
        padding-left: 4px;
    }

    .form_input {
        padding: 12px 16px;
        font-size: 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form_section__btn {
        width: 100%;
        max-width: 100%;
        padding: 13px 24px;
        font-size: 16px;
        margin-top: 8px;
        white-space: normal;
        grid-row: auto;
        grid-column: auto;
    }

    .form_checkbox_wrapper {
        padding-left: 0;
        padding-top: 8px;
        justify-content: flex-start;
        grid-row: auto;
        grid-column: auto;
    }

    .form_section__policy {
        max-width: 100%;
        margin-top: 8px;
        text-align: left;
        grid-row: auto;
        grid-column: auto;
        font-size: 14px;
        margin-top: 0;
    }

    .form-checkbox__text {
        white-space: nowrap;

    }

    /* plan */
    .plan_section {
        flex-direction: column;
        gap: 15.29px;
    }

    .plan_left-column,
    .plan_right-column {
        flex: auto;
        width: 100%;
        gap: 15.29px;
    }

    .plan_left-column {
        position: static;
        top: auto;
    }

    .plan_project {
        padding: 20px 24px 24px 20px;
    }

    .plan_project_top {
        flex-direction: column;
    }

    .plan_project-subtitle {
        padding-bottom: 16px;
    }

    .plan_project_buttons {
        margin-bottom: 13px;
    }

    .plan_project_buttons button {
        padding: 6px 16px;
    }

    .plan_project-img {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .plan_project-img img {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
        object-fit: contain;
        padding-left: 0;
    }

    .increase_picture {
        top: 15px;
        right: 15px;
    }

    .specifications {
        padding: 20px 16px 15px 20px;
    }

    .specifications_blocks {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px 24px;
    }

    .specification_block-subtitle {
        font-size: 12px;
        padding-bottom: 8px;
    }

    .specification_block-value {
        font-size: 20px;
        word-break: break-word;
    }

    .options_title {
        padding-top: 32px;
    }

    .description {
        background: #F8F8F8;
        border-radius: 24px;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 20px 22px 20px 20px;
    }

    .description-title {
        font-size: 24px;
        margin-bottom: 0;
        padding-bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .description-title::after {
        content: '';
        flex-shrink: 0;
        width: 14px;
        height: 14px;
        background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 1V13M13 7H1' stroke='%231B1E18' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: transform 0.3s ease;
    }

    .description.active .description-title::after {
        transform: rotate(45deg);
    }

    .description-subtitle {
        display: none;
        font-size: 14px;
        line-height: 1.4;
        margin-top: 16px;
    }

    .description.active .description-subtitle {
        display: block;
    }


    .price button {
        padding: 14px 40px;
    }

    .accordion_content {
        padding-right: 30px;
    }

    /* about */
    .about_section .about_info {
        flex-wrap: wrap;
    }

    .about_section .width-448 {
        width: clamp(240px, 45vw, 327px);
        max-width: 58%;
    }

    .about_section .width-289 {
        width: clamp(140px, 30vw, 422px);
        max-width: 43%;
        min-width: 140px;
        justify-content: space-between;
    }

    .about_section .about_info__card p {
        font-size: clamp(12px, 2vw, 14px);
        word-break: break-word;
    }

    .about_section .about_info__card h3 {
        font-size: clamp(22px, 3.5vw, 28px);
        white-space: normal;
        word-break: break-word;
    }

    /* question */
    .text_block__v5--conetnt {
        flex-direction: column;
        margin-bottom: 48px;
    }

    .question_content.active .questions_title_title::after {
        display: none !important;
        background-image: none !important;
    }

    .questions_block__tabs {
        display: none;
    }

    .questions_block__right {
        background: transparent;
        border-radius: 0;
        padding: 0;
        max-width: 100%;
    }

    .question_content {
        display: block !important;
        background: #F8F8F8;
        border-radius: 24px;
        margin-bottom: 12px;
        padding: 20px 24px;
        cursor: pointer;
    }

    .questions_title_title {
        position: relative;
        font-size: 18px;
        margin-bottom: 0;
        padding-right: 30px;
        pointer-events: none;
    }

    .questions_title_title::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 8px;
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='8' viewBox='0 0 16 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 1L8 7L1 1' stroke='%23BBBBBB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        pointer-events: none;
    }

    .question_content.active.questions_title_title::after {
        content: '';
    }

    .questions_title_subtitle,
    .questions_text,
    .questions_block__right--bottom {
        display: none;
    }

    .question_content.active .questions_title_subtitle {
        display: block;
        margin-top: 16px;
    }

    .question_content.active .questions_text {
        display: block;
        margin-top: 16px;
        width: 100%;
        font-size: 16px;
    }

    .question_content.active.question_content {
        border: 1px solid var(--btn);
    }


    .question_content.active .questions_block__right--bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        margin-top: 24px;
    }

    .question_content.active .questions_block__right--bottom p {
        max-width: 350px;
        font-size: 14px;
        margin: 0;
    }

    .question_content.active .questions_title_title {
        font-size: 24px;
    }

    p.questions_text {
        width: 100%;
        font-size: 15px;
    }

    .questions_title_subtitle {
        font-size: 11px;
    }
}

@media(max-width:950px) {

    .banner_main__title {
        font-size: 78px;
    }

    .banner_main__right {
        gap: 24.5px;
        text-align: left;
    }

    .banner_main__right button {
        font-size: 20px;
        width: 350px;
    }

    .advantages-card {
        position: relative;
        background: #2B2C29;
        justify-content: space-between;
        max-height: 177px;
        gap: 17.5px;
    }

    .advantages__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 20px;
    }

    .advantages-card img {
        position: absolute;
        right: 0;
        top: 17px;
        max-width: 90px;
    }

    .advantages__subtitle {
        max-width: 100%;
    }

    /*text_block__v1*/
    .section.text_block__v1 {
        gap: clamp(16px, 4vw, 24px);
    }

    .text_block__v1--content {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 4vw, 24px);
    }

    .grid-3 {
        gap: clamp(16px, 4vw, 24px);
    }

    .text_block__v1--card {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .text_block__v1--card.card-1,
    .text_block__v1--card.card-2 {
        padding: clamp(20px, 4vw, 24px);
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        background: #F8F8F8;
        border-radius: 24px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .text_block__v1--card h3 {
        font-size: clamp(18px, 4vw, 24px);
        margin-bottom: 0;
        position: relative;
    }

    .span-2 {
        min-height: 300px !important;
        position: relative;
        display: flex;
        overflow: hidden;
        border-radius: 24px;
    }

    .abs-cover {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .text_block__v1--card.card-1 .text_block__v1--card_p1,
    .text_block__v1--card.card-1 .text_block__v1--card_p2,
    .text_block__v1--card.card-1 .text_block__v1--btn,
    .text_block__v1--card.card-2 .text_block__v1--card_p1,
    .text_block__v1--card.card-2 .text_block__v1--card_p2,
    .text_block__v1--card.card-2 .text_block__v1--btn {
        display: none;
    }

    .text_block__v1--card.card-1 h3,
    .text_block__v1--card.card-2 h3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 100%;
    }

    .text_block__v1--card.card-1 h3::after,
    .text_block__v1--card.card-2 h3::after {
        flex-shrink: 0;
    }

    .text_block__v1--card.card-1 h3::after,
    .text_block__v1--card.card-2 h3::after {
        content: '';
        flex-shrink: 0;
        width: 14px;
        height: 14px;
        background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 1V13M13 7H1' stroke='%231B1E18' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        pointer-events: none;
        transition: transform 0.3s ease;
    }

    .text_block__v1--card.card-1.active h3::after,
    .text_block__v1--card.card-2.active h3::after {
        transform: rotate(45deg);
    }

    .text_block__v1--card.card-1.active .text_block__v1--card_p1,
    .text_block__v1--card.card-1.active .text_block__v1--card_p2,
    .text_block__v1--card.card-1.active .text_block__v1--btn,
    .text_block__v1--card.card-2.active .text_block__v1--card_p1,
    .text_block__v1--card.card-2.active .text_block__v1--card_p2,
    .text_block__v1--card.card-2.active .text_block__v1--btn {
        display: block;
    }

    .text_block__v1--card.card-1.active .text_block__v1--card_p1,
    .text_block__v1--card.card-2.active .text_block__v1--card_p1 {
        margin-top: 16px;
        margin-bottom: 8px;
    }

    .text_block__v1--card.card-1.active .text_block__v1--card_p2,
    .text_block__v1--card.card-2.active .text_block__v1--card_p2 {
        margin-bottom: 0;
    }


    .text_block__v1--card p {
        font-size: clamp(14px, 3.5vw, 16px);
    }

    .text_block__v1--card_p1 {
        margin-bottom: clamp(8px, 2vw, 12px);
    }

    .main_info {
        position: absolute;
        bottom: clamp(8px, 2vw, 16px);
        left: clamp(8px, 2vw, 16px);
        right: clamp(8px, 2vw, 16px);
        gap: clamp(8px, 2vw, 10px);
        margin-top: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        max-width: calc(100% - 16px);
    }

    .main_info__card {
        flex: 1 1 0;
        min-width: 0;
        padding: clamp(12px, 3vw, 14px) clamp(14px, 3vw, 18px);
        background: rgba(249, 249, 249, 0.6);
        backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
        border-radius: 24px;
        max-width: 100%;
        justify-content: space-between;
    }

    .width-308 {
        width: clamp(150px, 30vw, 300px);
        max-width: 60%;
    }

    .width-283 {
        width: clamp(100px, 30vw, 283px);
        max-width: 40%;
    }

    .width-450 {
        width: clamp(140px, 40vw, 450px);
        max-width: 65%;
    }

    .width-238 {
        width: clamp(80px, 20vw, 238px);
        max-width: 30%;
    }

    .main_info__card h4 {
        font-size: clamp(20px, 5vw, 28px);
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .main_info__card p {
        font-size: clamp(11px, 3vw, 14px);
        line-height: 1.3;
        max-width: 100%;
    }

    .main_info__card span {
        font-size: clamp(10px, 2.5vw, 12px);
        margin-bottom: 4px;
    }

    .text_block__v1--btn {
        width: 100%;
        max-width: clamp(200px, 100%, 712px);
        padding: 14px clamp(24px, 5vw, 36px);
        font-size: clamp(16px, 4vw, 18px);
        border-radius: 16px;
        margin-top: clamp(16px, 4vw, 24px);
        display: block;
        height: auto;
        min-height: 48px;
        white-space: normal;
    }

    /*text_block__v3*/
    .section.text_block__v3 {
        gap: clamp(16px, 4vw, 24px);
    }

    .text_block__v3--content {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 4vw, 24px);
    }

    .grid-3 {
        gap: clamp(16px, 4vw, 24px);
    }

    .text_block__v3--card {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .card-1,
    .card-2 {
        padding: clamp(20px, 4vw, 24px);
    }

    .text_block__v3--card h3 {
        font-size: clamp(18px, 4vw, 24px);
        margin-bottom: clamp(12px, 2vw, 16px);
        max-width: 100%;
    }

    .text_block__v3--card p {
        font-size: clamp(14px, 3.5vw, 16px);
    }

    .text_block__v3--card_p1 {
        margin-bottom: clamp(8px, 2vw, 12px);
    }

    .span-2 {
        min-height: 300px !important;
        position: relative;
        display: flex;
        overflow: hidden;
        border-radius: 24px;
        order: -1;
    }

    .abs-cover {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .text_block__v3--btn {
        width: 100%;
        max-width: clamp(200px, 100%, 712px);
        padding: clamp(12px, 3vw, 13px) clamp(24px, 5vw, 36px);
        font-size: clamp(16px, 4vw, 18px);
        border-radius: 16px;
        margin-top: clamp(16px, 4vw, 24px);
        display: block;
        height: auto;
        min-height: 48px;
        white-space: normal;
    }

    .text_block__v3--card.card-1,
    .text_block__v3--card.card-2 {
        padding: clamp(20px, 4vw, 24px);
    }

    /* slider */
    .slider_block__wrapper {
        height: 450px;
        border-radius: 20px;
    }

    .slider_tabs {
        top: 16px;
        left: 16px;
        padding: 5px 5px 5px 8px;
        gap: 5px;
        border-radius: 12px;
    }

    .slider_tabs__tab,
    .slider_tabs__tab.active {
        padding: 4px 11px;
        font-size: 13px;
        border-radius: 8px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 42px !important;
        height: 42px !important;
        border-radius: 25px;
    }

    .swiper-button-prev svg,
    .swiper-button-next svg {
        max-width: 15px;
    }

    .slider_block__wrapper .swiper-button-prev {
        left: 16px !important;
    }

    .slider_block__wrapper .swiper-button-next {
        right: 16px !important;
    }

    .slider_block__wrapper .swiper_counter {
        padding: 9px 18px;
        font-size: 13px;
        bottom: 16px;
        border-radius: 20px;
    }

    .slider_block--fullscreen {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        top: 16px;
        right: 16px;
    }

    .slider_block--fullscreen svg {
        width: 16px;
        height: 16px;
    }

    /* contacts */
    .contacts__info.grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px !important;
    }

    .contacts__info-block {
        gap: 8px;
    }


    .contacts__bottom {
        grid-template-columns: 1fr;
        gap: 20px 0;
    }

    .contacts__right {
        grid-column: span 1;
    }

    .contacts__right img {
        max-height: 280px;
        order: -1;
    }

    .contacts__left.card {
        padding: 20px;
        order: 1;
    }

    .address_title {
        font-size: 20px;
    }

    .address_info {
        font-size: 16px;
        padding-top: 12px;
    }

    .contacts__tel {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .contacts__tel a,
    .contacts__mail a {
        font-size: 16px;
    }

    .contacts__tel p,
    .contacts__mail p {
        font-size: 13px;
    }

    .contacts__button button {
        padding: 14px 24px;
        font-size: 16px;
        margin-top: 18px;
    }

    .contacts__left.mc {
        order: -1;
    }

    /* lead */
    .lead_section {
        padding: 24px;
    }

    .lead_info {
        max-width: 450px;
    }

    .lead_section-title {
        font-size: 28px;
        white-space: normal;
    }

    .lead_section-subtitle {
        font-size: 14px;
        padding-top: 8px;
        padding-bottom: 22px;
    }

    .lead_image {
        right: -60px;
        opacity: 0.85;
    }

    .lead_section button {
        padding: 10px 24px;
        font-size: 15px;
    }

    /* about */
    .section.about_section {
        gap: clamp(16px, 4vw, 24px);
    }

    .about_section .grid-3 {
        display: flex !important;
        flex-direction: column !important;
        gap: clamp(16px, 4vw, 24px) !important;
    }

    .about_section .grid-2_row {
        display: flex !important;
        flex-direction: column !important;
        gap: clamp(16px, 4vw, 24px) !important;
    }

    .about_section .about__content-card {
        padding: clamp(20px, 4vw, 24px);
    }

    .about_section .about__content-card h3 {
        font-size: clamp(18px, 4vw, 24px);
        line-height: 1.2;
        margin-bottom: 0;
        max-width: clamp(200px, 60vw, 223px);
    }

    .about_section .about__content-card p {
        font-size: clamp(14px, 3.5vw, 16px);
        line-height: 1.4;
    }

    .about_section .span-2 {
        min-height: clamp(270px, 40vw, 340px) !important;
        position: relative;
        display: flex;
        overflow: hidden;
        border-radius: 24px;
    }

    .about_section .span-2:first-of-type {
        order: -1;
    }

    .about_section .abs-cover {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about_section .about_info {
        position: absolute;
        bottom: clamp(8px, 2vw, 16px);
        left: clamp(8px, 2vw, 16px);
        right: clamp(8px, 2vw, 16px);
        gap: clamp(8px, 2vw, 12px);
        margin-top: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: end;
        max-width: calc(100% - 32px);
    }

    .about_section .about_info__card {
        flex: 1 1 0;
        min-width: 0;
        padding: clamp(12px, 3vw, 16px) clamp(20px, 4vw, 24px);
        background: rgba(249, 249, 249, 0.6);
        backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
        border-radius: 24px;
        max-width: 100%;
        height: auto;
        min-height: auto;
    }

    .about_section .width-448,
    .about_section .width-537 {
        width: auto;
        max-width: 65%;
        flex: 1;
    }

    .about_section .width-289 {
        width: auto;
        max-width: 35%;
        flex: 1;
    }

    .about_section .about_info__card h3 {
        font-size: clamp(20px, 5vw, 28px);
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .about_section .about_info__card p {
        font-size: clamp(11px, 3vw, 14px);
        line-height: 1.3;
        max-width: 100%;
    }

    .about_section .about_info__card span {
        font-size: clamp(10px, 2.5vw, 12px);
        margin-bottom: 4px;
        padding-bottom: 0;
        max-width: clamp(140px, 40vw, 187px);
    }

    /* specific */
    .width-270 {
        max-width: 100% !important;
    }

    .mob_n {
        display: none;
    }

    .section.specific {
        gap: clamp(16px, 4vw, 24px);
    }

    .specific--content {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 4vw, 24px);
    }

    .grid-3 {
        gap: clamp(16px, 4vw, 24px);
    }

    .specific--card {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .card-1,
    .card-2 {
        padding: clamp(20px, 4vw, 24px);
    }

    .specific--card h3 {
        font-size: clamp(18px, 4vw, 24px);
        margin-bottom: clamp(12px, 2vw, 16px);
    }

    .specific--card p {
        font-size: clamp(14px, 3.5vw, 16px);
    }

    .specific--card_p1 {
        margin-bottom: clamp(8px, 2vw, 12px);
    }

    .span-2 {
        min-height: 300px !important;
        position: relative;
        display: flex;
        overflow: hidden;
        border-radius: 24px;
    }

    .abs-cover {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .technology_info {
        position: absolute;
        bottom: clamp(8px, 2vw, 16px);
        left: clamp(8px, 2vw, 16px);
        right: clamp(8px, 2vw, 16px);
        gap: clamp(8px, 2vw, 10px);
        margin-top: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: calc(100% - 32px);
        align-items: stretch;

    }

    .technology_info__card {
        flex: 1 1 0;
        min-width: 0;
        padding: clamp(12px, 3vw, 14px) clamp(20px, 4vw, 24px);
        background: rgba(249, 249, 249, 0.6);
        backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
        border-radius: 24px;
        max-width: 100%;
        height: auto;
        justify-content: space-between;
    }


    .technology_info__card h4 {
        font-size: clamp(20px, 5vw, 28px);
        line-height: 1.3;
        margin-bottom: 4px;
        word-break: break-word;
    }

    .technology_info__card p {
        font-size: clamp(11px, 3vw, 14px);
        line-height: 1.3;
        max-width: 100%;
        word-break: break-word;
    }

    .technology_info__card span {
        font-size: clamp(10px, 2.5vw, 12px);
        margin-bottom: 4px;
        word-break: break-word;
    }

    .specific--btn {
        width: 100%;
        max-width: clamp(200px, 100%, 712px);
        padding: clamp(12px, 3vw, 13px) clamp(24px, 5vw, 36px);
        font-size: clamp(16px, 4vw, 18px);
        border-radius: 16px;
        margin-top: clamp(16px, 4vw, 24px);
        display: block;
        height: auto;
        min-height: 48px;
        white-space: normal;
    }

    .technology_info__card:last-child {
        max-width: 100%;
        flex: 0 1 auto;
    }

    .span-2 {
        order: -1;
    }


    .specific--content.span-2 {
        order: 1;
    }
}

@media (max-width:700px) {
    .header__phone {
        display: none;
    }

    .header__inner {
        border-radius: 16px;
    }

    .burger-btn {
        width: 24px;
        height: 16px;
    }

    .mobile-menu .header__phone {
        display: block;
    }

    .advantages__title {
        max-width: 212px;
    }

    /* reviews */
    .review_card {
        width: 280px;
        padding: 14px 20px;
    }

    .name_user {
        font-size: 18px;
    }

    .date_review {
        font-size: 13px;
    }

    .review_comment {
        font-size: 13px;
        padding-top: 12px;
        padding-bottom: 14px;
    }

    .where_published {
        font-size: 13px;
    }

    .info_user {
        gap: 12px;
    }

    .info_user img {
        width: 40px;
        height: 40px;
    }

    /* slider */
    .slider_block__wrapper {
        height: 350px;
        border-radius: 20px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 38px !important;
        height: 38px !important;
        border-radius: 25px;
    }

    .swiper-button-prev svg,
    .swiper-button-next svg {
        max-width: 13px;
    }

    .slider_block__wrapper .swiper-button-prev {
        left: 12px !important;
    }

    .slider_block__wrapper .swiper-button-next {
        right: 12px !important;
    }

    .slider_block__wrapper .swiper_counter {
        position: absolute;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 9px 19px;
        border-radius: 24px;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.2;
        z-index: 10;
        white-space: nowrap;
        letter-spacing: 8%;
        min-width: 66px;
        text-align: center;
    }

    .slider_block--fullscreen {
        width: 32px;
        height: 32px;
        min-width: 32px;
        min-height: 32px;
        top: 12px;
        right: 12px;
    }

    .slider_block--fullscreen svg {
        width: 14px;
        height: 14px;
    }

    .slider_tabs {
        display: none !important;
    }

    /* text_block__v7 */

    .text_block__v7,
    .text_block__v4 {
        background-image: none !important;
        background-color: rgba(0, 56, 36, 1);
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .text_block__v7::before,
    .text_block__v4::before {
        display: none;
    }

    .text_block__v7--content,
    .text_block__v4--content {
        padding: 28px 20px;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .text_block__v7--title h2,
    .text_block__v4--title h2 {
        font-size: 26px;
    }

    .text_block__v7--title p,
    .text_block__v4--title p {
        font-size: 13px;
    }

    .form_section__fields {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form_group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form_input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form_section__btn {
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
        white-space: normal;
        grid-row: auto;
        grid-column: auto;
    }

    .form_checkbox_wrapper {
        padding-left: 0;
        grid-row: auto;
        grid-column: auto;
    }

    .form_section__policy {
        max-width: 100%;
        grid-row: auto;
        grid-column: auto;
        text-align: center;
    }

    .form-checkbox__text {
        white-space: nowrap;

    }

    /* lead */
    .lead_section {
        padding: 20px;
    }

    .lead_info {
        max-width: 380px;
    }

    .lead_section-title {
        font-size: 24px;
        white-space: normal;
    }

    .lead_section-subtitle {
        font-size: 13px;
        padding-top: 8px;
        padding-bottom: 18px;
    }

    .lead_image {
        right: -100px;
        opacity: 0.6;
    }

    .lead_section button {
        padding: 14px 40px;
        font-size: 18px;
    }

    /* question */

    .specifications_blocks {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 24px;
    }

    .text_block__v5--conetnt {
        flex-direction: column;
        margin-bottom: 48px;
    }

    .questions_block__tabs {
        display: none;
    }

    .questions_block__right {
        background: transparent;
        border-radius: 0;
        padding: 0;
        max-width: 100%;
    }

    .question_content {
        display: block !important;
        background: #F8F8F8;
        border-radius: 24px;
        margin-bottom: 12px;
        padding: 16px 20px;
        cursor: pointer;
    }

    .questions_title_title {
        position: relative;
        font-size: 16px;
        margin-bottom: 0;
        padding-right: 30px;
        pointer-events: none;
    }

    .questions_title_title::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 8px;
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='8' viewBox='0 0 16 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 1L8 7L1 1' stroke='%23BBBBBB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        pointer-events: none;
    }

    .question_content.active .questions_title_title::after {
        content: '';
    }

    .questions_title_subtitle,
    .questions_text,
    .questions_block__right--bottom {
        display: none;
    }

    .question_content.active.question_content {
        border: 1px solid var(--btn);
    }


    .question_content.active .questions_title_subtitle {
        display: block;
        margin-top: 12px;
        font-size: 11px;
    }

    .question_content.active .questions_text {
        display: block;
        margin-top: 12px;
        width: 100%;
        font-size: 14px;
        line-height: 1.4;
    }

    .question_content.active .questions_block__right--bottom {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 20px;
    }

    .question_content.active .questions_block__right--bottom p {
        max-width: 100%;
        font-size: 14px;
        margin: 0;
    }


    .question_content.active .questions_title_title {
        font-size: 24px;
    }

    .questions_block__right--bottom svg {
        width: 40px;
        height: 32px;
    }
}

@media (max-width:508px) {
    .header__inner {
        background: #131B1FB2;
        border-radius: 16px;
    }

    .banner_main::before {
        display: none;
    }

    .banner_main__title {
        font-size: 58px;
    }

    .banner_main__right button {
        font-size: 18px;
        width: 300px;
    }

    .advantages__content {
        gap: 12px 8px;
    }

    .advantages__content.btm_s_pad {
        padding-bottom: 48px;
    }

    .advantages-card img {
        top: 26px;
    }

    .advantages-card {
        position: relative;
        background: #2B2C29;
        justify-content: space-between;
        max-height: 177px;
        gap: 17.5px;
    }

    .advantages__title {
        font-size: 16px;
    }

    .advantages__subtitle {
        font-size: 12px;
        font-weight: 200;
        line-height: 140%;
        opacity: 0.8;
        max-width: 165px;
    }

    /* reviews */
    /*reviews*/
    .reviews_title {
        justify-content: space-between;
        align-items: start;
        padding-bottom: 25px;
    }

    .reviews h2.title {
        white-space: nowrap;
    }

    .title_buttons button {
        display: none;
    }

    .reviews_content {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 0px;
        -webkit-overflow-scrolling: touch;

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

    .reviews_content::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .review_card {
        flex: 0 0 auto;
        width: 316px;
        scroll-snap-align: start;
        padding: 19px 24px 24px 24px;
    }

    .info_user {
        gap: 24px;
    }

    .info_user img {
        min-width: 48px;
        min-height: 48px;
    }

    .info_user__right {
        gap: 4.7px;
    }

    .name_user {
        font-size: 18px;
        line-height: 120%;
    }

    .date_review {
        font-size: 14px;
    }

    .review_comment {
        padding-top: 18px;
        padding-bottom: 18px;
        font-size: 14px;
    }

    .where_published {
        font-size: 14px;
    }

    .title_buttons_mob {
        display: flex;
        margin-top: 25px;
        gap: 13px;
        width: 100%;
    }

    .make__review_mob button {
        padding: 12px 32px;
        font-size: 16px;
        width: 189px;
    }

    .all__reviews_mob button {
        padding: 12px 32px;
        width: 157px;
        font-size: 16px;
        background: rgba(84, 84, 84, 1);
    }

    /* text_block__v7 */

    .text_block__v7,
    .text_block__v4 {
        background-image: none !important;
        background-color: rgba(0, 56, 36, 1);
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    .text_block__v7::before,
    .text_block__v4::before {
        display: none;
    }

    .text_block__v7--content,
    .text_block__v4--content {
        padding: 28px 18px;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .text_block__v7--title h2,
    .text_block__v4--title h2 {
        font-size: 24px;
    }

    .text_block__v7--title p,
    .text_block__v4--title p {
        font-size: 12px;
    }

    .form_section__fields {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form_group {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form_input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form_section__btn {
        width: 100%;
        max-width: 100%;
        margin-top: 8px;
        white-space: normal;
        grid-row: auto;
        grid-column: auto;
    }

    .form-checkbox__text {
        white-space: nowrap;

    }

    /* contacts */
    .contacts__info.grid-4 {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 16px !important;
    }

    .contacts__info-block {
        gap: 6px;
    }

    .contacts__subtitle {
        font-size: 16px;
    }

    .contacts__info-value {
        font-size: 24px;
    }


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

    .contacts__right img {
        width: 100%;
        height: 100%;
        order: -1;
    }

    .contacts__left.card {
        padding: 20px 16px;
        order: 1;
    }

    .address_title {
        font-size: 20px;
    }

    .address_info {
        font-size: 15px;
        padding-top: 10px;
    }

    .contacts__tel {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .contacts__tel a,
    .contacts__mail a {
        font-size: 16px;
    }

    .contacts__button button {
        padding: 14px 24px;
        font-size: 16px;
        margin-top: 18px;
    }

    .contacts__left.mc {
        order: -1;
    }

    /* plan */
    .plan_section.top_s_pad {
        padding-top: 32px;
    }

    .plan_project {
        padding: 16.29px 12.29px;
    }

    .plan_project-subtitle {
        font-size: 12px;
        padding-bottom: 16px;
    }

    .specifications-title.title_plan {
        font-size: 24px;
    }

    .specifications_blocks {
        gap: 16px 24px;
        padding-right: 30px;
    }

    .specification_block-subtitle {
        font-size: 14px;
        padding-bottom: 8px;
    }

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

    .options_title {
        font-size: 24px;
        padding-top: 32.5px;
    }

    .description {
        padding-right: 25px;
    }

    .description-subtitle {
        font-size: 14px;
    }

    .price-title {
        font-size: 24px;
    }

    .price-value {
        font-size: 32px;
    }

    .min_price-value {
        font-size: 24px;
        padding-bottom: 23.5px;
    }

    .price button {
        padding: 16px 32px;
        font-size: 18px;
    }

    .increase_picture {
        top: 12px;
        right: 12px;
    }

    .increase_picture svg {
        width: 35px;
        height: 35px;
    }

    .accordion_head {
        padding: 16px 6px 16px 8px;
    }

    .accordion_title {
        font-size: 14px;
    }

    .accordion_content {
        padding-right: 53px;
    }

    .accordion_content-text {
        font-size: 14px;
    }

    /* lead */
    .lead_section {
        padding: 18px;
    }

    .lead_info {
        max-width: 320px;
    }

    .lead_section-title {
        font-size: 22px;
        white-space: normal;
    }

    .lead_section-subtitle {
        font-size: 12px;
        padding-top: 8px;
        padding-bottom: 16px;
    }

    .lead_image {
        right: -120px;
        opacity: 0.4;
    }

    .lead_section button {
        padding: 9px 18px;
        font-size: 18px;
        padding: 13px 58px;
    }


}

@media (max-width:390px) {

    /* header */
    .header {
        padding-top: 16px;
    }

    .header__inner {
        gap: 0px;
        padding: 17px 18px;
        border-radius: 16px;
        background: #131B1FB2;
    }

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

    .header__right {
        gap: 8px;
    }

    .burger-btn {
        width: 18px;
        height: 12px;
        margin-left: 11px;
    }

    .icon-btn__icon {
        width: 18px;
        height: 18px;
    }

    .mobile-menu {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 24px;
    }

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

    .mobile-menu .header__phone {
        font-size: 18px;
        text-align: center;
        color: #139767;
        padding-top: 32px;

    }

    .mobile-menu .nav__list {
        gap: 16px;
        padding-top: 00px;
        text-align: center;
        align-items: center;
    }

    .mobile-menu .header__right {
        padding-top: 0px;
        margin-top: 0px;
    }

    .banner_main::before {
        display: none;
    }

    .banner_main__content {
        padding-bottom: 32px;
    }

    .banner_main__title {
        font-size: 48px;
        max-width: 275px;
        margin-bottom: 8px;
    }

    .banner_main__subtitle {
        font-size: 14px;
        text-align: left;
        width: 327px;
    }

    .banner_main__right {
        max-width: 322px;
        gap: 24.5px;
        text-align: left;
    }

    .banner_main__right button {
        font-size: 18px;
        width: 286px;
        font-weight: 300 !important;
    }

    .advantages {
        padding-top: 8px;
        border-radius: 0 0 24px 24px;
    }

    .advantages-card img {
        position: absolute;
        right: 0;
        top: 39px;
        max-width: 90px;
    }

    .advantages__title {
        font-size: 16px;
    }

    .advantages__title.c4 {
        width: 152px;
    }

    .advantages__subtitle {
        max-width: 152px;
    }



    .span-2-row-1,
    .span-2-row-2 {
        height: auto !important;
        min-height: 270px !important;
        max-height: none !important;
    }

    .section.text_block__v1 {
        gap: 16px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .text_block__v1 h2.title {
        max-width: 311px;
    }

    .text_block__v1--content {
        display: flex;
        flex-direction: column;
        width: 359px;
        gap: 16px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .grid-3 {
        gap: 16px;
    }

    .text_block__v1--card {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }


    .text_block__v1--card.card-1 h3,
    .text_block__v1--card.card-2 h3 {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 8px;
        align-items: center;
    }

    .text_block__v1--card.card-1 h3::after,
    .text_block__v1--card.card-2 h3::after {
        justify-self: end;
    }

    ÷ .card-1 {
        padding: 24px 16px;
    }

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

    .text_block__v1--card h3 {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 0;
        max-width: 223px;
    }

    .text_block__v1--card p {
        font-size: 14px;
        line-height: 1.4;
    }

    .text_block__v1--card_p1 {
        margin-bottom: 8px;
    }

    .mobile-br {
        display: inline;
    }

    .span-2 {
        min-height: 270px !important;
        position: relative;
        display: flex;
        overflow: hidden;
        order: -1;
        width: 100% !important;
        max-width: 100% !important;
    }

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

    .abs-cover {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .main_info {
        position: absolute;
        bottom: 8px;
        left: 8px;
        right: 8px;
        gap: 8px;
        margin-top: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        max-width: calc(100% - 16px);
    }

    .main_info__card {
        flex: 1 1 0 !important;
        min-width: 0;
        padding: 16px;
        background: rgba(249, 249, 249, 0.6);
        backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
        border-radius: 24px;
        max-width: 100%;
        width: auto;
        justify-content: space-between;
    }

    .width-308 {
        width: 187.2px !important;
        flex: none !important;
        height: 104px;
    }

    .main_info__card.width-308 {
        padding: 16px;
    }

    .width-283 {
        width: 147px !important;
        max-width: 147px !important;
        flex: none !important;
        height: 104px;
    }

    .width-450 {
        width: 212px !important;
        max-width: 212px !important;
        flex: none !important;
        height: 153px;
        padding: 16px !important;
    }

    .width-450 p {
        font-size: 14px !important;
        line-height: 140% !important;
        max-width: 180.2px !important;
    }

    .width-238 {
        width: 116px !important;
        max-width: 116px !important;
        flex: none !important;
        height: 153px;
    }

    .main_info__card h4 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 4px;
    }

    .main_info__card p {
        font-size: 12px;
        line-height: 1.3;
        max-width: 178px;

    }

    .main_info__card span {
        font-size: 12px;
        margin-bottom: 4px;
    }

    .text_block__v1--btn {
        max-width: clamp(327px, 100%, 327px);
        padding: 12px 27px;
        font-size: 18px;
        border-radius: 16px;
        margin-top: 16px;
    }

    /*text_block__v3*/
    .mb1 img {
        object-position: 34% 30%;
    }

    .section.text_block__v3 {
        gap: 16px;
    }

    .text_block__v3--content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .text_block__v3--card.card-1 {
        order: 1;
    }

    .span-2 {
        order: -1;
        min-height: 270px !important;
        position: relative;
        border-radius: 24px;
        overflow: hidden;
    }

    .abs-cover {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .grid-3 {
        gap: 16px;
    }

    .text_block__v3--card.card-1,
    .text_block__v3--card.card-2 {
        padding: 24px 16px;
        height: auto;
    }

    .text_block__v3--card h3 {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 16px;
        max-width: 100%;
    }

    .text_block__v3--card p {
        font-size: 14px;
        line-height: 1.4;
        opacity: 0.8;
    }

    .text_block__v3--card_p1 {
        margin-bottom: 8px;
    }

    .text_block__v3--btn {
        width: 100%;
        padding: 12px 27px;
        font-size: 18px;
        border-radius: 16px;
        margin-top: 16px;
        display: block;
        text-align: center;
    }

    /*reviews*/
    .reviews_title {
        justify-content: space-between;
        align-items: start;
        padding-bottom: 25px;
    }

    .reviews h2.title {
        white-space: nowrap;
    }

    .title_buttons button {
        display: none;
    }

    .reviews_content {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 0px;
        -webkit-overflow-scrolling: touch;

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

    .reviews_content::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }

    .review_card {
        flex: 0 0 auto;
        width: 316px;
        scroll-snap-align: start;
        padding: 19px 24px 24px 24px;
    }

    .info_user {
        gap: 24px;
    }

    .info_user img {
        min-width: 48px;
        min-height: 48px;
    }

    .info_user__right {
        gap: 4.7px;
    }

    .name_user {
        font-size: 18px;
        line-height: 120%;
    }

    .date_review {
        font-size: 14px;
    }

    .review_comment {
        padding-top: 18px;
        padding-bottom: 18px;
        font-size: 14px;
    }

    .where_published {
        font-size: 14px;
    }

    .title_buttons_mob {
        display: flex;
        margin-top: 25px;
        gap: 13px;
        width: 100%;
    }

    .make__review_mob button {
        padding: 12px 32px;
        font-size: 16px;
        width: 189px;
    }

    .all__reviews_mob button {
        padding: 12px 32px;
        width: 157px;
        font-size: 16px;
        background: rgba(84, 84, 84, 1);
    }

    /* certificate */
    .certificate_section.title_content {
        margin-bottom: 0;
    }

    .certificate_button-prev,
    .certificate_button-next {
        display: none;
    }

    /* slider */
    .slide_subtitle {
        font-size: 16px;
    }

    .slider_block__wrapper {
        width: 100%;
        height: 264px;
        border-radius: 24px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 34px !important;
        height: 34px !important;
        position: absolute;
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(21px);
        -webkit-backdrop-filter: blur(21px);
        border-radius: 25px;
        margin: 0;
        top: 55% !important;
        transform: translateY(-50%) !important;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.4s ease;
        z-index: 10;
        background-image: none !important;
        background-position: center;
        background-repeat: no-repeat;
    }

    .slider_block__wrapper .swiper-button-prev {
        left: 16px !important;
    }

    .slider_block__wrapper .swiper-button-next {
        right: 16px !important;
    }

    .swiper-button-prev svg,
    .swiper-button-next svg {
        max-width: 12px;
    }

    .slider_block__wrapper .swiper_counter {
        position: absolute;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 9px 19px;
        border-radius: 24px;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.2;
        z-index: 10;
        white-space: nowrap;
        letter-spacing: 8%;
        min-width: 66px;
        text-align: center;
    }

    .slider_block--fullscreen {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
        z-index: 10;
        padding: 0;
        flex-shrink: 0;
    }

    .slider_block--fullscreen svg {
        stroke: rgba(30, 30, 30, 1);
        width: 10px;
        height: 10px;
        display: block;
    }

    /*text_block__v7*/

    .text_block__v7,
    .text_block__v4 {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        background-image: none !important;
        background-color: rgba(0, 56, 36, 1);
        overflow-x: hidden;
    }

    .text_block__v7::before,
    .text_block__v4::before {
        display: none;
    }

    .text_block__v7--content,
    .text_block__v4--content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 32px 16px;
        background: rgba(0, 56, 36, 1);
        width: 100%;
        max-width: 100%;
        border-radius: 24px;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .text_block__v7--title,
    .text_block__v4--title {
        max-width: 100%;
    }

    .text_block__v7--title h2,
    .text_block__v4--title h2 {
        font-size: 24px;
        font-weight: 450;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 12px;
        max-width: 289px;
    }

    .text_block__v7--title p,
    .text_block__v4--title p {
        font-size: 12px;
        color: rgba(255, 255, 255, 1);
        opacity: 0.8;
        line-height: 1.4;
        font-weight: 400;
    }

    .text_block__v7--form,
    .text_block__v4--form {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form_section__fields {
        align-items: stretch;
        gap: 8px;
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form_group {
        display: flex;
        flex-direction: column;
        gap: 4px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form_label {
        font-size: 12px;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 400;
        padding-left: 0px;
        letter-spacing: 2%;
    }

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

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

    .form_section__btn {
        padding: 12px 24px;
        background: var(--btn);
        color: var(--bg);
        border-radius: 16px;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.4s ease;
        white-space: normal;
        line-height: 20px;
        letter-spacing: 2%;
        width: 100%;
        max-width: 100%;
        margin-top: 16px;
        box-sizing: border-box;
        grid-row: auto;
        grid-column: auto;
    }

    .form_checkbox_wrapper {
        display: flex;
        align-items: center;
        padding-left: 0;
        padding-bottom: 0;
        padding-top: 8px;
        grid-row: auto;
        grid-column: auto;
    }

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

    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: 12px;
    }

    .form-checkbox__text {
        font-size: 12px;
        line-height: 1.2;
        color: var(--bg);
        font-weight: 400;
        white-space: nowrap;
    }

    .form_section__policy {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.2;
        max-width: 100%;
        font-weight: 400;
        width: 273px;
        grid-row: auto;
        grid-column: auto;
    }

    /* contacts */
    .contacts__info.card.grid-4 {
        grid-template-columns: repeat(1, 1fr);
        padding: 31px 64px 32px 24px !important;
        gap: 24px;
        width: 100% !important;
        max-width: 100% !important;
    }

    .contacts.btm_pad--40 {
        padding-bottom: 0;
    }


    .contacts__info-block {
        gap: 4px;
    }

    .contacts__subtitle {
        font-size: 120%;
        opacity: 0.4;
    }

    .contacts__info-value {
        font-size: 24px;
        word-break: break-word;
        line-height: 130%;
    }

    .contacts__bottom {
        display: grid;
        grid-template-columns: repeat(1, 358px);
    }



    .contacts__left.card {
        padding: 24px 16px;
        max-width: 100% !important;
        width: 100% !important;
        order: 1;
    }

    .contacts__tel {
        padding-top: 11px;
        padding-bottom: 12px;
    }

    .contacts__tel,
    .contacts__mail {
        gap: 4px;
    }

    .contacts__tel p,
    .contacts__mail p {
        font-weight: 400;
        font-size: 14px;
        line-height: 130%;
        letter-spacing: 2%;
        color: rgba(84, 84, 84, 1);
    }

    .contacts__tel a,
    .contacts__mail a {
        font-weight: 500;
        font-size: 18px;
        line-height: 130%;
        letter-spacing: 2%;
    }

    .contacts__bottom {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        width: 100% !important;
    }

    .contacts__left.card {
        padding: 24px;
        max-width: 358px;
    }

    .contacts__tel {
        padding-top: 11px;
        padding-bottom: 12px;
    }

    .contacts__tel,
    .contacts__mail {
        gap: 4px;
    }

    .contacts__tel p,
    .contacts__mail p {
        font-weight: 400;
        font-size: 14px;
        line-height: 130%;
        letter-spacing: 2%;
        color: rgba(84, 84, 84, 1);
    }

    .contacts__tel a,
    .contacts__mail a {
        font-weight: 500;
        font-size: 18px;
        line-height: 130%;
        letter-spacing: 2%;
    }

    .contacts__button button {
        font-size: 18px;
        line-height: 120%;
        padding: 16px 32px;
        width: 100%;
        border-radius: 16px;
        margin-top: 24px;
    }

    .contacts__right {
        max-width: 100% !important;
        width: 100% !important;
        height: 281px;
        overflow: hidden;
        border-radius: 16px;
    }


    .contacts__right img {
        width: 100%;
        height: 100%;
        max-height: 311px;
        object-fit: cover;
        background-size: cover;
        order: -1;
        border-radius: 24px;
    }

    .contacts__left.mc {
        order: -1;
    }

    /* plan */
    .increase_picture {
        top: 10px;
        right: 10px;
    }

    .increase_picture svg {
        width: 30px;
        height: 30px;
    }

    .specification_block-value {
        font-size: 24px;
    }

    .accordion_head {
        padding: 12px 6px 12px 0px;
    }

    .title_plan {
        font-size: 18px;
    }


    .description-title {
        font-size: 24px;
    }

    /* lead */
    .lead_section {
        padding: 31px 24px 24px 24px;
        margin-top: 32px;
    }

    .lead_info {
        max-width: 292px;
        z-index: 2;
    }

    .lead_section-title {
        font-size: 24px;
        white-space: wrap;
    }

    .lead_section-subtitle {
        font-size: 14px;
        padding-top: 10px;
        padding-bottom: 24px;
    }


    .lead_image {
        position: absolute;
        right: -224px;
        top: 0;
        bottom: 0;
        height: 100%;
        width: auto;
        min-width: 505px;
        object-fit: cover;
        opacity: 0.3;
        z-index: 1;
    }


    .lead_section button {
        padding: 13px 58px;
        width: 312px;
    }

    /* faq */
    .text_block__v6__faq {
        background: #F8F8F8;
        border-radius: 24px;
        padding: 33px 24px 24.13px 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .faq_item {
        width: 311px;
    }

    .faq_title h3 {
        line-height: 100%;
    }

    .faq_content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        max-width: 495px;
        flex-shrink: 0;
    }

    .about_section .grid-3 {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px;
        width: 100% !important;
    }


    /* about */
    .about_section h2.title {
        max-width: 311px;
    }

    .about_section .grid-3 {
        gap: 16px;
    }

    .about_section .about__content-card {
        padding: 24px 20px;
    }

    .about_section .about__content-card h3 {
        font-size: 18px;
        line-height: 1.2;
        max-width: 223px;
        margin-bottom: 0;
    }

    .about_section .about__content-card p {
        font-size: 14px;
        line-height: 1.4;
    }

    .about_section .span-2 {
        min-height: 270px !important;
    }

    .about_section .about_info {
        position: absolute;
        bottom: 8px;
        left: 8px;
        right: 8px;
        gap: 8px;
        margin-top: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: calc(100% - 16px);
    }

    .about_section .about_info__card {
        flex: 1 1 0;
        min-width: 0;
        padding: 16px 20px;
        background: rgba(249, 249, 249, 0.6);
        backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
        border-radius: 24px;
        max-width: 100%;
    }

    .about_info__card.width-289 {
        display: none;
    }

    .about_section .about_info__card p {
        font-size: 14px;
        line-height: 140%;
    }

    .about_section .about_info__card span {
        font-size: 12px;
        margin-bottom: 4px;
        padding-bottom: 0;
        max-width: 181px;
    }

    .about_section .width-448 {
        width: 218px;
        max-width: 218px;
        height: 100%;
    }

    .about_section .width-537 {
        width: 100% !important;
        max-width: 100% !important;
        height: 100%;
    }


    .about_section .about_info__card h3,
    .about_section .about_info__card h4 {
        font-size: 23px;
    }

    /* specific */
    .section.about_section {
        gap: 16px;
    }

    .width-270 {
        max-width: 100% !important;
        width: 342px;
    }

    .width-195 {
        width: 116px;
    }

    .width-195.technology_info__card p {
        word-break: keep-all;
    }

    .width-448 {
        width: 218px !important;
    }

    .span-2-row-1,
    .span-2-row-2 {
        height: auto !important;
        min-height: 270px !important;
        max-height: none !important;
    }

    .section.specific {
        gap: 16px;
    }

    .specific h2.title {
        max-width: 311px;
    }

    .specific--content {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .grid-3 {
        gap: 16px;
    }

    .specific--card {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

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

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

    .specific--card h3 {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 16px;
        max-width: 223px;
    }

    .specific--card p {
        font-size: 14px;
        line-height: 1.4;
    }

    .specific--card_p1 {
        margin-bottom: 8px;
    }

    .span-2 {
        min-height: 270px !important;
        position: relative;
        display: flex;
        overflow: hidden;
        order: -1;
    }

    .specific--content.span-2 {
        order: 1;
    }

    .abs-cover {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .technology_info {
        position: absolute;
        bottom: 8px;
        left: 8px;
        right: 8px;
        gap: 8px;
        margin-top: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
        max-width: calc(100% - 16px);
    }

    .technology_info__card {
        flex: 1 1 0;
        min-width: 0;
        padding: 16px 20px;
        background: rgba(249, 249, 249, 0.6);
        backdrop-filter: blur(9px);
        -webkit-backdrop-filter: blur(9px);
        border-radius: 24px;
        max-width: 100%;
        height: auto;
        justify-content: space-between;
    }

    .technology_info__card:last-child {
        max-width: 122px;
    }

    .technology_info__card h4 {
        font-size: 24px;
        line-height: 1.2;
        margin-bottom: 4px;
        word-break: break-word;
    }

    .technology_info__card p {
        font-size: 12px;
        line-height: 1.3;
        max-width: 100%;
        word-break: break-word;
    }

    .technology_info__card span {
        font-size: 12px;
        margin-bottom: 4px;
        word-break: break-word;
    }

    .specific--btn {
        max-width: 100%;
        padding: 12px 27px;
        font-size: 16px;
        border-radius: 16px;
        margin-top: 16px;
    }

    /* question */

    .text_block__v5--conetnt {
        flex-direction: column;
        margin-bottom: 48px;
    }

    .questions_block__tabs {
        display: none;
    }

    .questions_block__right {
        background: transparent;
        border-radius: 0;
        padding: 0;
        max-width: 100%;
    }

    .question_content {
        display: block !important;
        background: #F8F8F8;
        border-radius: 24px;
        margin-bottom: 12px;
        padding: 16px 24px;
        cursor: pointer;
    }

    .questions_title_title {
        position: relative;
        font-size: 16px;
        margin-bottom: 0;
        padding-right: 30px;
        pointer-events: none;
    }

    .questions_title_title::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 8px;
        background-image: url("data:image/svg+xml,%3Csvg width='16' height='8' viewBox='0 0 16 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 1L8 7L1 1' stroke='%23BBBBBB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        pointer-events: none;
    }

    .question_content.active .questions_title_title::after {
        content: '';
    }

    .questions_title_subtitle,
    .questions_text,
    .questions_block__right--bottom {
        display: none;
    }

    .question_content.active .questions_title_subtitle,
    .question_content.active .questions_text,
    .question_content.active .questions_block__right--bottom {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .question_content.active.question_content {
        border: 1px solid var(--btn);
    }

    .question_content.active .questions_title_title {
        font-size: 24px;
    }

    .question_content.active .questions_block__right--bottom {
        margin-top: 81px;
    }

    .question_content.active .questions_block__right--bottom p {
        max-width: 252px;
    }


    .question_content.active .questions_text {
        margin-top: 24px;
        max-width: 311px;
    }

    p.questions_text {
        width: 100%;
        font-size: 16px;
        line-height: 1.2;
    }

    .questions_block__right--bottom.active {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .questions_block__right--bottom p {
        font-size: 16px;
    }

    .questions_title_subtitle {
        font-size: 12px;
        margin-bottom: 8px;
        font-weight: 200;
        padding-left: 1px;
    }


    /* footer */
    .footer {
        margin-top: 24px;
    }

    .footer__inner {
        padding: 32px 16px;
        display: grid;
        grid-template-columns: 359px;
        justify-content: space-between;
        gap: 0px;
    }

    .footer_block__1 {
        display: flex;
        flex-direction: column;
        gap: 0px;
    }

    .footer_logo {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 8px;
        margin-left: 0px;
    }

    .footer_logo img {
        max-width: 226px;
        max-height: 19px;
    }

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

    .footer__icon {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 19px;
        align-items: center;
        margin-bottom: 24px;
        margin-left: 0px;
    }

    .footer__icon a {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .footer_telegram__p {
        font-size: var(--fs-footer-contact);
        line-height: 1.3;
        letter-spacing: 2%;
        font-weight: 400;
        color: #fff;
    }

    .footer_tel__p {
        font-size: var(--fs-footer-contact);
        line-height: 100%;
        letter-spacing: 3%;
        font-weight: 400;
        color: #fff;
    }

    .onTapelogo_mob {
        margin-top: 32px;
    }

    .onTapelogo_mob img {
        max-width: 349px;
        width: 100%;
        margin-top: 0px;
    }

    .footer_block__right {
        gap: 32px;
        grid-template-columns: 163px 160px;
    }

    .footer_block__2,
    .footer_block__3 {
        gap: 16px;
    }

    .footer_block__2 h3,
    .footer_block__3 h3,
    .footer_block__4 h3,
    .footer_block__4 h4 {
        font-size: var(--fs-footer-link);
        font-weight: 700;
        line-height: 1.3;
        letter-spacing: 2%;
        opacity: 1;
        color: #fff;
    }

    .footer_block__2 a,
    .footer_block__3 a,
    .footer_block__4 p {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.3;
        letter-spacing: 2%;
        color: #fff;
        opacity: 0.8;
    }

    .footer_block__4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .time,
    .add {
        gap: 16px;
    }

    .time-text {
        flex-direction: column;
        gap: 4px;
        max-width: 81px;
    }

    .time-day {
        white-space: nowrap;
    }

    .time-hours {
        white-space: nowrap;
    }

    .footer_block__4 h4 {
        margin-top: 0px;
    }
}





/*text_block__v2*/
@media (max-width: 1350px) and (min-width: 1201px) {
    .cards_project {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .card_project {
        height: 380px;
    }

    .card_project__image_wrapper {
        height: 330px;
    }

    .card_project:hover .card_project__image_wrapper {
        height: 270px;
    }

    .card_project__details h2 {
        font-size: 28px;
    }

    .card_project__details p {
        font-size: 20px;
    }

    .card_v3__top_price {
        font-size: 28px;
    }

    .card_project__hover_list {
        gap: 18px;
        grid-template-columns: 80px 50px 50px 52px;
    }

    .card_project__hover_item h3 {
        font-size: 22px;
    }

    .card_project--btn {
        padding: 11px 40px;
        font-size: 16px;
    }
}

@media (max-width: 1200px) and (min-width: 993px) {
    .cards_project {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card_project {
        height: 360px;
    }

    .card_project__image_wrapper {
        height: 310px;
        margin-bottom: 14px;
    }

    .card_project:hover .card_project__image_wrapper {
        height: 250px;
    }

    .card_project__details h2 {
        font-size: 26px;
    }

    .card_project__details p {
        font-size: 18px;
        padding-top: 6px;
    }

    .card_v3__top_price {
        font-size: 26px;
    }

    .card_project__info {
        margin-bottom: 12px;
    }

    .card_project__hover_list {
        gap: 16px;
        grid-template-columns: 75px 48px 48px 50px;
    }

    .card_project__hover_item h3 {
        font-size: 20px;
    }

    .card_project__hover_item p {
        font-size: 11px;
    }

    .card_project--btn {
        padding: 10px 35px;
        font-size: 15px;
    }

    .card_project__content {
        padding-left: 2px;
    }

    .card_project:hover .card_project__content {
        height: 88px;
    }
}

@media (max-width: 992px) and (min-width: 831px) {
    .cards_project {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .card_project {
        height: 340px;
    }

    .card_project__image_wrapper {
        height: 290px;
        margin-bottom: 12px;
        border-radius: 20px;
    }

    .card_project__image_wrapper img {
        border-radius: 20px;
    }

    .card_project:hover .card_project__image_wrapper {
        height: 230px;
    }

    .card_project__details h2 {
        font-size: 24px;
    }

    .card_project__details p {
        font-size: 16px;
        padding-top: 5px;
    }

    .card_v3__top_price {
        font-size: 24px;
    }

    .card_project__info {
        margin-bottom: 10px;
    }

    .card_project__hover_list {
        gap: 14px;
        grid-template-columns: 70px 45px 45px 48px;
    }

    .card_project__hover_item h3 {
        font-size: 18px;
    }

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

    .card_project--btn {
        padding: 9px 30px;
        font-size: 14px;
        border-radius: 14px;
    }

    .card_project__content {
        padding-left: 2px;
    }

    .card_project__hover {
        height: 44px;
    }

    .card_project:hover .card_project__content {
        height: 84px;
    }

    .card_project__tags {
        top: 10px;
        left: 10px;
        gap: 5px;
    }

    .hit,
    .card_project__tag {
        padding: 5px 12px;
        font-size: 12px;
        border-radius: 12px;
    }
}

@media (max-width: 830px) and (min-width: 601px) {
    .cards_project {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card_project {
        max-width: 100%;
        height: 380px;
    }

    .card_project__image_wrapper {
        height: 330px;
        margin-bottom: 14px;
    }

    .card_project:hover .card_project__image_wrapper {
        height: 270px;
    }

    .card_project__details h2 {
        font-size: 28px;
    }

    .card_project__details p {
        font-size: 20px;
        padding-top: 6px;
    }

    .card_v3__top_price {
        font-size: 28px;
    }

    .card_project__hover_list {
        gap: 20px;
        grid-template-columns: repeat(4, minmax(0, auto));
    }

    .card_project__hover_item h3 {
        font-size: 22px;
    }

    .card_project--btn {
        padding: 10px 40px;
        font-size: 16px;
    }

    .text_block__v2_title {
        align-items: flex-start;
        gap: 16px;
    }

    .text_block__v2_title--btn-dark {
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media (max-width: 600px) and (min-width: 481px) {
    .cards_project {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card_project {
        height: 350px;
    }

    .card_project__image_wrapper {
        height: 300px;
        margin-bottom: 12px;
        border-radius: 18px;
    }

    .card_project__image_wrapper img {
        border-radius: 18px;
    }

    .card_project:hover .card_project__image_wrapper {
        height: 240px;
    }

    .card_project__details h2 {
        font-size: 24px;
    }

    .card_project__details p {
        font-size: 16px;
        padding-top: 5px;
    }

    .card_v3__top_price {
        font-size: 22px;
    }

    .card_project__info {
        margin-bottom: 10px;
    }

    .card_project__hover_list {
        gap: 12px;
        grid-template-columns: 70px 45px 45px 48px;
    }

    .card_project__hover_item h3 {
        font-size: 18px;
    }

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

    .card_project--btn {
        padding: 8px 30px;
        font-size: 14px;
        border-radius: 14px;
    }

    .card_project__content {
        padding-left: 2px;
    }

    .card_project__hover {
        height: 42px;
    }

    .card_project:hover .card_project__content {
        height: 80px;
    }

    .text_block__v2_title a {
        display: none;
    }

    .text_block__v2_title--btn-dark_mob {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 12px 20px;
        font-size: 16px;
        text-align: center;
    }

    .btm-btn_text_block__v2 {
        width: 100%;
        gap: 12px;
    }

    .text_block__v2--btn {
        width: 100%;
        max-width: 100%;
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media (max-width:480px) {
    .section.text_block__v2 {
        gap: 24px;
    }

    .text_block__v2_title a {
        display: none;
    }

    .text_block__v2--content {
        align-items: center;
        gap: 24px;
    }

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

    .card_project {
        width: 100%;
        overflow: hidden;
        position: relative;
        max-height: 239px;
    }

    .card_project__content {
        padding-left: 0px;
        height: 18px;
    }

    .card_project:hover .card_project__content {
        height: 80px;
    }

    .card_project__image_wrapper {
        position: relative;
        margin-bottom: 8px;
        overflow: hidden;
        height: 210px;
        width: 100%;
        border-radius: 14.5px;
        transition: height 0.4s ease;
    }

    .card_project__image_wrapper img {
        border-radius: 14.5px;
        width: 100%;
        max-height: 210px;
    }

    .hit {
        border-radius: 9.64px;
        padding: 4px 12px;
        font-size: 12px;
        backdrop-filter: blur(12.05px);
        -webkit-backdrop-filter: blur(12.05px);
    }

    .card_project__tags {
        position: absolute;
        top: 8px;
        left: 8px;
        display: flex;
        gap: 3.61px;
    }

    .card_project__tag {
        backdrop-filter: blur(12.05px);
        -webkit-backdrop-filter: blur(12.05px);
        border-radius: 9.64px;
        padding: 4px 12px;
        font-size: 12px;
    }

    .card_project__info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: auto;
        flex-shrink: 0;
        margin-bottom: 8px;
    }

    .card_project__details {
        gap: 9.64px;
    }

    .card_project__details h2 {
        font-size: 18px;
    }

    .card_project__details p {
        padding-top: 4px;
        font-size: 14px;
    }

    .card_v3__top_price {
        font-size: 18px;
    }

    .card_project__hover {
        height: 40px;
    }

    .card_project--btn {
        background-color: var(--btn);
        border-radius: 10px;
        padding: 6px 23px;
        font-size: 14px;
    }

    .card_project:hover .card_project__image_wrapper {
        height: 145px;
    }

    .card_project__hover_list {
        gap: 10px;
        align-items: center;
        grid-template-columns: 74px 38px 37px 39px;
        flex-shrink: 0;
    }

    .card_project__hover_item {
        gap: 4px;
    }

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

    .card_project__hover_item h3 {
        font-size: 16px;
    }


    .btm-btn_text_block__v2 {
        width: 100%;
        gap: 12px;
    }

    .text_block__v2_title--btn-dark_mob {
        display: block;
    }

    .text_block__v2--btn,
    .text_block__v2_title--btn-dark_mob {
        padding: 12px 22px;
        font-size: 18px;
        min-width: 359px;
        text-align: center;
    }
}




/* plan */

@media (min-width: 1141px) and (max-width: 1200px) {
    .plan_project {
        padding: 20px 24px 24px 20px;
    }

    .specifications {
        padding: 20px 16px 15px 20px;
    }

    .specifications_blocks {
        gap: 12px;
    }

    .specification_block-value {
        font-size: 20px;
        word-break: break-word;
    }

    .description {
        padding-right: 24px;
    }

    .price button {
        padding: 14px 40px;
        white-space: normal;
        word-break: break-word;
    }

    .accordion_content {
        padding-right: 30px;
    }
}