:root {
     --colorPrimary:#2e73ce;
    --colorSecondary: #1626c7;
    --colorBtn: #000000;
     --colordark: #262626;
 }
 
 body {
     font-size: 14px;
     color: #070707;      
     font-family: "Inter", sans-serif;
 }
 a{
     color:var(--colordark);
     font-weight: 600;
     text-decoration:none;
 }           
 a:hover {
     color: var(--colordark);
     text-decoration: none;
 }
         
 header{
     position:
     fixed;
     width:100%;
     top:0;
     left:0;
     z-index: 999;
     transition:
     all .5s;
     padding: 0px 0;
     background: #fff;
     box-shadow: 0px 2px 15px #00000017;
 }
 .darkHeader {
     background-color: #fff;
     box-shadow: 0px 5px 7px rgb(0 0 0 / 15%);
 }
 .header-inner{
     display:flex;
     align-items:center;
     justify-content:space-between;
     position:relative;
 }
 
 .project-logo {
   display: flex;
   align-items: center;
   padding: 0 5px;
 }
 
 .project-logo img {
   max-height: 80px;    /* Keeps it from getting too tall */
   max-width: 250px;    /* Optional: prevent it from getting too wide */
   height: auto;        /* Maintain aspect ratio */
   width: auto;
   display: block;
 }
 
 
 .menu ul{
     margin:0;
     padding:0;
     list-style:none;
     display:flex;
     align-items:center;
     justify-content:space-between
 }
 .menu ul li a{
     color: var(--colordark);
     font-size: 17px;
     text-decoration: none;
     padding: 25px 18px 32px;
     width: auto;
     display: inline-block;
     font-weight: 600;
     border-top: 4px solid #fff;
 }
 
 .menu ul li a:hover{
     border-top-color: var(--colorPrimary);
     color: var(--colorPrimary);
 }
 .menu ul li a i.fa-phone {
     color: #001d3d;
     font-size: 20px;
     margin-right: 2px;
     position: relative;
     top: 3px;
 }
 .menu li.dropdown ul.dropdown-menu {
    display: block;
    /* display: none; */
}
.menu li.dropdown ul.dropdown-menu li:last-child a{border: none;}
.menu li.dropdown ul.dropdown-menu a {
    display: none;
    width: 100%;
    padding: 6px 13px;
    font-size: 15px;
    font-weight: 400;
    border-bottom: 1px solid #c1c1c1;
    border-top: none;
}

.menu li.dropdown:hover ul.dropdown-menu a {
    display: block;
    margin-top: 0px;
}
 /*--- Grid Projects ---*/
 .ptb-80 {
     padding-top: 60px;
     padding-bottom: 60px;
 }
 .bg-cyan{
    background: #EDF8FF;
 }
 .bg-grey {
     background: #F6F6F6;
 }
 
 h2 {
     font-weight: 700;
     font-size: 36px;
     line-height: 50px;
     color: rgba(0, 0, 0, 0.94);
     margin-bottom: 25px;
 }
 
 p,ul li {
     font-weight: 500;
     font-size: 16px;
     line-height: 27px;
     color: #000000;
 }
 
 p.max_para {
     max-width: 900px;
     margin: 0 auto 30px;
 }
 .developer_tex p,p.max_para {
     font-size: 18px;
 }
 .product_image {
     position: relative;
     margin-bottom: 10px;
 }
 
 .product_image img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     border-radius: 7px;
 }
 
 .property_grid {
     background: #f4f8ff;
     border-radius: 6px;
     height: 100%;
     padding: 15px 0;
     transition: all 0.5s ease;
     border: 1px solid #c9c9c9;
 }
 
 .property_grid > div {
     padding: 0 15px;
 }
 
 .property_grid:hover {
     box-shadow: 0px 5px 25px rgb(0 0 0 / 14%);
 }
 
 .Trending_project  .col-md-4 {
     margin-bottom: 30px;
 }
 
 .product_image span {
     background: var(--colorPrimary);
     color: #fff;
     padding: 4px 11px 6px;
     position: absolute;
     right: 20px;
     top: 7px;
     border-radius: 5px;
 }
 
 .product_image  span.New_Launch {
     background: #026bbe;
 }
 .img_side::after {
     content: "";
     border: 10px solid rgba(0,0,0,.05);
     transition: all .3s linear 0s;
     position: absolute;
     width: 100%;
     height: 100%;
     left: -25px;
     bottom: -25px;
     z-index: 1;
 }
 
 .img_side {
     position: relative;
 }
 .product_description .pro_head {
     font-weight: 700;
     font-size: 22px;
     line-height: 27px;
     color: #1F1F1F;
     display: -webkit-inline-box;
     -webkit-line-clamp: 1;
     overflow: hidden;
     -webkit-box-orient: vertical;
     margin-bottom: 2px;
 }
 
 .product_description ul {
     padding: 0;
     margin: 0px 0px 18px;
 }
 
 .product_description ul li {
     font-size: 16px;
     color: #565656;
     margin-bottom: 6px;
     list-style: none;
 }
 
 .product_description ul li i {
     width: 19px;
     text-align: center;
 }
 
 .product_price {
     border-top: 1px solid #C0C0C0;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding-top: 10px !important;
 }
 
 .product_price .price_amount {
     font-weight: 900;
     font-size: 22px;
     line-height: 28px;
     color: #2C2C2C;
 }
 
 .product_price .price_amount span {
     font-size: 15px;
 }
 .about_us h3 {
     color: #323232;
     margin: 40px 0 10px;
 }
 .product_price .details_btn_pro {
     border-radius: 4px;
     background: var(--colorPrimary);
     border: none;
     padding: 9px 30px;
     color: #000;
     font-weight: 600;
     transition: all 0.5s ease;
 }
 .newamenitybox {
     padding-top: 20px;
 }
 
 .newamenitybox h3 {
     font-size: 24px;
     font-weight: 600;
     color: #1e1e1e;
 }
 .product_price .details_btn_pro:hover {
     background: var(--colorSecondary);
 }
 /*--- End Grid Projects ---*/
 /* Banner */
 .banner_section {
    background: linear-gradient(45deg, #D5EFFF, #AADDFE);
    padding: 90px 0;
}

.banner_section .swiper-slide {
    background: transparent;
    text-align: left;
}

.banner_section .row {
    align-items: center;
}

.bannerLefttext h1 {
    color: #1C5276;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.8rem;
}

.bannerLefttext p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    color: #373737;
}

.bannerLefttext {
    padding-right: 40px;
}

.common_btn {
    background: var(--colorPrimary);
    color: #fff;
    padding: 13px 34px 13px;
    display: inline-block;
    margin: 10px 0 0;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.5s ease;
    border: none;
}

