/* Основные стили */
:root {
    --white: #fff;
    --beige: #e9e4d1;
    --green: #3a5044;
    --black: #282824;
    --font-family: "Roboto Flex", sans-serif;
    --second-family: "Calibri", sans-serif;
    --third-family: "Great Vibes", sans-serif;
    --dark-green: #2b4a3d;
    /* Предполагаемый цвет из макета */
    --text-color: #333;
    /* Возвращаем старую переменную для совместимости с предыдущими стилями */
}

@font-face {
    font-family: 'Great Vibes';
    src: url('../fonts/GreatVibes-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto Flex';
    src: url('../fonts/RobotoFlex-VariableFont_GRAD,XOPQ,XTRA,YOPQ,YTAS,YTDE,YTFI,YTLC,YTUC,opsz,slnt,wdth,wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--black);
}

main {
    /* max-width: 1600px; */
    margin: auto;
}

.btn {
    display: inline-block;
    border-radius: 40px;
    padding: 16px 32px;
    min-width: fit-content;
    width: fit-content;
    height: 62px;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #3a5044;
    background: #fff;
    text-decoration: none;
    cursor: pointer;
}

.btn-border {
    background-color: transparent !important;
    color: #fff !important;
    border: 1px solid #fff !important;
}

.green-btn {
    background: var(--green) !important;
    color: var(--white) !important;
    border: none !important;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 7px;
}

.bx-admin .header {
    margin-top: 39px;
}

.text-underline {
    text-decoration: underline !important;
}

/* Стили для шапки */
.header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: 100%;
    z-index: 994;
    backdrop-filter: blur(14px);
    background: rgba(0, 0, 0, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    /* padding: 0px 80px; */
    height: 92px;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.header__logo {
    margin-right: auto;
}

.header__logo img {
    height: 68px;
}

.header__nav {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--white);
}

.header__menu {
    list-style: none;
    display: flex;
    gap: 24px;
}

.header__menu a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 148%;
    letter-spacing: 0.01em;
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.header__menu a:hover {
    color: var(--beige);
}

.header__contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 0 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    height: 92px;
}

.header__phone {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 148%;
    letter-spacing: 0.01em;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-align: right;
    color: var(--white);
}

.header__button {
    height: 53px;
    padding: 16px 32px;
    border: none;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--green);
}

.header__contact p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    line-height: 148%;
    letter-spacing: 0.01em;
    text-align: right;
    color: var(--white);
    opacity: 0.72;
}

/* Стили для первого экрана */
.hero {
    position: relative;
    height: 80vh;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero__content {
    z-index: 1;
}

.hero h1 {
    font-family: var(--third-family);
    font-size: 5em;
    margin-bottom: 20px;
}

.hero__offer {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--black);
    padding: 20px;
    max-width: 300px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.hero__button {
    background-color: var(--dark-green);
    color: var(--secondary-color);
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero__button:hover {
    background-color: var(--accent-color);
}

/* Стили для секции "О проекте" */
.about-project {
    padding: 62px 0;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

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

.about-project__header {
    display: flex;
}

.about-project__img {
    list-style: none;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.about-project__img img {
    display: flex;
    border-radius: 8px;
}

.about-project__content {
    margin-left: auto;
    width: calc(50% - 6px);
}

.about-project__content h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: var(--green);
    margin-bottom: 16px;
}

.about-project__content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--black);
}

.about-project__list {
    list-style: none;
    margin-top: 20px;
}

.about-project__list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.about-project__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--dark-green);
    font-weight: bold;
}

.about-project__accordion h3 {
    display: flex;
    outline: none;
    line-height: 36px;
    padding: 31px 0;
    border-top: 1px solid #ebecf0;
}

.about-project__accordion h3:not(.ui-state-active):last-of-type {
    border-bottom: 1px solid #ebecf0;
}

.about-project__accordion h3 .number {
    margin-right: auto;
    display: flex;
    align-items: center;
}

#accordion {
    overflow: hidden;
}

.about-project__accordion h3 .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(50% - 6px);
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 28px;
    line-height: 130%;
    text-align: center;
    color: var(--black);
    white-space: nowrap;
}

.about-project__accordion h3 .accordion-header svg {
    will-change: transform;
    transition: transform .3s;
}

.about-project__accordion h3.ui-accordion-header-active .accordion-header svg {
    transform: rotate(90deg);
}

.accordion-content-img {
    /* margin-top: -48px; */
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.accordion-content-img img {
    border-radius: 8px;
}

.ui-accordion-content {
    display: flex;
    /* overflow: visible !important; */
    margin-top: -64px;
    margin-bottom: 20px;
}

.accordion-content-text {
    margin-top: 48px;
    width: calc(50% - 6px);
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: var(--green);
}

.accordion-content-text h2 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--green);
}

.accordion-content-text ol,
.accordion-content-text ul {
    margin-left: 10px;
}

/* Стили для секции "Все условия для загородной жизни" */
.conditions {
    padding: 62px 0;
    overflow: hidden;
}

.conditions h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: var(--green);
    margin-bottom: 40px;
}

.conditions__items {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    overflow-x: visible;
    white-space: nowrap;
    gap: 8px;
    justify-content: flex-start;
    position: relative;
    cursor: grab;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.conditions__items:active {
    cursor: grabbing;
    transition: none;
}

.conditions__items::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-x: auto;
    pointer-events: none;
    z-index: -1;
}

.conditions__item {
    text-align: left;
    border-radius: 20px;
    padding: 24px;
    position: relative;
    height: 425px;
    background-size: cover;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
}

.conditions__item p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--white);
    white-space: normal;
}

