@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');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&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: #062e6b;*/
    --dark-color: #00a0e3;
    --light-color: #fafafa;
    --light-dot: #e7e7e7;
}

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

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

/* .section-anchor {
    display: block;
    height: 7rem; 
    margin-top: -10rem; 
    visibility: hidden;
} */

.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;
}

p {
    font-size: 1.6rem;
    color: var(--title-color);
}

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 {
    width: 20rem;
}

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

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

header .navbar {
    padding: 0;
/*    box-shadow: 0px 5px 9px #ebebeb;*/
    z-index: 9;
}

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

header .navbar-toggler {
    font-size: 4rem;
    color: var(--title-color);
    border: 0;
    padding: 0;
}

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

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

#navbar-menu .navbar-nav>li>a:hover {
    color: var(--text-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(--title-color);
    color: var(--default-color);
}

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

.custom-btn {
    display: inline-block;
    background: var(--title-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(--title-color);
    border-radius: 0.5rem;
}

.custom-btn:hover {
    background: var(--default-color);
    color: var(--title-color);
    border: 1px solid var(--title-color);
}

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

.header-right .custom-btn {
    margin-left: 2rem;
    margin-right: 0;
    font-size: 1.3rem;
}

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

.top-bar {
    background: #fafafa;
}

.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-login {
    margin-left: 2rem;
}

.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;
    gap: 0.6rem;
}

.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(--title-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(--title-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: 17rem;
    overflow: hidden;
    right: 0;
    left: -65px;
    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(--title-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(--title-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(--text-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: 45rem;
    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(--light-dot);
    border-radius: 50%;
    margin-right: 0.4rem;
}

.full-slider-banner button.owl-dot.active {
    width: 3rem;
    border-radius: 10px;
}

.full-slider-text-row {
    padding: 8rem 5rem;
}

.section-subHeading {
    color: var(--title-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: 4rem;
    color: var(--title-color);
    line-height: 1.18;
    font-weight: 300;
    margin-bottom: 3rem;
}

.section-heading span {
    font-weight: 600;
}

.section-heading-big {
    font-size: 6rem;
}

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

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

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

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

.happy-counter {
   /* background: #fafafa;
    padding: 2rem 0;*/
    background: rgb(0 0 0 / 60%);
    padding:15px 12px 15px 85px;
    width: 48%;
    border-radius: 0;
    bottom: 0;
    right:0;
/*    transform: translateX(-50%);*/
    position: absolute;
    z-index: 3;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}
.happy-counter .happy-customer-text p{
    font-size: 14px;
}
.box-layout figure{
    height: 458px;
}
.another-box{
    gap: 18px;
}
.another-box figure{
    height: 218px;
    border-radius: .8rem;
}
.another-box figure img{
 border-radius: .8rem;
}
.another-box figure img, .box-layout figure img{
    height: 100%;
}
.happy-counter-row {
    padding-bottom: 2rem;
}

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

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

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

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

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

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

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

/* slider banner css ends here */

/* new home starts here */

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

.full-top-banner p {
    min-height: 7rem;
}

.home-banner-image figure {
    width: 100%;
    height: 45rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.home-banner-image figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.three-stage-right-slider .owl-stage-outer .owl-stage {
    padding-left: 0rem !important;
}

/* new home ends here */

/*.section-padding {
    padding: 6rem 0;
}

.section-padding-top {
    padding-top: 6rem;
}
*/
.section-marginTop {
    margin-top: 6rem;
}

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

.column-para {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
}

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

.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.3rem;
    font-family: "Montserrat", sans-serif;
    letter-spacing: normal;
}

.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: #fafafa;
/*    padding-top: 2rem;*/
    overflow: hidden;
}

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

.get-in-touch .custom-btn {
    min-width: max-content;
}

.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: 24rem;
    min-width: 19rem;
    display: flex;
    align-items: center;
}

.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(--title-color);
    padding: 0;
    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;
    font-weight: 600;
    word-break: break-all;
}

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

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

.top-pro-month-column-text-top-right a {
    font-size: 1.8rem;
    color: var(--title-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(--title-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(--title-color);
    padding: 0;
    font-size: 1.4rem;
    border: 0;
    box-shadow: none;
}

.top-projects-month-column-text .custom-btn:hover {
    text-decoration: underline;
    color: var(--text-color) !important;
}

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

/* how we identify css starts here */

/*.custom-gray-bg {
    background: #fafafa;
}*/

.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: .5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.recent-projects-navTabs .nav-link {
    padding: 1rem 2rem;
    background: var(--light-dot);
    color: #000;
/*    box-shadow: 0px 6px 9px #a6a5a5;*/
}

/*.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 {
    position: absolute;
    width: 4rem;
    height: 4rem;
    background: var(--title-color) !important;
    border: 1px solid var(--title-color) !important;
    color: var(--default-color) !important;
    border-radius: 0.5rem;
    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 {
    left: -1.5rem;
    box-shadow: -3px 3px 9px #757575;
}

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

/* .featured-projects-slider .owl-nav button.owl-prev{
    left: -5rem;
}

.featured-projects-slider .owl-nav button.owl-next{
    right: -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: -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 {
    display: none;
}

.our-clients-slider .owl-nav button.disabled,
.floor-plans-slider .owl-nav button.disabled {
    background: #f3f3f3 !important;
    opacity: 0.9;
    cursor: default;
}

.top-builders-slider .owl-nav button,
.our-clients-slider .owl-nav button,
.floor-plans-slider .owl-nav button {
    position: absolute;
    width: 4rem;
    height: 4rem;
    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;
}

.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;
}

.browse-guide-slider .owl-nav button,
.three-stage-right-slider .owl-nav button,
.featured-projects-slider .owl-nav button,
.news-slider .owl-nav button {
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border: 0;
    color: var(--title-color) !important;
    border-radius: 0.5rem;
}

.full-banner .owl-nav button {
    position: relative;
    bottom: 7.2rem;
    left: 38rem;
    width: 4rem;
    border: 0;
    color: var(--title-color) !important;
    border-radius: 0.5rem;
}

.browse-guide-slider .owl-nav {
    position: relative;
    bottom: 8.3rem;
    left: -100%;
}

.featured-projects-slider .owl-nav {
    top: -7rem;
    position: relative;
    right: 0;
}

.news-slider .owl-nav button {
    top: -7rem;
}

.three-stage-right-slider .owl-nav {
    position: relative;
    top: -47rem;
    right: 0;
}

.btn-right .range-bar {
    width: 100%;
}

.browse-guide-slider .owl-nav button.owl-prev,
.three-stage-right-slider .owl-nav button.owl-prev,
.featured-projects-slider .owl-nav button.owl-prev,
.news-slider .owl-nav button.owl-prev {
    right: 6rem;
}

.browse-guide-slider .owl-nav button.owl-next,
.three-stage-right-slider .owl-nav button.owl-next,
.featured-projects-slider .owl-nav button.owl-next,
.news-slider .owl-nav button.owl-next {
    right: 1.5rem;
}

.full-banner .owl-nav button i,
.browse-guide-slider .owl-nav button i,
.three-stage-right-slider .owl-nav button i,
.featured-projects-slider .owl-nav button i,
.news-slider .owl-nav button i {
    font-size: 2.3rem;
}

.full-banner .owl-nav button.disabled,
.browse-guide-slider .owl-nav button.disabled {
    color: #ddd !important;
}

/* .three-stage-right-slider .owl-nav {
    top: -9rem;
    right: 0;
    position: absolute;
}

.three-stage-right-slider .owl-nav button {
    position: absolute;
    width: 4rem;
    height: 4rem;
    background: var(--title-color) !important;
    border: 1px solid var(--title-color) !important;
    color: var(--default-color) !important;
    border-radius: 0.5rem;
}
.three-stage-right-slider .owl-nav button.disabled{
    background: 0 !important;
    color: var(--title-color) !important;
}

.three-stage-right-slider .owl-nav button.owl-prev {
    right: 5rem;
}

.three-stage-right-slider .owl-nav button.owl-next {
    right: 0;
} */

/* buy sell property css starts here */

.buy-sell-property-container {
    background: url("/assets/frontend/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: 1.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: 18rem;
}

.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;
    width: 100%;
}

.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;
}

.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(--title-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;
    border: 1px solid #e1e1e1;
}

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

.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(--default-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 {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.builderOfMonthSocial {
    gap: 0.5rem;
}

.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);
    display: none;
}

.tabs-counter {
    position: absolute;
    top: 6rem;
    right: 0;
    width: 50%;
}

.news-slider .item {
    padding: 1rem;
}

.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;
    object-fit: cover;
}

.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: 2rem;
    border-radius: 0.8rem;
    margin-bottom: 2rem;
    border: 1px solid #e3e9ed;
}

.blog-news-right-items {
    display: flex;
    align-items: center;
    border: 1px solid #e3e9ed;
    margin-bottom: 2rem;
    /* border-radius: 0.8rem; */
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgb(94 94 94 / 15%);
}

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

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

.blog-news-right-items-text {
    padding-right: 0.6rem;
}

.blog-heading {
    font-size: 1.6rem;
    line-height: 1.4;
    text-decoration: none;
    color: var(--title-color);
    margin-bottom: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

.blog-heading:hover {
    text-decoration: underline;
}

.blog-price {
    font-size: 1.5rem;
    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(--title-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(--title-color);
    color: #fff;
}

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

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

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

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

.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: #f5f5f5;
    width: 100%;
    z-index: 2;
}

.discover-dream-property:before {
    position: absolute;
    content: "";
    background: var(--title-color);
    width: 100%;
    height: 50%;
    bottom: 0;
}

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

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

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

.discover-dream-property-container .section-heading span {
    text-shadow: 0 2px 4px #6e6e6e;
}

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

/* footer css starts here */

.footer-container {
    background: var(--title-color);
    padding: 6rem 0 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.footer-container::before {
    position: absolute;
    content: "";
    background: url('../../assets/images/footer-circle-img.png') no-repeat bottom / contain;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    z-index: -1;
}

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

.footer-column,
.footer-menu {
    border-right: 1px solid rgb(255 255 255 / 25%);
    padding-right: 2rem;
    padding-bottom: 2rem;
}

.footer-menu {
    padding-left: 4rem;
}

.footer-menu:last-child {
    border-right: 0;
}

.footer-column .column-para {
    color: var(--default-color);
    font-size: 1.4rem;
    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;
}

.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;
}

.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;
}

.footer-menu-list>li>a:hover {
    color: #fff;
    text-decoration: none;

}

.footer-menu p {
    color: var(--default-color);
    font-size: 1.3rem;
}

.footer-subscribe-box {
    margin-top: 2rem;
}

.footer-subscribe-box .form-control {
    font-size: 1.4rem;
    background: 0;
    color: var(--default-color);
    border: 0;
    border-bottom: 1px solid var(--default-color);
    border-radius: 0;
    margin-bottom: 2rem;
    padding: 1rem;
    transition: all 0.3s;
}

.footer-subscribe-box .form-control::placeholder {
    color: var(--default-color);
}

.footer-subscribe-box .form-control:focus {
    background: var(--default-color);
    color: var(--title-color);
}

.footer-subscribe-box .form-control:focus::placeholder {
    color: var(--title-color);
}

.footer-subscribe-box .custom-btn {
    background: var(--default-color);
    color: var(--title-color);
    border: 1px solid var(--default-color);
}

.footer-subscribe-box .custom-btn:hover {
    background: 0;
    color: var(--default-color);
}

.copyright-container {
    color: var(--default-color);
    border-top: 1px solid rgb(255 255 255 / 25%);
    padding: 2rem 1rem;
}

.copyright-container p {
    color: var(--default-color);
    font-size: 1.3rem;
}

.copyright-container .footer-menu-list {
    gap: 3rem;
}

.copyright-container .footer-menu-list li a {
    padding: 0;
}

/* 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.3rem;
    box-shadow: 0 0 9px #ddd;
    font-weight: 500;
}

.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(--title-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.enquireForm-container .form-check-label a:hover,
.indiPro-contactUs-container .form-check-label a:hover {
    text-decoration: underline;
    color: var(--text-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(--text-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(--title-color);
    transition: all 0.3s;
    font-weight: 600;
}

.projectDetails-container .form-check .form-check-label a:hover {
    text-decoration: underline;
    color: var(--text-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: 6rem 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: 3rem 2rem;
    border-radius: .8rem;
    box-shadow: 0 0 17.5px rgba(0, 0, 0, 0.23);
    ;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.makeHappen-item:hover {
    background: var(--title-color);
}

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

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

.makeHappen-item:hover .simplified-img-1 {
    display: none;
}

.makeHappen-item:hover .simplified-img-2 {
    display: block !important;
}

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

.makeHappen-item .column-para {
    font-size: 1.4rem;
}

.makeHappen-item:hover .column-heading,
.makeHappen-item:hover .column-para {
    color: var(--default-color);
}

.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-full-services [id] {
    scroll-margin-top: 100px;
}

.our-services-box-img {
    float: left;
    min-width: 50%;
    max-width: 50%;
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.our-services-box-img figure {
    width: 100%;
    height: 34rem;
}

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

/* .our-services-box {
    height: 100%;
}

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

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

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

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

/* 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(--title-color);
    padding: 0;
}

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

.services-all-content .collapse:not(.show) {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -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(--text-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;
}
.purcahse-dream-home-container .section-heading em{
    font-size: 4rem;
    font-weight: 300;
    font-style: normal;
    /* margin-bottom: 14px; */
    display: inline-block;
}
.purcahse-dream-home-container .section-heading strong{
    font-weight: 600;
    display: block;
    color: var(--secondary-color);
    font-size: 4rem;
}
.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 .column-heading {
    margin: 1.4rem 0;
}

