/* --- BASE STYLES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 80px; /* Offset for the sticky header */
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #F2F5EA;
  color: #2C363F;
  overflow-x: hidden;
}

.page-wrapper {
    /* max-width: 1441px; */
    margin: 0 auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

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

ul {
    list-style: none;
}

.spacer {
    width: 100%;
}

/* --- HEADER --- */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(242, 245, 234, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid #2C363F;
    padding: 15px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background-color: rgb(242 245 234 / 60%);
    box-shadow: 0 4px 12px rgba(44, 54, 63, 0.1);
    border: 0;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.header__logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 2;
}

.header__nav {
    display: flex;
    gap: 39px;
    /* margin-left: -215px; */
}

.header__nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    transition: all 0.3s;
}

/* --- BUTTONS --- */
.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button--outline {
    width: 125px;
    height: 49px;
    border: 2px solid #2C363F;
    background-color: transparent;
    color: #2C363F;
}

.button--primary {
    background-color: #FCFD73;
    border: 2px solid #2C363F;
    color: #2C363F;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.1em;
    text-align: left;
}

.button--round {
    width: 150px;
    height: 150px;
    border-radius: 75px;
    background-color: #FCFD73;
    color: #2C363F;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.1em;
    text-align: center;
}

.button--dark {
    background-color: #2C363F;
    color: #F2F5EA;
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 2;
}

/* --- HERO SECTION --- */
.hero-section {
    height: calc(100vh - 130px);
    max-height: 675px;
    background-color: #F2F5EA;
    position: relative;
    overflow: hidden;
    margin: 30px 0 98px;
}

.hero-section__slider-track {
    display: flex;
    width: 200%; /* 2 slides */
    height: 100%;
    transition: transform 0.7s ease-in-out;
}

.hero-section__slide {
    width: 50%; /* 1 of 2 slides */
    height: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.hero-section__bg-image {
    position: absolute;
    top: 0; /* Adjusted from 127px */
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
}

.hero-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.hero-section__overlay > .container {
    pointer-events: auto;
}

.hero-section__content {
    /* position: absolute; */
    /* top: 157px; */ /* Adjusted from 223px */
    /* left: 187px; */
    /* height: 100%; */
    margin-left: 108px;
}

.hero-section .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-section__divider {
    width: 200px;
    height: 10px;
    background-color: #2C363F;
}

.hero-section__title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 33px;
}

.hero-section__title span, .hero-section__subtitle span {
    color: #F2F5EA;
}

.hero-section__subtitle {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 37px;
}

.hero-section__cta {
    /* width: 343px; */
    /* height: 96px; */
    padding: 18px 57px;
    margin-top: 37px;
    text-transform: uppercase;
}

.hero-section__nav {
    position: absolute;
    top: 412px; /* Adjusted from 478px */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 150px;
    z-index: 15;
    box-sizing: border-box;
}

.hero-section__nav-button {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background-color: #2C363F;
    border: 1.52px solid #F2F5EA;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.hero-section__nav-button:hover {
    transform: scale(1.05);
}

.hero-section__nav-button svg {
    display: block;
}

/* --- SERVICES SECTION --- */
.services-section {
    background-color: #2C363F;
    color: #F2F5EA;
    padding: 100px 0 101px;
}

.services-section__container {
    display: flex;
    gap: 154px; /* 624 - (120 + 350) */
    align-items: flex-start; /* Added for sticky positioning */
}

.services-section__left {
    width: 350px;
    flex-shrink: 0;
    padding-top: 50px; /* 150 - 100 */
    position: sticky; /* Added for sticky effect */
    top: 100px; /* Stick 100px from the top */
}

.services-section__divider {
    width: 200px;
    height: 10px;
    background-color: #F2F5EA;
}

.services-section__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.27;
    margin-top: 40px; /* 150 - 100 - 10 */
    text-transform: uppercase;
}

.services-section__left .button--round {
    margin-top: 40px; /* 182 - 142 */
    text-transform: uppercase;
}

