/*
1. ROOT
2. *
3. HTML
4. BODY
5. SCROLLBAR
6. TEXT
7. DIVIDER
8. INPUT / SELECT
9. IMAGE
10. GRADIENT TEXT, ANIM, BG
11. BUTTOM
12. SEARCHABLE DROPDOWN
13. CARD
14. HEADER
15. HOME
16. FEATURED PROPERTY
17. WISHLIST
18. SLIDER FEATURED
19. HERO ICON
20. HIGHLIGHT
21. FOOTER
22. LISTINGS
23. MODAL
24. CONTACT
25. TOOLTIP
26. LOADER
*/

/* FONT */
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100..900&display=swap");

/* ROOT */
:root {
    --primary: #c2b080;
    --primary-rgb: 194, 176, 128;
    --gold-1: #c4ae7a;
    --gold-1-rgb: 196, 174, 122;
    --gold-2: #dccc98;
    --gold-2-rgb: 220, 204, 152;
    --gold-3: #dfcea0;
    --gold-3-rgb: 223, 206, 160;
    --gold-4: #cbb785;
    --gold-4-rgb: 203, 183, 133;
    --gold-5: #bcab7d;
    --gold-5-rgb: 188, 171, 125;
    --black: #000000;
    --white: #ffffff;
    --red: #da1f26;
    --green: #da1f26;
    --fade-black: #212529;
    --text: #eeeeee;

    --color-bg1: rgb(8, 10, 15);
    --color-bg2: rgb(0, 17, 32);
    --circle-size: 70%;
    --blending: hard-light;
}
.primary-bg {
    background-color: var(--primary);
    color: var(--black);
}
.primary-text {
    color: var(--primary) !important;
}
* {
    margin: 0;
    padding: 0;
    /* scrollbar-width: thin; */
    /* scrollbar-color: var(--primary) var(--black); */
    outline: none;
    /* list-style: none; */
    /* text-decoration: none; */
    box-sizing: border-box;
    color: var(--text);
    background: transparent;
    border: none;
    /* font-size: small !important; */
}
html {
    line-height: 1.5;
    /* font-size: small !important; */
    /* scroll-behavior: smooth; */
    /* overflow-x: hidden; */
}
body {
    /* background: linear-gradient(
        to bottom right,
        #111111,
        #333333,
        #111111,
        #666666,
        #000000,
        #111111
    ); */
    color: var(--white);
    font-weight: 200;
    overflow-x: hidden;
    overflow-y: scroll;
    direction: ltr;
    font-family: "Raleway";
    /* font-size: small !important; */
}
/* SCROLLBAR */
::-webkit-scrollbar {
    background-color: var(--black);
    width: 6px;
    height: auto;
}
::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 0px;
}
::-webkit-scrollbar-track {
    background-color: var(--black);
    border-radius: 0px;
}
/* TEXT */
div,
p,
a {
    font-size: small !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
p,
a {
    margin: 0;
    text-decoration: none;
    color: var(--white);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 200;
}
h1 {
    text-transform: uppercase;
    font-weight: 200;
}
.small-font {
    font-size: 0.8em;
}
.smaller-font {
    font-size: 0.7em;
}
.text-align-change {
    text-align: start;
}
/* DIVIDER */
.container {
    padding: 0 5%;
    width: 100vw !important;
}
.row {
    flex-wrap: wrap;
}
.section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.divider {
    margin: 15px auto;
    width: 50%;
    border: 0;
    height: 1px;
    background-image: linear-gradient(
        to right,
        var(--gold-1),
        var(--gold-2),
        var(--gold-3),
        var(--gold-4),
        var(--gold-5)
    );
}
.semi-divider {
    margin: 15px auto;
    width: 25%;
    border: 0;
    height: 1px;
    background-image: linear-gradient(
        to right,
        var(--gold-1),
        var(--gold-2),
        var(--gold-3),
        var(--gold-4),
        var(--gold-5)
    );
}
.full-divider {
    margin: 15px auto;
    width: 100%;
    border: 0;
    height: 1px;
    background-image: linear-gradient(
        to right,
        var(--gold-1),
        var(--gold-2),
        var(--gold-3),
        var(--gold-4),
        var(--gold-5)
    );
}
.divider-start {
    margin: 15px 0;
    width: 50%;
    border: 0;
    height: 1px;
    background-image: linear-gradient(
        to right,
        var(--gold-1),
        var(--gold-2),
        var(--gold-3),
        var(--gold-4),
        var(--gold-5)
    );
}
.semi-divider-start {
    margin: 15px 0;
    width: 25%;
    border: 0;
    height: 1px;
    background-image: linear-gradient(
        to right,
        var(--gold-1),
        var(--gold-2),
        var(--gold-3),
        var(--gold-4),
        var(--gold-5)
    );
}
.gap-50 {
    height: 50px;
}
/* INPUT */
input {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    width: 100% !important;
    padding: 9px 10px;
    box-sizing: border-box;
    border-radius: 6px;
    font-weight: 400;
    accent-color: var(--primary);
    font-size: small;
}
select {
    background: var(--black);
    color: var(--text);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    width: 100%;
    padding: 4px 8px;
    box-sizing: border-box;
    border-radius: 4px;
    margin-bottom: 10px;
    min-width: 120px;
}
select option {
    background: var(--black);
    color: #ccc;
    border: 1px solid rgba(var(--primary-rgb), 0.1);
    width: 100%;
    padding: 4px 8px;
}
label {
    width: 100%;
}

.contact-form label {
    font-weight: 500;
}
.contact-form input {
    color: white;
    width: 100% !important;
    padding: 9px 10px;
    box-sizing: border-box;
    border-radius: 6px;
    font-weight: 400;
    accent-color: var(--primary);
    font-size: small;
    border-width: 1.5px;
    background: linear-gradient(
        86.16deg,
        rgba(255, 217, 136, 0.145) 11.14%,
        rgba(255, 229, 164, 0.035) 113.29%
    );
    border: 1.5px solid;
    border-image-source: linear-gradient(
        155.31deg,
        rgba(226, 221, 168, 0.5) 12.33%,
        rgba(255, 255, 255, 0) 34.31%,
        rgba(255, 255, 255, 0) 52.66%,
        rgba(244, 230, 194, 0.63) 74.67%
    );
    backdrop-filter: blur(38px);
    box-shadow: 0px 1.2px 109.92px 0px rgba(229, 194, 114, 0.1),
        5px 5px 45px 0px rgba(255, 255, 255, 0.1) inset;
}
.contact-form select {
    color: white;
    width: 100% !important;
    padding: 9px 10px;
    box-sizing: border-box;
    border-radius: 6px;
    font-weight: 400;
    accent-color: var(--primary);
    font-size: small;
    border-width: 1.5px;
    background: linear-gradient(
        86.16deg,
        rgba(255, 217, 136, 0.145) 11.14%,
        rgba(255, 229, 164, 0.035) 113.29%
    );
    border: 1.5px solid;
    border-image-source: linear-gradient(
        155.31deg,
        rgba(226, 221, 168, 0.5) 12.33%,
        rgba(255, 255, 255, 0) 34.31%,
        rgba(255, 255, 255, 0) 52.66%,
        rgba(244, 230, 194, 0.63) 74.67%
    );
    backdrop-filter: blur(38px);
    box-shadow: 0px 1.2px 109.92px 0px rgba(229, 194, 114, 0.1),
        5px 5px 45px 0px rgba(255, 255, 255, 0.1) inset;
}
.contact-form textarea {
    color: white;
    width: 100% !important;
    padding: 9px 10px;
    box-sizing: border-box;
    border-radius: 6px;
    font-weight: 400;
    accent-color: var(--primary);
    font-size: small;
    border-width: 1.5px;
    background: linear-gradient(
        86.16deg,
        rgba(255, 217, 136, 0.145) 11.14%,
        rgba(255, 229, 164, 0.035) 113.29%
    );
    border: 1.5px solid;
    border-image-source: linear-gradient(
        155.31deg,
        rgba(226, 221, 168, 0.5) 12.33%,
        rgba(255, 255, 255, 0) 34.31%,
        rgba(255, 255, 255, 0) 52.66%,
        rgba(244, 230, 194, 0.63) 74.67%
    );
    backdrop-filter: blur(38px);
    box-shadow: 0px 1.2px 109.92px 0px rgba(229, 194, 114, 0.1),
        5px 5px 45px 0px rgba(255, 255, 255, 0.1) inset;
}
.iti {
    direction: ltr;
    width: 100%;
    /* margin-bottom: 10px; */
}

.iti__country-list {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
}

.iti__country {
    direction: ltr;
    padding: 5px 10px !important;
    /* background-color: var(--black) !important; */
    /* border-radius: 5px !important; */
    margin: 5px !important;
    color: #eee;
    /* box-shadow: 0px 1px 4px rgba(238, 238, 238, 0.4); */
}

.iti__arrow {
    display: none !important;
    color: #797979;
    border-top: 4px solid #797979;
}

.iti__flag {
    display: flex !important;
}

.iti .iti__selected-dial-code {
    color: var(--primary) !important;
    font-weight: 400;
}

.iti--fullscreen-popup .iti__dropdown-content {
    background: #333;
}

.iti__search-input {
    margin: 0;
}

.iti__flag {
    display: none !important;
}

.iti__selected-flag {
    padding-left: 0 !important;
}

.iti__selected-country-primary {
    padding: 0;
}

.is-invalid {
    color: #da1f26;
}

#contactError,
#emailError {
    font-size: smaller;
    background: #da1f26;
    color: #fff;
}

