:root {
    --primary-color: #121718;
    --secondary-color: #FFFFFF;
    --font-color: #ffffff;
    --background-color: #121718;
    --white-color: #ffffff;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

body {
    color: var(--font-color);
    background-color: var(--background-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 0;
}

header,
main,
footer,
.copyright-text {
    font-size: clamp(1.125rem, -1.5rem + 3vw, 1.5rem);
}

.bg-white {
    color: var(--background-color);
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

.heading span,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'DM Serif Display', serif;
}

.sticky__top {
    position: sticky;
    top: 150px;
}

img {
    max-width: 100%;
    height: auto;
}

.heading {
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.heading span {
    font-weight: 400;
    font-style: italic;
}

.text-normal {
    font-size: 1rem;
}

.tick-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* color: var(--white-color); */
}

.tick-list li {
    /* font-size: 20px; */
    padding: 0 0 0 38px;
    position: relative;
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 4px auto 0 0;
    width: 24px;
    height: 24px;
    background-size: 24px;
    background-repeat: no-repeat;
}

.z-1 {
    z-index: 1;
    position: relative;
}

.spacer-xl {
    padding-block: 100px;
}

.spacer-y {
    padding-block: 50px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.br-0 {
    border-radius: 0px;
}

.object-cover {
    object-fit: cover;
}

.padding-left {
    --page-width: 1600px;
    padding-left: calc(50% - (var(--page-width) / 2) + 12px);
}

.padding-right {
    --page-width: 1600px;
    padding-right: calc(50% - (var(--page-width) / 2) + 12px);
}

.mb-80 {
    margin-bottom: clamp(2.5rem, -0.9555rem + 9.6154vw, 5rem);
}

.sq-img {
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.button {
    padding: 8px 8px 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    font-weight: 600;
    transition: all .3s ease;
}

.button svg {
    height: 50px;
    width: 50px;
    padding: 16px;
    border-radius: 50px;
    background: white;
    rotate: -45deg;
}

.button:hover svg {
    rotate: 0deg;
}

.button-primary svg {
    transition: all .3s ease;
}

.button-secondary svg {
    background: var(--primary-color);
    transition: all .3s ease;
}

.button-secondary:hover svg {
    background-color: var(--secondary-color);
}

.button-secondary:hover svg path {
    stroke: var(--primary-color);
}

.button-secondary svg path {
    stroke: var(--secondary-color);
    transition: all .3s ease;
}

.button-primary svg path {
    stroke: var(--primary-color);
    transition: all .3s ease;
}

.button-primary:hover svg {
    background-color: var(--primary-color);
}

.button-primary:hover svg path {
    stroke: var(--secondary-color);
}

.button-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

.button-primary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}

.button-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
}

.button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all .3s ease;
}

.logo {
    width: 110px;
}

.spacer-xxl {
    padding-block: clamp(3.125rem, -0.1707rem + 9.1707vw, 9rem);
}

.hero-wrap.spacer-xxl {
    padding-top: 200px;
}

.hero-block {
    display: flex;
    align-items: flex-end;
    min-height: 100dvh;
    background: url(../images/bg-home.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-block::before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    opacity: .6;
}

.about-section {
    position: relative;
}

.about-section::before {
    position: absolute;
    content: '';
    background: url(../images/bg-pattern.webp);
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    top: 0;
    left: 0;
    opacity: .3;
}

/* Property Slider */
.property-slider {
    border-radius: 20px;
}

ul.property-info-list {
    list-style: none;
    display: flex;
    padding: 0;
    gap: 25px;
    flex-wrap: wrap;
}

ul.property-info-list li {
    font-size: 18px;
    color: #555555;
    display: flex;
    align-items: center;
    column-gap: 6px;
    font-weight: 500;
}

ul.property-info-list li>img {
    max-width: 20px;
}

.swiper-button-next::after {
    display: none;
}

.swiper-button-prev::after {
    display: none;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    cursor: pointer;
}

span.swiper-pagination-bullet {
    background-color: #fff;
}

.property-image img {
    width: 100%;
    margin-bottom: 20px;
}

.swiper-slide {
    flex-direction: column;
    display: flex;
    height: auto;
}

.swiper-wrapper {
    display: flex;
    height: auto;
}

.property-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-image img {
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
}

.btn-div {
    margin-top: auto;
}

.marque-slider {
    display: flex;
    align-items: center;
    gap: 50px;
    -webkit-animation: ticker-left-loop 60s infinite linear;
    animation: ticker-left-loop 60s infinite linear;
}

@keyframes ticker-left-loop {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }
}

.marque-stroke {
    font-size: 110px;
    /* -webkit-text-stroke: 1px var(--font-color); */
    color: var(--font-color);
    opacity: 0.5;
    font-weight: 600;
    letter-spacing: -2.5px;
    display: block;
    white-space: nowrap;
}

.video-sec .video-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    z-index: -1;
    object-fit: cover;
    opacity: .3;
}

.work-card {
    padding: 30px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(3px);
    border-radius: 20px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .1);
}

.main-slider .swiper-slide img {
    border-radius: 20px;
}