.leads-gmp .column-para {
    font-size: 1.4rem;
}

.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(--title-color);
    padding: 2rem;
    border-radius: .8rem .8rem 0 0;
    position: relative;
    z-index: 1;
}

.start-journey-heading:before {
    position: absolute;
    content: "";
    background: var(--title-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);
    font-weight: 400;
}

.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: 500;
    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(--title-color);
    padding: 1rem;
    transition: all 0.3s;
    position: relative;
}

.top-builders-item: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::before {
    opacity: 0.9;
}

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

.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: 20rem;
    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 {
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: -100%;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
    left: 0;
}

.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(--default-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(--title-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(--default-color);
    font-weight: 500;
}

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

.indTop-projects .top-builders-row {
    border: 0;
    box-shadow: 0 0 9px #ababab;
    padding-right: 0;
}

.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(--text-color);
    padding: 0;
    margin-top: 1rem;
}

.indTop-projects .custom-btn:hover {
    color: var(--title-color);
}

.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: 28rem;
    width: 100%;
}

.filters-projects .top-pro-month-column-text-top {
    margin-bottom: 2rem;
}

.filters-projects .builders-location-city {
    margin-bottom: 1rem;
}

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

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

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

.filters-projects-btn .custom-btn:hover {
    color: var(--default-color);
}

/* .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: 0;
    border-radius: 0.5rem;
}

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

.get-instant-deal-form .custom-btn {
    width: 100%;
    height: 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;
}

.small-heading {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.newslatter-box .section-heading {
    margin-bottom: 2rem;
}

.newslatter-form .form-control {
    border: 0;
    box-shadow: 0 0 9px #ddd;
    font-size: 1.4rem;
    padding: 1rem 2rem;
}

.newslatter-form .custom-btn {
    min-width: max-content;
    padding: 1rem 2rem;
}

/* 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(--title-color);
    text-decoration: none;
    font-weight: 500;
}

.forPP-section a:hover {
    text-decoration: underline;
    color: var(--text-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(--title-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;
    font-weight: 500;
}

.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(--title-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.4rem;
    font-weight: 500;
    color: var(--title-color);
}

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

.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(--default-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(--text-color);
    left: -2.5rem;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
}

.accordion-item-top i {
    color: var(--text-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: #fafafa;
    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(--text-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(--text-color);
    cursor: pointer;
    box-shadow: 0 0 0px 10px var(--title-color);
    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(--text-color);
    cursor: pointer;
    box-shadow: 0 0 0px 10px var(--title-color);
    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: #fafafa;
} */

.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;
}

.city-new-properties-item .column-heading {
    margin-bottom: 0;
    margin-top: 1.5rem;
    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: #fafafa;
}

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

/* all projects page css ends here */

.top-projectsBy-city:nth-child(2n - 1),
.popular-project-by-city:nth-child(2n - 1) {
    background: #f3f3f3;
}

/* 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;
}

.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(--title-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.2rem;
    text-align: center;
    font-weight: 400;
    line-height: 1.3;
}

.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-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;
    color: var(--default-color);
}

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

.project-price {
    padding-left: 2rem;
    color: var(--default-color);
}

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

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

.project-size-price-box .builders-location i {
    font-size: 2rem;
    margin-right: 1rem;
    color: var(--default-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(--title-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;
}

.top-channel-partner .similarNews-slider .item {
    padding: 0.5rem;
}

/* .floor-plans {
    background: var(--light-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: var(--default-color);
    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;
}

.floor-vertical-banner figure {
    width: 100%;
    height: 15.25rem;
}

.floor-vertical-banner figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.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;
}

/* projects details page ends here */

