/* ============================================================
   body.css — Full stylesheet
   Hero + Search section fully responsive (all fixes merged)
   ============================================================ */

/* ── Hero wrapper ─────────────────────────────────────────── */
.header-hero {
    position: relative;
    /*height: 60vh;*/
    min-height: 400px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*overflow: hidden;*/
    display: flex;
    align-items: center;
}

heading-tag {
    padding-bottom: 2rem;
}

.header-hero > * {
    position: relative;
    z-index: 99;
}

.header-hero::before {
    content: "";
    /*background: linear-gradient(180deg, rgba(18,18,18,0) 1.03%, rgba(18,18,18,0.27) 100%), linear-gradient(0deg, rgba(18,18,18,.05), rgba(18,18,18,.12));*/
    position: absolute;
    display: block;
    inset: 0;
}

/* ── Main content block ───────────────────────────────────── */
.header-hero .main_content {
    width: 100%;
    height: auto !important;
    min-height: 60vh;
    padding-top: clamp(60px, 8vw, 100px);
    padding-bottom: clamp(30px, 3vw, 60px);
    padding-inline: 20px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

/* ── Title & sub-header ───────────────────────────────────── */
.title_content {
    text-shadow: 1px 2px rgba(0,0,0,.4);
}

.header-hero .title_content,
.header-hero .filter-form {
    width: 100%;
    max-width: min(900px, calc(100% - clamp(20px, 8vw, 220px)));
    margin-inline: auto;
    /*padding-bottom : 3rem !important;*/
}

    .header-hero .title_content h1 {
        font-size: 3vw;
        line-height: 1.5;
        font-family: TLP;
    }

    .header-hero .title_content p {
        font-size: max(14px, 1.5vw);
        line-height: 1.2;
        margin: 0;
        font-weight: 600;
    }

/* ── Filter / Search form ─────────────────────────────────── */
.filter-form form {
    display: grid;
    gap: 10px;
    margin-top: clamp(28px, 5vw, 64px);
    width: 100%;
}

.filter-fields {
    gap: 8px;
    background-color: rgba(255,255,255,.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 60px;
    width: 100%;
    padding: clamp(12px, 2vw, 28px) clamp(16px, 2.5vw, 32px);
}

    .filter-fields .default-filter-fields {
        display: flex;
        gap: 8px;
        width: 100%;
        align-items: center;
    }

    .filter-fields .input-field-container {
        position: relative;
        width: 100%;
        align-items: center;
    }

    .filter-fields input {
        width: 100%;
        border: 0;
        border-radius: 50px;
        padding: 12px 24px;
        background: #12121233;
        font-size: 14px;
        line-height: 2.5;
        font-family: inherit;
    }

    .filter-fields .find-btn {
        display: flex;
        gap: 6px;
        align-items: center;
        justify-content: center;
        padding: 14px 28px;
        min-width: 110px;
        white-space: nowrap;
        flex-shrink: 0;
        font-size: 14px;
        font-family: inherit;
        background-color: #121212;
        color: #fff;
        border: 0;
        border-radius: 50px;
        cursor: pointer;
    }

/* ── Trending area inside hero ────────────────────────────── */
.header-hero .header-trending-area-container {
    width: 100%;
    margin-block: 100px 50px;
    position: relative;
    z-index: -1;
}

.header-hero .header-trending-area {
    max-width: calc(100% - 200px);
    margin: auto;
}

/* ── Tablet ≤1024px ───────────────────────────────────────── */
@media (max-width: 1024px) {
    .header-hero .title_content,
    .header-hero .filter-form {
        max-width: calc(100% - 60px);
    }
}

/* ── Mobile ≤768px ────────────────────────────────────────── */
@media (max-width: 768px) {
    .header-hero .header-trending-area {
        max-width: calc(100% - 40px);
    }

    .header-hero .header-trending-area-container {
        margin-block: 50px 50px;
    }

    .header-hero .title_content,
    .header-hero .filter-form {
        max-width: calc(100% - 32px);
    }

    .header-hero .title_content {
        padding-top: 0;
    }

        .header-hero .title_content h1 {
            font-size: clamp(22px, 6vw, 32px);
            line-height: 1.25;
        }

    /* Stack search + button vertically */
    .filter-fields .default-filter-fields {
        flex-direction: column;
        gap: 10px;
    }

    .filter-fields .find-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .filter-fields {
        border-radius: 24px;
    }
}

/* ── Small mobile ≤480px ──────────────────────────────────── */
@media (max-width: 480px) {
    .header-hero .main_content {
        justify-content: flex-start;
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .filter-form form {
        margin-top: 24px;
    }
}


/* ============================================================
   BLOG
   ============================================================ */
.blog-articles h3 {
    font-size: 20px;
    line-height: 30px;
}


/* ============================================================
   TRENDING AREA (below hero)
   ============================================================ */
.header-trending-area {
    text-align: left;
}

.listing-item-details {
    padding-inline: 5px;
}

.trending-area-list .trending-area-item {
    position: relative;
}

    .trending-area-list .trending-area-item::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,rgba(0,0,0,0) 46.28%,#000 100%);
        border-radius: 8px;
        z-index: 9;
    }

.trending-area-list a {
    color: #fff !important;
    display: inline-block;
    margin-right: 20px;
}

.trending-area-list .trending-area-item img {
    height: 204px;
    object-fit: cover;
    border-radius: 8px;
}

.trending-area-list .trending-area-item .trending-item-header {
    position: absolute;
    background-color: rgba(0,0,0,.4);
    backdrop-filter: blur(5px);
    top: 10px;
    left: 0;
    border-radius: 0 8px 8px 0;
    padding: 6px 24px 6px 24px;
}

.trending-area-list .trending-area-item .trending-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 16px;
    width: 100%;
    z-index: 999;
    padding-inline: 16px;
}

    .trending-area-list .trending-area-item .trending-item-footer h3 {
        font-size: 18px;
        line-height: 1;
        margin: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.header-trending-area-arrows {
    max-width: calc(100% - 200px);
    margin-inline: auto;
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: end;
}

    .header-trending-area-arrows button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 100px;
        border: 0;
    }

@media (max-width: 768px) {
    .header-trending-area-arrows {
        justify-content: center;
    }
}


/* ============================================================
   SECTION CONTAINERS
   ============================================================ */
.section-container {
    max-width: calc(100% - 160px);
    margin: auto;
    padding-block: 50px;
    overflow: hidden;
}

.full-width-section {
    padding-left: 80px !important;
    padding-right: 80px !important;
    background-color: #f7f6fb;
}

#top_developers {
    padding-block: 20px;
}

    #top_developers .section-container {
        padding-block: 20px;
    }

