﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
    color: #0d0d0d;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    --AKONINI_GOLD: #FFB606;
    --AKONINI_GRAY: #3B3B3B;
}

body {
    /*overflow: hidden;*/
}

header {
    position: fixed;
    height: 50px;
    background: var(--AKONINI_GOLD);
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
}
.float-right-btn {
    position: fixed;
    width: auto;
    background: #FFB606;
    padding: 10px;
    right: 10px;
    bottom: 70px;
    z-index: 999;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 20px 1fr;
    grid-column-gap: 5px;
}

    .float-right-btn i {
        display: flex;
        align-items: center;
    }

    .float-right-btn span {
        font-size: 15px;
        font-weight: 600;
    }




.main-header {
    background: var(--AKONINI_GOLD);
    padding: 5px 10px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-gap: 10px;
    height: 50px;
}


.header-menu-icon {
    display: flex;
    align-self: center;
    align-items: center;
    height: 35px;
    /* background-color: rgba(255, 255, 255, .7); */
    width: 35px;
    justify-content: center;
    border-radius: 50%;
}

    .header-menu-icon:hover {
        background-color: rgba(255, 255, 255, .7);
    }

    .header-menu-icon:active {
        background-color: rgba(255, 255, 255, .2);
    }

    .header-menu-icon svg {
        height: 20px !important;
    }

.header-notification-icon {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: end;
}

.project-listing-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    justify-content: center;
    padding: 15px;
}

.project-listing-content {
    display: flex;
    flex-direction: column;
    /*gap: 25px;*/
    max-width: 960px;
    width: 100%;
    height: calc(100vh - 335px);
    /*overflow-y: scroll;*/
}

.home-page-h1{
    font-size: 22px;
    color: #000;
    font-weight: 600;
    text-align: center;
    margin: 10px 0;
}

.project-listing-section {
    display: grid;
    grid-template-rows: 35px 1fr;
    width: 100%;
    height: auto;
    border-bottom: 2px solid #DCDCDC;
    padding: 10px 0;
}

    .project-listing-section h3 {
        text-transform: uppercase;
        font-weight: 600;
        font-size: 15px;
    }

.featured-property-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: auto;
    gap: 15px;
    padding: 15px 0;
}

.featured-property-card {
    display: grid;
    grid-template-rows: auto 1fr;
    width: 100%;
    height: 100%;
    position: relative;
    /* gap: 10px; */
}

    .featured-property-card .featured-img-container {
        width: 100%;
        height: 200px;
        overflow: hidden;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 10px;
    }

.featured-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-property-detail-container {
    display: grid;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    width: 100%;
    height: 100%;
}

.featured-property-title-address {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

    .featured-property-title-address h3 {
        font-size: 14px;
        font-weight: 600;
    }

.bigger-text-h3 {
    font-size: 18px !important;
    font-weight: 600;
    margin-bottom: 5px;
}

.featured-property-title-address small {
    color: #696969;
    font-size: 11px;
    opacity: .8;
}

    .featured-property-title-address small svg {
        height: 15px;
        fill: #696969;
        margin-bottom: -4px;
        margin-right: 3px;
    }

.featured-property-type {
    display: flex;
/*    flex-direction: column;*/
    justify-content: start;
    gap: 10px;
}

    .featured-property-type h4 {
        font-size: 11px;
        font-weight: 600;
    }

    .featured-property-type h3 {
        font-size: 15px;
        font-weight: 600;
    }

    .featured-property-type small {
        color: #FFB606;
        font-size: 11px;
    }

.featured-property-bottom-detail {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    margin-top: 10px;
}

.featured-property-icon-detail {
    width: auto;
    height: 100%;
    display: flex;
    gap: 15px;
    padding: 10px;
}

.featured-property-icon-detail span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #000;
    opacity: 1;
}

.featured-property-icon-detail span svg {
    height: 15px;
    fill: #696969;
}


.recent-property-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
    position: relative;
    padding: 15px 0;
}