.services-section__right {
    width: 696px;
    padding-top: 50px; /* 150 - 100 */
}

.service-card {
    width: 100%;
}

.service-card__header {
    display: flex;
    align-items: center;
    gap: 26px; /* 89 - 63 */
}

.service-card__number {
    font-size: 56px;
    font-weight: 800;
}

.service-card__title {
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
}

.service-card__description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    margin-top: 19px; /* 90 - 71 */
}

.service-card__image {
    width: 100%;
    height: 280px;
    border-radius: 10px;
    object-fit: cover;
    margin-top: 19px; /* 214 - 195 */
}

.services-section__additional-info {
    margin-top: 63px;
}

.services-section__additional-info h4 {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.5;
}

.services-section__additional-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    margin-top: 10px; /* 46 - 36 */
}

/* --- GALLERY SECTION --- */
.gallery-section {
    background-color: #F2F5EA;
    padding: 100px 0;
    overflow-x: clip; /* Changed to clip for better performance */
}

.gallery-section__divider {
    width: 100px;
    height: 8px;
    background-color: #2C363F;
}

.gallery-section__title {
    font-size: 56px;
    font-weight: 800;
    margin-top: 23px; /* 131 - 100 - 8 */
    text-transform: uppercase;
}

.gallery-section__description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    width: 931px;
    margin-top: 39px; /* 241 - 131 - 71 */
}

.gallery-section__note {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 23px; /* 314 - 241 - 50 */
}

.gallery-section__carousel {
    margin-top: 88px;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-section__carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-section__slide {
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: scale(0.7);
}

.gallery-section__image {
    width: 687px;
    height: 481px;
    object-fit: cover;
    /* border-radius: 10px; */
}

.gallery-section__slide--active {
    transform: scale(1) translateX(0);
    opacity: 1;
    z-index: 10;
}

.gallery-section__slide--prev {
    transform: scale(0.8) translateX(-140%);
    opacity: 1;
    z-index: 5;
}

.gallery-section__slide--next {
    transform: scale(0.8) translateX(140%);
    opacity: 1;
    z-index: 5;
}

.gallery-section__nav {
    display: flex;
    justify-content: center;
    gap: 27px;
    margin-top: 78px;
    position: relative;
    z-index: 20;
}

.gallery-section__nav-button {
    background: none;
    border: none;
    cursor: pointer;
}

/* --- ABOUT US SECTION --- */
.about-us-section {
    background-color: #F2F5EA;
    padding: 100px 0 113px;
}

.about-us-section__container {
    display: flex;
    justify-content: space-between;
    gap: 56px; /* 876 - (120 + 696) */
}

.about-us-section__content {
    width: 696px;
}

.about-us-section__divider {
    width: 100px;
    height: 8px;
    background-color: #2C363F;
}

.about-us-section__title {
    font-size: 56px;
    font-weight: 800;
    margin-top: 24px; /* 132 - 100 - 8 */
    text-transform: uppercase;
}

.about-us-section__intro {
    font-size: 20px;
    line-height: 2;
    letter-spacing: 0.01em;
    margin-top: 25px; /* 228 - 132 - 71 */
}

.about-us-section__body {
    font-size: 18px;
    line-height: 2.05;
    letter-spacing: 0.01em;
    margin-top: 48px; /* 112 - 80 */
}

.about-us-section__outro {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.01em;
    margin-top: 32px; /* 636 - 604 */
}

.about-us-section__image-wrapper {
    width: 418px;
    height: 581px;
    margin-top: 146px; /* 246 - 100 */
    flex-shrink: 0;
}

.about-us-section__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    background-color: #2C363F;
    color: #F2F5EA;
    padding: 100px 0 100px;
}

.testimonials-section__divider {
    width: 100px;
    height: 8px;
    background-color: #F2F5EA;
}

.testimonials-section__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.27;
    width: 668px;
    margin-top: 24px; /* 132 - 100 - 8 */
    text-transform: uppercase;
}