.conditions__item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 152px;
    backdrop-filter: blur(24px);
    filter: blur(8px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 0;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.conditions__item__content {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    min-height: 124px;
}

.conditions__item img {
    position: absolute;
    left: 24px;
    top: 24px;
    width: 40px;
    height: 40px;
}

.conditions__item h3 {
    display: inline;
    width: fit-content;
    white-space: normal;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 22px;
    line-height: 120%;
    color: var(--white);
    border-radius: 8px;
    padding: 8px 14px;
    backdrop-filter: blur(32px);
    background: rgba(255, 255, 255, 0.16);
    margin-bottom: 8px;
}

/* Стили для секции "Получите презентацию и прайс-лист" */
.presentation {
    padding: 62px 0;
    overflow: hidden;
}

.presentation-wrapper {
    border-radius: 24px;
    background: linear-gradient(159deg, #3a5044 0%, #253b2f 100%);
    color: var(--white);
    display: flex;
    position: relative;
}

.presentation-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(../images/footer-background.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.presentation-wrapper img {
    border-radius: 24px;
    max-width: 895px;
    max-height: 576px;
    width: 100%;
    object-fit: cover;
}

.presentation-wrapper form {
    padding: 33px 40px;
}

.presentation h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: var(--white);
    margin-bottom: -8px;
}

.presentation p.title {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--white);
    margin-bottom: 12px;
    text-align: left;
}

.presentation form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.presentation form input[type="text"],
.presentation form input[type="tel"],
.presentation form input[type="email"] {
    padding: 16px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.12);
    border: none;
    border-radius: 8px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    border: 0;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #ffffffa3;
}

.presentation form input::placeholder {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #ffffffa3;
}

.presentation form select {
    border-radius: 8px;
    padding: 16px;
    background: var(--beige);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--green);
    appearance: none;
    background-image: url('../images/chevron-down.svg');
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: calc(100% - 16px) center;
}

.presentation form select::placeholder {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--green);
}

.presentation form .form_actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.presentation form .form_actions a {
    line-height: 24px;
    height: auto;
}

.presentation form button[type="submit"] {
    background: var(--white);
    border-radius: 40px;
    padding: 16px 32px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--green);
    cursor: pointer;
    width: 100%;
}

.presentation form button[type="submit"]:hover {
    background-color: var(--text-color);
    color: var(--secondary-color);
}

.presentation p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 148%;
    letter-spacing: 0.01em;
    text-align: left;
    color: var(--white);
}

.presentation p a {
    color: var(--white);
    text-decoration: underline;
    text-decoration-skip-ink: none;
}

/* Стили для секции "Почему выбирают нас" */
.why-choose-us {
    padding: 62px 0;
    text-align: center;
    overflow: hidden;
}

.why-choose-us--header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.why-choose-us--header span {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #5a5a56;
}

.why-choose-us h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: var(--green);
    margin-right: auto;
    margin-left: auto;
}

.why-choose-us__items_wrapper {
    overflow: visible;
}

.why-choose-us__items {
    display: flex;
    width: max-content;
    text-align: left;
    padding: 20px 24px;
}

.why-choose-us__item {
    width: -webkit-fill-available;
    width: -moz-available;
    width: fill-available;
    width: stretch;
    max-width: 432px;
    box-sizing: content-box;
}

.why-choose-us__item img {
    display: block;
    width: 100%;
    min-width: fit-content;
    margin-bottom: 15px;
    border-radius: 12px;
}

.why-choose-us__item h3 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 28px;
    line-height: 130%;
    color: var(--green);
    margin-bottom: 8px;
}

.why-choose-us__item p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #5a5a56;
}

.ways2buy {
    padding: 62px 0;
    overflow: visible;
}

.ways2buy__wrapper {
    display: flex;
    position: relative;
    min-height: 600px;
}

.ways2buy__wrapper>img {
    position: sticky;
    top: 92px;
    border-radius: 20px;
    height: 100%;
}

.ways2buy__content {
    width: 50%;
    padding: 0 24px;
}

.ways2buy__content a {
    margin-top: 32px;
    width: 100%;
    text-align: center;
}

.ways2buy__wrapper h2,
.ways2buy__content .h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: var(--green);
    margin-bottom: 32px;
}

.ways2buy__item {
    padding: 31px 0;
    display: flex;
    flex-direction: column;
    border-top: 1px solid #ebecf0;
    gap: 16px;
}

.ways2buy__item:last-of-type {
    border-bottom: 1px solid #ebecf0;
}

.ways2buy__item h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 28px;
    line-height: 130%;
    text-align: center;
    color: var(--black);
}

.ways2buy__item p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #5a5a56;
}

.ways2buy__item h3 span {
    width: 40px;
    height: 40px;
    display: inline-block;
}

.promo {
    padding: 62px 0;
    overflow: hidden;
    margin: auto;
    max-width: 1600px;
}

.promo h2 {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 156px;
    color: var(--green);
    text-align: center;
}

/* Стили для секции "Инфраструктура для комфортной жизни" */
.infrastructure {
    padding: 62px 0;
    text-align: center;
}

.infrastructure__header {
    max-width: 540px;
    position: relative;
}

.infrastructure__header h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: var(--green);
}

.infrastructure__header p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #5a5a56;
}

.infrastructure__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    /* gap: 64px 0; */
    margin-top: 16px;
}

.infrastructure__wrapper {
    width: 50%;
    margin-left: auto;
    text-align: left;
}

.infrastructure__item {
    display: flex;
    gap: 12px;
    position: relative;
}

.infrastructure__item p {
    max-width: 297px;
}

.infrastructure__item .infrastructure__content {
    padding: 20px 0 0;
    margin-top: 20px;
}

@media screen and (min-width: 1440px) {
    .infrastructure__item .infrastructure__content {
        min-width: 50%;
    }
}

.infrastructure__item:nth-child(odd) .infrastructure__content:first-child::before {
    content: '';
    position: absolute;
    top: 0px;
    right: -16px;
    width: 9px;
    height: 9px;
    background-color: var(--green);
    ;
    display: block;
    border-radius: 100%;
    z-index: 1;
}

.infrastructure__item:nth-child(even) .infrastructure__content:first-child::before {
    content: '';
    position: absolute;
    top: 0px;
    left: -16px;
    width: 9px;
    height: 9px;
    background-color: var(--green);
    display: block;
    border-radius: 100%;
    z-index: 1;
}

.infrastructure__item:first-child .infrastructure__content,
.infrastructure__item:nth-child(2) .infrastructure__content {
    padding: 24px 0 0;
    /* margin-top: 40px; */
}

.infrastructure__item:nth-child(odd) .infrastructure__content:first-child::after {
    content: '';
    position: absolute;
    top: -282px;
    right: -12px;
    width: 1px;
    height: calc(100% + 282px);
    background-color: #ebecf0;
    /* background-color: #000; */
    display: block;
}

