/* oh my god yes yes great */

@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");

:root {
    --font-primary: "Rubik", sans-serif;
    --font-secondary: "Rubik", sans-serif;
}

* {
    font-family: var(--font-primary);
}
h1,
h2,
h3.h4,
h5,
h6 {
    font-family: var(--font-secondary);
}
hr {
    margin: 4px 0;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1046px;
}

a {
    color: inherit;
    text-decoration: none;
}
.slick-next:before,
.slick-prev:before {
    opacity: 1;
}
.bordered-btn {
    border: 1px solid #5e23dc;
    border-radius: 4px;
    font-size: 12px;
    padding: 5px 24px;
    color: #5e23dc;
    font-weight: 600;
}
.brand-color-btn {
    background-color: #1bd48e;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 24px;
}
.view-no-btn {
    color: #00a158;
    border: 1px solid #00a158;
    background-color: #d5ffec;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-right: 12px;
}
.contact-seller-btn {
    color: #ffffff;
    border: 1px solid #00a158;
    background-color: #00a158;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

.slick-prev.slick-arrow.slick-disabled,
.slick-next.slick-arrow.slick-disabled {
    opacity: 0;
}
.header {
    z-index: 99;
    position: relative;
    .header-box {
        padding: 12px 32px;
        background-color: #5e23dc7e;
        background: linear-gradient(#5e23dc 0.85, #5e23dc, 0.85);
        backdrop-filter: blur(20px);
        .barnd-logo {
            width: 100%;
            max-width: 30%;
        }
    }
    .wegits-list ul li a {
        color: #ffffff;
        padding: 0 8px;
    }
}

.home-banner {
    z-index: 0;
    width: 100%;
    max-width: 95%;
    margin: auto;
    /* overflow: hidden; */
    margin-top: 0px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    .banner-container {
        background-image: url(../images/banner.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-bottom-right-radius: 60px;
        border-bottom-left-radius: 60px;
        width: 100%;
        height: 600px;
        position: relative;
    }
    .banner-content {
        position: absolute;
        left: 50%;
        top: 70%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 43%;
        height: 100%;
        max-height: 400px;
        margin: auto;
        z-index: 99;
    }
}
.searchbox-banner {
    .custom-select-wrapper {
        position: relative;
        display: inline-block;
        user-select: none;
    }
    .custom-select-wrapper select {
        display: none;
    }
    .custom-select {
        position: relative;
        display: inline-block;
    }
    .custom-select-trigger {
        position: relative;
        display: block;
        width: 150px;
        padding: 0 84px 0 8px;
        font-size: 14px;
        font-weight: 300;
        color: #000000;
        line-height: 60px;
        /* background: #5c9cd8; */
        border-radius: 4px;
        cursor: pointer;
    }
    .custom-select-trigger:after {
        position: absolute;
        display: block;
        content: "";
        width: 10px;
        height: 10px;
        top: 50%;
        right: 4px;
        margin-top: -3px;
        border-bottom: 1px solid #000000;
        border-right: 1px solid #000000;
        transform: rotate(45deg) translateY(-50%);
        transition: all 0.4s ease-in-out;
        transform-origin: 50% 0;
    }
    .custom-select.opened .custom-select-trigger:after {
        margin-top: 3px;
        transform: rotate(-135deg) translateY(-50%);
    }
    .custom-options {
        position: absolute;
        display: block;
        top: 100%;
        left: -13px;
        right: 0;
        /* min-width: 100%; */
        width: 176px;
        margin: 5px 0;
        /* border: 1px solid #b5b5b5; */
        border-radius: 4px;
        border-top-left-radius: 0;
        box-sizing: border-box;
        box-shadow: 0 2px 1px rgba(0, 0, 0, 0.07);
        background: #fff;
        transition: all 0.4s ease-in-out;
        height: 280px;
        overflow-y: scroll;
        overflow-x: hidden;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-15px);
    }
    .custom-select.opened .custom-options {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        transform: translateY(0);
    }
    .custom-options:before {
        position: absolute;
        display: block;
        content: "";
        bottom: 100%;
        right: 25px;
        width: 7px;
        height: 7px;
        margin-bottom: -4px;
        border-top: 1px solid #b5b5b5;
        border-left: 1px solid #b5b5b5;
        background: #fff;
        transform: rotate(45deg);
        transition: all 0.4s ease-in-out;
    }
    .option-hover:before {
        background: #f9f9f9;
    }
    .custom-option {
        position: relative;
        display: block;
        padding: 0 12px;
        /* border-bottom: 1px solid #b5b5b5; */
        font-size: 13px;
        /* font-weight: 500; */
        color: #000000;
        line-height: 26px;
        cursor: pointer;
        transition: all 0.4s ease-in-out;
    }
    .custom-option:first-of-type {
        border-radius: 4px 4px 0 0;
    }
    .custom-option:last-of-type {
        border-bottom: 0;
        border-radius: 0 0 4px 4px;
    }
    .custom-option:hover,
    .custom-option.selection {
        background: #f9f9f9;
    }
}

.nav-link{
    font-size: 16px;
    color: #fff !important;
    font-weight: 500;
    margin: 0 10px;
}
.searchbox-banner .input-search #basic-addon1 {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    transition: 0.3s;
}
.searchbox-banner .input-search #basic-addon1.main {
    border-bottom-left-radius: 0px !important;
}
.searchbox-banner .input-search #basic-addon2 {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    border-left: 0;
    background-color: #ffffff;
}
.searchbox-banner .input-search #basic-addon2 a,
.searchbox-banner .input-search #basic-addon2 .a {
    padding: 12px 30px;
    border-radius: 25px;
    background-color: #4bc34b;
    color: #ffffff;
    text-transform: capitalize;
}