/* blog page css starts here */

.blog-details-container .section-heading {
    font-weight: 500;
}

.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: 25rem;
}

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

.blog-content {
    padding: 1rem 1rem 1rem 0;
}

.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,
.blog-details-container div {
    font-size: 1.6rem !important;
    line-height: 1.5 !important;
    font-family: "Montserrat", sans-serif !important;
}

.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: #f3f3f3;
}

.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(--text-color);
    color: #fff !important;
    border: 1px solid var(--text-color);
}

.review-container .nav-tabs li a.active {
    background: var(--title-color);
    color: #fff !important;
    border: 1px solid var(--title-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(--title-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: var(--title-color);
    padding: 0.8rem 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(--text-color);
}

.pagination_row .paging tr td span.thispage {
    background: var(--text-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: #f3f3f3;
    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-left figure {
    height: 20rem;
    width: 25rem;
}

.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: 45%;
    height: 100%;
    max-height: 100%;
    margin-bottom: 0;
}

.top-projects-india .top-builders-right-ads-img figure {
    height: 36rem;
    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: 52%;
}

.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(--title-color);
    color: var(--default-color);
    display: inline-block;
    min-width: 100px;
    min-width: 120px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    border: 0;
    border-radius: 0.5rem;
}

.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: var(--default-color);
    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(--text-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: #f3f3f3;
    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%;
}

.latter-filter {
    margin-bottom: 2rem;
}

.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(--title-color);
    color: var(--default-color);
    border-radius: 4px;
    font-weight: 600;
}

.filter-category-box {
    margin-bottom: 1rem;
}

.filter-category-box-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--default-color);
    margin-bottom: 10px;
    background: var(--text-color);
    padding: 5px;
    width: 50px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 9px #959595;
    border-radius: 4px;
}

.filter-category-table-row table {
    width: 100% !important;
    border: 1px solid var(--title-color);
    margin: 0;
    text-align: center;
}

.filter-category-table-row table thead tr th {
    font-size: 18px !important;
    background: #e6bf25 !important;
    text-wrap-mode: wrap !important;
}

.filter-category-table-row tbody td {
    text-wrap-mode: wrap !important;
    width: 100% !important;
    padding: 5px !important;
    border: 1px solid var(--title-color);
    color: var(--title-color) !important;
}

.filter-category-table-row table thead tr th:first-child,
.filter-category-table-row tbody td:first-child {
    width: 270px !important;
    min-width: 270px !important;
    padding: 5px !important;
    vertical-align: baseline !important;
}

.filter-category-table-row table tbody tr td:last-child {
    text-align: left;
}

.filter-category-table-row table tbody tr td:first-child {
    text-align: center;
}

.table-top-heading {
    border: 1px solid var(--title-color);
    border-bottom: 0;
    background: var(--title-color);
}

.table-heading {
    color: var(--default-color);
    font-size: 18px;
    font-weight: 800;
    padding: 8px;
    text-align: center;
}

.table-heading:first-child {
    min-width: 27rem;
    width: 27rem;
    border-right: 1px solid var(--text-color);
}

.table-heading:last-child {
    width: calc(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;
} */

.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;
}

.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: 2.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.meet-expert-left {
    max-height: 33rem;
}

.meet-industry-experts {
    padding-bottom: 6rem;
}

.experts-filter-row .form-control {
    padding: 1.2rem 1.5rem;
    font-size: 1.5rem;
    border-radius: 6px;
}

.expert-image {
    float: left;
    max-width: 25%;
    margin-right: 2rem;
}

/* .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: 2rem;
}

.meet-ex-details-img {
    overflow: hidden;
    margin-right: 2rem;
    box-shadow: 2px 3px 9px #adadad;
    border-radius: 50%;
}

.meet-ex-details-img img {
    width: 13rem;
    height: 13rem;
    object-fit: contain;
}

.meet-ex-details-text h3 a {
    font-size: 2rem;
    text-decoration: none;
    color: var(--title-color);
    font-weight: 700;
    transition: all 0.3s;
}

.meet-ex-details-text h3 a:hover {
    color: var(--text-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(--title-color);
    transition: all 0.3s;
}

.expert-social-icon a:hover {
    color: var(--text-color);
}

.realty-ex-inner-banner {
    min-height: 40rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.realty-ex-details {
    padding-top: 6rem;
}

.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-experts-details-container {
    padding: 1rem;
}

.meet-industry-content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.meet-industry-content,
.meet-industry-content p,
.meet-industry-content p span,
.expert-details,
.expert-details p,
.expert-details p span {
    font-size: 1.6rem !important;
    line-height: 1.4 !important;
}

.expert-details ul {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.expert-details ul li {
    list-style: initial;
    font-size: 1.6rem !important;
    line-height: 1.7 !important;
}

.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: 1rem;
}

.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;
    height: 100%;
}

.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: 20rem;
    border-bottom: 1px solid var(--light-color);
}

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

.channel-city-item-text {
    padding: 1rem;
}

.ch-city-text {
    font-size: 1.6rem;
    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(--text-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: 2;
    -webkit-box-orient: vertical;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
}

.ch-partner-of-month {
    margin-bottom: 2rem;
}

.ch-partner-of-month h3 {
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.ch-partner-of-month figure {
    height: 18rem;
}

.location {
    min-width: max-content;
    margin-left: 0.6rem;
}

.category {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0.5rem 0 0.2rem;
}

.phone-email-box {
    padding: 0.5rem 0;
}

.phone-email-box button {
    border: 0;
    width: 50%;
    text-align: left;
    padding: 0.5rem 1rem;
    border-right: 1px solid #000;
}

.phone-email-box button:last-child {
    border-right: 0;
}

.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);
}

/* sign up page css starts here */

.top-main-banner {
    height: 40rem;
    display: flex;
    align-items: center;
}

.top-main-banner p {
    color: var(--default-color);
}

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

.sign-up-banner .custom-btn {
    margin-top: 3rem;
}

.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);
}

.broker-partner-content .section-heading {
    margin-bottom: 1.5rem;
}