.infrastructure__item:nth-child(even) .infrastructure__content:first-child::after {
    content: '';
    position: absolute;
    top: -32px;
    left: -12px;
    width: 1px;
    height: calc(100% + 32px);
    background-color: #ebecf0;
    /* background-color: #000; */
    display: block;
    z-index: -1;
}

.infrastructure__item:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 24px;
    left: -12px;
    height: 1px;
    width: calc(100% + 12px);
    background-color: #ebecf0;
    /* background-color: #000; */
    display: block;
}

.infrastructure__item:nth-child(odd)::before {
    content: '';
    position: absolute;
    top: 24px;
    right: -12px;
    height: 1px;
    width: calc(100% + 12px);
    background-color: #ebecf0;
    /* background-color: #000; */
    display: block;
}

.infrastructure__header::before {
    content: '';
    position: absolute;
    top: -124px;
    left: -12px;
    width: 1px;
    height: calc(100% + 136px);
    background-color: #ebecf0;
    /* background-color: #000; */
    display: block;
}

.infrastructure__content {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    position: relative;
}

.infrastructure__item img {
    display: block;
    width: auto;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 20px;
}

@media screen and (min-width: 1440px) {
    .infrastructure__item img {
        height: 100%;
        min-height: 329px;
    }
}

.infrastructure__item p {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 130%;
    color: var(--black);
}

/* Стили для секции "Так выглядит тишина" */
.silence {
    padding: 62px 0;
    overflow: hidden;
}

.silence__wrapper {
    position: relative;
}

.silence__content {
    position: absolute;
    width: 32.78% !important;
    z-index: 2;
}

.silence__content .title {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #5a5a56;
}

.silence_pag {
    height: 32px;
    margin-top: 24px;
    position: relative;
    width: 100%;
    max-width: 296px;
}

@media (max-width: 767px) {
    .silence_pag {
        margin-left: auto;
        margin-right: auto;
    }
}

.silence .swiper-pagination {
    bottom: 50% !important;
    transform: translateY(50%);
    justify-content: flex-start !important;
    opacity: 1 !important;
    width: fit-content !important;
    margin: 0 56px;
}

.silence .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #3a50443d !important;
    opacity: 1 !important;
}

.silence .swiper-pagination-bullet-active {
    background-color: #3A5044 !important;
}

.silence h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: var(--green);
    margin-bottom: 12px;
}

.silence p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #5a5a56;
}

.silence__slider {
    /* overflow: hidden; */
    z-index: 1;
    position: relative;
}

.silence__slider .swiper-wrapper {
    align-items: flex-end;
}

.silence__slider .swiper-slide {
    width: 32.78% !important;
}

.silence__slider .swiper-slide-next {
    width: 66.39% !important;
}

.silence__slider .swiper-slide-next .silence__item {
    position: relative;
}

.silence__slider .swiper-slide-next .silence__item>img {
    min-height: 524px;
}

.silence__slider .swiper-slide-next span>img {
    position: absolute;
}

.silence__item {
    position: relative;
}

.silence__item span {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 32px;
    height: 32px;
    border-radius: 100%;
    z-index: 1;
}

.silence__item img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 246px;
    border-radius: 24px;
}

.swiper-slide:not(.swiper-slide-next) .silence__item::after {
    content: '';
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 24px;
}

.about-company {
    padding: 62px 0;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    flex-direction: column;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
    position: relative;
}

.about-wrapper img {
    margin-top: 19.5px;
}

.about-wrapper a {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: auto;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--green);
    padding: 16px 106px;
}

.about-content {
    text-align: center;
    max-width: 912px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-content h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0.01em;
    text-align: center;
    color: var(--green);
    margin-bottom: 8px;
}

.about-content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 148%;
    letter-spacing: 0.01em;
    text-align: center;
    color: #5a5a56;
}

.trust-us {
    padding: 62px 0;
    overflow: hidden;
}

.trust-us__header {
    width: 473px;
    margin-left: auto;
    padding-bottom: 24px;
}

.trust-us__header h2 {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: var(--green);
}

.trust-us__header p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #5a5a56;
}

.trust-us__items {
    display: grid;
    grid-template-columns: repeat(5, minmax(239.33px, 1fr));
    gap: 12px;
    overflow: auto;
    padding-top: 24px;
}

.trust-us__item {
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 370px;
}

.trust-us__item img {
    border-radius: 17px;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.trust-us__item::after {
    content: '';
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.24) 100%);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    pointer-events: none;
}

.trust-us__item button {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-us__item button::before {
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    z-index: 1;
}

.trust-us__item button::after {
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='19' height='22' viewBox='0 0 19 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.1417 9.28501C18.4364 10.0618 18.4364 11.9382 17.1417 12.715L3.02899 21.1826C1.69594 21.9824 9.44727e-07 21.0222 1.01268e-06 19.4676L1.75294e-06 2.53238C1.8209e-06 0.977791 1.69594 0.0175643 3.02899 0.817394L17.1417 9.28501Z' fill='white'/%3E%3C/svg%3E");
    background-position: 58% center;
    background-repeat: no-repeat;
    z-index: 2;
}

.trust-us__item button svg {
    position: relative;
    z-index: 3;
    width: 24px;
    height: 24px;
    fill: white;
}

.trust-us__item button svg path {
    fill: white;
}

.video-error-message {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.trust-us__item video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.trust-us__item__content {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 16px;
    color: var(--white);
}

.trust-us__item__content h3 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 19px;
    line-height: 130%;
    color: var(--white);
    margin-bottom: 6px;
}

.trust-us__item__content p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--white);
}

.projects {
    padding: 62px 0;
    overflow: hidden;
}

.project-wrapper {
    display: flex;
    gap: 12px;
}

.contact {
    padding: 62px 0;
    overflow: hidden;
}

.header__burger {
    display: none;
}

.table {
    display: none !important;
}

.mobile {
    display: none !important;
}

.desktop {
    display: flex !important;
}

.footer {
    background-color: var(--black);
    background-image: url('../images/footer-background.svg');
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 64px 0 16px;
    color: var(--white);
    overflow: hidden;
}

.footer__top {
    display: flex;
    gap: 40.33px;
}

.footer__logo {
    display: flex;
    align-items: flex-start;
    flex: 1 0 auto;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

.space {
    height: inherit;
    width: 1px;
    background-color: #ebecf0;
    opacity: .12;
}

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

.footer_right {
    display: flex;
}

.footer__social a {
    display: flex;
    width: 40px;
    height: 40px;
}

.footer__nav ul {
    display: flex;
    gap: 16px 24px;
    list-style: none;
}

.footer__nav ul li a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 148%;
    letter-spacing: 0.01em;
    text-decoration: none;
    color: var(--white);
}