.recent-property-card {
    display: grid;
    grid-template-rows: 200px 1fr;
    gap: 10px;
    width: 100%;
    height: 100%;
    border: 1px solid #DCDCDC;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    /* gap: 10px; */
}

    .recent-property-card .featured-img-container {
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-top-right-radius: 10px;
    }

    .recent-property-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .recent-property-card .recent-property-detail {
        display: grid;
        grid-template-rows: 1fr;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

.recent-property-detail h3 {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.recent-property-detail small {
    font-size: 12px;
    color: #696969;
}

.next-btn {
    position: absolute;
    z-index: 1;
    height: 35px;
    width: 35px;
    border-radius: 50%;
    background-color: #FFB606;
    top: 50%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    cursor: pointer;
}

.previous-btn {
    position: absolute;
    z-index: 1;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #FFB606;
    top: 50%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-50%);
    cursor: pointer;
}

.next-btn svg, .previous-btn svg {
    fill: #fff;
    height: 15px;
}

.previous-btn.disabled, .next-btn.disabled {
    opacity: .7;
    cursor: default;
    display: none;
}

.recent-listing-item {
    flex: 0 0 calc((100% / 4) - 15px);
    transition: opacity 0.5s ease;
}

.featured-project-item {
    flex: 0 0 calc((100% / 2) - 15px);
    transition: opacity 0.5s ease;
}

    .home-mobile-filter {
        display: none;
        position: relative;
    }

.main-search-container {
    display: grid;
    grid-template-columns: 1fr 50px;
    /*gap: 10px;*/
}

.additional-search-filters {
    margin-bottom: 10px;
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
}

.more-filter-btn {
    position: absolute;
    top: 0;
    right: 10px;
    color: #fff;
    font-size: 12px;
}

.main-search-container .search-filter-project {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.main-search-container .homepage-dropdown-cont {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.homepage-container {
    transition: all .5s ease;
}

.main-search-container .mobile-filter-button {
    display: flex;
    justify-content: center;
    background: #FFB606;
    height: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.main-search-container .mobile-filter-button svg {
    fill: #fff;
}

.featured-property-title-address .project-name {
    font-weight: 600;
    margin-bottom: 5px;
}
.dashboard-overview-container {
    padding: 10px;
    border-bottom: 2px solid #DCDCDC;
    position: relative;
    display: flex;
    justify-content: center;
}
.dashboard-overview-collapsed-button {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 5px;
    cursor: pointer;
}
.dashboard-overview-collapsed-button span {
    color: #999;
    font-size: 12px;
}

.dashboard-overview-collapsed-button i {
    display: flex;
    justify-content: center;
    transition: all .3s ease;
    align-items: center;
}

.dashboard-overview-collapsed-button svg {
    fill: #999;
    height: 16px;
}

.dashboard-overview-collapsed-button.show i {
    transform: rotate(180deg);
}

.dashboard-overview-content {
    display: flex;
    justify-content: space-around;
    gap: 50px;
    height: 0;
    transition: all .3s ease;
    overflow: hidden;
}

.dashboard-overview-item {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}
.dashboard-overview-item-oval {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    border: 7px solid #e7e7e7;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-overview-item-span {
    font-size: 13px;
    color: #999;
    text-align: center;
}

.dashboard-overview-content.show {
    height: 70px;
}

.dashboard-overview-item-count {
    font-weight: 600;
    z-index: 2;
}

/*new layout css*/
.firstpage-main-container {
    height: auto;
    width: 100%;
    margin-top: 50px;
}

.homepage-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 285px;
    position: relative;
    /*overflow: hidden;*/
}

.homepage-login-container-absolute {
    position: fixed;
    top: 50px;
    height: 55px;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: end;
    z-index: 3;
    padding: 0 15px;
}

.homepage-login-menu-container {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
    position: relative;

}

.homepage-top-icon {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
}

    .homepage-top-icon a {
        text-decoration: none;
    }

        .homepage-top-icon a svg {
            height: 24px;
            fill: #FFB606;
        }

.user-img-icon {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #77777752;
    color: #fff;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 1.3rem;
}

    .user-img-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.homepage-login-btn {
    display: flex;
    gap: 5px;
    background-color: #FFB606;
    color: #000;
    align-items: center;
    padding: 5px;
    border-radius: 10px;
    margin-left: 25px;
}

    .homepage-login-btn svg {
        height: 18px;
    }

    .homepage-login-btn span {
        font-size: 12px;
    }

.border-botton {
    padding: 10px;
    border: 1px solid #000;
    text-decoration:none;
}

.homepage-login-menu-container a {
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    text-transform: capitalize;
}

.border-botton:hover{
    transition: border 0.5s ease;
    border: 1px solid #fff;
}

.homepage-login-menu-container button {
    background-color: #FFB606;
    color: #fff;
    font-size: 13px;
    padding: 5px 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    border: none;
}

.homepage-main-menu-wrapper {
    position: relative;
    display: grid;
    width: 100%;
    gap: 15px;
    height: 100%;
    /*overflow: hidden;*/
    color: #fff;
    padding: 10px 25px;
}

    .homepage-main-menu-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../../webp/wallpaper01-large.webp);
        background-color: rgba(0, 0, 0, 0.7);
        background-blend-mode: overlay;
        z-index: 1;
        background-size: cover;
        background-position: center;
    }

.homepage-main-menu-layout {
    padding: 15px 35px;
    padding-top: 60px;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 15px;
    position: absolute;
    z-index: 2;
}

.project-list-menu-layout {
    display: flex !important;
    position: relative !important;
    align-items: end !important;
    padding: 0 !important;
}

.homepage-main-menu-top-layout {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width:985px;
    height: 100%;
    justify-self: center;
    gap: 15px;
}

    .homepage-main-menu-top-layout .icon-menu-container {
        max-width: 250px;
        width: 100%;
        height: 100%;
        display: grid;
        grid-template-rows: 1fr auto;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }

.icon-menu-container i {
    display: flex;
    align-items: center;
    justify-content: center;
}

    .icon-menu-container i svg {
        height: 50px;
        fill: #FFB606;
    }

.icon-menu-container span {
    text-decoration: none;
    text-align: center;
    background-color: #FFB606;
    padding: 5px;
    text-transform: uppercase;
    width: 100px;
    font-size: 13px;
    color: #fff;
    border-radius: 10px;
}

.homepage-main-menu-bottom-layout {
    background-color: rgba(255, 255, 255, 0.2);
    max-width: 960px;
    width: 100%;
    height: 100%;
    display: grid;
    gap: 15px;
    grid-template-columns: 2fr 150px;
    padding: 0 15px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
}

.homepage-menu-bottom-input-layout {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 10px;
}

.homepage-menu-bottom-range-layout {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: end;
    gap: 25px;
    padding-bottom: 20px;
}

.homepage-input-wrapper {
    /*display: grid;*/
    /* grid-template-rows: 25px 1fr;
    gap: 10px;*/
}

    .homepage-input-wrapper label {
        font-size: 13px;
        text-transform: uppercase;
        color: #fff;
        font-weight: 600;
    }

.homepage-dropdown-cont {
    width: 100%;
    /*height: 35px;*/
    background-color: rgba(255,255,255, 0.4);
    display: grid;
    grid-template-columns: 25px 1fr 15px;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    position: relative;
}

    .homepage-dropdown-cont svg {
        height: 15px;
        fill: #fff;
        opacity: .9;
    }

    .homepage-dropdown-cont input {
        border: none;
        color: #fff;
        background-color: transparent;
        outline: none;
        width: 100%;
    }

        .homepage-dropdown-cont input::placeholder {
            color: #fff;
            opacity: .8;
        }

.dropdown-icon {
    display: flex;
    align-items: center;
}

    .dropdown-icon svg {
        fill: #000;
        height: 18px;
    }

.large-dropdown-cont {
    width: 300px !important;
}

.homepage-range-container {
    display: grid;
    grid-template-rows: auto;
    align-items: center;
    width: 100%;
    height: 100px;
}

    .homepage-range-container label {
        font-size: 13px;
        text-transform: uppercase;
        color: #fff;
        font-weight: 600;
        margin-top: 15px;
    }

    .homepage-range-container input {
        margin-top: 10%;
    }

    .homepage-range-container .price-label {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
    }

.price-label span {
    color: #FFB606;
}

.search-filter-project {
    background-color: #FFB606;
    padding: 10px;
    border-radius: 10px;
    text-transform: capitalize;
    font-size: 13px;
    color: #fff;
    border: none;
}

.default-btn {
    background-color: #FFB606;
    padding: 8px 10px;
    text-transform: capitalize;
    font-size: 13px;
    color: #fff;
    border: none;
    border-radius: 10px;
}

/* For Chrome, Safari, and Opera */

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px; /* Adjust the height of the track */
    background: #FFB606; /* Default color of the track */
    outline: none;
    border-radius: 5px; /* Optional: Makes the track rounded */
}

    input[type="range"]::-webkit-slider-runnable-track {
        width: 100%;
        height: 3px; /* Same as above */
        background: #fff; /* Change this to the desired color */
        border-radius: 5px; /* Optional: Makes the track rounded */
    }

    /* For Chrome, Safari, and Opera */

    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 15px; /* Adjust the size of the thumb */
        height: 15px; /* Same as above */
        background: #fff; /* Change this to the desired color */
        border-radius: 50%; /* Optional: Makes the thumb circular */
        cursor: pointer;
    }