.common_btn:hover {
    background: var(--colordark);
    color: #fff;
}
 /* End Banner */
 /* ---- Developer & Builder---- */
 .builderBox {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 25px;
    border: 1px solid #DBDBDB;
    height: 100%;
    padding: 8px;
    border-radius: 11px;
    align-items: center;
    transition: all 0.5s ease;
}

.builder_developerWarp  .col-lg-4.col-md-6 {
    margin-bottom: 20px;
}

.builderBox figure {
    margin: 0;
    height: 100%;
    background: #F5F5F5;
    width: 120px;
    border-radius: 7px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.builderBox figure img {
    width: 100%;
    mix-blend-mode: darken;
}

.builderBox .build_heading {
    font-size: 19px;
    margin-bottom: 3px;
}

.builderBox p {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: #4a4a4a;
}

.builderBox:hover {
    background: #e5f0ff;
    border: 1px solid #2e73ce;
}

.builderBox:hover figure {
    background: #fff;
}
 /* ---- End Developer & Builder---- */
 /*  */
 /*--- Locations ---*/
 .propertyCity_location  .builderBox {
    grid-template-columns: 98px 1fr;
    border: none;
    padding: 0;
    background: transparent;
    gap: 15px;
}

.propertyCity_location .col-lg-3.col-md-6 {
    margin: 13px 0;
}

.propertyCity_location .builderBox figure {
    width: 95px;
    padding: 0;
    overflow: hidden;
}

.propertyCity_location .builderBox figure img {
    height: 100%;
    object-fit: cover;
}

.propertyCity_location .builderBox .build_heading {
    font-size: 17px;
    transition: all 0.5s ease;
}

.propertyCity_location .builderBox:hover .build_heading {
    color: var(--colorPrimary);
}
 /*--- End Locations ---*/
 .lodha_developer {
     border-top: 1px solid #C5C5C5;
 }
 
 .lodha_developer .col-md-4 {
     padding: 30px 0;
 }
 
 .developer_box h3 {
     font-weight: 900;
     font-size: 80px;
     line-height: 80px;
     color: var(--colorPrimary);
     display: flex;
     align-items: center;
     justify-content: center;
 }
 
 .developer_box h3 span {
     font-size: 28px;
     line-height: 27px;
     text-transform: uppercase;
     text-align: left;
     padding-left: 10px;
     padding-top: 9px;
 }
 
 .developer_box h3 span b {
     display: block;
     font-size: 26px;
 }
 
 .developer_box h5 {
     font-weight: 700;
     font-size: 24px;
     line-height: 35px;
     color: #3A3A3A;
 }
 
 .developer_tex {
     max-width: 1000px;
     margin: 0 auto 0;
 }
 /*---Footer--*/
 .custom-line {
     height: 2px;
     background-color: black;
     margin: 20px 0;
   }
 
 .copy_right {
     background: #eee;
     padding: 17px;
     font-size: 18px;
     font-weight: 600;
     text-align: center;
     color: #000;
 }
 a.whatsapp {
     background-color: #2fb842;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #fff;
     font-size: 25px;
     text-decoration: none;
     border-radius: 100%;
     text-align: center;
     width: 50px;
     height: 50px;
     position: fixed;
     left: 10px;
     bottom: 20px;
     margin: 0;
     z-index: 2;
 }
 /*--- Enquire Form --*/
 .sidebar-contact {
     position: fixed;
     top: 50%;
     right: -350px;
     transform: translateY(-50%);
     width: 350px;
     height: auto;
     padding: 0px;
     background: #fff;
     box-shadow: 0 20px 50px rgb(0 0 0 / 10%);
     box-sizing: border-box;
     transition: 0.5s;
         z-index: 9999;
 }
 .sidebar-contact .toggle {
     position: absolute;
     height: 40px;
     width: 160px;
     text-align: center;
     cursor: pointer;
     background:
     var(--colorPrimary);
     top: 40%;
     transform: rotate(270deg);
     left: -100px;
     font-size: 18px;
     color: #ffffff;
     line-height: 34px;
     font-weight: bold; /* Makes the text bold */
 }
 .modal-form {
     padding: 15px;
 }
 .modal-form .form-footer {
     text-align: center;
     padding: 15px;
     border: 1px dashed gray;
 }
 .modal-form .form-footer h4 {
     font-size: 22px;
     margin-bottom: 5px;
         color: var(--colorPrimary);
     font-weight: 700;
 }
 .modal-form .form-footer p {
     font-size: 16px;
 }
 .form-group {
     margin-bottom: 15px;
     position: relative;
 }
 .modal-form .form-control {
     border: 1px solid #b8b8b8;
     color: #696969;
     border-radius: 4px;
 }
 .form-control {
     border-radius: 0;
     padding: 8px 15px;
     border: 1px solid #fff;
     background-color: transparent;
     color: #000;
 }
 
 .form-control {
     border-radius: 0;
     padding: 8px 15px;
 }
 .sidebar-contact.active {
     right: 0;
 }
 .sidebar-contact.active .toggle {
     top: 60px;
     transition: 0.5s;
 }
 .modal-form .countryCode {
     color: #000;
     outline: none;
 }
 .countryCode {
     position: absolute;
     width: 100px;
     left: 15px;
     top: 50%;
     transform: translateY(-50%);
     height: 57%;
     border: 0;
     background-color: transparent;
     z-index: 1;
     color: #fff;
 }
 .countryCode ~ .form-control {
     padding-left: 120px;
 }
 .modal-form .send_btn.btn {
     background-color: var(--colorPrimary);
     color: #000;
     padding: 7px 15px;
     border-radius: 4px;
     margin: 0 auto;
     display: table;
 }
 .box_serviceW {
     margin: 20px 0 50px;
 }
 
 .cnt_side span.Under_con {
     border-left: 4px solid #00652e;
     color: #9e801b;
     padding: 2px 10px;
     display: inline-block;
     margin-bottom: 10px;
     margin-top: 20px;
     font-size: 19px;
     font-weight: 700;
 }
 .accordion_box a.btn.btn-primary span i {
     line-height: 31px;
 }
 /*---- Project Single ---*/
 .pl-40 {
     padding-left: 40px;
 }
 span.divied {
     display: inline-block;
     background: #001d3d;
     width: 50px;
     height: 4px;
     position: relative;
     top: -10px;
 }
 .about_us a.btn_comon {
     background: var(--colorPrimary);
     display: inline-block;
     padding: 11px 30px 13px;
     color: #000;
     font-size: 18px;
     margin: 10px 0;
     border-radius: 50px;
     transition: all 0.5s ease;
 }
 
 .about_us a.btn_comon:hover {
     background: var(--colorSecondary);
 }
 .amenityBoxIcon {
     background: #fff;
 padding: 40px 20px;
     border-radius: 15px;
     height: 100%;
         transition: all 0.5s ease;
 }
 .amenityBoxIcon:hover {
     background: #c0e0ff;
 }
 .beta_location h3 {
     color: var(--colorPrimary);
     font-weight: 900;
     font-size: 26px;
     margin: 30px 0 10px;
 }
 .amenityBoxIcon .IconBox {
     margin-bottom: 30px;
     max-width: 100px;
     border: 1px solid #afafaf;
     height: 100px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     background: #fff;
 }
 
 .amenityBoxIcon .IconBox img {
     max-width: 50px;
 }
 
 .amenityBoxIcon h4 {color: #282828;font-weight: 700;    font-size: 22px;}
 
 .Amenities_warpper  .col-md-6 {
     margin-bottom: 30px;
 }
 .whychoseWarp,.Location_warpper {
     padding: 60px 0;
 }
 
 .WhychoseBIx {
     background: #fbfbfb;
     padding: 30px 30px;
     margin-bottom: 20px;
     border-radius: 5px;
     border: 2px solid #d5d5d5;
 }
 
 .WhychoseBIx h4 {font-weight: 700;color: #000;margin-bottom: 17px;    font-size: 22px;}
 .amentiBox {
     display: flex;
     flex-wrap: wrap;
     margin-top: 25px;
 }
 
 .amentiBox .IconBox {
     width: 18%;
     margin-right: 2%;
     margin-bottom: 30px;
     background: #fff;
     text-align: center;
     padding: 25px 10px;
     border: 1px solid #BEBEBE;
     border-radius: 10px;
     transition: all 0.5s ease;
 }
 
 .amentiBox .IconBox:nth-child(5),.amentiBox .IconBox:nth-child(10) {
     margin-right: 0;
 }
 
 .amentiBox .IconBox img {
     max-width: 62px;
     margin-bottom: 10px;
 }
 
 .amentiBox .IconBox h4 {
     font-weight: 600;
     font-size: 22px;
     line-height: 32px;
     color: #303030;
     margin: 0;
 }
 
 .amentiBox .IconBox:hover {
     box-shadow: 0px 4px 17px rgb(0 0 0 / 14%);
     border: 1px solid #eee;
 }
 /*---- End Project Single ---*/
 /*---- Floor Plan ----*/
 .all_plan  img {
   height: 300px !important;
     width: 100%;
     object-fit: cover;
 }
 
 .master_Pup,.swiperFlooer {
     position: relative;
     border: 1px solid #e4e4e4;
     border-radius: 5px;
     overflow: hidden;
     padding: 9px;
 }
 
 .master_Pup .floor_btn, .swiperFlooer .floor_btn {
     position: absolute;
     top: -40%;
     left: 50%;
     transform: translate(-50%,-50%);
     padding: 7px 20px 10px;
     background: var(--colorPrimary);
     border: 2px solid var(--colorPrimary);
     color: #000;
     font-size: 16px;
     font-weight: 600;
     width: 100%;
     max-width: 180px;
     border-radius: 5px;
     transition: all 0.5s ease;
     z-index: 99;
 }
 
 .master_Pup:hover .floor_btn, .swiperFlooer:hover .floor_btn {
     top: 50%;
 }
 
 .master_Pup:before, .swiperFlooer:before {
     content: "";
     position: absolute;
     width: 100%;
     height: 100%;
     background: #000;
     left: 0;
     top: 0;
     opacity: 0;
     transition: all 0.5s ease;
 }
 
 .master_Pup:hover:before, .swiperFlooer:hover:before {
     opacity: 0.5;
 }
 
 .swiperFlooer h4 {
     position: absolute;
     bottom: 0;
     left: 0;
     padding: 10px;
     font-weight: 700;
     font-size: 22px;
     line-height: 35px;
     width: 100%;
     color: #000;
     z-index: 9;
 }
 
 .swiperFlooer:after {
     content: "";
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     background: linear-gradient(to top, #1d1d1da1, transparent);
 }
 /*---Price--*/
 .price_table thead.thead-dark {
     background: #282828;
 }
 
 .price_table thead.thead-dark th {
     color: #fff;
 }
 
 .price_table th,.price_table td {
     text-align: left;
     padding-left: 30px !important;
     padding: 12px;
     font-size: 16px;
     font-weight: 700;
     border: 1px solid #c4c4c4;
 }
 
 .price_table {
       margin-top: 20px;
     background: #fff;
 }
 
 .price_table table {
     margin-bottom: 0;
 }
 
 button.enquire_nowprice {
     background: var(--colorPrimary);
     border: none;
     color: #000;
     padding: 0px 5px 1px;
 }
     .property-card {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 30px;
      transition: transform 0.3s;
    }
    .property-card:hover {
      transform: translateY(-5px);
    }
    .property-image {
      position: relative;
    }
    .property-info p {
        font-size: 15px;
        font-weight: 400;
    }

    .text-theme {
        color: var(--colorPrimary);
    }
    .property-image img {
        height: 180px;
        width: 100%;
    }
    .featured-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--colorSecondary);
      color: #fff;
      font-size: 12px;
      padding: 5px 10px;
      border-radius: 5px;
      font-weight: 600;
    }
    .property-info {
      padding: 13px 20px 20px;
    }
    .property-info h6 {
      font-weight: bold;
      margin-top: 8px;
      margin-bottom: 5px;
      font-size: 18px;
    }
    .property-info .location {
      font-size: 14px;
      color: #777;
      margin-bottom: 15px;
    }
    .property-meta {
      font-size: 14px;
      color: #333;
    }
    .property-meta i {
      margin-right: 6px;
      color: #2a2a2a;
    }
 /*--- Service Enquire --*/
 .Enquire_Now_service {
     background: #252525;
 }
 
 .enquire_boxLeft {
     padding: 50px;
 }
 
 .enquire_boxLeft form {
     margin-top: 20px;
 }
 
 .enquire_boxLeft form .form-group input, .enquire_boxLeft form .form-group select,.enquire_boxLeft form .form-group textarea {
     border: none;
     color: #bebebe;
     padding: 12px 12px;
     outline: none;
 }
 
 .enquire_boxLeft form .form-group input::placeholder,.enquire_boxLeft form .form-group textarea::placeholder {
     color: #d4d4d4;
 }
 
 .enquire_boxLeft form .form-group {
     border-bottom: 1px solid #959595;
 }
 
 .enquire_boxLeft form .form-group select:focus option{
     background:#000;
 }
 .enquire_boxLeft form .form-group input:focus,.enquire_boxLeft form .form-group textarea:focus,.enquire_boxLeft form .form-group.bestTimeLo select:focus{
     background: #1d1d1d;
     box-shadow: none;
 }
 
 .enquire_boxLeft form .form-group select option {
     color: #000;
 }
 .form-group.contact_number {
     padding-left: 120px;
 }
 
 .form-group.contact_number select.countryCode {
     padding: 0;
     font-size: 16px;
     left: 10px;
 }
 
 .enquire_boxLeft form .col-md-12 button.send_btn.btn {
     margin-top: 20px;
     background: var(--colorPrimary);
     padding: 10px 40px 12px;
     font-weight: 600;
     color: #000;
 }
 
 .enquire_boxLeft form .col-md-12 button.send_btn.btn:hover {
     background: #eee;
     color: var(--colorPrimary);
 }
 
 .Enquire_Now_service .col-md-6 {
     background-position: center;
     background-size: cover;
 }
 /*--- Faq---*/
 .Faqs_warpper {
    border-top: 1px solid #d5d5d5;
}
 .faq_accordion {
     margin: 24px auto 0;
     max-width: 1000px;
 }
 .accordion_box {
     background: transparent;
     overflow: hidden;
     border-bottom: 1px solid #dddddd;
 }
 
 .accordion_box a.btn.btn-primary {
     width: 100%;
     text-align: left;
     padding: 20px 0px 20px;
     background: transparent;
     color: #222222;
     font-size: 20px;
     font-weight: 600;
     border: none;
     position: relative;
     border-radius: 0;
 }
 
 .accordion_box .card {
     background: white;
     border: none;
     border-radius: 0;
     border-top: 1px solid #b5b5b5;
     text-align: left;
     font-size: 18px;
     padding: 15px 0px 20px;
     font-weight: 500;
     color: #666666;
 }
 .accordion_box a.btn.btn-primary[aria-expanded="true"] i:before {content: "\f068";}
 .accordion_box a.btn.btn-primary span {
     position: absolute;
     background: var(--colorPrimary);
     width: 30px;
     height: 30px;
     text-align: center;
     font-size: 14px;
     line-height: 30px;
     color: #ffffff;
     right: 0;
     border-radius: 50%;
     transition:all 0.5s ease;
 }
 
 .accordion_box a.btn.btn-primary[aria-expanded="true"] span {
     background: #000;
 }
 /*---Popup Leave Details ---*/
 .modal-body button.close {
     position: absolute;
     right: 9px;
     background: var(--colorPrimary);
     color: #000;
     border-radius: 5px;
     width: 40px;
     height: 40px;
     border: none;
     top: 10px;
 }
 
 .form-footer h4 {
     font-weight: 600;
     color: #000;
     margin-bottom: 25px;
     font-size: 26px;
 }
 
 .modal-content .form-footer .form-group input, .modal-content .form-footer .form-group select,.modal-content .form-footer .form-group textarea {background: #f3f3f3;color: #464646;border-radius: 5px;padding: 13px 20px;font-weight: 600;outline: none !important;box-shadow: none !important;border: 1px solid #bfbfbf;}
 
 
 .modal-content .form-footer .form-group  select.countryCode {
     padding: 0;
     border: none;
     background: transparent;
 }
 
 .modal-content .form-footer .form-group.contact_number {
     background: #f3f3f3;
     border: 1px solid #bfbfbf;
     border-radius: 5px;
 }
 
 .modal-content .form-footer .form-group.contact_number input.form-control {
     border: none;
     border-left: 1px solid #d9d9d9;
     border-radius: 0;
 }
 
 .modal-content .form-footer .form-group input::placeholder,.modal-content .form-footer .form-group textarea::placeholder {
     color: #464646;
 }
 
 .modal-content .form-footer 
  button.send_btn.btn {
     background: var(--colorPrimary);
     padding: 10px 40px 12px;
     font-weight: 600;
     color: #000;
 }
 .modal-content .form-footer 
  button.send_btn.btn:hover {
     background: #222;
     color: var(--colorPrimary);
 }
 
 .modal-content .modal-body {
     padding: 23px 13px;
 }
 /*---- Location Page--*/
 .inner_banner {
     padding: 170px 0 100px;
 }
 .list_viewp_project .property_grid {
     display: flex;
     flex-wrap: wrap;
     border: 1px solid #d7d7d7;
 }
 .list_viewp_project .col-md-12 {
     margin-bottom: 30px;
 }
 .list_viewp_project .property_grid .product_image {
     width: 40%;
     margin-bottom: 0;
 }
 .list_viewp_project .property_grid .product_image img {
     height: 300px;
 }
 .list_viewp_project .property_grid:hover {
     border: 1px solid #fff;
 }
 .list_viewp_project .property_grid .product_description {
     width: 60%;
 }
 .locationDrop p {
     margin-bottom: 0;
 }
 
 .locationDrop ul {
     margin: 0;
     padding-left: 0;
 }
 
 .locationDrop ul a.btn.btn-primary {
     background: transparent;
     border: 1px solid #c0c0c0;
     padding: 7px 20px;
     color: #363636;
     outline: none;
     box-shadow: none;
     font-weight: 600;
 }
 
 .locationDrop .card.card-body {
     position: absolute;
     z-index: 99;
     padding: 16px 40px;
     min-width: 200px;
 }
 
 .locationDrop .card.card-body ul li a {
     color: #616161;
     padding-bottom: 7px;
     display: inline-block;
     font-size: 16px;
     transition: all 0.5s ease;
 }
 
 .locationDrop .card.card-body ul li a:hover {
     color: var(--colorPrimary);
 }
 /*---- Blogs ----*/
 .blogs_box {
     padding: 0 8px 15px;
     transition: all 0.5s ease;
     border-bottom: 5px solid #ffffff;
     height: 100%;
 }
 
 .blog-listing-img {
     position: relative;
     margin-bottom: 10px;
 }
 
 .blog-listing-img img {
     height: 210px;
     width: 100%;
     object-fit: cover;
 }
 
 .blog-listing-img font {
     background: rgb(0 0 0 / 75%);
     position: absolute;
     right: 10px;
     top: 10px;
     padding: 4px 11px;
     color: #fff;
     font-weight: 600;
     border-radius: 3px;
 }
 
 .blog-listing-detail h3 {
     font-size: 20px;
     line-height: 1.4;
 }
 
 .blog-listing-detail h3 a {font-weight: 900;color: var(--colordark);font-size: 20px;}
 
 .blog-listing-detail p {font-weight: 500;font-size: 15px;line-height: 1.6;}
 
 .blog-listing-detail  a {
     color: var(--colorPrimary);
     font-size: 16px;
 }
 
 .blogs_box:hover {
     border-bottom: 5px solid var(--colorPrimary);
 }
 .blogs_warpper .blogs_box {
     border: 2px solid #eeeeee;
     height: auto;
     margin-bottom: 0;
     padding: 20px;
     border-radius: 5px;
     height: 100%;
 }
 
 .blogs_warpper .blogs_box:hover {
     border: 2px solid #cdcdcd;
 }
 
 .blogs_warpper .blogs_box a {
     font-size: 18px;
 }
 .blogs_warpper .col-md-6 {
     margin-bottom: 30px;
 }
 
 div#show_more_load button#loadMore {
     padding: 10px 30px 13px;
     background: var(--colorPrimary);
     font-size: 16px;
     font-weight: 700;
     color: #fff;
     border-radius: 5px;
     border: none;
     transition: all 0.5s ease;
 }
 
 div#show_more_load button#loadMore:hover {
     background: #000;
 }
 .side_bar > div {
     background: #f6f6f6;
     padding: 20px;
     margin-bottom: 20px;
     border: 2px solid #eee;
     border-radius: 5px;
 }
 
 .side_bar {
     padding-left: 10px;
 }
 
 .side_bar > div > h3 {font-weight: 700;color: #252525;font-size: 24px;position: relative;padding-bottom: 20px;margin-bottom: 17px;}
 
 .side_bar > div > h3:before {
     content: "";
     position: absolute;
     width: 50px;
     height: 3px;
     background: var(--colorPrimary);
     bottom: 0;
 }
 .popular-category-div ul {
     padding-left: 22px;
 }
 
 .popular-category-div ul li,.popular-category-div ul li a {
     color: #5a5a5a;
     margin-bottom: 7px;
 }
 
 .popular-category-div ul li span {float: right;}
 
 .popular-article-div .popular-article-box {
     border-bottom: 1px solid #ddd;
     padding: 10px 0;
     transition: all 0.5s ease;
 }
 .slidepropertybox .postMeta ul {
    padding: 0;
    margin: 10px 0;
}

.slidepropertybox .postMeta ul li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 9px;
}

.slidepropertybox .postMeta ul li img {
    height: auto !important;
    margin-bottom: 0;
}

.price_Bottom {
    border-top: 1px solid #c3c3c3;
    padding-top: 13px;
    margin-top: 17px;
}

.price_Bottom .elementor-heading-title {
    font-size: 18px;
    color: #2e2e2e;
}

.price_Bottom .elementor-heading-title span {
    color: var(--colorPrimary);
    font-size: 22px;
    font-weight: 700;
}
 .popular-article-div .popular-article-box h3 {
     font-size: 15px;
     line-height: 1.4;
     margin-bottom: 2px;
 }
 .propertyslider .swiper-wrapper,.upcomingSlider .swiper-wrapper{
    padding: 0 0px 40px;
}
.propertyWarpper {
    padding: 20px 0;
}
 .propertyslider .swiper-pagination {
    bottom: -3px !important;
}
 .propertyslider .swiper-button-next,.propertyslider .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: var(--colordark);
    border-radius: 50px;
}
.upcomingAppartment {
    padding: 50px 0;
}

