@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=DM+Serif+Display:ital@0;1&family=Gothic+A1&family=IM+Fell+Great+Primer:ital@0;1&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

@font-face {
    font-family: Net-born-ready-slanted;
    src: url('/assets/fonts/FontsFree-Net-born-ready-slanted.ttf');
}

@font-face {
    font-family: times-new-roman-grassetto;
    src: url('/assets/fonts/times-new-roman-grassetto.ttf');
}

@font-face {
    font-family: Giorgio-Sans;
    src: url('/assets/fonts/GiorgioSans-Medium.otf');
}

@font-face {
    font-family: Aeonik;
    src: url('../../assets/fonts/Aeonik-Bold.otf');
}

@font-face {
    font-family: Aeonik-regular;
    src: url('../../assets/fonts/Aeonik-regular.otf');
}

:root {
    --default-color: #fff;
    --title-color: #000000;
    --text-color: #747474;
    --primary-color: #00befd;
    --secondary-color: #f6a91b;
    --dark-color: #1a2039;
    --dark-light-color: #062e6b;
    --light-color: #d9e8ff;
    --light-gray-color : #f3f3f3;
}

html{
    font-size: 10px;
}

body{
    margin: 0;
    padding: 0;
    /* font-family: "Poppins", sans-serif; */
    background: #fff;
    font-size: 1.6rem;
    font-weight: 300;
    font-family: Aeonik-regular;
}

.default-color{
    color: var(--default-color)!important;
}

.title-color{
    color: var(--title-color)!important;
}

.text-color{
    color: var(--text-color)!important;
}

.primary-color{
    color: var(--primary-color)!important;
}

.secondary-color{
    color: var(--secondary-color)!important;
}

.dark-color{
    color: var(--dark-color)!important;
}

.light-color{
    color: var(--light-color)!important;
}

h1,h2,h3,h4,h5,h6,p,figure{
    margin: 0;
}

ul{
    padding: 0;
    margin: 0;
}

ul li{
    list-style: none;
}

a:hover{
    text-decoration: none;
}

/* header starts here */

.sticky-header {
    position: fixed;
    animation: stickyheaderslideDown 0.35s ease-out;
    z-index: 999;
    transition: all 0.3s ease-in;
    width: 100%;
    top: 0px;
    box-shadow: 0 0 9px #ccc;
    background: var(--default-color);
}

.sticky-header .logo .navbar-brand {
    min-width: 20rem;
    max-width: 20rem;
}

.sticky-header #navbar-menu .navbar-nav>li>a {
    padding: 2.2rem 1.2rem !important;
}

@keyframes stickyheaderslideDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

header .navbar {
    padding: 0;
    box-shadow: 0px 2px 9px #ddd;
    z-index: 9;
}

.logo .navbar-brand {
    display: block;
    min-width: 25rem;
    max-width: 25rem;
    padding: 0.3rem 0;
    max-height: 9rem;
}

header .navbar-toggler {
    font-size: 3rem;
    color: var(--primary-color);
    border: 0;
    margin-left: 2rem;
    padding: 0;
}

header .navbar-toggler #closeNav {
    display: none;
}

#navbar-menu .navbar-nav>li>a {
    font-size: 1.6rem;
    color: var(--title-color);
    padding: 3.4rem 1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

#navbar-menu .navbar-nav>li>a:hover{
    color:var(--primary-color)
}

#navbar-menu .navbar-nav>li:hover .dropdown-menu {
    display: block;
}

#navbar-menu .dropdown-menu {
    padding: 0;
    margin: 0;
    border-radius: 0;
    min-width: 220px;
    border: 0;
    left: 50%;
    transform: translate(-50%);
    box-shadow: 1px 3px 9px #909090;
}

#navbar-menu .dropdown-menu>li>a {
    font-size: 1.5rem;
    border-top: 1px solid #b8b8b8;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s;
    min-width: 250px;
}

#navbar-menu .dropdown-menu>li>a:hover{
    background: var(--primary-color);
    color: var(--default-color);
}

#navbar-menu .dropdown-item.active {
    background: var(--primary-color);
}

.custom-btn {
    display: inline-block;
    background: var(--secondary-color);
    padding: 1rem 3rem;
    font-size: 1.6rem;
    color: var(--default-color);
    text-decoration: none;
    line-height: 1.5;
    transition: all 0.3s;
    font-weight: 700;
    height: max-content;
    border: 1px solid var(--secondary-color);
    box-shadow: 5px 5px 2px 0px #ddd;
    border-radius: 1rem;
}

.custom-btn:hover {
    background: var(--default-color);
    color: var(--secondary-color);
    box-shadow: 5px 5px 2px 0px var(--secondary-color);
}

.custom-btn .fa-arrow-right {
    transform: rotate(-45deg);
}

.header-right .custom-btn {
    margin-left: 2rem;
    margin-right: 1rem;
    transform: skew(-15deg, 0deg);
    font-size: 1.3rem;
    font-weight: 800;
}

.header-right .custom-btn i {
    margin-right: 0.6rem;
    font-size: 1.6rem;
}