/* IMAGE */
img {
    display: block;
    /* max-width: 100%; */
}
.p-img {
    max-width: 100%;
    width: 250px;
    height: 110px;
    border-radius: 5px;
    object-fit: cover;
    object-position: center;
}
.featured-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
    /* border: 1px solid rgba(var(--primary-rgb), 0.3); */
    /* box-shadow: 0 0 4px rgba(var(--primary-rgb), 0.3); */
}
.listings-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.consultant-img {
    border-radius: 5px;
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    box-shadow: 0 0 4px rgba(var(--primary-rgb), 0.3);
    width: 120px;
    height: 120px;
}

/* IMAGES */
.gallery-card {
    background: linear-gradient(
        86.16deg,
        rgba(255, 217, 136, 0.145) 11.14%,
        rgba(255, 229, 164, 0.035) 113.29%
    );
    border-radius: 8px;
    border-width: 1.5px;
    padding: 10px;
    border: 1.5px solid;
    border-image-source: linear-gradient(
        155.31deg,
        rgba(226, 221, 168, 0.5) 12.33%,
        rgba(255, 255, 255, 0) 34.31%,
        rgba(255, 255, 255, 0) 52.66%,
        rgba(244, 230, 194, 0.63) 74.67%
    );
    backdrop-filter: blur(38px);
    box-shadow: 0px 1.2px 109.92px 0px rgba(229, 194, 114, 0.1),
        5px 5px 45px 0px rgba(255, 255, 255, 0.1) inset;
}