.footer__nav p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #787874;
}

.footer__contact-info {
    flex: 1 0 auto;
}

.footer__contact-info p {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--white);
    display: flex;
    gap: 12px;
}

.footer__phone {
    display: inline-block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: var(--white);
    text-decoration: none;
    margin: 16px 0;
}

.footer__action {
    display: flex;
    gap: 16px;
}

.footer__bottom {
    margin-top: 40px;
    border-top: 1px solid #ebecf01f;
    padding-top: 16px;
}

.footer__copy a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #787874;
    text-decoration: none;
}

.footer__button {
    height: 56px;
    padding: 16px 36.75px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.01em;
    line-height: 20px;
}

.cookie-popup {
    position: fixed;
    bottom: 32px;
    left: 0;
    right: 0;
    margin: auto;
    max-width: 1112px;
    z-index: 9;
    border-radius: 16px;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.04), 0 18px 18px 0 rgba(0, 0, 0, 0.03), 0 39px 24px 0 rgba(0, 0, 0, 0.02), 0 70px 28px 0 rgba(0, 0, 0, 0.01), 0 110px 31px 0 rgba(0, 0, 0, 0);
    background: var(--white);
}

.cookie-popup .cookie-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
}

.cookie-popup p a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--green);
}

.cookie-popup a.btn {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--white);
    padding: 16px 134.5px;
}

.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.8);
}

.popup.active {
    display: flex;
}

.popup .popup-box {
    background: var(--white);
    border-radius: 20px;
    position: relative;
}

.popup .popup-box .close-popup {
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 5L5 15M5 5L15 15" stroke="%23282824" stroke-linecap="round" stroke-linejoin="round" /></svg>');
    width: 20px;
    height: 20px;
    position: absolute;
    right: 16px;
    top: 16px;
    border: none;
    outline: none;
}

.popup-form-wrapper {
    display: flex;
}

.popup-form-wrapper img {
    height: 100%;
}

.popup-form-wrapper form {
    padding: 40px 40px 40px 32px;
}

.popup-form-wrapper h2 {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 80px;
    line-height: 148%;
    text-align: center;
    color: #5a5a56;
}

.popup-form-wrapper .form-row {
    max-width: 281px;
    margin: auto;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    text-align: center;
    color: var(--black);
}

.inputs-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 16px;
}

.popup-form-wrapper form input[type="text"],
.popup-form-wrapper form input[type="tel"],
.popup-form-wrapper form input[type="email"] {
    padding: 16px;
    backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(90, 90, 86, 0.12);
    border: none;
    border-radius: 8px;
    font-family: var(--font-family);
    font-weight: 400;
    border: 0;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #5a5a56;
}

.popup-form-wrapper form button[type="submit"] {
    cursor: pointer;
    width: 100%;
    margin-bottom: 8px;
    line-height: 1;
}

.popup-form-wrapper form input::placeholder {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #5a5a56;
}

.popup-form-wrapper form select {
    border-radius: 8px;
    padding: 16px;
    background: var(--beige);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--green);
    appearance: none;
    border: none;
    background-image: url('../images/chevron-down.svg');
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: calc(100% - 16px) center;
}

.popup-form-wrapper form .accept {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    line-height: 148%;
    letter-spacing: 0.01em;
    text-align: left;
    color: #5a5a56;
}

.popup-form-wrapper form .accept a {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--green);
}

.mobile-menu {
    position: fixed;
    right: 0;
    top: 74px;
    height: 100%;
    background: #fff;
    z-index: 9;
    display: none;
    padding: 24px 21px;
    width: calc(100vw - ((100vw - 736px) / 2 + 463px));
}

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

.mobile-menu ul {
    flex-direction: column;
}

.mobile-menu .header__menu a {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: var(--black);
}

#success .popup-box {
    max-width: 451px;
    text-align: center;
    padding: 40px 40px 35px;
}

#success h2 {
    font-family: var(--third-family);
    font-weight: 400;
    font-size: 80px;
    line-height: 148%;
    letter-spacing: 0.01em;
    color: #5a5a56;
}

#success p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 148%;
    letter-spacing: 0.01em;
    text-align: center;
    color: var(--black);
}

.contact__map {
    border-radius: 20px;
    overflow: hidden;
}

.my-button-prev,
.my-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #fff;
    border: 1px solid var(--green);
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M7.6001%2014.7997L12.4001%209.99971L7.6001%205.19971%22%20stroke%3D%22%233A5044%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20/%3E%3C/svg%3E');
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100%;
    cursor: pointer;
}

.my-button-prev:hover,
.my-button-next:hover {
    background-color: var(--green);
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%2212%22%20viewBox%3D%220%200%208%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M6.3999%2010.7997L1.5999%205.99971L6.3999%201.19971%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20/%3E%3C/svg%3E');
    transform: rotate(180deg) !important;
}

.my-button-prev {
    transform: rotate(180deg);
}

.my-button-prev:hover {
    transform: unset !important;
}

.my-button-next {
    margin-left: auto;
}

.infrastructure__item .infrastructure__content.anim_start::before {
    animation: opacity 1s forwards ease-in-out 1s;
}

.infrastructure__item.anim_start::after {
    animation: smoothExpand 1s forwards ease-in-out;
}

.infrastructure__item.anim_start::before {
    animation: smoothExpand 1s forwards ease-in-out;
}

@keyframes opacity {
    to {
        opacity: 100%;
    }
}

@keyframes smoothExpand {
    0% {
        clip-path: polygon(48% 0%, 52% 0%, 52% 48%, 100% 48%, 100% 52%, 52% 52%, 52% 100%, 48% 100%, 48% 52%, 0% 52%, 0% 48%, 48% 48%);
    }

    25% {
        clip-path: polygon(42% 0%, 58% 0%, 58% 42%, 100% 42%, 100% 58%, 58% 58%, 58% 100%, 42% 100%, 42% 58%, 0% 58%, 0% 42%, 42% 42%);
    }

    50% {
        clip-path: polygon(32% 0%, 68% 0%, 68% 32%, 100% 32%, 100% 68%, 68% 68%, 68% 100%, 32% 100%, 32% 68%, 0% 68%, 0% 32%, 32% 32%);
    }

    75% {
        clip-path: polygon(8% 0%, 92% 0%, 92% 8%, 100% 8%, 100% 92%, 92% 92%, 92% 100%, 8% 100%, 8% 92%, 0% 92%, 0% 8%, 8% 8%);
    }

    100% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%, 0% 100%, 0% 100%, 0% 100%, 0% 0%, 0% 0%);
    }
}