@media screen and (max-width:450px){
  .searchbox-banner .input-search #basic-addon2 a, .searchbox-banner .input-search #basic-addon2 .a {
    padding: 0px 7px;
    border-radius: 25px;
    background-color: #4bc34b;
    color: #ffffff;
    text-transform: capitalize;
} 
}
.banner-filter-sec .filter-wegits {
    background-color: #2f265d;
    height: 80px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    padding: 12px 8px 0;
}
.banner-filter-sec .filter-wegits ul li a {
    padding: 0 8px;
    margin: 0 8px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    transition: 0.8s;
}
.banner-filter-sec .filter-wegits ul li a::after {
    position: absolute;
    content: "";
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    left: 0;
    background-color: #ffffff;
    transition: 0.8s;
}
.banner-filter-sec .filter-wegits ul li a:hover::after {
    width: 100%;
}
.banner-filter-sec {
    position: relative;
    .searchbox-banner {
        position: absolute;
        width: 100%;
        top: 62%;
        left: 0;
        z-index: 9;
    }
}
.banner-content h1 {
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
}
.popular-localities-tags {
    margin-top: 70px;
}
.tag-slider-box {
    .wrapper {
        overflow-x: hidden;
    }
    .my-slider {
        padding: 0 30px;
    }
    .my-slider p {
        font-size: 13px;
        margin-bottom: 0;
        padding: 4px;
        cursor: pointer;
    }
    .slick-initialized .slick-slide {
        background-color: #685aba;
        color: #fff;
        margin: 0 10px 0 0;
        display: flex;
        border-radius: 4px;
        align-items: center;
        justify-content: center;
    }
    .slick-next,
    .slick-prev {
        z-index: 9;
    }
    .slick-next {
        right: 15px;
    }
    .slick-prev {
        left: 15px;
    }
    .slick-next:before,
    .slick-prev:before {
        color: #000;
        font-size: 26px;
    }
}