#listing-images {
    padding: 0 5%;
}
.sl-img-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.sl-img {
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.sl-img-banner {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(var(--primary-rgb), 0.5);
}
.sl-img-additional {
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border: 1px solid rgba(var(--primary-rgb), 0.5);
}
.flag-img {
    border: 1px solid rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 0 5px rgba(var(--primary-rgb), 0.4);
}

/*GRADIENT TEXT*/
.gold-grad {
    background-image: linear-gradient(
        to bottom right,
        var(--gold-1) 0%,
        var(--gold-2) 10%,
        var(--gold-3) 20%,
        var(--gold-4) 30%,
        var(--gold-5) 40%,
        var(--gold-4) 50%,
        var(--gold-3) 60%,
        var(--gold-2) 70%,
        var(--gold-1) 80%,
        var(--gold-2) 90%,
        var(--gold-3) 100%
    );
    background-size: 150%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 1px rgba(255, 200, 0, 0.3));
    font-weight: 600;
}
/*GOLD GRADIENT ANIMATION*/
.gold-grad-anim {
    background-image: repeating-linear-gradient(
        to bottom right,
        var(--gold-1) 0%,
        var(--gold-2) 5%,
        var(--gold-3) 10%,
        var(--gold-4) 15%,
        var(--gold-5) 20%,
        var(--gold-4) 25%,
        var(--gold-3) 30%,
        var(--gold-2) 35%,
        var(--gold-1) 40%,
        var(--gold-2) 45%,
        var(--gold-3) 50%,
        var(--gold-4) 55%,
        var(--gold-5) 60%,
        var(--gold-4) 65%,
        var(--gold-5) 70%,
        var(--gold-4) 75%,
        var(--gold-3) 80%,
        var(--gold-2) 85%,
        var(--gold-1) 90%,
        var(--gold-2) 100%
    );
    background-size: 150%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 1px rgba(255, 200, 0, 0.3));
    animation: MoveBackgroundPosition 4s ease-in-out infinite;
}
@keyframes MoveBackgroundPosition {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 150%;
    }

    100% {
        background-position: 0% 50%;
    }
}
/* GRADIENT BG */
.gradient-bg {
    position: fixed;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
}
.gradient-bg .svgBlur {
    display: none;
}
.gradient-bg .noiseBg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    mix-blend-mode: soft-light;
    opacity: 0.3;
}
.gradient-bg .gradients-container {
    filter: url(#goo) blur(40px);
    width: 100%;
    height: 100%;
}
.gradient-bg .g1,
.g2,
.g3,
.g4,
.g5 {
    position: absolute;
    background: radial-gradient(
            circle at center,
            rgba(var(--gold-1-rgb), 0.15) 0,
            rgba(var(--gold-2-rgb), 0) 50%
        )
        no-repeat;
    mix-blend-mode: var(--blending);
    width: var(--circle-size);
    height: var(--circle-size);
    transform-origin: center;
    opacity: 1;
}
.gradient-bg .g1 {
    animation: moveVertical 30s ease infinite;
}
.gradient-bg .g2 {
    animation: moveInCircle 20s reverse infinite;
}
.gradient-bg .g3 {
    animation: moveInCircle 40s linear infinite;
}
.gradient-bg .g4 {
    animation: moveHorizontal 40s ease infinite;
    opacity: 0.7;
}
.gradient-bg .g5 {
    animation: moveInCircle 20s ease infinite;
}
.gradient-bg .interactive {
    position: absolute;
    background: radial-gradient(
            circle at center,
            rgba(var(--primary-rgb), 0.5) 0,
            rgba(var(--primary-rgb), 0) 50%
        )
        no-repeat;
    mix-blend-mode: var(--blending);
    width: 100%;
    height: 100%;
    top: -50%;
    left: -50%;
    opacity: 0.7;
}
@keyframes moveInCircle {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes moveVertical {
    0% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(-50%);
    }
}
@keyframes moveHorizontal {
    0% {
        transform: translateX(-50%) translateY(-10%);
    }
    50% {
        transform: translateX(50%) translateY(10%);
    }
    100% {
        transform: translateX(-50%) translateY(-10%);
    }
}
/* CUSTOM BUTTON */
.custom-btn {
    all: unset;
    background-color: var(--black);
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 0 4px rgba(38, 38, 38, 0.5);
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    cursor: pointer;
}
.custom-btn:not(.toggled)::after {
    animation: sheen 7s infinite;
}
.custom-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(
        to bottom,
        var(--gold-1),
        var(--gold-2),
        var(--gold-3),
        var(--gold-4),
        var(--gold-5)
    );
    transform: rotateZ(60deg) translate(-5em, 7.5em);
}
@keyframes sheen {
    100% {
        transform: rotateZ(60deg) translate(1em, -9em);
    }
}
.primary-btn {
    background-color: var(--primary);
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    border: 1px solid rgba(238, 238, 238, 0.3);
    box-shadow: 0 0 4px rgba(38, 38, 38, 0.5);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.04em;
    font-size: small !important;
    z-index: 3;
}
.primary-btn:hover {
    background-color: var(--black);
}
.plain-btn {
    background: var(--black);
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    border: 1px solid rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 0 4px rgba(38, 38, 38, 0.5);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.04em;
    width: auto;
    z-index: 3;
}
.plain-btn:hover {
    background: linear-gradient(
        to right,
        var(--gold-1),
        var(--gold-2),
        var(--gold-3),
        var(--gold-4),
        var(--gold-5)
    );
    color: var(--black);
    border-color: var(--white);
}
/* SEARCHABLE DROPDOWN */
.dropdown-container {
    position: relative;
    display: inline-block;
    width: 100%;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--black);
    color: var(--white);
    box-shadow: 0px 8px 16px 0px rgba(238, 238, 238, 0.2);
    z-index: 1;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
}
.dropdown-content div {
    color: var(--white);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-content div:hover {
    background-color: var(--primary);
}
.dropdown-container .show {
    display: block;
}
.input-clear-btn {
    height: 80%;
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
}
/* CARD */
.card-plain {
    position: relative;
    background-color: var(--black);
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.4);
}
.card-black {
    position: relative;
    background-color: var(--black);
    background: rgba(0, 0, 0, 0.18);
    border-radius: 5px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.4);
}
.card-black::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    backdrop-filter: blur(10.2px);
    /* -webkit-backdrop-filter: blur(10.2px); */
    z-index: -1;
}
.card-black:hover {
    background: rgba(0, 0, 0, 0.9);
}

