/* Globle css start */
:root {
    --primary-color: #1E1E82;
    --secondary-color: #091E42;
    --text-color: #576276;
    --light-bg: #EAEFFF;
    --light-bg2: #F0EFFB;
    --white-color: #fff;
    --white-color80: rgba(255, 255, 255, 0.80);
    --white-color70: rgba(255, 255, 255, 0.70);
    --white-color30: rgba(255, 255, 255, 0.30);
    --black-color: #000;
    --brightCyan-color: #0A0A0A;
    --border-color20: rgba(30, 30, 130, 0.20);
    --border-color40: rgba(30, 30, 130, 0.40);
    --border-white20: rgba(255, 255, 255, 0.20);
    --label-color: #06D6A0;
    --progress-color: #14D1FA;
    ;
    --gradient-bg: linear-gradient(180deg, #BAE3FF 0%, #4AB4FA 100%);


    --kiwimi-btn-bg: linear-gradient(0deg, #501AC8, #501AC8), linear-gradient(90deg, rgba(179, 102, 207, 0.5) 20%, #501AC8 100%);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
}

.container {
    max-width: 1324px;
}

ul,
ol,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
}

button {
    transition: all 0.3s;
}

p {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
}


h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {}

h1,
.h1 {
    font-size: 32px;
    line-height: 120%;
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--primary-color);
}

h2,
.h2 {
    font-size: 32px;
    line-height: 120%;
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--secondary-color);
}

h3,
.h3 {
    font-size: 30px;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -1px;
    color: var(--secondary-color);
}

h4,
.h4 {
    font-size: 22px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -1px;
    color: var(--secondary-color);
}

h5,
.h5 {
    font-size: 20px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: -1px;
    color: var(--secondary-color);
}

h6,
.h6 {
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -1px;
    color: var(--secondary-color);
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fw-500 {
    font-weight: 500;
}

.rounded-12 {
    border-radius: 12px;
}

.px-12 {
    padding-left: 12px;
    padding-right: 12px;
}

.p-12 {
    padding: 12px;
}

.pt-12 {
    padding-top: 12px;
}

.pb-12 {
    padding-bottom: 12px;
}

.sec-pt {
    padding-top: 35px;
}

.sec-pb {
    padding-bottom: 35px;
}

.sec-py {
    padding-top: 35px;
    padding-bottom: 35px;
}

.sec-mt {
    margin-top: 35px;
}

.sec-mb {
    margin-bottom: 35px;
}

.sec-my {
    margin-top: 35px;
    margin-bottom: 35px;
}

.dropdown-toggle {
    position: relative;
    padding-right: 24px !important;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    background: url(../images/arrow-down.svg);
    width: 16px;
    height: 17px;
    background-repeat: no-repeat;
    background-position: center center;
    transform: rotate(0) translateY(-50%);
}

/* Fade image animation start*/
.fade-image-animation {
    position: relative;
}

.fade-image-animation::after {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .15) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .15) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.fade-image-animation:hover::after {
    -webkit-animation: shine .75s;
    animation: shine .75s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

/* Fade image animation end*/

/* Sldier css start */
.slick-slide {
    margin: 0 10px;
    /* 10px space between slides */
}

/* Prevent overflow */
.slick-list {
    margin: 0 -10px;
}

.slick-arrow {
    width: 60px;
    height: 60px;
    border: 1px solid var(--white-color);
    background-color: var(--white-color);
    box-shadow: 0px 8px 16px 0px #00000014;
    border-radius: 50%;
    font-size: 0;
    background-image: url(../images/slider-left-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    z-index: 1;
}

.slick-next {
    right: -30px;
    left: initial;
    background-image: url(../images/slider-right-arrow.svg);
}

.slick-disabled {
    display: none !important;
}

/* Sldier css end */

/* Globle css end */


/* Header css start */

/* top bar css start */
.top-header {
    position: relative;
    background: var(--primary-color);
    padding: 20px 0;
    color: var(--white-color);
}

.navbar-brand {
    margin-right: 30px;
}

.border-dropdown-btn,
.link-dropdown-btn {
    color: var(--white-color);
    padding: 0;
    border: none;
    font-size: 14px;
    line-height: 24px;
}

.border-dropdown-btn::before,
.link-dropdown-btn::before {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(187deg) brightness(106%) contrast(106%);
}

.border-dropdown-btn {
    border: 1px solid var(--white-color);
    padding: 3px 40px 3px 16px !important;
    border-radius: 32px;
}

.border-dropdown-btn::before {
    right: 14px;
}

.link-dropdown-btn img {
    margin-right: 8px;
}

.navbar-brand,
.ppf-lable {
    margin-right: 30px;
}

.ppf-lable {
    background-color: var(--white-color);
    color: var(--primary-color);
    padding: 4px 8px 4px 16px;
    font-size: 14px;
    line-height: 24px;
    border-radius: 32px;
    color: var(--black-color);
}

.ppf-lable span {
    background-color: var(--label-color);
    font-size: 12px;
    padding: 0px 8px;
    display: inline-block;
    line-height: normal;
    border-radius: 16px;
    margin-left: 4px;
}

.site-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 33px;
    border-radius: 50px;
}
    .site-btn:hover {
        background-color: #1e1e8282;
        color: var(--white-color);
    }

    .white-btn {
        border: none;
        background: var(--white-color);
        color: var(--primary-color);
        font-weight: 500;
        font-size: 16px;
        line-height: 18px;
    }

.grey-btn {
    background-color: var(--light-bg2);
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: -0.5px;
    border: none;
}

/* top bar css end */

/* Navbar css start */
.navbar {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color20);
}

.navbar-nav li.nav-item {
    margin: 0 30px;
}

.navbar-nav li.nav-item .nav-link {
    padding: 0;
    color: var(--secondary-color);
}

/* Navbar css end */
/* Header css end */

/* Banner css start */
.banner {
    position: relative;
    padding: 80px 0 87px;
}

.divider {
    height: 18px;
    width: 1px;
    background: var(--white-color30);
    display: flex;
}

.main-search-bar {
    max-width: 840px;
    margin: 0 auto;
    border-radius: 33px;
    background-color: var(--primary-color);
}

.search-tabs .link {
    position: relative;
    background: transparent;
    box-shadow: none;
    border: none;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 500;
    padding: 0 25px;
    line-height: normal;
}

/* .search-tabs .link.active{
    color: var(--progress-color);
} */

.search-tabs .link.active::before {
    content: "";
    position: absolute;
    width: 64%;
    height: 2px;
    background: var(--progress-color);
    left: 18%;
    bottom: -4px;
}

.search-filter {
    background-color: var(--white-color);
    border: 1px solid var(--border-color40);
    border-radius: 32px;
}

.search-filter .dropdown-toggle {
    padding: 21px 24px 21px 0;
    font-size: 15px;
    border: none;
    color: var(--text-color);
}

.search-filter .dropdown {
    border-right: 1px solid var(--border-color40);
}