.popular-localities-tags .popularities-content p {
    margin-bottom: 0;
}
.popularities-content i {
    color: #ffffff;
    font-size: 14px;
}
.popularities-content p {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}
.housing-assists {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 30%;
    padding: 12px 80px 0;
    border-top-right-radius: 18px;
    border-top-left-radius: 18px;
    background-color: #2f265d;
    .chousing-content p {
        color: #ffffff;
        font-size: 10px;
    }
    .chousing-content p b {
        color: #ffffff;
        font-size: 14px;
    }
    .chousing-content p span {
        color: #d0478e;
        font-size: 13px;
    }
    .post-btn a {
        color: #ffffff;
        font-size: 14px;
        text-decoration: underline;
    }
}
.housing-edge {
    margin-top: 580px;
    background-color: #f2f3f8;
    .housing-edeg-sider {
        .slick-initialized .slick-slide {
            height: 100%;
            margin: 0 12px 0 0;
        }
        .slick-slider {
            margin-bottom: 0px;
        }
        .slick-next,
        .slick-prev {
            z-index: 9 !important;
        }
        .slick-next {
            right: 30px;
        }
        .slick-prev {
            left: 10px;
        }
        .slick-next:before,
        .slick-prev:before {
            color: #000;
            font-size: 50px;
        }
        
        .slick-prev:before{
            margin-left:-40px !important;
        }
        
        .slick-next:before{
            margin-left:30px !important;
        }
        
        .housing-box {
            padding: 16px;
            box-shadow: 0px 0px 2px 0px #c1c1c1;
            margin: 8px 0;
            border-radius: 4px;
            background-color: #ffffff;
            height: 130px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align:center;
        }
        .housing-box:hover {
            box-shadow: 0px 0px 8px 0px #c1c1c1;
        }
        .housing-box img {
            width: 50px;
            height: 50px;
        }
        .housing-box p {
            margin-bottom: 0;
            font-weight: 500;
            font-size: 14px;
            margin-top: 12px;
        }
    }
}
.recently-added {
    .slick-initialized .slick-slide {
        /* height: 200px; */
        margin: 0 15px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .slick-next,
    .slick-prev {
        z-index: 5;
    }
    .slick-next {
        right: 15px;
    }
    .slick-prev {
        left: 0px;
    }
    .slick-next:before,
    .slick-prev:before {
        color: #000;
        font-size: 48px;
    }
    .recently-title h2 {
        font-size: 31px;
    }
    .recently-title p {
        font-size: 15px;
        color: #c1c1c1;
    }
    .recently-slider {
        .recently-slide-box {
            margin: 8px 0;
            .recently-img {
                overflow: hidden;
                border-radius: 24px;
            }
            .recently-content p {
                font-size: 12px;
            }
            .recently-content h3 {
                font-size: 16px;
                font-weight: 600;
            }
            .recently-content .price-btw h3 {
                font-size: 16px;
            }
            .recently-content p {
                margin-bottom: 0;
            }
        }
    }
}
.feature-collection {
    .feature-title h2 {
        font-size: 31px;
    }
    .feature-title p {
        font-size: 15px;
        color: #c1c1c1;
    }
    .no-of-prop {
        background-color: #000000d4;
        border-radius: 50%;
        border: 1px solid #000000;
        width: 100%;
        max-width: 0px;
        margin: auto;
        height: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        transition: 0.2s;
        z-index: 9;
        visibility: hidden;
    }
    .no-of-prop div {
        display: none;
        transition: 0.4s;
    }
    .independent-house:hover .indepent-content .no-of-prop {
        visibility: visible;
        max-width: 100px;
        height: 100px;
    }
    .no-of-prop h3 {
        color: #ffffff;
        font-size: 31px;
        margin-bottom: 0;
    }
    .no-of-prop p {
        color: #ffffff;
        font-size: 12px;
        margin-bottom: 0;
    }
    .bottom-content h3 {
        font-size: 18px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 0;
    }
    .bottom-content p {
        font-size: 13px;
        font-weight: 500;
        color: #ffffff;
    }
    .independent-house {
        position: relative;
        height: 215px;
        width: 100%;
        overflow: hidden;
        border-radius: 6px;
        z-index: 0;
    }
    .independent-house::after {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #0000004a;
        z-index: 0;
    }
    .independent-house img {
        object-fit: cover;
    }
    .indepent-content {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translate(-50%, 10%);
        width: 300px;
        z-index: 1;
    }
    .slick-initialized .slick-slide {
        margin: 0 7px 0 7px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .slick-next,
    .slick-prev {
        z-index: 5;
    }
    .slick-next {
        right: 30px;
    }
    .slick-prev {
        left: 7px;
    }
    .slick-next:before,
    .slick-prev:before {
        color: #000;
        font-size: 48px;
    }
}
.independent-house:hover .no-of-prop div {
    display: block;
}
.trending-projects {
    .slick-initialized .slick-slide {
        margin: 0 15px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slick-next,
    .slick-prev {
        z-index: 5;
    }
    .slick-next {
        right: 35px;
    }
    .slick-prev {
        left: 0px;
    }
    .slick-next:before,
    .slick-prev:before {
        color: #000;
        font-size: 42px;
    }
    .yashada-ville {
        width: 100%;
        .yashada {
            border: 1px solid #f1f3f6;
            border-radius: 4px;
            overflow: hidden;
            .yashda-img {
                height: 100%;
            }
            .yashda-img img {
                object-fit: cover;
                /* height: 100%; */
                height: 157px;
            }
            .yashda-content {
                padding: 16px;
            }
            .yashda-content h3 {
                font-size: 17px;
            }
            .yashda-content p {
                font-size: 12px;
                margin-bottom: 8px;
            }
            .yashda-content span {
                font-size: 13px;
            }
            .yash-price h3 {
                font-size: 16px;
                margin-bottom: 0;
            }
        }
    }
}
.news-articles {
    .slick-initialized .slick-slide {
        margin: 0 15px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .slick-next,
    .slick-prev {
        z-index: 5;
    }
    .slick-next {
        right: 35px;
    }
    .slick-prev {
        left: 0px;
    }

    .slick-next:before,
    .slick-prev:before {
        color: #000;
        font-size: 48px;
    }
    
    .slick-prev:before {
      margin-left:-25px !important;
    }
    .slick-next:before {
      margin-left:25px !important;
    }
    
    
    .article-slider {
        .acticle-box {
            .article-img {
                overflow: hidden;
                border-radius: 4px;
                /*height: 160px;*/
            }
            .article-img img {
                object-fit: cover;
            }
            .content h3 {
                font-size: 16px;
                font-weight: 600;
                min-height: 40px;
                overflow: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                line-clamp: 2;
                -webkit-box-orient: vertical;
            }
            .content p {
                font-size: 13px;
            }
            .bolg-detail p {
                font-size: 12px;
            }
        }
    }
}

.top-browse-link {
    .top-brows-title h2 {
        font-size: 31px;
        font-weight: 300;
    }
    .top-brows-title h2 b {
        font-weight: 500;
    }

    .people-search-also {
        .slick-initialized .slick-slide {
            width: 100%;
            margin: 0 15px 0 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .slick-next,
        .slick-prev {
            z-index: 5;
        }
        .slick-next {
            right: 35px;
        }
        .slick-prev {
            left: 0px;
        }
        .slick-next:before,
        .slick-prev:before {
            color: #000;
            font-size: 48px;
        }
        .slick-track {
            margin-left: 0 !important;
        }
        .people-serch-cont ul li b,
        .people-serch-cont ul li a {
            font-size: 13px;
        }
    }
}

.home-first-sight {
    .home-sight-box {
        position: relative;
        .home-sight-content {
            position: absolute;
            top: 0;
            left: 0;
        }
        .home-sight-content h2 {
            font-size: 31px;
            margin-bottom: 32px;
        }
        .home-sight-content ul li p {
            margin-bottom: 0;
            position: relative;
        }
        .home-sight-content ul li {
            margin-bottom: 20px;
        }
        .home-sight-content ul li p::after {
            position: absolute;
            content: "";
            bottom: 0px;
            left: 0;
            width: 100%;
            height: 10px;
            z-index: -1;
        }
        .home-sight-content ul li:nth-child(1) p::after {
            background-color: #d4ffee;
        }
        .home-sight-content ul li:nth-child(2) p::after {
            background-color: #f1ffd4;
        }
        .home-sight-content ul li:nth-child(3) p::after {
            background-color: #d3e2ff;
        }
    }
}

.benefit-co-living {
    background-color: #fafafa;
    .stress-box {
        width: 100%;
        max-width: 60%;
        margin: auto;
    }
    .stress-box img {
        margin-bottom: 16px;
    }
    .stress-box h3 {
        font-size: 16px;
        font-weight: 500;
    }
    .stress-box p {
        font-size: 14px;
    }
}

.hand-picked {
    .hand-pick-img {
        position: relative;
        overflow: hidden;
        width: 100%;
        border-radius: 8px;

        .hand-pickititle {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
            width: 200px;
            text-align: center;
        }
        .hand-pickititle h3 {
            font-size: 20px;
            font-weight: 500;
            color: #ffffff;
        }
    }

    .hand-pick-img::after {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, #00000036, #000000);
        z-index: 0;
    }
    .hand-pick-img img {
        transition: 0.8s;
    }
    .hand-pick-img:hover img {
        transform: scale(1.4);
    }
}

.our-member-say {
    .carousel-control-next,
    .carousel-control-prev {
        top: 80%;
        border: 1px solid #c1c1c1;
        width: 50px;
        height: 50px;
    }
    .carousel-control-prev {
        left: 45%;
    }
    .carousel-control-next {
        right: 45%;
    }
    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        filter: invert(1);
    }
    .testimonil-img {
        width: 100%;
        height: 550px;
    }
    .testimonial-text h2 {
        font-size: 24px;
        font-weight: 500;
    }
    .testimonial-text p {
        font-size: 16px;
        font-weight: 400;
    }
    .test-detail img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-right: 16px;
    }
    .test-detail {
        .mud-content h3 {
            font-size: 16px;
            font-weight: 500;
        }
        .mud-content p {
            font-size: 12px;
            font-weight: 400;
            margin-bottom: 0;
        }
    }
}
.pro-city-user {
    background-color: #000000;
    .pro-city-cont h2 {
        font-size: 36px;
        font-weight: 500;
        color: #ffffff;
    }
    .pro-city-cont p {
        font-size: 16px;
        color: #ffffff;
        margin-bottom: 0;
    }
}

.footer {
    background-color: #000000;
    .about-foot {
        .footer-barnd-logo img {
            width: 100px;
            height: 35px;
        }
    }
    .about-foot p {
        color: #ffffff;
        font-size: 13px;
    }
    .social-media-icons h4 {
        font-size: 12px;
        color: #ffffff;
        font-weight: 600;
    }
    .social-media-icons ul li a i {
        color: #f1f3f6;
    }
    .social-media-icons p {
        color: #ffffff;
        font-size: 12px;
    }
    .playstore-btn h4 {
        font-size: 12px;
        color: #ffffff;
        font-weight: 600;
    }
    .locationslist h4 {
        font-size: 12px;
        color: #ffffff;
        font-weight: 600;
    }
    .locationslist ul li {
        width: 100%;
        max-width: 140px;
        text-align: start;
    }
    .locationslist ul li a {
        color: #ffffff;
        font-size: 12px;
    }
}

.about-banner {
    z-index: 0;
    width: 100%;
    max-width: 95%;
    margin: auto;
    /* overflow: hidden; */
    margin-top: 0px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    .banner-container {
        background-image: url(../images/about-banner.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-bottom-right-radius: 60px;
        border-bottom-left-radius: 60px;
        width: 100%;
        height: 600px;
        position: relative;
        z-index: -1;
    }
    .banner-content {
        position: absolute;
        left: 50%;
        top: 70%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 43%;
        height: 100%;
        max-height: 400px;
        margin: auto;
        z-index: 99;
    }
    .dynamic-text {
        display: inline-block;
    }

    .dynamic-text {
        list-style: none;
        position: absolute;
        overflow: hidden;
        height: 50px;
    }
    .dynamic-text li {
        width: 520px;
        font-size: 32px;
        font-weight: 600;
        height: 50px;
    }

    .item {
        position: relative;
        top: 0;
        animation: move 10s infinite 2s;
    }
    .item:first-child {
        color: #01baef;
    }
    .item:nth-child(2) {
        color: #f79256;
    }
    .item:nth-child(3) {
        color: #0fa3b1;
    }
    .item:nth-child(4) {
        color: #fe5f55;
    }
    .item:nth-child(5) {
        color: #b0db43;
    }
}
@keyframes move {
    0% {
        top: 0px;
    }
    20% {
        top: -50px;
    }
    40% {
        top: -96px;
    }
    80% {
        top: -196px;
    }
    60% {
        top: -146px;
    }
}
.come-home {
    height: 850px;
    background-color: #fafafa;
    .come-content h3 {
        font-size: 27px;
        font-weight: 500;
    }
    .come-content-riight h4 {
        font-size: 18px;
        font-weight: 600;
    }
    .come-content-riight p {
        font-size: 14px;
    }
}

.work-housing {
    .our-work-content {
        padding: 32px 24px;
        border: 1px solid #000000;
        border-radius: 4px;
        height: 100%;
        position: relative;
    }
    .our-work-content::before {
        position: absolute;
        content: "";
        top: -3px;
        left: 0;
        width: 100%;
        height: 6px;
        background-color: #1bd48e;
        border-top-right-radius: 4px;
        border-top-left-radius: 4px;
    }
    .our-work-content p {
        font-size: 14px;
    }
}
.the-foundation {
    .foundation-title p {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 0;
        color: #808080;
    }
    .foundation-title h2 {
        font-size: 28px;
        font-weight: 500;
    }
    .content-vision-mission {
        .cont-vison-box ul li:nth-child(1) {
            width: 100%;
            max-width: 30%;
        }
        .cont-vison-box ul li:nth-child(2) {
            width: 100%;
            max-width: 65%;
        }
        .cont-vison-box:nth-child(1) ul li h3 {
            color: #834de8;
        }
        .cont-vison-box:nth-child(2) ul li h3 {
            color: #ff7e00;
        }
        .cont-vison-box:nth-child(3) ul li h3 {
            color: #00a158;
        }
        .cont-vison-box ul li h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 0;
        }
        .cont-vison-box:nth-child(1) {
            background-color: #e7ddfb;
        }
        .cont-vison-box:nth-child(2) {
            background-color: #fefabf;
        }
        .cont-vison-box:nth-child(3) {
            background-color: #d5f3e8;
        }
        .cont-vison-box ul li p {
            font-size: 14px;
            font-weight: 400;
            margin-bottom: 0;
        }
        .cont-vison-box {
            padding: 24px 16px;
            border-radius: 8px;
        }
        .cont-vison-box:nth-child(3) ol li {
            width: 100%;
            max-width: 42%;
            margin-left: 24px;
            position: relative;
        }
        .cont-vison-box:nth-child(3) ol li::before {
            position: absolute;
            content: url(../images/green_plus.webp);
            top: 0;
            left: -20px;
        }
    }
}
.open-doors {
    .open-door-content p {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        color: #808080;
        margin-bottom: 0;
    }
    .open-door-content h2 {
        font-size: 28px;
    }
}
.blog-pg {
    .slick-initialized .slick-slide {
        /* height: 200px; */
        margin: 0 2px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .slick-next,
    .slick-prev {
        z-index: 5;
    }
    .slick-next {
        right: 15px;
    }
    .slick-prev {
        left: 15px;
    }
    .slick-next:before,
    .slick-prev:before {
        color: #000;
        font-size: 26px;
    }
    /* .slick-slide.slick-active:nth-child(2) .blog-slide-content{
    display: block;
  } */
    .blog-slider-box {
        width: 100%;
        position: relative;
        .blog-slide-content ul li {
            position: relative;
        }
        .blog-slide-content ul li p {
            font-size: 14px;
            color: #ffffff;
            margin-bottom: 0;
        }
        .blog-slide-content ul li:not(:first-child) {
            margin-left: 16px;
        }
        .blog-slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            max-width: 80%;
            background-color: #000000a0;
            padding: 16px 24px;
            border-radius: 8px;
            display: none;
            transition: 0.8s;
        }
        .blog-slide-content ul li:not(:first-child)::before {
            position: absolute;
            content: "";
            left: -9px;
            top: 0;
            width: 2px;
            height: 100%;
            background-color: #ffffff;
        }
        .blog-slide-content .title h1 {
            font-size: 24px;
            font-weight: 500;
            color: #ffffff;
        }
    }
}
.luck-now-sec {
    .blog-lists {
        .blog-one {
            .blog-one-img {
                position: relative;
            }

            .blog-img-title {
                position: absolute;
                top: 6px;
                left: 0;
                background-color: #000000;
                padding: 4px 8px;
            }
            .blog-img-title p {
                color: #ffffff;
                margin-bottom: 0;
                font-size: 13px;
            }
            .blog-one-content ul li {
                position: relative;
            }
            .blog-one-content ul li p {
                font-size: 14px;
                margin-bottom: 4px;
            }
            .blog-one-content ul li:not(:first-child) {
                margin-left: 16px;
            }
            .blog-one-content ul li:not(:first-child)::before {
                position: absolute;
                content: "";
                left: -9px;
                top: 3px;
                width: 2px;
                height: 16px;
                background-color: #6f6f6f;
            }
            .blog-one-content h3 {
                font-size: 20px;
            }
            .blog-one-content p {
                font-size: 14px;
                overflow: hidden;
                display: -webkit-box;
                -webkit-line-clamp: 4;
                line-clamp: 4;
                -webkit-box-orient: vertical;
            }
            .blog-one-content a {
                font-size: 14px;
                color: #3a85ff;
            }
        }
    }
}
.add-sec-rented-place {
    .feedback-share {
        background-color: #000000;
        padding: 12px;
        border-radius: 4px;
    }
    .feedback-share p {
        color: #ffffff;
        font-size: 14px;
        margin-bottom: 0;
    }
    .read-in-other ul li:not(:last-child) {
        margin-right: 8px;
    }
    .read-in-other ul li a {
        color: #646464;
        border: 1px solid #e3e3e3;
        padding: 6px 8px;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
    }
    .read-in-other ul li a:hover {
        color: #3a85ff;
        background-color: #e3e3e3;
        border-color: #e3e3e3;
    }
    .read-in-other h4 {
        font-size: 16px;
        font-weight: 600;
    }
}
.add-sec-rented-place ol li a {
    color: #3a85ff;
    font-size: 14px;
}
.add-sec-rented-place ol li a:hover {
    color: #646464;
}

.related-blog {
    .related-title h3 {
        font-size: 28px;
    }
    .related-post-one .rel-post-img {
        height: 175px;
    }
    .related-post-one .rel-post-img img {
        height: 100%;
    }
    .related-post-one h4 {
        margin-top: 14px;
        font-size: 18px;
        font-weight: 600;
    }
}
.add-sec-rented-place {
    position: sticky;
    top: 40px;
}

/* .slick-slide.slick-active .blog-slide-content{
  display: block !important;
} */

.show-blog .blog-slide-content {
    display: block !important;
}

.contact-banner {
    z-index: 0;
    width: 100%;
    max-width: 95%;
    margin: auto;
    /* overflow: hidden; */
    margin-top: -20px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    .banner-container {
        background-image: url(../images/contact-banner.png);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        border-bottom-right-radius: 60px;
        border-bottom-left-radius: 60px;
        width: 100%;
        height: 600px;
        position: relative;
    }
    .banner-content {
        position: absolute;
        left: 50%;
        top: 70%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 43%;
        height: 100%;
        max-height: 400px;
        margin: auto;
        z-index: 99;
    }
    .banner-content h1 {
        font-size: 36px;
    }
    .banner-content p {
        font-size: 16px;
        color: #ffffff;
    }
}
.contact-detsils {
    margin-top: 680px;
}
.incase p {
    font-size: 16px;
    margin-bottom: 0;
}
.incase ul li a {
    color: #3a85ff;
}

.feature-house {
    background-color: #fafafa;
    .sharing-room {
        background-color: #ffffff;
        padding: 16px;
    }
    .rentthis-house {
        background-color: #ffffff;
        border: 1px solid #f1f1f1;
        padding: 16px;
    }
    .rentthis-house h4 {
        font-size: 22px;
        font-weight: 600;
    }
    .about-house {
        background-color: #ffffff;
        border: 1px solid #f1f1f1;
        padding: 16px;
    }
    .about-house h3 {
        font-size: 22px;
        font-weight: 600;
    }
    .about-house p {
        font-size: 14px;
    }

    .visit-this-house {
        background-color: #ffffff;
        position: sticky;
        top: 40px;
        padding: 32px 16px;
        .title h4 {
            font-size: 24px;
            font-weight: 500;
        }
        .pay-token img {
            width: 100%;
            max-width: 50%;
            margin: auto;
            margin-top: 32px;
        }
        .pay-token h3 {
            font-size: 16px;
            font-weight: 600;
            margin: 24px 0 0;
        }
        .pay-token p {
            font-size: 13px;
            font-weight: 500;
            margin: 0 0 32px;
        }
        .pay-token a.book-btn {
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            background-color: #000000;
            color: #ffffff;
            padding: 16px 32px;
            margin-top: 16px;
        }
    }
    .instant-img-sont {
        position: absolute;
        top: 0;
        right: 0;
        padding: 2px 6px;
        border-radius: 12px;
        background-color: #c0f0f6;
    }
    .instant-img-sont img {
        width: 15px;
        height: 15px;
        margin-right: 4px;
    }
    .instant-img-sont p {
        font-size: 13px;
        margin-bottom: 0;
    }
}
.listed-properties-sec::-webkit-scrollbar {
    width: 0px;
    background-color: #00e4ff;
}
.content-ul p {
    margin-bottom: 0;
}
.shareinf-room-instatn img {
    width: 15px;
    height: 15px;
}
.rentthis-house h3 {
    font-size: 16px;
    font-weight: 600;
}
.rentthis-house .content-ul ul li p {
    font-size: 13px;
}
.rentthis-house .content-ul ul li .text {
    font-size: 13px;
}
.rentthis-house .content-ul ul li {
    text-align: center;
    width: 100%;
    max-width: 33%;
    position: relative;
}
.rentthis-house .content-ul ul li:not(:last-child)::after {
    position: absolute;
    content: "";
    top: 0;
    right: 8%;
    height: 100%;
    width: 1px;
    background-color: #c1c1c1;
}
.house-feature img {
    margin: 8px 0;
}
.house-feature p {
    font-size: 14px;
}
.feature-house {
    background-color: #fafafa;
    .sharing-room {
        background-color: #ffffff;
        padding: 16px;
    }
    .rentthis-house {
        background-color: #ffffff;
        border: 1px solid #f1f1f1;
        padding: 16px;
    }
    .rentthis-house h4 {
        font-size: 22px;
        font-weight: 600;
    }
    .about-house {
        background-color: #ffffff;
        border: 1px solid #f1f1f1;
        padding: 16px;
    }
    .about-house h3 {
        font-size: 22px;
        font-weight: 600;
    }
    .about-house p {
        font-size: 14px;
    }

    .visit-this-house {
        background-color: #ffffff;
        position: sticky;
        top: 40px;
        padding: 32px 16px;
        .title h4 {
            font-size: 24px;
            font-weight: 500;
        }
        .pay-token img {
            width: 100%;
            max-width: 50%;
            margin: auto;
            margin-top: 32px;
        }
        .pay-token h3 {
            font-size: 16px;
            font-weight: 600;
            margin: 24px 0 0;
        }
        .pay-token p {
            font-size: 13px;
            font-weight: 500;
            margin: 0 0 32px;
        }
        .pay-token a.book-btn {
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            background-color: #000000;
            color: #ffffff;
            padding: 16px 32px;
            margin-top: 16px;
        }
    }
    .carousel-item {
        height: 400px;
    }
}

.property-res {
    .property-filter-main {
        .property-filter p {
            font-size: 14px;
        }
        .property-filter h2 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 0;
        }
        .short-by p {
            font-size: 14px;
            margin-bottom: 0;
        }
    }
    .property-filter-main p {
        font-size: 14px;
    }
}
.property--one {
    border: 1px solid #ededed;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0px 0px 11px -1px #d8d8d8;
    .single-property-slider {
        .carousel-item img {
            width: 100%;
            border-radius: 8px;
        }
    }
    .single-property-detail {
        .single-price-box {
            .price-sec h4 {
                font-size: 18px;
            }
            .price-sec p {
                font-size: 12px;
                text-decoration: underline;
                margin-left: 4px;
                margin-bottom: 0;
            }
            .share-or-which-list ul li img {
                width: 18px;
                height: 18px;
            }
            .share-or-which-list ul li:not(:last-child) {
                margin-right: 8px;
            }
        }
        .furnishing-built {
            .furnishing {
                .furnishing-content span {
                    font-size: 11px;
                    font-weight: 400;
                    margin-bottom: 0;
                    color: #878787;
                    text-transform: uppercase;
                }
                .furnishing-content p {
                    font-size: 13px;
                    font-weight: 500;
                    margin-bottom: 0;
                    line-height: 10px;
                }
            }
            .furnishing img {
                width: 30px;
                height: 30px;
                object-fit: cover;
            }
        }
    }
    .single-price-box h3 {
        font-size: 15px;
        font-weight: 400;
    }
    .single-price-box .modern-house p {
        font-size: 13px;
        margin-bottom: 0;
        color: #7b7b7b;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .single-price-box .modern-house span {
        font-size: 13px;
        color: #000000;
        text-decoration: underline;
    }
    .update-time span {
        font-size: 12px;
    }
    .nearby-locations {
        .nearby-conte p {
            font-size: 12px;
        }
    }
    .nearby-slider-content {
        .slick-initialized .slick-slide {
            /* background-color: #b32532; */
            /* color: #FFF; */
            margin: 0 5px 0 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .nearby-cocation-one {
            .nearby-img {
                width: 16px;
                height: 16px;
                overflow: hidden;
            }
            .nearby-img img {
                margin-top: -81px;
                margin-left: -122px;
                transform: scale(0.6);
            }
            .loca-distance {
                font-size: 10px;
            }
            .loca-distance a {
                font-size: 11px;
                font-weight: 600;
            }
            .loca-distance a {
                font-size: 11px;
            }
        }

        .slick-next,
        .slick-prev {
            z-index: 99;
            top: 25%;
            background-color: #ffffff;
            border-radius: 50%;
            width: 16px;
            height: 16px;
            cursor: pointer;
        }
        .slick-next {
            right: 0px;
        }
        .slick-prev {
            left: 0px;
        }
        .slick-next:before,
        .slick-prev:before {
            color: #000;
            font-size: 16px;
        }
    }
}
.nearby-slider .slick-slide:nth-child(2) .nearby-img img {
    margin-top: -281px;
    margin-left: -267px;
    transform: scale(0.6);
}
.share-prop {
    position: relative;
    cursor: pointer;
}

.shrae-box {
    width: 240px;
    border: 1px solid #c1c1c1;
    border-radius: 8px;
    overflow: hidden;
    z-index: 999;
    background-color: #ffffff;
    position: absolute;
    right: 0;
    display: none;
}
.share-prop:hover .shrae-box {
    display: block;
}
.shrae-box .title {
    background-color: #f3f3f3;
    padding: 16px 8px;
}
.shrae-box .title h3 {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0;
}
.shrae-box ul {
    margin-bottom: 0;
}
.shrae-box ul li {
    padding: 10px 16px;
    width: 100%;
}
.shrae-box ul li p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
}
.shrae-box ul li a img {
    margin-right: 8px;
    width: 20px;
    height: 20px;
    object-fit: cover;
}
.shrae-box ul li:hover {
    background-color: #f3f3f3;
}

.whishwishlist img:first-child {
    display: block;
}
.whishwishlist.checked img:first-child {
    display: none;
}
.whishwishlist img:last-child {
    display: none;
}
.whishwishlist.checked img:last-child {
    display: block;
}
#exampleModalToggle .btn-close {
    position: absolute;
    right: -30px;
    top: 0;
    filter: invert(1);
}
.gerat-box {
    width: 100%;
    background-color: #fafafa;
    border: 1px solid #ffa537;
    padding: 6px;
    border-radius: 4px;
}
.gerat-box img {
    width: 16px;
    height: 16px;
}
.gerat-box p {
    font-size: 15px;
    margin-bottom: 0;
}
.contact-seller h3 {
    font-size: 18px;
}
.contact-seller .seller-box img {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    margin-right: 8px;
}
.contact-seller .seller-box .seller-detail h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
}
.contact-seller .seller-box .seller-detail p {
    font-size: 15px;
    color: #8f8f8f;
    margin-bottom: 0;
}
.contact-seller .seller-box .seller-detail a {
    font-size: 14px;
    font-weight: 500;
}