.bordered-card {
    width: 100%;
    max-width: 300px;
    height: 100%;
    border-radius: 8px;
    display: flex;
    position: relative;
    padding: 1.5px;
    background: transparent;
}
.bordered-card::before {
    content: "";
    position: absolute;
    bottom: 0px;
    height: 100%;
    border-radius: 8px;
    padding: 1.5px;
    background: linear-gradient(
        155.31deg,
        rgba(226, 221, 168, 0.5) 12.33%,
        rgba(255, 255, 255, 0) 34.31%,
        rgba(255, 255, 255, 0) 52.66%,
        rgba(244, 230, 194, 0.63) 74.67%
    );
    -webkit-mask: linear-gradient(white 0 00%) content-box,
        linear-gradient(white 0 00%);
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    inset: 0px 0px;
}
.bordered-content {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(
        86.16deg,
        rgba(255, 217, 136, 0.029) 11.14%,
        rgba(255, 229, 164, 0.007) 113.29%
    );
    backdrop-filter: blur(38px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    /* z-index: 2; */
}

/* HEADER */
.logo {
    height: 50px;
    width: auto;
    object-fit: cover;
}
header {
    position: absolute;
    top: 0;
    width: 100vw;
    z-index: 5;
    text-transform: uppercase;
    padding: 10px;
}
.header-main {
    padding: 10px 0;
    color: var(--white);
}
header .active {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--primary) !important;
    padding: 2px 8px;
    font-weight: 500;
}
.menu-items {
    display: flex;
    width: 100%;
}
.menu-items.open {
    display: flex;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    transition: transform 0.3s ease-in-out;
}
.header-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    z-index: 3;
    cursor: pointer;
}
.toggle-icon {
    font-size: 18px !important;
    text-align: center;
    color: var(--primary);
    cursor: pointer;
}
.crose-icon {
    font-size: 18px !important;
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--primary);
    cursor: pointer;
}
.flag-icon {
    height: 12px;
    width: auto;
    border: 1px solid rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 0 5px rgba(var(--primary-rgb), 0.5);
}
/* HOME */
.home-bg {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100vw;
    /* background-color: var(--black); */
    /* opacity: 0.3; */
}
.home-bg video {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
}
.home-content {
    min-height: 90vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 40px;
}
/* FEATURED PROPERTY */
.featured-property {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: flex;
    position: relative;
    padding: 1.5px;
    background: transparent;
}

