* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('/fonts/Rubik-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Manrope';
    color: #173E45;
    background: var(--brand-cream-100, #E6DECB);
}

a {
    text-decoration: none;
    color: #EDEFF2;

}

ul {
    list-style-type: none;
}

.container {
    max-width: 1440px;
    width: 100%;
    padding: 0 36px;
    margin: 0 auto;
}

.block {
    padding-top: 80px;
}

.title {
    color: var(--brand-green-700, #173E45);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 48px */
    letter-spacing: 0.96px;
    text-transform: uppercase;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding-top: 12px;
}

.header__container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__top.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.header__address {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header__address address {
    color: var(--brand-cream-100, #E6DECB);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 16px */
}

.header__phone {
    color: var(--brand-brown-200, #DCC8B4);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 16px */
}

.header__top.color .header__phone,
.header__top.color .header__address address {
    color: #173E45;
}

.header__top.color svg path {
    fill: #173E45;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px 8px 12px;
    border-radius: 12px;
    background: #E6DECB;
    box-shadow: 0 2px 4px 0 rgba(23, 62, 69, 0.05), 0 8px 12px 0 rgba(23, 62, 69, 0.15);
    transition: all 0.3s;
}

.header__content.translate {
    margin-top: -40px;
}

.header__logo img {
    width: 130px;
}

.header__lists {
    display: flex;
    gap: 20px;
}

.header__li a {
    color: var(--brand-green-700, #173E45);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    transition: all 0.3s;
}

.header__li a:hover {
    color: #436369;
}

.header__info {
    display: flex;
    gap: 8px;
}

.header__icon {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--brand-green-700, #173E45);
    transition: all 0.3s;
}

.header__icon svg path {
    transition: all 0.3s;
}

.header__icon:hover {
    border-color: #436369;
}

.header__icon:hover svg path {
    fill: #436369;
}

.btn {
    padding: 20px 28px;
    color: var(--brand-cream-100, #E6DECB);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    border-radius: 12px;
    background: var(--brand-green-700, #173E45);
    border: none;
    transition: all 0.3s;
    cursor: pointer;
    /* 16px */
}

.btn:hover {
    background: #436369;
}

.btn-2 {
    padding: 20px 28px;
    border-radius: 12px;
    border: 1px solid var(--brand-green-700, #173E45);
    color: var(--brand-green-700, #173E45);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    background: none;
    transition: all 0.3s;
    cursor: pointer;
    /* 18px */
}

.btn-2:hover {
    background: #173E45;
    color: #E6DECB;
}

.header__btn {
    padding: 14px 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    border-radius: 8px;
}

.hero {
    position: relative;
    height: 720px;
    padding: 36px 0;
}

.hero__image {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(23, 62, 69, 0.60) 0.4%, rgba(23, 62, 69, 0.20) 22.62%, rgba(23, 62, 69, 0.20) 50.01%, rgba(23, 62, 69, 0.60) 74.81%);
}

.hero__container {
    height: 100%;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero__titles {
    max-width: 900px;
}

.hero__title {
    color: var(--brand-cream-100, #E6DECB);
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 70px */
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.hero__sibtitle {
    margin-top: 16px;
    color: var(--brand-cream-100, #E6DECB);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    max-width: 600px;
    /* 28.6px */
}

.hero__subdescr {
    color: var(--brand-cream-100, #E6DECB);
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 35.2px */
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

.hero__btn {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 20px 24px;
    width: 360px;
    border-radius: 12px;
    background: var(--brand-cream-100, #E6DECB);
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s;
}

.hero__btn:hover {
    background: var(--brand-brown-200, #DCC8B4);
}

.hero__btn p {
    color: var(--brand-green-700, #173E45);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 18px */
}

.hero__btn-img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.present {
    padding-top: 80px;
    background: var(--brand-brown-200, #DCC8B4);
}

.present__lists {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.present__lists li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--brand-cream-100, #E6DECB);
}

.present__lists li svg {
    width: 24px;
    height: 24px;
}

.present__lists li p {
    color: var(--brand-green-700, #173E45);
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 28.6px */
}

.present__sliders {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.present__title {
    color: var(--brand-green-700, #173E45);
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 35.2px */
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

.slider-btns {
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--brand-green-400, #778D8B);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-btn:hover {
    border-color: #436369;
}

.present__swiper {
    overflow: hidden;
    margin-top: 20px;
}

.present__slide {
    height: 420px;
    cursor: grab;
    position: relative;
    padding: 20px 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.present__slide-name {
    position: relative;
    z-index: 3;
    color: var(--brand-cream-100, #E6DECB);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 24.2px */
    letter-spacing: 0.44px;
    text-transform: uppercase;
}

.present__slide-img {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.present__slide-img img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.present__slide-bg {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(236.21% 141.42% at 100% 0%, rgba(20, 23, 31, 0.00) 18.66%, rgba(20, 23, 31, 0.80) 84.75%);
}

.burger {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid var(--brand-green-700, #173E45);
    display: none;
    flex-shrink: 0;
}

@media(width < 1200px) {
    .container {
        padding: 0 24px;
    }

    .header__nav {
        display: none;
    }

    .header__address address,
    .header__phone {
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
    }

    .hero__wrapper {
        flex-direction: column;
    }

    .burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .burger_active {
        background: #173E45;
    }

    .burger span {
        display: block;
        height: 2px;
        width: 18px;
        background: #173E45;
        border: 100px;
        margin-bottom: 4px;
        transition: all 0.3s;
    }

    .burger span:last-child {
        margin-bottom: 0;
    }

    .burger_active span:nth-child(1) {
        margin: -1px;
        transform: rotate(45deg);
    }

    .burger_active span:nth-child(2) {
        display: none;
    }

    .burger_active span:nth-child(3) {
        margin: -1px;
        transform: rotate(-45deg);
    }

    .burger_active span {
        background: #E6DECB;
    }

    .hero__title {
        font-size: 46px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        /* 46px */
        letter-spacing: 0.92px;
        text-transform: uppercase;
    }

    .hero__sibtitle {
        margin-top: 8px;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
        /* 23.4px */
    }

    .hero__btns {
        margin-top: 32px;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .hero__subdescr {
        font-size: 26px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%;
        /* 28.6px */
    }

    .hero__btn {
        margin-top: 0;
    }

    .present {
        padding-top: 60px;
    }

    .present__lists {
        gap: 8px;
    }

    .present__lists li {
        padding: 4px 6px;
        gap: 6px;
    }

    .present__lists li p {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }

    .present__slide {
        height: 280px;
        padding: 20px 24px;
    }

    .present__title {
        font-size: 26px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%;
    }

    .present__slide-name {
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%;
    }
}

@media(width < 768px) {
    .container {
        padding: 0px 16px;
    }

    .header__icon,
    .header__btn,
    .header__top {
        display: none;
    }

    .hero {
        height: 660px;
        padding: 24px 0;
    }

    .hero__title {
        font-size: 26px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
    }

    .hero__sibtitle {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }

    .hero__btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__subdescr {
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%;
    }

    .hero__btn {
        width: 100%;
    }

    .present {
        padding-top: 24px;
    }

    .present__lists {
        gap: 12px;
    }

    .present__sliders {
        margin-top: 40px;
    }

    .present__slider-btns {
        display: none;
    }

    .present__slide {
        padding: 16px 20px;
    }
}

.promo__titles {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo__swiper {
    margin-top: 32px;
    overflow: hidden;
}

.promo__slide {
    padding: 60px 0;
    position: relative;
}

.promo__slide-container {
    position: relative;
    z-index: 3;
}

.promo__slide-name {
    color: var(--brand-green-700, #173E45);
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 35.2px */
    letter-spacing: 0.64px;
    text-transform: uppercase;
}

.promo__slide-descr {
    margin-top: 8px;
    color: var(--brand-green-700, #173E45);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 28.6px */
}

.promo__slide-btns {
    margin-top: 32px;
    display: flex;
    gap: 12px;
}

.promo__btn {
    display: flex;
    align-items: center;
    gap: 4px;

}

.promo__image {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(width < 1200px) {
    .block {
        padding-top: 60px;
    }

    .title {
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        /* 36px */
        letter-spacing: 0.72px;
    }

    .promo__slide {
        padding: 40px 0;
    }

    .promo__slide-name {
        font-size: 26px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%;
        /* 28.6px */
        letter-spacing: 0.52px;
    }

    .promo__slide-descr {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }
}

@media(width < 768px) {
    .block {
        padding-top: 48px;
    }

    .title {
        font-size: 23px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        /* 24px */
        letter-spacing: 0.48px;
    }

    .promo__swiper {
        margin-top: 24px;
    }

    .promo__slide {
        height: 670px;
    }

    .promo__slide-btns {
        flex-direction: column;
    }

    .promo__btn {
        justify-content: center;
    }
}

.description {
    padding-bottom: 32px;
}

.description__wrapper {
    display: flex;
    gap: 20px;
}

.description__titles {
    max-width: 555px;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.description__btn {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 4px;
}

.description__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.description__content p {
    color: var(--brand-green-700, #173E45);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 28.6px */
}

.gallery {
    overflow: hidden;
    height: 660px;
    position: relative;
}

.gallery-arrows {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.gallery__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.gallery-arrow {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--brand-brown-200, #DCC8B4);
}

.gallery-pagination {
    padding: 8px;
    position: absolute;
    z-index: 5;
    display: flex;
    justify-content: center;
    bottom: 40px !important;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(230, 222, 203, 0.20);
}

.swiper-pagination-bullet-active {
    background: #E6DECB;
}

.swiper-slide {
    position: relative;
    cursor: grab;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.gallery__bg {
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(23, 62, 69, 0.20) 0%, rgba(23, 62, 69, 0.60) 100%);
}

.gallery-swiper {
    height: 100%;
}

@media(width < 1200px) {
    .gallery {
        height: 500px;
    }

    .description__wrapper {
        flex-direction: column;
        gap: 32px;
    }
}

@media(width < 768px) {
    .description__btn {
        width: 100%;
        justify-content: center;
    }

    .description__content p {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }

    .gallery {
        height: 300px;
    }

    .gallery__container {
        padding: 0 24px;
    }

    .gallery-pagination {
        bottom: 20px !important;
    }
}

.next {
    padding: 60px 0;
    background: #173E45;
}

.next__wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.next__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.next__text p {
    color: var(--brand-cream-100, #E6DECB);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 28.6px */
}

.next__btn {
    width: 300px;
    height: 215px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    background: var(--brand-cream-100, #E6DECB);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--brand-green-700, #173E45);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 18px */
}

.next__btn:hover {
    background: #C4A382;
}

@media(width < 1200px) {
    .next__wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .next__btn {
        width: 300px;
        height: auto;
        padding: 20px 28px;
    }
}

@media(width < 768px) {
    .next {
        padding: 48px 0;
    }

    .next__text p {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }

    .next__wrapper {
        gap: 32px;
    }

    .next__btn {
        width: 100%;
    }
}

.feedback {
    background: #DCC8B4;
    position: relative;
}

.feedback__container {
    position: relative;
}

.feedback__image {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    object-fit: cover;
}

.feedback__imag-2 {
    display: none;
}

.feedback__wrapper {
    position: relative;
    padding: 80px 36px 80px 0;
    background: var(--brand-brown-200, #DCC8B4);
    max-width: 519px;
}

.feedback__title {
    color: var(--brand-green-700, #173E45);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.72px;
    text-transform: uppercase;
}

.feedback__subtitle {
    margin-top: 12px;
    margin-bottom: 32px;
    color: var(--brand-green-700, #173E45);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 20.8px */
}

.inputs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input {
    padding: 21px 24px;
    border-radius: 12px;
    border: 1px solid var(--brand-green-400, #778D8B);
    outline: none;
    background: none;
    color: var(--brand-green-600, #436369);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 18px */
}

.input::placeholder {
    color: var(--brand-green-600, #436369);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
}

.policy {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.policy-str {
    color: var(--brand-green-400, #778D8B);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 15.6px */
}

.policy-str a {
    color: #173E45;
}

.checkbox-label {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid var(--brand-green-400, #778D8B);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox-label::before {
    content: '';
    display: block;
    width: 5px;
    height: 10px;
    border-bottom: 1.5px solid rgba(23, 62, 69, 0);
    border-right: 1.5px solid rgba(23, 62, 69, 0);
    transform: rotate(45deg);
    margin-bottom: 2px;
}

#check-1:checked+.checkbox-label,
#check-2:checked+.checkbox-label,
#check-3:checked+.checkbox-label,
#check-4:checked+.checkbox-label,
#check-5:checked+.checkbox-label,
#check-6:checked+.checkbox-label {
    background: #436369;
}

#check-1:checked+.checkbox-label::before,
#check-2:checked+.checkbox-label::before,
#check-3:checked+.checkbox-label::before,
#check-4:checked+.checkbox-label::before,
#check-5:checked+.checkbox-label::before,
#check-6:checked+.checkbox-label::before {
    border-color: white;
}

.checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.form-btn {
    margin-top: 32px;
    display: flex;
    gap: 4px;
    align-items: center;
}

@media(width < 1200px) {
    .feedback {
        overflow: hidden;
    }

    .feedback__wrapper {
        padding: 60px 24px 60px 0;
        width: 416px;
    }

    .feedback__title {
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        /* 28px */
        letter-spacing: 0.56px;
    }

    .feedback__image {
        display: none;
    }

    .feedback__imag-2 {
        display: block;
        height: 100%;
        position: absolute;
        top: 0;
        left: 100%;
        object-fit: cover;
    }
}

@media(width < 768px) {
    .feedback__wrapper {
        padding: 48px 0;
        width: 100%;
    }

    .feedback__imag-2 {
        display: none;
    }

    .feedback__title {
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        /* 22px */
        letter-spacing: 0.44px;
    }

    .feedback__subtitle {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }

    .form-btn {
        width: 100%;
        justify-content: center;
    }
}

.comfort__swiper {
    overflow: hidden;
    margin-top: 32px;
}

.comfort__slide {
    height: 400px;
    position: relative;
    padding: 28px 36px;
}

.comfort__name {
    position: relative;
    z-index: 3;
    color: var(--brand-cream-100, #E6DECB);
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 28.6px */
    letter-spacing: 0.52px;
    text-transform: uppercase;
}

.comfort__descr {
    position: relative;
    z-index: 3;
    margin-top: 4px;
    color: var(--brand-cream-100, #E6DECB);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 20.8px */
}

.comfort__image {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 101%;
    height: 100%;
}

.comfort__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comfort__bg {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(79, 55, 38, 0.70) 27.61%, rgba(79, 55, 38, 0.00) 40.69%);
}

@media(width < 1200px) {
    .promo__title {
        max-width: 508px;
    }
}

@media(width < 768px) {
    .promo__slider-btns {
        display: none;
    }

    .comfort__name {
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%;
        /* 24.2px */
        letter-spacing: 0.44px;
    }

    .comfort__slide {
        height: 360px;
    }

    .comfort__image:nth-child(6) img {
        object-position: 50% 50%;
    }
}

.home {
    background: var(--brand-green-700, #173E45);
}

.home__title {
    color: #E6DECB;
}

.home__descr {
    margin-top: 32px;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home__descr p {
    color: var(--brand-cream-100, #E6DECB);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 28.6px */
}

.home__btns {
    margin-top: 32px;
    display: flex;
    gap: 12px;
}

.home__btn {
    padding: 20px 28px;
    border-radius: 12px;
    background: var(--brand-cream-100, #E6DECB);
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--brand-green-700, #173E45);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    transition: all 0.3s;
    /* 18px */
}

.home__btn:hover {
    background: #C4A382;
}

.home__btn-2 {
    padding: 20px 28px;
    border-radius: 12px;
    border: 1px solid var(--brand-cream-100, #E6DECB);
    cursor: pointer;
    background: none;
    color: var(--brand-cream-100, #E6DECB);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    transition: all 0.3s;
    /* 18px */
}

.home__btn-2:hover {
    background: #E6DECB;
    color: #173E45;
}

.block__genplane {
    margin-top: 60px;
    position: relative;
}

.block__image {
    height: 700px;
    width: 100%;
    position: relative;
}

.block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.block__bg {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--brand-green-700-50, rgba(23, 62, 69, 0.50));
}

.block__btn {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.block__swiper {
    overflow: hidden;
    position: relative;
}

.block__swiper-btns {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: 1296px;
    width: 100%;
    justify-content: space-between;
    z-index: 4;
}

.block__swiper-btns .slider-btn {
    border-color: #DCC8B4;
}

.block__slide {
    height: 600px;
    position: relative;
    padding: 24px 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.block__slide-name {
    position: relative;
    z-index: 3;
    color: var(--brand-cream-100, #E6DECB);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 24.2px */
    letter-spacing: 0.44px;
    text-transform: uppercase;
}

.block__slide-image {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.block__slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.block__slide-bg {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(9, 8, 4, 0.70) 9.45%, rgba(9, 8, 4, 0.30) 33.36%);
}

@media(width < 1200px) {
    .block__image {
        height: 500px;
    }

    .block__slide {
        height: 360px;
        padding: 24px;
    }

    .block__swiper-btns {
        max-width: 656px;
    }
}

@media(width < 768px) {
    .home__descr p {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }

    .home__btns {
        flex-direction: column;
    }

    .home__btn {
        justify-content: center;
    }

    .block__genplane {
        margin-top: 48px;
    }

    .block__image {
        height: 338px;
    }

    .block__btn {
        max-width: 343px;
    }

    .block__slide {
        height: 220px;
    }

    .block__swiper-btns {
        max-width: 88%;
    }

    .block__slide-name {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
        /* 23.4px */
        letter-spacing: 0.36px;
    }
}

.maps__map {
    margin-top: 32px;
    width: 100%;
    height: 400px;
}

.maps__map iframe {
    width: 100%;
    height: 100%;
}

.maps__items {
    display: flex;
    flex-wrap: wrap;
}

.maps__item {
    padding: 28px 36px;
    width: calc(100%/3);
    background: var(--brand-brown-200, #DCC8B4);
}

.maps__item-titles {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.maps__item-title {
    color: var(--brand-green-700, #173E45);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    /* 24.2px */
    letter-spacing: 0.44px;
    text-transform: uppercase;
}

.maps__item-tag {
    padding: 5px 8px;
    border-radius: 8px;
    background: var(--brand-green-700, #173E45);
    color: var(--brand-cream-100, #E6DECB);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    white-space: nowrap;
    height: fit-content;
    /* 15.6px */
}

.maps__item-descr {
    margin-top: 8px;
    color: var(--brand-green-700, #173E45);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 20.8px */
}

.maps__item_b {
    background: var(--brand-green-700, #173E45);
}

.maps__item_b .maps__item-title,
.maps__item_b .maps__item-descr {
    color: #E6DECB;
}

.maps__item_b .maps__item-tag {
    background: #E6DECB;
    color: #173E45;
}

.maps__item-down {
    display: block;
    margin-top: 8px;
    color: var(--brand-brown-500, #C4A382);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 16px */
}

@media(width < 1200px) {
    .maps__map {
        height: 340px;
    }

    .maps__item {
        width: 50%;
    }

    .maps__item:nth-child(1) {
        order: 1;
    }

    .maps__item:nth-child(2) {
        order: 2;
    }

    .maps__item:nth-child(4) {
        order: 3;
    }

    .maps__item:nth-child(3) {
        order: 4;
    }

    .maps__item:nth-child(5) {
        order: 5;
    }

    .maps__item:nth-child(6) {
        order: 6;
    }

    .maps__item {
        padding: 24px;
    }
}

@media(width < 768px) {
    .maps__items {
        flex-direction: column;
    }

    .maps__item {
        width: 100%;
        padding: 20px 16px;
    }

    .maps__item:nth-child(1) {
        order: 1;
    }

    .maps__item:nth-child(2) {
        order: 2;
    }

    .maps__item:nth-child(3) {
        order: 3;
    }

    .maps__item:nth-child(4) {
        order: 4;
    }

    .maps__item:nth-child(5) {
        order: 5;
    }

    .maps__item:nth-child(6) {
        order: 6;
    }

    .maps__item-title {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
        /* 23.4px */
        letter-spacing: 0.36px;
    }

    .maps__item-descr {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }
}

.suitable {
    overflow: hidden;
}

.suitable__wrapper {
    max-width: 684px;
    padding: 60px 36px 60px 0;
    position: relative;
}

.suitable__image {
    position: absolute;
    height: 100%;
    left: 100%;
    top: 0;
}

.suitable__lists {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.suitable__li {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--brand-green-700-20, rgba(23, 62, 69, 0.20));
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suitable__li:last-child {
    border: none;
}

.suitable__li-name {
    color: var(--brand-green-700, #173E45);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: 0.44px;
    text-transform: uppercase;
}

.suitable__li-descr {
    color: var(--brand-green-700, #173E45);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 20.8px */
}

.suitable__image-table {
    display: none;
}

@media(width < 1200px) {
    .suitable__image {
        display: none;
    }

    .suitable__wrapper {
        max-width: 100%;
        width: 100%;
        padding: 60px 0;
    }

    .suitable__image-table {
        display: block;
    }

    .suitable__image-table {
        width: 100%;
    }
}

@media(width < 768px) {
    .suitable__image-table {
        aspect-ratio: 375/300;
    }

    .suitable__lists{
        gap: 11px;
    }

    .suitable__wrapper {
        padding: 48px 0;
    }

    .suitable__li {
        gap: 4px;
        padding-bottom: 12px;
    }

    .suitable__li-name {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
        /* 23.4px */
        letter-spacing: 0.36px;
    }

    .suitable__li-descr {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }
}

.feedback-2 {
    padding: 60px 0;
    background: #DCC8B4;
}

.feedback-2__wrappper {
    display: flex;
    gap: 32px;
}

.feedback-2__item {
    width: 100%;
}

.feedback-2__title {
    color: var(--brand-green-700, #173E45);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 36px */
    letter-spacing: 0.72px;
    text-transform: uppercase;
}

.feedback-2__descr {
    margin-top: 20px;
    color: var(--brand-green-700, #173E45);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 20.8px */
}

.condition__subtitle {
    margin-top: 20px;
    color: var(--brand-green-700, #173E45);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 28.6px */
}

.condition__items {
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
}

.condition__item {
    width: 50%;
    padding: 32px 36px;
    background: var(--brand-brown-200, #DCC8B4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.condition__item_c {
    background: var(--brand-green-700, #173E45);
}

.condition__item p {
    color: var(--brand-green-700, #173E45);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 28.6px */
}

.condition__item_c p {
    color: var(--brand-cream-100, #E6DECB);
}

@media(width < 1200px) {
    .feedback-2__wrappper {
        flex-direction: column;
    }

    .inputs-wrapper {
        flex-direction: row;
        width: 100%;
    }

    .feedback .inputs-wrapper {
        flex-direction: column;
    }

    .feedback-2__item .input {
        width: 100%;
    }



    .condition__items {
        flex-direction: column;
    }

    .condition__item {
        width: 100%;
        padding: 32px 24px;
    }

    .condition__item:nth-child(1) {
        order: 1;
    }

    .condition__item:nth-child(2) {
        order: 2;
    }

    .condition__item:nth-child(3) {
        order: 4;
    }

    .condition__item:nth-child(4) {
        order: 3;
    }
}

@media(width < 768px) {
    .feedback-2 {
        padding: 48px 0;
    }

    .feedback-2__title {
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        /* 22px */
        letter-spacing: 0.44px;
    }

    .feedback-2__descr {
        margin-top: 12px;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }

    .inputs-wrapper {
        flex-direction: column;
    }

    .feedback-2__item .form-btn {
        margin-top: 20px;
    }

    .condition__subtitle {
        margin-top: 12px;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }

    .condition__item {
        padding: 24px 16px;
    }

    .condition__item svg {
        width: 24px;
        height: 24px;
    }

    .condition__item p {
        max-width: 295px;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }
}

.trust {
    padding-bottom: 32px;
}

.trust__wrapper {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

.trust__wrapper p {
    color: var(--brand-green-700, #173E45);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    width: 100%;
    /* 28.6px */
}

.adwantage {
    padding: 32px 0;
    background: #173E45;
}

.adwantage__wrapper {
    display: flex;
    gap: 20px;
}

.adwantage__title {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 36px */
    letter-spacing: 0.72px;
    color: #E6DECB;
    max-width: 674px;
    width: 100%;
    flex-shrink: 0;
}

.adwantage__lists {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.adwantage__li {
    color: var(--brand-cream-100, #E6DECB);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    margin-left: 14px;
    position: relative;
    /* 28.6px */
}

.adwantage__li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 100px;
    background: var(--brand-cream-100, #E6DECB);
    position: absolute;
    left: -14px;
    top: 11px;
}

@media(width < 1200px) {
    .trust__wrapper {
        flex-direction: column;
    }

    .adwantage__wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .adwantage__title {
        width: 100%;
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        /* 28px */
        letter-spacing: 0.56px;
    }
}

@media(width < 768px) {
    .trust__wrapper {
        gap: 12px;
    }

    .trust__wrapper p {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }

    .adwantage__li {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }
}

.footer {
    padding: 60px 0;
    background: var(--brand-green-700, #173E45);
}

.footer__title {
    color: var(--brand-cream-100, #E6DECB);
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 48px */
    letter-spacing: 0.96px;
    text-transform: uppercase;
}

.footer__content {
    margin-top: 32px;
    display: flex;
    gap: 80px;
}

.footer__content-wrapp {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer__content-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__content-str {
    color: var(--brand-cream-100, #E6DECB);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 20.8px */
}

.footer__content-string {
    color: var(--brand-cream-100, #E6DECB);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 28.6px */
}

.footer__content-link {
    color: var(--brand-brown-500, #C4A382);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    transition: all 0.3s;
}

.footer__content-link:hover {
    color: var(--brand-cream-100, #E6DECB);
}

.footer__content-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__content-phone {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__bottom {
    margin-top: 60px;
}

.footer__bottom-str {
    color: var(--brand-green-400, #778D8B);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 15.6px */
}

.footer__bottom-str_w {
    max-width: 600px;
}

.footer__bottom-info {
    display: flex;
    gap: 20px;
}

.footer__bottom-flex {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer__bottom-div {
    display: flex;
    gap: 8px;
    align-items: center;
}

@media(width < 1200px) {
    .footer {
        padding: 40px 0;
    }

    .footer__title {
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        /* 36px */
        letter-spacing: 0.72px;
    }

    .footer__content {
        flex-direction: column;
        gap: 32px;
    }

    .footer__bottom {
        margin-top: 40px;
    }

    .footer__bottom-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media(width < 768px) {
    .footer {
        padding: 32px 0;
    }

    .footer__title {
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        /* 24px */
        letter-spacing: 0.48px;
    }

    .footer__content-str {
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }

    .footer__content-string {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }

    .footer__content-link {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
    }
}

.scroll-block {
    position: fixed;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0;
    background: var(--brand-green-900-70, rgba(8, 39, 45, 0.70));
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal.active {
    z-index: 100;
    opacity: 1;
}

.modal__wrapper {
    max-width: 610px;
    width: 100%;
    position: relative;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--Base-White-white-900-15, rgba(237, 239, 242, 0.15));
    background: var(--brand-cream-100, #E6DECB);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.modal__titles {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.modal__title {
    color: var(--brand-green-700, #173E45);
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 28.6px */
}

.modal__close {
    line-height: 0;
    cursor: pointer;
}

.invalid {
    border-color: red;
}

.mobile-nav {
    display: none;
    transition: all 0.3s;
}

.mobile-nav__bottom {
    display: none;
}

.send-modal .form-btn {
    width: fit-content;
}

.send-modal .modal__wrapper {
    gap: 0;
}

.modal__descr {
    margin-top: 12px;
    color: var(--brand-green-700, #173E45);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    /* 23.4px */
}

@media(width < 1200px) {
    .mobile-nav {
        display: block;
        position: fixed;
        z-index: 97;
        width: 100%;
        height: 100vh;
        left: -120%;
        top: 0;
        background: #E6DECB;
        padding-top: 108px;
    }

    .mobile-nav_active {
        left: 0;
    }

    .mobile-nav .header__lists {
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
    }

    .mobile-nav .header__li a {
        font-size: 22px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%;
        /* 24.2px */
        letter-spacing: 0.44px;
        text-transform: uppercase;
    }
}

@media(width < 768px) {
    .mobile-nav {
        padding: 72px 16px 44px 16px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .mobile-nav__bottom {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-nav .header__lists {
        padding: 24px 0;
        gap: 20px;
    }

    .mobile-nav .header__li a {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
        /* 23.4px */
        letter-spacing: 0.36px;
    }

    .mobile-nav__wrapper {
        display: flex;
        gap: 8px;
    }

    .mobile-nav__wrapper .header__icon {
        display: flex;
        flex-shrink: 0;
    }

    .mobile-nav__wrapper .header__btn {
        display: block;
        height: fit-content;
        width: 100%;
    }

    .mobile-nav__bottom .header__phone,
    .mobile-nav__bottom .header__address address {
        color: #173E45;
    }

    .mobile-nav__bottom .header__phone {
        margin: 0 auto;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
        /* 23.4px */
        letter-spacing: 0.36px;
    }

    .mobile-nav__bottom .header__address address {
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        /* 16px */
    }

    .mobile-nav__bottom svg {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .mobile-nav__bottom svg path {
        fill: #173E45;
    }

    .modal {
        background: #E6DECB;
        align-items: flex-start;
    }

    .modal__wrapper {
        padding: 40px 16px;
    }

    .modal__title {
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
    }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1f1f1f;
  color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  z-index: 9999;
}

.cookie-banner a {
  color: #4da3ff;
  text-decoration: underline;
}

.cookie-btn {
  background: #4da3ff;
  border: none;
  color: #fff;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.cookie-btn:hover {
  background: #2f89e5;
}