.contact-seller {
    .contact-wrap {
        margin-top: 16px;
    }

    .contact-form .input-block {
        background-color: rgba(255, 255, 255, 0.8);
        border: solid 1px #c1c1c1;
        width: 100%;
        height: 25px;
        padding: 25px;
        position: relative;
        margin-bottom: 20px;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        border-radius: 4px;
    }

    .contact-form .input-block.focus {
        background-color: #fff;
        /* border: solid 1px #fb2900; */
    }

    .contact-form .input-block.textarea {
        height: auto;
    }

    .contact-form .input-block.textarea .form-control {
        height: auto;
        resize: none;
    }

    .contact-form .input-block label {
        padding: 0 10px;
        background: #fff;
        position: absolute;
        left: 8px;
        top: 20px;
        display: block;
        margin: 0;
        font-weight: 300;
        z-index: 1;
        color: #999;
        font-size: 18px;
        line-height: 10px;
    }

    .contact-form .input-block .form-control {
        background-color: transparent;
        border: medium none;
        border-radius: 0;
        box-shadow: none;
        color: #333;
        font-size: 16px;
        height: 25px;
        padding: 0;
        position: relative;
        top: -12px;
        z-index: 2;
    }

    .contact-form .input-block .form-control:focus label {
        top: 0;
    }

    .contact-form .square-button {
        background-size: 100%;
        background-color: #818181;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        text-align: center;
        -moz-border-radius: 2px;
        -webkit-border-radius: 2px;
        border-radius: 2px;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        padding: 0 40px;
        height: 40px;
        border: none;
        width: 100%;
    }

    .contact-form .square-button:hover,
    .contact-form .square-button:focus {
        background-color: #414040;
    }
}