.featured-property::before {
    content: "";
    position: absolute;
    bottom: 0px;
    height: 100%;
    border-radius: 8px;
    padding: 1.5px;
    background: linear-gradient(
        155.31deg,
        rgba(226, 221, 168, 0.5) 12.33%,
        rgba(255, 255, 255, 0) 34.31%,
        rgba(255, 255, 255, 0) 52.66%,
        rgba(244, 230, 194, 0.63) 74.67%
    );
    -webkit-mask: linear-gradient(white 0 00%) content-box,
        linear-gradient(white 0 00%);
    -webkit-mask-composite: exclude;
    mask-composite: exclude;
    inset: 0px 0px;
}
.featured-content {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(
        86.16deg,
        rgba(255, 217, 136, 0.029) 11.14%,
        rgba(255, 229, 164, 0.007) 113.29%
    );
    backdrop-filter: blur(38px);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    /* z-index: 2; */
}
/* WISHLIST */
.wishlist {
    position: absolute;
    right: 20px;
    top: 10px;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
/* .wishlist {
    background: rgba(248, 21, 44, 0.12);
} */
/* SLIDER */
.slider {
    margin: 0 auto;
    padding: 20px;
    position: relative;
}
.slick-dots {
    bottom: -20px;
}
.slick-prev,
.slick-next {
    position: relative !important;
    left: 0px !important;
    right: 0px !important;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background-color 0.3s ease;
}
.slick-prev:hover,
.slick-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--primary);
}
/* HIGHLIGHT */
.highlight-icon {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.highlight-icon a {
    background: linear-gradient(
        to bottom right,
        var(--gold-1),
        var(--gold-2),
        var(--gold-3),
        var(--gold-4),
        var(--gold-5),
        var(--gold-1),
        var(--gold-2),
        var(--gold-3),
        var(--gold-4),
        var(--gold-5)
    );
    color: var(--white);
    height: 100px;
    width: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
}
.highlight-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.highlight {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ABOUT */
.about-why {
    text-align: end;
    font-size: 130px !important;
    color: rgba(var(--primary-rgb), 0.3);
    font-weight: 500;
    line-height: 0.6;
}

/* FOOTER */
footer {
    width: 100vw !important;
    overflow: hidden;
}
/* .social-links {
    z-index: 5;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
} */

/* .social-links::before {
    z-index: -1;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background-image: linear-gradient(
        to bottom,
        var(--gold-1),
        var(--gold-2),
        var(--gold-3),
        var(--gold-4),
        var(--gold-5)
    );
} */
.social-links {
    position: relative;
    height: auto;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 10px;
}
.social-links::before {
    z-index: -1;
    content: "";
    width: 0px;
    height: 0%;
    background: transparent;
}
.social-circle {
    height: 35px;
    width: 35px;
    border-radius: 50%;
    border: 1px solid var(--primary);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
}
.social-circle:hover {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.8);
}

/* ICONS */
.icon18 {
    font-size: 18px;
}
i {
    color: #aaa !important;
}

/* LISTINGS */
.nav {
    justify-content: center;
    align-items: center;
}

.nav-tabs {
    border: none;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--white);
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--primary);
}