.upcomingAppartment.villasWarpper {
    background: #e6f0fa;
}
.coming_projectWarp {
    background: var(--colordark);
    padding: 60px 0;
}

.pre-sideBox {
    padding-left: 40px;
}

.pre-sideBox h4 {
    text-align: center;
    color: #fff;
    font-size: 22px;
    margin-bottom: 17px;
}

.prelogoEx {
    background: #fff;
    margin-bottom: 21px;
}

.formMajor_upcming {
    background: #fff;
    padding: 30px;
}
.iconwithtext img {
    max-width: 44px;
    margin-bottom: 8px;
}
.formMajor_upcming input, .formMajor_upcming select,.formMajor_upcming textarea {
    border: 1px solid #cdcdcd;
}

.formMajor_upcming select.countryCode {
    border: none;
    color: #2c2c2c;
}

.formMajor_upcming select {
    color: #2c2c2c;
}

.formMajor_upcming .send_btn.btn {
    background: var(--colorPrimary);
    color: #000;
    font-weight: 500;
    padding: 10px 40px;
    transition: all 0.5s ease;
}

.formMajor_upcming .send_btn.btn:hover {
    background: var(--colordark);
    color: #fff;
}
.upcomingAppartment.Plots_warpperKoka {
    background: #f7f7f7;
}
.rotateFixed {
    margin: 40px 0 -10px !important;
}
.upcomingAppartment  .commonh3 {
    font-size: 30px;
    color: #112b4e;
    margin-bottom: 23px;
}