.broker-partner-content .column-para {
    font-size: 1.6rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.broker-partner-box {
    background: var(--default-color);
    box-shadow: 0 0 11px rgba(0, 0, 0, 0.25);
    padding: 2rem 1.4rem;
    border-radius: 1rem;
    margin-top: 1.5rem;
    height: calc(100% - 1.5rem);
}

.broker-partner-box figure img {
    width: 5rem;
}

.broker-partner-box .column-heading {
    margin: 0.8rem 0;
    font-size: 1.6rem;
}

.broker-partner-box .column-para {
    font-size: 1.5rem;
    color: var(--text-color);
}

.broker-partner-btn .custom-btn {
    margin-top: 1.5rem;
    margin-right: 2rem;
    border: 1px solid var(--title-color);
    box-shadow: 5px 5px 2px 0px var(--text-color);
}

.broker-partner-btn .custom-btn:last-child {
    margin-right: 0;
    background: var(--default-color);
    color: var(--title-color);
    box-shadow: 5px 5px 2px 0px var(--text-color);
}

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

.broker-partner-btn .custom-btn:last-child:hover {
    background: var(--title-color);
    color: var(--default-color);
    box-shadow: 5px 5px 2px 0px var(--text-color);
}

.expand-your-business-right {
    padding-left: 5rem;
}

.our-pricing {
    overflow: hidden;
}

.pricing-box-column:first-child .pricing-box {
    margin-top: 10rem;
    height: calc(100% - 10rem);
}

.pricing-box-column:nth-child(2) .pricing-box {
    margin-top: 5rem;
    height: calc(100% - 5rem);
}

.pricing-box {
    background: var(--default-color);
    box-shadow: 0 0 17.5px rgba(0, 0, 0, 0.42);
    border-radius: 0.8rem;
    text-align: center;
    padding: 3rem 1.5rem;
    height: 100%;
}

.pricing-box .column-heading {
    font-size: 3.5rem;
}

.pricing-box .column-para {
    font-size: 1.5rem;
    color: var(--text-color);
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 2rem 0;
    color: var(--title-color);
}

.pricing-box .custom-btn {
    margin: 2rem 0;
}

.pricing-list {
    text-align: left;
}

.pricing-list li {
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.5rem;
    line-height: 2;
    color: var(--text-color);
}

.pricing-list li:before {
    position: absolute;
    content: "\f058";
    font-family: 'Font Awesome 5 Free';
    left: 0;
    color: var(--title-color);
    font-size: 1.5rem;
}

.our-pricing-top {
    padding-bottom: 4rem;
}

.our-pricing-top .section-heading {
    margin-bottom: 2rem;
}

.our-pricing-top .column-para {
    font-size: 1.6rem;
    color: var(--text-color);
}

.deciding-plan-banner .section-heading {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.deciding-plan-banner .section-para {
    font-size: 2.5rem;
    line-height: 1.5;
    font-weight: 400;
}

.deciding-plan-banner a {
    color: var(--title-color);
    text-decoration: none;
    font-size: 2.2rem;
    display: inline-block;
    padding-left: 0.5rem;
    font-weight: 500;
    transition: all 0.3s;
}

.deciding-plan-banner a:hover {
    text-decoration: underline;
    transform: translateX(6px);
}

/* sign up page css ends here */

.our-services {
    position: relative;
}

.our-services::before {
    position: absolute;
    content: "";
    background: #fafafa;
    width: 40%;
    height: 100%;
    z-index: -1;
    top: 0;
}

.btn-right {
    margin-left: 4rem;
    width: 100%;
    text-align: right;
}

.service-item {
    position: relative;
    overflow: hidden;
}

.service-heading {
    position: absolute;
    bottom: 0;
    color: var(--default-color);
    padding: 2rem;
    width: 100%;
    font-size: 1.8rem;
    background: rgba(0, 0, 0, 0.5);
}

.service-item figure {
    width: 100%;
    height: 40rem;
}

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

.service-item-details {
    position: absolute;
    top: -100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    bottom: 0;
    margin: auto;
    place-items: flex-start;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.service-item:hover .service-item-details {
    opacity: 1;
    visibility: visible;
    top: 0;
}

.service-item:hover .service-heading {
    opacity: 0;
    visibility: hidden;
}

.service-item .column-heading {
    margin-bottom: 0.5rem;
    color: var(--default-color);
}

.service-item-details p {
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--default-color);
    font-weight: 400;
}

.service-item-details .custom-btn {
    background: var(--default-color);
    color: var(--title-color);
    margin-top: 1rem;
}

.real-estate-simplified {
    position: relative;
}

.real-estate-simplified:before {
    position: absolute;
    content: "";
    background: url('../../assets/images/dotted-bg.webp') no-repeat bottom / contain;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: -1;
}

/* how it works section starts here */

.how-it-works {
    overflow: hidden;
}

.how-it-works-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

.how-it-works-item {
    width: 70%;
}

.how-it-works-item .column-heading {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.how-it-works-item p {
    font-size: 1.2rem;
    text-align: center;
    font-weight: 400;
    color: #333333;
}

.how-it-works-icon-container {
    display: flex;
    margin: 0rem 2rem;
    gap: 3rem;
    justify-content: flex-end;
}

.how-it-works-icon-box {
    width: 15rem;
    height: 15rem;
    background: #302e2d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
}

.how-it-works-icon-box::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 100%;
    height: 50%;
    z-index: -1;
    top: 0;
}

.how-it-works-icon-box:nth-child(2n)::before {
    bottom: 0 !important;
    top: inherit;
}

.how-it-works-icon-box::after {
    position: absolute;
    content: "\f061";
    font-family: 'FontAwesome';
    background: #302e2d;
    width: 3.4rem;
    height: 3.4rem;
    right: -3rem;
    border-radius: 50%;
    z-index: 6;
    color: var(--default-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}

.how-it-works-icon-box:last-child::after {
    display: none;
}

.how-it-works-icon-box figure {
    width: 12rem;
    height: 12rem;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.how-it-works-icon-box figure img {
    height: 7rem;
    width: 7rem;
    object-fit: contain;
}

.how-it-works-container-bottom {
    right: -6rem;
}

.how-it-works-container-bottom .how-it-works-item {
    margin-left: auto;
}

/* how it works section ends here */

.fetured-project-item {
    position: relative;
    height: 30rem;
}

.fetured-project-item-left {
    height: 61rem;
}

.fetured-project-item figure {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    overflow: hidden;
}

.fetured-project-item figure img {
    width: 100%;
    height: 100%;
}

.fetured-project-details {
    position: absolute;
    bottom: 0;
    color: var(--default-color);
    padding: 1rem 2rem;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.fetured-project-details .box-heading {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.fetured-project-details .box-heading a {
    color: var(--default-color);
    text-decoration: none;
}

.fetured-project-details .box-heading a:hover {
    text-decoration: underline;
}

.fetured-project-details p {
    color: var(--default-color);
    font-size: 1.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.fetured-project-details .tpmc-price {
    font-size: 2rem;
}

.button-box {
    gap: 1rem;
    margin-top: 1.5rem;
}

.call-btn {
    padding: 1rem 2rem;
    background: var(--title-color);
    color: var(--default-color);
    text-decoration: none;
    min-width: 14rem;
    text-align: center;
    border: 1px solid var(--title-color);
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 400;
    transition: all 0.3s;
}

.call-btn:hover {
    background: 0;
    color: var(--default-color);
    border-color: var(--default-color);
}

.call-btn i {
    margin-right: 0.6rem;
}

.home-about {
    background: var(--title-color);
}

.about-logo figure {
    max-width: 40rem;
    margin-bottom: 1rem;
}

.home-about-left .section-heading,
.home-about-left .column-heading,
.home-about-left p {
    color: var(--default-color);
}

.home-about-left .section-heading {
    margin-bottom: 2rem;
}

.home-about-left hr {
    color: var(--default-color);
    margin-bottom: 2rem;
}

.home-about-left .column-heading {
    font-weight: 500;
    margin-bottom: 1rem;
}

.home-about-left p {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-about-right figure {
    border-radius: 0.5rem;
    overflow: hidden;
}

.home-about-btn {
    gap: 1rem;
}

.home-about-btn span {
    color: var(--default-color);
    font-weight: 400;
    font-size: 1.8rem;
    margin-right: 2rem;
    display: inline-block;
}

.home-about-btn .custom-btn {
    border: 1px solid var(--default-color);
}

.browse-guide-top-text .carousel-counter {
    margin-top: 10rem;
    max-width: 100%;
    margin-right: 8rem;
}

.full-top-banner .carousel-counter {
    max-width: 100%;
    margin-right: 10rem;
}

.browse-guide-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.browse-guide-item:hover .service-item-details {
    opacity: 1;
    visibility: visible;
    top: 0;
}

.browse-guide-item .column-heading {
    color: var(--default-color);
}

.browse-guide-item figure {
    height: 40rem !important;
}

.browse-guide-item figure img {
    height: 100%;
    object-fit: cover;
}

.browse-guide-slider .owl-stage {
    display: flex;
    align-items: flex-end;
}

.browse-guide-slider .owl-item:nth-child(2n) {
    height: 45rem;
}

.browse-guide-slider .owl-item:nth-child(2n) .browse-guide-item figure {
    height: 45rem !important;
}

.news-tab .recent-projects-navTabs .nav-tabs {
    border: 0;
    gap: 1rem;
}

.news-tab .recent-projects-navTabs .nav-tabs .nav-link {
    background: var(--default-color);
    box-shadow: none;
    border: 1px solid var(--title-color);
    border-radius: 0.5rem;
    color: var(--title-color);
    font-weight: 500;
}

.news-tab .recent-projects-navTabs .nav-tabs .nav-link.active,
.news-tab .recent-projects-navTabs .nav-tabs .nav-link:hover {
    background: var(--title-color);
    color: var(--default-color);
}

.carousel-counter {
    margin-top: 4rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    max-width: 69%;
    margin-left: auto;
    margin-right: 9rem;
}

.carousel-counter span {
    min-width: 2rem;
}

.carousel-counter .current {
    margin-right: 8px;
}

.carousel-counter .total {
    margin-left: 8px;
}

.range-bar {
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    margin-left: 1.4rem;
    position: relative;
    border-radius: 2px;
}

.range-bar .progress {
    height: 100%;
    width: 0%;
    background-color: #000000;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.top-developers {
    overflow: hidden;
}

.developers-container {
    background: var(--default-color);
    padding: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow: 0 0 9px #ddd;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1rem;
    width: 80%;
    z-index: 2;
}

.developers-box {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s;
    border-radius: 0.5rem;
    width: 100%;
    box-shadow: 0 0 9px #ddd;
}

.developers-box:hover {
    box-shadow: 0 0 9px #000;
}

.developers-box figure {
    width: 13rem;
    height: 12rem;
    border-right: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.developers-details {
    padding: 0.5rem 1rem;
}

.developers-details .column-heading {
    margin-bottom: 0.6rem;
    font-size: 1.6rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.developers-details p {
    font-weight: 400;
    font-size: 1.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.developers-details .total-number {
    margin-top: 0.5rem;
    font-weight: 600;
}

/* .developers-logo-box {
    box-shadow: 0 0 27px rgba(0,0,0,0.2);
    background: var(--default-color);
    padding: 2rem;
    border-radius: 0.6rem;
    filter: blur(3px);
    z-index: 0;
    position: absolute;
    right: 0;
    top: -7rem;
    width: 30rem;
}

.developers-logo {
    width: 80%;
    margin: auto;
    margin-bottom: 0.5rem;
}

.developers-logo figure {
    width: 100%;
    height: 8rem;
} */

.developers-logo-box {
    box-shadow: 0 0 27px rgba(0, 0, 0, 0.2);
    background: var(--default-color);
    border-radius: 0.6rem;
    z-index: 0;
    position: absolute;
    right: 0;
    top: -7rem;
    width: 30rem;
}

.developers-logo figure {
    width: 100%;
    height: 45rem;
}

.developers-logo figure img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.developers-logo {
    position: relative;
}

.developers-logo .custom-btn {
    position: absolute;
    bottom: 2rem;
    margin: auto;
    left: 0;
    right: 0;
    max-width: max-content;
}

.work-together {
    position: relative;
}

.work-together:before {
    position: absolute;
    content: "";
    background: url('../../assets/images/work-circle-img.png') no-repeat bottom / contain;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: -1;
}

.work-together p {
    font-weight: 400;
    margin-top: 0.5rem;
    font-size: 1.5rem;
}

.work-together p a {
    text-decoration: none;
    color: var(--title-color);
}

.work-together p a:hover {
    text-decoration: underline;
    color: var(--text-color);
}

.work-together-form .form-select {
    font-weight: 500;
    font-size: 1.6rem;
    border: 1px solid #000;
    margin-bottom: 0.5rem;
    border-radius: 0;
    padding: 1rem 1.5rem;
    cursor: pointer;
}

.work-together-form .form-select:foucs {
    box-shadow: none;
}

.work-together-form .form-control {
    font-size: 1.5rem;
    padding: 1rem 1.6rem;
    border: 1px solid rgba(0, 0, 0, 0.76);
    box-shadow: 0 0 13.5px rgba(0, 0, 0, 0.15);
    border-radius: 0;
}

/* .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(--text-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;
}

/* realty podcast page css */

.meet-expert-row .meet-expert-left {
    height: 25rem;
}

.podcast-column .meet-experts-details-container {
    padding: 0.6rem 0;
}

.podcast-column .meet-experts-details {
    margin-bottom: 0.8rem;
}

.podcast-column .meet-industry-content {
    -webkit-line-clamp: 2;
}

/* book demo page css starts here */

.expand-your-business {
    padding: 1rem 0;
}

.book-demo-logo {
    margin-bottom: 4rem;
    max-width: 40rem;
}

.book-demo-heading {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--title-color);
    text-align: center;
}

.book-demo-heading span {
    position: relative;
    z-index: 1;
    color: var(--default-color);
    padding: 0rem 0.8rem;
}

.book-demo-heading span::before {
    position: absolute;
    content: "";
    background: #00befd;
    width: 100%;
    height: 100%;
    z-index: -2;
    display: inline-block;
    left: 0;
    clip-path: polygon(3% 0, 100% 0%, 97% 100%, 0% 100%);
}

.expand-your-business-left .section-heading {
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 3.1rem;
}

.joining-form {
    padding: 4rem 0;
}

.book-demo-header {
    padding-top: 1.5rem;
}

.book-demo-service-list .broker-partner-box {
    padding: 0;
    text-align: center;
    box-shadow: none;
    margin: 0;
    height: 100%;
}

.book-demo-service-list .broker-partner-box figure img {
    width: 3rem;
}

.book-demo-service-list .broker-partner-box .column-heading {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.joining-form-left .section-heading {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.3;
}

.joining-form-left h1.section-heading {
    margin-bottom: 3rem;
}

.joining-form-left .column-para {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.joining-form-img {
    margin-top: 3rem;
}

.joining-form-img figure {
    width: 100%;
}

.joining-form-img figure img {
    width: 100%;
}

.joining-form-right {
    background: #fafafa;
    padding: 1.5rem 2rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
    border-radius: 0.5rem;
}

.joining-form-right .section-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.joining-form-right .section-para {
    text-align: center;
    font-size: 1.8rem;
    color: var(--title-color);
}

.joining-form-container {
    padding: 0;
    margin-top: 1rem;
}

.joining-focus-areas label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1.5rem;
}

.joining-focus-areas .form-check {
    padding: 0;
}

.joining-focus-areas .form-check .checkbox-inline {
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 400;
    margin-bottom: 0;
}

.joining-focus-areas .form-check .checkbox-inline .filter-check {
    margin-right: 0.3rem;
    width: 1rem;
    height: 1rem;
}

.demo-pick-date {
    display: flex;
    align-items: center;
    box-shadow: 0 0 9px #ddd;
    background: var(--default-color);
    margin-bottom: 1rem;
    border-radius: 0.4rem;
    position: relative;
}

.demo-pick-date label {
    min-width: max-content;
    padding: 1rem 2rem;
    border-right: 1px solid #ddd;
    font-size: 1.4rem;
    color: var(--title-color);
}

.demo-pick-date .form-control {
    box-shadow: none;
    margin: 0;
}

.joining-form-container .custom-btn {
    margin: 1.5rem 0;
}

.joining-form-right-remember .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.4rem;
}

.joining-form-right-remember .form-check-label {
    font-size: 1.1rem;
    color: var(--title-color);
    font-weight: 500;
}

.joining-form-right-remember .form-check-label a,
.joining-form-right-remember .column-para a {
    color: var(--title-color);
    text-decoration: none;
    font-weight: 700;
}

.joining-form-right-remember .form-check-label a:hover,
.joining-form-right-remember .column-para a:hover {
    color: var(--title-color);
    text-decoration: underline;
}

.joining-form-right-remember .column-para {
    font-size: 1rem;
    color: var(--title-color);
}
.happy-counter-box figure
{
    height: 4rem;
}
.happy-counter
{
    width:40%;
    clip-path:polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
.globe-icon a {
    color: var(--text-color);
    text-decoration: none;
}

.globe-icon a i {
    color: var(--title-color);
    margin-right: 0.2rem;
}

.globe-icon a:hover span {
    color: var(--title-color);
    text-decoration: underline;
}

.joining-footer-container {
    padding: 0.5rem 0;
    border-top: 1px solid #ddd;
}

.joining-social-icons span {
    font-weight: 500;
    color: var(--title-color);
}

.joining-social-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.joining-social-icons .footer-social-icon {
    margin: 0;
}

.joining-social-icons .footer-social-icon a {
    box-shadow: 0 0 9px #ddd;
    width: 3rem;
    height: 3rem;
    font-size: 1.4rem;
}

/* book demo page css ends here */

.partner-form .joining-form-right {
    background: none;
    padding: 4rem 3rem;
}

/* login page css starts here */

.login-container {
    background: #f5f7f9;
    padding: 3rem 4rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 12.5px rgba(0, 0, 0, 0.15);
}

.login-container::before {
    position: absolute;
    content: "";
    background: #fff;
    width: 50%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    box-shadow: 7px 5px 17px rgba(0, 0, 0, 0.21);
}

.log-in-logo {
    display: block;
}

.log-in-logo figure {
    box-shadow: 0 0 12.5px rgba(0, 0, 0, 0.15);
    max-width: 21rem;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.login-container .section-heading {
    font-weight: 600;
    font-size: 2.6rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.fb-gmail-login-icon {
    gap: 1rem;
}

.log-in-or {
    border-top: 1px solid #c3c3c3;
    margin: 3rem 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.log-in-or span {
    position: absolute;
    top: -11px;
    background: #f5f7f9;
    padding: 0 0.5rem;
    font-weight: 600;
    font-size: 1.4rem;
}

.login-field-group {
    margin-bottom: 1.5rem;
}

.login-field-group label {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
    font-weight: 500;
}

.login-field {
    display: flex;
    border: 1px solid rgba(68, 68, 68, 0.6);
    align-items: center;
    border-radius: 0.5rem;
    height: 4rem;
    overflow: hidden;
}

.login-field i {
    font-size: 1.5rem;
    padding: 1rem;
    width: 3.8rem;
    height: 3.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid rgba(68, 68, 68, 0.6);
}

.login-field .form-control {
    border: 0;
    font-size: 1.5rem;
    border-radius: 0;
    padding: 0.8rem 1rem;
    height: 3.8rem;
    background: none;
}

.login-field .form-control:focus {
    box-shadow: none;
    background: #ebebeb;
}

.login-pass-field i {
    border-right: 0;
    border-left: 1px solid rgba(68, 68, 68, 0.6);
}

.forget-row {
    padding: 1.5rem 0;
    border-bottom: 1px solid #c3c3c3;
    margin-bottom: 1.5rem;
}

.forget-row a {
    color: var(--text-color);
    font-size: 1.5rem;
    text-decoration: none;
}

.forget-row a:hover {
    text-decoration: underline;
}

.forget-row a i {
    margin-right: 0.3rem;
}

.do-not-account a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.do-not-account a:hover {
    text-decoration: underline;
    color: var(--title-color);
}

.login-disclaimer p {
    font-size: 1.4rem;
    font-weight: 500;
}

/* login page css ends here */

/* responsive css */

@media (min-width: 1400px) {
    .how-it-works-icon-box {
        width: 16rem;
        min-width: 18rem;
        height: 18rem;
    }
    .how-it-works-icon-box figure {
        width: 14rem;
        height: 14rem;
    }
    .browse-guide-top-text .carousel-counter {
        margin-top: 12.5rem;
    }
    .three-stage-right-slider .owl-nav {
        top: -49rem;
    }
    .service-item figure {
        height: 42rem;
    }
    .carousel-counter {
        max-width: 65%;
    }
    .developers-container {
        width: 83%;
    }
    .full-banner .owl-nav button {
        left: 45rem;
    }
}

@media (max-width: 1399px) {
    /* #navbar-menu .navbar-nav>li>a,
    .sticky-header .user-login button {
        padding: 3.2rem 1rem !important;
    } */
    .header-right .custom-btn,
    .sticky-header .header-right .custom-btn {
        padding: 1rem 1.5rem;
    }
    .top-projects-month-column figure {
        width: 155px;
        min-width: 155px;
        display: flex;
    }
    .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;
    }
    .browse-guide-top-text .carousel-counter {
        margin-top: 5.3rem;
        max-width: 75%;
    }
    .developers-container {
        padding: 2rem;
    }
    .developers-box figure {
        width: 10rem;
        height: 9rem;
    }
    .developers-details {
        margin-left: 0.6rem;
    }
    .developers-details .column-heading {
        margin-bottom: 0.4rem;
        font-size: 1.4rem;
    }
    .developers-details p {
        font-size: 1.2rem;
    }
    .developers-details .total-number {
        margin-top: 0.2rem;
    }
    .developers-logo figure {
        height: 6rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: 9px;
    }
    header .navbar {
        padding: 0.5rem 0;
    }
    #navbar-menu {
        position: absolute;
        top: 77px;
        left: -100%;
        background: rgba(0, 0, 0, 1);
        width: 100%;
        z-index: 9;
        height: 100vh;
        transition: all 0.3s;
        overflow: auto;
    }
    .sticky-header #navbar-menu {
        top: 65px;
    }
    #navbar-menu.collapse.show {
        left: 0;
    }
    header .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }
    #navbar-menu .navbar-nav {
        width: 75%;
        padding-top: 2rem;
    }
    #navbar-menu .navbar-nav>li>a,
    .sticky-header #navbar-menu .navbar-nav>li>a {
        font-size: 1.4rem;
        padding: 1rem 1.8rem !important;
        color: var(--default-color);
    }
    #navbar-menu .navbar-nav .dropdown-menu {
        display: block;
        left: 0;
        transform: none;
        margin-left: 3rem;
        background: none;
        box-shadow: none;
    }
    #navbar-menu .navbar-nav>li.dropdown {
        margin-bottom: 2rem;
    }
    #navbar-menu .navbar-nav .dropdown-menu li a {
        color: var(--default-color);
        border-top: 0;
        border-bottom: 1px solid #ffffff54;
        padding: 1rem 1rem 1rem 0;
    }
    #navbar-menu .navbar-nav>li>a:hover {
        color: rgb(255 255 255 / 80%);
    }
    #navbar-menu .navbar-nav>li:hover .dropdown-menu {
        transform: none;
    }
    .country-list-site {
        width: 80%;
        padding: 0.5rem 2rem;
        gap: 0rem;
    }
    .user-login-list li {
        color: var(--default-color) !important;
        border-bottom: 0 !important;
        padding: 0.5rem !important;
    }
    /* .user-country-selecter, .user-login button,
    .user-login button .fa-circle-user {
        color: var(--default-color);
    } */
    .header-right .custom-btn {
        margin-left: 0;
    }
    .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: 0rem 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;
        width: 18rem;
    }
    .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 {
        border-bottom: 1px solid rgb(255 255 255 / 25%);
    }
    .footer-menu {
        border-bottom: 1px solid rgb(255 255 255 / 25%);
        padding-top: 2rem;
    }
    .copyright-container {
        border-top: 0;
    }
    .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;
    }
    .blog-news-smlImg figure {
        width: 16rem;
        height: 13rem;
    }
    .blog-heading {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    .blog-price {
        font-size: 1.8rem;
    }
    .home-banner-image {
        margin-bottom: 2rem;
    }
    .home-banner-image figure {
        height: 40rem;
    }
    .carousel-counter {
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    .full-banner .owl-nav {
        bottom: -1rem;
        right: 0;
        left: inherit;
    }
    .browse-guide-slider .owl-nav {
        bottom: -3rem;
        right: 0;
        left: inherit;
    }
    .browse-guide-top-text .carousel-counter {
        margin-top: 3rem;
        max-width: 85%;
    }
    .developers-logo-box {
        width: 27rem;
    }
    .pricing-box-column:first-child .pricing-box {
        margin-top: 0;
        height: auto;
    }
    .pricing-box-column:nth-child(2) .pricing-box {
        margin-top: 0;
        height: auto;
    }
}

@media (max-width: 767px) {
    .happy-counter {
       padding: 1.5rem 3rem;
       border-radius: 14px;
       width: 71%;
       bottom: -27px;
       left: 50%;
       transform: translateX(-50%);
       clip-path: border-box;
     }
    .happy-counter .container{
        padding: 0 !important;
    }
    .happy-counter-box {
        flex-direction: column;
        text-align: center;
        width: 31%;
    }
    .happy-counter .row {
        gap: 7px;
        flex-direction: row;
        justify-content: 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;
    }
    .developers-container {
        grid-template-columns: repeat(2, 1fr);
        width: 85%;
    }
    .developers-logo-box {
        width: 22rem;
        top: -1rem;
    }
    .featured-projects-slider .owl-nav button {
        margin: inherit;
        top: inherit;
        bottom: -5rem;
    }
    .featured-projects-slider .owl-nav button.owl-prev {
        right: 5rem !important;
        left: inherit;
    }
    .featured-projects-slider .owl-nav button.owl-next {
        right: 0;
    }
    .section-heading-big {
        font-size: 4.5rem;
    }
    .our-services-box-img figure {
        height: 25rem;
    }
    .services-all-content .collapse:not(.show) {
        -webkit-line-clamp: 4;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 8px;
    }
    header .navbar {
        padding: 0.8rem 0;
    }
    #navbar-menu {
        top: 61px;
    }
    .sticky-header #navbar-menu {
        top: 49px;
    }
    .logo .navbar-brand {
        max-width: 20rem;
    }
    .sticky-header .logo .navbar-brand {
        width: 8.5rem;
    }
    .user-login {
        margin-left: 1rem;
    }
    .header-right .custom-btn,
    .sticky-header .header-right .custom-btn {
        padding: 1rem 1rem;
    }
    .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: 10px auto 15px;
    }
    .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: 40rem;
        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: 3rem;
    }
    .get-started-propkonnect .section-heading span {
        font-size: 2.8rem;
    }
    .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: 1rem;
    }
    .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: 1.5rem;
    }
    .newslatter-right {
        padding-top: 2rem;
    }
    .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;
    }
    .service-item figure {
        width: 100%;
        height: 32rem;
    }
    .featured-projects {
        padding-bottom: 7rem;
    }
    .our-services::before {
        width: 50%;
    }
    .footer-container {
        padding: 3rem 0 0;
    }
    .footer-menu {
        padding: 1rem;
    }
    .footer-menu:last-child {
        padding-bottom: 2rem;
    }
    .copyright-container {
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 2rem;
    }
    .copyright-container .footer-menu-list {
        order: -1;
    }
    .browse-guide-slider .owl-item:nth-child(2n),
    .browse-guide-slider .owl-item:nth-child(2n) .browse-guide-item figure {
        height: auto;
    }
    .browse-guide-item figure {
        height: 40rem !important;
    }
    .browse-guide-top-text .carousel-counter {
        max-width: 80%;
    }
    .our-services-box-img {
        float: none;
        min-width: 100%;
        max-width: 100%;
        margin-right: 0;
    }
    .our-services-box-img figure {
        height: auto;
    }
    .our-services-box-item {
        text-align: center;
    }
}