.testimonials-section__grid {
    position: relative;
    min-height: 1116px; /* Calculated from content */
    /* margin-top: 81px; */ /* 213 - 132 */
}

.review-card {
    position: absolute;
    animation-name: bobbing;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.review-card__quote {
    font-size: 320px;
    font-weight: 800;
    color: #FCFD73;
    position: absolute;
    z-index: 1;
    line-height: 1;
}

.review-card__content {
    position: relative;
    z-index: 2;
    background-color: #F2F5EA;
    color: #2C363F;
    border-radius: 10px;
    padding: 33px 21px;
}

.review-card__user {
    display: flex;
    align-items: center;
    gap: 22px;
}

.review-card__avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.review-card__name {
    font-size: 18px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.01em;
}

.review-card__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 20px; /* 108 - 88 */
}

.review-card__text--large {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
}

.review-card--1 {
    top: 0; /* 213 - 213 */
    left: 0; /* 120 - 120 */
    width: 467px;
    animation-duration: 4s;
    animation-delay: 0.2s;
}
.review-card--1 .review-card__quote {top: 25px;right: 0;z-index: 10;}
.review-card--1 .review-card__content {margin-top: 139px;min-height: 261px;}

.review-card--2 {
    top: -63px; /* 150 - 213 */
    left: 589px; /* 709 - 120 */
    width: 467px;
    animation-duration: 5s;
    animation-delay: 0s;
}
.review-card--2 .review-card__quote {top: 25px;right: 0;z-index: 10;}
.review-card--2 .review-card__content {margin-top: 139px;min-height: 208px;}

.review-card--3 {
    top: 424px; /* 637 - 213 */
    left: 0; /* 120 - 120 */
    width: 532px;
    animation-duration: 4.5s;
    animation-delay: 0.5s;
}
.review-card--3 .review-card__quote {top: 25px;right: 65px;z-index: 10;}
.review-card--3 .review-card__content {margin-top: 139px;min-height: 469px;width: 481px;}

.review-card--4 {
    top: 388px; /* 601 - 213 */
    left: 589px; /* 709 - 120 */
    width: 645px;
    min-height: 548px;
    background-color: #F2F5EA;
    border-radius: 10px;
    animation-duration: 5.5s;
    animation-delay: 0.3s;
}
.review-card--4 .review-card__quote {top: -115px;right: 0px;z-index: 10;}
.review-card--4 .review-card__content { background: none; padding: 33px 21px; }

.testimonials-section__cta {
    display: flex;
    width: 546px;
    height: 71px;
    margin: 0 auto;
    font-size: 24px;
    letter-spacing: 0.1em;
    line-height: 1.25;
    text-transform: uppercase;
}

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 78px 0 78px;
    background-color: #F2F5EA;
}

.contact-section__bg-image {
    /* height: 569px; */
    background: url('https://placehold.co/1362x569/cccccc/333333?text=Contact+BG') no-repeat center center;
    background-size: cover;
    border-radius: 10px;
    padding: 49px 82px;
    max-width: 1362px;
    margin: 0 auto;
}

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

.contact-section__info {
    min-width: 752px;
    max-width: 752px;
    color: #F2F5EA;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.5;
    /* margin-top: 171px; */ /* 220 - 49 */
}

.contact-section__form-wrapper {
    min-width: 413px;
    max-width: 413px;
    text-align: right;
}

.contact-section__title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.27;
    color: #F2F5EA;
    margin-bottom: 24px;
    text-align: right;
}