.container-propperty-sizin {
    width: 100%;
    max-width: 60%;
    margin: auto;
}
.zero-brok-prem {
    background-color: #abf8ff;
    border-radius: 8px;
    padding: 8px;
}
.zero-brok-prem p {
    font-size: 15px;
    margin-bottom: 0;
}
.zero-brok-prem p span {
    font-size: 12px;
    color: #858585;
}
.get-our-free-app {
    padding: 19px;
    background-color: #ffffff;
    box-shadow: 0px 0px 4px 4px #f2f2f2;
    border-radius: 8px;
    .top-titlee h4 {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 0;
    }
    .top-titlee span {
        font-size: 10px;
        font-weight: 500;
    }
    .Qr-sec img {
        width: 100%;
        max-width: 50%;
        margin: auto;
    }
    .Qr-sec p {
        font-size: 10px;
        font-weight: 500;
        color: #9c9c9c;
    }
    .get-app-sms label {
        font-size: 12px;
        font-weight: 500;
    }
    .get-app-sms input {
        font-size: 12px;
        font-weight: 500;
    }
    .get-app-sms span img {
        width: 16px;
    }
}

.properties-right-secit {
    position: sticky;
    top: 40px;
}
.airport-changing .blog-title h1 {
    font-size: 30px;
    font-weight: 500;
}
.input-search{
  flex-wrap: nowrap !important; 
}

/*.housing-edge {*/
/*    & .housing-edeg-sider {*/
/*        .slick-next:before{*/
/*            margin-left: -30px !important;*/
/*        }*/
/*    }*/
/*}*/

/*.housing-edge {*/
/*    & .housing-edeg-sider {*/
/*        .slick-prev:before{*/
/*            margin-left:30px !important;*/
/*        }*/
/*    }*/
/*}*/