.project-slider .swiper-slide .project__item {
    height: 100%;
}

@media (min-width: 768px) {

    .infrastructure__wrapper {
        padding-left: 30px;
    }

    .infrastructure__header::before {
        top: -124px;
        height: calc(100% + 486px);
    }

    .infrastructure__item {
        order: 2;
    }

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

    .infrastructure__item:nth-child(2) .infrastructure__content:first-child::before {
        right: -23px;
        left: unset;
    }

    .infrastructure__item:nth-child(1) {
        order: 1;
        justify-content: flex-start;
        padding-left: 35px;
    }

    .infrastructure__item:nth-child(1) .infrastructure__content:first-child::before {
        left: -21px;
        right: unset;
    }

    .infrastructure__item:nth-child(1) .infrastructure__content:first-child::after {
        display: none;
    }

    .infrastructure__item:nth-child(4) {
        padding-left: 35px;
    }

    .infrastructure__item:nth-child(3) {
        justify-content: flex-end;
    }

    .infrastructure__item:nth-child(3) .infrastructure__content:first-child::before {
        right: unset;
        left: -383px;
    }

    .infrastructure__item:nth-child(3) .infrastructure__content:first-child::after {
        display: none;
    }

    .infrastructure__item:nth-child(even) .infrastructure__content:first-child::before {
        left: -21px;
    }

    .infrastructure__item:nth-child(even) .infrastructure__content:first-child::after {
        left: -17px;
        top: -302px;
        height: calc(100% + 842px);
    }

    .infrastructure__item:nth-child(4)::before {
        left: -730px;
        width: calc(100% + 732px);
    }
}