.staytune {
    background: var(--colorSecondary);
    display: inline-block;
    padding: 10px 30px;
    color: #fff;
    border-radius: 7px;
    font-size: 17px;
    font-weight: 500;
}

.upcomingimagebox img {
    width: 100%;
    max-height: 320px !important;
}

.upcomingimagebox {
    width: 100%;
}
.propertyslider .swiper-button-next:after, .propertyslider .swiper-button-prev:after {
    color: #fff;
    font-size: 20px;
}

.propertyslider .swiper-button-next {
    right: -20px;
}

.propertyslider .swiper-button-prev {
    left: -20px;
}
 .headingPro {
     display: grid;
     grid-template-columns: 1fr 100px;
     margin-bottom: 15px;
 }
 
 .headingPro .commonh3 {
     font-size: 24px;
     font-weight: 700;
     color: #1e385a;
 }
 
 a.viewAllBtn {
     color: #242424;
     font-size: 16px;
     background: var(--colorPrimary);
     text-align: center;
     padding: 8px 0;
     border-radius: 8px;
 }
 
 .slidepropertybox {
     border: 1px solid #c9c9c9;
     padding: 14px;
     width: 100%;
 }
 
 .slidepropertybox img {
     height: 170px !important;
     margin-bottom: 16px;
 }
 
 .slidepropertybox .postMeta {
     text-align: left;
 }
 
 .slidepropertybox a {
     position: relative;
     display: block;
 }
 .Upcoming_ProBox .slidepropertybox .protag {
    left: 10px;
    right: inherit;
    background: #db8300;
    color: #fff;
}
 .slidepropertybox .protag {
     background: #ffffff;
     padding: 3px 10px;
     border-radius: 3px;
     position: absolute;
     top: 10px;
     right: 10px;
     font-size: 12px;
 }
 
 .slidepropertybox .postMeta .elementor-heading-title {
     font-size: 17px;
     color: var(--colorSecondary);
 }
 
 .slidepropertybox .postMeta h3 a {
     font-size: 20px;
     color: #052148;
     font-weight: 700;
 }
 
 .slidepropertybox .postMeta h3 {
     font-size: 20px;
 }
 
 .slidepropertybox .postMeta p {
     font-weight: 400;
     color: #727272;
     line-height: 1.5;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }
 
 .locationlist i {
     color: var(--colorPrimary);
 }
 
 .slidepropertybox .checkbtn {
     background: var(--colorPrimary);
     width: 100%;
     display: block;
     text-align: center;
     padding: 10px;
     margin: 10px 0 1px;
     transition: all 0.5s ease;
     color: #fff;
     font-size: 14px;
 }
 
 .slidepropertybox:hover .checkbtn {
     background: var(--colorSecondary);
     color: #fff;
 }
 .popular-article-div .popular-article-box:last-child {
     border: none;
     margin-bottom: 0;
 }
 
 .popular-article-div .popular-article-box:hover {
     background: #fff;
     padding: 10px 10px;
 }
 .side_bar .enquire_boxLeft form .form-group input, .side_bar .enquire_boxLeft form .form-group select, .side_bar .enquire_boxLeft form .form-group textarea {
       color: #272727;
 }
 .side_bar .enquire_boxLeft form .form-group input::placeholder,.side_bar .enquire_boxLeft form .form-group textarea::placeholder {
     color: #000;
 }
 .side_bar .enquire_boxLeft form .form-group input:focus, .side_bar .enquire_boxLeft form .form-group textarea:focus, .side_bar .enquire_boxLeft form .form-group.bestTimeLo select:focus {
     background: #ffffff;
     box-shadow: none;
 }
 .single_post .post_heading {
     font-size: 28px;
     line-height: 1.4;
 }
 
 .single_post  .blog-dteial-img-div {
     margin-top: 30px;
     margin-bottom: 20px;
 }
 
 .single_post .blog-dteial-img-div img {
     width: 100%;
 }
 
 .blog_details h3 {
     font-size: 26px;
     color: #000;
     margin-bottom: 20px;
 }
 
 .blog_details p {
     font-size: 16px;
     line-height: 1.5;
     font-weight: 300;
     margin-bottom: 20px;
 }
 
 .blog_details p strong {
     font-weight: 700;
 }
 .developer_para p {
     line-height: 1.7;
     text-align: center;
 }
 
 .Lodha_Developer .elementor-icon-box-content  .elementor-icon-box-title {
     margin: 19px 0 10px;
 }
 
 .Lodha_Developer .elementor-icon-box-content .elementor-icon-box-title span {
     font-weight: 800;
     font-size: 80px;
     line-height: 80px;
     color: #919191;
     display: flex;
     align-items: center;
     justify-content: center;
 }
 
 .Lodha_Developer .elementor-icon-box-content .elementor-icon-box-title span span {
     font-size: 28px;
     line-height: 27px;
     text-transform: uppercase;
     text-align: left;
     padding-left: 10px;
     padding-top: 9px;
     max-width: 110px;
 }
 
 .Lodha_Developer .elementor-icon-box-content {
     text-align: center;
 }
 
 .Lodha_Developer .elementor-icon-box-content p.elementor-icon-box-description {
     font-weight: 700;
     font-size: 22px;
     line-height: 32px;
     color: #3A3A3A;
 }
 .swiper {
        width: 100%;
        height: 100%;
      }

      .swiper-slide {
        text-align: center;
        background: #fff;

        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
      }
      .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .introducingHeader {
            text-align: center;
            margin-bottom: 40px;
        }
        .ourProposition {
            padding: 50px 0;
        }
        .propositionBox {
            text-align: center;
            margin-bottom: 50px;
        }
        .propositionBox h3 {
            margin: 10px 0 13px;
            font-size: 20px;
            font-weight: 900;
            color: #363636;
        }
        .propositionBox p {
            line-height: 1.5;
            font-weight: 300;
        }
        .ContactUSBottom {
    position: fixed;
    bottom: 0;
    background: #000;
    width: 100%;
    padding: 20px;
    z-index: 9999;
}
.ContactUSBottom .form-footerwr {
    display: flex;
    align-items: center;
}
.ContactUSBottom .form-footerwr p {
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    margin-right: 30px;
}
.ContactUSBottom .form-footerwr h4 {
    font-weight: 700;
    color: #fff;
    margin-right: 30px;
}
.ContactUSBottom .form-footerwr form .row .col-md-12 {
    width: auto;
}