.contact-form {
    /* margin-top: 24px; */ /* 166 - 142 */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.contact-form__input {
    width: 413px;
    height: 44px;
    border-radius: 10px;
    border: none;
    background-color: #F2F5EA;
    padding: 4px 17px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    color: #706F6D;
}

.contact-form__input::placeholder {
    color: #706F6D;
}

.contact-form__input--textarea {
    height: 89px;
    resize: none;
}

.contact-form__submit {
    width: 192px;
    height: 48px;
    margin-top: 20px; /* 460 - (302+89) */
}

/* --- FOOTER --- */
.footer {
    background-color: #2C363F;
    color: #FFFFFF;
    padding: 44px 0;
}

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

.footer__socials {
    display: flex;
    align-items: center;
    gap: 13px;
}

.footer__social-link img {
    display: block;
}

.footer__link, .footer__copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
}

/* --- ANIMATIONS --- */
@keyframes bobbing {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* --- POPUP --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 54, 63, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.popup--hidden {
    opacity: 0;
    visibility: hidden;
}

.popup {
    width: 1184px;
    height: 694px;
    background-color: #F2F5EA;
    display: flex;
    align-items: center;
    position: relative;
}

.popup__close-btn {
    position: absolute;
    top: 30px;
    right: 39px; /* 1184 - 1115 - 30 */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.popup__image-wrapper {
    width: 592px;
    height: 421px;
    flex-shrink: 0;
}

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

.popup__content {
    width: 492px;
    margin-left: 7px; /* 599 - 592 */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.popup__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.25; /* 60px */
    color: #2C363F;
    width: 465px;
}

.popup__subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 2; /* 36px */
    letter-spacing: 0.01em;
    color: #000000;
    margin-top: 22px; /* 142 - 120 */
}

.popup__note {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5; /* 21px */
    color: #000000;
    margin-top: 22px; /* 200 - 142 - 36 */
}

.popup__qr-code {
    width: 149px;
    height: 153px;
    margin-top: 47px; /* 268 - 221 */
}

body .swiper-button-next svg, body .swiper-button-prev svg {
    fill: none;
}

body .swiper-button-next , body .swiper-button-prev {
    width: 110px;
    height: 110px;
    left: 40px;
}

body .hero-section .swiper-button-prev {
    left: 40px;
}

body .hero-section .swiper-button-next {
    right: 40px;
}

body .swiper-button-next svg:last-child, body .swiper-button-prev svg:last-child {
    display: none;
}

body .swiper-button-next:hover svg:last-child, body .swiper-button-prev:hover svg:last-child {
    display: block;
}
body .swiper-button-next:hover svg:first-child, body .swiper-button-prev:hover svg:first-child {
    display: none;
}

.header__nav-link:hover {
    color: #ced2de;
    transition: all 0.3s;
}

.hero-section__cta:hover, .services-section__left .button--round:hover, .testimonials-section__cta:hover, .button:hover {
    background: #ced2de;
    transition: all 0.3s;
}

.contact-form__submit:hover {
    color:#2C363F;
}

.gallery-section__nav-button:hover svg path {
    fill: #CED2DE;
    transition: all 0.3s;
}

.gallery-section__nav-button svg path, .gallery-section__nav-button {
    transition: all 0.3s;
}

.hero-section__divider.w-color {
    background-color: #F2F5EA;
}

.hero-section__slide:nth-child(1) .hero-section__bg-image{
    background-position: 0px;
    background-size: 115%;
}

button.header__mobile-menu-button {
    display: none;
}

@media(max-width: 768px) {
    h1.hero-section__title {
        font-size: 32px;
        letter-spacing: normal;
    }

    .hero-section__divider {
        width: 105px;
    }

    a.header__logo {
    font-size: 12px;
}

html {
    overflow-x: hidden;
}
ul.header__nav {
    display: none;
}

.header a.button.button--outline {
    display: none;
}

.container {
    padding: 0 30px;
}

p.hero-section__subtitle {
    font-size: 14px;
    max-width: 169px;
    margin-top: 27px;
}

p.hero-section__subtitle br {
    display: none;
}

body .hero-section .swiper-button-prev {
    left: 30px;
    top: auto;
    bottom: 200px;
}

body .hero-section .swiper-button-next {
    right: 30px;
    top: auto;
    bottom: 200px;
}

body .swiper-button-next, body .swiper-button-prev {
    width: 60px;
    height: 60px;
}
.hero-section__cta {
    font-size: 12px;
    padding: 18px 40px;
    position: absolute;
    bottom: 77px;
    left: 30px;
}
.hero-section .container {
    align-items: flex-start;
    padding-top: 46px;
    min-height: 644px;
}

.hero-section__content {
    margin-left: 0;
    height: 100%;
}
.hero-section__bg-image {border-radius: 0;/* background-position: -260px; */height: 644px;}

.hero-section__slide {
    border-radius: 0;
}

.hero-section {
    height: auto;
    min-height: 644px;
    margin: 0;
}

header.site-header {
    padding-top: 30px;
    padding-bottom: 12px;
    border: 0;
}

.hero-section__slider-track {
    min-height: 644px;
}

.hero-section__slide {
    min-height: 644px;
}
.hero-section__slide:nth-child(1) .hero-section__bg-image{
    background-position: -250px;
    background-size: cover;
}
.services-section {
    padding-top: 26px;
    padding-bottom: 26px;
}

h2.services-section__title {
    margin-top: 24px;
    font-size: 32px;
    max-width: 164px;
}

.services-section__divider {
    width: 105px;
}

.services-section__left .button--round {
    margin-top: 24px;
    font-size: 12px;
    width: 82px;
    height: 82px;
}

.services-section__left {
    padding-top: 0;
    position: unset;
    width: auto;
}

.services-section__container {
    flex-direction: column;
    gap: 40px;
}

.services-section__right {
    width: auto;
    padding: 0;
}

h3.service-card__title {
    font-size: 22px;
}

span.service-card__number {
    font-size: 22px;
}

.service-card__header {
    gap: 16px;
}

p.service-card__description {
    margin-top: 12px;
    font-size: 12px;
    line-height: 20px;
}

img.service-card__image {
    margin-top: 12px;
    height: 131px;
}

.services-section__right .spacer {
    height: 30px!important;
}

.services-section__additional-info {
    display: none;
}
.gallery-section {
    padding-top: 26px;
    padding-bottom: 26px;
}

.gallery-section__divider {
    width: 105px;
    height: 10px;
}

h2.gallery-section__title {
    font-size: 32px;
}

p.gallery-section__description {
    margin-top: 29px;
}

p.gallery-section__description {
    width: auto;
    font-size: 14px;
}

p.gallery-section__note {
    display: none;
}

.gallery-section__carousel {
    margin-top: 24px;
    height: 148px;
}

.gallery-section__image {
    width: 190px;
    height: 148px;
}

.gallery-section__nav {
    margin-top: 26px;
}

.gallery-section__nav-button {
    width: 26px;
}

.gallery-section__nav-button img {
    width: 26px;
}

.about-us-section {
    padding-top: 26px;
    padding-bottom: 26px;
}

.about-us-section__divider {
    width: 105px;
    height: 10px;
}

h2.about-us-section__title {
    font-size: 32px;
}

.about-us-section__content {
    width: auto;
}

.about-us-section__container {
    flex-direction: column;
    gap: 16px;
}

p.about-us-section__intro {
    margin-top: 19px;
    font-size: 12px;
    /* line-height: 20px; */
}

.about-us-section__body {
    font-size: 12px;
    margin-top: 16px;
}

.about-us-section__image-wrapper {
    margin: 0;
    width: auto;
    height: 287px;
}

p.about-us-section__outro {
    margin-top: 16px;
    font-size: 12px;
    font-weight: 400;
}

.testimonials-section {
    padding-top: 26px;
    padding-bottom: 26px;
}

.testimonials-section__divider {
    width: 105px;
    height: 10px;
}

h2.testimonials-section__title {
    font-size: 32px;
    width: auto;
    max-width: 330px;
}

.testimonials-section__grid {
    height: auto;
    min-height: auto!important;
}

.review-card {
    position: unset;
    width: auto;
    height: auto;
    display: none;
}

.review-card__content {
    margin-top: 32px!important;
    height: auto!important;
    width: auto!important;
    min-height: auto !important;
}

.review-card__quote {
    font-size: 170px;
    top: -58px!important;
    right: 0!important;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
}

.review-card__user {
    gap: 10px;
}

span.review-card__name {
    font-size: 14px;
}

p.review-card__text {
    margin-top: 12px;
    font-size: 12px;
}

.review-card.review-card--1 {
    display: block;
}

.review-card.review-card--3 {
    display: block;
}

.testimonials-section__cta {
    width: 100%;
    height: 57px;
    font-size: 14px;
    margin-top: 20px;
}
.footer__socials {
    gap: 5px;
    order: 1;
}

.footer__social-link img {
    width: 14px;
    height: 14px;
}

.footer__link, .footer__copyright {
    font-size: 10px;
    line-height: 20px;
    order: 2;
}

p.footer__copyright {
    display: none;
}

a.footer__link:nth-child(2) {
    order: 3;
}

footer.footer {
    padding: 0;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-section {
    padding-top: 133px;
    position: relative;
    padding-bottom: 0;
}

h2.contact-section__title {
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    color: #2C363F;
    background: #f2f5ea;
    padding: 0px 30px 22px 30px;
    text-align: center;
    line-height: 45px;
    position: absolute;
    top: 0;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    top: 22px;
    margin: 0;
    max-width: 330px;
}

.contact-section__bg-image {
    padding: 30px;
    border-radius: 0;
}

.contact-section__info {
    display: none;
}

.contact-section__form-wrapper {
    min-width: auto;
    max-width: none;
    width: 100%;
}

input.contact-form__input {
    width: 100%;
    height: 29px;
}

textarea.contact-form__input.contact-form__input--textarea {
    width: 100%;
    height: 73px;
}

.container.contact-section__container {
    padding: 0;
}

button.button.button--dark.contact-form__submit {
    width: 100%;
    height: 33px;
    margin-top: 4px;
}

form.contact-form {
    gap: 14px;
}

h2.contact-section__title br {
    display: none;
}


form.contact-form>* {
    font-size: 12px;
}
.popup {
    width: 100%;
    height: auto;
    padding-top: 129px;
    padding-right: 30px;
    padding-bottom: 30px;
}

.popup__image-wrapper {
    width: 182px;
    height: 233px;
}

.popup__content {
    width: auto;
}

h3.popup__title {
    width: auto;
    font-size: 32px;
    text-transform: uppercase;
    position: absolute;
    padding: 0 30px;
    left: 0;
    top: 30px;
}

button#popup-close-btn {
    top: 2px;
    right: 2px;
}

p.popup__subtitle {
    font-size: 14px;
    line-height: 150%;
    margin-top: 0;
}

img.popup__qr-code {
    display: none;
}
button.header__mobile-menu-button {
    all: unset;
    display: flex;
    width: 60px;
    height: 58px;
    justify-content: center;
    align-items: center;
}

.menu-open ul.header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: -30px;
    top: 68px;
    z-index: 999;
    background: #f2f5ea;
    padding-left: 60px;
    padding-top: 60px;
}
.menu-open {
    overflow: hidden;
}
button.header__mobile-menu-button svg {
    display: flex;
}

button.header__mobile-menu-button img {
    display: none;
    width: 45px;
    height: 44px;
}
.menu-open button.header__mobile-menu-button svg {
    display: none;
}

.menu-open button.header__mobile-menu-button img {
    display: flex;
}

section[id] {
    scroll-margin-top: 0;
}

.gallery-section__slide--next {
    transform: scale(0.8) translateX(124%);
}
.gallery-section__slide--prev {
    transform: scale(0.8) translateX(-124%);
}

}

a.popup__link {
    color: #008EDB;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    margin-top: 16px;
}

@media(min-width: 769px) {
    a.popup__link {
       display: none;
    }
}