:root {
    --page-primary-bg: #3061F6;
    --page-secondary-bg: #03080F;
    --page-fade: #E0F2FF;
    --text-theme: #1E1E1E;
    --text-grey: #2F2F2F;
    --tick-icon: url(../images/realestate-img/check-icon.webp);
    --tick-icon-2: url(../images/realestate-img/tick-icon-2.webp);
}

.page-primary {
    background: var(--page-primary-bg);
}

.page-secondary {
    background: var(--page-secondary-bg);
}

.page-fade {
    background-color: var(--page-fade);
}

.text-theme {
    color: var(--text-theme);
}

.text-light {
    color: #B3B3B3 !important;
}

.text-grey {
    color: var(--text-grey);
}

.button-primary,
.button-primary:hover {
    color: var(--white-color);
    background-color: var(--page-primary-bg) !important;
    font-weight: 600 !important;
}

.button-secondary,
.button-secondary:hover {
    color: var(--white-color);
    border: 1px solid #ffffff;
    background-color: #ffffff30 !important;
    font-weight: 600 !important;
    backdrop-filter: blur(8px);
}

.highlight-text {
    color: var(--page-primary-bg) !important;
}

.button svg {
    animation: pulso-effect 2s infinite;
    border-radius: 100px;
}

.sections-wrapper .text-white {
    color: var(--white-color) !important;
}

.z-1 {
    z-index: 1;
    position: relative;
}

.link-white,
.link-white:hover {
    color: var(--white-color) !important;
    text-decoration: underline !important;
}