@media(max-width: 425px) {
    header .navbar-toggler {
        font-size: 3rem;
        align-self: center;
    }
    .logo .navbar-brand {
        max-width: 16rem;
    }
    .header-right .custom-btn,
    .sticky-header .header-right .custom-btn {
        padding: 0.8rem 0.6rem;
    }
    #navbar-menu {
        top: 52px;
    }
    #navbar-menu::before,
    .country-list-site {
        width: 90%;
    }
    .country-list-site {
        padding: 0.5rem 1rem;
    }
    .country-list-site .fa-chevron-down {
        margin-left: 0;
    }
    #navbar-menu .navbar-nav {
        width: 85%;
    }
    .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: 23rem;
    }
}
#middle-header .navbar-brand img{
    filter: none;
}
#middle-header a.btn{
    border-radius: 0.5rem;
    height: auto;
     font-weight: 700;
    box-shadow: none;
    background: #000;
    font-family: inherit;
    line-height: normal;
    padding: 1rem 1.5rem;
    color: #fff !important;
}
#middle-header a.btn:hover{
    background: #fff;
    color: #000 !important;
}
#middle-header a.btn:hover i{
    color: #000 !important;
}
.contact-icon {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}
.happy-counter-box a{
    text-decoration: none;
}
.about-us-why .section-heading{
    letter-spacing: normal;
    font-family: "Montserrat", sans-serif;
}
#advt-slider{
    position: relative;
    
}
#advt-slider .custom-btn:hover,
.get-in-touch .custom-btn:hover, 
.projects-btn .custom-btn:hover, 
.buy-sell-property .custom-btn:hover,
.recent-projects-section .custom-btn:hover,
.builders-location .custom-btn:hover,
.top-builders .custom-btn:hover,
.builders-location .custom-btn:hover, 
.purcahse-dream-home .custom-btn:hover, 
.real-estate-news .custom-btn:hover
{
    color: #000 !important;
}
#main-page .section-heading{
    font-family: "Montserrat", sans-serif;
    letter-spacing: normal;
}
.section-heading, .column-heading, 
.top-projects-month-column-text .custom-btn, 
.tpmc-price{
    font-family: "Montserrat", sans-serif;
    letter-spacing: normal;
}