.search-filter img {
    margin-right: 12px;
}

.search-bar {
    flex: 1 0 auto;
}

.search-bar input.form-control {
    padding: 0 0 0 36px;
    border: none;
    box-shadow: none;
    background-image: url(../images/search.svg);
    background-repeat: no-repeat;
    background-position: left center;
    font-size: 15px;
}

/* Banner css end */

/* Properties Types css start */
.pro-type-box {
    background-color: var(--light-bg);
    border-radius: 12px;
    padding: 18px 12px 15px;
    color: var(--secondary-color);
}

/* Properties Types css end */

/* Featured Projects css start */
.feature-pro-box {
    border: 1px solid var(--border-color20);
    padding: 12px;
}

.feature-img-content {
    color: var(--white-color);
}

.feature-pro-img img {
    min-height: 235px;
    max-height: 235px;
    object-fit: cover;
    object-position: center center;
}

.feature-img-content p {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-pro-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 17.56%, rgba(6, 6, 7, 0.6) 69%);
    top: 0;
    left: 0;
}

.fp-size {
    color: var(--secondary-color);
}

/* Featured Projects css end */


/* Projects In High Demand css start */
.proj-hd-box {
    background: var(--light-bg);
    color: var(--white-color);
}

.proj-hd-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.46) 2.1%, rgba(255, 255, 255, 0) 47.17%, rgba(0, 0, 0, 0.6) 91.35%);
}

.proj-hd-left .h4 {
    color: var(--white-color);
}

.proj-hd-right {
    flex: 1 0 auto;
}

.proj-hd-bottom {
    background-color: var(--primary-color);
    z-index: 1;
}

.proj-hd-bottom .h5 {
    color: var(--white-color);
}

/* Projects In High Demand css end */

/* Featured Collections css start */
.feature-coll-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0) 63.73%, rgba(6, 6, 7, 0.8) 94.72%);
    top: 0;
    left: 0;
}

.slick-active .feature-coll-img::before {
    background: linear-gradient(180deg, rgba(6, 6, 7, 0.8) 0%, rgba(255, 255, 255, 0) 44.4%, rgba(6, 6, 7, 0.8) 100%);
}

.feature-coll-content {
    color: var(--white-color);
}

.feature-coll-content .h5 {
    color: var(--white-color);
}

/* Featured Collections css end */


/* Counter Section css start */
.counter-sec {
    background: var(--primary-color);
    padding: 80px 0;
    color: var(--white-color);
}