@media (min-width: 768px) and (max-width: 1439px) {
    .infrastructure__item:nth-child(3) .infrastructure__content:first-child::before {
        left: -178px;
    }

    .infrastructure__item:nth-child(even) .infrastructure__content:first-child::after {
        height: calc(100% + 636px);
    }
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1439px) {
    .desktop {
        display: none !important;
    }

    .table {
        display: flex !important;
    }

    .btn {
        font-size: 16px;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .space {
        display: none;
    }

    .container {
        max-width: 736px;
    }

    .conditions,
    .presentation,
    .why-choose-us,
    .ways2buy,
    .promo,
    .infrastructure,
    .silence,
    .about-company,
    .trust-us,
    .projects,
    .contact,
    .about-project {
        padding: 32px 0;
    }

    .header {
        height: 74px;
    }

    .header__nav {
        display: none;
    }

    .header__phone {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 16px;
        line-height: 148%;
        letter-spacing: 0.01em;
        text-decoration: underline;
        text-decoration-skip-ink: none;
        text-align: right;
        color: var(--white);
    }

    .header__contact p {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 12px;
        line-height: 148%;
        letter-spacing: 0.01em;
        text-align: right;
        color: var(--white);
    }

    .header__button {
        height: 42px;
        padding: 12px 24px;
        line-height: 1;
    }

    .header__inner {
        gap: 0;
    }

    .header__callback {
        display: flex;
        align-items: center;
        height: 74px;
        padding: 0 20px;
        border-right: 1px solid rgba(255, 255, 255, 0.4);
    }

    .header__contact {
        padding: 0 20px;
        height: 74px;
    }

    .header__burger {
        display: flex;
        background: var(--white);
        border: 1px solid #edeef1;
        border-radius: 37px;
        padding: 8px;
        margin-left: 20px;
    }

    .header__burger.open {
        background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 5L5 15M5 5L15 15" stroke="%233A5044" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /></svg>');
        background-position: center;
        background-repeat: no-repeat;
        min-width: 38px;
        min-height: 38px;
    }

    .header__burger.open svg {
        display: none;
    }

    section.banner {
        height: 512px;
        background-position: center;
        background-size: 768px;
        max-width: 768px;
        margin-bottom: 32px;
    }

    .banner__title {
        font-family: var(--third-family);
        font-weight: 400;
        font-size: 134px;
        background: linear-gradient(180deg, #fff 63.99%, #e9e9e9 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .banner__image {
        height: 512px;
    }

    .promo-slide {
        max-width: 233px;
        justify-content: center;
    }

    .promo-slide img {
        width: 97px;
        height: 106px;
    }

    .promo-slide__title {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 14px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--green);
    }

    .promo-slide__desc {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 12px;
        line-height: 140%;
        letter-spacing: 0.01em;
        color: var(--black);
    }

    .banner_promo {
        max-width: 233px;
    }

    .banner__content {
        bottom: 32px;
    }

    .banner__content .btn {
        padding: 12px 64px;
        height: 45px;
        line-height: 1.5;
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 14px;
        letter-spacing: 0.01em;
        color: var(--green);
    }

    .banner_text {
        max-width: 232px;
    }

    .banner_text ul li {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 12px;
        line-height: 140%;
        letter-spacing: 0.01em;
        color: var(--white);
        border-radius: 12px;
        padding: 12px;
        height: 58px;
        padding-right: 45px;
        align-items: flex-start;
    }

    .banner_text ul li span {
        min-width: 24px;
        width: 24px;
        height: 24px;
        padding: 6px;
    }

    .about-project__accordion h3 {
        padding: 23px 0;
    }

    .about-project__accordion h3 .accordion-header {
        font-family: var(--second-family);
        font-weight: 400;
        font-size: 20px;
        line-height: 130%;
        text-align: center;
        color: var(--green);
        width: calc(57% - 0px);
    }

    .about-project__content h2 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--green);
    }

    .about-project__content p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 148%;
        letter-spacing: 0.01em;
        color: var(--black);
    }

    .about-project__content {
        width: calc(57% - 0px);
    }

    .accordion-content-img {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: flex-end;
        flex-basis: calc(100% - calc(57% - -24px));
    }

    .about-project__img img {
        max-width: 74px;
        height: auto;
    }

    .accordion-content-text {
        width: calc(57% - 0px);
    }

    .conditions__item {
        height: 291px;
    }

    .conditions__item h3 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 18px;
        line-height: 120%;
        color: var(--white);
    }

    .conditions__item p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 148%;
        letter-spacing: 0.01em;
        color: var(--white);
        white-space: normal;
    }

    .conditions__items {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(240px, 1fr);
        overflow: visible;
        white-space: nowrap;
        gap: 8px;
        justify-content: flex-start;
    }

    .conditions__item {
        padding: 13px 17px;
    }

    .conditions h2 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--green);
    }

    .presentation-wrapper {
        display: flex;
        flex-direction: column;
    }

    .presentation-wrapper img {
        height: 288px;
        object-fit: cover;
    }

    .about-project {
        flex-direction: column;
        gap: 30px;
    }

    .about-project__images {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .about-project__images img {
        width: 120px;
    }

    .why-choose-us h2 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--green);
    }

    .promo h2 {
        font-family: var(--third-family);
        font-weight: 400;
        font-size: 82px;
        color: var(--green);
    }

    .ways2buy__wrapper>img {
        max-width: 292px;
    }

    .ways2buy__wrapper h2,
    .ways2buy__content .h2 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--green);
    }

    .ways2buy__item {
        padding: 24px 0;
    }

    .ways2buy__item h3 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 20px;
        line-height: 130%;
        text-align: center;
        color: var(--black);
    }

    .ways2buy__item p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 148%;
        letter-spacing: 0.01em;
        color: #5a5a56;
    }

    .ways2buy__content a {
        margin-top: 24px;
        height: 56px;
    }

    .promo__content h3 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--white);
    }

    .promo__content p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 130%;
        color: var(--white);
    }

    .infrastructure__wrapper {
        width: 50%;
    }

    .infrastructure__header {
        max-width: 287px;
        position: relative;
    }

    .infrastructure__header h2 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--green);
        margin-bottom: 12px;
    }

    .infrastructure__header p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 148%;
        letter-spacing: 0.01em;
        color: #5a5a56;
    }

    .infrastructure__item:first-child .infrastructure__content img,
    .infrastructure__item:nth-child(3) .infrastructure__content img {
        max-width: 204px;
    }

    .infrastructure__item p {
        font-family: var(--second-family);
        font-weight: 400;
        font-size: 18px;
        line-height: 130%;
        color: var(--black);
    }

    .silence h2 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--green);
    }

    .silence p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 148%;
        letter-spacing: 0.01em;
        color: #5a5a56;
    }

    .silence__content {
        width: 36.414% !important;
    }

    .silence__slider .swiper-slide {
        width: 27.99% !important
    }

    .silence__slider .swiper-wrapper:first-child {
        padding-left: 7.99%;
    }

    .silence__slider .swiper-slide-next {
        width: calc(100% - calc(36.414% + 6px)) !important;
    }

    .silence__item img {
        max-height: 144px;
    }

    .silence__slider .swiper-slide-next .silence__item>img {
        min-height: 353px;
    }

    .about-content h2 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.01em;
        text-align: center;
        color: var(--green);
    }

    .about-content p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 148%;
        letter-spacing: 0.01em;
        text-align: center;
        color: #5a5a56;
    }

    .about-wrapper a {
        font-family: var(--font-family);
        font-weight: 600;
        font-size: 16px;
        line-height: 148%;
        letter-spacing: 0.01em;
        color: var(--green);
        padding: 12px 32px;
        height: auto;
    }

    .trust-us__items {
        gap: 9px;
    }

    .trust-us__header h2 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--green);
    }

    .trust-us__header p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 148%;
        letter-spacing: 0.01em;
        color: #5a5a56;
    }

    .trust-us__item__content h3 {
        font-family: var(--second-family);
        font-weight: 400;
        font-size: 16px;
        line-height: 130%;
        color: var(--white);
    }

    .trust-us__item__content p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 12px;
        line-height: 148%;
        letter-spacing: 0.01em;
        color: var(--white);
    }

    .project-sidebar {
        width: 42.935%;
    }

    .project__header h2 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--green);
    }

    .project__header p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 148%;
        letter-spacing: 0.01em;
        color: #5a5a56;
    }

    .project-item-content {
        padding: 16px;
    }

    .project-item__header {
        flex-wrap: wrap;
        gap: 16px;
    }

    .project-item__header span {
        font-family: var(--second-family);
        font-weight: 400;
        font-size: 20px;
        line-height: 130%;
        text-align: center;
        color: var(--green);
        padding: 12px 50.5px;
    }

    .project-item__header p {
        font-family: var(--font-family);
        font-weight: 600;
        font-size: 16px;
        line-height: 130%;
        text-align: center;
        color: var(--green);
    }

    .project-item__header p::before {
        display: none;
    }

    .project-item-content .btn {
        height: auto;
    }

    .project-item__tags span {
        font-family: var(--font-family);
        font-weight: 600;
        font-size: 16px;
        line-height: 148%;
        letter-spacing: 0.01em;
        text-align: center;
        color: var(--green);
    }

    .project-slider {
        width: 49.73%;
    }

    .next-slide-title {
        width: 168px;
        height: 168px;
        padding: 87px 0px !important;
        font-family: var(--second-family);
        font-weight: 400;
        font-size: 20px;
        line-height: 130%;
        text-align: center;
        color: var(--green);
        left: 45% !important;
    }

    .contact__info h2 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--green);
    }

    .footer_right {
        flex-direction: column;
    }

    .footer__top {
        gap: 56px;
    }

    .footer__nav ul {
        flex-wrap: wrap;
    }

    .footer__copy {
        text-align: center;
    }

    .horizontal-space {
        background-color: #ebecf0;
        width: 100%;
        height: 1px;
        margin: 16px 0;
        opacity: 0.12;
    }

    .cookie-popup {
        max-width: 629px;
    }

    .cookie-popup .cookie-wrapper {
        flex-direction: column;
        padding: 16px;
        text-align: center;
        gap: 16px;
    }

    .cookie-popup .cookie-wrapper p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 148%;
        letter-spacing: 0.01em;
        text-align: center;
        color: var(--black);
    }

    .popup .popup-box,
    .popup-form-wrapper {
        max-width: 736px;
        width: 100%;
    }

    .form-sidebar {
        flex: 1 0 auto;
    }

    .popup-form-wrapper form {
        padding: 32px 32px 32px 24px;
        max-width: 407px;
        flex: 1 0 auto;
    }
}