@media (max-width:767px){
    .discover-dream-property-img figure{
        bottom: -76px;
    }
}
.client-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.client-container .testimonial {
  position: relative;
/*  max-width: 80%;*/
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
  min-height: auto;
  background: none;
}
.client-container .testimonial .image {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
}
.client-container .testimonial .slide {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  row-gap: 30px;
  height: 100%;
  width: 100%;
}
.client-container .slide p {
  text-align: left;
  padding: 0 250px 0 0;
  font-size: 25px;
  font-weight: 400;
  color: #333;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
}
.client-container .slide .quote-icon {
  font-size: 189px;
/*    color: var(--dark-color);*/
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.5;
}
.client-container .slide .details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.client-container .details .name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  font-family: "Montserrat", sans-serif;
}
.client-container .details .job {
  font-size: 13px;
  font-weight: 400;
  color: #333;
  font-family: "Montserrat", sans-serif;
}
/* swiper button css */
.client-container .nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.client-container .nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.client-container .nav-btn::after,
.client-container .nav-btn::before {
  font-size: 20px;
  color: #fff;
}
/*.client-container .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);

}*/

.client-container .client-box {
    display: flex;
    gap: 15px;
    align-items: center;
}
.client-container .swiper-pagination{
  text-align: left;
/*  max-width: 80%;*/
  width: 100%;
  padding: 0;
/*  left: 135px;*/
  position: absolute;
}
.testimonial-section{
/*  background-color: #fafafa;*/
 
}