.counter-col:not(:last-child):before {
    content: "";
    position: absolute;
    width: 1px;
    height: 64px;
    background-color: var(--white-color);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.counter-sec .counter {
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -1%;
    color: var(--white-color);
}

/* Counter Section css end */

/* BHK Choice css start */
.bhk-choice-box {
    border: 1px solid var(--border-color20);
}

/* BHK Choice css end */

/* Trending Projects css start */
.td-proj-box {
    border: 1px solid #DCDDDE;
}

.td-proj-slider .td-proj-box:nth-child(even) {
    margin-bottom: 0 !important;
}

.td-proj-content {
    width: 100%;
}

.td-proj-img {
    flex: 1 0 auto;
}

.td-proj-img img {
    width: 144px;
    height: 152px;
    object-fit: cover;
}

/* Trending Projects css end */


/* Top Commercial Projects css start */
.top-comm-box {
    background-color: var(--light-bg);
}

.top-comm-content-right {
    flex: 1 0 auto;
}

/* Top Commercial Projects css end */

/* variety of commercial properties css start */
.buy-comm-propty {
    background-image: url(../images/BuyCommercialPropertiesBg.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 84px 56px;
    color: var(--secondary-color);
    line-height: 160%;
    box-shadow: 0px 8px 16px 0px #00000014;
}

.sell-comm-propty {
    background-image: url(../images/SellCommercialPropertiesBg.png);
}

/* variety of commercial properties css end */


/* Trusted partner css start */
.trusted-partner-box {
    border: 1px solid var(--border-color20);
}

.trusted-partner-box:nth-child(even) {
    margin-bottom: 0 !important;
}

.trusted-partner-img img {
    width: 89px;
    height: 99px;
    object-fit: cover;
    border-radius: 8px;
}

.trusted-partner-content li span {
    color: var(--secondary-color);
}

.tags {
    background-color: var(--light-bg);
    color: var(--secondary-color);
    padding: 3px 14px;
    line-height: 160%;
    border-radius: 26px;
}

.trusted-partner-content ul li {
    position: relative;
}

.trusted-partner-content ul li:not(:last-child):before {
    content: "";
    position: absolute;
    width: 1px;
    height: 14px;
    background: var(--border-color40);
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

/* Trusted partner css end */

/* Real estate Agent css start */
.re-agent-sec-inner {
    background: var(--light-bg2);
    padding-left: 40px;
}

.re-agent-img {
    margin-left: -94px;
}

.re-agent-img img {
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    max-height: 421px;
    width: 100%;
    object-fit: cover;
    border-radius: 0px 8px 8px 0;
}

/* Real estate Agent css end */

/* Popular Cities css start */
.popular-city-box {
    border: 1px solid var(--border-color20);
}

.popular-city-img img {
    width: 127px;
    height: 105px;
    object-fit: cover;
}

/* Popular Cities css end */


/* our services css start */
.our-services-inner {
    background-image: url(../images/our-sevices-bg.png);
    background-repeat: no-repeat;
    background-position: center top;
    padding: 50px 40px 0;
}

.our-services-inner .title {
    max-width: 530px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.our-ser-box {
    background-color: var(--white-color);
    border: 1px solid var(--border-color20);
}

.our-ser-img {
    flex: 1 0 auto;
}

.our-ser-img img {
    width: 89px;
    height: 99px;
    object-fit: cover;
}

/* our services css end */

/* Recently Posted Properties css start */
.recently-post-img-content {
    background: rgb(255 255 255 / 90%);
    padding: 4px 12px;
    color: var(--secondary-color);
    bottom: 10px;
    right: 10px;
}

.recently-post-content .site-btn {
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    padding: 8px 16px;
}

/* Recently Posted Properties css end */


/* Faq's section css start */
.faqs-sec {
    background: var(--primary-color);
    color: var(--white-color);
}

.faqs-sec .h2 {
    color: var(--white-color);
}

.faqs-sec .accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.faqs-sec .accordion-item {
    background: transparent;
    color: var(--white-color);
    border: none;
    border-bottom: 1px solid var(--border-white20);
    border-radius: 0;
    padding-bottom: 30px;
}

.faqs-sec .accordion-button {
    background: transparent;
    color: var(--white-color);
    padding: 30px 0 0;
    box-shadow: none;
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
}

.faqs-sec .accordion-button::after {
    content: "";
    width: 40px;
    height: 40px;
    background-color: var(--white-color);
    border-radius: 50%;
    position: absolute;
    top: 23px;
    right: 0;
    background-image: url(../images/faq-arrow.svg);
    background-repeat: no-repeat;
    background-position: top 13px center;
    background-size: 20px;
    transform: rotate(0deg);
}

.faqs-sec .accordion-button.collapsed::after {
    transform: rotate(180deg);
}

.faqs-sec .accordion-body {
    padding: 0;
    color: var(--white-color70);
    line-height: 160%;
    padding-top: 20px;
}

.more-read-btn {
    display: table;
}

/* Faq's section css end */

/* Demand section css start */
.demand-bg {
    background-color: var(--light-bg);
    padding: 30px;
}

.progress-title .h6 {
    font-weight: 400;
}

.progress {
    height: 4px;
    background: rgba(87, 98, 118, 0.2);
    border-radius: 4px;
}

.progress-bar {
    height: 4px;
    background-color: var(--progress-color);
}

.demand-box {
    padding: 20px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color20);
}

.site-link {
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: underline;
}

.site-link:hover {
    color: var(--secondary-color);
}

/* Demand section css end */

/* Register to Post Your Property css start */
.register-post-bg {
    background: var(--gradient-bg);
    padding: 30px;
    color: var(--secondary-color);
}

/* Register to Post Your Property css end */

/* Blog Section css start */
.blog-box {
    border: 1px solid var(--border-color20);
    border-radius: 12px;
}

.blog-content .h5 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-right-col .blog-box>img {
    max-width: 204px;
    margin-right: 24px;
    height: 131px;
    object-fit: cover;
}

.blog-right-col .blog-box:not(:last-child) {
    margin-bottom: 24px;
}

/* Blog Section css end */

/* Loan EMI Calculator css start */
.calc-bg {
    background: var(--light-bg);
    padding: 42px 36px;
}

.calc-progress {
    margin-bottom: 30px;
}

.calc-progress:last-child {
    margin-bottom: 0;
}

.loan-amount {
    max-width: 150px;
}

.calc-progress input[type=number]::-webkit-inner-spin-button,
.calc-progress input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calc-progress input[type=number] {
    -moz-appearance: textfield;
    box-shadow: none;
    background: transparent;
    border-color: var(--border-color20);
    ;
}

.calc-progress input[type=number]:focus {
    border-color: var(--primary-color);
}

.calc-progress-bar {
    height: 8px;
    background: rgb(87 98 118 / 20%);
    border-radius: 8px;
    overflow: visible;
}

.calc-progress-bar .progress-bar {
    position: relative;
    background-color: var(--primary-color);
    height: 8px;
    border-radius: 8px;
    overflow: visible;
}

.calc-progress-bar .progress-bar::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-color);
    right: 0;
}

.calc-year {
    width: 60px !important;
}

.emi-box {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 78px 24px;
}

.emi-box .h5 {
    color: var(--white-color);
    line-height: normal;
    margin-bottom: 30px;
}

.emi-box span {
    font-size: 24px;
    font-weight: 600;
}

.payment-chart {
    background-color: var(--light-bg);
    height: 100%;
    padding: 36px;
}

.variant-color {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    display: inline-block;
}

.ppl-amount .variant-color {
    background-color: var(--primary-color);
}

.int-amount .variant-color {
    background-color: var(--progress-color);
}

.variant-amount {
    color: var(--secondary-color);
    font-weight: 500;
    margin-left: auto;
}

.ttl-amount {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 18px;
}

.ttl-amount .variant-amount {
    font-weight: 700;
    color: var(--primary-color);
}

/* Loan EMI Calculator css end */


/* Footer css start */
.footer {
    background: var(--primary-color);
    padding-top: 80px;
    color: var(--white-color80);
}

.footer .h3 {
    font-size: 28px;
    color: var(--white-color);
    font-weight: 600;
}

.footer a {
    color: var(--white-color80);
}

.footer ul li {
    line-height: 180%;
}

.footer .h5 {
    color: var(--white-color);
}

.browse-links {
    padding: 10px 0 60px;
    border-bottom: 1px solid var(--border-white20);
}

.browse-links ul {
    padding-left: 20px;
}

.browse-links ul li {
    list-style: disc;
}

.browse-links .col:not(:last-child) {
    border-right: 1px solid var(--border-white20);
}

.footer-row {
    padding: 40px 0 60px;
}

.copyright {
    padding: 24px 0 40px;
    border-top: 1px solid var(--border-white20);
    color: var(--white-color);
}

.copyright a {
    color: var(--white-color);
}

/* Footer css end */


/***********************************
        Listing Page CSS start 
************************************/
.listing-search {
    width: auto;
    flex: 1 0 auto;
    margin: 0 40px;
}

.listing-search input.form-control {
    height: 48px;
    border-radius: 24px;
    border: none;
}

.listing-search input.form-control {
    background-position: left 20px center;
    padding-left: 48px;
}

.locality-tag-row {
    left: 48px;
    top: 8px;
    display: flex;
}

.search-locality-dropdown {
    position: absolute;
    width: 100%;
    left: 0;
    height: auto;
    display: flex;
    align-items: flex-start;
    top: 52px;
    background: var(--white-color);
    z-index: 2;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border-color20);
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 8%);
    display: none;
}

.home-search-filter {
    position: relative;
}

.home-search-filter ul.dropdown-menu {
    min-width: 480px;
    left: -24px !important;
}

.home-search-filter ul.dropdown-menu span {
    color: var(--text-color);
}

.home-search-filter ul.dropdown-menu ul {
    margin: 0 -3px;
}

.home-search-filter ul.dropdown-menu ul li.tag {
    margin: 3px;
    border-color: var(--border-color40);
    cursor: pointer;
}

.home-search-filter ul.dropdown-menu ul li.tag.selected {
    background-color: var(--light-bg2);
}

.popular-search {
    color: var(--text-color);
    width: 100%;
    font-size: 14px;
}

.popular-search span {
    border-bottom: 1px solid var(--border-color20);
    padding-bottom: 12px;
}

.popular-search li {
    padding: 3px 0;
}

.tag {
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 5px 10px;
    line-height: 20px;
}

.border-tag {
    background: var(--white-color);
    color: var(--primary-color);
}


.listing-banner {
    background-color: var(--light-bg);
}

.fill-tag {
    background: var(--primary-color);
    color: var(--white-color);
}

.filter-dropdown-row .filter-dropdown {
    margin-right: 12px;
}

.filter-dropdown-btn {
    border: 1px solid var(--border-color40);
    border-radius: 8px;
    background: var(--white-color);
    color: var(--text-color);
    padding: 8px 37px 8px 16px !important;
}

.filter-dropdown-btn::before {
    right: 12px;
}

.listing-banner .dropdown-toggle::before {
    filter: invert(37%) sepia(17%) saturate(518%) hue-rotate(180deg) brightness(96%) contrast(93%);
}

.filter-dropdown .dropdown-menu {
    padding: 16px 16px 8px;
    border: 1px solid var(--border-color20);
}