.nav-item a {
    color: #cccccc;
}

.nav-item:hover {
    border: none;
    color: var(--primary);
}

.nav-item a:hover {
    color: var(--primary);
}
.pag-listings {
    justify-content: end;
}

.pag-listings a {
    padding: 5px 10px;
    margin: 0 2px;
    text-decoration: none;
    color: var(--primary);
    border-radius: 4px;
}

.pag-listings a.active {
    background-color: rgba(var(--primary-rgb), 0.5);
    color: white;
    border-color: var(--primary);
}

/* MODAL */
.modal-overlay {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    /* pointer-events: none; */
}
.modal-backdrop {
    display: none;
}
.modal-content {
    position: relative;
    width: auto;
    height: auto;
    max-width: 80vh;
    max-height: 80vh;
    background-color: transparent;
    pointer-events: auto;
}
.modal-close {
    z-index: 1;
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--primary);
    border-radius: 50%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.4);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-close:hover {
    background: var(--primary);
    color: var(--white);
}
#promoVideo {
    width: auto;
    height: auto;
    max-width: 90vh;
    max-height: 90vh;
}

/* CONTACT */
.contact-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), 0.5);
    box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.5);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 2s;
}
.contact-circle:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* TOOLTIP */
.tooltip.show {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 2px;
    padding: 5px 8px;
    font-size: small !important;
    text-align: center;
}
.tooltip.show .tooltip-arrow {
    border-top-color: rgba(0, 0, 0, 0.5) !important;
}
.tooltip.show.tooltip-inner {
    background-color: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    max-width: 200px;
    padding: 5px 8px;
    text-align: center;
}
.tooltip.fade .tooltip-inner {
    transition: all 0.3s ease-in-out;
}
.tooltip {
    box-shadow: 0px 0px 10px rgba(var(--primary), 0.4);
}

/* TEAM */
.agent-card {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 5px;
    background: var(--black);
    box-shadow: 0 0 5px rgba(238, 238, 238, 0.3);
    transition: transform 0.6s;
    user-select: none;
}

.agent-card img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    object-position: top center;
}

.agent-detail {
    text-align: start;
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 1;
}

.agent-detail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    z-index: -1;
    border-radius: inherit;
}

/* LOADER */
#loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(50, 49, 49, 0.8);
    z-index: 9999;
}

#loader img {
    width: 100px;
    height: 100px;
}