/* For Chrome, Safari, and Opera */

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px; /* Adjust the height of the track */
    background: #FFB606; /* Default color of the track */
    outline: none;
    border-radius: 5px; /* Optional: Makes the track rounded */
}

    input[type="range"]::-webkit-slider-runnable-track {
        width: 100%;
        height: 3px; /* Same as above */
        background: #FFB606; /* Change this to the desired color */
        border-radius: 5px; /* Optional: Makes the track rounded */
    }

    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 15px; /* Adjust the size of the thumb */
        height: 15px; /* Same as above */
        background: #fff; /* Change this to the desired color */
        border-radius: 50%; /* Optional: Makes the thumb circular */
        cursor: pointer;
    }


.project-top-filter-container {
    width: 100%;
    max-width: 960px;
    display: grid;
    grid-template-columns: repeat(5, 1fr) 100px;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
}

.brokerage-desktop-filter {
    gap: 10px;
    grid-template-columns: repeat(4, 1fr) 100px;
}

.brokerage-input-wrapper {
    grid-template-rows: auto 1fr;
    gap: 5px;
}

.input-light {
    background-color: #fff !important;
    border-radius: 15px !important;
    color: #696969 !important;
}

    .input-light svg {
        fill: #696969 !important;
    }

.secondary-btn {
    background-color: #696969 !important;
}