.filter-dropdown .dropdown-item {
    width: auto;
    color: var(--text-color);
    border: 1px solid var(--border-color20);
    background-color: var(--white-color);
    margin-bottom: 8px;
    padding: 5px 16px;
    border-radius: 30px;
    display: inline-block;
}

.filter-dropdown .dropdown-item.selected {
    color: var(--white-color);
    background-color: var(--primary-color);
}

.selected-filter .listing-search {
    display: none !important;
}

.price-filter-dropdown .progress {
    width: 460px;
    height: 4px;
    background: var(--border-color20);
    border-radius: 8px;
    overflow: visible;
}

.price-filter-dropdown .progress-bar {
    position: relative;
    background-color: var(--primary-color);
    height: 4px;
    border-radius: 4px;
    overflow: visible;
}

.price-filter-dropdown .progress-bar::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: var(--white-color);
    left: 0;
}

.price-filter-dropdown .progress-bar::before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background-color: var(--white-color);
    right: 0;
}

.price-filter-dropdown span {
    color: var(--primary-color);
}

.price-filter-tags {
    padding: 0 0 0 8px;
}

.price-filter-tags span {
    color: var(--text-color);
    position: relative;
    padding-top: 20px;
}

.price-filter-tags span::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 8px;
    background: var(--border-color20);
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
}

.active-filter span {
    color: var(--secondary-color);
}

.active-filter .fill-tag {
    background-color: var(--light-bg);
    border-color: var(--light-bg);
}

.listing-section .icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--light-bg);
    border-radius: 8px;
}

.sort-by-lable {
    color: var(--secondary-color);
    margin-right: 12px;
}

.sort-filter-dropdown .filter-dropdown-btn {
    color: var(--secondary-color);
}

.sort-filter-dropdown .dropdown-item {
    background: transparent;
    border: none;
    padding: 0;
    width: 100%;
}

.sort-filter-dropdown .dropdown-item.selected {
    background: transparent;
    color: var(--secondary-color);
}

.listing-section .filter-dropdown-btn {
    width: 160px;
    margin-bottom: 0;
}

.pptl-col {
    margin-bottom: 24px;
}

.ppt-col {
    border: 1px solid var(--border-color20);
    box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 8%);
}

.ppt-img img {
    min-height: 327px;
    object-fit: cover;
}

.builder-name {
    color: var(--primary-color);
}

.rera-label {
    border: 1px solid var(--border-color40);
    padding: 4px 8px 4px 4px;
    border-radius: 24px;
    font-size: 12px;
    line-height: 14px;
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    color: var(--secondary-color);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0;
}

.hl-row li {
    position: relative;
    padding-right: 12px;
    margin-right: 12px;
}

.hl-row li:not(:last-child):before {
    content: "";
    position: absolute;
    width: 1px;
    height: 15px;
    background: #57627699;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.hl-row li:last-child {
    padding-right: 0;
    margin-right: 0;
    border: none;
}

.ppt-price {
    color: var(--secondary-color);
    line-height: 24px;
}

.ssp-row {
    margin: 0 -11px;
    min-height: 55px;
}

.ssp-row li {
    padding: 0 11px;
    position: relative;
    border-right: 1px solid var(--border-color20);
    line-height: 16px;
}

.ssp-row li:last-child {
    border: none;
}

.ssp-row li span:first-child {
    margin-bottom: 6px;
}

.light-faqs-sec {
    background: var(--light-bg);
    color: var(--text-color);
}

.light-faqs-sec .h2 {
    color: var(--secondary-color);
}

.light-faqs-sec .accordion-item {
    border-color: var(--border-color20);
}

.light-faqs-sec .accordion-button {
    color: var(--secondary-color);
}

.light-faqs-sec .accordion-body {
    color: var(--text-color);
}

.light-faqs-sec .faqs-sec .accordion-button::after {
    background-color: var(--secondary-color);
    background-image: url(../images/White-arrow.svg);
}

/* Listing view css start */
.listing-view .pptl-col {
    width: 100%;
}

.listing-view .ppt-col {
    display: flex !important;
    align-items: center;
}

.listing-view .ppt-img {
    display: inline-block;
}

.listing-view .ppt-img img {
    max-width: 240px;
    min-height: 210px;
}

.listing-view .feature-pro-content {
    padding: 0 0 0 30px !important;
    position: relative;
    flex: 1 0 auto;
}

.listing-view .ssp-row {
    margin-bottom: 0 !important;
}

.listing-view .ssp-row li {
    display: flex;
    align-items: center;
}

.listing-view .ssp-row li span:first-child {
    margin-right: 6px;
    margin-bottom: 0;
}

.listing-view .ssp-row li {
    margin-bottom: 4px;
}

.listing-view .feature-pro-content .site-btn {
    position: absolute;
    right: 8px;
    top: 0;
}

/* Listing view css end */


/* Details page css start */
.breadcrumb-item.active {
    color: var(--primary-color);
}

.ppt-details-title .h2 {
    font-size: 24px;
    font-weight: 600;
}

.ppt-details-title p span {
    color: var(--primary-color);
}

.ppt-dt-price {
    padding-right: 12px;
    margin-right: 12px;
    border-right: 1px solid var(--text-color);
    color: var(--secondary-color);
}

.ppt-details-card {
    background-color: var(--light-bg);
}

.b-overv-col:not(:last-child) {
    padding-right: 40px;
    margin-right: 40px;
    border-right: 1px solid var(--border-color20);
}

.b-overv-col p:last-child {
    color: var(--secondary-color);
}

/* Details Tabs css start */
.details-tabs {
    position: sticky !important;
    top: 0;
    padding: 15px 40px;
    background-color: var(--light-bg2);
    display: inline-block;
    width: 100%;
    z-index: 10;
}

.details-tabs .nav-tabs {
    transform: translateX(0);
    transition: transform 0.5s ease;
    border: none;
}

.details-tabs .tab-item {
    white-space: nowrap;
    padding-right: 30px;
}

.details-tabs .tab-item .active {
    color: var(--primary-color);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 30px;
    height: 100%;
    background-color: var(--white-color80);
    border: none;
    padding: 0;
    background-image: url(../images/slider-right-arrow.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 8px;
    box-shadow: 0px 8px 16px 0px #00000014;
}

.slider-arrow.prev {
    left: 0;
    background-image: url(../images/slider-left-arrow.svg);
}

.slider-arrow.next {
    right: 0;
}


/* More About project css start */
.white-bg-card {
    background-color: var(--white-color);
    border-radius: 12px;
    box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 25%);
}

.ppt-details-card-header .h6 {
    line-height: 25px;
    letter-spacing: 0;
}

.proj-overv-col p:last-child {
    color: var(--secondary-color);
}

.proj-overv-col a {
    text-decoration: underline;
    color: var(--secondary-color);
}

.proj-overv-col a:last-child {
    color: var(--primary-color);
}