/* NEW CSS */
.smaller-text {
    font-size: 11px !important;
}
.feature-card {
    background: rgba(203, 183, 133, 1);
    border: 1px solid rgba(38, 38, 38, 1);
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 32px;
}
.hero-btn {
    background: rgba(203, 183, 133, 1);
    box-shadow: 0px 0px 25px 0px rgba(223, 206, 160, 1);
    color: white;
    border-radius: 7px;
    padding: 10px;
    z-index: 3;
    cursor: pointer;
}
.prim-btn {
    background: rgba(203, 183, 133, 1);
    color: white;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(38, 38, 38, 1);
    z-index: 3;
    cursor: pointer;
}
.prim-btn:hover {
    background: rgba(203, 183, 133, 0.5);
    color: white !important;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(var(--primary-rgb), 1);
    z-index: 3;
    cursor: pointer;
}
.white-btn {
    color: rgba(203, 183, 133, 1);
    background: white;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(38, 38, 38, 1);
    z-index: 3;
    cursor: pointer;
}
.white-btn:hover {
    background: rgba(203, 183, 133, 0.5);
    color: white !important;
    border-radius: 10px;
    padding: 10px;
    border: 1px solid rgba(var(--primary-rgb), 1);
    z-index: 3;
    cursor: pointer;
}
.hero-search-card {
    padding: 7px 20px;
    width: 100%;
    border-width: 1.5px;
    border-radius: 8px;
    background: linear-gradient(
        86.16deg,
        rgba(255, 217, 136, 0.145) 11.14%,
        rgba(255, 229, 164, 0.035) 113.29%
    );
    border: 1.5px solid;
    border-image-source: linear-gradient(
        155.31deg,
        rgba(226, 221, 168, 0.5) 12.33%,
        rgba(255, 255, 255, 0) 34.31%,
        rgba(255, 255, 255, 0) 52.66%,
        rgba(244, 230, 194, 0.63) 74.67%
    );
    backdrop-filter: blur(38px);
    box-shadow: 0px 1.2px 109.92px 0px #e5c2721a,
        5px 5px 45px 0px #ffffff1a inset;
}
.scroll-display {
    color: #eee;
    padding: 10px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-width: 1.5px;
    border-radius: 50%;
    background: linear-gradient(
        86.16deg,
        rgba(255, 217, 136, 0.145) 11.14%,
        rgba(255, 229, 164, 0.035) 113.29%
    );
    border: 1.5px solid;
    border-image-source: linear-gradient(
        155.31deg,
        rgba(226, 221, 168, 0.5) 12.33%,
        rgba(255, 255, 255, 0) 34.31%,
        rgba(255, 255, 255, 0) 52.66%,
        rgba(244, 230, 194, 0.63) 74.67%
    );
    backdrop-filter: blur(38px);
    box-shadow: 0px 1.2px 109.92px 0px rgba(229, 194, 114, 0.1),
        5px 5px 45px 0px rgba(255, 255, 255, 0.1) inset;
}
.custom-dropdown {
    position: relative;
    /* max-width: 300px; */
    width: 100%;
}

.custom-dropdown .form-select {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 12px;
    padding: 10px 40px 10px 40px; /* Space for icons */
    font-weight: 400;
    font-size: small;
    text-transform: uppercase;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-dropdown .form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(var(--primary-rgb), 0.5);
}

.custom-dropdown .form-select option {
    background-color: #000;
    color: #fff;
}

.custom-dropdown::before {
    font-weight: 900;
    position: absolute;
    width: 20px;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: transparent;
    z-index: 1;
}