.top-bar {
    background: #000;
    color: #fff;
    padding: 8px 0;
}
.topbar-content{
  display: flex;
    justify-content: space-between;
}
.top-bar a{
  color: #fff;
  text-decoration: none;
}
.top-bar p{
    color: #fff;
    opacity: 0.9;
}
.header-contact .hotline{
  margin-right: 12px;
  font-size: 15px;
  transition: all 0.3s;
  opacity: 0.9;
}
.header-contact .hotline i{
    margin-right: 5px;
}
.connect-btn{
    display: block;
    width: 30%;
    margin: 20px auto;
}
.header-social-icon a{
    margin-left: 10px;
    font-size: 16px;
    opacity: 0.9;
    transition: all 0.3s;
}
.header-social-icon a:hover, 
.header-contact .hotline:hover{
    opacity: 1;
    color: #fff;
}
#middle-header .navbar-brand img{
    height: 100%;
    width: auto;
    max-height: 60px;
    max-width: 200px;
    object-fit: contain;
}
#middle-header.sticky-header .navbar-brand img{
     max-height: 50px;
}
#middle-header .navbar-brand figure{
        display: flex;
    align-items: center;
/*    max-height: 100px;*/
    overflow: hidden;
}
.footer-container .logo-generate{
    text-align: left;
}
.footer-container .logo-generate img{
    max-width: 60%;
}
.footer-logo figure{
    display: flex;
    align-items: center;
    overflow: hidden;
}
.footer-logo figure img{
    height: 100%;
    width: auto;
    max-height: 85px;
    max-width: 200px;
    object-fit: contain;
/*    filter: brightness(0) invert(1);*/

}
.happy-customer-text p
{
    font-size: 2.4rem;
    text-transform: uppercase;
}
.contact-icon
{
    flex-direction:column;
    gap:15;
}
 
/*.happy-counter
{
    padding: 5rem 0;
}*/
.client-container .slide p
{
    font-size: 4rem;
    font-weight: 500;
    padding:0 275px 0 0
}
 
.client-container .slide .quote-icon
{
    font-size: 23rem;
}
.call-action-one .call-action-content .call-action-btn .primary-btn:hover{
    background: #000 !important;
    border-color: #000;
}