@keyframes pulso-effect {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }

    70% {
        -moz-box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

h1,h2,h3,h4,h5,h6 {
    color: var(--text-theme) !important;
}

.section-wrapper h1,
.section-wrapper .h1,
.section-wrapper h2,
.section-wrapper .h2,
.section-wrapper h3,
.section-wrapper .h3,
.section-wrapper h4,
.section-wrapper .h4,
.section-wrapper h5,
.section-wrapper .h5,
.section-wrapper h6,
.section-wrapper .h6,
p {
    font-family: 'Gilroy' !important;
}

.section-wrapper .w-normal {
    font-weight: 400 !important;
}

/* Hero Intro */

.hero-intro {
    background-image: url(../images/realestate-img/banner-intro.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.tick-list {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 15px;
}

.tick-list li {
    font-size: 19px;
    padding: 0 0 0 34px;
    position: relative;
    color: var(--white-color);
}

.tick-list li::before {
    content: '';
    background-image: var(--tick-icon);
    display: inline-block;
    position: absolute;
    inset: 2px auto 0 0;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Business Block */

.busniess-block {
    width: 100%;
    height: 100%;
    padding: 30px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 1px solid #DEDEDE;
    background-color: var(--white-color);
}

.business-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s;
    background-color: var(--page-primary-bg);
}

.business-icon img {
    filter: brightness(0) invert();
    transition: all 0.3s;
}

.busniess-block:hover {
    background-color: var(--page-primary-bg);
    border-color: var(--page-primary-bg);
}

.busniess-block:hover .business-icon {
    background-color: var(--white-color);
}

.busniess-block:hover .business-icon img {
    filter: unset;
}

.busniess-block:hover h4,
.busniess-block:hover p {
    color: var(--white-color) !important;
}

/* Packages Intro */

.packages-intro {
    position: relative;
    background-color: var(--page-fade);
}

.packages-intro::before {
    content: '';
    position: absolute;
    background-color: var(--white-color);
    inset: auto 0 0 0;
    margin: auto;
    width: 100%;
    height: calc(100% - 50%);
}

.packages--block {
    border-radius: 10px;
    padding: 30px 0;
    margin: 0 30px;
    width: 100%;
    height: 100%;
    position: relative;
    background-color: var(--white-color);
    box-shadow: 0px 0px 14px 0px #00000026;
}

.packages--block .package-title {
    background-color: var(--page-primary-bg);
    padding: 20px;
    text-align: center;
    position: relative;
    margin: 0 -30px;
}

.package-title::before,
.package-title::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -28px;
    width: 30px;
    height: 29px;
    background: var(--page-primary-bg);
    clip-path: polygon(100% 100%, 0% 0%, 100% 0%);
}

.package-title::after {
    left: auto;
    right: 0px;
    clip-path: polygon(0% 100%, 100% 0%, 0% 0%);
}

.package-details {
    padding: 30px 30px;
    text-align: center;
    border-bottom: 1px solid #E2E2E2;
}

.packages--block .tick-list {
    padding: 30px 30px;
}

.packages--block .tick-list li {
    color: var(--text-theme) !important;
}

.packages--block .tick-list li::before {
    background-image: var(--tick-icon-2);
    width: 22px;
    height: 22px;
    inset: 4px auto 0 0;
}

.blur--effect {
    filter: blur(6px);
}

.qoute-link {
    background: linear-gradient(270deg, #59389C 0%, #3739A8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
}


/* Steps Slider */

.steps--slider .swiper-slide {
    height: auto !important;
    user-select: text !important;
    -webkit-user-select: text !important;
    -ms-user-select: text !important;
}

.cursor {
    position: fixed;
    left: var(--cursor-x);
    top: var(--cursor-y);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 20px;
    font-weight: 600;
    background: var(--page-primary-bg);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}

body.show-custom-cursor .cursor {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.step-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 20px;
}

.steps--block {
    padding: 30px 30px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: 1px solid #F0F0F0;
    position: relative;
}

.step--count {
    color: #DAE3FF;
    font-size: clamp(40px, 11vw, 300px);
    font-weight: 700;
    line-height: 1.1;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: -1;
    opacity: 0.9;
}

.slider-button {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 40px 0 0;
}

.slider-button .swiper-button-next,
.slider-button .swiper-button-prev {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border: unset;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    background-color: var(--page-primary-bg);
    color: var(--white-color);
    margin: unset !important;
    z-index: 1 !important;
    transition: ease-in 0.3s;
    border: 1px solid var(--page-primary-bg);
}

.slider-button .swiper-button-next:hover,
.slider-button .swiper-button-prev:hover {
    background: var(--page-primary-bg);
    border-color: var(--page-primary-bg);
    color: var(--white-color);
    transition: ease-in 0.3s;
}

.slider-button .swiper-button-next:after,
.slider-button .swiper-button-prev:after {
    font-size: 20px;
}

/* CTA */

.cta--block {
    background-color: var(--page-primary-bg);
    padding: 50px 50px;
    border-radius: 20px;
}

.cta--intro {
    overflow: hidden;
    position: relative;
    padding: 90px 90px;
    border-radius: 30px;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--page-primary-bg);
    background-image: url(../images/realestate-img/cta-intro.webp);
}

.cta--intro img {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    width: 100%;
    max-width: 290px;
}

/* Faq Block */

.new-faq .accordion-item {
    padding: 36px 0px !important;
}

.section-wrapper .new-faq .accordion-item h2.accordion-header button {
    font-size: 26px !important;
}

/* Responsive */

@media only screen and (max-width: 1599px) {

    .padding-left {
        --page-width: 1200px !important;
        padding-left: calc(50% -(var(--page-width) / 2) + 12px);
    }
    
    .padding-right {
        --page-width: 1200px !important;
        padding-right: calc(50% -(var(--page-width) / 2) + 12px);
    }
}

@media only screen and (max-width: 991px) {

    .spacer-xl {
        padding: 70px 0;
    }

    .tick-list {
        width: fit-content;
        margin-inline: auto;
    }

    .busniess-block {
        padding: 20px 20px;
    }

    .faq-section .accordion-button {
        gap: 20px;
    }

    .cta--intro,
    .cta--block {
        padding: 50px 20px;
    }

    .cta--intro img {
        opacity: 0.4;
        max-width: 190px;
    }

    .packages--block {
        padding: 20px 0;
        margin: 0 20px;
    }

    .package-details,
    .packages--block .tick-list {
        padding: 20px 20px;
    }

    .packages--block .package-title {
        margin: 0 -20px;
    }

    .package-title::before, .package-title::after {
        bottom: -22px;
        width: 20px;
        height: 22px;
    }
}

@media only screen and (max-width: 767px) {
    
    .mb-50 {
        margin-bottom: 30px !important;
    }

    .section-wrapper .new-faq .accordion-item h2.accordion-header button {
        font-size: 19px !important;
        line-height: 30px;
    }
}