@media (max-width: 768px) {
    .section-container {
        max-width: calc(100% - 40px);
        padding-block: 40px;
    }
}


/* ============================================================
   TOP LISTING (Latest / Recommended Projects)
   ============================================================ */
.top-listing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
}

.top-listing-item {
    max-width: 100%;
    margin-right: 24px;
}

    .top-listing-item img {
        width: 100%;
        height: auto;
        object-fit: cover;
        aspect-ratio: 3/2;
        border-radius: 12px;
        margin-bottom: 14px;
    }

.listing-item-details .price {
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
    margin: 0 0 5px;
    color: #4336ff;
}

.listing-item-details h3 {
    font-size: 14px;
    line-height: 1.5;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #262626;
}

.listing-item-details .location {
    font-size: 14px;
    margin: 0;
    font-weight: 400;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 768px) {
    .listing-item-details h3 {
        font-size: 14px;
    }

    .top-listing-item img {
        max-width: 100%;
        height: 204px;
        aspect-ratio: 3/2;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 14px;
    }

    .top-listing-item {
        margin-right: 10px;
        width: 89vw;
    }
}


/* ============================================================
   VIEW MORE BUTTON
   ============================================================ */
a.view-more-btn {
    max-width: 300px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    margin: 15px 0 15px auto;
    background-color: #000;
    color: #fff;
    padding: 18px 12px;
    border-radius: 50px;
    transition: all .5s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    a.view-more-btn::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 8px;
        z-index: -2;
    }

    a.view-more-btn::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: #f28123;
        transition: all .3s;
        border-radius: 8px;
        z-index: -1;
    }

    a.view-more-btn:hover::before {
        width: 100%;
    }