.ppt-details-card-header {
    border-bottom: 1px solid var(--border-color20);
}

.about-project-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.about-project-content.show-more-content {
    display: block;
}

.read-more-btn {
    color: var(--primary-color);
    display: table;
    margin: 0 auto;
    cursor: pointer;
}

.read-more-btn img {
    transform: rotate(180deg);
    max-width: 16px;
}

/* Floor Plan & Pricing css start */
.floor-plan-pricing .nav-tabs {
    border: none;
}

.floor-plan-pricing .nav-link {
    border: 1px solid var(--border-color20);
    margin-right: 12px;
}

.floor-plan-pricing .nav-link {
    border: 1px solid var(--border-color20) !important;
    margin-right: 12px;
    border-radius: 8px;
    color: var(--text-color) !important;
}

.floor-plan-pricing .bhk-pricing {
    color: var(--secondary-color);
}

.floor-plan-pricing .nav-link.active {
    background: var(--light-bg2);
}


.sub-nav-tabs .nav-link {
    padding: 0;
    border: none !important;
}

.sub-nav-tabs li.nav-item:not(:last-child) {
    margin-right: 40px;
}

.sub-nav-tabs {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color20) !important;
}

.sub-nav-tabs .nav-link.active {
    background: transparent !important;
    color: var(--primary-color) !important;
}

.floor-price {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* .img-toggle-btn {
    width: 40px;
    font-weight: 600;
    padding: 3px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .16);
    border-radius: 12px;
    position: absolute;
    top: 0;
    right: 0;

}

.img-toggle-btn span {
    height: 34px;
    width: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--progress-color);
    cursor: pointer;
    transition: 0.4s ease-in-out;

}

.img-toggle-btn span.active {
    background: var(--progress-color);
    color: var(--white-color);
} */

.zoom-inOut-btn {
    width: 34px;
    font-weight: 600;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .16);
    border-radius: 8px;
    padding: 0 2px;
    position: absolute;
    right: 0;
    bottom: 22px;
    background-color: var(--light-bg);
}

.zoom-inOut-btn img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 8px;
    cursor: pointer;
}

.zoom-inOut-btn img:not(:last-child) {
    border-bottom: 1px solid var(--border-color20);
}


/* Project Amenities css start */
.project-amenities {
    margin: 0 -12px;
}

.amenities {
    width: 14.28%;
    display: flex;
    flex-direction: column;
    color: var(--secondary-color);
    text-align: center;
    font-size: 13px;
    line-height: 15px;
    margin-bottom: 20px;
    padding: 0px 12px;
}

.amenities img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin: 0 auto 8px;
    filter: invert(8%) sepia(28%) saturate(5359%) hue-rotate(208deg) brightness(60%) contrast(97%);
}


/* Project Specifications css start */