/* ICONS */
.custom-dropdown.propertyFor::before {
    /* CUBE  */
    content: "hre";
    background-image: url("../../../assets/global/images/icons/primary/icon-propertfor.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.custom-dropdown.propertyType::before {
    /* HOUSE  */
    content: "hre";
    background-image: url("../../../assets/global/images/icons/primary/icon-propertytype.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.custom-dropdown.bedrooms::before {
    /* BED  */
    content: "hre";
    background-image: url("../../../assets/global/images/icons/primary/icon-bedrooms.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Chevron-down icon */
.custom-dropdown::after {
    content: "\f078"; /* Font Awesome chevron-down icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    /* width: 30px; */
    right: 14.5px;
    top: 49%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 12px;
    pointer-events: none;
    appearance: none;
}

.text-slider-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    padding: 10px 0;
}

.text-slider {
    display: inline-block;
}

.text-item {
    display: inline-block;
    font-size: 1.3rem;
    color: #eee;
    margin: 0 15px;
    font-weight: 200;
}

.separator {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-color: var(--primary);
    border-radius: 50%;
    vertical-align: middle;
}
.text-slider-wrapper:hover .text-slider {
    animation-play-state: paused;
}
.carousel-inner {
    overflow: visible;
}
.whyhikalcontent {
    min-height: 60vh;
}
.whyhikaltext {
    font-size: 3rem;
}
.whyhikalimg {
    min-width: 300px;
    width: 90%;
    max-width: 500px;
    height: 70vh;
    object-fit: contain;
}
.whyhikalcard {
    min-width: 120px;
    text-align: center;
    border-radius: 10px;
    color: white;
    background: linear-gradient(
        137.34deg,
        rgba(196, 174, 122, 0.16) 23.98%,
        rgba(112, 113, 122, 0.16) 65.73%
    );
    border: 1px solid;
    border-image-source: linear-gradient(
        81.07deg,
        rgba(255, 255, 255, 0.3) 53.33%,
        rgba(68, 74, 226, 0) 93.73%
    );
    backdrop-filter: blur(61.70000076293945px);
}
.custom-carousel-control {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(38, 38, 38, 1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.custom-carousel-control:hover {
    background-color: black;
}
.custom-carousel-control-next {
    background-color: var(--primary);
}
.primediv {
    border-radius: 30px;
    background-image: url("../../../assets/global/images/bg/prime-map.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 80vh;
}
.primedivgrad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    mix-blend-mode: multiply;
    border-radius: 30px;
    background: rgba(16, 19, 29, 1);
}

/* BLOG */
.blog-img {
    width: 100%;
    object-fit: cover;
    height: auto;
    aspect-ratio: 16/9;
    object-position: center;
}
.blog {
    font-weight: normal;
}
.blog .blog-heading1 {
    font-weight: bold;
    font-size: 2.2em !important;
    margin-bottom: 0.3em;
    text-align: start;
}
.blog .blog-heading2 {
    font-weight: bold;
    font-size: 1.5em !important;
    color: var(--primary);
    margin-bottom: 0.3em;
    text-align: start;
}
.blog .blog-paragraph {
    /* color: ; */
    font-size: 1em !important;
    line-height: 1.9em !important;
    font-weight: normal;
}
.blog .blog-heading1 .blog-paragraph {
    /* color: black; */
    font-size: 1em !important;
    line-height: 1.9em !important;
    font-weight: normal;
    text-align: justify;
}
.blog .blog-heading2 .blog-paragraph {
    /* color: black; */
    font-size: 1em !important;
    line-height: 1.9em !important;
    font-weight: normal;
    text-align: justify;
}
.blog strong {
    color: var(--primary);
    font-weight: bold;
}
.prose .blog ul {
    list-style-type: disc !important;
    margin: 1em 0 !important;
    padding-left: 1.5em !important;
}

.prose .blog ol {
    list-style-type: decimal !important;
    margin: 1em 0 !important;
    padding-left: 1.5em !important;
}

.prose .blog li {
    margin-bottom: 0.5em !important;
}

/* Nested lists */
.blog ul ul,
.blog ol ol,
.blog ul ol,
.blog ol ul {
    margin-top: 0.7em !important;
    margin-bottom: 0.7em !important;
    padding-left: 1em !important;
}

/* TABLET */
@media screen and (min-width: 750px) and (max-width: 1023px) {
    .menu-items {
        display: none;
    }
    #listing-images {
        padding: 0 0%;
    }
    .sl-img-banner {
        height: 400px;
    }
    .sl-img-additional {
        height: 200px;
    }
    .social-links {
        position: relative;
        height: auto;
        padding: 0px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }
    .social-links::before {
        z-index: -1;
        content: "";
        width: 0px;
        height: 0%;
        background: transparent;
    }
}
@media screen and (max-width: 750px) {
    .menu-items {
        display: none;
    }
    .sl-img-container {
        flex-direction: column;
    }
    .sl-img-banner {
        height: 400px;
    }
    .sl-img-additional {
        height: 200px;
        width: 50%;
    }
    #listing-images {
        padding: 0 0%;
    }
    .social-links {
        position: relative;
        height: auto;
        padding: 0px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
    }
    .social-links::before {
        z-index: -1;
        content: "";
        width: 0px;
        height: 0%;
        background: transparent;
    }
    .about-why {
        font-size: 50px !important;
    }
}