.input-light input::placeholder {
    color: #696969 !important;
}

.label-padding-left label {
    padding-left: 10px;
}

.search-input-container {
    display: grid;
    grid-template-columns: 1fr 150px;
    align-items: center;
    background-color: #fff;
    max-width: 960px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 40px;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 20px;
}

    .search-input-container input {
        border: none;
        outline: none;
        padding: 5px 0;
        padding-left: 25px;
    }

        .search-input-container input::placeholder {
            color: #696969;
        }

.search-input-label {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #fff;
    gap: 10px;
    background-color: #696969;
    height: 100%;
    width: 100%;
}

    .search-input-label svg {
        height: 18px;
        fill: #fff;
    }

.default-button {
    background-color: #FFB606;
    height: 40px;
    width: 150px;
    border-radius: 30px;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: #fff !important;
    border: 3px solid #aaa !important;
    color: #000 !important;
    font-size: 15px !important;
    width: 90% !important;
    margin-left: auto;
    margin-right: auto;
}

    .default-button:hover {
        background: #555;
    }

    .default-button:active {
        background: #555;
    }

.mobile-filter-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    padding: 0 15px;
    align-items: center;
    border: 1px solid #fff;
    overflow: hidden;
}

.mobile-filter-dropdown {
    width: 100%;
    height: 75px;
    display: flex;
    gap: 15px;
    align-items: center;
    border-right: 1px solid #fff;
    padding: 5px;
}

    .mobile-filter-dropdown:nth-child(3) {
        border: none !important;
    }

    .mobile-filter-dropdown span {
        color: #fff;
        font-size: 18px;
    }

    .mobile-filter-dropdown svg {
        height: 28px;
        fill: #fff;
    }


.nav-menu-icon {
    position: relative;
}

    .nav-menu-icon.active::before {
        content: '';
        height: 3px;
        width: auto;
        position: absolute;
        bottom: -5px;
        background: #FFB606;
        border-radius: 10px;
        left: 0;
        right: 0;
    }

.homepage-login-container-absolute .bg-overlay {
    z-index: 0;
}

    .homepage-login-container-absolute .bg-overlay::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../../webp/wallpaper01-large.webp);
        background-color: rgba(0, 0, 0, 0.7);
        background-blend-mode: overlay;
        z-index: 1;
        background-size: cover;
        background-position: center;
    }