.header-right .custom-btn:hover {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.header-right .custom-btn .fa-phone-volume {
    font-size: 1.9rem;
    display: inline-block;
    transform: skew(20deg, 6deg);
    margin-right: 10px;
}

.top-bar {
    background: #ebe4dd;
}

.user-login,
.user-country{
    position: relative;
}

.user-country {
    display: flex;
    align-items: center;
}

.user-country span {
    font-weight: 500;
    margin-right: 0.8rem;
}

.country-list-site {
    gap: 3rem;
}

.user-country-selecter, .user-login button {
    border: 0;
    background: 0;
    font-size: 1.6rem;
    color: var(--title-color);
    padding: 1.2rem 0rem;
    align-items: center;
    display: flex;
    font-weight: 500;
    cursor: pointer;
}

.show-user-country {
    display: flex;
    align-items: baseline !important;
}

.show-user-country span {
    margin-left: 0.5rem;
}

.user-country .dropdown-menu {
    border: 0;
    padding: 0;
    box-shadow: 1px 3px 9px #909090;
    border-radius: 0;
    min-width: 20rem;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.user-country .dropdown-menu li {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    color: var(--title-color);
}

.user-country .dropdown-menu li:last-child{
    border-bottom: 0;
}

.user-country .dropdown-menu li.active,
.user-country .dropdown-menu li:hover {
    background: var(--primary-color);
    color: var(--default-color);
}

.show-user-country figure,
.user-country .dropdown-menu li figure {
    width: 3rem;
}

.show-user-country figure img,
.user-country .dropdown-menu li figure img {
    width: 100%;
}

.user-country .dropdown-menu li span {
    margin-left: 1rem;
    font-weight: 400;
    font-size: 1.5rem;
}

.user-login button a {
    text-decoration: none;
    color: var(--title-color);
    margin-left: 0.6rem;
}

.user-login button .fa-circle-user {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.country-list-site .fa-chevron-down {
    font-size: 1.3rem;
    margin-left: 0.6rem;
    transition: all 0.3s;
}

.user-country:hover .fa-chevron-down, 
.user-login:hover .fa-chevron-down {
    transform: rotate(180deg);
}

.user-country:hover .dropdown-menu,
.user-login:hover .dropdown-menu {
    display: block;
}

.user-login .dropdown-menu {
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0;
    min-width: 20rem;
    overflow: hidden;
    right: 0;
    box-shadow: 1px 3px 9px #909090;
}

.user-login ul li {
    font-size: 1.5rem;
    padding: 0.8rem 2rem;
    cursor: pointer;
    color: var(--title-color);
    border-bottom: 1px solid #ddd;
    transition: all 0.3s;
}

.user-login ul li:last-child{
    border-bottom: 0;
}

.user-login ul li:hover {
    background: var(--primary-color);
    color: var(--default-color);
}

.user-login ul li .fa-solid {
    margin-right: 0.5rem;
}

/* log in and sign up modal css starts here */

.logInModal .modal-dialog {
    max-width: 70rem;
}

.logInModal  .modal-header {
    padding: 2rem;
}

.logInModal .section-heading {
    margin-bottom: 0;
    font-size: 3rem;
    text-align: center;
    width: 100%;
}

.logInModal .modal-body, .logInModal .projectDetails-container {
    padding: 0 0.5rem;
}

.logInFormIcon {
    text-align: center;
}

.logInFormIconItem {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 1rem;
    cursor: pointer;
    max-width: 30rem;
}

.logInFormIconItem a img {
    width: 100%;
}

.logInFormIconItem:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.logInFormIconItem:hover .column-para {
    color: var(--default-color);
}

.logInFormIconItem figure {
    width: 3rem;
}

.logInFormIconItem .column-para {
    margin-left: 1rem;
    font-size: 1.4rem;
    color: #000;
    font-weight: 500;
}

.logInForm-left .logForgotPass {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 0;
}

.logForgotPass {
    border: 0;
    background: 0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    transition: all 0.3s;
}

.logForgotPass:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.logInForm-left {
    padding: 2rem;
}

.logInForm-right {
    padding: 2rem;
    border-left: 1px solid #ddd;
    height: 100%;
    position: relative;
}

.logInForm-right:before {
    position: absolute;
    content: "Or";
    background: #ddd;
    left: -15px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 500;
}

#forgotPassModal.logInModal .modal-dialog {
    max-width: 46rem;
}



/* log in and sign up modal css ends here */

/* header css ends here */

/* slider banner css starts here */

.full-slider-banner .item {
    height: 49rem;
    position: relative;
    z-index: 0;
}

.full-slider-banner .item:before {
    position: absolute;
    content: "";
    background: var(--title-color);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.3;
    z-index: -1;
}

.full-slider-banner .owl-dots {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    line-height: 0;
}

.full-slider-banner button.owl-dot {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-right: 0.4rem;
}

.full-slider-banner button.owl-dot.active {
    background: var(--primary-color);
    width: 3rem;
    border-radius: 10px;
}

.full-slider-text-row {
    padding: 9rem 0;
}

.section-subHeading {
    color: var(--primary-color);
    font-size: 3rem;
    line-height: 1.4;
    text-transform: uppercase;
    display: inline-block;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.section-heading {
    font-size: 3.5rem;
    color: var(--title-color);
    line-height: 1.18;
    font-weight: 600;
    margin-bottom: 3rem;
    /* font-family: "DM Serif Display", serif; */
    /* font-family: "Roboto", sans-serif; */
}

.section-heading span, .section-heading-one span, .section-heading-two span{
    color: var(--primary-color);
    letter-spacing: 1px;
}

.section-heading-one{
    font-size: 3.5rem;
    color: var(--default-color);
    line-height: 1.18;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-heading-two{
    font-size: 3rem;
    color: var(--default-color);
    line-height: 1.18;
    font-weight: 600;
    margin-bottom: 3rem;
}

.full-slider-text-row .section-subHeading {
    font-size: 2.5rem;
    border-bottom: 0;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.full-slider-text-row .section-heading {
    font-size: 5rem;
    margin-bottom: 0;
    color: var(--default-color);
}

.full-slider-text-row p {
    color: #fff;
    margin-top: 1.1rem;
    line-height: 1.9;
}

.slider-banner .item .custom-btn {
    margin-top: 1.5rem;
}

.happy-counter {
    background: #00235870;
    padding: 2rem 0;
}

.happy-counter-row {
    padding-bottom: 2rem;
}

.happy-counter-box {
    align-items: center;
    gap: .8rem;
    border-right: 1px solid #ffffff75;
}

.happy-counter-box:last-child{
    border-right: 0;
}

.happy-counter-box figure {
    min-width: 4rem;
    max-width: 4.5rem;
    height: 4rem;
}

.happy-counter-box figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.happy-customer-text {
    color: var(--default-color);
}

.counter-number {
    font-weight: 600;
}

.happy-customer-text p {
    font-size: 1.4rem;
    font-weight: 500;
}

/* slider banner css ends here */

.section-padding {
    padding: 4rem 0;
}

.section-padding-top{
    padding-top: 4rem;
}

.section-marginTop {
    margin-top: 4rem;
}

.column-heading {
    font-size: 2rem;
    line-height: 1.4;
    color: var(--title-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.column-para {
    font-size: 1.7rem;
    line-height: 1.5;
}

.real-estate-simplified {
    padding: 6rem 0 3rem;
}

.real-estate-simpli-item {
    background: var(--light-color);
    padding: 3rem 2.5rem;
    border-radius: .8rem;
    height: 100%;
}

.real-estate-simpli-item.active {
    background: var(--dark-color);
}

.real-estate-simpli-item figure {
    margin-bottom: 2rem;
}

.real-estate-simpli-item figure img {
    width: 50px;
}

.real-estate-simpli-item .column-heading{
    font-size: 2.5rem;
}

.real-estate-simpli-item.active .column-heading{
    color: var(--default-color);
}

.real-estate-simpli-item.active .column-para{
    color: var(--default-color);
}

/* get-in-touch section starts here  */

.get-in-touch {
    background: #ebe4dd;
    padding-top: 2rem;
    overflow: hidden;
}

.get-in-touch-left figure {
    position: relative;
    bottom: -5px;
    overflow: hidden;
}

.get-in-touch .custom-btn {
    background: var(--primary-color);
    min-width: max-content;
    box-shadow: 5px 5px 2px 0px #f6a91b;
    border-color: var(--primary-color);
}

.get-in-touch .custom-btn:hover{
    color: var(--title-color);
    box-shadow: 5px 5px 2px 0px var(--title-color);
}

.get-in-touch .section-heading {
    margin-bottom: 0;
}

/* top projects of the month css starts here  */

.top-projects-month-column {
    background: var(--default-color);
    border-radius: .8rem;
    box-shadow: 0 0 9px #ddd;
    transition: all 0.3s;
    overflow: hidden;
    height: 100%;
}

.top-projects-month-column:hover {
    box-shadow: 0 0 9px #6c6c6c;
}

.top-projects-month-column figure {
    width: 19rem;
    border-radius: .8rem 0 0 .8rem;
    overflow: hidden;
    height: 25rem;
    min-width: 19rem;
}

.top-projects-month-column figure img {
    width: 100%;
    height: 100%;
    transition: all 0.3s;
    object-fit: cover;
}

.top-projects-month-column:hover figure img {
    transform: scale(1.1);
}

.top-projects-month-column-text {
    flex: 1;
    padding: 1rem;
    width: 100%;
    overflow: hidden;
}

.top-projects-month-columnImg {
    position: relative;
}

.heart-sharing-icons {
    position: absolute;
    top: 0.5rem;
    left: 0.6rem;
    display: flex;
    gap: 0.5rem;
}

.heart-sharing-icons a {
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: var(--default-color);
    box-shadow: 0 0 9px #cacaca;
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.top-pro-month-column-text-top-left .column-heading {
    font-size: 1.8rem;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.column-heading>a {
    text-decoration: none;
    color: var(--title-color);
    transition: all 0.3s;
    word-break: break-all;
}

.column-heading>a:hover {
    color: var(--secondary-color);
}

.published-name {
    color: var(--text-color);
    font-size: 1.3rem;
}

.top-pro-month-column-text-top-right a {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-left: .5rem;
    text-decoration: none;
}

.top-pro-month-column-text-top {
    margin-bottom: 1rem;
}

.top-projects-month-column-text .column-para{
    font-size: 1.4rem;
    color: var(--text-color);
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.tpmc-area {
    font-size: 1.4rem;
    margin-top: 0.5rem;
    color: #2f2f2f;
    transition: all 0.3s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.tpmc-price {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 1rem 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.top-projects-month-column-text .custom-btn {
    background: 0;
    color: var(--secondary-color);
    padding: 0;
    font-size: 1.4rem;
    border: 0;
    box-shadow: none;
}

.top-projects-month-column-text .custom-btn:hover {
    text-decoration: underline;
    color: #f6a91bcc;
}

.top-projects-month-column:hover .custom-btn {
    transform: translateX(5px);
}

/* how we identify css starts here */

.custom-gray-bg{
    background: var(--light-gray-color);
}

.quick-decision-making-item {
    position: relative;
    overflow: hidden;
    border-radius: .8rem;
    transition: all 0.3s;
    box-shadow: 0 0 9px #afafaf;
    z-index: 1;
}

.quick-decision-making-item:hover{
    box-shadow: 0 0 9px #6c6c6c;
}

.heart-like-icon {
    position: absolute;
    top: 0;
}

.quick-decision-making-item:hover img {
    transform: scale(1.09);
}

.quick-decision-making-item figure {
    width: 100%;
    height: 28rem;
}

.quick-decision-making-item figure img {
    transition: all 0.3s;
    width: 100%;
    height: 100%;
}

.quick-decision-making-item h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 1.8rem;
    color: var(--default-color);
    font-weight: 700;
    z-index: 99;
    padding: 1.5rem 0;
}

.quick-decision-making-item h4:before {
    position: absolute;
    content: "";
    background: rgba(0,0,0,0.3);
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.property-location-banner figure {
    border-radius: .8rem;
    overflow: hidden;
}

/* recent projects css starts here */

.recent-projects-navTabs .nav-tabs {
    gap: 1rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    /* justify-content: center; */
}

.recent-projects-navTabs .nav-link {
    padding: 0.8rem 2rem;
    color: var(--title-color);
    box-shadow: 0px 0px 5px #a6a5a5;
    border-radius: 0.8rem;
    background: var(--default-color);
}

.recent-projects-navTabs .nav-link:hover,
.recent-projects-navTabs .nav-link.active {
    background: var(--secondary-color);
    color: var(--default-color);
    border-color: var(--secondary-color);
}

.recent-projects-slider {
    border-radius: .8rem;
}

.recent-projects-slider .item {
    padding: 10px;
}

.recent-projects-slider .recent-projects-items-column-top {
    width: 100%;
    margin-bottom: 2rem;
}

.recent-projects-slider .recent-projects-items-column-top:last-child {
    margin-bottom: 0;
}

.recent-projects-items-column-bottom {
    margin-top: 20px;
}

.recent-projects-slider .owl-nav button,
.topBuildersTwoItem-slider .owl-nav button,
.housing-locations-slider .owl-nav button,
.project-gallery-slider .owl-nav button,
.similarNews-slider .owl-nav button,
.part-of-glory-awards .owl-nav button,
.testimonials-slider .owl-nav button,
.four-items-slider .owl-nav button,
.three-items-slider .owl-nav button,
.featured-projects-slider .owl-nav button{
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--secondary-color) !important;
    color: var(--default-color) !important;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
}

.recent-projects-slider .owl-nav button.owl-prev,
.topBuildersTwoItem-slider .owl-nav button.owl-prev,
.housing-locations-slider .owl-nav button.owl-prev,
.similarNews-slider .owl-nav button.owl-prev,
.part-of-glory-awards .owl-nav button.owl-prev,
.four-items-slider .owl-nav button.owl-prev,
.three-items-slider .owl-nav button.owl-prev,
.featured-projects-slider .owl-nav button.owl-prev{
    left: -1.5rem;
    box-shadow: -3px 3px 9px #757575;
}

.project-gallery-slider .owl-nav button.owl-prev{
    left: 0;
}

.recent-projects-slider .owl-nav button.owl-next,
.topBuildersTwoItem-slider .owl-nav button.owl-next,
.housing-locations-slider .owl-nav button.owl-next,
.project-gallery-slider .owl-nav button.owl-next,
.similarNews-slider .owl-nav button.owl-next,
.part-of-glory-awards .owl-nav button.owl-next,
.four-items-slider .owl-nav button.owl-next,
.three-items-slider .owl-nav button.owl-next,
.featured-projects-slider .owl-nav button.owl-next{
    right: -1.5rem;
    box-shadow: 3px 3px 9px #757575;
}

.project-gallery-slider .owl-nav button.owl-next{
    right: 0;
}

.recent-projects-slider .owl-nav button.disabled,
.topBuildersTwoItem-slider .owl-nav button.disabled,
.top-builders-slider .owl-nav button.disabled,
.housing-locations-slider .owl-nav button.disabled,
.project-gallery-slider .owl-nav button.disabled,
.similarNews-slider .owl-nav button.disabled,
.part-of-glory-awards .owl-nav button.disabled,
.four-items-slider .owl-nav button.disabled,
.three-items-slider .owl-nav button.disabled,
.featured-projects-slider .owl-nav button.disabled{
    display: none;
}

.our-clients-slider .owl-nav button.disabled,
.floor-plans-slider .owl-nav button.disabled,
.testimonials-slider .owl-nav button.disabled,
.top-recommend-partner-slider .owl-nav button.disabled{
    background: var(--light-gray-color) !important;
    opacity: 0.9;
    cursor: default;
}

.top-recommend-partner-slider .owl-nav button{
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--secondary-color) !important;
    color: var(--default-color) !important;
    border-radius: 50%;
    top: -7rem;
    right: 0;
}

.top-recommend-partner-slider .owl-nav button.owl-prev {
    margin-right: 4.5rem;
}

.top-builders-slider .owl-nav button,
.our-clients-slider .owl-nav button,
.floor-plans-slider .owl-nav button{
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--secondary-color) !important;
    color: var(--default-color) !important;
    border-radius: 50%;
    top: -7.5rem;
}

.top-builders-slider .owl-nav button.owl-prev,
.our-clients-slider .owl-nav button.owl-prev,
.floor-plans-slider .owl-nav button.owl-prev{
    right: 4.5rem;
}

.top-builders-slider .owl-nav button.owl-next,
.our-clients-slider .owl-nav button.owl-next,
.floor-plans-slider .owl-nav button.owl-next{
    right: 0;
}

.testimonials-slider .owl-nav button.owl-prev{
    left: -10rem;
}

.testimonials-slider .owl-nav button.owl-next{
    right: -10rem;
}

/* buy sell property css starts here */

.buy-sell-property-container{
    background: url("/assets/images/buy-sell-property-banner.jpg") no-repeat center / cover;
    padding: 5rem;
    border-radius: 0.8rem;
}

.buy-sell-property-img figure {
    border: .8rem solid var(--default-color);
}

.buy-sell-property-img figure img {
    width: 100%;
    height: 100%;
}

.buy-sell-property-text .section-heading {
    margin-bottom: 2rem;
    color: #04233e;
}

.buy-sell-property-text .custom-btn {
    margin-top: 2rem;
}

/* top builders css starts here */

.top-builders,
.top-projectsBy-city {
    padding-bottom: 6rem;
}

.top-builders-row {
    background: var(--default-color);
    box-shadow: 0 0 9px #ddd;
    border-radius: .8rem;
    padding-right: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

.top-builders-row:last-child{
    margin-bottom: 0;
}

.top-builders-row-left {
    width: 100%;
}

/* .top-builders-row-leftImg {
    position: relative;
} */

.top-builders figure{
    padding: 0 1rem;
}

.top-builders-row-left figure {
    border-radius: .8rem 0 0 0.8rem;
    overflow: hidden;
    /* margin-right: 1.5rem; */
    width: 22rem;
    min-width: 22rem;
    height: 22rem;
}

.top-builders-row-left figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s;
}

.top-builders-row:hover figure img{
    transform: scale(1.1);
}

.top-project-builder figure {
    height: 26rem;
    width: 28rem;
}

.top-project-builder figure img {
    object-fit: cover;
}

.top-builders-row-left-content {
    padding: 1rem 1rem 1rem 0;
    margin-left: 1rem;
    flex: 1;
}

.top-builders-row-left-content .column-heading {
    margin-bottom: 0.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.top-builders-row-left-content .column-para {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.builderAddress {
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.text-highlight {
    font-weight: 600;
    color: var(--title-color);
}

.top-builders-reviews {
    margin-top: 1rem;
    display: none !important;
}

.five-star-reviews {
    margin-right: 1rem;
}

.five-star-reviews i {
    color: #ff9506;
    font-size: 1.4rem;
}

.top-builders-reviews-count {
    font-size: 1.4rem;
}

/* .top-builders-row-right {
    min-width: 20rem;
} */

.builders-location {
    margin-top: 1rem;
}

.builders-location-city,
.builders-share-social-media a {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.builders-location-city .text-highlight {
    margin-right: 0.5rem;
}

.builders-location-city i {
    font-size: 1.8rem;
}

.builders-location-city span {
    color: var(--text-color);
}

/* top builders right ads css */

.builder-of-month .section-heading {
    font-size: 3.4rem;
}

.builderOftheMonth-sticky {
    position: sticky;
    top: 9rem;
    left: 0;
}

.top-builders-right-ads {
    background: var(--default-color);
    border-radius: .8rem;
    height: 100%;
    max-height: 58rem;
    padding: 2rem;
    overflow: hidden;
    box-shadow: 0 0 9px #ddd;
}

.top-builders-right-ads-img {
    max-height: 14rem;
    height: 10rem;
    margin-bottom: 1rem;
}

.top-builders-right-ads figure {
    width: 100%;
    border-radius: 0.8rem;
    overflow: hidden;
    height: 100%;
    border: 1px solid #e1e1e1;
}

.top-builders-right-ads figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.top-builders-ads-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 16rem);
}

.top-builders-ads-box .top-builders-row-left-content .column-para,
.top-builders-ads-box .builderAddress {
    -webkit-line-clamp: 3;
}

.top-builders-ads-box .top-pro-month-column-text-top,
.top-builders-ads-box .builders-location {
    margin-bottom: 0;
    position: relative;
}

.top-builders-ads-box .tpmc-area {
    color: var(--title-color);
}

.top-builders-ads-box .top-pro-month-column-text-top-right a {
    background: var(--primary-color);
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    color: var(--default-color);
    font-size: 1.6rem;
}

.top-builders-ads-box .column-heading, 
.top-builders-ads-box .column-para,
.top-builders-ads-box .top-builders-reviews-count{
    color: var(--title-color);
}

.top-builders-ads-box .builders-location-city span{
    color: var(--title-color);
    font-weight: 500;
}

.top-builders-ads-box .builders-location-city i{
    color: var(--secondary-color);
    font-size: 2rem;
}

/* .top-builders-right-ads .custom-btn {
    background: var(--default-color);
    border-color: var(--default-color);;
    color: var(--secondary-color);
    margin-top: 3rem;
}

.top-builders-right-ads .custom-btn:hover{
    background: 0;
    color: var(--default-color);
} */

.top-builders-ads-box .five-star-reviews i {
    color: var(--default-color);
}

.top-builders-ads-box .builderAddress {
    color: var(--title-color);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.builderOfMonthSocial {
    gap: 0.5rem;
}

.like-share-item {
    display: none;
}

.builderOfMonthSocial .like-share-item>a, .builderOfMonthSocial .social-share-item>a {
    background: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    color: var(--primary-color);
    text-decoration: none;
    box-shadow: 0 0 9px #a4a4a4;
}

.builderOfMonthSocial .social-share-item .social-media-share {
    right: -200%;
    top: -125%;
    left: auto;
}

.builderOfMonthSocial .social-share-item:hover .social-media-share {
    left: auto;
    right: 0;
}

/* dream property css starts here */

.dream-property .section-heading {
    margin-bottom: 0.3rem;
}

.dream-property .column-para {
    margin-bottom: 3rem;
}

.dream-property-column{
    border-right: 1px solid var(--primary-color);
    padding: 1rem 0.8rem;
}

.dream-property-column:last-child {
    border-right: 0;
}

.dream-property-column figure {
    box-shadow: 0 0 9px #ddd;
    width: 10rem;
    height: 10rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.dream-property-column figure img {
    width: 6rem;
}

.dream-property-column .column-heading {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* purcahse dream home css starts here */

.purcahse-dream-home-container {
    /* background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(7,47,109,1) 0%, rgba(56,94,216,1) 100%); */
    padding: 5rem;
    border-radius: .8rem;
    background: linear-gradient(0deg, #c2bfd0 0%, #eeeef0 50%);
    box-shadow: 0 0 12px #b7b7b7;
}

.purcahse-dream-home-container .section-heading {
    color: var(--title-color);
    line-height: 1.4;
}

.purcahse-dream-home-container .section-heading span {
    color: var(--secondary-color);
    font-size: 5rem;
    line-height: 0.8;
    border-bottom: 0;
}

.our-clients-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.our-clients-slider .item{
    padding: 0.6rem;
}

.our-clients-logo {
    padding: 1rem 1rem 1.5rem;
    text-align: center;
    display: block;
    text-decoration: none;
    border-radius: 0.8rem;
    transition: all 0.3s;
    overflow: hidden;
}

.our-clients-logo:hover {
    box-shadow: 0 0 9px #dbdbdb;
}

.our-clients-logo figure {
    width: 100%;
    height: 12rem;
    padding: 1rem;
    border: 1px solid #c7c7c7;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.8rem;
}

.our-clients-logo figure img {
    width: 100%;
    height: 9rem;
    object-fit: contain;
    transition: all 0.4s;
}

.our-clients-logo:hover img {
    transform: scale(1.1);
}

.our-clients-content {
    margin-top: 1rem;
}

.our-clients-content .column-heading {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.our-clients-content .column-para {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.real-estate-news-column {
    box-shadow: 0 0 9px #e3e3e3;
    border-radius: .8rem;
    height: 100%;
    overflow: hidden;
}

.real-estate-news-column:hover {
    box-shadow: 0 0 9px #b6b6b6;
}

.real-estate-news-column figure {
    width: 100%;
    height: 25rem;
    overflow: hidden;
    border-radius: .8rem .8rem 0 0;
}

.real-estate-news-column figure img {
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}

.real-estate-news-column:hover img {
    transform: scale(1.1);
}

.similarNews-section .real-estate-news-column-content {
    text-align: center;
}

.real-estate-news-column-content {
    padding: 2rem;
    background: var(--default-color);
}

.real-estate-news-column-content .column-heading {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.real-estate-news-column-content .column-para {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.real-estate-news-column-content .custom-btn {
    margin-top: 1rem;
}

/* blog news right side bar starts */

.blog-news-right-side-bar {
    box-shadow: 0 0 9px #ddd;
    padding: 1rem;
    border-radius: 0.8rem;
    margin-bottom: 1.5rem;
}

.blog-news-right-items {
    display: flex;
    align-items: center;
    border: 1px solid #cfcfcf;
    margin-bottom: 1rem;
}

.blog-news-smlImg figure {
    width: 9rem;
    height: 8rem;
    margin-right: 0.6rem;
    border-right: 1px solid #ddd;
}

.blog-news-smlImg figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-heading {
    font-size: 1.4rem;
    line-height: 1;
    text-decoration: none;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-weight: 400;
}

.blog-price {
    font-size: 1.4rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-news-right-side-bar .custom-btn {
    background: 0;
    width: 100%;
    color: var(--secondary-color);
    text-align: center;
}

.blog-news-builders .blog-news-smlImg figure img {
    object-fit: contain;
}

.blog-news-builders {
    position: sticky;
    top: 9rem;
}

/* blog news right side bar ends here */

.pagination-container tr td span, .pagination-container tr td a {
    width: max-content;
    min-width: 3rem;
    display: inline-block;
    border-radius: 5px;
    line-height: 1;
    text-decoration: none;
    margin-right: 5px;
    padding: 8px;
    background: var(--primary-color);
    color: #fff;
}

.thispage {
    background: var(--secondary-color) !important;
}

/* .get-started-propkonnect {
    box-shadow: 0 0 9px #ddd;
} */

.get-started-propkonnect .section-heading {
    font-size: 5rem;
}

.get-started-propkonnect .section-heading span {
    font-size: 7rem;
}

.get-started-propkonnect .column-para {
    line-height: 1.8;
}

.get-started-propkonnect .custom-btn {
    margin-top: 3rem;
}

.similar-projects-section {
    padding-bottom: 10rem;
}

/* discover dream property banner css starts */

.discover-dream-property {
    position: relative;
    background: var(--light-gray-color);
    width: 100%;
    z-index: 2;
}

.discover-dream-property:before {
    position: absolute;
    content: "";
    background: #1a2039;
    width: 100%;
    height: 50%;
    bottom: 0;
}

.promote-prop-faster {
    background: transparent;
}

.discover-dream-property-container {
    background: var(--dark-light-color);
    border-radius: .8rem;
    height: 100%;
    position: relative;
    padding: 6rem 5rem;
}

.discover-dream-property-container .section-heading {
    color: var(--default-color);
    font-size: 5rem;
    margin-bottom: 0;
}

.discover-dream-property-container .section-heading span {
    color: var(--secondary-color);
}

.discover-dream-property-img figure {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 42rem;
}

.find-dream-property {
    position: relative;
    border-radius: 0.8rem;
    overflow: hidden;
}

/* footer css starts here */

footer{
    position: relative;
}

.footer-container {
    background: #1a2039;
    padding: 6rem 0 0;
}

.footer-logo {
    max-width: 21rem;
    margin-bottom: 1.9rem;
}

.footer-column .column-para {
    color: var(--default-color);
    font-size: 1.4rem;
    padding-right: 3rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    text-align: justify;
}

.footer-social-icon {
    margin-top: 2rem;
    display: flex;
    gap: .4rem;
}

.footer-social-icon a {
    width: 4rem;
    height: 4rem;
    display: flex;
    background: var(--default-color);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.6rem;
    color: var(--default-color);
    transition: all 0.3s;
    box-shadow: 0 0 9px #ddd;
}

.footer-social-icon a:hover {
    transform: translateY(-5px);
}

.footer-social-icon a.facebook,
.social-media-share .facebook .fa-brands{
    background: #334c8c;
}

.footer-social-icon a.instagram,
.social-media-share .instagram .fa-brands{
    background: linear-gradient(45deg, #feb52d 0%,#feb52d 25%,#fe3079 50%,#a306cd 75%,#a306cd 100%);
}

.footer-social-icon a.linkedin {
    background: #0b69c7;
}

.footer-social-icon a.xTwitter,
.social-media-share .xTwitter i{
    color: var(--title-color);
}

.footer-social-icon a.youtube {
    background: #f20000;
}

.whatsapp {
    background: #25D366!important;
}


.footer-menu .column-heading {
    color: var(--default-color);
    margin-bottom: 2rem;
}

.footer-menu-list>li>a {
    text-decoration: none;
    color: var(--default-color);
    font-size: 1.5rem;
    padding-bottom: 1rem;
    display: inline-block;
    font-weight: 300;
    transition: all 0.3s;
    word-break: break-all;
}

.footer-menu-list>li>a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.copyright-container {
    color: var(--default-color);
    border-top: 1px solid var(--text-color);
    padding: 2rem 0;
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* enquire Form pop up css starts here */

.enquireFormModal .modal-header {
    border-bottom: 0;
    padding: 2rem 2rem 1rem;
    position: relative;
}

.enquireFormModal .section-heading {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0;
}

.enquireFormModal .btn-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: var(--default-color);
    opacity: 1;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
}

.enquireForm-container {
    padding: 1.5rem;
}

.enquireForm-container .form-control {
    padding: 1rem;
    border: 0;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    box-shadow: 0 0 9px #ddd;
}

.enquireForm-container .form-control:focus::placeholder,
.listing-search-form .form-control:focus::placeholder{
    color: transparent;
}

.select-form-control{
    position: relative;
}

.select-form-control:after {
    position: absolute;
    content: "\f078";
    font-family: 'FontAwesome';
    top: 50%;
    right: 20px;
    bottom: 0;
    margin: auto;
    font-size: 14px;
    color: var(--title-color);
    transform: translateY(-50%);
    line-height: 1;
}

.select-form-control .form-control {
    cursor: pointer;
}

.enquireForm-container .form-check,
.indiPro-contactUs-container .form-check {
    padding-left: 1.8rem;
}

.enquireForm-container .form-check-label,
.indiPro-contactUs-container .form-check-label{
    font-size: 1.1rem;
    color: var(--text-color);
    cursor: pointer;
}

.enquireForm-container .form-check-label a,
.indiPro-contactUs-container .form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s;
}

.enquireForm-container .form-check-label a:hover,
.indiPro-contactUs-container .form-check-label a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.enquireForm-container .form-check-input,
.indiPro-contactUs-container .form-check-input{
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.7rem;
    cursor: pointer;
}

.enquireForm-container .custom-btn {
    min-width: 18rem;
    margin-top: 2rem;
}

/* enquire Form pop up css ends here */

/* project Details Modal css starts here */

.projectDetailsModal .modal-dialog {
    max-width: 90rem;
}

.projectDetailsModal .modal-header {
    padding: 1.5rem;
}

.projectDetailsModal .section-heading {
    margin-bottom: 0;
    text-align: center;
    width: 100%;
}

.projectDetailsModal .btn-close,
.logInModal .btn-close{
    position: absolute;
    right: -10px;
    top: -10px;
    background: var(--primary-color);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: var(--default-color);
    width: 2.5rem;
    height: 2.5rem;
}

.projectDetails-container {
    padding: 1rem;
}

.pro-radio-column {
    margin-bottom: 1.2rem;
}

.pro-radio-column .column-heading {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0;
}

.pro-radio-label {
    margin-left: 2rem;
}

.pro-radio-label .form-check-input {
    border: 1px solid var(--text-color);
    cursor: pointer;
}

.pro-radio-label .form-check-label {
    font-size: 1.2rem;
    cursor: pointer;
}

.estTimeFrame {
    margin-top: 1rem;
}

.estTimeFrame .pro-radio-label {
    margin-left: 0;
    margin-right: 2rem;
    margin-bottom: .5rem;
}

.estTimeFrame .pro-radio-label:last-child {
    margin-right: 0;
}

.pro-radio-column .form-control {
    font-size: 1.4rem;
    padding: 1rem;
    color: var(--title-color);
    font-weight: 400;
    border: 0;
    box-shadow: 0 0 9px #ddd;
}

.pro-radio-column .form-control:focus {
    box-shadow: 0 0 9px var(--text-color);
}

.pro-radio-column .form-control:focus::placeholder {
    color: transparent;
}

.projectDetails-container .form-check {
    margin-bottom: 1rem;
}

.projectDetails-container .form-check .form-check-label {
    font-size: 1.3rem;
    cursor: pointer;
}

.projectDetails-container .form-check .form-check-label a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s;
}

.projectDetails-container .form-check .form-check-label a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

.projectDetails-container .form-check .form-check-input {
    border: 1px solid var(--text-color);
    cursor: pointer;
}

.modalSubmit-btn {
    margin-bottom: 1rem;
    text-align: center;
}

.modalSubmit-btn .custom-btn {
    width: 88%;
}

/* project Details Modal css ends here */

/* user exit page modal css starts here */

#lookingBuyProp .modal-dialog {
    max-width: 70rem;
}

.lookingBuyPropTop {
    padding: 3rem;
}

.lookingBuyPropTop:before {
    position: absolute;
    content: "";
    background: #f6a91b;
    width: 17rem;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 0;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}

.lookingBuyPropTop-icon {
    z-index: 999;
}

.lookingBuyPropTop-icon figure {
    background: var(--default-color);
    width: 14rem;
    height: 14rem;
    border-radius: .8rem;
    box-shadow: 0 0 9px #a2a2a2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lookingBuyPropTop-icon figure img {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
}

.lookingBuyPropTop-right {
    margin-left: 2rem;
}

.lookingBuyPropTop-right .section-heading {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.lookingBuyPropTop-right .column-para {
    font-size: 1.4rem;
}

.lookingBuyPropTop-right .column-para:last-child {
    font-weight: 700;
    margin-top: 1rem;
}

#lookingBuyProp .form-control {
    margin-bottom: 0;
}

#lookingBuyProp .modal-body {
    background: #f5f5f5;
}

#lookingBuyProp .form-check .form-check-label {
    line-height: 2;
    color: var(--title-color);
}

/* user exit page modal css ends here */

/* about us page css starts here */

.how-we-are-img-left {
    right: -3rem;
}

.how-we-are figure,
.findAproperty-img figure {
    border-radius: .8rem;
    overflow: hidden;
}

.how-we-are .column-para {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
}

.listing-search {
    height: 35rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.listing-search .section-heading {
    color: var(--default-color);
    font-size: 3rem;
}

.listing-search-form .form-control {
    padding: 2rem 3rem 2rem 2rem;
    font-size: 1.4rem;
    border: 0;
    border-left: 1px solid #ddd;
    border-radius: 0;
}

.listing-search-form .form-control:focus {
    box-shadow: none;
}

.listing-search-icon {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 7rem;
    height: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--default-color);
    font-size: 2rem;
    color: var(--primary-color);
    border-radius: .8rem;
}

.findAproperty-content {
    background: var(--default-color);
    position: relative;
    left: -10rem;
    border-radius: .8rem;
    padding: 4rem 3.4rem;
}

.findAproperty-content .section-heading {
    margin-bottom: 2rem;
}

.findAproperty-content .column-para {
    line-height: 1.7;
}

.findAproperty-content .custom-btn {
    margin-top: 2rem;
}

/* make dream property css starts here */

.makeHappen-item {
    background: var(--default-color);
    padding: 4rem 3rem;
    border-radius: .8rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    text-align: center;
    height: 100%;
}

.makeHappen-item figure {
    width: 8rem;
    margin: auto;
    margin-bottom: 2rem;
    height: 8rem;
    overflow: hidden;
}

.makeHappen-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.makeHappen-item .column-heading {
    margin-bottom: 1rem;
}

.right-decision {
    background: var(--dark-color);
}

.right-decision-content .section-heading {
    color: var(--default-color);
}

.right-decision-content .column-para {
    color: var(--default-color);
    line-height: 1.7;
}

.getHunting .findAproperty-content {
    left: auto;
    right: -10rem !important;
}

/* services page css starts here */

.section-heading-para {
    padding-bottom: 4rem;
}

.section-heading-para .section-heading {
    margin-bottom: 0.7rem;
}

.our-expertise .column-heading {
    font-size: 1.8rem;
    margin-top: 1.5rem;
}

.our-services-box {
    padding: 1rem;
    height: 100%;
}

.our-services-box-item {
    border: 2px dashed #ddd;
    padding: 2rem 1rem;
    border-radius: .8rem;
    height: 100%;
}

.our-services-box-item figure {
    width: 6rem;
}

.our-services-tag {
    font-size: 1.5rem;
    color: var(--secondary-color);
    line-height: 1.4;
    margin-bottom: 1rem;
}

.services-all-content .column-para {
    font-size: 1.4rem;
    line-height: 1.8;
}

/* read more and read less button css */

.services-all-content .custom-btn {
    margin-top: 0.8rem;
    background: 0;
    border: 0;
    box-shadow: none;
    color: var(--secondary-color);
    padding: 0;
}

.services-all-content .custom-btn:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.services-all-content .collapse:not(.show) {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    transition: max-height 0.3s ease;
}

.services-all-content a.collapsed:before {
    content: 'Read More';
}

.services-all-content a:not(.collapsed):before {
    content: 'Read Less';
}

.ind-builder-about .services-all-content .collapse:not(.show){
    -webkit-line-clamp: 9;
}

.ind-builder-about .column-para {
    font-size: 1.5rem;
    line-height: 1.8;
}

button.readmore, button.readless {
    font-size: 15px;
    color: var(--secondary-color);
    padding: 0;
    border: 0;
    background: 0;
}

/* potential Property Buyers accordian css starts here */

.potential-property .accordion-item {
    margin-bottom: 1.5rem;
    border: 0;
    border-radius: .8rem;
    box-shadow: 0 0 9px #ddd;
}

.potential-property .accordion-item:last-child {
    margin-bottom: 0;
}

.prop-accordion {
    border-radius: .8rem;
}

.potential-accor-icon figure {
    background: var(--dark-color);
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.potential-accor-icon figure img {
    width: 4rem;
}

.potential-accor-icon .column-heading {
    margin-left: 1rem;
    margin-bottom: 0;
}

.prop-accordion.accordion-button::after {
    width: 3rem;
    height: 3rem;
    background-size: 2.5rem;
}

.prop-accordion.accordion-button:not(.collapsed) {
    background: none;
}

.buyers-img {
    height: 100%;
}

.buyers-img figure,
.real-partners-img figure {
    height: 100%;
    border-radius: .8rem;
    overflow: hidden;
}

.buyers-img figure img,
.real-partners-img img {
    height: 100%;
    width: 100%;
}

.real-partners{
    padding-bottom: 6rem;
}

.real-partners .section-heading-para {
    padding-bottom: 2rem;
}

.onboarding-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.onboarding-row figure {
    background: var(--dark-color);
    min-width: 8rem;
    height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.onboarding-row figure:before {
    position: absolute;
    content: "";
    border: 1px dashed var(--primary-color);
    height: 100%;
    top: 56%;
    z-index: -1;
}

.onboarding-result figure:before{
    display: none;
}

.onboarding-content .column-heading {
    margin-bottom: 1rem;
}

.onboarding-content .column-para {
    font-size: 1.4rem;
    font-weight: 400;
}

.leads-gmp .section-heading, 
.leads-gmp-column .column-heading, 
.leads-gmp .column-para {
    color: var(--default-color);
}

.leads-gmp-column {
    background: 0;
    padding: 0;
}

.leads-gmp-column figure {
    background: var(--default-color);
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.3rem;
}

.start-journey-heading {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: .8rem .8rem 0 0;
    position: relative;
    z-index: 1;
}

.start-journey-heading:before {
    position: absolute;
    content: "";
    background: var(--secondary-color);
    width: 4rem;
    height: 4rem;
    bottom: -1rem;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(45deg);
    z-index: -1;
}

.start-journey-heading .section-heading {
    margin-bottom: 0;
    font-size: 3rem;
    color: var(--default-color);
}

.start-journeyForm-container {
    border: 2px solid var(--primary-color);
    border-top: 0;
    border-radius: 0 0 .8rem .8rem;
    padding: 5rem 5rem 3rem;
}

.start-journeyForm-container .form-group {
    margin-bottom: 4rem;
    position: relative;
}

.start-journey-label {
    position: absolute;
    top: -1rem;
    left: 3rem;
    background: #fff;
    padding: 0 1rem;
    line-height: 1;
    font-weight: 400;
    font-size: 1.5rem;
}

.start-journeyForm-container .form-control {
    padding: 1.4rem;
    font-size: 1.2rem;
    border: 1px solid var(--text-color);
}

.start-journeyForm-container .form-group.select-form-control:after {
    line-height: inherit;
}

.start-journeyForm-container .custom-btn {
    min-width: 20rem;
}

/* top 10 builders page css starts here */
/* top banner tab css starts here */

.top-builders-banner .section-heading {
    margin-bottom: 4rem;
}

.buySellPropSearch {
    background: var(--default-color);
    display: inline-flex;
    border-radius: .8rem 0.8rem 0 0;
    overflow: hidden;
}

.buySellPropSearch .nav-link {
    color: var(--title-color);
    font-size: 1.8rem;
    font-weight: 600;
    border-radius: 0;
    padding: 1rem 3rem;
}

.buySellPropSearch .nav-link.active {
    background: var(--secondary-color);
    color: var(--default-color);
}

#buySellPropTabContent {
    background: var(--default-color);
    padding: 2rem;
}

#buySellPropTabContent label {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

#buySellPropTabContent .form-control {
    font-size: 1.5rem;
    padding: 1rem;
    border: 1px solid #ddd;
}

#buySellPropTabContent .select-form-control:after {
    line-height: 5;
}

#buySellPropTabContent .custom-btn {
    width: 100%;
    padding: 1rem;
}

/* all builders page css starts here */

.top-builders-item {
    background: var(--default-color);
    border: 1px solid var(--light-color);
    padding: 1rem;
    transition: all 0.3s;
    position: relative;
    min-height: 27.5rem;
}

.top-builders-item-image:before {
    position: absolute;
    content: "";
    background: #161e42;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
    opacity: 0;
    transition: all 0.3s;
}

.top-builders-item:hover .top-builders-item-image::before {
    opacity: 0.9;
}

/* .top-builders-item:hover {
    background: var(--secondary-color);
} */

.top-builders-item a {
    text-decoration: none;
}

.top-builders-item:hover img {
    height: 12rem;
    transition: all 0.3s;
}

.top-builders-item:hover .top-builders-item-content {
    opacity: 1;
    visibility: visible;
    bottom: 4rem;
}

.top-builders-item figure {
    width: 100%;
    height: 16rem;
    overflow: hidden;
    transition: all 0.3s;
}

.top-builders-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s;
}

.top-builders-item-content {
    text-align: center;
    margin-top: 1rem;
}

.top-builders-item-content .column-heading {
    margin-bottom: 0.2rem;
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.top-builders-item-content .tpmc-area {
    color: var(--title-color);
}

.top-builders-hover-item {
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 1.5rem;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    transition: all 0.3s;
}

.top-builders-item:hover .top-builders-hover-item {
    top: 6rem;
    opacity: 1;
    visibility: visible;
}

/* left filter css starts here */

.builders-filter-section {
    padding-bottom: 6rem;
}

.builders-filter-container {
    box-shadow: 0 0 9px #ddd;
    padding: 1.5rem 2rem;
    border-radius: .8rem;
}

.buildersFilterTop {
    margin-bottom: 2rem;
}

.buildersFilterTop .column-heading {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0;
    cursor: pointer;
}

.filter-searchItem {
    position: relative;
    margin-bottom: 2rem;
}

.buildersFilterInputBox {
    margin-top: 1.5rem;
}

.filter-searchItem .form-control {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    border: 0;
    background: #efefef;
}

.filter-searchItem .form-control:focus {
    box-shadow: 0 0 9px #acacac;
    background: var(--default-color);
}

.filter-searchItem .form-control:focus::placeholder{
    color: transparent;
}

.filter-searchItem .fa-magnifying-glass {
    position: absolute;
    top: 50%;
    right: 1.2rem;
    margin: auto;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--primary-color);
    font-size: 2rem;
}

.buildersFilterInputHeading {
    border: 0;
    background: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1.5rem 0 0;
    border-top: 1px solid #ddd;
}

.buildersfilterInputItem {
    max-height: 18.5rem;
    overflow-x: hidden;
    overflow-y: auto;
}

.buildersfilterInputItem::-webkit-scrollbar {
    width: 5px;
}

.buildersfilterInputItem::-webkit-scrollbar-track {
    background: var(--light-color); 
}

.buildersfilterInputItem::-webkit-scrollbar-thumb {
    background: var(--primary-color); 
}

.buildersfilterInputItem .form-check {
    padding: 0;
    margin-top: 0.8rem;
}

.buildersfilterInputItem .form-check label {
    display: flex;
    font-size: 1.5rem;
    color: var(--title-color);
    font-weight: 400;
    cursor: pointer;
}

.buildersfilterInputItem .form-check .filter-check {
    width: 1.8rem;
    height: 1.7rem;
    margin-top: 0.3rem;
    margin-right: 0.7rem;
    cursor: pointer;
}

/* left filter css ends here */

/* latter filter css starts here */

.builders-latter-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.bLFilter {
    text-align: center;
    padding: 0.7rem;
    line-height: 1;
    font-size: 1.5rem;
    font-weight: 500;
    cursor: pointer;
    min-width: 2.5rem;
}

.bLFilter.active, 
.bLFilter:hover {
    background: var(--primary-color);
    color: var(--default-color);
    box-shadow: 0 0 9px #b6b6b6;
    border-radius: 0.2rem;
}

/* latter filter css ends here */

.filters-content-column {
    padding-right: 1rem;
}

.filters-content-column-img {
    position: relative;
}

.filters-content-column-img figure {
    width: 18rem;
    height: 16rem;
    min-width: auto;
}

.filtersImgShareIcon {
    position: absolute;
    top: .5rem;
    right: 2.5rem;
    color: var(--secondary-color);
}

.filtersImgShareIcon a {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.filters-content-column .top-builders-row-left-content {
    flex: 1;
}

.builders-name-logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.builders-name-logo-row .column-heading {
    margin-bottom: 0;
}

.filters-content-column .column-heading,
.filters-content-column .column-para {
    -webkit-line-clamp: 2;
}

.builders-logo img {
    width: 8rem;
}

.filters-content-column .column-para, .filters-content-column .tpmc-area {
    margin-top: 0;
}

.filters-content-column .top-builders-row-left-content .tpmc-area span {
    font-weight: 600;
}

.filters-content-column .builders-location {
    margin-bottom: 0;
    margin-top: 0.5rem;
}

/* individual builders page css starts here */

.ind-top-banner {
    position: relative;
    z-index: 0;
}

.ind-top-banner:before {
    position: absolute;
    content: "";
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
}

.ind-top-banner-logo {
    display: block;
    padding-top: 5rem;
    position: relative;
    top: 1rem;
}

.ind-top-banner-logo figure {
    background: var(--default-color);
    border-radius: 0.8rem 0.8rem 0 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
    height: 16rem;
}

.ind-top-banner-logo figure img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.ind-top-banner .section-heading {
    color: var(--default-color);
    margin-bottom: 2rem;
    font-size: 5.5rem;
}

.ind-top-banner-project {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.indTop-projects .item {
    padding: 1rem;
}

.indTop-projects .top-builders-row,
.top-project-builder {
    border: 0;
    box-shadow: 0 0 9px #ababab;
    padding-right: 0;
    overflow: hidden;
    border-radius: 0.8rem;
    background: var(--default-color);
    position: relative;
}

.indTop-projects .top-builders-row-left {
    position: relative;
}

.indTop-projects .top-builders-row-left-content{
    flex: 1;
}

.indTop-projects .column-para{
    margin-top: 0.5rem;
    margin-bottom: 0;
    -webkit-line-clamp: 2;
}

.indTop-projects .tpmc-area {
    margin-top: 0.5rem;
    margin-bottom: 0;
    -webkit-line-clamp: 1;
}

.indTop-projects .custom-btn {
    background: 0;
    border: 0;
    box-shadow: none;
    color: var(--secondary-color);
    padding: 0;
    margin-top: 1rem;
}

.ind-builder-about-left {
    padding: 3rem 0 5rem 0;
}

.ind-builder-aboutImg {
    overflow: hidden;
    text-align: center;
}

.ind-builder-aboutImg figure {
    width: 100%;
    height: 40rem;
}

.ind-builder-aboutImg figure img {
    height: 100%;
}

.filters-category-subheading {
    margin-bottom: 3rem;
    gap: 1.5rem;
    display: flex;
    flex-wrap: wrap;
}

.filters-category-subheading button {
    background: 0;
    border: 1px solid var(--title-color);
    padding: 0.4rem 1rem;
    border-radius: 0.3rem;
    box-shadow: 2px 3px 9px #ffffff;
    font-size: 1.5rem;
    position: relative;
}

.filters-category-subheading button i {
    position: absolute;
    top: -11px;
    right: -10px;
    background: var(--title-color);
    color: var(--default-color);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.filters-projects .top-projects-month-columnImg {
    width: 50%;
}

.filters-projects .top-projects-month-column figure {
    height: 30rem;
    width: 100%;
}

.filters-projects .top-projects-month-column-text {
    padding: 2rem;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

/* .filters-projects-btn {
    display: flex;
    justify-content: end;
    gap: 3rem;
    align-items: center;
} */

.filters-projects-btn .custom-btn:last-child {
    background: var(--secondary-color);
    color: var(--title-color);
    padding: 1rem 2rem;
    box-shadow: 5px 5px 2px 0px #ddd;
    font-size: 1.6rem
}

/* .builders-instant-deal {
    padding-bottom: 6rem;
} */

.get-instant-deal {
    padding-bottom: 6rem;
}

.get-instant-deal-container {
    background: #161e42;
    padding: 6rem 0;
    border-radius: 0.8rem;
}

.get-instant-deal-container .section-heading {
    color: var(--default-color);
    margin-bottom: 1rem;
}

.get-instant-deal-container .column-para {
    color: var(--default-color);
}

.get-instant-deal-form {
    margin-top: 3rem;
}

.get-instant-deal-form .form-control {
    height: 4.7rem;
    padding: 2rem;
    font-size: 1.4rem;
    border-radius: 0;
    border: 0;
    box-shadow: 5px 5px 2px 0px var(--secondary-color);
}

.get-instant-deal-form .form-control:focus::placeholder{
    color: transparent;
}

.get-instant-deal-form .custom-btn {
    width: 100%;
}

.get-instant-deal-form .form-check {
    margin-top: 2rem;
}

.get-instant-deal-form .form-check-label {
    color: var(--default-color);
    font-size: 1.2rem;
    cursor: pointer;
}

.get-instant-deal-form .form-check-input {
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
    cursor: pointer;
}

.get-instant-deal-form .form-check-label a {
    color: var(--default-color);
    font-weight: 500;
}

.subscribe-box .section-heading {
    margin-bottom: 1rem;
}

.subscribe-box .section-heading span {
    font-size: 4rem;
}

.subscribe-box .column-para a {
    color: var(--primary-color);
}

.subscribe-box .custom-btn {
    margin-top: 1rem;
}

.subscribe-box-side-bar {
    padding: 1.5rem;
    border-radius: 5px;
    position: sticky;
    top: 10rem;
    box-shadow: 0 0 9px #ddd;
}

.subscribe-form label {
    font-size: 1.6rem;
    font-weight: 700;
}

.subscribe-form .explore-input-control {
    margin-top: 1rem;
}

.explore-input-control {
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    box-shadow: 0 0 9px #ddd;
    border-radius: 8px;
    margin-top: 5px;
    background: #fff;
    overflow: hidden;
}

.explore-input-control i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.subscribe-form .form-control {
    border: 0;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
}

.subscribe-form .form-control:focus{
    box-shadow: none;
}

.subscribe-form .custom-btn:hover {
    border: 1px solid;
}

.custom-file-button {
    box-shadow: 0 0 9px #ddd;
    border-radius: 0.5rem;
    margin-bottom: 1.2rem;
}

.custom-file-button .input-group-text {
    padding: 1rem 2rem;
    font-size: 1.5rem;
    box-shadow: 0 0 9px #ddd;
    border: 0;
}

.custom-file-button input[type="file"] {
	margin: 0;
    box-shadow: none;
}
 .custom-file-button input[type="file"]::-webkit-file-upload-button {
	display: none;
}
 .custom-file-button input[type="file"]::file-selector-button {
	display: none;
}
 .custom-file-button:hover label {
    background-color: #dde0e3;
    cursor: pointer;
}

/* contact us page css start here */

.contact-happy-counter .happy-counter-box figure {
    min-width: 5rem;
    max-width: 5rem;
    height: 5rem;
}

.excServices .section-heading {
    font-size: 3rem;
    margin-bottom: 0;
}

.excServices .makeHappen-item {
    padding: 2rem;
    height: 100%;
}

.connectWithReach .column-para {
    /* color: var(--default-color); */
    margin-top: 0.6rem;
    font-weight: 400;
}

.connectWithReach .section-subHeading {
    margin-top: 1rem;
}

.reach-timing {
    padding-bottom: 2rem;
}

.reach-timing .fa-clock {
    font-size: 3rem;
}

.reach-timing-list {
    margin-left: 2rem;
}

.reach-timing-list li {
    font-weight: 400;
    line-height: 2;
}

.forPP-section {
    margin-bottom: 3rem;
}

.forPP-section .column-para {
    margin-top: 1rem;
}

.forPP-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.forPP-section a:hover{
    text-decoration: underline;
    color: var(--secondary-color);
}

.ddTransparentBg {
    background: transparent;
}

.project-dream-prop {
    margin-top: 5rem;
}

/* city builders css starts here */

.city-search-section .section-heading {
    font-size: 4rem;
}

.city-search-section .listing-search-form {
    display: flex;
    align-items: center;
    background: var(--default-color);
}

.city-search-location {
    display: flex;
    align-items: center;
}

.city-search-location .fa-location-dot {
    color: var(--primary-color);
    font-size: 2rem;
    margin-left: 2rem;
}

.city-search-location select.form-control {
    border-left: 0;
    width: max-content;
    padding-left: 1rem;
}

.city-search-location.select-form-control::after {
    line-height: 2;
    right: 0.8rem;
}

.popular-city .recent-projects-navTabs .nav-tabs {
    border-bottom: 0;
    margin-bottom: 2rem;
}

.popular-city .top-projects-month-column figure {
    min-width: 22rem;
    height: 100%;
}

.popular-city .top-projects-month-column-text {
    margin-left: 1rem;
}

.popular-city .tpmc-area {
    margin-bottom: 0.7rem;
    color: #000;
}

.popular-city .tpmc-area span {
    font-weight: 500;
}

.city-builder-share-icon {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
}

/* city builders css ends here */

/* individual city builders css starts here */

.horizontal-banner a,
.horizontal-ads {
    display: inline-block;
}

.horizontal-banner a figure img,
.horizontal-ads figure img {
    border-radius: 0.8rem;
}

.handPropCollection .column-heading {
    color: var(--primary-color);
    margin: 1.5rem 0 3rem;
    font-weight: 500;
}

.handPropCollection .happy-customer-text {
    text-align: left;
}

.top-projects-full-column .top-projects-month-column {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-projects-full-column .top-projects-month-column-text {
    padding: 2rem 2rem 1rem;
}

.top-projects-full-column figure {
    width: 100%;
    border-radius: 0 0 0.8rem 0.8rem;
    height: 22rem;
}

.prop-consIcon-row .real-estate-simpli-item {
    text-align: center;
    box-shadow: 0px 4px 9px #a5a5a5;
}

.prop-consIcon-row .real-estate-simpli-item figure img {
    width: 8rem;
}

.prop-consIcon-row .column-heading {
    margin-bottom: 0.5rem;
}

.prop-consIcon-row .column-para {
    font-weight: 700;
    font-size: 1.6rem;
}

.prop-multiProjectItem {
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    display: block;
}

.prop-multiProjectItem:before {
    position: absolute;
    content: "";
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    border-radius: 0.8rem;
    visibility: hidden;
    z-index: 1;
}

.prop-multiProjectItem:hover::before {
    visibility: visible;
}

.prop-multiProjectItem figure {
    width: 100%;
    height: 27rem;
    border-radius: 0.8rem;
    overflow: hidden;
}

.prop-multiProjectItem figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s;
}

.prop-multiProjectItem:hover figure img {
    transform: scale(1.1);
}

.prop-multiProjectItem .column-heading {
    position: absolute;
    bottom: 0;
    margin-bottom: 0;
    background: #fff;
    padding: 1rem;
    border-radius: 0 0.8rem 0 0;
    font-size: 1.6rem;
    font-weight: 500;
    transition: all 0.5s;
}

.prop-multiProjectItem:hover > .column-heading {
    bottom: -100%;
}

.prop-multiProjectItemText {
    position: absolute;
    bottom: -100%;
    transition: all 0.5s;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    align-items: center;
    z-index: 2;
    text-align: center;
}

.prop-multiProjectItem:hover .prop-multiProjectItemText {
    top: 0;
    bottom: 0;
}

.variety-column-heading {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
}

.prop-multiProjectItemText p {
    font-size: 2rem;
    color: var(--default-color);
    font-weight: 500;
    margin-bottom: 0.4rem;
}

.prop-multiProjectItemText p:last-child {
    margin-bottom: 0;
}

.prop-multiProjectItemText .custom-btn {
    border-radius: 50%;
    min-width: 4rem;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    padding: 0;
}

.prop-multiProjectItemText .custom-btn .fa-arrow-right {
    transform: none;
}

/* .expert-advise-banner {
    margin-top: 6rem;
} */

.expert-advise-container .section-heading {
    color: var(--title-color);
    margin-bottom: 1.5rem;
}

.expert-advise-container .column-para {
    font-size: 1.6rem;
    color: var(--title-color);
    margin-bottom: 2rem;
}

.housing-locations-items .column-heading {
    font-size: 1.7rem;
}

.housing-locations-lists li {
    margin-bottom: 1.5rem;
}

.housing-locations-lists li:last-child {
    margin-bottom: 0;
}

.housing-locations-lists li a {
    text-decoration: none;
    color: var(--text-color);
    display: inline-block;
    font-size: 1.5rem;
}

.housing-locations-lists li a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.city-builder-about {
    padding-top: 6rem;
    text-align: center;
}

.city-builder-about .column-para {
    line-height: 1.8;
}

.city-builder-about .custom-btn {
    margin-top: 2.5rem;
}

/* individual city builders css ends here */

/* all categories css starts here */

.searchProp-preference .quick-decision-making-item figure {
    height: 22rem;
}

.looking-apartments-select-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.looking-apartments-booking .form-check-label,
.looking-apartments-booking .form-check-label a{
    color: var(--title-color);
}

.looking-apartments-booking .form-check-label {
    text-align: left;
}

.category-banner {
    position: relative;
    z-index: 1;
}

.category-banner:before {
    position: absolute;
    content: "";
    background: rgb(0 0 0 / 20%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}

/* project category css */

.project-category-top-banner {
    padding: 3rem 0;
}

.pro-cat-top-banner-container {
    box-shadow: 0 0 9px #ddd;
    padding: 1rem;
}

.pro-cat-top-banner-img figure {
    width: 100%;
    height: 25rem;
    overflow: hidden;
    border-radius: 5px;
}

.pro-cat-top-banner-img figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-cat-top-banner-text {
    padding: 1rem;
}

.pro-cat-top-banner-text .section-heading {
    margin-bottom: 2rem;
}

/* project category css ends */

.top-pick-housing-item {
    background: var(--default-color);
    padding: 1rem;
    border-radius: 0.8rem;
    box-shadow: 0 0 9px #ddd;
    transition: all 0.3s;
    height: 100%;
}

.top-pick-housing-item:hover {
    box-shadow: 0 0 9px #a1a1a1;
}

.top-pick-housing-item-img {
    position: relative;
}

.top-pick-housing-item-img figure {
    width: 100%;
    height: 22rem;
    overflow: hidden;
    border-radius: 0.8rem;
}

.top-pick-housing-item-img figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.top-pick-housing-item:hover img {
    transform: scale(1.1);
}

.heart-like-icon .fa-heart{
    position: absolute;
    background: var(--default-color);
    color: var(--secondary-color);
    top: 1rem;
    left: 1rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 0 9px #ddd;
}

.top-pick-housing-item-img i.active,
.heart-like-icon i.active,
.like-share-item a i.active {
    content: "\f004";
    font-family: 'FontAwesome';
}

.heart-sharing-icons .projectlike:hover {
    background: var(--primary-color);
    color: var(--default-color);
}

.top-pick-housing-item-text-top {
    padding: 1.5rem 0 1rem;
}

.top-pick-housing-item-text-top .column-heading {
    margin-bottom: 0;
    font-size: 1.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.top-pick-housing-item-text-top .tpmc-area {
    font-weight: 500;
    min-width: 11rem;
    margin-top: 0;
    text-align: center;
}

.top-pick-housing-item-text-top .fa-location-dot {
    color: var(--secondary-color);
    font-size: 2.1rem;
}

.top-pick-housing-item-text-btn {
    padding-bottom: 0.5rem;
}

.top-pick-housing-item-text-btn small {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.top-pick-housing-item-text-btn .custom-btn {
    padding: 0.5rem 1.5rem;
    font-size: 1.5rem;
    min-width: max-content;
}

.city-housing-projects-row .quick-decision-making-item figure {
    height: 35rem;
}

.city-housing-projects-row .quick-decision-making-item h4 {
    min-height: 7.5rem;
}

/* confused section css starts here */

.confused-selection {
    position: relative;
    z-index: 1;
}

.confused-dotted-icon-left {
    position: absolute;
    top: 0;
    left: 0;
}

.confused-dotted-icon-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

.confused-selection-content .section-heading {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.confused-selection-content .column-heading {
    color: var(--default-color);
    font-weight: 300;
}

.confused-selection-content,
.confused-selection-img {
    z-index: 99;
    text-align: center;
}

.confused-selection-img figure {
    height: 42rem;
    overflow: hidden;
}

.confused-selection-img figure img {
    object-fit: contain;
    height: 100%;
}

/* faq section starts here */

#faqAccordion .accordion-item {
    border: 0;
    margin-bottom: 1rem;
    box-shadow: 0 0 9px #ddd;
    border-radius: 0.8rem;
}

.accordion-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 2.5rem 1.8rem 5rem;
}

.accordion-heading {
    font-size: 1.6rem;
    color: var(--title-color);
    font-weight: 600;
    position: relative;
    line-height: 1.5;
}

.accordion-heading:before {
    position: absolute;
    content: "";
    width: 1.2rem;
    height: 1.2rem;
    background: var(--secondary-color);
    left: -2.5rem;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
}

.accordion-item-top i {
    color: var(--secondary-color);
    font-size: 2rem;
    transition: all 0.3s;
}

#faqAccordion .accordion-body {
    padding: 1rem 2.5rem 1rem;
    border-top: 1px solid #cbcbcb;
}

.pro-faq-text {
    overflow-y: hidden;
    overflow-x: auto;
}

.pro-faq-text p, .pro-faq-text div {
    font-size: 1.6rem;
    line-height: 1.8;
}

.pro-faq-text ol li {
    font-size: 1.5rem;
    line-height: 1.6;
}

.accordion-item-top.collapsed i {
    rotate: -180deg;
}

.pro-faq-text table {
    width: 100% !important;
    margin-top: 2rem;
}

.pro-faq-text table tr td {
    width: 33%;
    padding: 0.5rem 1rem !important;
}

/* all categories css ends here */

/* home loan page css starts here */

.home-loan-banner {
    height: 50rem;
    display: flex;
    align-items: center;
    position: relative;
}

.home-loan-banner .section-heading {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: var(--title-color);
    font-weight: 400;
}

.home-loan-banner .section-heading span {
    color: #000;
    font-weight: 900;
    font-style: italic;
}

.home-loan-banner .column-para {
    margin-top: 0.5rem;
    line-height: 1.6;
    color: var(--title-color);
}

.home-loan-banner .column-para span {
    font-weight: 700;
}

.tcBtn {
    position: absolute;
    bottom: 1rem;
    color: #e6e6e6;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.tcBtn:hover {
    text-decoration: underline;
    color: #e9e9e9;
}

.home-loan-form-container {
    background: #f4eae2;
    border-radius: 1rem;
    padding: 5rem 0;
}

.apply-home-loan-section .section-heading {
    font-size: 1.8rem;
}

.apply-home-loan-section .section-heading-para .column-heading {
    font-size: 2.8rem;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--primary-color);
    text-shadow: 2px 1px #d0d0d0;
}

.apply-home-loan-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.apply-home-loan-items {
    position: relative;
}

.apply-home-loan {
    box-shadow: 0 0 9px #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 3rem;
    width: 100%;
    height: 22rem;
    text-decoration: none;
    transition: all 0.3s;
    padding: 1rem 1.8rem;
    text-align: center;
    position: relative;
}

.apply-home-loan:hover {
    box-shadow: 0 0 9px #5d5d5d;
}

/* .apply-home-loan:before,
.home-loan-buy-prop-btn:before {
    background: #f6a91b;
    content: "";
    position: absolute;
    visibility: hidden;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
} */

.apply-home-loan.active {
    background: var(--dark-color);
}

.apply-home-loan figure {
    width: 100%;
    height: 17rem;
}

.apply-home-loan figure img {
    width: 100%;
    height: 100%;
}

.home-loan-form-container .apply-home-loan {
    height: auto;
    background: var(--default-color);
}

.apply-home-loan .column-para {
    font-size: 1.4rem;
    color: var(--title-color);
    font-weight: 500;
}

.home-loan-buy-prop-btn,
.home-loan-location .form-control {
    text-decoration: none;
    padding: 1rem 2rem;
    box-shadow: 0 0 9px #ddd;
    color: var(--title-color);
    font-size: 1.6rem;
    font-weight: 500;
    border-radius: 3rem;
    transition: all 0.3s;
    border: 0;
    background: 0;
    width: 100%;
    position: relative;
    background: var(--default-color);
}

.home-loan-location .form-control:focus::placeholder{
    color: transparent;
}

.home-loan-buy-prop-btn:hover {
    box-shadow: 0 0 9px #6d6d6d;
}

#regiration_form fieldset:not(:first-of-type) {
    display: none;
}

.hloan-check {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    cursor: pointer;
    appearance: none;
    width: 100%;
    height: 100%;
    border-radius: 3rem;
}

.hloan-check:checked {
    box-shadow: 0 0 9px #2c2c2c;
}

.previous.custom-btn, .next.custom-btn {
    min-width: 16rem;
}

.apply-home-loan-section .custom-btn {
    padding: 1.5rem;
    border-radius: 0.8rem;
}

.typeOfEmploye figure {
    width: 6rem;
    height: 6rem;
}

.typeOfEmploye figure img {
    object-fit: contain;
}

.typeOfEmploye .column-para {
    margin-top: 0.5rem;
}

/* .salary-amount {
    margin-bottom: 4rem;
} */

.salary-amount .form-control {
    border: 0;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    font-size: 1.7rem;
    padding: 0.8rem 1.5rem;
}

.salary-amount .form-control:focus {
    box-shadow: 0 0 9px #dadada;
    border-radius: 0.8rem;
}

.amount-progressBar-slider input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 1rem;
    background: var(--secondary-color);
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    border-radius: 1rem;
}

.amount-progressBar-slider input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    appearance: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    background: var(--secondary-color);
    cursor: pointer;
    box-shadow: 0 0 0px 10px #fad48d;
    transition: background .3s ease-in-out;
}

.amount-progressBar-slider input[type="range"]::-moz-range-thumb {
    appearance: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    background: var(--secondary-color);
    cursor: pointer;
    box-shadow: 0 0 0px 10px #fad48d;
    transition: background .3s ease-in-out;
}

.amount-progressBar-slider-mrpLeft, 
.amount-progressBar-slider-mrp span {
    color: var(--title-color);
    font-size: 1.8rem;
    font-weight: 600;
}

.amount-progressBar-slider-mrp {
    margin-top: 1rem;
}

.area-pin-code {
    position: relative;
}

.area-pin-code figure {
    position: absolute;
    left: 1.2rem;
    top: 1.4rem;
    width: 1.8rem;
}

.area-pin-code .form-control {
    padding-left: 4.5rem !important;
}

.contact-home-loan-deals .form-control {
    padding: 1.8rem;
    font-size: 1.4rem;
    border: 0;
    box-shadow: 0 0 9px #ddd;
}

.contact-home-loan-deals .form-control:focus::placeholder{
    color: transparent;
}

.home-loan-number-verify {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.home-loan-number-verify-row .form-control {
    width: 5rem;
    height: 5rem;
    border-radius: 0.8rem;
}

.home-loan-number-verify-row .form-check-label {
    font-size: 1rem;
    cursor: pointer;
    color: #000;
    font-weight: 500;
}

.hl-resendOTP {
    border: 0;
    background: 0;
    color: var(--primary-color);
    font-size: 1.3rem;
    text-decoration: underline;
    padding: 0;
    line-height: 0;
    font-weight: 700;
    transition: all 0.3s;
}

.hl-resendOTP:hover {
    color: var(--secondary-color);
}

/* home loan page css ends here */

/* privacy policy css starts here */

.privacy-policy-banner {
    background: var(--dark-color);
}

.privacy-policy-banner .section-heading {
    font-size: 5rem;
    margin: 0;
    color: var(--default-color);
}

.pp-content-container .column-heading {
    padding-top: 3rem;
}

.pp-content-container .column-para {
    color: var(--title-color);
    line-height: 1.7;
    margin-top: 1rem;
}

.pp-content-list {
    padding-left: 3rem;
}

.pp-content-list li {
    list-style: decimal;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    color: var(--title-color);
}

.column-subPara {
    font-weight: 500;
    margin-top: 2rem !important;
    margin-bottom: 1rem;
}

.pp-content-container a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s;
}

.pp-content-container a:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* all projects page css starts here */

.city-new-properties {
    background: var(--light-gray-color);
}

.city-new-properties .section-heading {
    font-size: 6rem;
}

.city-new-properties-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.city-new-properties-item {
    text-decoration: none;
    transition: all 0.3s;
}

.city-new-properties-item:hover {
    transform: translateY(-10px);
}

.city-new-properties-item figure img {
    width: 16rem;
    height: 16rem;
    overflow: hidden;
    border-radius: 50%;
    object-fit: cover;
}

.total-projects {
    color: var(--title-color);
    font-size: 1.6rem;
    margin-top: 1.3rem;
}

.city-new-properties-item .column-heading {
    margin-bottom: 0;
    margin-top: 0.8rem;
    font-size: 1.8rem;
    font-weight: 400;
}

.city-new-properties-item:hover .column-heading {
    color: var(--secondary-color);
}

.city-builders-properties-section {
    padding-bottom: 5rem;
    background: #ebe4dd;
}

.light-chocolate-bg{
    background: #ebe4dd;
}

/* all projects page css ends here */

.top-projectsBy-city:nth-child(2n - 1),
.popular-project-by-city:nth-child(2n - 1){
    background: var(--light-gray-color);
}

/* projects details page starts here */

.builders-full-address {
    padding: 0rem 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    border-radius: 0.8rem;
}

.builders-full-address-img {
    position: relative;
    height: 100%;
}

.builders-full-address figure {
    width: 25rem;
    text-align: center;
    height: 10rem;
    min-width: 25rem;
}

.builders-full-address figure img {
    width: 100%;
    object-fit: contain;
    height: 100%;
}

.builders-full-address-text {
    margin-left: 2rem;
    width: 100%;
}

.bf-address-text-row {
    margin-bottom: 1rem;
}

.bf-address-text-row .builders-amt {
    margin-right: 2rem;
    min-width: max-content;
}

.builders-full-address-text .column-heading {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.builders-full-address-text .column-buil-heading {
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
}

.builders-full-address-text .custom-btn {
    padding: 1rem 2rem;
    min-width: max-content;
}

.builders-amt {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.6;
}

.builders-full-address-text .builders-amt i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* project gallery pop up css starts here */

.project-gallery-container {
    width: 100%;
    position: relative;
    border-radius: 0.8rem;
}

.project-gallery-slider {
    border-radius: 0.8rem;
    overflow: hidden;
}

.pg-slider-item {
    height: 40rem;
}

.pg-slider-item figure {
    height: 100%;
}

.pg-slider-item figure img {
    height: 100%;
    border-radius: 0.8rem;
    object-fit: cover;
}

.pg-slider-item video {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.pro-gallery-upper-content {
    position: absolute;
    bottom: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.5rem 2rem;
    color: var(--default-color);
    background: rgb(0 0 0 / 70%);
    border-radius: 0 0 0.8rem 0.8rem;
}

.pro-gallery-upper-content-img {
    display: flex;
    gap: 0.6rem;
}

.pro-gallery-upper-content-img figure {
    width: 2rem;
}

.pro-gallery-upper-content-img p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2;
}

.lb-thumbnail-wrapper .lbr-thumb {
    border: 3px solid #ddd;
}

.lb-thumbnail-wrapper .lbr-thumb.active,
.lb-thumbnail-wrapper .lbr-thumb:hover {
    border: 3px solid var(--primary-color);
}

#lbt-profile_lightbox,
#lbt-name_lightbox,
#lbt-date_lightbox,
#lbt-chat_lightbox,
#lbt-star_lightbox,
#lbt-smile_lightbox,
#lbt-forward_lightbox,
#lbt-download_lightbox,
#lbt-dot_lightbox{
    display: none;
}

#lbt_next, #lbt_previous {
    width: 5rem;
    height: 5rem;
    padding: 0;
    background: var(--primary-color);
    text-align: center;
}

#lbt_next i, #lbt_previous i {
    font-size: 3rem;
    transform: translateY(-70%);
}

/* project gallery pop up css ends here */

.best-deals-form .enquireForm-container {
    box-shadow: 0 0 9px #ddd;
    background: var(--default-color);
    border-radius: 0.8rem;
    position: sticky;
    top: 9rem;
}

.best-deals-form .section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.saperate-container,
.project-top-container {
    box-shadow: 0 0 9px #ddd;
    padding: 2rem 1rem;
    border-radius: 0.8rem;
}

.saperate-container{
    margin-top: 2rem;
}

.projectABT-para, .projectABT-para p {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 0.6rem;
    text-align: justify;
}

.projectABT-para{
    margin-bottom: 0;
}

.project-category {
    box-shadow: 0 0 9px #e1e1e1;
    padding: 1rem 1.5rem;
    border-radius: 0.8rem;
    height: 100%;
}

.project-category small {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--title-color);
}

.project-category-text {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 1rem;
}

.ind-abt-project .services-all-content .collapse:not(.show) {
    -webkit-line-clamp: 5;
}

.pro-abt-pricing-slider .owl-nav {
    position: relative;
    bottom: 7rem;
}

.pro-abt-pricing-slider .owl-nav button {
    position: absolute;
    width: 4rem;
    height: 4rem;
    background: var(--secondary-color) !important;
    color: var(--default-color) !important;
    border-radius: 50%;
}

.pro-abt-pricing-slider .owl-nav button.owl-prev {
    right: 8rem;
}

.pro-abt-pricing-slider .owl-nav button.owl-next {
    right: 3.5rem;
}

.pro-abt-pricing-item {
    padding: 3rem;
    position: relative;
    z-index: 1;
    color: var(--default-color);
    border-radius: 0.8rem;
    box-shadow: 0 0 9px #a3a3a3;
    height: 100%;
}

.pro-abt-pricing-item:before {
    position: absolute;
    content: "";
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    border-radius: 0.8rem;
}

.proAbtPricingText {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.project-price-row {
    background: #62626261;
    max-width: max-content;
    padding: 1rem 2rem;
    border-radius: 0.8rem;
}

.project-size {
    padding-right: 2rem;
    border-right: 1px solid #ddd;
}

.project-price-row span {
    display: block;
    margin-bottom: 0.5rem;
}

.project-price-row span:last-child {
    margin-bottom: 0;
}

.project-price {
    padding-left: 2rem;
}

.project-size-price-list li {
    line-height: 2;
    font-size: 1.6rem;
}

.project-size-price-list li i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.project-size-price-box .builders-location i {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

small.proAbtPricingText {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    font-size: 1.3rem;
    padding: 0.6rem 0;
    display: block;
}

.pro-abt-pricing-item .custom-btn {
    margin-top: 1.5rem;
}

.all-amenities-item {
    text-align: center;
    padding: 1rem;
    border-radius: 0.8rem;
    transition: all 0.3s;
    box-shadow: 0 0 9px #ddd;
    height: 100%;
}

.all-amenities-item figure {
    width: 3rem;
    margin: auto;
}

.all-amenities-item figure img{
    width: 100%;
    object-fit: contain;
}

.all-amenities-item .column-heading {
    margin-top: 1rem;
    font-size: 1.4rem;
    margin-bottom: 0;
    font-weight: 400;
}

.all-amenities-btn {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.facilitiesmore, .facilitiesless, .overviewmore, .overviewless {
    text-align: center;
    padding: 1rem;
    border-radius: 0.8rem;
    transition: all 0.3s;
    box-shadow: 0 0 9px #ddd;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.all-amenities-btn:hover {
    box-shadow: 0 0 9px #bcbcbc;
}

.likeToVisitPro-banner {
    height: 40rem;
}

.likeToVisitProContainer{
    padding-top: 6rem;
}

.likeToVisitPro-banner p.section-heading {
    margin-bottom: 1rem;
    font-size: 3rem;
}

.likeToVisitPro-banner .custom-btn {
    min-width: 30rem;
    box-shadow: 5px 5px 2px 0px #000;
}

.likeToVisitPro-img {
    padding: 5rem 0 1rem;
}

.project-highlight {
    padding-top: 6rem;
    padding-bottom: 9rem;
}

.proHighlightImg figure img {
    width: 100%;
    height: 100%;
    border-radius: 0.8rem;
    object-fit: cover;
}

.project-highlight-img-3 {
    position: absolute;
    bottom: -4rem;
    right: 0;
}

.project-highlight-img-3 figure {
    height: 33rem;
}

.project-highlight-img-1 figure {
    width: 100%;
    height: 50rem;
}

.project-highlight-img-2 figure {
    height: 19rem;
}

#prHighlightAccordian .accordion-item {
    border: 0;
}

#prHighlightAccordian .accordion-item .accordion-heading:before {
    content: "\f0da";
    font-family: 'FontAwesome';
    background: none;
    color: var(--secondary-color);
    font-size: 2.4rem;
    top: -5px;
    width: auto;
    height: auto;
}

/* .prDescription {
    padding-left: 2rem;
} */

.prDescription p {
    font-size: 1.6rem;
    line-height: 2;
    font-weight: 400;
}

.floor-plans-slider .item,
.similarNews-slider .item {
    padding: 1rem;
}

.floor-plans {
    background: var(--light-gray-color);
}

.floor-plans-item {
    box-shadow: 0 0 9px #ddd;
    background: var(--default-color);
    padding: 1rem;
    text-align: center;
    border-radius: 0.8rem;
    position: relative;
}

.floor-plans-item figure {
    height: 30rem;
}

.floor-plans-item figure img {
    width: 100%;
    height: 100%;
}

.floor-plans-item .custom-btn {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.floor-vertical-banner {
    background: #ffffff;
    padding: 2rem 1rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.8rem;
    box-shadow: 0 0 9px #ddd;
}

.floor-vertical-banner .column-heading {
    font-size: 2.25rem;
    line-height: 1.35;
    margin-bottom: 2rem;
}

.floor-vertical-banner .custom-btn {
    margin-bottom: 2rem;
    border-radius: 3rem;
    padding: 0.8rem 3rem;
}

.indiPro-contactUs .section-heading {
    font-size: 2.5rem;
    line-height: 1.5;
}

.indiPro-contactUs-container {
    background: var(--default-color);
    box-shadow: 0 0 9px #ddd;
    border-radius: 0.8rem;
}

.indiPro-contactUs-container .start-journeyForm-container {
    border: 0;
}

.care-of-needs-item {
    position: relative;
    box-shadow: 0 0 9px #adadad;
    border-radius: 5px;
    overflow: hidden;
}

.care-of-needs-item figure {
    width: 100%;
    height: 35rem;
}

.care-of-needs-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.care-of-needs-item-content {
    position: absolute;
    top: 1rem;
    text-align: center;
    padding: 1rem;
}

.care-of-needs-item .column-heading {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.care-of-needs-item-content .column-para {
    font-size: 1.4rem;
    line-height: 1.3;
}

.care-of-needs-item-content .custom-btn {
    margin-top: 1rem;
    border-radius: 5rem;
    opacity: 0;
    visibility: hidden;
}

.care-of-needs-item:hover .custom-btn {
    visibility: visible;
    opacity: 1;
}

.curious-info-left .section-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.curious-info-left .section-para {
    margin-bottom: 2rem;
}

.curious-info-left .custom-btn {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.curious-social-icon {
    display: flex;
    justify-content: space-around;
    margin-top: 1rem;
}

.curious-social-icon a {
    text-decoration: none;
    color: var(--title-color);
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.curious-social-icon a:hover {
    color: var(--secondary-color);
}

.curious-social-icon a i {
    margin-right: 1rem;
    border: 1px solid var(--title-color);
    padding: 0.6rem;
    border-radius: 50%;
    font-size: 2rem;
    width: 3.2rem;
    height: 3.2rem;
}

/* projects details page ends here */

/* blog page css starts here */

.blog-content-row {
    background: var(--default-color);
    box-shadow: 0 0 9px #ddd;
    border-radius: 0.8rem;
    overflow: hidden;
}

.blog-img-left figure {
    width: 100%;
    height: 30rem;
}

.blog-img-left figure img {
    width: 100%;
    height: 100%;
}

.blog-content {
    padding: 1rem 2rem;
}

.blog-content .column-heading>a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-date span {
    font-size: 16px;
    color: #717171;
    font-weight: 300;
}

.blog-content .column-para {
    margin: 1rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-details-section {
    padding-bottom: 0;
}

.blog-details-container p {
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 400;
}

.blog-details-img {
    margin: 2rem 0;
}

.blog-details-container img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
}

.blog-details-container table tr, .blog-details-container table td {
    border: 1px solid #000;
    padding: 1rem;
}

.blog-details-container table thead th {
    border-right: 1px solid #000;
}

.blog-details-container table th {
    padding: 1rem;
}

/* blog page css ends here */

/* no-news-found css starts here */
#nodata, .no-news-found {
    background: var(--light-color);
    height: calc(100% - 6.5rem);
    border-radius: 0.8rem;
    padding-top: 10rem;
    padding-bottom: 2rem;
    text-align: center;
    position: relative;
    font-weight: 500;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#nodata::before,
.no-news-found::before{
    position: absolute;
    content: "";
    background: url('https://propkonnect.com/assets/images/dream-pro-happen-icon-3.png');
    width: 5rem;
    height: 5rem;
    background-size: contain !important;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.no-news-found::before{
    background: url('https://propkonnect.com/assets/images/dream-pro-happen-icon-2.png');
}

.no-image-avlb {
    position: absolute;
    background: var(--light-color);
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.no-image-avlb img {
    width: 6rem !important;
}

.no-image-avlb p {
    font-weight: 600;
    line-height: 1.5;
}

/* no-news-found css ends here */

/* advertise with us page css starts here */

.advs-top-banner .full-slider-text-row .section-heading,
.advs-top-banner .full-slider-text-row p {
    color: var(--title-color);
}

.sos-column figure {
    margin-bottom: 3rem;
    width: 100%;
    height: 20rem;
}

.sos-column figure img {
    height: 100%;
    object-fit: contain;
}

.sos-list {
    margin-top: 1rem;
}

.sos-list li {
    padding-left: 2.3rem;
    position: relative;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.sos-list li:before {
    position: absolute;
    content: "\f046";
    font-family: 'fontawesome';
    left: 0;
    color: var(--secondary-color);
}

.areUinterested {
    margin-bottom: 4rem;
}

.areUinterestedLeftImg {
    padding-top: 5rem;
}

.areUinterested-item figure {
    border: 1px solid var(--title-color);
    border-radius: 50%;
    width: 7rem;
    min-width: 7rem;
    height: 7rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.areUinterested-item figure img {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
}

.item-heading {
    font-weight: 600;
    font-size: 1.5rem;
    margin-left: 2rem;
}

.potential-buyers-section {
    padding: 5rem 0;
    height: 60rem;
    margin-top: 3rem;
}

.potential-buyers-section .column-para {
    font-weight: 400;
    line-height: 1.6;
    font-size: 1.8rem;
    color: #161e42;
}

.readyPropAds-text {
    padding: 4rem 0;
}

.readyPropAds-text .section-heading {
    color: var(--title-color);
    margin-bottom: 1rem;
}

.advs-include-item {
    padding: 2rem;
    box-shadow: 0 0 9px #ddd;
    border-radius: 1rem;
}

.advs-include-item figure {
    width: 8rem;
    height: 8rem;
    margin: auto;
    box-shadow: 0 0 9px #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    background: var(--default-color);
}

.advs-include-item figure img {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
}

.advs-include-item .column-heading {
    position: relative;
    padding-bottom: 0.5rem;
}

.advs-include-item .column-heading:before {
    position: absolute;
    content: "";
    background: var(--secondary-color);
    width: 5rem;
    height: 2px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.boostSell-property {
    margin-bottom: 3rem;
}

.boostSellProp-container {
    padding: 5rem 2rem;
    position: relative;
    z-index: 0;
}

.boostSellProp-container:before {
    position: absolute;
    content: "";
    box-shadow: 0 0 9px #ddd;
    width: 75%;
    height: 100%;
    right: 0;
    z-index: -1;
    top: 0;
    border-radius: 0.8rem;
}

.boostSellPropText {
    padding-left: 3rem;
}

/* advertise with us page css ends here */

#ui-id-1 {
    max-width: 33.4rem;
    background: var(--secondary-color);
    max-height: 39rem;
    overflow: auto;
    box-shadow: 0px 3px 9px #8b8b8b;
}

#ui-id-1 .ui-menu-item {
    padding: 0.7rem 2rem;
    border-bottom: 1px solid #ddd;
    color: var(--default-color);
    cursor: pointer;
    transition: all 0.4s;
}

#ui-id-1 .ui-menu-item:hover {
    background: var(--primary-color);
}

.social-share-item {
    padding-bottom: 0.5rem;
}

.social-share-item .social-media-share {
    background: var(--default-color);
    padding: 0.5rem;
    box-shadow: 0 0 9px #424242;
    border-radius: 0.8rem;
    position: absolute;
    top: 100%;
    left: -500%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    transition: all 0.3s;
    z-index: 2;
    gap: 0.5rem;
}

.social-share-item:hover .social-media-share {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.social-media-share>a {
    box-shadow: none;
    transition: all 0.3s;
    text-decoration: none;
}

.social-media-share>a:hover {
    transform: translateY(-3px);
}

.social-media-share>a .fa-brands {
    background: var(--secondary-color);
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    max-width: 3rem;
    display: flex;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.6rem;
    color: var(--default-color);
    transition: all 0.3s;
}

.social-media-share>a .fa-x-twitter{
    background:linear-gradient(45deg, #66757f, #00ACEE, #36D8FF, #757575, #ffffff);
}

.social-media-share>a>span {
    background: var(--title-color);
    padding: 0.2rem 0.5rem;
    color: #fff;
    position: relative;
    z-index: 0;
    display: block;
    min-width: 9rem;
    font-size: 1.4rem;
    display: none;
}

.social-media-share>a>span:after {
    position: absolute;
    content: "";
    width: 2rem;
    height: 2rem;
    left: -8px;
    top: 0;
    background: var(--title-color);
    transform: rotate(45deg);
    bottom: 0;
    margin: auto;
    z-index: -1;
}

.social-share-item .social-media-share>a>figure {
    width: 3rem;
    height: 3rem;
    max-width: 3rem !important;
    min-width: 3rem !important;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
}

.social-media-share .whatsApp figure{
    background: #29a71a !important;
}

.social-media-share>a>figure img {
    width: 1.6rem !important;
    object-fit: contain !important;
}

/* review css starts here */


.review-container {
    /* box-shadow: 0 0 9px #ddd; */
    background: var(--light-gray-color);
}

.review-rating-full-row {
    margin-bottom: 30px;
}

.review-rating-number>p>i {
    font-size: 35px;
    color: #ffc000;
}

.review-rating-number>p>span {
    font-size: 40px;
    font-weight: 700;
    margin-left: 5px;
}

.review-rating-number small {
    margin-left: 1rem;
    font-size: 13px;
    color: var(--title-color);
    line-height: 16px;
    font-weight: 500;
}

.review-rating-btn .custumBtn {
    width: 250px;
}

.review-container .nav-tabs {
    margin-bottom: 2rem;
    border: 0;
    gap: 1rem 0.5rem;
}

.review-container .nav-tabs li a {
    padding: 5px 8px;
    border: 1px solid var(--text-color);
    border-radius: 0;
    color: var(--text-color) !important;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s;
}

.review-container .nav-tabs li a:hover {
    background: var(--primary-color);
    color: #fff !important;
    border: 1px solid var(--primary-color);
}

.review-container .nav-tabs li a.active {
    background: var(--primary-color);
    color: #fff !important;
    border: 1px solid var(--primary-color);
}

.review-content .nav-tabs {
    border-bottom: 1px solid #ddd;
}

.review-content .nav-tabs li a {
    text-transform: uppercase;
    border: none;
    font-size: 14px;
    padding: 0;
    margin-right: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ddd0;
    margin-bottom: 6px;
}

.review-content .nav-tabs li a.active {
    background: 0;
    color: var(--primary-color) !important;
    border: 0;
    border-bottom: 3px solid;
    font-weight: 600;
    margin-bottom: 0;
}

/* .review-content .nav-tabs li a:hover {
    background: 0;
    border: 0;
    color: var(--primary-color)!important;
} */

#latest-review .review-item-box-container.collapse:not(.show) {
    max-height: 480px !important;
    overflow: hidden;
    display: -webkit-box;
    transition: max-height 0.3s ease;
}

#latest-review .all-review-btn a.collapsed:after  {
    content: 'Read More Reviews';
}

#latest-review .all-review-btn a:not(.collapsed):after {
    content: 'Read Less Reviews';
}

.review-item-user-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 6px;
}

.review-item-box {
    background: #fff;
    box-shadow: 0 1px 8px #b9b9b9;
    padding: 2rem 1.5rem;
}

.review-star-box {
    font-size: 14px;
    color: #ffc000;
}

.review-item-box h4 {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    margin: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.review-item-box p{
    font-size: 14px;
    color: #000;
}

.review-item-box p.collapse:not(.show) {
    overflow: hidden;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
}

.review-item-box p.collapsing {
    min-height: 42px !important;
}

.review-item-box a.collapsed:after  {
    content: 'Read More';
}

.review-item-box a:not(.collapsed):after {
    content: 'Read Less';
}

/* .review-item-box p {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
} */

.review-item-box>a {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.review-user-box {
    margin-top: 1rem;
}

.review-user-box h5 {
    font-size: 1.4rem;
    color: #000;
}

.review-user-box small {
    font-size: 10px;
    color: var(--primary-color);
    line-height: 1;
    font-weight: 600;
}

.all-review-btn {
    margin-top: 2rem;
}

.all-review-btn .custumBtn {
    max-width: 25rem;
    margin: auto;
}

.writeReviewsContainer .modal-dialog {
    max-width: 500px;
}

.userReview_content .modal-header {
    margin-bottom: 1rem;
}

.userReview_content .modal-header .section-heading {
    margin-bottom: 0;
    width: 100%;
    font-size: 3rem;
}

.userReview_content .modal-header .section-heading h2 {
    font-size: 20px;
}
.userReview_content .modal-header .section-heading h2:before{
    width: 100%;
}
.userReview_content .modal-header .section-heading h2:after{
    width: 40%;
}
.userReview_content .modal-header .close{
    position: absolute;
    right: -10px;
    top: -10px;
    background: var(--primary-color);
    padding: 5px;
    border-radius: 50%;
    opacity: 1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    border: 0;
}
.userReview_content .modal-header .close:hover,
.mymodal .modal-header .close:hover {
    opacity: 1;
    box-shadow: 0 0 9px var(--primary-color);
}

.user-review-perf-row {
    margin-bottom: 0.7rem;
    justify-content: center;
}

.user-review-perf-row span {
    width: 60%;
    font-size: 1.5rem;
    color: var(--title-color);
    font-weight: 500;
}

.user-review-perf-star {
    margin-left: 1rem;
}

.user-review-perf-star i{
    color: #afafaf;
    font-size: 1.6rem;
    cursor: pointer;
}

.user-review-perf-star i:hover{
    color: var(--secondary-color);
}

.reviewSubmit_form {
    padding: 1rem;
}

.reviewSubmit_form .form-group {
    margin-bottom: 1rem;
}

.reviewSubmit_form .form-control {
    box-shadow: 0 0 9px #ddd;
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    border: 0;
    border-radius: 0.8rem;
}

.remember_check_box label {
    font-size: 1.2rem;
}

.reviewSubmit_form .custom-btn {
    margin: 1rem 0;
}

/* review css ends here */

/* pagination css starts here */

.pagination_row {
    padding-top: 3rem;
}

.pagination_row .paging tr td span {
    background: #f6a91b;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    color: var(--default-color);
    border-radius: 4px;
    min-width: 4rem;
    display: inline-block;
}

.pagination_row .paging tr td a {
    text-decoration: none;
    background: #f6a91b;
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    color: var(--default-color);
    border-radius: 4px;
}

.pagination_row .paging tr td span:hover,
.pagination_row .paging tr td a:hover{
    background: var(--primary-color);
}

.pagination_row .paging tr td span.thispage {
    background: var(--primary-color) !important;
}

/* pagination css ends here */

/* dashboard css starts here */

.dashboard-sidebar {
    padding: 1rem;
    background: var(--dark-color);
    border-radius: 0.8rem;
}

.user-panel img {
    width: 45px;
}

.dashboard-sidebar .info a {
    text-decoration: none;
    margin-left: 1rem;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
}

.dashboard-sidebar ul {
    gap: 0.3rem;
}

.dashboard-sidebar ul .nav-item a {
    display: flex;
    align-items: center;
    color: var(--default-color);
    padding: 1rem 1.5rem;
}
.dashboard-sidebar ul .nav-item a:hover,
.dashboard-sidebar ul .nav-item a.active {
    background: var(--secondary-color);
}

.dashboard-sidebar ul .nav-item a i {
    margin-right: 1rem;
    width: 20px;
    font-size: 1.7rem;
}

.nav-treeview {
    background: var(--title-color);
    border-radius: 0.8rem;
}

.nav-treeview li {
    width: 100%;
}

.dashboardright-wrapper {
    background: var(--light-gray-color);
    padding: 2rem 2rem 5rem;
    border-radius: 0.8rem;
    height: 100%;
}

.dashboardright-wrapper .breadcrumb-item a {
    text-decoration: none;
    color: var(--title-color);
    font-weight: 500;
}

.dashboardright-wrapper .breadcrumb-item.active {
    font-weight: 500;
    color: var(--secondary-color);
}

.dashboardRight_topText {
    text-align: center;
    margin: 2rem 0 3rem;
    font-size: 1.6rem;
    font-weight: 500;
}

.main-dashboard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.main-dashboard .dbbox {
    background: var(--default-color);
    box-shadow: 0 0 9px #ddd;
    border-radius: 0.8rem;
    text-align: center;
}

.main-dashboard .dbbox a {
    text-decoration: none;
    color: #000;
    padding: 3rem 1rem;
    display: block;
}

.main-dashboard .dbbox .dbimg {
    width: 55px;
    height: 55px;
    box-shadow: 0 0 9px #b4b4b4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-dashboard .dbbox .dbimg img {
    width: 35px;
}

.main-dashboard .dbbox .amount-wrap {
    margin-left: 1.5rem;
    font-weight: 900;
}

.main-dashboard .dbbox h4 {
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
}

.profile-content .form-control {
    padding: 1.5rem;
    font-size: 1.3rem;
    border: 0;
    box-shadow: 0 0 9px #ddd;
}


/* dashboard css ends here */

.logout-container {
    padding-top: 5rem;
    padding-bottom: 25rem;
}

.alert-box {
    padding: 5rem;
    box-shadow: 0 0 9px #ddd;
    border: 0;
    border-radius: 0.8rem;
}

.lg-outer .lg-thumb {
    margin: auto;
}

.city-wise-builders-section .top-projects-month-column figure img {
    object-fit: contain;
}

.city-wise-builders-section .top-projects-month-column-text .column-para {
    -webkit-line-clamp: 2;
}

.city-wise-builders-section .builderAddress {
    margin: 0.5rem 0;
}

.top-projects-india .top-builders-row-leftImg {
    width: 50%;
}

.top-projects-india .top-builders-row-left figure {
    height: 25rem;
    width: 100%;
}

.top-projects-india .top-builders-row-left figure img {
    object-fit: cover;
}

.top-projects-india .top-builders-right-ads {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.top-projects-india .top-builders-right-ads-img {
    width: 50%;
    height: 100%;
    max-height: 100%;
    margin-bottom: 0;
}

.top-projects-india .top-builders-right-ads-img figure {
    height: 37rem;
    border-radius: 0.8rem 0 0 0.8rem;
}

.top-projects-india .top-builders-right-ads-img figure img {
    object-fit: cover;
    height: 100%;
}

.top-projects-india .top-builders-ads-box {
    width: 50%;
}

.top-projects-india .builders-location {
    position: static;
}

.top-projects-india .builderOfMonthSocial {
    position: absolute;
    top: 6px;
    left: 6px;
}

.top-projects-india .builderOfMonthSocial .social-share-item .social-media-share {
    left: -200%;
    top: 100%;
    right: auto;
}

.top-projects-india .builderOfMonthSocial .social-share-item:hover .social-media-share {
    right: auto;
    left: 0;
}

.top-projects-india .top-builders-ads-box .tpmc-price {
    color: var(--title-color);
    margin-top: 2rem;
}

.top-projects-india .top-builders-ads-box .custom-btn{
    margin-top: 2rem;
}

.thank-check-box {
    width: 5rem;
    height: 5rem;
    margin: auto;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    border-radius: 50%;
    color: var(--default-color);
    margin-bottom: 2rem;
}

.thank-you-massage .section-heading {
    margin-bottom: 1rem;
}

.thank-you-massage .section-para {
    font-size: 1.6rem;
    font-weight: 400;
}

/* multi step form starts here */

.wizard-content-left {
    background-blend-mode: darken;
    background-color: rgba(0, 0, 0, 0.45);
    background-image: url("https://i.ibb.co/X292hJF/form-wizard-bg-2.jpg");
    background-position: center center;
    background-size: cover;
    height: 100vh;
    padding: 30px;
  }
  .wizard-content-left h1 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 600;
    padding: 12px 20px;
    text-align: center;
  }
  
  /* .form-wizard {
    color: #888888;
  } */
  .form-wizard .wizard-form-radio {
    display: inline-block;
    margin-left: 5px;
    position: relative;
  }
  .form-wizard .wizard-form-radio input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: #dddddd;
    height: 25px;
    width: 25px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
  }
  .form-wizard .wizard-form-radio input[type="radio"]:focus {
    outline: 0;
  }
  .form-wizard .wizard-form-radio input[type="radio"]:checked {
    background-color: #fb1647;
  }
  .form-wizard .wizard-form-radio input[type="radio"]:checked::before {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #ffffff;
    border-radius: 50%;
    left: 1px;
    right: 0;
    margin: 0 auto;
    top: 8px;
  }
  .form-wizard .wizard-form-radio input[type="radio"]:checked::after {
    content: "";
    display: inline-block;
    webkit-animation: click-radio-wave 0.65s;
    -moz-animation: click-radio-wave 0.65s;
    animation: click-radio-wave 0.65s;
    background: #000000;
    content: '';
    display: block;
    position: relative;
    z-index: 100;
    border-radius: 50%;
  }
  .form-wizard .wizard-form-radio input[type="radio"] ~ label {
    padding-left: 10px;
    cursor: pointer;
  }
  .form-wizard .form-wizard-header {
    text-align: center;
  }
  .form-wizard .form-wizard-next-btn, .form-wizard .form-wizard-previous-btn, .form-wizard .form-wizard-submit {
    background-color: var(--secondary-color);
    color: #ffffff;
    display: inline-block;
    min-width: 100px;
    min-width: 120px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    border: 0;
    box-shadow: 5px 5px 2px 0px #ddd;
  }
  .form-wizard .form-wizard-next-btn:hover, .form-wizard .form-wizard-next-btn:focus, .form-wizard .form-wizard-previous-btn:hover, .form-wizard .form-wizard-previous-btn:focus, .form-wizard .form-wizard-submit:hover, .form-wizard .form-wizard-submit:focus {
    color: #ffffff;
    opacity: 0.6;
    text-decoration: none;
  }
  .form-wizard .wizard-fieldset {
    display: none;
  }
  .form-wizard .wizard-fieldset.show {
    display: block;
  }
  .form-wizard .wizard-form-error {
    display: none;
    border: 1px solid #f6a91b;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}
  .form-wizard .form-wizard-previous-btn {
    background-color: var(--primary-color);
    margin-right: 1rem;
  }
  .form-wizard .form-control {
    font-weight: 300;
    height: auto !important;
    padding: 15px;
    color: #888888;
    border: none;
    border-radius: 0;
  }
  .form-wizard .form-control:focus {
    box-shadow: none;
  }
  .form-wizard .form-group {
    position: relative;
  }
  .form-wizard .wizard-form-text-label {
    position: absolute;
    left: 10px;
    top: 16px;
    transition: 0.2s linear all;
  }
  .form-wizard .focus-input .wizard-form-text-label {
    color: #d65470;
    top: -18px;
    transition: 0.2s linear all;
    font-size: 12px;
  }
  .form-wizard .form-wizard-steps {
    margin: 30px 0;
  }
  .form-wizard .form-wizard-steps li {
    width: 25%;
    float: left;
    position: relative;
  }
  .form-wizard .form-wizard-steps li::after {
    background-color: var(--light-gray-color);
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
  }
  .form-wizard .form-wizard-steps li span {
    background-color: #dddddd;
    border-radius: 50%;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    position: relative;
    text-align: center;
    width: 40px;
    z-index: 1;
  }
  .form-wizard .form-wizard-steps li:last-child::after {
    width: 50%;
  }
  .form-wizard .form-wizard-steps li.active span, .form-wizard .form-wizard-steps li.activated span {
    background-color: #d65470;
    color: #ffffff;
  }
  .form-wizard .form-wizard-steps li.active::after, .form-wizard .form-wizard-steps li.activated::after {
    background-color: #d65470;
    left: 50%;
    width: 50%;
    border-color: #d65470;
  }
  .form-wizard .form-wizard-steps li.activated::after {
    width: 100%;
    border-color: #d65470;
  }
  .form-wizard .form-wizard-steps li:last-child::after {
    left: 0;
  }
  .form-wizard .wizard-password-eye {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }
  @keyframes click-radio-wave {
    0% {
      width: 25px;
      height: 25px;
      opacity: 0.35;
      position: relative;
    }
    100% {
      width: 60px;
      height: 60px;
      margin-left: -15px;
      margin-top: -15px;
      opacity: 0.0;
    }
  }
  @media screen and (max-width: 767px) {
    .wizard-content-left {
      height: auto;
    }
  }
  
/* multi step form ends here */

.glossary-banner-img img {
    max-height: 40rem;
    width: 100%;
}

.filter-category-box {
    margin-top: 2rem;
}

.filter-category-table-row table tr {
    border-color: #ababab !important;
}

.filter-category-table-row .table {
    max-width: 100%;
}

.filter-category-box-heading {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--default-color);
    margin-bottom: 10px;
    background: var(--secondary-color);
    padding: 5px;
    width: 4rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 9px #959595;
    border-radius: 4px;
}

.latter-filter-item {
    border: 0;
    background: 0;
    font-size: 1.5rem;
    width: 2.7rem;
    height: 2.5rem;
    font-weight: 500;
    padding: 0;
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.latter-filter-item.active, .latter-filter-item:hover {
    background: var(--secondary-color);
    color: var(--default-color);
    border-radius: 4px;
    font-weight: 600;
}

.recent-articals-container h2.column-heading {
    text-align: center;
    text-decoration: underline;
}

.recent-articals-box .blog-content {
    padding: 0;
    border-bottom: 1px solid #b1b1b1;
    padding-bottom: 5px;
    margin-top: 20px;
}

.recent-articals-box .column-heading {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.recent-articals-box .column-para {
    -webkit-line-clamp: 3;
    color: var(--title-color);
}

.recent-articals-box .column-para a {
    color: var(--title-color);
    text-decoration: none;
}

.recent-articals-box .column-para a:hover {
    text-decoration: underline;
}

.vertical-ads-article {
    margin-top: 2rem;
}

.verticle-ads-center a {
    display: inline-block;
}

.ver-ads-text {
    margin-left: auto;
    background: #4a4a4a;
    color: var(--default-color);
    font-size: 1.6rem;
    padding: 4px 2rem;
    border-radius: 20px;
    max-width: max-content;
}

.vertical-ads-article a figure {
    margin: auto;
}

/* newslatter subscribe */

.newslatter-subscribe-box {
    background: #161e42;
    padding: 4rem 4rem;
    box-shadow: 5px 5px 2px 0px #bbbbbb;
}

.newslatter-subscribe-box .column-heading,
.newslatter-subscribe-box .column-para {
    color: var(--default-color);
}

.newslatter-subs-form {
    margin-top: 2rem;
}

.newslatter-subs-form .form-control {
    padding: 1rem;
    font-size: 1.6rem;
    text-align: center;
    font-weight: 700;
    color: var(--title-color);
    border-radius: 1.5rem;
}

.newslatter-subs-form .form-control:focus::placeholder{
    color: transparent;
}

.newslatter-subs-form .custom-btn,
.your-query-form .custom-btn {
    margin-top: 1rem;
    width: 100%;
    border-radius: 1.5rem;
}

.your-query-box {
    border: 1px solid #929295;
    margin-top: 1rem;
    padding: 4rem;
    position: sticky;
    top: 11rem;
    box-shadow: 5px 5px 2px 0px #bbbbbb;
}

.your-query-form .form-control {
    padding: 0.5rem;
    font-size: 1.4rem;
    border: 0;
    border-bottom: 1px solid #929295;
    border-radius: 0;
    margin-bottom: 1.5rem;
}

.your-query-form .custom-btn:hover {
    border: 1px solid var(--secondary-color);
}

.events-details .column-para {
    margin-bottom: 1rem;
    text-align: justify;
}

.real-estate-events-banner {
    height: 45rem;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
}

.real-estate-events-banner::before {
    position: absolute;
    content: "";
    background: var(--title-color);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.3;
    z-index: -1;
}

.real-estate-events-banner .section-heading {
    color: var(--default-color);
    font-size: 5rem;
    margin: 0;
}

.real-estate-past-events {
    padding-bottom: 6rem;
}

.blog-details-section .newslatter-subscribe-box {
    position: sticky;
    top: 12rem;
}

.event-blog-container .section-heading {
    margin-bottom: 2rem;
    text-align: center;
}

.event-blog-container .blog-details-img {
    margin: 1rem 0;
}

.item-event-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.event-info-box {
    color: var(--title-color);
    font-size: 1.5rem;
    font-weight: 400;
}

.event-info-box i {
    color: var(--primary-color);
}

.published-date {
    margin-top: 2rem;
    border-top: 1px solid #b1b1b1;
    padding-top: 1rem;
}

.realty-expert-banner{
    padding: 10rem 0;
}

.realty-expert-banner .section-heading {
    color: var(--default-color);
    margin-bottom: 1rem;
}

.realty-expert-banner .section-subHeading {
    margin-bottom: 3rem;
}

.expert-talk-section .section-heading {
    font-size: 2.5rem;
}

.expert-talk-section h2.section-heading {
    margin-bottom: 1.5rem;
}

.expert-talk-text .column-heading {
    font-size: 2.5rem;
    margin-top: 2rem;
}

.expert-talk-text .column-para {
    margin-top: 0.6rem;
}

.meet-expert-row {
    background: var(--default-color);
    box-shadow: 0 0 9px #dddddd;
    border-radius: .8rem;
    margin-top: 2rem;
    overflow: hidden;
}

.meet-expert-left {
    max-height: 31.5rem;
}

.meet-industry-experts {
    padding-bottom: 6rem;
}

.meet-industry-video {
    float: left;
    width: 45%;
    margin-right: 2rem;
}

.meet-industry-content .column-para {
    margin-bottom: 1rem;
    text-align: justify;
}

.meet-experts-details {
    margin-bottom: 1rem;
}

.meet-ex-details-img {
    background: #ddd;
    border: 2px solid #f6a91b;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 2rem;
}

.meet-ex-details-img img {
    width: 13rem;
    height: 12rem;
    object-fit: contain;
}

.meet-ex-details-text h3 a {
    font-size: 2rem;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 700;
    transition: all 0.3s;
}

.meet-ex-details-text h3 a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.meet-ex-details-text h4 {
    margin: 0.5rem 0;
    color: #7e7e7e;
    font-size: 1.6rem;
}

.expert-social-icon {
    margin-top: 0.5rem;
}

.expert-social-icon a {
    font-size: 2rem;
    margin-right: 0.5rem;
    color: var(--primary-color);
    transition: all 0.3s;
}

.expert-social-icon a:hover {
    color: var(--secondary-color);
}

.meet-expert-row {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.realty-ex-inner-banner {
    min-height: 40rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.realty-ex-details {
    padding-top: 6rem;
    padding-bottom: 0;
}

.other-experts{
    padding-bottom: 6rem;
}

.other-experts .meet-experts-details {
    background: var(--default-color);
    box-shadow: 0 0 9px #dddddd;
    border-radius: .8rem;
    margin-top: 2rem;
    overflow: hidden;
    padding: 0.4rem;
}

.other-experts .meet-ex-details-img {
    width: 12rem;
    min-width: 12rem;
    margin-right: 1rem;
}

.other-experts .meet-ex-details-img img {
    width: 100%;
}

.other-experts .meet-industry-content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.meet-industry-content {
    font-size: 1.5rem;
}

.related-experts-item {
    background: var(--default-color);
    box-shadow: 0 0 9px #dddddd;
    border-radius: .8rem;
    overflow: hidden;
}

.related-experts-item .meet-industry-video {
    width: 100%;
    margin: 0;
    float: none;
}

.related-experts-item .meet-industry-content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    padding: 0 1rem 0.5rem;
}

.channel-partner-abt .column-para {
    margin-bottom: 1rem;
}

.channel-city-item {
    background: var(--default-color);
    box-shadow: 0 0 9px #dddddd;
    border-radius: .8rem;
    overflow: hidden;
}

.channel-city-item-img {
    position: relative;
    overflow: hidden;
}

.channel-city-item-img:before {
    position: absolute;
    content: "";
    background: var(--title-color);
    width: 100%;
    height: 100%;
    opacity: 0.4;
    transform: translateY(-100%);
    transition: all 0.5s;
}

.channel-city-item-img:hover::before {
    transform: scale(1);
}

.channel-city-item-img:hover > .prop-multiProjectItemText {
    bottom: 4rem;
}

.channel-city-item-img .prop-multiProjectItemText p {
    font-size: 1.6rem;
    line-height: 1.2;
}

.channel-city-item figure {
    width: 100%;
    height: 15rem;
}

.channel-city-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.channel-city-item-text {
    text-align: center;
    padding: 1rem;
}

.ch-city-text {
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--title-color);
    font-weight: 800;
    display: block;
    line-height: 1.2;
    transition: all 0.3s;
}

.ch-city-text:hover {
    color: var(--secondary-color);
}

.city-channel-right-item {
    position: relative;
    margin-bottom: 2rem;
}

.city-channel-right-item figure {
    height: 25rem;
}

.channel-city-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-ch-right-item-text {
    position: absolute;
    top: 1rem;
    left: 0;
    right: 0;
}

.city-ch-right-item-text .ch-city-text {
    color: var(--default-color);
}

.channel-city-item-text .column-para {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.ch-partner-of-month {
    margin-bottom: 2rem;
}

.awards-banner-section {
    height: 35rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.awards-banner-section .section-heading {
    text-align: center;
    color: var(--default-color);
    font-size: 4.5rem;
    margin: 0;
}

.received-awards .section-heading {
    font-size: 1.6rem;
    line-height: 1.5;
    color: #817c7c;
}

.received-awards-item {
    background: var(--default-color);
    box-shadow: 0 0 9px #dddddd;
    border-radius: .8rem;
    text-align: center;
    width: 100%;
    height: 20rem;
    padding: 1rem;
}

.received-awards-item figure {
    width: 100%;
    height: 100%;
}

.received-awards-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.perfect-investment-banner .section-heading {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: var(--default-color);
}

.awards-banner .section-heading {
    font-size: 3rem;
    line-height: 1.3;
}

.column-box {
    text-align: center;
    box-shadow: 0 0 9px #ddd;
    padding: 10px;
    border-radius: 5px;
    height: 100%;
}

.column-box figure {
    width: 100%;
    height: 18rem;
}

.column-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-heading {
    font-size: 2rem;
    font-weight: 600;
    margin: 0.8rem 0 0.5rem;
}

.team-btn {
    font-size: 1.6rem;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    display: inline-flex;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.select-industry {
    margin-top: 2rem;
}

.select-industry .form-control {
    font-size: 1.8rem;
    border: 0;
    border-bottom: 1px solid var(--secondary-color);
    border-radius: 0;
    padding: 0.8rem;
    font-weight: 400;
}

.select-industry .form-control:focus,
.ready-to-talk-right .form-control:focus {
    box-shadow: 0 0 9px #ddd;
}

.ready-to-talk-right .form-control {
    font-size: 1.6rem;
    background: var(--default-color);
    border: 0;
    padding: 1rem;
    border-radius: 0;
    margin: 2rem 0;
}

.ready-to-talk-right .form-control:focus::placeholder{
    color: transparent;
}

/* channel Partners css starts here */

.top-recommend-partner-slider .owl-stage-outer .owl-stage,
.featured-projects-slider .owl-stage-outer .owl-stage{
    padding-left: 0rem !important;
}

.topReCh-partner-item {
    border-radius: 0.8rem;
    overflow: hidden;
    position: relative;
}

.topReCh-partner-item-img figure {
    width: 100%;
    height: 35rem;
}

.topReCh-partner-item-img figure img {
    width: 100%;
    height: 100%;
}

.topReCh-partner-item-content {
    background: #00000070;
    padding: 1rem 1.5rem;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.topReCh-partner-item-content .column-heading {
    margin-bottom: 0;
    color: var(--default-color);
    font-size: 2.5rem;
}

.topReCh-partner-item-content .column-heading a,
.topReCh-partner-item-content .published-name {
    color: var(--default-color);
}

.topReCh-partner-item-content .builders-amt {
    color: var(--default-color);
    margin-bottom: 0;
    margin-top: 0.8rem;
}

.topReCh-partner-item-content .custom-btn {
    padding: 0.3rem 2rem;
    max-width: 5rem;
    width: 5rem;
    min-width: 5rem;
    height: 5rem;
    border-radius: 50%;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-abt-image-1 {
    width: 65%;
    height: 40rem;
    box-shadow: 0 0 9px #ddd;
    border-radius: .8rem;
    overflow: hidden;
}

.home-abt-image-1 img,
.home-abt-image-2 img {
    width: 100%;
    height: 100%;
}

.home-abt-image-2 {
    position: absolute;
    right: 0;
    width: 50%;
    box-shadow: 0 0 9px #ddd;
    border-radius: .8rem;
    overflow: hidden;
    height: 30rem;
}

.home-about-right .projectABT-para {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    margin-bottom: 1.5rem;
}

.home-about-container .custom-btn {
    padding: 0;
    background: 0;
    border: 0;
    box-shadow: none;
    color: var(--secondary-color);
}

.home-about-container .custom-btn:hover {
    color: var(--primary-color);
}

.awards-and-accreditation {
    background: linear-gradient(0deg, #151d41 0%, #2e5d9b 100%);
}

.awards-and-accreditation-top {
    margin-bottom: 4rem;
}

.awards-and-accreditation-top .section-para {
    color: var(--default-color);
}

.awards-and-accreditation-tabs-content {
    background: linear-gradient(-90deg, #4572b7 0%, #ffffff 100%);
    padding: 4rem;
    height: 100%;
}

.awards-and-accreditation-tabs ul li {
    height: 30rem;
    width: 25%;
    background: linear-gradient(0deg, #4572b7 0%, #dadada 100%);
}

.awards-and-accreditation-tabs ul li:nth-child(2n) {
    background: linear-gradient(0deg, #dadada 0%, #4572b7 100%);
}

.awards-and-accreditation-tabs ul li button {
    width: 100%;
    color: var(--default-color);
    font-size: 2rem;
    padding: 2rem 1rem;
    height: 100%;
    writing-mode: sideways-lr;
    text-align: start;
    transition: all 0.3s;
}

.awards-and-accreditation-tabs ul li button:hover {
    color: var(--default-color);
}

.awards-and-accreditation-tabs ul li button.active,
.awards-and-accreditation-tabs ul li button:hover {
    background: 0 !important;
    height: 100%;
    border-radius: 0;
    box-shadow: 0 0 9px #000000;
}

.expert-advice .section-heading-one {
    color: var(--title-color);
}

.expert-advice-left .section-heading-two {
    color: var(--title-color);
    font-weight: 400;
}

.expert-advice-form .column-heading {
    color: #727272;
    font-size: 1.6rem;
    font-weight: 400;
}

.expert-advice-form .form-control {
    background: 0;
    border: 0;
    padding: 1rem 0;
    border-bottom: 1px solid #747474;
    border-radius: 0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.expert-advice-form .form-control:focus {
    padding: 1rem;
    box-shadow: 0 0 9px #ddd;
    border-color: #f6a91b;
}

.expert-advice .makeHappen-item {
    padding: 4rem 2rem;
}

.expert-advice .makeHappen-item figure {
    margin-bottom: 1rem;
}

.expert-advice .makeHappen-item .column-heading {
    margin-bottom: 0;
    font-size: 1.6rem;
}

.top-main-banner {
    height: 40rem;
    display: flex;
    align-items: center;
}

.top-main-banner p {
    color: var(--default-color);
}

.abt-profile-img figure img {
    width: 100%;
    max-height: 42rem;
}

.abt-profile-content {
    padding-left: 4rem;
}

.abt-profile-content .column-para {
    border-left: 4px solid #070b24;
    padding-left: 2rem;
    color: var(--text-color);
    font-size: 1.6rem;
}

.abt-profile-content .column-heading {
    font-size: 3rem;
    margin-bottom: 0;
    margin-top: 2rem;
}

.abt-our-team {
    height: 50rem;
    display: flex;
    align-items: flex-end;
}

.abt-our-team .section-heading {
    color: var(--default-color);
    margin-bottom: 1rem;
}

.abt-our-team .custom-btn {
    margin-top: 2rem;
}

.part-of-glory-left .section-heading {
    margin-bottom: 1.4rem;
}

.part-of-glory-left .custom-btn {
    margin-top: 1rem;
}

.part-of-glory-awards .item {
    padding: 1rem;
}

.part-of-glory-item {
    background: var(--default-color);
    padding: 1rem;
    box-shadow: 0 0 9px #a7a7a7;
    border-radius: 0.8rem;
}

.part-of-glory-right-img {
    border: 1px solid #ddd;
    display: block;
    border-radius: 0.8rem;
}

.part-of-glory-right-img img {
    width: 100%;
    height: 18rem;
    object-fit: contain;
}

.part-of-glory-item .column-para {
    color: var(--title-color);
    margin-top: 1rem;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.connect-in-touch-right {
    background: var(--dark-color);
    padding: 5rem;
    color: var(--default-color);
    /* text-align: center; */
    position: relative;
    top: -10rem;
}

.column-heading-one {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.column-heading-two {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-us-banner, .life-at-abc {
    height: 30rem;
    display: flex;
    align-items: center;
}

.connect-in-touch-right .column-para {
    font-size: 1.6rem;
}

.connect-in-touch-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.awards-history-top .column-para {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.awards-history-container {
    margin-bottom: 5rem;
}

.awards-history-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 4rem;
}

.awards-history-left figure {
    width: 20rem;
    height: 15.5rem;
}

.awards-history-left figure img {
    width: 100%;
    height: 100%;
}

.awards-history-year {
    position: absolute;
    font-size: 4rem;
    font-weight: 600;
    color: var(--dark-color);
}

.awards-history-right .column-para {
    font-size: 1.5rem;
    color: var(--text-color);
}

.awards-history-container:nth-child(2n) .awards-history-right .column-para {
    text-align: right;
}

.awards-history-container:nth-child(2n) .awards-history-left {
    margin-right: 0;
    margin-left: 4rem;
}

.page-some-content p {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.builders-category-btn .custom-btn {
    background: var(--secondary-color);
    color: var(--default-color);
    padding: 1rem 3rem;
    border: 1px solid var(--secondary-color);
    box-shadow: 5px 5px 2px 0px #ddd;
}

.builders-category-btn .custom-btn:hover {
    background: 0;
    color: var(--secondary-color);
    box-shadow: 5px 5px 2px 0px var(--secondary-color);
}

.alternet-repeat-category:nth-child(even) {
    background: var(--light-gray-color);
}

.single-platform .column-para {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.single-platform-item-container {
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.single-platform-item {
    width: 39%;
    box-shadow: 0 0 9px #1a2039a6;
    border-radius: 0.8rem;
    overflow: hidden;
}

.single-platform-item:nth-child(2n) {
    width: 19%;
}

.single-platform-item figure {
    width: 100%;
    height: 35rem;
}

.single-platform-item figure img {
    height: 100%;
    width: 100%;
    transition: all 0.5s;
}

.single-platform-item figure img:hover {
    transform: scale(1.1);
}

.all-projects-banner {
    height: 30rem;
    display: flex;
    align-items: center;
}

/* our team css starts here */

.our-team-details {
    padding: 6rem 0;
}

.our-team-gallery-item figure {
    width: 100%;
}

.our-team-gallery-item figure img {
    width: 100%;
    height: 40rem;
    object-fit: cover;
}

.winning-team-filter-row .form-control {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    border-radius: 6px;
}

.search-name-location {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.search-name-location i {
    position: absolute;
    left: 1.3rem;
    top: 1.2rem;
    font-size: 2rem;
    color: var(--secondary-color);
}

.search-name-location .form-control {
    padding: 1rem 2rem 1rem 4rem !important;
    border: 0;
}

.winning-team-filter-row .custom-btn {
    border-radius: 0.8rem;
    width: 100%;
}

.meet-team-member {
    border-radius: 0.8rem;
}

.meet-team-member-image {
    box-shadow: 0 0 9px #ddd;
    position: relative;
    overflow: hidden;
    border-radius: .8rem;
    display: block;
}

.meet-team-member figure {
    width: 100%;
    height: 28rem;
}

.meet-team-member figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meet-team-member-image i {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    background: var(--secondary-color);
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--default-color);
    transform: rotate(45deg);
    font-size: 1.6rem;
    transition: all 0.4s;
}

.meet-team-member-image:hover i {
    right: 40%;
    bottom: 40%;
}

.meet-team-member-details {
    padding: 1rem;
}

.team-profession {
    background: var(--secondary-color);
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    color: var(--default-color);
    margin-bottom: 1rem;
    box-shadow: 0 0 9px #bfbfbf;
}

.team-name {
    font-size: 1.8rem;
}

.team-pro-work {
    font-size: 1.5rem;
}

.meet-team-member-details .column-para {
    font-size: 1.5rem;
    color: var(--text-color);
    text-align: justify;
}

.career-opportunity-details .custom-btn {
    margin-top: 2rem;
}

.career-opportunity-img {
    position: relative;
    box-shadow: 0 0 9px #ddd;
    border-radius: 2rem 4rem 10rem 2rem;
    overflow: hidden;
}

.career-opportunity-img figure {
    width: 100%;
    height: 35rem;
}

.career-opportunity-img figure img {
    width: 100%;
    height: 100%;
}

.deliver-property-pic figure {
    width: 100%;
    height: 35rem;
}

.deliver-property-pic figure img {
    width: 100%;
    height: 100%;
}

.deliver-property-details .section-heading {
    text-decoration: none;
    line-height: 1.4;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.deliver-property-details a.section-heading:hover {
    color: var(--secondary-color);
}

.deliver-property-details a.section-heading i {
    transition: all 0.2s;
    margin-left: 1rem;
}

.deliver-property-details a.section-heading:hover i {
    transform: scale(1.1) translateX(15px);
}

.client-testimonials {
    background: var(--dark-color);
}

.testimonials-container {
    background: var(--default-color);
    padding: 4rem;
    border-radius: .8rem;
    min-height: 30rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials-pic {
    border: 1px solid var(--secondary-color);
    width: 6rem;
    min-width: 6rem;
    height: 6rem;
    padding: 1rem;
}

.testimonials-details {
    margin-left: 2rem;
}

.testimonials-details h2 {
    font-size: 2rem;
    margin-top: 1rem;
}

.testimonials-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 1rem;
}

.careers-box {
    padding: 5rem 2rem;
    border-radius: .8rem;
    height: 28rem;
    box-shadow: 0 0 9px #ddd;
}

.careers-box .column-heading {
    margin-bottom: 0.5rem;
    font-size: 2.8rem;
}

.careers-box p {
    max-width: 60%;
}

.careers-box .custom-btn {
    margin-top: 1rem;
}

/* our team css ends here */

.box-item {
    border: 1px solid #ddd;
    border-radius: .8rem;
    overflow: hidden;
}

.box-item figure {
    width: 100%;
    height: 28rem;
}

.box-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-details {
    padding: 1rem;
}

.box-details p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.box-details .custom-btn {
    margin-top: 0.5rem;
    border: 0;
    padding: 0;
    background: 0;
    box-shadow: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.box-details .custom-btn:hover {
    color: var(--title-color);
}

.dream-tab-property {
    margin-bottom: 3rem;
}

.dream-tab-property .nav {
    gap: 2rem;
    border: 0;
}

.dream-tab-property .nav button {
    color: #333333;
    border: 0;
    padding: 0;
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid transparent;
}

.dream-tab-property .nav button.active, 
.dream-tab-property .nav button:hover {
    border-bottom: 3px solid var(--secondary-color);
    color: var(--title-color);
}

.dream-property-items figure {
    width: 100% !important;
    height: 22rem;
    border-radius: 0.8rem;
}

.button-box {
    gap: 0.8rem;
    margin-top: 1rem;
}

.call-btn {
    width: 100%;
    background: #f5f5f5;
    padding: 0.8rem;
    text-align: center;
    text-decoration: none;
    color: var(--title-color);
    font-size: 1.5rem;
    transition: all 0.3s;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.call-btn:hover {
    box-shadow: 0 0 9px #ddd;
    background: 0;
}

.call-btn i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.awards-accred-item {
    text-decoration: none;
    box-shadow: 0 0 9px #ddd;
    display: block;
    border-radius: 0.8rem;
    overflow: hidden;
    background: var(--default-color);
}

.awards-accred-item figure {
    width: 100%;
    height: 20rem;
    border-bottom: 1px solid #ddd;
}

.awards-accred-item figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.awards-accred-item .box-heading {
    text-align: center;
    color: var(--title-color);
    margin: 0;
    padding: 1rem;
    font-size: 1.6rem;
}

.featured-projects-item figure {
    width: 32rem !important;
    height: 25rem;
}

.vision-box {
    box-shadow: 0 0 2.5px rgba(0,0,0,0.25);
    background: #fefefe;
    padding: 3rem 2rem;
    border-radius: 0.5rem;
}

.vision-box .box-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-box {
    border: 1px solid #ddd;
    border-radius: 0.8rem;
    overflow: hidden;
}

.service-box figure {
    width: 100%;
    height: 24rem;
    overflow: hidden;
}

.service-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
}

.service-box figure:hover img {
    transform: scale(1.1);
}

.service-box-details {
    padding: 0.5rem 1rem 1rem;
    text-align: center;
    background: var(--default-color);
}

.buying-property-box {
    background: var(--dark-color);
    padding: 6rem 1rem;
    border-radius: 0.8rem;
}

.buying-property-box .section-heading {
    margin: 0;
    color: var(--default-color);
    font-size: 2.8rem;
    text-align: center;
}

.buying-number {
    min-width: max-content;
}

.buying-call {
    display: block;
    text-decoration: none;
    color: var(--default-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.why-abc-realty .advs-include-item {
    box-shadow: 0 0 2.5px rgba(0, 0, 0, 0.25);
    background: #fefefe;
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    height: 100%;
}

.careers-banner {
    height: 35rem;
    display: flex;
    align-items: center;
}

.careers-banner span {
    display: block;
    color: var(--default-color);
    font-size: 3rem;
}

.vacancies-box {
    box-shadow: 0 0 9px #ddd;
    padding: 3rem;
}

.vacancies-details {
    padding-left: 2rem;
    margin: 1rem 0;
}

.vacancies-details li {
    list-style: inherit;
    font-size: 1.5rem;
    color: #747474;
    margin-bottom: 0.5rem;
}

.feel-video {
    height: 25rem;
    box-shadow: 0 0 9px #ddd;
    border-radius: 0.8rem;
    overflow: hidden;
}

.feel-video video {
    object-fit: cover;
    object-position: top;
}

.benefits-of-working-item {
    box-shadow: 0 0 9px #ddd;
    padding: 3rem 1rem;
    background: var(--default-color);
}

.benefits-of-working-item figure {
    width: 8rem;
    height: 8rem;
    min-width: 8rem;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.benefits-of-working-item figure img {
    width: 6rem;
    max-width: 6rem;
}

.benefits-of-working-details {
    margin-left: 1rem;
}

.get-in-touch-with {
    margin-top: 2rem;
}

.get-in-touch-with .column-heading {
    color: var(--default-color);
    font-size: 2.5rem;
}

.get-in-touch-with p {
    margin-top: 1rem;
}

.get-in-touch-with p i {
    color: var(--secondary-color);
    width: 2.5rem;
    font-size: 2rem;
}

.trip-insurance-purchase-item {
    box-shadow: 0 0 9px #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.trip-insurance-purchase-item figure {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
}

.trip-insurance-purchase-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.trip-insurance-purchase-content {
    padding: 10px;
}

.trip-insurance-collapse-text .collapse:not(.show) {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: max-height 0.5s linear;
}

.trip-insurance-collapse-text .custom-btn {
    margin-top: 0.3rem;
    background: 0;
    border: 0;
    box-shadow: none;
    color: var(--secondary-color);
    padding: 0;
    position: relative;
}

.trip-insurance-collapse-text a.collapsed:before {
    content: 'Read More';
}

.trip-insurance-collapse-text a:not(.collapsed):before {
    content: 'Read Less';
}

.trip-insurance-collapse-text a.collapsed::after {
    content: "\f078";
    font-family: 'Font Awesome 5 Free';
    margin-left: 0.5rem;
}

.trip-insurance-collapse-text a:not(.collapsed)::after {
    content: "\f077";
    font-family: 'Font Awesome 5 Free';
    margin-left: 0.5rem;
}

/* channel Partners css ends here */


















/* responsive css */

@media (max-width: 1399px) {
    #navbar-menu .navbar-nav>li>a,
    .sticky-header .user-login button {
        padding: 3.4rem 1rem !important;
    }
    .header-right .custom-btn,
    .sticky-header .header-right .custom-btn{
        margin: 0 1rem;
        padding: 1rem 1.5rem;
    }
    .top-projects-month-column figure {
        width: 155px;
        min-width: 155px;
    }
    .top-pro-month-column-text-top-left .column-heading{
        font-size: 1.7rem;
    }
    .published-name {
        font-size: 1.3rem;
    }
    .purcahse-dream-home-container .section-heading {
        font-size: 3.5rem;
    }
    .purcahse-dream-home-container .section-heading span {
        font-size: 4rem;
    }
    .builders-location .custom-btn {
        padding: 1rem;
        min-width: 14rem;
        text-align: center;
    }
}

@media (max-width: 1199px) {
    .user-login button {
        font-size: 1.3rem;
    }
    #navbar-menu .navbar-nav>li>a{
        font-size: 1.3rem;
        padding: 3.2rem 0.8rem !important;
    }
    .discover-dream-property-container .section-heading{
        font-size: 4rem;
    }
    .confused-selection-img figure {
        height: auto;
    }
    .purcahse-dream-home-container .section-heading{
        font-size: 3.8rem;
        line-height: 1.2;
    }
    .purcahse-dream-home-container .section-heading br {
        display: none;
    }
    .purcahse-dream-home-container .section-heading span {
        font-size: 4rem;
    }
    .project-highlight-img-1 figure {
        height: 32rem;
    }
    .project-highlight-img-2 figure {
        height: 16rem;
    }
    .project-highlight-img-3 figure {
        height: 19rem;
    }
    .filters-content-column-img figure {
        width: 15rem;
    }
    .city-new-properties-item figure img {
        width: 13rem;
        height: 13rem;
    }
    .newslatter-subscribe-box, .your-query-box {
        padding: 3rem 2rem;
    }
    .realty-expert-banner {
        padding: 6rem 0;
    }
    .realty-expert-banner {
        position: relative;
        z-index: 0;
    }
    .realty-expert-banner::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: var(--title-color);
        opacity: 0.2;
        z-index: -1;
    }
}

@media (max-width: 992px) {
    html{
        font-size: 9px;
    }
    #navbar-menu {
        position: absolute;
        top: 0;
        left: -100%;
        background: rgba(0,0,0,0.5);
        width: 100%;
        z-index: 9;
        height: 100vh;
        transition: all 0.3s;
    }
    #navbar-menu.collapse.show {
        left: 0;
    }
    header .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }
    #navbar-menu .navbar-nav {
        background: var(--primary-color);
        width: 80%;
        height: 100vh;
        padding-top: 5rem;
        /* display: flex;
        justify-content: center; */
    }
    header .navbar-toggler .closeNav {
        position: absolute;
        right: 10%;
        background: var(--default-color);
        z-index: 999;
        top: 2rem;
        color: var(--secondary-color);
        width: 4rem;
        height: 4rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        font-size: 2.5rem;
    }
    #navbar-menu .navbar-nav>li>a,
    .sticky-header #navbar-menu .navbar-nav>li>a {
        font-size: 1.4rem;
        padding: 1.2rem 1.8rem !important;
        color: var(--default-color);
    }
    #navbar-menu .navbar-nav>li,
    .sticky-header #navbar-menu .navbar-nav>li{
        border-top: 1px solid #ddd;
    }
    #navbar-menu .navbar-nav>li:first-child, 
    .sticky-header #navbar-menu .navbar-nav>li:first-child {
        border: 0;
    }
    #navbar-menu .navbar-nav>li>a:hover {
        color: var(--title-color);
    }
    #navbar-menu .navbar-nav>li:hover .dropdown-menu {
        transform: none;
    }
    .get-in-touch {
        padding-top: 4rem;
    }
    .buy-sell-property-container{
        background-position: left !important;
    }
    .buy-sell-property-text {
        margin-top: 3rem;
    }
    .buy-sell-property-text .section-heading,
    .buy-sell-property-text .column-para{
        color: var(--default-color);
    }
    .purcahse-dream-home-container{
        text-align: center;
        padding: 4rem 4rem 0;
    }
    .purcahse-dream-home-img {
        margin-top: 5rem;
    }
    .dream-property-column:nth-child(2n) {
        border-right: 0;
    }
    .top-builders-right-ads {
        height: auto;
        max-height: max-content;
    }
    .recent-projects-navTabs .nav-link {
        padding: 0.5rem 1rem;
    }
    .full-slider-text-row {
        padding: 6rem 1.5rem;
    }
    .prop-consIcon-row .real-estate-simpli-item {
        padding: 2rem 1rem;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .prop-consIcon-row .real-estate-simpli-item figure {
        margin-bottom: 1rem;
    }
    .prop-consIcon-row .real-estate-simpli-item figure img {
        width: 5rem;
    }
    .confused-selection-content .section-heading {
        font-size: 4.4rem;
    }
    .confused-selection-content .column-heading {
        font-size: 1.7rem;
    }
    .individual-prop-gallery-banner {
        padding: 4rem 0;
    }
    .builders-full-address {
        padding: 1rem;;
        flex-wrap: wrap;
    }
    .builders-full-address figure {
        width: 100%;
    }
    .builders-full-address-text {
        margin-left: 0;
        margin-top: 2rem;
    }
    .project-highlight {
        padding-bottom: 4rem;
    }
    .get-instant-deal-form {
        margin-top: 2rem;
        padding: 2rem;
    }
    .get-instant-deal-form .form-check {
        margin-top: 0rem;
    }
    .filters-projects .top-projects-month-column figure {
        height: 24rem;
    }
    .top-builders-row-left figure {
        width: 14rem;
        min-width: 12rem;
    }
    .filters-content-column-img figure {
        height: 14rem;
    }
    .city-new-properties-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    .discover-dream-property-container {
        padding: 3rem 3rem;
    }
    .discover-dream-property-img figure {
        max-width: 30rem;
    }
    .boostSellPropTextBtn .custom-btn {
        padding: 1rem 1.5rem;
    }
    .areUinterested-column {
        padding: 4rem 0;
    }
    .potential-buyers-section {
        height: auto;
        position: relative;
        z-index: 1;
    }
    .potential-buyers-section:before {
        position: absolute;
        content: "";
        background: var(--title-color);
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        opacity: 0.3;
        z-index: -1;
        border-radius: 0.8rem;
    }
    .potential-buyers-section .section-heading {
        font-size: 3rem;
        margin-bottom: 2rem;
        color: var(--default-color);
        text-align: center;
    }
    .potential-buyers-section .column-para {
        font-size: 1.6rem;
        color: var(--default-color);
        text-align: center;
    }
    .pg-slider-item {
        height: 30rem;
    }
    .home-loan-banner {
        height: auto;
        padding: 5rem 0;
        z-index: 1;
    }
    .home-loan-banner:before {
        position: absolute;
        content: "";
        background: #000;
        width: 100%;
        height: 100%;
        opacity: 0.2;
        z-index: -1;
    }
    .expert-advise-banner {
        background-position: 40% 60% !important;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 3rem;
    }
    .footer-column .column-para {
        padding-right: 0;
    }
    .our-clients-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .filter-category-table-row thead tr th:first-child {
        width: 30% !important;
    }
    .dream-tab-property {
    flex-wrap: wrap;
}
.dream-tab-property .nav {
    margin-top: 2rem;
}
.buying-property-box {
    flex-wrap: wrap;
}
.connect-in-touch-right {
    padding: 5rem 2rem 2rem;
}
}

@media (max-width: 767px){
    .happy-counter {
        padding: 1rem 0;
    }
    .happy-counter-box {
        flex-direction: column;
        text-align: center;
    }
    .happy-counter-box figure {
        min-width: 3rem;
        max-width: 3.9rem;
    }
    .happy-customer-text p {
        font-size: 1.3rem;
    }
    .top-builders-row{
        padding-right: 0;
    }
    .ind-top-banner-logo {
        padding-top: 2rem;
    }
    .ind-top-banner .section-heading {
        font-size: 4rem;
    }
    .ind-top-banner-project {
        font-size: 1.2rem;
    }
    .ind-top-banner-logo figure {
        padding: 3rem 2rem;
    }
    .ind-top-banner-logo figure img {
        max-width: 100%;
    }
    .ind-builder-about-left {
        padding: 3rem 0;
    }
    .findAproperty-content {
        left: 0;
        padding: 2rem 1rem;
    }
    .getHunting .findAproperty-content {
        right: 0 !important;
    }
    .findAproperty-content {
        left: 0;
        padding: 2rem 1.4rem;
    }
    .main-dashboard {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .city-new-properties .section-heading {
        font-size: 5rem;
    }
    .contact-happy-counter .happy-counter-box:nth-child(2) {
        border-right: 0;
    }
    .contact-happy-counter .happy-counter-box:last-child {
        flex-direction: row;
        margin-top: 2rem;
    }
    .contact-happy-counter .happy-counter-box:last-child p {
        text-align: left;
    }
    .full-slider-text-row .section-heading {
        font-size: 4rem;
    }
    .full-slider-text-row .section-heading br {
        display: none;
    }
    .boostSellProp-container {
        padding: 2rem;
    }
    .boostSellProp-container:before{
        width: 100%;
    }
    .boostSellPropText {
        padding-left: 0;
        text-align: center;
    }
    .boostSellPropTextBtn {
        justify-content: center;
    }
    .how-we-are-img-left {
        right: -1rem;
    }
    .how-we-are-img-right {
        position: relative;
        left: -1rem;
        z-index: -1;
    }
    .review-item-user-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .top-builders-row-right .custom-btn {
        padding: 0.5rem 1rem;
        font-size: 1.4rem;
    }
    .builders-location {
        margin-top: 1rem;
        align-items: end!important;
    }
    .expert-advise-banner {
        background-position: 26% 74% !important;
    }
    .project-dream-prop {
        margin-top: 0;
    }
    .projectDetailsModal .btn-close, .logInModal .btn-close{
        right: 0;
        top: 0;
    }
    .builders-full-address {
        margin-bottom: 0rem;
    }
    .bf-address-text-row {
        flex-wrap: wrap;
    }
    .builders-full-address-text .column-heading {
        font-size: 3rem;
        width: 100%;
        margin-bottom: 1rem;
        text-align: center;
    }
    .builders-full-address-text .column-buil-heading {
        font-size: 1.8rem;
        width: 100%;
    }
    .project-mob-btn {
        text-align: center;
        display: block;
        margin: 1.6rem 0 0.5rem;
        font-size: 1.8rem;
    }
    .enquireForm-container .custom-btn {
        width: 100%;
    }
    .recent-articals-container {
        margin-top: 2rem;
    }
    .filter-category-box {
        margin-top: 1rem;
    }
    .realty-expert-banner {
        padding: 4rem 0;
        text-align: center;
    }
    .realty-expert-banner::before {
        opacity: 0.4;
    }
    .expert-talk-img {
        order: -1;
    }
    .meet-industry-experts {
        padding-bottom: 2rem;
    }
    .testimonials-slider .owl-nav, .four-items-slider .owl-nav,
    .top-recommend-partner-slider .owl-nav, .featured-projects-slider .owl-nav,
    .part-of-glory-awards .owl-nav {
    text-align: center;
    margin-top: 2rem;
}
    .testimonials-slider .owl-nav button, .four-items-slider .owl-nav button,
    .top-recommend-partner-slider .owl-nav button, .featured-projects-slider .owl-nav button,
    .part-of-glory-awards .owl-nav button{
        position: relative;
        top: 0;
    }
    .four-items-slider .owl-nav button.disabled,
    .part-of-glory-awards .owl-nav button.disabled{
        display: initial;
        background: var(--light-gray-color) !important;
        opacity: 0.9;
        cursor: default;
    }
    .testimonials-slider .owl-nav button.owl-prev, .four-items-slider .owl-nav button.owl-prev,
    .top-recommend-partner-slider .owl-nav button.owl-prev, .featured-projects-slider .owl-nav button.owl-prev,
    .part-of-glory-awards .owl-nav button.owl-prev {
    left: -1rem;
}
.testimonials-slider .owl-nav button.owl-next, .four-items-slider .owl-nav button.owl-next,
.top-recommend-partner-slider .owl-nav button.owl-next, .featured-projects-slider .owl-nav button.owl-next,
.part-of-glory-awards .owl-nav button.owl-next {
    right: 0rem;
}
.top-recommend-partner-slider .owl-nav button.owl-prev{
    margin-right: 0;
}
.connect-in-touch-right {
    padding: 2rem 2rem 2rem;
}
.connect-in-touch-left {
    position: relative;
    top: -5rem;
}
}

@media (max-width: 576px) {
    html{
        font-size: 8px;
    }
    header .navbar {
        padding: 0.5rem 0;
    }
    .logo .navbar-brand, .sticky-header .logo .navbar-brand {
        min-width: 16rem;
        max-width: 16rem;
    }
    .enquireFormModal .btn-close {
        top: 0;
        right: 0;
    }
    #buySellPropTabContent .form-group {
        margin-bottom: 2rem;
    }
    .get-in-touch-left{
        flex-wrap: wrap;
    }
    .get-in-touch-left figure {
        width: 100%;
        text-align: center;
    }
    .get-in-touch .custom-btn {
        order: -1;
        margin: 4rem auto;
    }
    .builders-location{
        flex-wrap: wrap;
    }
    .top-builders-row-left figure {
        width: 18rem;
        min-width: 18rem;
    }
    .dream-property {
        padding: 0 1.5rem;
    }
    .dream-property-column {
        border: 0;
        box-shadow: 0 0 9px #ddd;
        border-radius: 0.8rem;
        padding: 3rem 1rem;
    }
    .full-slider-banner .item {
        height: 50rem;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .full-slider-text-row .section-heading {
        font-size: 4rem;
    }
    .top-builders-slider .owl-nav button, .our-clients-slider .owl-nav button, .floor-plans-slider .owl-nav button {
        width: 26px;
        height: 26px;
        top: -7rem;
    }
    .top-builders-slider .owl-nav button.owl-prev, .our-clients-slider .owl-nav button.owl-prev, .floor-plans-slider .owl-nav button.owl-prev {
        right: 3.5rem;
    }
    .recent-projects-slider .owl-nav button, .topBuildersTwoItem-slider .owl-nav button, .housing-locations-slider .owl-nav button, .project-gallery-slider .owl-nav button, .similarNews-slider .owl-nav button{
        width: 26px;
        height: 26px;
    }
    .get-started-propkonnect .section-heading {
        font-size: 4rem;
    }
    .get-started-propkonnect .section-heading span {
        font-size: 5rem;
    }
    .top-builders-right-ads-img {
        height: 10rem;
        margin-bottom: 1rem;
    }
    .section-heading{
        font-size: 3rem;
    }
    .section-subHeading{
        font-size: 2.2rem;
    }
    .section-padding {
        padding: 4rem 0;
    }
    .top-builders, .top-projectsBy-city {
        padding-bottom: 4rem;
    }
    .section-padding-top{
        padding-top: 4rem;
    }
    .builders-filter-section .section-heading {
        text-align: center;
    }
    .filters-projects .top-projects-month-column-text {
        padding: 1rem;
    }
    .filters-projects-btn {
        gap: 1rem;
        justify-content: start;
    }
    .filters-projects-btn .custom-btn:last-child {
        padding: 1rem;
    }
    .city-new-properties-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .discover-dream-property-container .section-heading {
        font-size: 3rem;
    }
    .discover-dream-property-img figure {
        max-width: 24rem;
    }
    .footer-menu .column-heading {
        margin-bottom: 1.5rem;
        margin-top: 2rem;
    }
    .real-partners-img{
        align-items: flex-end;
    }
    .indiPro-contactUs-container .start-journeyForm-container {
        padding: 5rem 2rem 3rem;
    }
    .blog-img-left figure {
        height: 25rem;
    }
    .blog-content {
        padding: 1rem 0rem;
    }
    .home-loan-banner .section-heading {
        font-size: 3.5rem;
    }
    .review-item-user-content {
        grid-template-columns: repeat(1, 1fr);
    }
    .logInForm-right {
        border-left: 0;
        border-top: 1px solid #ddd;
        padding-top: 4rem;
    }
    .logInForm-right:before {
        top: -11px;
        left: 0;
        right: 0;
        bottom: inherit;
    }
    .expert-advise-banner {
        background-position: 22% 70% !important;
        position: relative;
        min-height: 30rem;
    }
    .expert-advise-container {
        position: absolute;
        right: 0;
    }
    .accordion-item-top {
        padding: 1.6rem 1.5rem 1.5rem 3.5rem;
    }
    .footer-column {
        margin-bottom: 0;
    }
    .recent-projects-slider .owl-nav button.owl-prev, 
    .topBuildersTwoItem-slider .owl-nav button.owl-prev, 
    .housing-locations-slider .owl-nav button.owl-prev, 
    .similarNews-slider .owl-nav button.owl-prev {
        left: 0.5rem;
    }
    .recent-projects-slider .owl-nav button.owl-next, 
    .topBuildersTwoItem-slider .owl-nav button.owl-next, 
    .housing-locations-slider .owl-nav button.owl-next, 
    .project-gallery-slider .owl-nav button.owl-next, 
    .similarNews-slider .owl-nav button.owl-next {
        right: 0.5rem;
    }
    .our-clients-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-loan-form-container {
        padding: 3rem 1.5rem;
    }
    .area-pin-code figure {
        top: 1.8rem;
    }
    .pro-abt-pricing-item {
        padding: 3rem 1rem;
    }
    .project-price-row {
        flex-wrap: wrap;
        padding: 1rem;
    }
    .project-size, .project-price {
        padding-right: 1rem;
        width: 50%;
    }
    .pro-abt-pricing-item .custom-btn {
        width: 100%;
        text-align: center;
    }
    .likeToVisitPro-banner {
        background-position: top right !important;
        height: auto;
    }
    .likeToVisitProContainer {
        padding: 4rem 0 12rem;
    }
    .likeToVisitPro-banner .section-heading {
        margin-bottom: 1rem !important;
        font-size: 2rem !important;
    }
    .prDescription p {
        text-align: center;
    }
    .start-journeyForm-container .custom-btn {
        width: 100%;
    }
    .real-estate-events-banner {
        height: 25rem;
    }
    .real-estate-events-banner .section-heading {
        font-size: 4rem;
        text-align: center;
    }
    .realty-expert-banner .section-subHeading {
        margin-bottom: 1rem;
        display: block;
    }
    .meet-expert-left iframe {
        height: 100%;
    }
    .realty-ex-inner-banner {
        min-height: auto;
    }
    .full-slider-text-row .section-heading {
        font-size: 3rem;
    }
    .pro-abt-pricing-slider .owl-nav {
        bottom: 1.5rem;
    }
    .expert-advice .makeHappen-item {
    padding: 2rem 1rem;
}
.testimonials-container {
    padding: 2rem;
}
.purcahse-dream-home-container {
    padding: 3rem 1rem 0;
}
.purcahse-dream-home-container .section-heading {
    font-size: 2.8rem;
}
.purcahse-dream-home-container .section-heading span {
    font-size: 3rem;
}
}


@media(max-width: 425px){
    header .navbar-toggler{
        margin-left: 0.5rem;
        font-size: 2rem;
    }
    .header-right .custom-btn, 
    .sticky-header .header-right .custom-btn {
        padding: 1rem 1.5rem;
    }
    .builders-location-left {
        margin-bottom: 1rem;
    }
    .top-builders-reviews, .builders-location {
        margin-top: 0.5rem;
    }
    .builders-location-city .text-highlight {
        margin-right: 0;
        margin-bottom: 0.5rem;
        display: block;
    }
    .happy-counter-box figure {
        min-width: 3rem;
        max-width: 3.5rem;
        height: 3rem;
    }
    .prop-consIcon-row .real-estate-simpli-item {
        padding: 1rem;
    }
    .prop-consIcon-row .real-estate-simpli-item figure {
        margin-bottom: 0.8rem;
    }
    .prop-consIcon-row .column-heading {
        font-size: 2rem;
    }
    .prop-consIcon-row .column-para {
        font-size: 1.4rem;
    }
    .ind-top-banner .section-heading {
        font-size: 3.5rem;
    }
    .city-new-properties .section-heading {
        font-size: 3.5rem;
        color: var(--default-color);
    }
    .city-new-properties-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .discover-dream-property-container {
        padding: 2rem;
    }
    .discover-dream-property-container .section-heading {
        font-size: 2.3rem;
    }
    .discover-dream-property-img figure {
        max-width: 17rem;
    }
}