.ContactUSBottom .form-footerwr form .row .col-md-12 .form-group {
    margin-bottom: 0;
}

.ContactUSBottom .form-footerwr form {
    margin-bottom: 0;
}

.ContactUSBottom .form-footerwr form .row .col-md-12 .form-group input::placeholder {
    color: #fff;
}

.ContactUSBottom .form-footerwr form .row .col-md-12 .form-group option {
    color: #000;
}

.ContactUSBottom .form-footerwr form .row .col-md-12 
 button.send_btn.btn {
    background: var(--colorPrimary);
    padding: 8px 20px;
    border-radius: 0;
    color: #ffffff;
    font-weight: 600;
}
body {
    margin-bottom: 80px;
    padding-top: 85px;
}
  .blog-card {
      border-radius: 12px;
      background-color: #fff;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s;
      margin-bottom: 30px;
    }

    .blog-card:hover {
      transform: translateY(-5px);
    }

    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .blog-content {
      padding: 20px;
    }

    .blog-meta {
      font-size: 15px;
      color: #6c757d;
      margin-bottom: 10px;
    }

    .blog-title {
      font-size: 19px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #212529;
      min-height: 60px;
    }

    .read-more {
      font-size: 16px;
      font-weight: 500;
      color: #0d6efd;
      text-decoration: none;
    }

    .read-more:hover {
      text-decoration: underline;
    }

 