.specifics-row {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.specifics-row:last-child {
    margin-bottom: 0;
}

.specifics-title {
    background-color: var(--light-bg2);
    padding: 11px 20px;
}

.specifics-body {
    padding: 12px 20px;
    border: 1px solid var(--border-color20);
    border-radius: 0 0 12px 12px;
    border-top: none;
}

.specifics-col {
    padding-right: 20px;
}

.specifics-col p:last-child {
    color: var(--secondary-color);
    line-height: 18px;
}

.brochure-img {
    border: 1px solid var(--border-color20);
}

/* Explore Neighbourhood - Map View css start */
.proprty-map iframe {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    border: 1px solid var(--border-color20) !important;
}

.landmarks .row {
    margin: 0 -8px;
}

.landmarks-col {
    margin-bottom: 16px;
    padding: 0 8px;
}

.landmark-item {
    border: 1px solid var(--border-color20);
    padding: 12px 16px;
    background-color: var(--light-bg2);
    border-radius: 12px;
    height: 100%;
}

.landmarks .h6 {
    color: var(--primary-color);
    letter-spacing: 0;
    line-height: normal;
}

.landmark-item .h6 {
    color: var(--secondary-color);
}

.landmark-item ul li {
    flex-wrap: wrap;
}

.landmark-item span {
    margin-left: 4px;
    color: var(--secondary-color);
}


/* Form section css start */
.enquiry-form span.form-check-inline {
    max-width: 107px;
    width: 100%;
    margin-right: 12px;
    color: var(--secondary-color);
}

.enquiry-form .form-check-inline {
    max-width: 97px;
    width: 100%;
    margin-right: 24px;
}

.enquiry-form .form-check-input[type=radio] {
    appearance: none;
    width: 12px;
    height: 12px;
    margin-top: 5px;
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: transform 0.4s ease-in-out, background 0.4s ease-in-out;
}

.enquiry-form .form-check-input[type=radio]:checked {
    background: var(--white-color);
    transform: scale(1.1);
    box-shadow: none;
    border-color: var(--secondary-color);
}

.enquiry-form .form-check-input[type=radio]:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.cursor-pointer {
    cursor: pointer;
}

/* .form-check-input[type=radio] {
    border-radius: 50%;
    width: 12px;
    height: 12px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--secondary-color);
} */
.enquiry-form .form-group label.form-label {
    margin-bottom: 0;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

.enquiry-form .form-control {
    border-color: var(--border-color20);
    background: transparent;
    height: 46px;
    font-size: 14px;
    padding: 12px 20px;
}

.enquiry-form textarea.form-control {
    height: 120px;
}

.enquiry-form .form-checkbox {
    line-height: normal;
}

.enquiry-form .form-checkbox label.form-check-label {
    margin-top: 2px;
}

.enquiry-form .form-check-input[type=checkbox] {
    width: 16px;
    height: 16px;
    box-shadow: none;
    transition: transform 0.4s ease-in-out, background 0.4s ease-in-out;
    cursor: pointer;
    background-color: transparent;
    border-color: var(--border-color40);
}

.enquiry-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.enquiry-form .form-checkbox a {
    text-decoration: underline;
}

.property-sidebar .calc-progress input {
    height: 32px;
}

.calc-progress span.h6 {
    letter-spacing: 0;
}

/* Details page css end */

/***********************************
        Listing Page CSS end 
************************************/



/***********************************
        Responsive css start
************************************/
@media (max-width: 1400px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }

    .ppt-img-item:first-child {
        width: 62%;
    }

    .ppt-img-item {
        width: 38%;
    }

    .b-overv-col:not(:last-child) {
        padding-right: 20px;
        margin-right: 20px;
    }

    .amenities {
        padding: 0px 4px;
    }

    .enquiry-form span.form-check-inline {
        margin-right: 4px;
        width: 107px;
    }

    .enquiry-form .form-check-inline {
        max-width: 97px;
        width: 100%;
        margin-right: 8px;
    }

    .enquiry-form .form-check-inline~.form-check-inline:last-child {
        max-width: initial;
        width: auto;
        margin-right: 0;
    }
}

@media (max-width: 1280px) {
    .trusted-partner-content ul li {
        font-size: 14px;
    }

    .popular-city-img img {
        width: 80px;
        height: 80px;
    }

    .payment-chart {
        padding: 24px;
    }
}

@media (max-width: 1200px) {

    h2,
    .h2 {
        font-size: 28px;
    }

    h3,
    .h3 {
        font-size: 24px;
    }

    h4,
    .h4 {
        font-size: 20px;
    }

    h5,
    .h5 {
        font-size: 18px;
    }

    .h6,
    .h6 {
        font-size: 16px;
    }

    .navbar-brand,
    .ppf-lable {
        margin-right: 20px;
    }

    .border-dropdown-btn {
        padding: 3px 32px 3px 12px !important;
    }

    .border-dropdown-btn::before {
        right: 8px;
    }

    .buy-comm-propty {
        padding: 40px;
    }

    .blog-right-col .blog-box>img {
        max-width: 140px;
        height: 118px;
    }

    .browse-links {
        font-size: 14px;
    }

    .listing-search {
        margin: 0 20px;
    }

    .locality-tag-row .tag {
        font-size: 12px;
    }

    .basic-overview,
    .details-tabs .tab-item {
        font-size: 14px;
    }

    .b-overv-col:not(:last-child) {
        padding-right: 12px;
        margin-right: 12px;
    }

    .sub-nav-tabs li.nav-item:not(:last-child) {
        margin-right: 24px;
    }

    .amenities {
        width: 20%;
    }
}

@media (max-width: 992px) {
    .collapse:not(.show) {
        display: block;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
        justify-content: center;
    }

    .counter-sec {
        padding-bottom: 20px;
    }

    .counter-col {
        margin-bottom: 60px;
    }

    .counter-col::before {
        display: none;
    }

    .counter-col:nth-child(odd):before {
        display: block;
    }

    .trusted-partner-content ul {
        justify-content: space-between;
    }

    .trusted-partner-content ul li {
        display: flex;
        flex-direction: column;
        margin-right: 16px !important;
    }

    .trusted-partner-content ul li:not(:last-child):before {
        display: none;
    }

    .buy-comm-propty {
        padding: 24px;
    }

    .re-agent-sec-inner {
        padding: 24px;
    }

    .re-agent-sec-inner .row {
        flex-direction: column-reverse;
    }

    .re-agent-content {
        padding: 24px 0 0 !important;
    }

    .re-agent-img {
        margin-left: 0;
    }

    .re-agent-img img {
        clip-path: inherit;
        max-height: 320px;
        object-position: bottom;
        border-radius: 8px;
    }

    .demand-sec .col-12:not(:last-child) {
        margin-bottom: 24px;
    }

    .search-tabs .link {
        padding: 0 16px;
    }

    .blog-left-col {
        margin-bottom: 24px;
    }

    .emi-box {
        margin-top: 36px;
    }

    .payment-chart {
        margin-top: 24px;
    }

    .register-post-bg .row {
        flex-direction: column-reverse;
    }

    .listing-search {
        display: none !important;
    }

    .selected-filter .listing-search {
        display: block !important;
        margin: 0;
    }

    .listing-search input.form-control {
        border: 1px solid var(--border-color40);
        margin-bottom: 16px;
    }

    .locality-tag-row {
        left: 60px;
    }

    .filter-dropdown-row .filter-dropdown {
        margin-right: 12px;
        width: calc(33.33% - 12px);
    }

    .filter-dropdown-btn {
        width: 100%;
        margin-bottom: 8px;
    }

    .listing-view .ppt-img {
        min-width: 180px;
    }

    .listing-view .ssp-row {
        width: 100%;
        flex-wrap: wrap;
    }

    .listing-view .feature-pro-content {
        flex: initial;
    }

    .property-sidebar {
        margin-bottom: 70px;
    }

    .ppt-dt-right {
        flex: 1 0 auto;
    }

    .project-address {
        align-items: flex-start !important;
    }

    .b-overv-col:not(:last-child) {
        padding-right: 20px;
        margin-right: 20px;
    }

}

@media (max-width: 767px) {

    h1,
    .h1 {
        font-size: 28px;
    }

    h2,
    .h2 {
        font-size: 24px;
    }

    h3,
    .h3 {
        font-size: 22px;
    }

    h4,
    .h4 {
        font-size: 18px;
    }

    h5,
    .h5 {
        font-size: 16px;
    }

    .h6,
    .h6 {
        font-size: 16px;
    }

    .sec-pt {
        padding-top: 25px;
    }

    .sec-pb {
        padding-bottom: 25px;
    }

    .sec-py {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .sec-mt {
        margin-top: 25px;
    }

    .sec-mb {
        margin-bottom: 25px;
    }

    .sec-my {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .container {
        padding: 0 20px;
    }

    .slick-arrow {
        width: 42px;
        height: 42px;
        background-size: 10px;
        left: -12px;
    }

    .slick-next {
        left: initial;
        right: -12px;
    }

    .navbar-brand {
        max-width: 120px;
    }

    .navbar-brand,
    .ppf-lable {
        margin-right: 10px;
    }

    .border-dropdown-btn {
        padding: 3px 30px 3px 12px !important;
    }

    .search-tabs {
        flex-wrap: wrap;
    }

    .main-search-bar {
        border-radius: 24px;
    }

    .search-tabs .divider {
        display: none;
    }

    .search-tabs .link {
        padding: 4px 8px;
        width: 33.33%;
        text-align: center;
    }

    .search-filter {
        flex-direction: column;
        border-radius: 23px;
    }

    .search-filter .dropdown {
        border-right: none;
        border-bottom: 1px solid var(--border-color40);
        width: 100%;
        padding: 0 20px;
    }

    .home-search-filter ul.dropdown-menu {
        min-width: 100%;
        left: -20px !important;
    }

    .search-bar {
        width: 100%;
        padding: 8px 20px;
    }

    .search-filter .dropdown-toggle {
        width: 100%;
        text-align: left;
    }

    .top-comm-content {
        flex-direction: column;
    }

    .top-comm-content-right {
        text-align: left !important;
        padding-left: 0 !important;
        margin-top: 16px;
    }

    .buy-comm-propty {
        margin-bottom: 20px !important;
    }

    .faqs-sec .accordion-button {
        font-size: 18px;
    }

    .resgi-right-col {
        margin-bottom: 20px !important;
    }

    .browse-links .col-12:not(:last-child) {
        margin-bottom: 24px;
    }

    .counter-sec .counter {
        font-size: 30px;
    }

    .counter-col {
        margin-bottom: 40px;
    }

    .counter-sec {
        padding: 50px 0 10px;
    }

    .banner {
        padding: 60px 0 60px;
    }

    .footer {
        padding-top: 50px;
    }

    .selected-filter .listing-search {
        margin-bottom: 16px;
    }

    .locality-tag-row {
        left: 68px;
        top: 16px;
    }


    .sort-by-lable {
        margin-left: auto !important;
    }

    .view-filter .icon-btn {
        display: none !important;
    }

    .specifics-body {
        flex-wrap: wrap;
    }

    .specifics-col {
        width: 33.33%;
        margin: 8px 0;
    }

    .basic-overview,
    .project-verview {
        flex-wrap: wrap;
    }

    .b-overv-col {
        width: calc(50% - 20px);
        border: none !important;
        margin: 8px 0;
    }

    .b-overv-col:nth-child(odd) {
        border-right: 1px solid var(--border-color20) !important;
    }

    .proj-overv-col {
        width: 50%;
        margin: 8px 0;
    }

    .ppt-details-title {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .ppt-dt-right {
        text-align: left !important;
        margin-top: 24px;
    }

}

@media (max-width: 576px) {

    h1,
    .h1 {
        font-size: 26px;
    }

    h2,
    .h2 {
        font-size: 22px;
    }

    h3,
    .h3 {
        font-size: 20px;
    }

    .site-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .ppf-lable {
        padding: 4px 8px 4px 12px;
    }

    .border-dropdown-btn {
        padding: 3px 30px 3px 12px !important
    }

    .border-dropdown-btn::before {
        right: 8px;
    }

    .navbar-expand-lg .navbar-nav {
        margin: 0 -12px !important;
    }

    .navbar-nav li.nav-item {
        margin: 0 12px;
    }

    .navbar-nav li.nav-item .nav-link {
        font-size: 15px;
        font-weight: 500;
        padding-right: 22px !important;
    }

    .dropdown-toggle {
        padding-right: 20px !important;
    }

    .top-header {
        padding: 16px 0;
    }

    .navbar-brand {
        max-width: 100%;
        margin-bottom: 12px;
    }

    .top-header .dropdown {
        margin-right: 0 !important;
        margin-left: auto;
        margin-bottom: 12px;
    }

    .dropdown-toggle {
        padding-right: 30px !important;
    }

    .top-header .ppf-lable~.dropdown {
        margin-bottom: 0;
    }

    .search-tabs .link {
        width: 50%;
    }

    .search-bar {
        flex-direction: column;
        padding: 0 !important;
    }

    .search-bar input.form-control {
        padding: 21px 20px 21px 52px;
        background-position: left 20px center;
        margin: 0 !important;
    }

    .search-bar .site-btn {
        border-radius: 0px 0 22px 22px;
        padding: 16px 0;
    }

    .banner {
        position: relative;
        padding: 45px 0 45px;
        font-size: 16px;
    }

    .title {
        font-size: 15px;
        margin-bottom: 0 !important;
    }

    .feature-pro-img img {
        min-height: 160px;
        max-height: 160px;
    }

    .proj-hd-top {
        flex-direction: column;
    }

    .proj-hd-right {
        flex: 1 0 auto;
        padding-left: 0 !important;
        margin-top: 12px;
    }

    .proj-hd-bottom {
        position: relative !important;
        padding: 12px !important;
        flex-direction: column;
        align-items: flex-start !important;
    }

    .proj-hd-bottom .h5 {
        margin-bottom: 6px !important;
    }

    .proj-hd-img::before {
        background: rgba(0, 0, 0, 0.6);
    }

    .proj-hd-top .h4,
    .proj-hd-top .fs-18 {
        font-size: 16px !important;
    }

    .re-agent-sec-inner {
        padding: 20px;
    }

    .fs-18 {
        font-size: 16px;
    }

    .our-services-inner {
        padding: 30px 20px 0;
    }

    .td-proj-img img {
        width: 100px;
        height: 100px;
    }

    .td-proj-box {
        align-items: flex-start !important;
    }

    .faqs-sec .accordion-button {
        font-size: 16px;
        padding-right: 40px;
    }

    .faqs-sec .accordion-button::after {
        width: 32px;
        height: 32px;
        background-position: top 11px center;
        background-size: 16px;
    }

    .faqs-sec .accordion-item {
        font-size: 14px;
    }

    .demand-sec .title {
        margin-bottom: 20px !important;
    }

    .demand-bg {
        padding: 20px;
    }

    .register-post-bg {
        padding: 20px;
    }

    .blog-box {
        padding: 20px !important;
    }

    .blog-right-col .blog-box>img {
        max-width: 100%;
        height: auto;
        margin: 0 !important;
    }

    .blog-right-col .blog-box {
        flex-direction: column;
    }

    .blog-content {
        margin-top: 24px;
    }

    .calc-bg {
        padding: 30px 20px;
    }

    .emi-box {
        padding: 60px 24px;
    }

    .payment-chart {
        padding: 30px 20px 0;
    }

    .ttl-amount {
        font-size: 16px;
    }


    .footer .h3 {
        font-size: 20px;
        margin-bottom: 12px !important;
    }

    .browse-links {
        padding: 10px 0 40px;
    }

    .footer-row .col {
        width: 50% !important;
        flex: initial !important;
        margin-bottom: 24px;
        font-size: 13px !important;
    }

    .footer-row .col:last-child {
        width: 100% !important;
    }

    .footer-row {
        padding: 40px 0 20px;
    }

    .copyright {
        padding: 20px 0 24px;
    }

    ul.footer-social {
        justify-content: flex-start !important;
    }

    ul.footer-social li {
        margin-right: 16px;
    }

    .filter-dropdown-row .filter-dropdown {
        width: calc(50% - 8px);
    }

    .filter-dropdown-row .filter-dropdown:nth-child(even) {
        margin-right: 0;
    }

    .price-filter-dropdown {
        width: 90%;
        margin-left: 5% !important;
    }

    .price-filter-dropdown .progress {
        width: 100%;
    }

    .ppt-img img {
        min-height: 240px;
    }

    ul.hl-row {
        display: block !important;
    }

    .hl-row li {
        margin-bottom: 4px;
    }

    .hl-row li:not(:last-child):before {
        display: none;
    }

    .ssp-row {
        display: block !important;
        margin-bottom: 16px;
    }

    .ssp-row li {
        margin-bottom: 8px;
        border: none;
    }

    .ssp-row li span:first-child {
        margin-bottom: 4px;
    }

    .feature-pro-content .site-btn {
        width: 100%;
    }

    .locality-tag-row {
        left: 52px;
        top: 8px;
    }

    .listing-section .title .view-filter {
        width: 100%;
        margin-top: 12px;
    }

    .listing-section .title {
        flex-wrap: wrap;
        margin-bottom: 12px !important;
    }

    .sort-by-lable {
        flex: 1 0 auto;
    }

    .filter-dropdown,
    .listing-section .filter-dropdown-btn {
        width: 100%;
    }

    .home-search-filter ul.dropdown-menu {
        left: 0 !important;
    }

    .project-address {
        font-size: 12px;
        line-height: normal;
    }

    .ppt-dt-left,
    .ppt-dt-right {
        font-size: 14px;
    }

    .proj-overv-col {
        width: 100%;
    }

    .ppt-details-card-header,
    .ppt-details-card-body {
        padding: 16px !important;
    }

    .floor-plan-pricing .nav-tabs {
        border: none;
        padding: 0 0 16px !important;
    }

    .floor-plan-pricing .nav-link {
        padding: 6px 12px !important;
        font-size: 13px;
    }

    .nav-tabs li.nav-item:last-child button.nav-link {
        margin: 0 !important;
    }

    .tab-content {
        margin-top: 0 !important;
    }

    .sub-tab-content {
        padding: 16px 0 !important;
    }

    .amenities {
        width: 33.33%;
    }

    .specifics-col {
        width: 100%;
    }

    .property-details-sec .title {
        margin-bottom: 16px !important;
    }

    .property-details-sec .td-proj .title {
        margin-bottom: 0 !important;
    }
    .property-details-sec .blog-sec .title a.site-btn {
        flex: 1 0 auto;
    }
}

.homeFaq span,
.homeFaq h1,
.homeFaq h2,
.homeFaq h3,
.homeFaq h4,
.homeFaq h5,
.homeFaq h6,
.homeFaq p,
.homeFaq a,
.homeFaq img,
.homeFaq ul,
.homeFaq ol,
.homeFaq li,
.homeFaq table,
.homeFaq thead,
.homeFaq tbody,
.homeFaq tr,
.homeFaq th,
.homeFaq td,
.homeFaq blockquote,
.homeFaq pre,
.homeFaq code,
.homeFaq form,
.homeFaq input,
.homeFaq textarea,
.homeFaq select,
.homeFaq label,
.homeFaq button,
.homeFaq hr,
.homeFaq div,
.homeFaq section,
.homeFaq article,
.homeFaq aside,
.homeFaq nav {
    color: #fff !important;
}


/*
.input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--primary-color) 0%, var(--primary-color) 50%, #ccd3e4 50%, #ccd3e4 100%);
    outline: none;
    transition: background 0.2s ease-in-out;
}

    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--primary-color);
        cursor: pointer;
       
    }*/
.calc-progress input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient( to right, var(--primary-color) 0%, var(--primary-color) 50%, #ccd3e4 50%, #ccd3e4 100% );
    outline: none;
    transition: background 0.2s ease-in-out;
}

    .calc-progress input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--primary-color);
        cursor: pointer;
    }

    /* Optional: Firefox and IE support */
    .calc-progress input[type="range"]::-moz-range-thumb,
    .calc-progress input[type="range"]::-ms-thumb {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--primary-color);
        cursor: pointer;
    }


.range-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
}