.homepage-login-container-absolute.has-search-bar {
    height: 105px;
    flex-direction: column;
    padding: 10px 15px;
    justify-content: space-between;
}

    .homepage-login-container-absolute.has-search-bar .homepage-login-menu-container {
        height: 100%;
        align-items: start;
    }

.header-search-bar-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    max-width: 960px;
    width: 100%;
}

    .header-search-bar-cont input {
        width: 100%;
        background-color: rgba(255, 255, 255, 0.4);
        padding: 10px;
        border-radius: 10px;
        border: none;
        outline: none;
        color: #fff;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

        .header-search-bar-cont input::placeholder {
            color: #fff;
        }

    .header-search-bar-cont button {
        background-color: #FFB606;
        padding: 5px;
        border-radius: 10px;
        text-transform: capitalize;
        font-size: 13px;
        color: #fff;
        border: none;
        width: 200px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        height: 100%;
        cursor: pointer;
    }

.homepage-login-container-absolute.has-search-bar ~ .content-wrapper .crs-main-container {
    height: calc(100vh - 105px);
    margin-top: 155px;
}



.user-icon-v2 {
    position: relative;
    background-color: #999;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.user-avatar-initial {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    color: #fff;
}

.user-avatar-ul {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fff;
    height: auto;
    min-width: 150px;
    list-style-type: none;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.user-avatar-ul li {
    padding: 5px;
}

.user-avatar-ul li a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.user-avatar-ul li a span {
    font-size: 15px;
    color: #000;
    font-weight: normal;
}
.user-avatar-menu-icon {
    display: flex;
    height: 100%;
    align-items: center;
}
.user-avatar-menu-icon svg {
    height: 14px;
    fill: #000;
}
.user-avatar-ul li:hover {
    background: #d5d5d5;
}


@media only screen and (max-width: 767px) {
    .dashboard-overview-content.show {
        margin-top: 15px;
    }

    .homepage-main-menu-wrapper::before {
        background-image: url(../../webp/wallpaper01-small.webp);
    }

    .homepage-main-menu-top-layout .icon-menu-container {
        width: calc((100vw / 4) - 50px);
    }

    .homepage-main-menu-top-layout.v2 .icon-menu-container {
        width: calc((100vw / 5) - 20px) !important;
    }
    .homepage-main-menu-top-layout.v2 .icon-menu-container span {
        font-size: 11px !important;
    }

    .homepage-main-menu-top-layout {
        justify-content: space-evenly;
        padding-top: 50px;
    }

    .featured-property-layout {
        padding: 0;
        gap: 0;
    }

    .recent-property-container {
        grid-template-columns: 1fr 1fr;
        padding: 15px 0;
    }

    .homepage-menu-bottom-input-layout {
        grid-template-columns: 1fr;
    }

    .default-btn {
        margin: 0 10px;
    }

    .homepage-main-menu-bottom-layout {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .homepage-menu-bottom-input-layout {
        grid-template-columns: 1fr;
    }

    .large-dropdown-cont {
        width: 100% !important;
    }

    .icon-menu-container span {
        background-color: transparent;
    }

    .homepage-main-menu-layout {
        padding: 15px;
        /*overflow: hidden;*/
    }

    .homepage-container {
        overflow: hidden;
        grid-template-rows: 250px;
    }

    .project-listing-content {
        /*height: calc(100vh - 350px)*/
    }

    .recent-listing-item {
        flex: 0 0 calc((100% / 2) - 15px);
    }

    .featured-project-item {
        flex: 0 0 100%;
    }

    .homepage-input-wrapper {
        gap: 5px;
        grid-template-rows: auto 1fr;
    }

    .home-desktop-filter {
        display: none;
    }

    .home-mobile-filter {
        display: block;
        padding-top: 25px;
    }

    .search-filter-project {
        margin-top: 0;
    }

    .homepage-container.has-filters {
        grid-template-rows: 350px;
    }

        .homepage-container.has-filters .additional-search-filters {
            display: grid;
        }

    .featured-property-bottom-detail {
        padding: 10px;
    }
}


@media only screen and (min-width: 768px) and (max-width: 1024px) {

    .project-listing-content, .homepage-main-menu-bottom-layout {
        max-width: 720px !important;
    }

}