/* ============================================================
   LISTING SECTION (Available Properties grid)
   ============================================================ */
.listing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.listing-section {
    padding-bottom: 10px;
}

    .listing-section .listing-container {
        margin-bottom: 60px;
    }

    .listing-section .listing-item img {
        max-width: calc(100vw - 20px);
        width: 100%;
        height: 300px;
        object-fit: cover;
        aspect-ratio: 1/1 !important;
        border-radius: 12px;
        margin-bottom: 14px;
    }

    .listing-section .listing-filters {
        margin-bottom: 24px;
        /*display: grid;*/
        grid-template-columns: 3fr 7fr;
        justify-content: space-between;
        align-items: center;
    }

        .listing-section .listing-filters .listing-filters {
            display: flex;
            justify-content: end;
            gap: 8px;
        }

        .listing-section .listing-filters button {
            appearance: none;
            border: 1px solid #e8e8e8;
            background-color: #fff;
            color: #000;
            padding: 20px 30px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            transition: all .2s linear;
        }

            .listing-section .listing-filters button:hover {
                background-color: #12121226;
                border-color: #000;
            }

            .listing-section .listing-filters button.active {
                background-color: #000;
                color: #fff;
            }

    .listing-section .listing-container-new {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

.listing-container-new {
    margin-bottom: 20px;
}

#r_proj, #l_proj {
    margin-bottom: 15px;
}