.emi-result {
    margin-bottom: 20px;
}
.payment-chart-img canvas {
    max-width: 200px;
    height: auto !important;
    margin: 0 auto;
}

.commercialimg-rat img {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
}
.choice-aspect img {
    aspect-ratio: 292 / 177;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.recently-post-img.fade-image-animation.rounded-2.position-relative.overflow-hidden {
    position: relative;
    min-height: 310px;
}
    .recently-post-img.fade-image-animation.rounded-2.position-relative.overflow-hidden:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(217, 217, 217, 0) 17.56%, rgba(6, 6, 7, 0.6) 69%);
        top: 0;
        left: 0;
        z-index: -1;
    }

.ppt-img.fade-image-animation.rounded-2.position-relative.overflow-hidden img {
    aspect-ratio: 391 / 330;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}


/* Classified css */
.switch-props {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 31px;
}

.switch-props input {
    opacity: 0;
    width: 0;
    height: 0;
}

.sliderround {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

    .sliderround:before {
        position: absolute;
        content: "";
        height: 24px;
        width: 24px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: 0.4s;
        border-radius: 50%;
    }

.switch-props input:checked + .sliderround {
    background-color: #091e42;
}

.switch-props input:focus + .sliderround {
    box-shadow: 0 0 1px #091e42;
}

.switch-props input:checked + .sliderround:before {
    transform: translateX(26px);
}

.classified-title h5 {
    font-size: 18px;
}

.classified-title h6 {
    font-size: 12px;
}

.classified-title h3 {
    font-size: 20px;
}

.rounded-top-12 {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.dote-li {
    padding-left: 20px;
    font-size: 14px;
}

    .dote-li li {
        list-style-type: disc;
        margin-bottom: 5px;
    }

    .dote-li b {
        font-weight: 600;
    }

.fied-pad-14 {
    padding: 14px;
}

.classified-detailsLi li {
    margin-bottom: 4px !important;
    font-size: 14px;
    color: #576276;
    font-weight: 400;
    margin: 0;
}

.classified-detailsLi h5 {
    font-size: 14px;
    color: #576276;
    font-weight: 400;
    margin: 0;
}

.classified-detailsLi li b {
    font-weight: 600;
}

.moreData a {
    color: #0957ff;
    font-size: 12px;
    text-align: right;
    float: right;
    font-weight: 500;
    text-decoration: underline;
}

.moreData {
    width: 100%;
    display: table;
    margin: 8px 0;
}

.classImg-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 8px 16px;
    border-radius: 6px;
}

.Bungalow-BottomCard {
    display: flex;
    margin: 7px 0 10px 0;
    padding: 24px 0 0 0;
    align-items: center;
}

.ClassifiedBottombr {
    border-top: 1px solid var(--border-color20);
    opacity: 1;
    margin: 6px 0;
}

/* Blog Section css start */
.blog-box {
    border: 1px solid var(--border-color20);
    border-radius: 12px;
}

.blog-content .h5 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-right-col .blog-box > img {
    max-width: 204px;
    margin-right: 24px;
    height: 131px;
    object-fit: cover;
}

.blog-right-col .blog-box:not(:last-child) {
    margin-bottom: 24px;
}

/* blog css  */
.blogCatrop li {
    border-bottom: 1px solid #0000001f;
    padding: 5px 0;
    font-size: 16px;
    color: #091e42;
}

.blogbox {
    margin: 15px 0;
}

.blogAdmin {
    display: flex;
    gap: 5px;
    margin-top: 15px;
}

    .blogAdmin span {
        font-size: 14px;
    }

.blogbox h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 5px 0;
}

.blogbox a {
    color: #1e1e82;
    font-size: 16px;
    font-weight: 600;
    text-decoration: underline;
}

.blogimg {
    aspect-ratio: 417 / 343;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.blogAdminDetails {
    display: flex;
    justify-content: space-between;
}

    .blogAdminDetails h3 {
        font-size: 18px;
        align-items: center;
        margin: 0;
    }

.blogdetails-text p {
    font-size: 16px;
}

.blogshare {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .blogshare span {
        font-size: 18px;
        color: #000;
        margin-right: 5px;
    }

    .blogshare li {
        display: inline;
        margin-right: 5px;
    }

/* Blog Section css end */
.feature-coll-img.fade-image-animation.rounded-2.position-relative.overflow-hidden img {
    aspect-ratio: 327 / 255;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.popular-city-box:hover {
    background: #1e1e823d;
}