.disclaimer-content {
        display: none;
    }
    .read-more-btn {
        color: rgb(114, 114, 167);
        cursor: pointer;
        text-decoration: underline;
    }
      .cs-contact-wrapper {
    background-color: #fff;
  }

  .cs-contact-info h2 {
    font-size: 2.2rem;
    line-height: 1.4;
  }

  .cs-icon-circle {
    width: 48px;
    height: 48px;
    background-color: #e3f1ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #007bff;
  }

  .cs-icon {
    font-size: 20px;
  }

  .cs-contact-card {
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgb(0 0 0 / 12%);
  }

  .cs-input {
    border-radius: 6px;
    height: 45px;
    font-size: 15px;
  }

  textarea.cs-input {
    height: auto;
  }
  .cs-contact-card h4 {
    font-size: 30px;
}

.cs-contact-card select.countryCode {
    position: relative !important;
    left: 0;
    color: #4c4c4c;
    border: 1px solid #c1c1c1;
    width: 100%;
    height: 46px;
    padding: 0 13px;
    font-size: 15px;
    border-radius: 6px;
}

.cs-contact-card input,.cs-contact-card textarea {
    border: 1px solid #c1c1c1;
}

.cs-contact-card button.btn.cs-submit-btn {
    background: var(--colorPrimary);
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    padding: 13px;
}