@media (max-width: 1024px) {
    .listing-section .listing-filters {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    a.view-more-btn {
        max-width: 100%;
        justify-content: center;
        padding: 10px;
    }

    .listing-section .listing-filters .listing-filters {
        overflow-y: scroll;
        justify-content: left;
    }

    .listing-section .listing-filters,
    .listing-section .listing-container {
        margin-bottom: 30px;
    }

    .listing-item {
        max-width: 300px;
    }
}

.why-choose-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.why-choose-block {
    position: relative;
}

    .why-choose-block::after {
        content: "";
        background: linear-gradient(360deg, #000 10.73%, rgba(217,217,217,0) 100%);
        position: absolute;
        display: block;
        inset: 0;
        border-radius: 12px;
    }

    .why-choose-block img {
        border-radius: 12px;
        width: 100%;
        height: 100%;
        aspect-ratio: 16/11;
    }

    .why-choose-block .why-choose-detail {
        color: #fff;
        max-width: calc(100% - 50px);
        position: absolute;
        bottom: 20px;
        left: 20px;
        z-index: 9;
    }

        .why-choose-block .why-choose-detail h3,
        .why-choose-block .why-choose-detail p {
            margin: 0;
        }

@media (max-width: 1024px) {
    .why-choose-blocks {
        grid-template-columns: 1fr;
    }

    .why-choose-block img {
        aspect-ratio: 16/9;
    }
}


/* ============================================================
   LISTING CONTAINER MORE (arrows + view more row)
   ============================================================ */
.listing-container-more {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.listing-container-arrows button {
    background-color: transparent;
    width: 34px;
    height: 34px;
    border: 0;
    opacity: .7;
}

.listing-container-arrows .next-arrow {
    float: right;
}

.relative {
    position: relative;
}

@media (max-width: 768px) {
    .listing-container-arrows {
        position: absolute;
        top: 12vh;
        width: 93%;
        height: 0;
    }

    .listing-container-more {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .listing-item-details .location {
        overflow: unset;
    }
}


/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

    .testimonial-section .testimony {
        font-size: 14px;
        max-width: calc(100% - 25%);
        color: #969696;
    }

    .testimonial-section img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/10;
        border-radius: 12px;
    }

    .testimonial-section .testimony::before {
        content: url('data:image/svg+xml,<svg width="72" height="52" viewBox="0 0 72 52" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M46.08 52L67.68 52C68.8257 52 69.9245 51.5435 70.7347 50.7308C71.5449 49.9181 72 48.8159 72 47.6667L72 24.5556C72 23.4063 71.5449 22.3041 70.7347 21.4914C69.9245 20.6788 68.8257 20.2222 67.68 20.2222L44.64 20.2222L44.64 15.8889C44.64 12.4411 46.0054 9.13447 48.4359 6.6965C50.8664 4.25853 54.1628 2.88889 57.6 2.88889C57.9819 2.88889 58.3482 2.73671 58.6182 2.46582C58.8883 2.19494 59.04 1.82754 59.04 1.44445C59.04 1.06135 58.8883 0.693953 58.6182 0.423068C58.3482 0.152182 57.9819 -1.2255e-06 57.6 -1.25889e-06C53.399 -1.62615e-06 49.37 1.674 46.3994 4.65375C43.4289 7.63349 41.76 11.6749 41.76 15.8889L41.76 47.6667C41.76 48.8159 42.2151 49.9181 43.0253 50.7308C43.8355 51.5435 44.9343 52 46.08 52ZM44.64 23.1111L67.68 23.1111C68.0619 23.1111 68.4282 23.2633 68.6982 23.5342C68.9683 23.8051 69.12 24.1725 69.12 24.5556L69.12 47.6667C69.12 48.0498 68.9683 48.4172 68.6982 48.688C68.4282 48.9589 68.0619 49.1111 67.68 49.1111L46.08 49.1111C45.6981 49.1111 45.3318 48.9589 45.0618 48.688C44.7917 48.4172 44.64 48.0498 44.64 47.6667L44.64 23.1111ZM4.32 52L25.92 52C27.0657 52 28.1645 51.5435 28.9747 50.7308C29.7849 49.9181 30.24 48.8159 30.24 47.6667L30.24 24.5556C30.24 23.4063 29.7849 22.3041 28.9747 21.4914C28.1645 20.6788 27.0657 20.2222 25.92 20.2222L2.88 20.2222L2.88 15.8889C2.88 12.4411 4.24543 9.13447 6.6759 6.6965C9.10637 4.25852 12.4028 2.88888 15.84 2.88888C16.2219 2.88888 16.5882 2.7367 16.8582 2.46582C17.1283 2.19493 17.28 1.82753 17.28 1.44444C17.28 1.06135 17.1283 0.69395 16.8582 0.423064C16.5882 0.152179 16.2219 -4.87628e-06 15.84 -4.90966e-06C11.639 -5.27693e-06 7.61001 1.674 4.63943 4.65374C1.66885 7.63349 3.52533e-06 11.6749 3.15693e-06 15.8889L3.78832e-07 47.6667C2.7836e-07 48.8159 0.455139 49.9181 1.2653 50.7308C2.07545 51.5434 3.17426 52 4.32 52ZM2.88 23.1111L25.92 23.1111C26.3019 23.1111 26.6682 23.2633 26.9382 23.5342C27.2083 23.8051 27.36 24.1725 27.36 24.5556L27.36 47.6667C27.36 48.0498 27.2083 48.4172 26.9382 48.688C26.6682 48.9589 26.3019 49.1111 25.92 49.1111L4.32 49.1111C3.93809 49.1111 3.57182 48.9589 3.30177 48.688C3.03171 48.4172 2.88 48.0498 2.88 47.6667L2.88 23.1111Z" fill="%23454545" fill-opacity="0.9"/></svg>');
        display: block;
        font-size: 72px;
        line-height: 1;
    }

    .testimonial-section .testimony .author {
        margin-top: 18px;
        font-weight: bolder;
        color: #000;
    }

@media (max-width: 1024px) {
    .testimonial-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

        .testimonial-section .testimony {
            max-width: 100%;
        }
}


/* ============================================================
   AWARDS
   ============================================================ */
section#awards {
    background-color: #f7f6fb;
}

    section#awards > .section-container:has(h2) {
        padding-bottom: 0;
    }

.awards-section .awards-tagline {
    max-width: calc(100% - 30%);
}

.awards-section > .section-container > h2 {
    margin-bottom: 16px !important;
}

.awards-section .tlp-awards {
    padding-top: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .awards-section .tlp-awards {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

        .awards-section .tlp-awards img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

    .awards-section .awards-tagline {
        max-width: 100%;
    }
}


/* ============================================================
   BLOG ARTICLES
   ============================================================ */
.blog-articles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 40px;
    grid-column-gap: 24px;
    margin-bottom: 40px;
}

    .blog-articles article img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .blog-articles article p {
        color: #000;
        margin: 0;
    }

@media (max-width: 1024px) {
    .blog-articles article {
        max-width: 300px;
        margin-right: 12px;
    }

        .blog-articles article img {
            height: 250px;
        }

    .blog-articles h3 {
        font-size: 15px;
    }
}


/* ============================================================
   BANNER
   ============================================================ */
@keyframes adBanner {
    0%, 100% {
        filter: brightness(1) saturate(.5);
        transform: scale(1);
    }

    50% {
        filter: brightness(1.2) saturate(1.2);
        transform: scale(1.01);
    }
}

#banner_placement {
    padding-block: 0 !important;
}