@media (max-width:767px){
    .client-container .slide p {
        padding: 0 20px;
      }
    .client-container .nav-btn, .client-container .swiper-pagination, 
    .client-container .testimonial:after {
        display: none;
      }
    .happy-counter-box{
        flex: 0 0 auto;
        width: 31%;
        align-items: flex-start;
        gap: none; 
        border-right: none;
        justify-content: space-between;
    }
    .happy-customer-text p{
        font-size: 11px !important;
    }
    .happy-counter .row{
        gap: 7px;
    }
    #middle-header a.btn{
        padding: 0.7rem;
    }
    .client-container .testimonial{
        padding: 0;
    }
    .client-container .slide .quote-icon{
        font-size: 90px;
    }
    .purcahse-dream-home-container .section-heading, 
    .purcahse-dream-home-container .section-heading span{
        font-size: 2.8rem;
    }
    .client-container .details .name{
        font-size: 14px;
    }
    .prop-multiProjectItem figure{
        height: 20rem;
    }
    .call-action-content{
        padding: 20px;
    }
    .how-we-are .about-list li{
        font-size: 12px;
    }
    .call-action-one .call-action-content .call-action-text{
        margin: 20px 0;
    }
    .call-action-one .call-action-content .call-action-text .action-title{
        font-size: 1.7em;
    }

}
@media (min-width:768px) and (max-width:1180px){
    .navbar-expand-lg>.container, .navbar-expand-lg>.container-fluid, .navbar-expand-lg>.container-lg, .navbar-expand-lg>.container-md, .navbar-expand-lg>.container-sm, .navbar-expand-lg>.container-xl{
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
    .prop-multiProjectItem figure{
        height: 20rem;
    }
    header .navbar .logo{
        margin-right: auto;
        margin-left: 15px;
    }
    .logo .navbar-brand{
        max-width: 20rem;
    }
    .client-container .slide p{
        padding: 0 0px;
        font-size: 20px !important;
    }
    .client-container .testimonial{
        padding: 10px 0;
        width: 89%;
    }
    .get-started-propkonnect .section-heading{
        font-size: 4rem;
    }
    .get-started-propkonnect .section-heading span{
        font-size: 5rem;
    }
    .purcahse-dream-home-container .section-heading, 
    .purcahse-dream-home-container .section-heading span{
        font-size: 2.8rem;
    }
    .section-heading{
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    .section-subHeading{
        font-size: 2rem;
    }
    .logo-generate{
        text-align: left;
    }
    .logo-generate img{
        max-width: 50%;
    }
}

@media (min-width:1600px){
    .full-slider-banner .item{
        height: 60rem;
    }
    .full-slider-text-row{
        padding: 16rem 0;
    }
    .full-slider-banner .item{
        font-size: 2.4rem;
    }
    .full-slider-text-row .section-heading{
        font-size: 6rem;
    }
    .discover-dream-property-img figure {
        bottom: -146px;
        max-width: 21rem;
    }
}
#main-page section:nth-child(odd) {
  background-color: #f5f5f5; /* Replace with your desired background */
}
/* ===== Buttons Css ===== */
.call-action-one .call-action-content .call-action-btn .primary-btn {
/*  background: #000;*/
  color: #fff;
  box-shadow: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);
    font-weight: bold;
    font-size: 18px;
    line-height: 3px;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 24px 32px;
    border-radius: 0.5rem;
    border: 2px solid #fff;
    z-index: 2;
    position: relative;
}
.call-action-one .call-action-content .call-action-btn .active.primary-btn, .call-action-one .call-action-content .call-action-btn .primary-btn:hover, .call-action-one .call-action-content .call-action-btn .primary-btn:focus {
  background: transparent;
  color: #fff;
  box-shadow: 0px 0px 1px rgba(40, 41, 61, 0.04),
    0px 2px 4px rgba(96, 97, 112, 0.16);

}
.call-action-one .call-action-content .call-action-btn .deactive.primary-btn {
  background: #eee;
  color: #6d6d6d;
  pointer-events: none;
}

/*===== call action one =====*/
.call-action-one {
  /*background-color: #f5f5f5;
  padding-top: 50px;
  padding-bottom: 100px;*/
  padding: 6rem 0;
}
.call-action-one .call-action-content .call-action-text {
  margin: 50px 0;
}
.call-action-one .call-action-content .call-action-text .action-title {
  font-weight: 600;
  color: #fff;
  font-size: 2.25em;
    line-height: 1.25;
}
.call-action-one .call-action-content .call-action-text .text-lg {
  color: #fff;
  margin-top: 16px;
  font-size: 1.15em;
    line-height: 1.5;
}
.call-action-one .call-action-content .call-action-btn {
/*  margin-top: 50px;*/
}
.how-we-are{
    padding: 6rem 0;
}
.how-we-are p{
    padding-right: 20px;
    margin-bottom: 8px;
    display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.dream-property, .our-clients, .top-projects-month, .recent-projects-section, .testimonial-section, 
.real-estate-news, .get-started-propkonnect, .prop-multiProjects {
    padding: 6rem 0;
}
.call-action-content{
    position: relative;
    background: var(--dark-color);
  color: #333;
  padding: 40px 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.call-action-content::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  background: rgba(255, 255, 255, 0.1); /* subtle angled shape */
  transform: skewX(-30deg);
  transform-origin: right;
  z-index: 1;
}
 .prop-multiProjects.section-padding-top, .buy-sell-property, .property-location-banner{
    padding: 6rem 0;
 }
 .discover-dream-property .custom-btn{
    margin-top: 20px;
 }


/*for gallery as style2 not working*/
 .mbr-gallery-item{
    display: inline-block !important;
    width: 24% !important;
    cursor: pointer;
    position: relative;
 }
.mbr-gallery .icon-focus, .mbr-gallery .icon-video{
    top: calc(50% - 10px);
    left: calc(50% - 15px);
}
.social-group {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 12px;
    bottom: 25px;
    z-index: 3;
    color: #fff;
    left: 5px;
}
.social-group a{
    color: #fff;
    opacity: 0.9;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    text-align: center;

}
.social-group a:hover{
    color: #fff;
    opacity: 1;
}
.how-we-are .section-heading, 
.top-projects-month-column-text .column-para {
    display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.how-we-are .section-heading{
    margin: 1rem 0;
}
.how-we-are .section-subHeading{
    margin-bottom: 0px;
}
.how-we-are .about-list li{
    color: #000;
}
.how-we-are .about-list li i{
    color: var(--dark-color);
}
.real-estate-simpli-item.active figure img{
    filter: brightness(0) invert(1);
}
.happy-counter
{
    background:#000;
}
.discover-dream-property .custom-btn:hover{
    color: #000 !important;
}
@media (min-width:1181px) and (max-width:1399px){
    .full-slider-banner .item{
        height: 45rem;
    }
}
.carousel-inner {
    max-width: 80%;
    margin: auto;
}
@media (max-width: 767px){
    .header-right{
        margin-left: auto;
    }
    .navbar>.container{
        justify-content: start;
    }
    .logo .navbar-brand{
        margin-left: 10px;
    }
    #middle-header .navbar-brand img{
        width: auto;
        height: auto;
        max-width: 100%;
    }
    #middle-header a.btn span{
        font-size: 10px;
    }
    .call-action-one .call-action-content .call-action-btn .primary-btn{
        font-size: 12px !important;
        margin-bottom: 17px;
        padding: 15px 20px;
    }
    .box-layout .box-1, .box-layout .box-2{
        height: 140px;
    }
    .box-layout figure{
        height: 300px;
    }
    .box-layout{
        margin-top: 15px;
    }
    .client-container .slide .quote-icon{
        top: inherit;
    }
    .discover-dream-property .custom-btn{
        padding: 6px 18px;
    }
    .call-action-content{
        padding: 20px;
    }
    .call-action-one .call-action-content .call-action-text{
        margin: 20px 0;
    }
    .call-action-one .call-action-content .call-action-text .action-title{
        font-size: 1.7em;
    }
    .prop-multiProjects.mbr-gallery .mbr-gallery-item--p2,
    .prop-multiProjects.mbr-gallery .mbr-gallery-item--p3 {
        width: 49% !important;
        position: static !important;
    }
    .prop-multiProjects.mbr-gallery.cid-qBK2ZYNhQk {
        min-height: auto;
    }
    .prop-multiProjects.mbr-gallery .mbr-gallery-row{
        position: static !important;
        height: auto !important;
    }


}
.footer-menu-list li i{
    margin-right: 6px;
}
button.wh-ap-btn {
    outline: none;
    width: 50px;
    height: 50px;
    border: 0;
    background-color: #2ecc71;
    padding: 0;
    border-radius: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    transition: opacity 0.3s, background 0.3s, box-shadow 0.3s;
}

button.wh-ap-btn::after {
    content: "";
    background-image: url("//i.imgur.com/cAS6qqn.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 60%;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 1;
}

button.wh-ap-btn:hover {
    opacity: 1;
    background-color: #20bf6b;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.wh-api {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 5;
}

.wh-fixed {
    margin-right: 15px;
    margin-bottom: 15px;
}

.wh-fixed > a {
    display: block;
    text-decoration: none;
}



/* animacion pulse */

.whatsapp-pulse {
    width: 50px;
    height: 50px;
    right: 10px;
    bottom: 10px;
    background: #10b418;
    position: fixed;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    z-index: 99;
    display: inline-block;
    line-height: 65px;
}

.whatsapp-pulse:before {
    position: absolute;
    content: " ";
    z-index: -1;
    bottom: -20px;
    right: -20px;
    background-color: #10b418;
    width: 90px;
    height: 90px;
    border-radius: 100%;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
    opacity: 0.6;
    -webkit-animation: pulse 1s ease-out;
    animation: pulse 1.8s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0);
        opacity: 0;
    }
    25% {
        -webkit-transform: scale(0.3);
        opacity: 1;
    }
    50% {
        -webkit-transform: scale(0.6);
        opacity: 0.6;
    }
    75% {
        -webkit-transform: scale(0.9);
        opacity: 0.3;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    25% {
        transform: scale(0.3);
        opacity: 1;
    }
    50% {
        transform: scale(0.6);
        opacity: 0.6;
    }
    75% {
        transform: scale(0.9);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
