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

:root {
    --main-width: 1512px;
    --hero-height: 805px;
    --dark-blue: #00223b;
    --font-manrope: 'Manrope', sans-serif;
    --font-syne: 'Syne', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-manrope);
    background-color: #FAF5F0;
}



.container {
    max-width: var(--main-width);
    margin: 0 auto;
    padding: 0 20px;
}

.header-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 250px;
    background-image: url('images/mask-header.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 0;
    pointer-events: none;
}

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.header-container {
    max-width: var(--main-width);
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    height: 120px;
    padding-left: 31px;
    position: relative;
    z-index: 1;
}

.nav-left {
    display: flex;
    align-items: flex-start;
    gap: 31px;
    margin-right: 157px;
    margin-top: 25px;
}

.logo-wrapper {
    width: 269px;
    height: 120px;
    position: relative;
}

.logo-box {
    background-color: var(--dark-blue);
    width: 269px;
    height: 285px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: -12px;
    z-index: 2;
}

.logo-header-desktop {
    width: 186.03px;
    height: 99.6px;
    object-fit: contain;
    image-rendering: high-quality;
}

.mobile-logo-bar {
    display: none;
}

.nav-right {
    display: flex;
    align-items: flex-start;
    margin-left: 44px;
    gap: 21px;
}

.nav-links-right {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.nav-left a,
.nav-links-right a {
    font-family: var(--font-manrope);
    color: #EDD7C3;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    line-height: 14px;
    text-transform: uppercase;
    display: block;
}

.nav-links-right a {
    margin-top: 25px;
}

.nav-links-right a.btn-outline {
    color: #785D32;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 17px;
    background-color: #FFFFFF;
    padding: 15px 25px;
    text-decoration: none;
    display: block;
    margin-top: 13px;
}

.header-icons {
    display: flex;
    gap: 21px;
    margin-top: 24px;
    align-items: center;
}


.in-tel {
    height: 16px;
    width: 16px;
}

.in-em {
    height: 13px;
    width: 17px;
}

.in-clo {
    height: 17px;
    width: 15px;
}

.sticky-header {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    height: 69px;
    background-color: #FFFFFF;
    z-index: 9999;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-header.is-sticky {
    top: 0;
}

.sticky-container {
    width: 1512px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.sticky-nav-left {
    display: flex;
    align-items: center;
    gap: 31px;
    margin-left: 26.09px;
}

.sticky-nav-left a,
.sticky-nav-right a {
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 17px;
    color: #785D32;
    text-decoration: none;
    text-transform: uppercase;
}

.sticky-logo-wrapper {
    margin-left: 217px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-logo-img {
    height: 37px;
    width: 148px;
    object-fit: cover;
}

.sticky-nav-right {
    display: flex;
    align-items: center;
    gap: 31px;
    margin-left: 163px;
}

.sticky-icons {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-left: auto;
    margin-right: 35.32px;
}

.sticky-icons svg {
    display: block;
}

.hero-section {
    position: relative;
    height: var(--hero-height);
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlideshow 15s infinite;
}

.slide:nth-child(1) {
    background-image: url('images/slide1.png');
    animation-delay: 0s;
}

.slide:nth-child(2) {
    background-image: url('images/slide2.png');
    animation-delay: 5s;
}

.slide:nth-child(3) {
    background-image: url('images/slide3.png');
    animation-delay: 10s;
}

.ico-google {
    width: 129px;
    height: 42px;
}

.ico-stars {
    width: 103px;
    height: 17px;
}

@keyframes fadeSlideshow {

    0%,
    100% {
        opacity: 0;
    }

    10%,
    33% {
        opacity: 1;
    }

    43%,
    100% {
        opacity: 0;
    }
}

.search-section {
    position: relative;
    z-index: 10;
    margin-top: -63px;
    display: flex;
    justify-content: center;
}

.search-widget {
    width: 712px;
    height: 443px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
}

.search-tabs {
    display: flex;
    height: 63px;
}

.search-tab {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 14px;
    text-transform: uppercase;
    background-color: #002540;
    color: #FAF5F0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 225px;
}

.search-tab.active {
    background-color: #FFFFFF;
    width: 264px !important;
    color: #002540;
}

.search-body {
    padding: 30px 44px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.search-label {
    display: block;
    font-family: var(--font-syne);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
    line-height: 18px;
    color: #002540;
    margin-bottom: 8px;
}

.search-input-loc {
    width: 624px;
    height: 37px;
    border: 1px solid #D5D5D5;
    border-radius: 4px;
    padding: 0 15px;
    font-family: var(--font-syne);
    font-size: 16px;
    color: #002540;
    outline: none;
}

.checkbox-group {
    display: flex;
    gap: 30px;
    align-items: center;
}

.custom-check-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.custom-check-label span {
    font-family: var(--font-syne);
    font-size: 18px;
    letter-spacing: 0.9px;
    line-height: 20px;
    color: #002540;
}

.custom-checkbox {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid #D5D5D5;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    background-color: #FFFFFF;
    position: relative;
    display: inline-block;
}

.custom-checkbox:checked {
    background-color: #FFFFFF;
    border-color: #D5D5D5;
}

.custom-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 12px;
    height: 12px;
    background-color: #02496E;
    border-radius: 2px;
}

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

.pieces-group {
    display: flex;
    gap: 7.5px;
}

.piece-box {
    width: 37px;
    height: 37px;
    border: 1px solid #D5D5D5;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-syne);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.9px;
    line-height: 20px;
    color: #002540;
    cursor: pointer;
}

.input-with-icon {
    position: relative;
    width: 346px;
    height: 37px;
    display: flex;
    border: 1px solid #D5D5D5;
    border-radius: 3px;
    background-color: #FFFFFF;
}

.search-input-budget {
    flex: 1;
    height: 100%;
    border: none;
    border-radius: 3px 0 0 3px;
    padding: 0 15px;
    font-family: var(--font-syne);
    font-size: 16px;
    color: #002540;
    outline: none;
    background: transparent;
}

.euro-icon {
    width: 37px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #D5D5D5;
    font-family: var(--font-syne);
    font-weight: 500;
    font-size: 18px;
    color: #002540;
}

.submit-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.annonces-count {
    font-family: var(--font-syne);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.7px;
    line-height: 17px;
    color: #9B9B9B;
}


.btn-rechercher {
    width: 207px;
    height: 58px;
    background-color: #00497E;
    border: none;
    color: #FAF5F0;
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 14px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
}

.services-section {
    padding-top: 100px;
    padding-bottom: 0;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-icon {
    width: 55.83px;
    height: 61.09px;
    object-fit: contain;
    margin-bottom: 25px;
    display: inline-block;
}

.services-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 60px;
    color: #785D32;
    line-height: 70px;
    margin-bottom: 10px;
}

.services-subtitle {
    font-family: var(--font-syne);
    font-weight: 500;
    font-size: 24px;
    color: #9B9B9B;
    letter-spacing: 1.2px;
    line-height: 28px;
}

.services-accordion {
    max-width: var(--main-width);
    margin: 0 auto;
    border-top: 1px solid #E4DCD3;
}

.accordion-item {
    display: flex;
    height: 232px;
    border-bottom: 1px solid rgba(2, 73, 110, 0.3);
    background-color: #FAF5F0;
    cursor: pointer;
    box-sizing: border-box;
}

.accordion-left {
    width: 1100px;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 91px;
    transition: background-color 0.3s ease;
}

.accordion-item.active .accordion-left {
    background-color: #FFFFFF;
}

.accordion-title {
    font-family: var(--font-syne);
    font-weight: 500;
    font-size: 60px;
    color: #00497E;
    line-height: 50px;
    width: 400px;
}

.accordion-text {
    font-family: var(--font-syne);
    font-weight: 400;
    font-size: 15px;
    color: #9B9B9B;
    line-height: 22px;
    max-width: 320px;
    display: none;
}

.accordion-item.active .accordion-text {
    display: block;
}

.accordion-right {
    width: 412px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 91.28px;
    background-color: #FAF5F0;
}

.btn-savoir-plus {
    display: none;
    align-items: center;
    gap: 30px;
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 12px;
    color: #002540;
    letter-spacing: 1.8px;
    line-height: 14px;
    text-transform: uppercase;
    text-decoration: none;
}

.accordion-item.active .btn-savoir-plus {
    display: flex;
}

.btn-savoir-plus img {
    height: 56px;
    width: 90px;
}

.properties-section {
    margin-top: 150.5px;
}

.properties-header {
    text-align: center;
    margin-bottom: 100px;
}

.properties-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 60px;
    font-weight: 400;
    color: #785D32;
    line-height: 70px;
    margin-bottom: 15px;
}

.properties-subtitle {
    font-family: var(--font-syne);
    font-size: 24px;
    font-weight: 500;
    color: #9B9B9B;
    letter-spacing: 1.2px;
    line-height: 28px;
}

.properties-carousel-container {
    position: relative;
    max-width: var(--main-width);
    margin: 0 auto;
    padding-left: 76px;
}

.carousel-viewport {
    width: 1436px;
    overflow: hidden;
    padding-top: 30px;
    margin-top: -30px;
}

.carousel-track {
    display: flex;
    gap: 33px;
}

.property-card {
    width: 315px;
    flex-shrink: 0;
    text-align: left;
}

.property-image-wrapper {
    width: 315px;
    height: 316px;
    border-radius: 3px;
    position: relative;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3px;
    display: block;
}

.property-badge {
    position: absolute;
    top: -21px;
    left: 15px;
    width: 156px;
    height: 40px;
    background-color: #EB6C45;
    border-radius: 3px;
    color: #FAF5F0;
    font-family: var(--font-manrope);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    line-height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.property-info {
    padding-top: 25px;
}

.property-label {
    color: #785D32;
    font-family: var(--font-manrope);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    line-height: 14px;
    text-transform: uppercase;
}

.property-name {
    color: #00497E;
    font-family: var(--font-syne);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1.2px;
    line-height: 28px;
    margin-top: 7px;
}

.property-location {
    color: #9B9B9B;
    font-family: var(--font-syne);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.9px;
    line-height: 20px;
    margin-top: 7px;
}

.property-details-row {
    display: flex;
    gap: 24px;
    align-items: baseline;
    margin-top: 18px;
}

.property-spec {
    color: #9B9B9B;
    font-family: var(--font-syne);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
    line-height: 18px;
}

.property-price {
    color: #002540;
    font-family: var(--font-manrope);
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
}

.carousel-arrow {
    position: absolute;
    right: 30px;
    top: 190px;
    transform: translateY(-50%);
    width: 89px;
    height: 58px;
    background-color: #FFFFFF;
    border-radius: 3px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.mob-arrow {
    width: 39px;
    height: 25px;
    opacity: 1;
}


.btn-all-properties {
    width: 328px;
    height: 58px;
    background-color: #00497E;
    border-radius: 3px;
    color: #FAF5F0;
    font-family: var(--font-manrope);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    line-height: 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 82px auto 0;
    text-transform: uppercase;
}

.cta-section {
    margin-top: 150px;
    position: relative;
    z-index: 1;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #002540;
    z-index: -1;
}

.cta-block {
    width: 1360px;
    height: 668px;
    background-color: #00497E;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 3px;
}

.cta-subtitle {
    font-family: var(--font-syne);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 1.2px;
    line-height: 28px;
    color: #EDD7C3;
    margin-bottom: 25px;
}

.cta-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 70px;
    color: #EDD7C3;
    margin-bottom: 45px;
}

.btn-cta {
    width: 295px;
    height: 58px;
    background-color: #002540;
    border-radius: 3px;
    border: none;
    color: #FAF5F0;
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 14px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dark-bottom-section {
    background-color: #002540;
    padding-top: 80px;
}

.alert-block {
    width: 1360px;
    height: 148px;
    background-color: #FFFFFF;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
}

.alert-text {
    font-family: var(--font-syne);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 1.2px;
    line-height: 28px;
    color: #002540;
}

.btn-alerte {
    width: 221px;
    height: 58px;
    background-color: #00497E;
    border-radius: 3px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 14px;
    color: #FAF5F0;
    cursor: pointer;
    text-transform: uppercase;
}

.expertise-container {
    width: 100%;
    max-width: 895px;
    margin: 149px auto 0;
    padding: 0;
}

.expertise-subtitle {
    font-family: var(--font-syne);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 1.2px;
    line-height: 28px;
    color: #EDD7C3;
    margin-bottom: 10px;
}

.expertise-title {
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 70px;
    color: #EDD7C3;
    margin-bottom: 60px;
}

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

.expertise-icon {
    width: 102px;
    height: 111px;
    object-fit: contain;
    flex-shrink: 0;
}

.expertise-content-wrapper {
    width: 551px;
    flex-shrink: 0;
}

.expertise-text {
    font-family: var(--font-syne);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #EDD7C3;
    margin-bottom: 40px;
}

.btn-savoir-plus-expert {
    width: 175px;
    height: 58px;
    background-color: #00497E;
    border-radius: 3px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 14px;
    color: #FAF5F0;
    cursor: pointer;
    text-transform: uppercase;
    margin: 0;
}

.masonry-container {
    position: relative;
    max-width: var(--main-width);
    margin-top: 27px;
    height: 1050px;
}

.ic-e-b {
    height: 13px;
    width: 15px;
}

.m-block {
    position: absolute;
    border-radius: 3px;
    overflow: hidden;
}

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

.m-text-box {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.m-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 15px;
}

.m-title {
    font-family: var(--font-syne);
    font-weight: 500;
    font-size: 23px;
    letter-spacing: 1.15px;
    line-height: 27px;
    color: #785D32;
    margin-bottom: 15px;
}

.m-text {
    font-family: var(--font-syne);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #9B9B9B;
}

.m-1 {
    left: 0;
    top: 466px;
    width: 161px;
    height: 277px;
}

.m-2 {
    left: 175px;
    top: 27px;
    width: 321px;
    height: 498px;
}

.m-3 {
    left: 175px;
    top: 539px;
    width: 321px;
    height: 353px;
}

.m-4 {
    left: 510px;
    top: 260px;
    width: 322px;
    height: 418px;
}

.m-5 {
    left: 846px;
    top: 180px;
    width: 321px;
    height: 345px;
}

.m-6 {
    left: 846px;
    top: 539px;
    width: 153px;
    height: 274px;
}

.m-7 {
    left: 1013px;
    top: 610px;
    width: 322px;
    height: 348px;
}

.m-8 {
    right: 0;
    top: 180px;
    width: 168px;
    height: 418px;
}

.reviews-wrapper {
    margin-top: 172px;
    padding-bottom: 100px;
    max-width: var(--main-width);
    margin-left: auto;
    margin-right: auto;
}

.reviews-block {
    width: 1360px;
    height: 518px;
    background-color: #FFFFFF;
    border-radius: 3px;
    margin: 0 auto;
    position: relative;
}

.reviews-title {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 70px;
    color: #785D32;
}

.reviews-subtitle {
    position: absolute;
    top: 159px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: var(--font-syne);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #9B9B9B;
}

.reviews-google-box {
    position: absolute;
    bottom: 120px;
    left: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.google-svg {
    display: block;
}

.google-stars {
    margin-top: 10px;
    display: flex;
    gap: 2px;
}

.google-text {
    margin-top: 5px;
    font-family: var(--font-syne);
    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
    color: #9B9B9B;
    margin-top: 18px;
}

.reviews-cards {
    position: absolute;
    bottom: 47px;
    right: 199px;
    display: flex;
    gap: 15px;
}

.review-card {
    width: 249px;
    height: 245px;
    background-color: #FAF5F0;
    border-radius: 3px;
    padding: 24px 21px 0 21px;
    box-sizing: border-box;
}

.review-header {
    display: flex;
    align-items: center;
}

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

.review-meta {
    margin-left: 11px;
}

.review-author {
    font-family: var(--font-manrope);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 17px;
    color: #002540;
    text-transform: uppercase;
}

.review-date {
    font-family: var(--font-syne);
    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
    color: #9B9B9B;
}

.review-stars {
    margin-top: 8px;
    display: flex;
    gap: 2px;
}

.review-text {
    margin-top: 8.91px;
    font-family: var(--font-syne);
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #9B9B9B;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-link {
    display: block;
    margin-top: 12.72px;
    font-family: var(--font-syne);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.75px;
    line-height: 16px;
    color: #002540;
    text-decoration: none;
}

.site-footer {
    height: 733.67px;
    background-color: #00497E;
    padding-top: 80.24px;
    box-sizing: border-box;
    position: relative;
}

.footer-logo {
    width: 394.89px;
    height: 211.43px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

.footer-main-block {
    width: 1371px;
    height: 243px;
    background-color: #00497E;
    margin: 151px auto 0;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 93px;
    margin-left: 8px;
}

.footer-text-col {
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: #EDD7C3;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-right: 55px;
}

.f-btn {
    height: 58px;
    background-color: #FFFFFF;
    border-radius: 3px;
    border: none;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
}

.f-btn-1 {
    width: 209px;
    padding-left: 26px;
}

.f-btn-1 svg {
    width: 20.24px;
    height: 20.24px;
}

.f-btn-1 span {
    font-family: var(--font-manrope);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 17px;
    color: #00497E;
    text-transform: uppercase;
    margin-left: 9.88px;
}

.f-btn-2 {
    width: 282px;
    padding-left: 26px;
}

.f-btn-2 svg {
    width: 15px;
    height: 13px;
}

.f-btn-2 span {
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 14px;
    color: #002540;
    text-transform: uppercase;
    margin-left: 9.88px;
    margin-right: 22px;
}

.f-btn-3 {
    width: 180px;
    padding-left: 25px;
}

.f-btn-3 svg {
    width: 15.56px;
    height: 15.56px;
}

.f-btn-3 span {
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 14px;
    color: #002540;
    text-transform: uppercase;
    margin-left: 9.88px;
}

.footer-right {
    display: flex;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-nav-col:nth-child(2) {
    margin-left: 59px;
}

.footer-nav-col:nth-child(3) {
    margin-left: 44px;
}

.footer-link {
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: #EDD7C3;
    text-decoration: none;
}

.footer-bottom-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.footer-bottom-link {
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: rgba(213, 213, 213, 0.3);
    text-decoration: none;
}

.zig-ic {
    margin-bottom: 39px;
}

.zig-ic-one {
    width: 24px;
    height: 24px;
}

.zig-ic-two {
    width: 25.97px;
    height: 25.97px;
}

.zig-ic-thre {
    width: 23.57px;
    height: 30.69px;
}

.sticky-mobile-bar {
    display: none;
}

@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 768px) {

    .main-header .nav-left,
    .main-header .nav-right {
        display: none;
    }

    .header-container {
        justify-content: center;
        padding-left: 0;
    }

    .logo-wrapper {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 233px;
        height: 272px;
        margin: 0;
        display: flex;
        flex-direction: column;
        z-index: 10;
    }

    .logo-box {
        position: relative;
        top: auto;
        left: auto;
        width: 233px;
        height: 204px;
    }

    .logo-header-desktop {
        width: 161.04px;
        height: 86.23px;
    }

    .mobile-logo-bar {
        display: flex !important;
        width: 233px;
        height: 68px;
    }

    .mobile-menu-btn {
        width: 164px;
        height: 100%;
        background-color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        font-family: var(--font-manrope);
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 14px;
        color: #785D32;
        text-transform: uppercase;
    }

    .mobile-phone-btn {
        width: 69px;
        height: 100%;
        background-color: #00497E;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .sticky-header {
        display: none;
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 68px;
        z-index: 9999;
        background-color: #FFFFFF;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
        border-radius: 3px;
        overflow: hidden;
    }

    .sticky-header.is-sticky {
        display: block !important;
    }

    .sticky-container {
        display: none !important;
    }

    .sticky-mobile-bar {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
    }

    .sticky-m-logo {
        width: 90px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 1px solid #EAEAEA;
    }

    .sticky-m-logo img {
        width: 41px;
        height: auto;
        object-fit: contain;
    }

    .sticky-mobile-bar .mobile-menu-btn {
        flex-grow: 1;
        height: 100%;
        background-color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

    .sticky-mobile-bar .mobile-phone-btn {
        width: 69px;
        height: 100%;
        background-color: #00497E;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .search-section {
        padding-left: 21px;
        padding-right: 20px;
        box-sizing: border-box;
    }

    .search-widget {
        width: 100%;
        max-width: 334px;
        height: 573px;
        margin: 0 auto;
    }

    .search-tabs {
        height: 70px;
    }

    .search-tab.active {
        width: 111.33px !important;

    }

    .search-tab {
        width: 111.33px;
        height: 70px;
        flex: none;
    }

    .search-body {
        padding: 30px 20px;
        justify-content: flex-start;
        gap: 25px;
    }

    .search-input-loc {
        width: 100%;
    }

    .checkbox-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 10px;
    }

    .split-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .split-col {
        width: 100%;
    }

    .input-with-icon {
        width: 100%;
    }

    .submit-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: auto;
    }

    .btn-rechercher {
        width: 100%;
    }

    .services-title {
        font-family: 'Noto Serif JP', serif;
        font-weight: 400;
        font-size: 28px;
        color: #785D32;
        line-height: 34px;
        margin-bottom: 10px;
    }

    .services-subtitle {
        font-family: var(--font-syne);
        font-weight: 500;
        font-size: 18px;
        color: #9B9B9B;
        letter-spacing: 0.9px;
        line-height: 24px;
    }

    .accordion-title {
        font-family: var(--font-syne);
        font-weight: 500;
        font-size: 28px;
        color: #00497E;
        line-height: 34px;
        width: 400px;
    }

    .accordion-text {
        font-family: var(--font-syne);
        font-weight: 400;
        font-size: 15px;
        color: #9B9B9B;
        line-height: 22px;
        max-width: 320px;
        display: none;
    }

    .services-section {
        padding-top: 60px;
    }

    .services-accordion {
        flex-direction: column;
        border-top: none;
    }

    .accordion-item {
        flex-direction: column;
        height: auto;
        border-top: 1px solid rgba(2, 73, 110, 0.3);
        padding: 30px 20px;
    }

    .accordion-left {
        width: 100%;
        padding-left: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .accordion-title {
        width: 100%;
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 15px;
    }

    .accordion-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .accordion-right {
        width: 100%;
        padding-right: 0;
        justify-content: flex-start;

    }

    .accordion-item.active .accordion-left {
        background: none !important;
    }

    .btn-savoir-plus img {
        height: 25px;
        width: 48px;
    }

    .properties-title {
        font-family: 'Noto Serif JP', serif;
        font-size: 28px;
        font-weight: 400;
        color: #785D32;
        line-height: 34px;
        margin-bottom: 15px;
    }

    .properties-subtitle {
        font-family: var(--font-syne);
        font-size: 18px;
        font-weight: 500;
        color: #9B9B9B;
        letter-spacing: 0.9px;
        line-height: 24px;
    }

    .properties-header {
        margin-bottom: 59px;
    }

    .properties-carousel-container {
        padding-left: 20px;
    }

    .carousel-viewport {
        width: 100%;
    }

    .carousel-track {
        gap: 18px;
    }

    .carousel-arrow {
        right: 10px;
        top: 265px;
        /* width: 74px; */
        border-radius: 3px;
    }

    .mob-arrow {
        width: 39px;
        height: 25px;
        opacity: 1;
    }


    .cta-block {
        width: 335px;
        height: 465px;
        padding: 20px;
    }

    .cta-subtitle {
        font-family: var(--font-syne);
        font-weight: 500;
        font-size: 18px;
        letter-spacing: 0.9px;
        line-height: 24px;
    }

    .cta-title {
        font-family: 'Noto Serif JP', serif;
        font-weight: 400;
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 45px;
        margin-top: 15px;
    }

    .cta-section {
        margin-top: 100px;
    }

    .btn-cta {
        width: 281px;

    }

    .alert-block {
        width: 335px;
        height: 238px;
        margin: 0 auto;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        padding: 50px;
        flex-direction: column;
        border-radius: 3px;
    }

    .alert-text {
        margin-bottom: 20px;
        font-size: 18px;
        letter-spacing: 0.9px;
        line-height: 24px;
        text-align: center;
    }

    .expertise-container {
        width: 100%;
        margin: 0;
        padding: 100px 20px 101px 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
    }

    .expertise-header,
    .expertise-body,
    .expertise-content-wrapper {
        display: contents;
    }

    .expertise-icon {
        order: 1;
        height: auto;
        margin: 0 auto 45px auto;
    }

    .expertise-subtitle {
        order: 2;
        font-family: var(--font-syne);
        font-weight: 500;
        font-size: 18px;
        letter-spacing: 0.9px;
        line-height: 24px;
        margin-top: 0;
        margin-bottom: 12px;
    }

    .expertise-title {
        order: 3;
        font-family: 'Noto Serif JP', serif;
        font-weight: 400;
        font-size: 28px;
        line-height: 34px;
        margin-top: 0;
        margin-bottom: 45px;
    }

    .expertise-text {
        order: 4;
        font-family: var(--font-syne);
        font-weight: 400;
        font-size: 15px;
        line-height: 22px;
        margin-top: 0;
        margin-bottom: 46px;
    }

    .btn-savoir-plus-expert {
        order: 5;
        margin: 0;
    }

    .masonry-container {
        height: 1677px;
        margin-top: 0;
        width: 100%;
        overflow: hidden;
    }

    .m-block {
        box-sizing: border-box;
    }

    .m-2 {
        top: 0;
        left: 20px;
        width: 277px;
        height: 403px;
    }

    .m-5 {
        top: 413px;
        left: 78px;
        width: 277px;
        height: 276px;
    }

    .m-1 {
        top: 452px;
        left: 0;
        width: 68px;
        height: 236px;
        border-radius: 0 3px 3px 0;
    }

    .m-3 {
        top: 699px;
        left: 20px;
        width: 277px;
        height: 276px;
    }

    .m-7 {
        top: 985px;
        left: 79px;
        width: 277px;
        height: 276px;
    }

    .m-4 {
        top: 1271px;
        left: 0;
        width: 182px;
        height: 372px;
        border-radius: 0 3px 3px 0;
    }

    .m-6 {
        top: 1440px;
        left: 192px;
        width: 163px;
        height: 237px;
    }

    .m-8 {
        display: none;
    }

    .m-text-box {
        padding: 20px 15px;
    }

    .m-title {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 12px;
    }

    .m-text {
        font-size: 13px;
        line-height: 19px;
    }

    .reviews-wrapper {
        margin-top: 98px;

    }

    .reviews-block {
        width: 313px;
        height: 1264px;
        display: flex;
        flex-direction: column;
    }

    .reviews-title {
        position: static;
        top: 0;
        left: 0;
        width: 100%;
        font-size: 28px;
        line-height: 34px;
        padding: 24px 21px 0 21px;
    }

    .reviews-subtitle {
        position: static;
        padding: 24px 21px 0 21px;
        margin-bottom: 57px;
    }

    .reviews-google-box {
        position: static;
    }

    .reviews-cards {
        position: static;
        display: flex;
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .google-text {
        margin-bottom: 44px;
    }

    .site-footer {
        width: 100%;
        height: auto;
        padding: 60px 20px 50px 20px;
        box-sizing: border-box;
    }

    .footer-logo {
        width: 275px;
        height: auto;
        margin: 0 auto 50px auto;
    }

    .footer-main-block {
        width: 100%;
        height: auto;
        margin: 0;
        display: flex;
        flex-direction: column;
    }

    .footer-top-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-left {
        gap: 20px;
        margin-bottom: 45px;
    }

    .footer-middle {
        gap: 15px;
        margin-bottom: 50px;
        width: 100%;
        margin-right: 0;
    }

    .footer-right {
        display: grid;
        grid-template-columns: 85px 1fr;
        column-gap: 25px;
        row-gap: 20px;
        width: 100%;
        margin-bottom: 50px;
    }

    .footer-nav-col {
        gap: 20px;
    }

    .footer-nav-col:nth-child(1) {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        margin: 0;
    }

    .footer-nav-col:nth-child(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        margin: 0;
    }

    .footer-nav-col:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        margin: 0;
    }

    .footer-bottom-row {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 25px;
        row-gap: 20px;
        width: 100%;
        justify-content: flex-start;
        margin-top: 0;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 375px;
        height: 735px;
        background-color: #FFFFFF;
        z-index: 10000;
        display: none;
        flex-direction: column;
        box-sizing: border-box;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-overlay.is-open {
        display: flex;
    }

    .mobile-menu-top-bar {
        height: 68px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #F0EEEA;
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .m-menu-logo {
        width: 90px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 1px solid #F0EEEA;
        box-sizing: border-box;
    }

    .m-menu-logo img {
        width: 41px;
        height: auto;
        object-fit: contain;
    }

    .m-menu-close-btn {
        flex-grow: 1;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        cursor: pointer;
    }

    .m-menu-close-btn span {
        font-family: var(--font-manrope);
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 17px;
        color: #785D32;
        text-transform: uppercase;
    }

    .m-menu-phone-btn {
        width: 69px;
        height: 100%;
        background-color: #00497E;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .mobile-menu-links {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 60px;
    }

    .mobile-menu-links a {
        font-family: var(--font-manrope);
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 17px;
        color: #785D32;
        text-decoration: none;
        text-transform: uppercase;
    }

    .mobile-menu-bottom {
        height: 68px;
        display: flex;
        border-top: 1px solid #F0EEEA;
        border-bottom: 1px solid #F0EEEA;
        box-sizing: border-box;
        flex-shrink: 0;
    }

    .m-bottom-action {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-family: var(--font-manrope);
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 1.8px;
        line-height: 17px;
        color: #785D32;
        text-decoration: none;
        text-transform: uppercase;
    }

    .left-action {
        border-right: 1px solid #F0EEEA;
        box-sizing: border-box;
    }

    .mobile-menu-footer-grey {
        height: 38px;
        background-color: #F8F6F3;
        flex-shrink: 0;
    }

}



/* GRID

.debug-grid {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100vh;
    z-index: 999999;
    pointer-events: none;
    display: flex;
    justify-content: center;
    gap: 31.5px;
}

.grid-col {
    width: 84px;
    height: 100%;
    background-color: rgba(0, 123, 255, 0.15);
    border-left: 1px solid rgba(0, 123, 255, 0.4);
    border-right: 1px solid rgba(0, 123, 255, 0.4);
}

@media (max-width: 1024px) {
    .debug-grid {
        display: none;
    }
}
    */

#waldhof-loader-transparent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 73, 126, 0.95);
    backdrop-filter: blur(2px);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s;
}

#waldhof-loader-transparent.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-icon-wrapper {
    width: 100px;
    height: auto;
    clip-path: inset(100% 0 0 0);
    animation: revealFromBottom 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.loader-icon-wrapper svg path {
    stroke: #FAF5F0;
}

@keyframes revealFromBottom {
    0% {
        clip-path: inset(100% 0 0 0);
    }

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

.container,
.sticky-container,
.properties-carousel-container,
.masonry-container {
    width: 100%;
    max-width: var(--main-width);
    margin-left: auto;
    margin-right: auto;
   
}


.cta-block, 
.alert-block, 
.reviews-block {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    box-sizing: border-box; 
}

.footer-main-block {
    width: 100%;
    max-width: 1371px;
    margin: 151px auto 0;
    padding: 0 20px; 
    box-sizing: border-box;
}


.wp-menu-ul {
    display: flex;
    align-items: flex-start;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-left .wp-menu-ul,
.sticky-nav-left .wp-menu-ul,
.sticky-nav-right .wp-menu-ul { 
    gap: 31px; 
}
.nav-links-right .wp-menu-ul { 
    gap: 30px; 
}

.main-header .wp-menu-ul li a {
    font-family: var(--font-manrope);
    color: #EDD7C3;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.8px;
    line-height: 14px;
    text-transform: uppercase;
    display: block;
}

.nav-links-right .wp-menu-ul li a {
    margin-top: 25px;
}


.nav-links-right .wp-menu-ul li.btn-outline a {
    color: #785D32 !important;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 17px;
    background-color: #FFFFFF !important;
    padding: 15px 25px;
    margin-top: 13px !important;
}

.sticky-header .wp-menu-ul li a {
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 17px;
    color: #785D32;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
}

.wp-menu-mobile-ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 60px; 
}

.wp-menu-mobile-ul li a {
    font-family: var(--font-manrope);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.8px;
    line-height: 17px;
    color: #785D32;
    text-decoration: none;
    text-transform: uppercase;
    display: block;
}