.cta-1 .cta-block {
    background-image: url(../images/cta-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-attachment: fixed; */
    border-radius: 40px;
}

.map-card h3 {
    position: absolute;
    z-index: 999;
    bottom: -50px;
    left: 50%;
    background: rgb(0 0 0 / 10%);
    padding: 10px 50px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 50px -10px black;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, .1);
}

.cta-crop {
    margin-bottom: -200px;
}

.cta-crop+.spacer-xxl {
    padding-top: 300px;
}

.border-bottom {
    transition: all .3s ease;
}

.scrolled .border-bottom {
    border-color: transparent !important;
}

/* When scrolled */
.header.scrolled {
    /* backdrop-filter: blur(5px); */
    background: var(--background-color);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.form-control:focus,
.form-control {
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, .1);
    background-color: rgba(0,0,0,0.3);
    padding: 16px 20px;
    border-radius: 10px;
    color: var(--font-color);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, .8) !important;
}

.form-wrapper,
.footer .contact-form {
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 30px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(5px);
}

.footer::before {
    content: '';
    height: 100%;
    width: 100%;
    background: url(../images/location-image.webp);
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .1;
    z-index: -1;
}

#formResponse {
    display: none;
}

/* .template-info-icon img {
    max-width: 30px;
    max-height: 30px;
} */
.template-info-block {
    justify-content: flex-end;
    column-gap: 50px;
}

.template-info-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.template-info-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
}

.template-info-icon {
    background: var(--white-color);
    padding: 10px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

/* Faq Block */

.accordion-flush .accordion-item .accordion-button.collapsed {
    padding: 32px 0;
    font-size: 22px;
    font-weight: 600;
    transition: all 0.3s;
}

.faq .accordion-button, .faq .accordion-item {
    background: transparent !important;
    color: var(--black-color) !important;
}

.faq-blocks .accordion-item {
    border-top: 1px solid #BEDBE0 !important;
}

.faq-blocks .accordion:last-child {
    border-bottom: 1px solid #BEDBE0 !important;
}

.faq-blocks .accordion-button {
    padding: 40px 0;
    font-size: 24px;
    gap: 15px;
    transition: all 0.3s;
    font-weight: 400 !important;
}

.faq-blocks .accordion-body {
    padding: 0 300px 20px 0;
    text-align: left;    
}

.faq-blocks .accordion-button:focus {
    box-shadow: none !important;
}

.accordion-button::after {
    filter: invert(1) grayscale(1) brightness(10);
}

.hero-wrap #contactForm {
    gap: 10px !important;
}

@media (min-width: 1200px) {

    section h1,
    section .h1 {
        font-size: clamp(4.875rem, -13.0625rem + 20.5vw, 7.4375rem) !important;
    }

    section h2,
    section .h2 {
        font-size: clamp(3.5rem, -6.125rem + 11vw, 4.875rem) !important;
    }

    section h3,
    section .h3 {
        font-size: clamp(2.375rem, -5.5rem + 9vw, 3.5rem) !important;
    }

    section h4,
    section .h4 {
        font-size: clamp(2rem, -0.625rem + 3vw, 2.375rem) !important;
    }

    section h5,
    section .h5 {
        font-size: clamp(1.75rem, 0rem + 2vw, 2rem) !important;
    }

    section h6,
    section .h6 {
        font-size: clamp(1.5rem, -0.25rem + 2vw, 1.75rem) !important;
    }
}

@media (max-width: 1199px) {
    body {
        font-size: clamp(0.875rem, 0.645rem + 0.64vw, 1.125rem);
    }

    section h1,
    section .h1 {
        font-size: clamp(2.375rem, 0.075rem + 6.4vw, 4.875rem);
    }

    section h2,
    section .h2 {
        font-size: clamp(2rem, 0.62rem + 3.84vw, 3.5rem);
    }

    section h3,
    section .h3 {
        font-size: clamp(1.75rem, 1.175rem + 1.6vw, 2.375rem);
    }

    section h4,
    section .h4 {
        font-size: clamp(1.5rem, 1.04rem + 1.28vw, 2rem);
    }

    section h5,
    section .h5 {
        font-size: clamp(1.125rem, 0.55rem + 1.6vw, 1.75rem);
    }

    section h6,
    section .h6 {
        font-size: clamp(1rem, 0.54rem + 1.28vw, 1.5rem);
    }
}



@media (max-width: 991px) {
    .map-sec iframe {
        height: 300px;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .sq-img {
        aspect-ratio: 4/3;
    }
}

@media (max-width: 767px) {
    .map-card h3 {
        position: static;
        transform: unset;
        box-shadow: none;
        padding: 0;
        text-align: left;
        border: 0;
        background: transparent;
    }

    .template-info-wrapper > a + div {
        display: none;
    }
}

@media (max-width: 575px) {
    .logo {
        width: 80px;
    }

    .button {
        font-size: 14px;
        gap: 10px;
    }

    .button svg {
        height: 30px;
        width: 30px;
        padding: 9px;
    }

    .property-image img {
        height: 240px;
    }

    .cta-crop+.spacer-xxl {
        padding-top: 250px;
    }

    .sq-img {
        aspect-ratio: 16/9;
    }
}