@media (max-width: 767px) {

    .table {
        display: none !important;
    }

    .mobile {
        display: flex !important;
    }

    .container {
        max-width: 343px;
    }

    .mobile-menu {
        width: calc(100vw - ((100vw - 736px) / 2 + 303px));
    }

    .header__button {
        font-family: var(--font-family);
        font-weight: 600;
        font-size: 12px;
        line-height: 148%;
        letter-spacing: 0.01em;
        color: var(--white);
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }

    .banner__title {
        font-family: var(--third-family);
        font-weight: 400;
        font-size: 83px;
        background: linear-gradient(180deg, #fff 63.99%, #e9e9e9 100%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        bottom: 210px;
    }

    .banner_text {
        width: 100%;
        max-width: unset;
        margin-bottom: 16px;
    }

    .banner_text ul {
        flex-direction: row;
        gap: 8px;
    }

    .banner_text ul li {
        flex-direction: column;
        gap: 8px;
        padding: 8px;
        height: auto;
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 11px;
        line-height: 140%;
        letter-spacing: 0.01em;
        color: var(--white);
    }

    .promo-slider__mobile {
        padding: 0 !important;
    }

    .promo-slide {
        max-width: unset;
        border-radius: 12px;
        background: #f1f2f6;
        padding: 12px;
    }

    .promo-slide img {
        width: 170px;
        height: 119px;
    }

    .promo-slide__more {
        font-family: var(--font-family);
        font-weight: 500;
        font-size: 12px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--green);
    }

    .promo-slide__icon {
        width: 18px;
        height: 18px;
    }

    .header__callback {
        display: none;
    }

    .header__contact {
        border-left: 0;
    }

    .banner_wrapper {
        flex-direction: column-reverse;
        align-items: center;
    }

    .banner_promo {
        display: none;
    }

    .about-project__header {
        flex-direction: column-reverse;
    }

    .about-project__content {
        width: 100%;
        margin-bottom: 16px;
    }

    .about-project__content h2 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--green);
        margin-bottom: 12px;
    }

    .about-project__accordion h3 {
        padding: 24px 0;
    }

    .about-project__accordion h3 .number {
        margin-right: 8px;
        font-family: var(--second-family);
        font-weight: 400;
        font-size: 20px;
        line-height: 130%;
        text-align: center;
        color: var(--green);
    }

    .about-project__accordion h3 .accordion-header {
        width: 100%;
    }

    .ui-accordion-content {
        flex-direction: column-reverse;
    }

    .accordion-content-img {
        flex-basis: 100%;
    }

    .accordion-content-text {
        width: 100%;
    }

    .about-project__content p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 148%;
        letter-spacing: 0.01em;
        color: var(--black);
    }

    .about-project__img {
        gap: 8px;
    }

    .about-project__img img {
        max-width: 109px;
    }


    .ways2buy__wrapper {
        flex-direction: column;
    }

    .presentation-wrapper form {
        padding: 32px 12px 24px;
    }

    .presentation h2 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.01em;
        text-align: center;
        color: var(--white);
        margin-bottom: 4px;
    }

    .presentation p.title {
        font-family: var(--third-family);
        font-weight: 400;
        font-size: 24px;
        line-height: 148%;
        letter-spacing: 0.01em;
        text-align: center;
        color: var(--white);
    }

    .infrastructure__wrapper {
        margin-left: 0;
    }

    .infrastructure__items {
        grid-template-columns: 1fr
    }

    .infrastructure__item {
        flex-direction: column;
    }

    .presentation form {
        gap: 8px;
    }

    .presentation form .form_actions {
        flex-direction: column;
        margin-top: 8px;
    }

    .presentation form .form_actions a {
        font-family: var(--font-family);
        font-weight: 600;
        font-size: 16px;
        line-height: 148%;
        letter-spacing: 0.01em;
        color: var(--white);
        width: 100%;
        text-align: center;
    }

    .why-choose-us--header {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .why-choose-us h2 {
        margin-left: unset;
    }

    .why-choose-us__items {
        padding: 0;
    }

    .why-choose-us__item h3 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 20px;
        line-height: 130%;
        color: var(--green);
    }

    .why-choose-us__item p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 148%;
        letter-spacing: 0.01em;
        color: #5a5a56;
    }

    .why-choose-us__item {
        padding: 23.5px 20px;
        max-width: 258px;
    }

    .why-choose-us__item img {
        min-width: unset;
        margin-bottom: 12px;
    }

    .why-choose-us__item::before {
        box-shadow: 299px 0 0 0 var(--green), 0 286px 0 0 var(--green), 299px 286px 0 0 var(--green)
    }

    .ways2buy__wrapper>img {
        max-width: 100%;
        position: unset;
    }

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

    .ways2buy__content {
        width: 100%;
        padding: 0 16px;
    }

    .ways2buy__wrapper h2,
    .ways2buy__content .h2 {
        margin-bottom: 0;
    }

    .ways2buy__item {
        padding: 20px 0;
    }



    .infrastructure__item:first-child .infrastructure__content,
    .infrastructure__item:nth-child(2) .infrastructure__content {
        margin-top: 20px;
    }

    .infrastructure__item:first-child .infrastructure__content,
    .infrastructure__item:nth-child(2) .infrastructure__content {
        padding-top: 20px;
    }


    .infrastructure__header::before {
        display: none;
    }

    .infrastructure__item:nth-child(odd)::before {
        right: 0;
        width: 100%;
    }

    .infrastructure__item:nth-child(even) .infrastructure__content:first-child::after {
        content: '';
        position: absolute;
        width: 1px;
        top: 34px;
        right: 36px;
        left: unset;
        height: calc(100% + 352px);
        background-color: #ebecf0;
        /* background-color: #000; */
        display: block;
        z-index: -1;
    }

    .infrastructure__item:nth-child(odd) .infrastructure__content:first-child::after {
        top: -226px;
        right: 36px;
        z-index: -1;
    }

    .infrastructure__item .infrastructure__content::before {
        content: '';
        position: absolute;
        top: -4px;
        left: unset !important;
        right: 32px !important;
        width: 9px;
        height: 9px;
        background-color: var(--green);
        display: block;
        border-radius: 100%;
        z-index: 1;
        opacity: 0;
    }

    .infrastructure__item:nth-child(even)::before {
        left: 0;
        z-index: -1;
    }

    .infrastructure__item:has(.infrastructure__content + .infrastructure__content)::after {
        content: '';
        position: absolute;
        bottom: calc(50% - 27px);
        left: -12px;
        height: 1px;
        width: calc(100% + 12px);
        background-color: #ebecf0;
        /* background-color: #000; */
        display: block !important;
    }

    .infrastructure__item:first-child .infrastructure__content img,
    .infrastructure__item:nth-child(2) .infrastructure__content img,
    .infrastructure__item:nth-child(3) .infrastructure__content img,
    .infrastructure__item:nth-child(4) .infrastructure__content img {
        max-width: 239px;
    }

    /**/

    .promo h2 {
        font-family: var(--third-family);
        font-weight: 400;
        font-size: 40px;
        color: var(--green);
    }

    .promo__slide {
        height: 624px;
        background-position: center;
    }

    .promo__content {
        padding: 16px;
        text-align: center;
        bottom: 0;
        padding-bottom: 56px;
    }

    .promo__content p {
        padding: 0 50px;
    }

    .promo__content a {
        margin: auto;
    }

    .promo__slider .swiper-pagination {
        left: 0 !important;
        right: 0 !important;
        bottom: 24px !important;
        margin: auto;
        justify-content: center;
    }

    .infrastructure__wrapper {
        width: 100%;
    }

    .silence__content {
        position: relative;
        width: 100% !important;
        text-align: center;
        margin-bottom: 24px;
    }

    .silence {
        background: #f1f2f6;
        padding: 64px 0;
    }

    .infrastructure {
        padding: 32px 0 64px;
    }

    .silence__slider {
        padding-bottom: 32px;
    }

    .silence__slider .swiper-wrapper:first-child {
        padding: 0 !important;
    }

    .silence__slider .swiper-slide,
    .silence__slider .swiper-slide-next {
        width: 100% !important;
    }

    .swiper-slide:not(.swiper-slide-next) .silence__item::after {
        display: none;
    }

    .silence__slider .swiper-slide-next .silence__item>img,
    .silence__item img {
        min-height: 440px;
    }

    .about-wrapper {
        margin-left: -54px;
        width: calc(100% + 108px);
        padding: 0 54px;
        background-size: contain;
    }

    .about-content h2 {
        margin-bottom: 4px;
    }

    .about-wrapper img {
        margin-left: -16px;
        width: calc(100% + 32px);
        max-width: unset;
        object-fit: cover;
        height: 161px;
    }

    .about-wrapper a {
        bottom: 20px;
    }

    .trust-us {
        display: none;
    }

    .project-wrapper {
        flex-direction: column-reverse;
    }

    .project__header {
        text-align: center;
        margin-bottom: 24px;
    }

    .project-sidebar {
        width: 100%;
    }

    .project-slider {
        width: 100%;
        max-width: 327px;
    }

    .project-item__header {
        justify-content: center;
    }

    .project-item__header span {
        margin-right: 0;
    }

    .next-slide-title {
        width: 126px;
        height: 126px;
        padding: 0 !important;
        font-family: var(--second-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 130%;
        text-align: center;
        color: var(--green);
        left: 50% !important;
        transform: translate(50%, -50%) !important;
    }

    .contact__info {
        padding: 14px;
        top: unset;
        left: 12px;
        bottom: 12px;
        max-width: 319px;
    }

    .contact__info h2 {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 28px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--green);
    }

    .contact__info p {
        font-family: var(--font-family);
        font-weight: 600;
        font-size: 16px;
        line-height: 130%;
        color: var(--green);
    }

    #BX_YMAP {
        min-height: 689px;
    }

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

    .footer__logo {
        justify-content: center;
    }

    .space {
        display: block;
        height: 1px;
        width: 100%;
    }

    .footer__nav ul {
        justify-content: space-between;
    }

    .horizontal-space {
        margin: 24px 0;
    }

    .footer__phone {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 39px;
        line-height: 120%;
        letter-spacing: 0.01em;
        color: var(--white);
    }

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

    .footer__action {
        flex-direction: column;
    }

    .footer__action button {
        width: 100%;
    }

    .footer__bottom {
        margin-top: 24px;
    }

    .popup .popup-box {
        max-width: 343px;
    }

    .form-sidebar {
        display: none;
    }

    .popup-form-wrapper form {
        padding: 32px 12px;
        max-width: 100%;
    }

    .popup-form-wrapper h2 {
        font-family: var(--third-family);
        font-weight: 400;
        font-size: 64px;
        line-height: 148%;
        color: #5a5a56;
    }

    .popup-form-wrapper .form-row {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 148%;
        letter-spacing: 0.01em;
        text-align: center;
        color: var(--black);
    }

    .cookie-popup {
        bottom: 0;
    }

    .cookie-popup .cookie-wrapper {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .cookie-popup .cookie-wrapper p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 148%;
        letter-spacing: 0.01em;
        text-align: center;
        color: var(--black);
    }

    .mobile-menu {
        height: calc(100vh - 74px);
        background-image: url('../images/menu_background.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
    }

    #success .popup-box {
        max-width: 343px;
        padding: 32px 12px;
    }

    #success h2 {
        font-family: var(--third-family);
        font-weight: 400;
        font-size: 64px;
        line-height: 148%;
        letter-spacing: 0.01em;
        color: #5a5a56;
    }

    #success p {
        font-family: var(--font-family);
        font-weight: 400;
        font-size: 14px;
        line-height: 148%;
        letter-spacing: 0.01em;
        text-align: center;
        color: var(--black);
    }
}

.policy {
    margin: 20% 0 5% 0;
}

/* Стили для индикатора загрузки карты */
.map-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--beige);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.map-loading__spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--green);
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: map-spin 1s linear infinite;
    margin-bottom: 15px;
}

.map-loading p {
    color: var(--green);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

@keyframes map-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Адаптивные стили для индикатора загрузки карты */
@media (max-width: 768px) {
    .map-loading p {
        font-size: 14px;
    }

    .map-loading__spinner {
        width: 30px;
        height: 30px;
        border-width: 3px;
    }
}