/* ============================================================
   EXPLORE COMMUNITIES
   ============================================================ */
#explore_communitites {
    padding-block: 0 !important;
}

.communities-explore-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-block: 24px;
}

.explore-community {
    overflow: hidden;
}

    .explore-community img {
        width: 100%;
        height: 100%;
        aspect-ratio: 16/10;
        background-color: #fff;
        border-radius: 12px;
        display: block;
        object-fit: cover;
        filter: saturate(1.5);
    }

    .explore-community a {
        position: relative;
    }

        .explore-community a::after {
            content: "";
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            inset: 0;
            border-radius: 8px;
            background: linear-gradient(180deg, rgba(0,0,0,0) 46.28%, #000 100%);
        }

    .explore-community figcaption {
        position: absolute;
        bottom: 30px;
        display: block;
        color: #fff;
        text-align: left;
        padding: 6px 24px 6px 24px;
        background-color: rgba(255,255,255,.4);
        backdrop-filter: blur(2px);
        border-radius: 0 8px 8px 0;
        z-index: 999;
    }

        .explore-community figcaption span {
            display: block;
            line-height: 1.2;
        }

    .explore-community .ez_term_name {
        font-size: 14px;
        font-weight: bold;
        letter-spacing: -.4px;
    }

.communities-explore-container .explore-community:hover img {
    transform: scale(1.1);
    transition: all .5s ease-in-out;
}


/* ============================================================
   EXPLORE BY PROPERTY TYPE
   ============================================================ */
.property-type-explore-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-block: 24px;
}

    .property-type-explore-container figure {
        position: relative;
    }

        .property-type-explore-container figure:first-of-type {
            grid-row: span 2;
        }

            .property-type-explore-container figure:first-of-type img {
                height: 100% !important;
            }

        .property-type-explore-container figure img {
            border-radius: 8px;
            object-fit: cover;
            width: 100%;
            height: 100%;
            aspect-ratio: 16/9;
            filter: saturate(1.5);
        }

        .property-type-explore-container figure:hover a::after {
            background-color: #00000010;
            transition: ease-in-out .2s;
        }

        .property-type-explore-container figure a::after {
            content: "";
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            inset: 0;
            border-radius: 8px;
            background-image: linear-gradient(180deg, rgba(0,0,0,0) 60%, #000 100%);
            transition: ease-in-out .2s;
        }

    .property-type-explore-container figcaption {
        text-align: left;
        position: absolute;
        bottom: 20px;
        left: 20px;
        z-index: 99;
    }

    .property-type-explore-container span.ez_term_name {
        display: block;
        font-size: 22px;
        font-weight: bolder;
        color: #fff;
    }

    .property-type-explore-container span.ez_term_count {
        display: inline-block;
        font-weight: bolder;
        font-size: 12px;
        text-align: left;
        background-color: #fbb033;
        color: #000;
        padding: 2px 12px;
        border-radius: 8px;
    }

@media (max-width: 1024px) {
    .communities-explore-container,
    .property-type-explore-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .communities-explore-container,
    .property-type-explore-container {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   TOP DEVELOPERS
   ============================================================ */
.top-developers-section {
    display: flex;
    gap: 24px;
    overflow: hidden;
}

    .top-developers-section img {
        height: 200px;
        background-color: #fff;
        border-radius: 12px;
        display: block;
        padding: 40px;
        object-fit: contain;
        transition: ease-in-out .3s;
    }

        .top-developers-section img:hover {
            padding: 30px;
            width: 500px;
        }

@media only screen and (max-width: 1024px) {
    .top-developers-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        .top-developers-section img {
            width: 100%;
        }
}

@media only screen and (max-width: 768px) {
    .top-developers-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        .top-developers-section img {
            width: 100%;
            padding: 10px;
            height: 150px;
        }
}


/* ============================================================
   SELECTIZE OVERRIDES
   ============================================================ */
.input-field-container {
    align-items: center;
}

.selectize-control {
    display: flex;
}

.selectize-input {
    display: block;
    width: 100%;
    border: 0;
    padding: 12px 24px;
    background: rgba(255,250,250,.82) !important;
    font-size: 14px;
    line-height: 2.5;
    font-family: inherit;
    white-space: nowrap;
}

    .selectize-input::after {
        display: none;
    }

    .selectize-input.focus.input-active {
        box-shadow: none;
    }

.input-field-container .search_input .selectize-input {
    border-radius: 50px;
}

.listing-section .listing-filters a {
    border: 1px solid #e8e8e8;
    background-color: #fff;
    color: #000;
    padding: 20px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s linear;
}

    .listing-section .listing-filters a:hover {
        background-color: #12121226;
        border-color: #000;
    }

    .listing-section .listing-filters a.active {
        background-color: #000;
        color: #fff;
    }

.selectize-dropdown-content em {
    float: right;
    font-size: 85%;
}

.city_input .selectize-dropdown {
    width: max-content !important;
    min-width: max-content !important;
}

.search_input .selectize-input:not(.focus)::after {
    content: "Search Anything...";
    font-size: 14px;
    display: block;
    position: absolute;
    top: 14px;
    color: #000;
    font-weight: 500;
    text-shadow: none;
}

@media (max-width: 1024px) {
    .filter-fields .default-filter-fields {
        flex-direction: column;
    }

    .filter-fields .selectize-input {
        border-radius: 50px !important;
    }

    .filter-fields .input-field-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .selectize-input.has-options {
        position: relative;
    }
}

.city_input .selectize-input.has-options::after {
    content: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.2797 5.9668L8.93306 10.3135C8.41973 10.8268 7.57973 10.8268 7.06639 10.3135L2.71973 5.9668" stroke="%23fff" stroke-width="1.5" stroke-miterlimit="10" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    display: inline-block;
    position: absolute;
    right: 30px;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
}

.city_input .selectize-input.has-options.dropdown-active::after {
    transform: rotate(180deg);
}

@media(max-width: 768px) {
    .trending-area-list .trending-area-item img{
        height: 260px !important;
    }
}