.cs-contact-card button.btn.cs-submit-btn:hover {
    background: #383838;
}
 /*---- Responsive ---*/
 @media(max-width:1400px){
    .ContactUSBottom .form-footerwr form .row .col-md-12 {
        width: auto;
        padding: 0 3px;
    }
    .ContactUSBottom  .form-footerwr .form-control {
        max-width: 270px;
    }
    .ContactUSBottom .form-footerwr h4 {
        margin-right: 16px;
        font-size: 22px;
    }
}
 @media (max-width: 1320px){
     .container {     
         max-width: 1230px; 
     } 
 }
 @media (max-width:1250px){
     .inner-project-list .project-list-item .proj_list .locationHead {
         font-size: 26px;
         line-height: 32px;
     }
    .ContactUSBottom  .form-footerwr .form-control {
        max-width: 220px;
    }
     .inner-project-list .project-list-item .proj_list p {
          font-size: 15px;
     }
     .inner-project-list .project-list-item {
         padding: 9px;
     }
     .banner_warpper .carousel-item .main_bannerImg img {
         height: 680px;
     }
     .menu ul li a {
         font-size: 15px;
     }
 }
 @media (max-width:1199px){
     .product_description .pro_head {
         font-size: 20px;
     }
     .developer_box h3 {
         font-size: 60px;
     }
     .inner-project-list .project-list-item .proj_list p {
         font-size: 14px;
             line-height: 1.5;
     }
     .banner-configurations-site-visit {
         padding-right: 150px;
     }
     .project-site-visit a.btn {
         padding: 8px 23px 10px;
     }
     body {
        padding-top: 65px;
    }
     h2 {
         font-size: 34px;
         line-height: 49px;
     }
     .ptb-80 {
         padding-top: 50px;
         padding-bottom: 50px;
     }
     .product_price .details_btn_pro {
         padding: 9px 20px;
     }
     .carousel-caption {
         right: 7%;
         left: 7%;
     }
     .pl-40 {
         padding-left: 0px;
     }
     .hight_warpBOx {
         padding: 30px 15px;
     }
     .hight_warpBOx ul li {
         font-weight: 600;
         font-size: 16px;
         line-height: 26px;
         margin-bottom: 13px;
         position: relative;
         padding-left: 27px;
     }
     .amentiBox .IconBox h4 {
         font-size: 20px;
         line-height: 30px;
     }
     .menu ul li a {
         padding: 18px 15px 22px;
     }
     .menu ul li.call_button {
         display: none;
     }
     .Lodha_Developer .elementor-icon-box-content .elementor-icon-box-title span {
         font-size: 65px;
         line-height: 70px;
     }
     .Lodha_Developer .elementor-icon-box-content .elementor-icon-box-title span span {
         font-size: 22px;
         line-height: 27px;
     }
 
 }
 @media(max-width:1024px){
    .ContactUSBottom {
        display: none;
    }
    body {
        margin-bottom: 0px;
    }
    .bannerLefttext {
        padding-right: 0;
    }
    .bannerLefttext h1 {
        font-size: 2.2rem
    }
        .common_btn {
        padding: 10px 20px 11px;
        font-size: 16px;
    }
    .bannerLefttext p {
        font-size: 16px;
    }
    .banner_section {
        padding: 50px 0;
    }
}

 @media (max-width: 991px){
     .button_container{position:absolute;top:50%;right:0;height:29px;width:35px;cursor:pointer;z-index:100;transition:opacity 0.25s ease;transform:translateY(-50%);}
     .button_container:hover{opacity:0.7;}
     .button_container.active .top{transform:translateY(11px) translateX(0) rotate(45deg);background:#fff;}
     .button_container.active .middle{opacity:0;background:#fff;}
     .button_container.active .bottom{transform:translateY(-11px) translateX(0) rotate(-45deg);background:#fff;}
     .button_container span{background:var(--colorPrimary);border:none;height:5px;width:100%;position:absolute;top:0;left:0;transition:all 0.35s ease;cursor:pointer;}
     .button_container span:nth-of-type(2){top:11px;}
     .button_container span:nth-of-type(3){top:22px;} 
     .overlay{position:fixed;background:#001d3d;top:0;left:0;width:100%;height:0%;opacity:0;visibility:hidden;transition:opacity 0.35s, visibility 0.35s, height 0.35s;overflow:hidden;z-index:9;}
     .overlay.open{opacity:0.9;visibility:visible;height:100%;}
     .overlay.open li{-webkit-animation:fadeInRight 0.5s ease forwards;animation:fadeInRight 0.5s ease forwards;-webkit-animation-delay:0.35s;animation-delay:0.35s;}
     .overlay.open li:nth-of-type(2){-webkit-animation-delay:0.4s;animation-delay:0.4s;}
     .overlay.open li:nth-of-type(3){-webkit-animation-delay:0.45s;animation-delay:0.45s;}
     .overlay nav{position:relative;height:70%;top:50%;transform:translateY(-50%);text-align:center;}
     .overlay ul{list-style:none;padding:0;margin:0 auto;display:inline-block;position:relative;height:100%;}
     .overlay ul li{display:block;position:relative;opacity:0;margin:0 0 15px 0;}
     .overlay ul li a {
         display: block;
         position: relative;
         color: #fff;
         text-decoration: none;
         overflow: hidden;
         font-size: 25px;
         padding: 0;
         font-weight: 400;
     }
     .menu ul li a:hover {
         background-color: transparent;
     } 
     .img_side::after {
     left: 0;
     bottom: 0;
 }
     .overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after{width:100%;}
     .overlay ul li a:after{content:"";position:absolute;bottom:0;left:50%;width:0%;transform:translateX(-50%);height:3px;background:#fff;transition:0.35s;}
     @-webkit-keyframes fadeInRight{0%{opacity:0;left:20%;}
     100%{opacity:1;left:0;}
     }
     @keyframes fadeInRight{0%{opacity:0;left:20%;}
     100%{opacity:1;left:0;}
     } 
     header {
         padding: 20px 15px; 
     }
     .banner-configurations-site-visit {
         padding-right: 0;
     }
     .project-site-visit {
         position: relative;
         right: 0;
         top: 0;
         transform: inherit;
         margin-top: 12px;
     }
     .Trending_project .col-md-4 {
         margin-bottom: 30px;
         width: 50%;
     }
     .inner-project-list .project-list-item {
         width: 50%;
     }
     .inner-project-list .project-list-item .proj_list:before {
         left: 600px;
     }
     .overlay ul li a {
         padding-top: 15px;
     }
     .enquire_boxLeft {
         padding: 20px;
     }
     .box_serviceW {
     display: flex;
     flex-direction: column-reverse;
 }
 
 .box_serviceW .img_side img {
     width: 100%;
 }
 
 .box_serviceW.box_textleft {
     flex-direction: column;
 }
 }
 @media (max-width: 890px){ 
     .about_us .col-md-6 {
         width: 100%;
     }
     .about_us a.btn_comon {
         margin-bottom: 40px;
     }
     .Highlights_warpper .col-md-6 {
         width: 100%;
     }
     .amentiBox .IconBox:nth-child(5), .amentiBox .IconBox:nth-child(10) {
         margin-right: 2%;
     }
     .amentiBox .IconBox {
         width: 32%;
     }
     .amentiBox .IconBox:nth-child(3n+3) {
        margin-right: 0;
     }
     .Location_warpper .col-md-6 {
         width: 100%;
     }
     h2 {
         font-size: 30px;
         line-height: 46px;
     }
     .all_plan .row > div {
         width: 100%;
     }
     .main_floor_plan {
         padding-top: 20px;
     }
 }
 @media (max-width: 767px){ 
     .overlay ul li a {
         font-size: 22px;
     } 
     .banner_warpper button.carousel-control-prev {
         left: 20px;
     }
     .carousel-caption {
         position: relative;
         right: 0;
         bottom: 0;
         left: 0;
         padding-top: 1.25rem;
         padding-bottom: 1.25rem;
         color: #000;
         text-align: center;
         padding: 20px 20px 40px;
     }
     .banner_warpper .carousel-item .main_bannerImg img {
         height: 520px;
     }
     .banner_warpper button.carousel-control-prev, .banner_warpper button.carousel-control-next {
             width: 40px;
     height: 40px;
         top: 40%;
     }
     .banner_warpper .carousel-item:before{
         display: none;
     }
     .bannerLefttext {
        text-align: center;
        margin-bottom: 30px;
    }
    body {
        padding-top: 55px;
    }
    .blog-card img {
        height: auto;
    }
    .property-image img {
        height: 250px;
        object-fit: cover;
    }
     .main_bannerImg:before {
         content: "";
         position: absolute;
         width: 100%;
         height: 100%;
         background: linear-gradient(180deg, rgb(15 15 15 / 0%) 21.41%, rgb(0 0 0 / 68%) 89.44%);
         top: 0;
         left: 0;
     }
     .main_bannerImg {
         position: relative;
     }
     .project-configurations {
         text-align: center;
     }
     .sidebar-contact .toggle {
         height: 32px;
         width: 140px;
         left: -85px;
         font-size: 16px;
         line-height: 29px;
     }
     .banner_heading {
         font-size: 35px;
         color: #1c1c1c;
             line-height: 30px;
     }
     .project-configurations p {
         font-size: 16px;
         color: #3d3d3d;
     }
     h2 {
         font-size: 28px;
         line-height: 33px;
     }
     .banner_warpper .carousel-indicators [data-bs-target] {
         background: #c7c7c7;
     }
     .lodha_developer .col-md-4 {
         border-bottom: 1px solid #d6d6d6;
     }
     .lodha_developer .col-md-4:nth-last-child(2) {
         border-bottom: none;
     }
     p {
         font-size: 16px;
         line-height: 26px;
     }
     .banner-configurations .configuration-item img {
         display: block;
         margin: 0 auto 7px;
     }
     .project-info-item-txt h4 {
         color: #1c1c1c;
     }
     .banner-configurations .configuration-item.TYPElist {
         display: block;
     }
     .inner_banner {
         padding: 130px 0 60px;
     }
     .list_viewp_project .property_grid {
         display: block;
     }
     .list_viewp_project .property_grid .product_image {
         width: 100%;
         margin-bottom: 19px;
     }
     .list_viewp_project .property_grid .product_description {
         width: 100%;
     }
     .list_viewp_project .col-md-12 {
         margin-bottom: 30px;
         padding: 0 40px;
     }
 }
 @media (max-width: 650px){ 
     .Trending_project .col-md-4 {
         width: 100%;
     }
     .product_price .details_btn_pro {
         padding: 9px 30px;
     }
     .product_image img {
         height: 290px;
     }
 }
 
 @media (max-width: 540px){ 
     .banner-configurations .configuration-item {
         width: 100%;
         display: flex !important;
             margin-bottom: 12px;
     }
     .banner-configurations .configuration-item img {
         display: block;
         max-width: 60px;
         margin: 0 5px 0 0;
         height: 28px;
         object-fit: contain;
     }
     .project-info-item-txt > * {
         width: auto;
         display: inline-block;
     }
     .project-info-item-txt h4 {
         font-size: 15px;
     }
     .project-configurations p {
         margin-bottom: 0;
     }
     .project-configurations {
         text-align: left;
     }
     .project-configurations .banner_heading, .project-configurations > p {
         padding-left: 16px;
     }
     .project-site-visit {
         padding-left: 16px;
     }
     .banner_heading {
         font-size: 30px;
         line-height: 25px;
     }
     h2 {
         font-size: 26px;
         line-height: 32px;
     }
     .inner-project-list .project-list-item {
         width: 100%;
     }
     .list_viewp_project .property_grid .product_image img {
         height: auto;
     }
     .video_about iframe {
         height: 300px;
     }
     .about_us a.btn_comon {
         padding: 9px 22px 11px;
         font-size: 16px;
     }
     .amentiBox .IconBox {
         width: 49%;
     }
     .amentiBox .IconBox:nth-child(3n+3) {
         margin-right: 2%;
     }
     .amentiBox .IconBox:nth-child(2n+2) {
         margin-right: 0 !important;
     }
     .amentiBox .IconBox {
         margin-bottom: 15px;
     }
 }
 @media (max-width:425px){ 
     .banner_warpper .carousel-item .main_bannerImg img {
         height: 450px;
     }
     a.whatsapp {
         left: 8px;
         bottom: 8px;
     }
     .carousel-caption {
         padding: 20px 2px 40px;
     }
     .product_price .details_btn_pro {
         padding: 6px 17px;
     }
     .product_price .price_amount {
         font-size: 20px;
     }
     .product_price .price_amount span {
         font-size: 13px;
     }
     .product_image img {
         height: 190px;
     }
     .sidebar-contact {
         width: 310px;
         right: -310px;
     }
     .modal-form .form-footer h4 {
         font-size: 21px;
     }
     .modal-form .form-footer p {
         font-size: 14px;
     }
     .list_viewp_project .col-md-12 {
         padding: 0 15px;
     }
     header {
         padding: 20px 10px;
     }
     .button_container span {
         height: 4px;
     }
   
     .button_container span:nth-of-type(2) {
         top: 10px;
     }
     .button_container span:nth-of-type(3) {
         top: 20px;
     }
     .product_image span {
         font-size: 12px;
     }
     .amentiBox .IconBox {
         width: 100%;
         margin-right: 0 !important;
     }
     .accordion_box a.btn.btn-primary {
         padding: 13px 23px;
         font-size: 16px;
     }
     .enquire_boxLeft {
         padding: 20px 0;
     }
     .accordion_box a.btn.btn-primary {
         padding: 13px 15px;
     }
     .accordion_box a.btn.btn-primary span {
        
         right: 10px;
         top: 9px;
     }
     .enquire_boxLeft form .col-md-12 button.send_btn.btn {
         padding: 10px 30px 12px;
         font-size: 14px;
     }
     .price_table tr td {
         min-width: 170px;
     }
     .cs-contact-info h2 {
    font-size: 2rem;
    line-height: 1.2;
}
 }
 @media (max-width:350px){ 
     .sidebar-contact {
         width: 298px;
         right: -298px;
     }
     .modal-form {
     padding: 9px;
 }
 .project-logo img {
    max-width: 210px;
}

     }
 
 @media (max-height:430px){   
     .modal-form .form-footer {
     height: 90vh;
     overflow-y: scroll;
 }
 }