@charset "UTF-8";
.comm_heading {
  font-size: 36px;
  color: #1a1a1a;
  font-weight: 400;
  text-align: center;
  text-transform: capitalize;
}

.comm_sub_heading {
  font-size: 16px;
  color: #5c727d;
  font-weight: 400;
  text-align: center;
}

.comm_para {
  font-size: 15px;
  color: #2a2a2a;
  font-weight: 400;
  font-family: "Poppins";
}

/*----------------------------------------*/
/*        Header Top CSS
/*----------------------------------------*/
.header-section {
  position: relative;
  left: 0;
  top: 0;
  background: #ffffff;
  width: 100%;
  z-index: 999;
  padding: 6px 0;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-wrap .search-bar {
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.header-wrap .search-bar select,
.header-wrap .search-bar input[type=text] {
  padding: 8px;
  border: 1px solid #ccc;
  outline: none;
}
.header-wrap .search-bar select {
  width: 150px;
}
.header-wrap .search-bar input[type=text] {
  flex-grow: 1;
  min-width: 150px;
  height: 32px;
}
.header-wrap .search-bar button {
  padding: 2px 16px;
  background-color: #fff;
  color: #bb2026;
  cursor: pointer;
  outline: none;
  border: 1px solid #e6e6e6;
  border-left: 0;
}
.header-logo a img {
  max-width: 150px;
  width: 100%;
}

.header-menu .main-menu {
  display: flex;
}
.header-menu .main-menu li {
  position: relative;
  padding: 30px 25px;
}
.header-menu .main-menu li a {
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-transform: capitalize;
  color: #0e0e0e;
}
.header-menu .main-menu li .menu-icon::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: #94a0b9;
  margin-left: 5px;
  transition: all 0.3s linear;
}
.header-menu .main-menu li:hover > .menu-icon::after {
  color: #bb2026;
}
.header-menu .main-menu li:hover > a {
  color: #bb2026;
}
.header-menu .main-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.header-menu .main-menu li .sub-menu {
  position: absolute;
  left: 0;
  top: 110%;
  width: 230px;
  background: #ffffff;
  box-shadow: 0 2px 29px rgba(0, 0, 0, 0.05);
  padding: 0 0;
  border-radius: 5px;
  border-top: 3px solid #bb2026;
  opacity: 0;
  z-index: 99;
  visibility: hidden;
  transition: all 0.3s linear;
}
.header-menu .main-menu li .sub-menu li {
  padding: 0;
  border-bottom: 1px solid;
}
.header-menu .main-menu li .sub-menu li:last-child {
  border-bottom: 0;
}
.header-menu .main-menu li .sub-menu li a {
  padding: 5px 25px;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
  display: block;
  position: relative;
  z-index: 1;
}
.header-menu .main-menu li .sub-menu li:hover > a {
  color: #bb2026;
}
.header-menu .main-menu li .sub-menu li.active > a {
  color: #bb2026;
}
.header-menu .main-menu li.active-menu > a {
  color: #bb2026 !important;
}
.header-menu .main-menu li.active-menu > .menu-icon::after {
  color: #bb2026;
}

.header-meta {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.header-toggle {
  margin-left: 30px;
}
.header-toggle button {
  background: none;
  border: none;
  padding: 5px;
  line-height: 0;
}
.header-toggle button span {
  width: 25px;
  height: 2px;
  background: #000;
  margin: 5px 0;
  display: block;
}
.header-toggle button span:last-child {
  margin-bottom: 0;
}

.header-section_in .header-social {
  position: relative;
}
.header-section_in .header-social ul li {
  display: inline-block;
  padding-right: 15px;
}
.header-section_in .header-social ul li:last-child {
  padding-right: 0;
}
.header-section_in .header-social ul li a {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: start;
}
.header-section_in .header-social ul li a i {
  color: #bb2026;
  margin-right: 5px;
}
.header-section_in .header-social ul li a span {
  font-size: 14px;
  color: #2a2a2a;
  font-weight: 300;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.header-section_in .header-social ul li a span:hover {
  color: #bb2026;
}
.header-section_in .header-social ul li .in_btn {
  width: auto;
  padding: 8px 12px;
  height: auto;
  font-size: 12px;
  font-weight: 400;
  margin-left: 6px;
  background-color: #fff;
  color: #656565;
  border: 1px solid #edecec;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.header-section_in .header-social ul li .in_btn:hover {
  color: #bb2026;
  border-color: #bb2026;
}

.header-top-section {
  background: #030213;
}

.sticky {
  position: fixed;
  top: 0;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  animation: sticky 1s;
}

.sticky_bot {
  position: fixed;
  top: 0;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.07);
  animation: sticky 1s;
  z-index: 999;
  background-color: #fff;
  width: 100%;
  border-radius: 0 !important;
}

.offcanvas {
  background: rgba(255, 255, 255, 0.831372549);
  width: 100%;
  max-width: 450px;
}

.offcanvas-header .close-btn {
  background: none;
  border: 0;
  font-size: 18px;
  color: #000;
  transition: all 0.3s linear;
}
.offcanvas-header .close-btn:hover {
  transform: rotate(90deg);
  color: #bb2026;
}

.offcanvas-logo a img {
  width: 130px;
}

.offcanvas-menu {
  padding: 0;
}
.offcanvas-menu .main-menu li.active .sub-menu {
  display: block;
}
.offcanvas-menu .main-menu li.active-menu a {
  color: #bb2026;
}
.offcanvas-menu .main-menu li {
  position: relative;
  margin-bottom: 5px;
  border-bottom: 1px solid #000;
}
.offcanvas-menu .main-menu li:last-child {
  border-bottom: 0;
}
.offcanvas-menu .main-menu li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding: 5px 0px;
  position: relative;
}
.offcanvas-menu .main-menu li .menu-expand {
  position: absolute;
  right: 20px;
  top: 3px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
.offcanvas-menu .main-menu li .menu-expand::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear;
}
.offcanvas-menu .main-menu li .menu-expand::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 16px;
  left: 50%;
  top: 50%;
  bottom: 0;
  background-color: #000;
  transform: translate(-50%, -50%);
  transition: all 0.3s linear;
}
.offcanvas-menu .main-menu li:hover > a {
  color: #bb2026;
}
.offcanvas-menu .main-menu li ul {
  padding-left: 6%;
  display: none;
}
.offcanvas-menu .main-menu li.active > .menu-expand::after {
  height: 0;
}

@media only screen and (max-width: 991px) {
  .header-section {
    padding: 15px 0;
  }
  .search-wrap .search-inner .search-cell .search-field-holder {
    width: 60%;
  }
}
@media only screen and (max-width: 1199px) {
  .header-logo a img {
    width: 130px;
  }
  .header-menu .main-menu li {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .offcanvas {
    width: 280px;
  }
}
/*----------------------------------------*/
/*               Hero CSS
/*----------------------------------------*/
.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px !important;
}

.hero {
  position: relative;
  overflow: hidden;
  height: auto;
  aspect-ratio: 384/119;
}
.hero form {
  margin-bottom: 50px;
}
.hero .swiper-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 384/119;
}
.hero .mySwiper_hero {
  height: auto;
  aspect-ratio: 384/119;
}
.hero .hero_swiper-button-next {
  position: absolute;
  right: 285px;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
}
.hero .hero_swiper-button-prev {
  position: absolute;
  left: 285px;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
}
.hero .hero_bg {
  padding-top: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 384/119;
}
.hero .search_cont {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
}
.hero .adv_search {
  width: 100%;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .adv_search input {
  border: none !important;
  padding: 15px 25px !important;
  padding-right: 10px !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  color: #222 !important;
  height: 52px !important;
}
.hero .adv_search .search_row {
  display: flex;
  justify-content: start;
  align-items: center;
}
.hero .adv_search .search_row .nice-select {
  margin-right: 10px;
  height: 52px;
  padding: 6px;
  padding-left: 20px;
  padding-right: 110px;
  max-width: 190px;
  width: 100%;
}
.hero .adv_search .filter_box {
  padding: 0 10px;
}
.hero .adv_search .filter_box button {
  background: transparent !important;
  border: 0 !important;
}
.hero .adv_search .search_btn {
  padding: 0 10px;
  padding-right: 20px;
}
.hero .adv_search i {
  cursor: pointer;
  font-size: 20px;
  padding-top: 5px;
  color: #222;
}
.hero .adv_search .filter_card {
  position: absolute;
  max-width: 750px;
  width: 100%;
  right: 25px;
  bottom: -55px;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  display: none;
  transition: 0.5s ease-out;
  -webkit-transition: 0.5s ease-out;
}
.hero .adv_search .filter_card.show {
  display: block;
}
.hero .adv_search .in_btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 52px;
  height: 52px;
  aspect-ratio: 1;
  margin-left: 0;
  border-radius: 0 !important;
}
.hero .adv_search .in_btn i {
  color: #fff !important;
}
.hero .nice-select.open .list {
  max-height: 170px;
  overflow-y: auto;
  bottom: 100%;
  top: auto;
  margin-bottom: 5px;
}

/*----------------------------------------*/
/*           Hero CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           Poperty CSS
/*----------------------------------------*/
.poperty {
  padding: 25px 20px;
  padding-bottom: 0;
  background-color: #f3f3f3;
}
.poperty.trending .slider_sec {
  position: relative;
}
.poperty.trending .slider_sec .next_trend {
  top: -60px;
  position: absolute;
  right: 0px;
  background: #fff;
  border: none;
  width: 40px;
  aspect-ratio: 1;
}
.poperty.trending .slider_sec .prev_trend {
  top: -60px;
  position: absolute;
  right: 50px;
  background: #fff;
  border: none;
  width: 40px;
  aspect-ratio: 1;
}
.poperty.trending._in .next_trend {
  top: -90px;
}
.poperty.trending._in .prev_trend {
  top: -90px;
}

.launch_sec .cmn_arw {
  top: 50% !important;
  z-index: 1;
}
.launch_sec .new_launch_left {
  right: auto;
  left: -50px;
}
.launch_sec .next_trend {
  right: -50px !important;
}

/*----------------------------------------*/
/*           Poperty CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           Category CSS
/*----------------------------------------*/
.category_all {
  padding: 25px 20px;
}
.category_all .slider_sec {
  position: relative;
}
.category_all .slider_sec .next_cate {
  top: -90px;
  position: absolute;
  right: 0;
  background: #f0f2f2;
  border: navajowhite;
  width: 40px;
  aspect-ratio: 1;
}
.category_all .slider_sec .prev_cate {
  top: -90px;
  position: absolute;
  right: 50px;
  background: #f0f2f2;
  border: navajowhite;
  width: 40px;
  aspect-ratio: 1;
}
.category_all .slider_sec ._box {
  position: relative;
  margin-bottom: 15px;
}
.category_all .slider_sec ._box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.category_all .slider_sec ._box span {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.category_all .slider_sec ._box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 1;
}

/*----------------------------------------*/
/*           Category CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           Awards CSS
/*----------------------------------------*/
.awards {
  padding-top: 60px;
  padding-bottom: 45px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #3d3d3d;
  background-blend-mode: multiply;
}
.awards .section_title .section_title__heading {
  color: #fff;
}
.awards .counter_sec {
  padding: 0 16%;
  padding-top: 55px;
}
.awards .counter_sec .counter_box .counter_icon {
  float: left;
}
.awards .counter_sec .counter_box .counter_icon img {
  width: 100%;
}
.awards .counter_sec .counter_box .counter_text {
  display: inline-flex;
  flex-direction: column;
  padding-left: 5px;
}
.awards .counter_sec .counter_box .counter_text h3 {
  display: inline-block;
  font-size: 36px;
  line-height: 36px;
  color: #ffffff;
  font-weight: 700;
  text-align: center;
}
.awards .counter_sec .counter_box .counter_text p {
  font-size: 14px;
  line-height: 26px;
  color: #ffffff;
  font-weight: 700;
  display: inline-block;
  text-align: center;
}

/*----------------------------------------*/
/*           Aards CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           Contact CSS
/*----------------------------------------*/
.contact {
  padding: 25px 20px;
}
.contact .section_title__heading {
  text-align: start;
  padding-bottom: 22px;
}
.contact .col-lg-8.col-md-7.pe-md-0.bg_white {
  padding: 50px 70px !important;
}
.contact .cont_right {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 80px 30px;
  height: 100%;
}
.contact .cont_right::after {
  display: none;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #bb2026;
  opacity: 0.9;
  top: 0;
  left: 0;
  z-index: 0;
}
.contact .cont_right h2 {
  font-size: 12px;
  text-transform: math-auto;
  color: #000;
  font-weight: bold;
  z-index: 1;
  position: relative;
  margin-bottom: 40px;
}
.contact .cont_right ul {
  position: relative;
  z-index: 1;
}
.contact .cont_right ul li {
  color: #000;
  margin-bottom: 55px;
}
.contact .cont_right ul li .img_box {
  width: 40px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  float: left;
  margin-right: 20px;
  padding: 0;
}
.contact .cont_right ul li p {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0;
  color: #000;
}
.contact .cont_right ul li span {
  font-size: 12px;
  color: #000;
  font-weight: 300;
  display: inline-block;
}
.contact input {
  background-color: #f6f6f6 !important;
  border-radius: 0 !important;
  margin-bottom: 15px !important;
  border: none !important;
}
.contact textarea {
  background-color: #f6f6f6 !important;
  border-radius: 0 !important;
  margin-bottom: 15px !important;
  border: none !important;
  resize: none;
  height: 130px;
}
.contact textarea::-moz-placeholder {
  font-size: 12px !important;
}
.contact textarea::placeholder {
  font-size: 12px !important;
}
.contact .wpcf7-list-item-label {
  line-height: 20px;
  font-size: 12px;
}
.contact .con_chk {
  margin-bottom: 7px !important;
}

/*----------------------------------------*/
/*           Contact CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           Testimonial CSS
/*----------------------------------------*/
.testimonial {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 25px 20px;
  position: relative;
}
.testimonial::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  top: 0;
  left: 0;
  z-index: 1;
}
.testimonial .section_title__desc {
  padding: 0 19%;
  color: #2a2a2a;
}
.testimonial .thumb_box {
  overflow: hidden;
}
.testimonial .thumb_box .video_box {
  overflow: hidden;
  height: 100%;
  width: 60%;
  margin: 0 auto;
  border-radius: 20px;
  position: relative;
}
.testimonial .thumb_box .video_box iframe {
  aspect-ratio: 16/9;
  width: 100%;
}
.testimonial .thumb_box .video_box span {
  font-size: 27px;
  color: #fff;
  font-weight: 700;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.testimonial .thumb_box .video_box img {
  width: 100%;
}
.testimonial .thumb_box .thumb {
  margin-top: 25px;
}
.testimonial .thumb_box .thumb .swiper-slide .controll_btn {
  background-color: #bb2026;
  border-radius: 20px;
  padding: 25px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 2px solid #262322;
}
/*----------------------------------------*/
/*           Testimonial CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           Blog CSS
/*----------------------------------------*/
.blog {
  padding: 25px 20px;
}
.blog .section_title {
  margin-bottom: 10px;
}
.blog .slider_sec {
  position: relative;
}
.blog .slider_sec .prev_blog {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: -50px;
  background: #f0f2f2;
  border: none;
  width: 40px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog .slider_sec .next_blog {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: -50px;
  background: #f0f2f2;
  border: none;
  width: 40px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*----------------------------------------*/
/*           Blog CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           Partner CSS
/*----------------------------------------*/
.partner {
  background-color: #f8f4f1;
  padding: 25px 20px;
  border-top: 1px solid #e2e2e2;
}

/*----------------------------------------*/
/*           Partner CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*           Common CSS
/*----------------------------------------*/
.property_card {
  border-radius: 10px;
  background-color: #ffffff;
  margin-bottom: 30px;
}
.property_card:hover .cont_box h2 {
  color: #bb2026;
}
.property_card .img_box {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 250px;
}
.property_card .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.property_card .img_box .feature {
  position: absolute;
  top: 23px;
  left: 23px;
  border-radius: 5px;
  background-color: #23446b !important;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 8px !important;
  margin-top: 0 !important;
}
.property_card .img_box .feature::after {
  display: none;
}
.property_card .img_box .sales {
  position: absolute;
  top: 23px;
  right: 23px;
  border-radius: 5px;
  background-color: #bb2026;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 8px;
}
.property_card .img_box .location {
  position: absolute;
  bottom: 20px;
  left: 23px;
  font-size: 15px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 500;
  display: flex;
  justify-content: start;
  align-items: start;
}
.property_card .img_box .location i {
  margin-top: 3px;
}
.property_card .img_box .location span {
  padding-right: 150px;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 500;
  display: block;
  margin-left: 8px;
}
.property_card .img_box .gal {
  position: absolute;
  bottom: 38px;
  right: 25px;
}
.property_card .img_box .gal ul li {
  color: #fff;
  margin-right: 10px;
  font-size: 15px;
}
.property_card .cont_box {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.property_card .cont_box h2 {
  font-size: 24px;
  color: #071c1f;
  font-weight: 400;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  margin-bottom: 0;
}
.property_card .cont_box p {
  opacity: 0.702;
  font-size: 15px;
  color: #071c1f;
  margin-bottom: 5px;
}
.property_card .cont_box h6 {
  font-size: 13px;
  color: #bb2026;
  font-weight: 300;
  display: flex;
  justify-content: start;
  align-items: center;
}
.property_card .cont_box h6 span {
  font-size: 16px;
  color: #071c1f;
  font-weight: 300;
  padding-left: 9px;
}

.blog_card {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.blog_card .img_box img {
  width: 100%;
}
.blog_card .cont_box {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  padding: 30px;
  background-color: #fff;
}
.blog_card .cont_box h6 {
  font-size: 20px;
  color: #141413;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.blog_card .cont_box p {
  font-size: 15px;
  color: rgba(71, 66, 66, 0.7529411765);
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_card .cont_box .card_bottom .date {
  font-size: 15px;
  color: rgba(71, 66, 66, 0.7529411765);
  font-weight: 400;
}
.blog_card .cont_box .card_bottom .date i {
  color: #bb2026;
  font-size: 18px;
  margin-right: 5px;
}
.blog_card .cont_box .card_bottom .count {
  float: right;
  background-color: #bb2026;
  color: #fff;
  width: 30px;
  aspect-ratio: 1;
  font-size: 22px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner_card {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 20px;
  background-color: #fff;
  margin-top: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  max-width: 130px;
  width: 100%;
  padding: 5px 10px;
}
.partner_card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
}

.backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.listing_card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.listing_card .img_box {
  position: relative;
}
.listing_card .img_box img {
  width: 100%;
  height: 286px;
  -o-object-fit: cover;
     object-fit: cover;
}
.listing_card .img_box .featured {
  position: absolute;
  top: 15px;
  left: 20px;
  color: #fff;
  font-size: 12px;
  background-color: #23446b;
  padding: 2px 10px;
  border-radius: 4px;
}
.listing_card .img_box .sales {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #fff;
  font-size: 12px;
  background-color: #bb2026;
  padding: 2px 10px;
  border-radius: 4px;
}
.listing_card .cont_box {
  padding: 15px 30px;
}
.listing_card .cont_box .top {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.listing_card .cont_box .top .prop_name {
  font-size: 19px;
  font-weight: 400;
  color: #071c1f;
}
.listing_card .cont_box .top .prop_price {
  font-size: 17px;
  font-weight: 400;
  color: #bb2026;
}
.listing_card .cont_box .top .prop_price.price_btn {
  white-space: nowrap;
}
.listing_card .cont_box p {
  font-size: 15px;
  font-weight: 400;
  color: #bb2026;
  margin-bottom: 0;
}
.listing_card .cont_box .prop_dev {
  margin-bottom: 0;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #071c1f;
}
.listing_card .cont_box .prop_rera {
  font-size: 14px;
  float: right;
  margin-bottom: 10px;
}
.listing_card .cont_box .capsule {
  font-size: 13px;
  color: #3b3b3b;
  font-weight: 400;
  padding: 10px 15px;
  border-radius: 25px;
  float: right;
  padding-right: 0;
  margin-top: -30px;
  margin-bottom: 0;
}
.listing_card .cont_box .details_box {
  margin-top: 15px;
  margin-bottom: 15px;
}
.listing_card .cont_box .details_box .details {
  font-size: 12px;
  font-weight: 400;
  color: #071c1f;
  border-bottom: 1px solid #ddd;
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.listing_card .cont_box .details_box .details:last-child {
  border: 0;
}
.listing_card .cont_box .button_box {
  justify-content: center !important;
}
.listing_card .cont_box .button_box .in_btn {
  width: auto;
  padding: 8px 12px;
  height: 40px;
  font-size: 12px;
  font-weight: 400;
  margin-left: 6px;
  background-color: #fff !important;
  color: #656565 !important;
  border: 1px solid #edecec !important;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.listing_card .cont_box .button_box .in_btn:hover {
  color: #bb2026 !important;
  border-color: #bb2026 !important;
}

/*----------------------------------------*/
/*           Common CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*            Footer CSS
/*----------------------------------------*/
.sticky-footer {
  position: absolute;
  bottom: 20px;
}

.footer {
  position: relative;
  background: rgb(36, 44, 46) !important;
  background: linear-gradient(39deg, rgb(36, 44, 46) 0%, rgb(9, 27, 29) 100%);
}

.footer-widget-wrap {
  padding-top: 20px;
  padding-bottom: 75px;
}
.footer-widget-wrap .row-cols-5 .col:first-child {
  padding: 0;
}

.footer-widget {
  margin-top: 30px;
  padding-right: 25px;
  margin-left: 25%;
}
.footer-widget .footer-widget-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-transform: math-auto;
  position: relative;
}
.footer-widget .footer-widget-title::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 2px;
  background-color: #bb2026;
  left: 0;
  bottom: -20px;
  z-index: 2;
}
.footer-widget .footer-widget-title::after {
  position: absolute;
  content: "";
  width: 70px;
  height: 1px;
  background-color: #495254;
  left: 0;
  bottom: -20px;
  z-index: 1;
}

.widget-info {
  padding-top: 20px;
}
.widget-info ul li {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 10px;
}
.widget-info ul li .info-icon i {
  display: inline-block;
  color: #bb2026;
  font-size: 18px;
  margin-right: 10px;
  margin-top: 2px;
}
.widget-info ul li .info-text {
  font-size: 16px;
  line-height: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #c4c5c7;
}

.footer-widget-about {
  margin-top: 15px;
}
.footer-widget-about p {
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.4901960784);
  margin-top: 20px;
  font-weight: 300;
}

.footer-social .social {
  margin-top: 25px;
  justify-content: center;
  display: flex;
}
.footer-social .social li {
  display: inline-block;
  margin-left: 20px;
}
.footer-social .social li a {
  line-height: 37px;
  text-align: center;
  border-radius: 50%;
  font-size: 13px;
  color: #fff;
}
.footer-social .social li a:hover {
  color: #bb2026;
  transform: rotate(360deg);
}

.widget-link {
  padding-top: 22px;
}
.widget-link .link li {
  margin-top: 7px;
}
.widget-link .link li a {
  font-size: 14px;
  color: #b0b0b0;
  font-weight: 300;
}
.widget-link .link li a:hover {
  color: #bb2026;
  padding-left: 10px;
}

.top_footer {
  border-bottom: 1px solid #424a4b;
}
.top_footer .common_wrapper .footer_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
}
.top_footer .common_wrapper .footer_top p {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-transform: math-auto;
}

.footer-copyright-area {
  border-top: 1px solid #424a4b;
  padding: 30px 20px;
}
.footer-copyright-area .copy_ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-copyright-area .copy_ul.chat {
  position: relative;
}
.footer-copyright-area .copy_ul.chat li:nth-child(2)::after {
  display: none;
}
.footer-copyright-area .copy_ul.chat span {
  position: absolute;
  left: 195px;
  top: -85px;
}
.footer-copyright-area .copy_ul.chat .chat_name {
  background-color: #fff;
  font-size: 14px;
  padding: 3px 10px;
  left: 75px;
  top: -70px;
}
.footer-copyright-area .copy_ul.chat .chat_name::after {
  content: "";
  content: "";
  position: absolute;
  width: 10px;
  background-color: #fff;
  right: -4px;
  top: 9px;
  aspect-ratio: 1;
  transform: rotate(48deg);
  z-index: 1;
}
.footer-copyright-area .copy_ul li {
  margin-right: 30px;
  position: relative;
  text-align: center;
}
.footer-copyright-area .copy_ul li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 10px;
  background-color: #495254;
  right: -15px;
  top: 5px;
}
.footer-copyright-area .copy_ul li:last-child::after {
  display: none;
}
.footer-copyright-area .copy_ul li p {
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.4901960784);
}

.copyright-text {
  margin-top: 15px;
}
.copyright-text p {
  font-size: 14px;
  color: #c4c5c7;
}

.progress-wrap {
  position: fixed;
  right: 15px;
  bottom: 154px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(8, 105, 216, 0.4235294118);
  opacity: 0;
  visibility: hidden;
  transform: translateX(130%);
  z-index: 99999;
  transition: all 200ms linear;
}
.progress-wrap::after {
  position: absolute;
  content: "\f062";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  text-align: center;
  line-height: 45px;
  font-size: 18px;
  color: #bb2026;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
}
.progress-wrap svg path {
  fill: none;
}
.progress-wrap svg.progress-circle path {
  stroke: #bb2026;
  stroke-width: 4;
  box-sizing: border-box;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

@media only screen and (max-width: 1399px) {
  .footer-widget-about p {
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .copyright-text {
    text-align: center;
  }
}
.contact-info-section {
  padding: 100px 0;
}
.contact-info-section .contact-info-wrap {
  margin-top: -30px;
}
.contact-info-section .contact-info-wrap .single-contact-info {
  background: #f8f8f8;
  padding: 20px;
  margin-top: 30px;
}
.contact-info-section .contact-info-wrap .single-contact-info .info-content .title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 15px;
}
.contact-info-section .contact-info-wrap .single-contact-info .info-content p {
  font-size: 18px;
  line-height: 30px;
}

@media only screen and (max-width: 1199px) {
  .contact-info-section .contact-info-wrap .single-contact-info {
    padding: 50px 40px 60px;
  }
  .contact-info-section .contact-info-wrap .single-contact-info .info-content p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-info-section .contact-info-wrap .single-contact-info {
    padding: 50px 30px 60px;
  }
}
@media only screen and (max-width: 991px) {
  .contact-info-section .contact-info-wrap .single-contact-info .info-content p {
    font-size: 18px;
  }
}
/*----------------------------------------*/
/*            Footer CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*            listing CSS
/*----------------------------------------*/
.nice-select::after {
  border-bottom: 2px solid #bb2026;
  border-right: 2px solid #bb2026;
}

.inner_hero ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.inner_hero ul li {
  margin-right: 20px;
  color: #fff;
  position: relative;
  font-size: 14px;
  text-transform: capitalize;
}
.inner_hero ul li::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-weight: 900;
  right: -12px;
  top: 2px;
  font-size: 10px;
}
.inner_hero ul li:last-child::after {
  display: none;
}
.inner_hero .banner {
  position: relative;
  width: 100%;
  height: 350px;
  background: center/cover no-repeat;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.inner_hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.inner_hero .breadcrumb {
  font-size: 14px;
  z-index: 1;
  margin-right: auto;
  padding-left: 25px;
}
.inner_hero .breadcrumb a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.inner_hero .breadcrumb a:hover {
  opacity: 1;
}
.inner_hero .banner-content {
  z-index: 1;
  position: relative;
}
.inner_hero .banner-content .actions button {
  width: auto;
}
.inner_hero .action_links {
  margin-top: 15px;
}
.inner_hero .action_links li {
  margin-right: 0;
  padding: 0 6px;
  font-size: 16px;
  position: relative;
}
.inner_hero .action_links li::after {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 1px;
  height: 75%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.inner_hero .banner-content h1 {
  font-size: 52px;
  margin: 0;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  border-image-slice: 1;
  display: inline;
  position: relative;
}
.inner_hero .banner-content h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 200px);
  height: 1px;
  background: #fff;
}
.inner_hero .banner-content p {
  font-size: 18px;
  margin: 10px 0 0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .inner_hero .banner {
    height: 300px;
  }
  .inner_hero .banner-content h1 {
    font-size: 36px;
  }
  .inner_hero .breadcrumb {
    font-size: 12px;
  }
}

.listing {
  padding: 60px 0;
  padding-bottom: 30px;
  background-color: #f3f3f3;
  padding-top: 40px;
}
.listing .head_box {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
}
.listing .filter_ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.listing .filter_ul .span {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 15px;
  font-weight: 400;
  color: #888;
  cursor: pointer;
}
.listing .filter_ul .span img {
  margin-right: 8px;
}
.listing .filter_ul .more_filter_card {
  display: none;
  position: absolute;
  top: 60px;
  right: 0;
  max-width: 850px;
  width: 100%;
  background-color: #fff;
  padding: 30px;
  z-index: 1000;
}
.listing .filter_ul .more_filter_card h5 {
  font-size: 15px;
  color: #071c1f;
  font-weight: 400;
  padding-bottom: 20px;
}
.listing .filter_ul .more_filter_card .form-check {
  margin-bottom: 10px;
}
.listing .filter_ul .more_filter_card .form-check input {
  border-radius: 0;
}
.listing .filter_ul .more_filter_card .form-check label {
  font-size: 15px;
  color: #6c6c6c;
  font-weight: 400;
  margin-bottom: 0 !important;
  line-height: 25px;
}
.listing .filter_ul .more_filter_card .min {
  font-size: 13px;
  color: #696969;
  background-color: #f2f2f2;
  border-radius: 15px;
  padding: 8px 12px;
  display: inline-block;
}
.listing .filter_ul .more_filter_card ul li {
  font-size: 15px;
  color: #6c6c6c;
  font-weight: 400;
  margin-bottom: 8px;
}
.listing .filter_ul .filter_li {
  width: 20%;
  background-color: #fff;
  border-right: 1px solid #e6e6e6;
  padding: 0 20px;
}
.listing .filter_ul .filter_li button {
  display: flex !important;
  justify-content: start;
  align-items: center;
}
.listing .filter_ul .filter_li button i {
  color: #bb2026;
  font-size: 10px;
  margin-left: 80px;
}
.listing .filter_ul .filter_li .more_option {
  border: 0;
  display: block;
  line-height: 42px;
  width: 100%;
  padding-left: 5px;
  font-size: 15px;
  padding-top: 0;
  padding-bottom: 0;
  color: #4b4b4b;
  background-color: #fff;
  text-align: left;
}
.listing .filter_ul .filter_li .more_option span {
  font-size: 15px;
  color: #4b4b4b;
}
.listing .filter_ul .filter_li .select_box {
  display: flex;
  align-items: center;
  justify-content: start;
}
.listing .filter_ul .filter_li.budget {
  position: relative;
}
.listing .filter_ul .filter_li.budget ul li {
  display: none;
}
.listing .filter_ul .filter_li.budget .slider_box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 10px;
  z-index: 10;
  display: none;
}
.listing .list_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.listing .list_head h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 0;
  color: #000;
}
.listing .list_head h2 span {
  font-size: 24px;
  font-weight: 400;
  color: #1a1a1a;
}
.listing .list_head span {
  font-size: 15px;
  color: #888;
}
.listing .short {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.listing .short li {
  font-size: 15px;
  color: #4b4b4b;
}
.listing .short li button {
  background-color: transparent;
  border: 0;
  font-size: 15px;
  color: #4b4b4b;
}
.listing .short li button:hover {
  color: #bb2026;
}
.listing .short_by {
  margin-left: auto;
  width: 160px;
  float: none;
}

/*----------------------------------------*/
/*            listing CSS
/*----------------------------------------*/
/*----------------------------------------*/
/*            details CSS
/*----------------------------------------*/
.prop_details {
  padding-top: 20px;
  position: relative;
}
.prop_details .top_section video {
  max-width: 250px;
  width: 100%;
}
.prop_details .top_section button {
  width: auto;
  padding: 8px 12px;
  height: auto;
  font-size: 12px;
  font-weight: 400;
  margin-left: 6px;
  background-color: #fff;
  color: #656565;
  border: 1px solid #edecec;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.prop_details .top_section button:hover {
  color: #bb2026;
  border-color: #bb2026;
}
.prop_details .details_slider {
  position: relative;
  overflow: hidden;
}
.prop_details .details_slider .mySwiper2 {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.prop_details .details_slider .mySwiper2 img {
  width: 100%;
  height: 100%;
}
.prop_details .details_slider .mySwiper2 .sl_btn {
  color: #fff;
  background-color: #bb2026;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 100%;
  padding: 10px;
  height: 40px;
}
.prop_details .details_slider .mySwiper2 .sl_btn::after {
  font-size: 20px;
}
.prop_details .details_slider .mySwiper .swiper-slide {
  width: 100%;
  aspect-ratio: 3/2;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}
.prop_details .details_slider .mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.prop_details .fixeed {
  position: fixed;
  top: 20px;
  background-color: #fff;
  z-index: 10;
}
.prop_details .side_bar {
  position: fixed;
  width: 100%;
  z-index: 1000;
}
.prop_details .side_bar span.wpcf7-form-control.wpcf7-radio {
  display: flex;
  justify-content: center;
  align-items: center;
}
.prop_details .side_bar span.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label {
  font-size: 12px;
  text-align: center;
  width: 100%;
  display: block;
}
.prop_details .side_bar .card {
  background-color: #fff;
  padding: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.prop_details .side_bar .offer_box {
  border: 2px dashed #bb2026;
  border-radius: 15px;
}
.prop_details .side_bar .offer_box img {
  border-radius: 10px;
  overflow: hidden;
}
.prop_details .side_bar .contact_form h3 {
  margin-bottom: 10px;
  text-align: center;
  background-color: #bb2026;
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
  text-transform: math-auto;
}
.prop_details .side_bar .contact_form p {
  margin-bottom: 10px !important;
}
.prop_details .side_bar .contact_form input {
  background-color: #f6f6f6 !important;
  border-radius: 0 !important;
  border: none !important;
  max-width: 100% !important;
  width: 100% !important;
  font-size: 12px !important;
  line-height: 15px !important;
  padding: 14px 10px !important;
  font-weight: 400;
}
.prop_details .side_bar .contact_form input::-moz-placeholder {
  font-size: 12px !important;
}
.prop_details .side_bar .contact_form input::placeholder {
  font-size: 12px !important;
}
.prop_details .side_bar .contact_form textarea {
  background-color: #f6f6f6 !important;
  border-radius: 0 !important;
  margin-bottom: 15px !important;
  border: none !important;
  resize: none;
  height: 130px;
  padding: 10px !important;
  font-weight: 400;
}
.prop_details .side_bar .contact_form textarea::-moz-placeholder {
  font-size: 12px !important;
}
.prop_details .side_bar .contact_form textarea::placeholder {
  font-size: 12px !important;
}
.prop_details .side_bar .contact_form textarea:focus {
  outline: none;
  box-shadow: none;
}
.prop_details .side_bar .contact_form .in_btn {
  margin: auto;
  width: 100%;
  padding: 5px;
  height: 35px;
}
.prop_details .side_bar button {
  padding: 5px;
  height: 35px;
  margin-top: 0 !important;
}
.prop_details .contact_opener {
  position: fixed;
  right: 10px;
  bottom: 100px;
  z-index: 99;
}
.prop_details .contact_opener button {
  background-color: #bb2026;
  border: 0;
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.prop_details .contact_opener button i {
  color: #fff;
}
.prop_details .contact_opener button:hover {
  background-color: #000;
}

.calculator {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
}
.calculator h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #bb2026;
  font-size: 2rem;
  letter-spacing: 1px;
}
.calculator .form-group {
  margin-bottom: 20px;
}
.calculator .form-group .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.calculator .form-group .box .right {
  display: flex;
  align-items: center;
}
.calculator .form-group .box .right p {
  margin: 0;
  background-color: #bb2026;
  color: white;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  border-bottom-left-radius: 4px;
}
.calculator .form-group .box .right .tenure-switch {
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: #f7f7f7;
  padding-left: 10px;
  border-radius: 4px;
}
.calculator .form-group .box .right .tenure-switch input {
  margin-right: 5px;
  accent-color: #bb2026;
}
.calculator .form-group .box .right .tenure-switch label {
  margin-right: 10px;
  margin-bottom: 0;
  cursor: pointer;
  color: #333;
}
.calculator .form-group .box .right #loan-term-value {
  max-width: 60px;
  height: 35px;
  padding: 2px;
  text-align: center;
  border: 1px solid #bb2026;
  border-top-right-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #bb2026;
  font-weight: bold;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.05);
}
.calculator .form-group .box .right #interest-rate-value {
  max-width: 60px;
  height: 35px;
  padding: 2px;
  text-align: center;
  border: 1px solid #bb2026;
  border-top-right-radius: 4px;
  color: #bb2026;
  font-weight: bold;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.05);
}
.calculator #loan-amount-value {
  max-width: 130px;
  height: 35px;
  border: 1px solid #bb2026;
  border-top-right-radius: 4px;
  color: #bb2026;
  font-weight: normal;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.05);
}
.calculator input[type=range] {
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  height: 6px;
  background: #f7f7f7;
  border-radius: 4px;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.05);
}
.calculator input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #bb2026;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.calculator input[type=range]::-webkit-slider-thumb:hover {
  background: rgb(143.4520547945, 24.5479452055, 29.1506849315);
}
.calculator input[type=range]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #bb2026;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  -moz-transition: background 0.3s;
  transition: background 0.3s;
}
.calculator input[type=range]::-moz-range-thumb:hover {
  background: rgb(143.4520547945, 24.5479452055, 29.1506849315);
}
.calculator #results {
  padding: 25px;
  border-radius: 12px;
  background: #f7f7f7;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-family: "Roboto", sans-serif;
}
.calculator #results h2 {
  text-align: center;
  color: #bb2026;
  margin-bottom: 25px;
  letter-spacing: 1px;
  font-size: 14px;
}
.calculator #results .calculation-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  background: white;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.calculator #results .calculation-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.calculator #results .calculation-item .label {
  font-size: 12px;
  color: #666;
}
.calculator #results .calculation-item .value {
  font-size: 18px;
  font-weight: bold;
  color: #bb2026;
}
.calculator label {
  display: flex;
  margin-bottom: 10px;
  font-weight: bold;
  color: #bb2026;
}
.calculator button {
  width: 100%;
  padding: 15px;
  color: white;
  background: #bb2026;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
  transition: background 0.3s;
}
.calculator button:hover {
  background: rgb(143.4520547945, 24.5479452055, 29.1506849315);
}
.calculator canvas {
  margin-top: 25px;
}

.property-details {
  max-width: 1200px;
  margin: 20px auto;
  background-color: #fff;
  padding: 20px 0;
  border-radius: 8px;
  margin-top: 0;
}

.title {
  font-size: 2em;
  margin-bottom: 10px;
}

.developer,
.property-type {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.section {
  margin-bottom: 30px;
}

h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.amenities ul,
.specifications ul {
  list-style-type: disc;
  padding-left: 20px;
}

.gallery .images,
.gallery .videos,
.gallery .construction-images {
  display: flex;
  gap: 10px;
}
.gallery img,
.gallery video {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.actions ul li:after {
  display: none;
}
.actions ul li:nth-child(2) {
  position: relative;
}
.actions ul li:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 25px;
  background-color: #fff;
  display: block;
}
.actions .enquiry-form,
.actions .share-buttons {
  flex: 1 1 100%;
}
.actions .enquiry-form h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.actions .enquiry-form form {
  display: flex;
  flex-direction: column;
}
.actions .enquiry-form form input,
.actions .enquiry-form form textarea {
  margin-bottom: 10px;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.actions .enquiry-form form button[type=submit] {
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.actions .enquiry-form form button[type=submit]:hover {
  background-color: #0056b3;
}
.actions .share-buttons h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.actions .share-buttons .social-media {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.actions .share-buttons .social-media a {
  padding: 10px 20px;
  font-size: 1em;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.actions .share-buttons .social-media a.facebook {
  background-color: #3b5998;
}
.actions .share-buttons .social-media a.facebook:hover {
  background-color: #2d4373;
}
.actions .share-buttons .social-media a.twitter {
  background-color: #1da1f2;
}
.actions .share-buttons .social-media a.twitter:hover {
  background-color: #0d8af1;
}
.actions .share-buttons .social-media a.linkedin {
  background-color: #0077b5;
}
.actions .share-buttons .social-media a.linkedin:hover {
  background-color: #005f91;
}
.actions .share-buttons .social-media a.email {
  background-color: #ff7f50;
}
.actions .share-buttons .social-media a.email:hover {
  background-color: #ff6347;
}
.actions button {
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.actions button.book-visit {
  background-color: #28a745;
  color: #fff;
}
.actions button.book-visit:hover {
  background-color: #218838;
}
.actions button.download-brochure {
  background-color: #ffc107;
  color: #212529;
}
.actions button.download-brochure:hover {
  background-color: #e0a800;
}

.enquiry-form h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}
.enquiry-form form {
  display: flex;
  flex-direction: column;
}
.enquiry-form form input,
.enquiry-form form textarea {
  margin-bottom: 10px !important;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: none;
}
.enquiry-form form button[type=submit] {
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
.enquiry-form form button[type=submit]:hover {
  background-color: #0056b3;
}

.details {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}
.details .details_inner .in_btn {
  width: auto;
  padding: 8px 12px;
  height: auto;
  font-size: 12px;
  font-weight: 400;
  margin-left: 6px;
  background-color: transparent;
  color: #656565;
}
.details h6 {
  font-size: 24px;
  color: #000000;
  font-weight: 600;
  z-index: 10;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 8px;
}
.details h5 {
  margin-top: 10px;
  font-size: 20px;
  color: #000000;
  font-weight: 600;
  text-align: center;
}
.details .const {
  margin-top: 20px;
}
.details p {
  font-size: 14px;
  line-height: 24px;
  color: #656565;
  font-weight: 400;
  text-align: center;
}
.details .mega_details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
}
.details .mega_details .sub_mega {
  width: 33.33%;
}
.details .mega_details .sub_mega p {
  font-size: 18px;
  color: #000000;
  font-weight: 600;
  margin-top: 20px;
}
.details .mega_details .sub_mega .sub_details li span {
  font-size: 16px;
  line-height: 30px;
  color: #656565;
  font-weight: 400;
}
.details .price {
  display: block;
  font-size: 16px;
  line-height: 30px;
  color: #000000;
  font-weight: 600;
}

.feature {
  padding-bottom: 40px !important;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  margin-top: 20px;
  filter: drop-shadow(1.928px 2.298px 12px rgba(13, 0, 23, 0.08));
}
.feature .nav-link:hover {
  color: #bb2026 !important;
}
.feature .nav-link.active {
  color: #bb2026 !important;
}
.feature .nav-link {
  color: #23446b !important;
  font-weight: 500;
  font-size: 14px;
}
.feature .tab-content .img_box {
  position: relative;
}
.feature .tab-content .img_box .blrd_img {
  filter: blur(2px);
}
.feature .tab-content .img_box .login_btn {
  position: absolute;
  display: block;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  text-transform: capitalize;
  font-size: 12px;
}
.feature .tab-content .img_box::after {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.5058823529);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.feature .tab-content .img_box:hover .login_btn {
  opacity: 1;
  visibility: visible;
}
.feature .tab-content .img_box:hover::after {
  opacity: 1;
  visibility: visible;
}
.feature .tab-content .img_box_login {
  position: relative;
}
.feature .tab-content .img_box_login .blrd_img {
  filter: blur(2px);
}
.feature .tab-content .img_box_login .login_btn {
  position: absolute;
  display: block;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  text-transform: capitalize;
}
.feature h6 {
  font-size: 20px;
  color: #000000;
  font-weight: 600;
  z-index: 10;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 12px;
}
.feature::after {
  position: absolute;
  content: "";
  background-color: #f4f4f4;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
}
.feature ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  margin-top: 40px;
}
.feature ul li {
  padding-bottom: 10px;
  width: 33.33%;
}
.feature .floor-plans {
  margin-top: 40px;
}
.feature .gallery {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 0;
}
.feature .gallery .card .card-image {
  height: 100%;
}
.feature .gallery .card a {
  height: 100%;
}
.feature .gallery .card a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature.details_sec p {
  font-weight: 700 !important;
}
.feature.details_sec p span {
  font-weight: 400;
}
.feature.amenity ul {
  list-style: disc !important;
}
.feature.amenity ul li {
  width: 40%;
  margin-left: 50px;
}
.feature.location_sec {
  padding-bottom: 0px !important;
}
.feature.location_sec .area-container {
  background-color: #fff;
  padding: 0px;
  border-radius: 10px;
  padding-top: 40px;
}
.feature.location_sec .area-container .area-card {
  background-color: #fff;
  border-radius: 0px;
  padding: 0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  padding-top: 10px;
}
.feature.location_sec .area-container .area-card iframe {
  width: 100%;
}
.feature.location_sec .area-container .area-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  background-color: #333;
  border-radius: 50%;
  display: inline-flex;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.feature.location_sec .area-container .area-card h5 {
  color: #333;
  font-size: 16px;
  margin-bottom: 0;
}
.feature.location_sec .area-container .area-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}
.feature.location_sec .area-container .area-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: #333;
  font-size: 12px;
  border-bottom: 1px solid #999999;
  transition: color 0.3s ease;
  width: 100%;
}
.feature.location_sec .area-container .area-card ul li:last-child {
  border-bottom: none;
}
.feature.location_sec .area-container .area-card ul li:hover {
  color: #bb2026;
}
.feature.location_sec .area-container .area-card ul li span {
  font-weight: 500;
  text-align: start;
  width: 75%;
}
.feature.location_sec .area-container .area-card ul li em {
  font-style: normal;
  color: #666666;
}
.feature.price_sec #outreach4 {
  border-radius: 0px;
}
.feature.price_sec #outreach4 .pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.feature.price_sec #outreach4 .pricing-container .property-card h5 {
  font-size: 16px;
  color: #656565;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.feature.price_sec #outreach4 .pricing-container .property-card h5 .icon {
  width: 24px;
  height: 24px;
  background-color: rgb(223.6575342466, 71.8424657534, 77.7191780822);
  margin-right: 10px;
  border-radius: 50%;
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
  display: none;
}
.feature.price_sec #outreach4 .pricing-container .property-card .size-price,
.feature.price_sec #outreach4 .pricing-container .property-card .price {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
  text-align: start;
}
.feature.price_sec #outreach4 .pricing-container .property-card .price {
  font-weight: bold;
  color: #333;
}
.feature.price_sec #outreach4 .info-card p {
  margin: 0;
  font-weight: 400;
  text-align: start;
}
.feature.price_sec #outreach4 .info-card p span {
  font-weight: 700;
}

.pdb {
  border-radius: 20px;
  background-color: #ffffff;
  padding: 35px 20px;
}

.red-ftr {
  margin-top: 20px;
}
.red-ftr .red-ftr-flx {
  margin-top: 10px;
}
.red-ftr .red-ftr-flx .box-re {
  margin-top: 10px;
}
.red-ftr .red-ftr-flx .bx-pic {
  text-align: center;
}
.red-ftr .red-ftr-flx .bx-pic img {
  width: 35px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
.red-ftr .red-ftr-flx .bx-txt h4 {
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  margin-top: 10px;
}

.overview .area-in {
  border-radius: 8px;
  margin-top: 40px;
}
.overview .area-ott {
  background-color: #fff;
}
.overview .area-ott ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.overview .area-ott ul li {
  font-size: 13px;
  color: #a4a0a0;
  margin-bottom: 10px;
  width: 50%;
  padding: 5px 10px;
}
.overview .area-ott ul li i {
  color: #eb1b23;
  margin-right: 8px;
}
.overview .area-ott ul li span {
  font-weight: 400;
  color: #000;
  display: block;
}

.specification .red-ftr {
  background-color: #fff;
  border-radius: 8px;
}
.specification .area-ott {
  padding: 15px;
  padding-left: 30px;
}
.specification .area-ott h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 700;
}
.specification .area-ott ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}
.specification .area-ott ul li {
  font-size: 14px;
  color: #333;
  width: 100%;
}
.specification .area-ott ul li i {
  color: #eb1b23;
  margin-right: 8px;
}
.specification .area-ott ul li em {
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
}
.specification .area-ott ul li b {
  font-weight: 400;
  color: #000;
  font-size: 12px;
}

.search-bar .nice-select {
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-pills {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.custom-pills .nav-item {
  width: auto;
  padding-bottom: 0;
}
.custom-pills .nav-item .nav-link {
  width: auto;
  padding: 8px 12px;
  height: auto;
  font-size: 14px;
  font-weight: 400;
  margin-left: 6px;
  border-radius: 100px;
  background-color: #fff;
  color: #585858 !important;
  border: 1px solid;
}
.custom-pills .nav-item .nav-link:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #bb2026 !important;
  border: 1px solid;
}
.custom-pills .nav-item .nav-link.active {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #bb2026 !important;
  border: 1px solid;
}

/*----------------------------------------*/
/*            details CSS
/*----------------------------------------*/
/*loader css*/
.property_loader {
  background-color: rgba(0, 0, 0, 0.3490196078);
  position: fixed;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  opacity: 0;
  visibility: hidden;
}
.property_loader.l_show {
  opacity: 1;
  visibility: visible;
}
.property_loader .dot-spinner {
  --uib-size: 2.8rem;
  --uib-speed: 0.9s;
  --uib-color: #bb2026;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--uib-size);
  width: var(--uib-size);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.property_loader .dot-spinner__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}
.property_loader .dot-spinner__dot::before {
  content: "";
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background-color: var(--uib-color);
  transform: scale(0);
  opacity: 0.5;
  animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
  box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}
.property_loader .dot-spinner__dot:nth-child(2) {
  transform: rotate(45deg);
}
.property_loader .dot-spinner__dot:nth-child(2)::before {
  animation-delay: calc(var(--uib-speed) * -0.875);
}
.property_loader .dot-spinner__dot:nth-child(3) {
  transform: rotate(90deg);
}
.property_loader .dot-spinner__dot:nth-child(3)::before {
  animation-delay: calc(var(--uib-speed) * -0.75);
}
.property_loader .dot-spinner__dot:nth-child(4) {
  transform: rotate(135deg);
}
.property_loader .dot-spinner__dot:nth-child(4)::before {
  animation-delay: calc(var(--uib-speed) * -0.625);
}
.property_loader .dot-spinner__dot:nth-child(5) {
  transform: rotate(180deg);
}
.property_loader .dot-spinner__dot:nth-child(5)::before {
  animation-delay: calc(var(--uib-speed) * -0.5);
}
.property_loader .dot-spinner__dot:nth-child(6) {
  transform: rotate(225deg);
}
.property_loader .dot-spinner__dot:nth-child(6)::before {
  animation-delay: calc(var(--uib-speed) * -0.375);
}
.property_loader .dot-spinner__dot:nth-child(7) {
  transform: rotate(270deg);
}
.property_loader .dot-spinner__dot:nth-child(7)::before {
  animation-delay: calc(var(--uib-speed) * -0.25);
}
.property_loader .dot-spinner__dot:nth-child(8) {
  transform: rotate(315deg);
}
.property_loader .dot-spinner__dot:nth-child(8)::before {
  animation-delay: calc(var(--uib-speed) * -0.125);
}
@keyframes pulse0112 {
  0%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

.main_body_um {
  background-color: #1a1a1a;
  padding: 50px 0;
  color: #f1f1f1;
}
.main_body_um .container .row .col-md-12 {
  display: flex;
  justify-content: center;
}
.main_body_um .container .row .col-md-12 article {
  background: #2c2c2c;
  border-radius: 8px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.main_body_um .container .row .col-md-12 article .entry-header .entry-title {
  color: #bb2026;
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 600;
}
.main_body_um .container .row .col-md-12 article .entry-content .um-form .um-row {
  margin: 0 0 20px 0;
}
.main_body_um .container .row .col-md-12 article .entry-content .um-form .um-row .um-col-1 .um-field-label label {
  color: white;
  font-weight: bold;
  font-size: 1rem;
}
.main_body_um .container .row .col-md-12 article .entry-content .um-form .um-row .um-col-1 .um-field-area input {
  background: #2c2c2c;
  border: 1px solid #444;
  padding: 12px;
  color: #f1f1f1;
  width: 100%;
  border-radius: 4px;
  transition: border-color 0.3s ease;
  margin-bottom: 20px;
}
.main_body_um .container .row .col-md-12 article .entry-content .um-form .um-row .um-col-1 .um-field-area input::-moz-placeholder {
  color: #f1f1f1;
}
.main_body_um .container .row .col-md-12 article .entry-content .um-form .um-row .um-col-1 .um-field-area input::placeholder {
  color: #f1f1f1;
}
.main_body_um .container .row .col-md-12 article .entry-content .um-form .um-row .um-col-1 .um-field-area input:focus {
  outline: none;
  border-color: #bb2026;
}
.main_body_um .container .row .col-md-12 article .entry-content .um-form .um-col-alt {
  justify-content: space-between;
  margin-top: 30px;
}
.main_body_um .container .row .col-md-12 article .entry-content .um-form .um-col-alt .um-button {
  background: linear-gradient(45deg, #bb2026, #ff4e50);
  color: #fff;
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: bold;
  text-transform: math-auto;
  text-decoration: none;
  transition: background 0.3s ease;
}
.main_body_um .container .row .col-md-12 article .entry-content .um-form .um-col-alt .um-button:hover {
  background: linear-gradient(45deg, #ff4e50, #bb2026);
}
.main_body_um .container .row .col-md-12 article .entry-content .um-form .um-col-alt .um-alt {
  background: transparent;
  color: #f1f1f1;
  padding: 12px 25px;
  border: 1px solid #f1f1f1;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.main_body_um .container .row .col-md-12 article .entry-content .um-form .um-col-alt .um-alt:hover {
  background: linear-gradient(45deg, #ff4e50, #bb2026);
  color: #fff;
  border-color: transparent;
}

.um-toggle-password {
  cursor: pointer;
  color: white;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.pagination .page-numbers {
  display: inline-block;
  margin: 0 5px;
  padding: 10px 15px;
  text-decoration: none;
  color: #555;
  background-color: #f7f7f7;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
  font-weight: bold;
}
.pagination .page-numbers:hover {
  background-color: #bb2026;
  color: #fff;
}
.pagination .current {
  background-color: #bb2026;
  color: #fff;
  cursor: default;
}
.pagination .next,
.pagination .prev {
  font-weight: bold;
}

.post_body h4 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #2c2c2c;
  font-weight: 700;
  border-bottom: 2px solid rgba(71, 66, 66, 0.3);
  padding-bottom: 10px;
  background: linear-gradient(to right, #f9f9f9, #eaeaea);
  padding: 10px 20px;
  border-radius: 5px;
}
.post_body ul {
  list-style: none;
}
.post_body ul li {
  position: relative;
  margin-bottom: 15px;
  padding: 10px 15px;
  border-radius: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background: #f5f5f5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.post_body ul li:hover {
  transform: translateX(5px);
  background-color: #f0f0f0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.post_body ul li a {
  text-decoration: none;
  color: rgba(71, 66, 66, 0.85);
  font-weight: 400;
  transition: color 0.3s, font-weight 0.3s;
}
.post_body ul li a:hover {
  color: #bb2026;
  font-weight: 500;
}

.mn_blg_rep_jrnl {
  padding: 3rem 0;
  background-color: #f9f9f9;
}
.mn_blg_rep_jrnl .container .row .col-md-12 h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
  border-bottom: 3px solid #bb2026;
  padding-bottom: 10px;
}
.mn_blg_rep_jrnl .container .row .col-md-12 p {
  font-size: 14px;
  color: #111;
  margin-bottom: 20px;
}
.mn_blg_rep_jrnl .container .row .col-md-12 ul.social {
  list-style: none;
  padding-left: 0;
  display: flex;
}
.mn_blg_rep_jrnl .container .row .col-md-12 ul.social li {
  margin-right: 10px;
}
.mn_blg_rep_jrnl .container .row .col-md-12 ul.social li a {
  color: #555;
  font-size: 20px;
  transition: color 0.3s;
}
.mn_blg_rep_jrnl .container .row .col-md-12 ul.social li a:hover {
  color: #bb2026;
}
.mn_blg_rep_jrnl .container .row .col-md-12 img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.mn_blg_rep_jrnl .container .row .col-md-12 .blog_details p {
  font-size: 16px;
  line-height: 1.7;
  color: #111;
  margin-bottom: 20px;
}
.mn_blg_rep_jrnl .container .row .col-md-12 .blog_details p:last-of-type {
  margin-bottom: 0;
}
.mn_blg_rep_jrnl .container .row .col-md-12 .disclaimer {
  background-color: #f1f1f1;
  padding: 15px;
  border-left: 4px solid #bb2026;
  margin-top: 30px;
}
.mn_blg_rep_jrnl .container .row .col-md-12 .disclaimer p {
  font-size: 14px;
  color: #666;
}
.mn_blg_rep_jrnl .container .row .col-md-12 .disclaimer p b {
  color: #bb2026;
}

.modal br {
  display: none;
}
.modal .wpcf7-spinner {
  position: absolute;
}
.modal .modal-header {
  padding: 5px 15px;
}
.modal .modal-header .modal-title {
  font-size: 16px;
}
.modal input {
  background-color: #f6f6f6 !important;
  border-radius: 0 !important;
  border: none !important;
  max-width: 100% !important;
  width: 100% !important;
  font-size: 12px !important;
  line-height: 15px !important;
  padding: 10px !important;
}
.modal input::-moz-placeholder {
  font-size: 12px !important;
}
.modal input::placeholder {
  font-size: 12px !important;
}

.in_btn.dnld_btn {
  background-color: #bb2026 !important;
  color: #fff;
  height: 35px;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  color: red;
  font-size: 10px;
  margin-top: 0;
  display: block;
  font-weight: 400;
  margin-bottom: 5px;
}

.screen-reader-response ul {
  padding-left: 20px;
  list-style-type: disc;
}
.screen-reader-response ul li {
  color: #bb2026;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: bold;
}
.screen-reader-response p[role=status] {
  color: #bb2026;
  font-weight: bold;
}

.wpcf7-response-output {
  color: red;
  font-weight: 400;
  margin: 0 !important;
  padding: 5px !important;
  font-size: 12px;
}

.offers_wrap_in {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.offers_wrap_in .spl-title.va-top {
  font-size: 12px;
  font-weight: 600;
}
.offers_wrap_in ul.va-top.reset-ul.offer-ul {
  font-size: 10px;
  display: block;
  margin-bottom: 5px;
  width: 100%;
}
.offers_wrap_in .spl-txt-wrap.va-middle {
  padding-left: 10px;
}

.gal_li {
  border-bottom: 2px solid transparent;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.gal_li:hover {
  border-bottom: 2px solid #bb2026;
}
.gal_li:hover a {
  color: #bb2026 !important;
}
#nav-tabContent .img_box {
  position: relative;
  aspect-ratio: 3/2;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  -o-object-fit: cover;
     object-fit: cover;
}

#nav_tab {
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  border: 1px solid #edecec;
  border-radius: 50px;
  overflow: hidden;
}
#nav_tab li {
  border-right: 1px solid #edecec;
  text-align: center;
  width: 14.2857142857%;
}
#nav_tab li.active {
  border-bottom: 2px solid #bb2026;
}
#nav_tab li:last-child {
  border-right: 0;
}

.project_rera span {
  white-space: nowrap;
}

.modal-dialog {
  margin: 1.75rem auto;
}

.modal-content {
  border-radius: 10px;
  border: none;
}

.modal-header {
  background-color: #bb2026;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
.modal-header h1 {
  font-size: 1.25rem;
  margin: 0;
}
.modal-header p {
  font-size: 1rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

.cnct_modal .wpcf7-list-item {
  margin: 0;
  padding: 5px 15px;
}
.cnct_modal .wpcf7-list-item label {
  margin-bottom: 0;
}
.cnct_modal .wpcf7-spinner {
  position: relative !important;
}
.cnct_modal .modal-dialog {
  max-width: 420px;
  margin: 2rem auto;
}
.cnct_modal .modal-content {
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border: none;
}
.cnct_modal .modal-header {
  background-color: #bb2026;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
}
.cnct_modal .modal-header h1 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
  text-transform: math-auto;
}
.cnct_modal .modal-header p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  font-weight: 500;
}
.cnct_modal .modal-body {
  padding: 1.5rem;
}
.cnct_modal .modal-body form .row {
  margin-bottom: 1rem;
}
.cnct_modal .modal-body form input,
.cnct_modal .modal-body form select,
.cnct_modal .modal-body form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px !important;
  border: 1px solid #e6e6e6 !important;
  background-color: #f6f6f6;
  color: #333;
  margin-bottom: 0;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: none;
}
.cnct_modal .modal-body form input::-moz-placeholder, .cnct_modal .modal-body form select::-moz-placeholder, .cnct_modal .modal-body form textarea::-moz-placeholder {
  color: #999 !important;
  font-size: 14px !important;
}
.cnct_modal .modal-body form input::placeholder,
.cnct_modal .modal-body form select::placeholder,
.cnct_modal .modal-body form textarea::placeholder {
  color: #999 !important;
  font-size: 14px !important;
}
.cnct_modal .modal-body form input:focus,
.cnct_modal .modal-body form select:focus,
.cnct_modal .modal-body form textarea:focus {
  border-color: #bb2026;
  box-shadow: 0px 0px 5px rgba(187, 32, 38, 0.3);
  outline: none;
}
.cnct_modal .modal-body form textarea {
  height: 100px;
}
.cnct_modal .modal-body form .wpcf7-radio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #edecec;
  border-radius: 15px;
}
.cnct_modal .modal-body form .wpcf7-radio label {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
.cnct_modal .modal-body form .wpcf7-radio label input {
  margin-right: 0.5rem !important;
  margin: 0;
}
.cnct_modal .modal-body form .wpcf7-submit {
  width: 100%;
  background-color: #bb2026 !important;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: math-auto;
  letter-spacing: 0.5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.cnct_modal .modal-body form .wpcf7-submit:hover {
  background-color: rgb(143.4520547945, 24.5479452055, 29.1506849315);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.cnct_modal .modal-body form .wpcf7-submit i {
  margin-left: 0.5rem;
  font-size: 1.2rem;
}
.cnct_modal .modal-body form .cta-box {
  background-color: #bb2026;
  color: #fff;
  padding: 0.75rem;
  text-align: center;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.cnct_modal .modal-body form .cta-box:hover {
  background-color: rgb(143.4520547945, 24.5479452055, 29.1506849315);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.cnct_modal .modal-body form .cta-box.get-offer {
  margin-top: 0.75rem;
}
.cnct_modal .modal-body form .cta-box i {
  margin-left: 0.5rem;
  font-size: 1.2rem;
}
.cnct_modal .modal-body form .info-box {
  display: flex;
  align-items: center;
  background-color: #f6f6f6;
  border: 1px solid #e6e6e6 !important;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.cnct_modal .modal-body form .info-box .icon {
  width: 50px;
  margin-right: 1rem;
}
.cnct_modal .modal-body form .info-box .info-text {
  font-size: 0.875rem;
  color: #333;
}
.cnct_modal .modal-body form .info-box .info-text strong {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.listing_search_btn {
  background-color: #fff;
  border: none;
  color: #bb2026;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  aspect-ratio: 1;
  width: 43px;
}
.listing_search_btn:hover {
  color: #333;
}

/**--------------------------------------------------------
         Teams Page Design Tanmoy (01.10.2024)
*/
.card {
  height: 100%;
}
.card .img-bxx img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.prsn-desc {
  text-align: center;
  padding: 15px;
}
.prsn-desc h3 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
}
.prsn-desc p {
  font-size: 14px;
}
.prsn-desc .rd_more_btn {
  background-color: #bb2026;
  margin: auto;
  width: 100%;
  height: 35px;
  line-height: 33px;
  border-radius: 30px;
  color: #fff;
  width: 150px;
  display: block;
  border: 2px solid #bb2026;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  margin-top: 15px;
}
.prsn-desc .rd_more_btn i {
  margin-left: 10px;
}
.prsn-desc .rd_more_btn:hover {
  border: 2px solid #bb2026;
  background-color: transparent;
  color: #000;
}
.prsn-desc .social-lnk {
  display: flex;
  justify-content: center;
}
.prsn-desc .social-lnk a {
  background-color: #bb2026;
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 100%;
  display: inline-block;
  display: grid;
  place-content: center;
}
.prsn-desc .social-lnk a i {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
}
.prsn-desc .social-lnk a:hover {
  opacity: 0.6;
}
.prsn-desc .social-lnk a:hover i {
  transform: rotate(360deg);
}

.modal-header {
  padding: 0 !important;
}

.modal-content {
  overflow: hidden;
}

.modal-body p {
  font-size: 14px;
}

.mdl_img {
  width: 50%;
}

.modal-title {
  padding: 15px;
  text-align: center;
  flex-grow: 1;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 20px !important;
}

.consent_dtls .wpcf7-list-item label {
  display: flex;
  align-items: start;
}
.consent_dtls .wpcf7-list-item label .con_chk {
  width: 10px !important;
  margin-right: 5px;
  margin-top: 3px;
}
.consent_dtls .wpcf7-list-item-label {
  font-size: 12px;
  line-height: 16px;
}

.about_us_main {
  padding: 30px 0;
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.9), #f0f0f0);
}
.about_us_main h3 {
  font-size: 24px;
  font-weight: 700;
  color: #bb2026;
  text-align: center;
  margin-bottom: 30px;
  text-transform: math-auto;
  letter-spacing: 2px;
  position: relative;
}
.about_us_main h3:after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background-color: #bb2026;
  margin: 20px auto 0;
}
.about_us_main h5 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  position: relative;
}
.about_us_main h5:before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #bb2026;
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 10px;
}
.about_us_main p {
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.about_us_main ul {
  padding-left: 50px;
  margin-bottom: 10px;
}
.about_us_main ul li {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  margin-bottom: 0;
  list-style: none;
  position: relative;
}
.about_us_main ul li:before {
  content: "•";
  color: #bb2026;
  font-weight: bold;
  color: #bb2026;
  font-size: 1.3rem;
  display: inline-block;
  width: 31px;
  margin-left: -27px;
  position: absolute;
  top: -6px;
}
.about_us_main .about-section {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.about_us_main .about-section:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.about_us_main .text-center {
  text-align: center;
}
.about_us_main:before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle at center, rgba(187, 32, 38, 0.3), transparent);
  border-radius: 50%;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
.about_us_main:after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center, rgba(187, 32, 38, 0.15), transparent);
  border-radius: 50%;
  z-index: 0;
  animation: float-reverse 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}
@keyframes float-reverse {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@media (max-width: 768px) {
  .about_us_main {
    padding: 70px 0;
  }
  .about_us_main h3 {
    font-size: 2.25rem;
  }
  .about_us_main h5 {
    font-size: 1.6rem;
  }
  .about_us_main p,
  .about_us_main li {
    font-size: 1.1rem;
  }
  .about_us_main .row {
    margin-bottom: 50px;
  }
  .about_us_main:before, .about_us_main:after {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 576px) {
  .about_us_main h3 {
    font-size: 1.75rem;
  }
  .about_us_main h5 {
    font-size: 1.25rem;
  }
  .about_us_main p,
  .about_us_main li {
    font-size: 1rem;
  }
  .about_us_main .row {
    margin-bottom: 40px;
  }
  .about_us_main:before, .about_us_main:after {
    width: 100px;
    height: 100px;
  }
}

.wo_hr_line .banner-content h1::after {
  width: calc(100% + 20px);
}

.page-id-276 .foot_comm_pg .container .mn_bdy_cnt {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-top: 20px;
}
.page-id-276 .foot_comm_pg .container .mn_bdy_cnt .wpcf7-form {
  font-size: 12px;
  color: #333;
}
.page-id-276 .foot_comm_pg .container .mn_bdy_cnt .wpcf7-form .wpcf7-form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 5px 10px;
  width: 100%;
  margin-bottom: 0;
  transition: border-color 0.3s;
  font-size: 12px;
}
.page-id-276 .foot_comm_pg .container .mn_bdy_cnt .wpcf7-form .wpcf7-form-control::-moz-placeholder {
  font-size: 12px;
  color: #aaa;
}
.page-id-276 .foot_comm_pg .container .mn_bdy_cnt .wpcf7-form .wpcf7-form-control::placeholder {
  font-size: 12px;
  color: #aaa;
}
.page-id-276 .foot_comm_pg .container .mn_bdy_cnt .wpcf7-form .wpcf7-form-control:focus {
  border-color: #bb2026;
  outline: none;
  box-shadow: 0 0 5px rgba(187, 32, 38, 0.5);
}
.page-id-276 .foot_comm_pg .container .mn_bdy_cnt .wpcf7-form .wpcf7-select {
  height: auto;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
}
.page-id-276 .foot_comm_pg .container .mn_bdy_cnt .wpcf7-form .wpcf7-textarea {
  min-height: 0;
  resize: none;
  height: 100px;
}
@media (max-width: 768px) {
  .page-id-276 .foot_comm_pg .container .mn_bdy_cnt .wpcf7-form .row {
    flex-direction: column;
  }
  .page-id-276 .foot_comm_pg .container .mn_bdy_cnt .wpcf7-form .col-md-6,
  .page-id-276 .foot_comm_pg .container .mn_bdy_cnt .wpcf7-form .col-md-4,
  .page-id-276 .foot_comm_pg .container .mn_bdy_cnt .wpcf7-form .col-md-12 {
    width: 100%;
  }
}
.page-id-276 .foot_comm_pg .container .mn_bdy_cnt .screen-reader-response {
  display: none;
}

.page-id-278 .foot_comm_pg {
  background-color: #f9f9f9;
  padding: 20px 0 !important;
}
.page-id-278 .foot_comm_pg .container .mn_bdy_cnt {
  background-color: #fff;
  border-radius: 8px;
  margin: 20px auto;
  padding: 20px;
}
.page-id-278 .foot_comm_pg .container .mn_bdy_cnt p {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #333;
}
.page-id-278 .foot_comm_pg .container .mn_bdy_cnt p a {
  color: #bb2026;
  text-decoration: underline;
  transition: color 0.3s;
}
.page-id-278 .foot_comm_pg .container .mn_bdy_cnt p a:hover {
  color: rgb(143.4520547945, 24.5479452055, 29.1506849315);
}
.page-id-278 .foot_comm_pg .container .mn_bdy_cnt b {
  color: #333;
}
.page-id-278 .cont_btn_car .in_btn {
  display: inline-block;
  width: 152px;
  padding: 15px 5px;
  border-radius: 30px;
  height: 43px;
}

.page-id-269 .foot_comm_pg {
  padding: 3rem 0;
}
.page-id-269 .foot_comm_pg .container .row .col {
  flex: 1;
}
.page-id-269 .foot_comm_pg .container .row .col .mn_bdy_cnt {
  background-color: #fff;
  padding: 2rem;
  margin-bottom: 2rem;
}
.page-id-269 .foot_comm_pg .container .row .col .mn_bdy_cnt span {
  font-size: 30px;
  color: #bb2026;
}
.page-id-269 .foot_comm_pg .container .row .col .mn_bdy_cnt p {
  margin-bottom: 10px;
}
.page-id-269 .foot_comm_pg .container .row .col .mn_bdy_cnt strong {
  color: #bb2026;
  font-weight: bold;
  font-size: 16px;
}
.page-id-269 .foot_comm_pg .container .row .col .mn_bdy_cnt > p:nth-of-type(n + 2) {
  color: #555;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .page-id-269 .foot_comm_pg {
    padding: 2rem 0;
  }
  .page-id-269 .foot_comm_pg .container {
    padding: 0 0.5rem;
  }
  .page-id-269 .foot_comm_pg .container .mn_bdy_cnt {
    padding: 1.5rem;
  }
}

.page-id-245 .foot_comm_pg .container .mn_bdy_cnt,
.page-id-253 .foot_comm_pg .container .mn_bdy_cnt {
  background-color: white;
  padding: 2rem;
  line-height: 1.6;
}
.page-id-245 .foot_comm_pg .container .mn_bdy_cnt h3,
.page-id-245 .foot_comm_pg .container .mn_bdy_cnt h4,
.page-id-253 .foot_comm_pg .container .mn_bdy_cnt h3,
.page-id-253 .foot_comm_pg .container .mn_bdy_cnt h4 {
  color: #bb2026;
  margin-bottom: 1rem;
}
.page-id-245 .foot_comm_pg .container .mn_bdy_cnt h3,
.page-id-253 .foot_comm_pg .container .mn_bdy_cnt h3 {
  font-size: 20px;
  font-weight: 600;
}
.page-id-245 .foot_comm_pg .container .mn_bdy_cnt h4,
.page-id-253 .foot_comm_pg .container .mn_bdy_cnt h4 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 1.5rem;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.5rem;
}
.page-id-245 .foot_comm_pg .container .mn_bdy_cnt p,
.page-id-253 .foot_comm_pg .container .mn_bdy_cnt p {
  color: #333;
  font-size: 12px;
  margin-bottom: 1.5rem;
  text-align: justify;
}
@media (max-width: 768px) {
  .page-id-245 .foot_comm_pg,
  .page-id-253 .foot_comm_pg {
    padding: 2rem 0;
  }
  .page-id-245 .foot_comm_pg .container,
  .page-id-253 .foot_comm_pg .container {
    padding: 0 0.5rem;
  }
}

.vendor_mn {
  margin: 50px 0;
  padding-top: 0;
  padding-bottom: 50px;
}
.vendor_mn p {
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}
.vendor_mn .row .col-md-3 a {
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.vendor_mn .row .col-md-3 a .cardbody {
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.vendor_mn .row .col-md-3 a .cardbody img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.vendor_mn .row .col-md-3 a .cardbody h6 {
  font-size: 1.1rem;
  color: #bb2026;
  margin-top: 0.75rem;
  font-weight: 700;
}
.vendor_mn .row .col-md-3 a .cardbody:hover {
  background-color: #f9f9f9;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .vendor_mn .col-md-3 {
    margin-bottom: 1.5rem;
  }
  .vendor_mn .col-md-3 .cardbody {
    padding: 1rem;
  }
  .vendor_mn .col-md-3 .cardbody img {
    width: 60px;
    height: 60px;
  }
  .vendor_mn .col-md-3 .cardbody h6 {
    font-size: 1rem;
  }
}

.page-id-1151 .banner-content span,
.page-id-1149 .banner-content span {
  font-weight: 700;
}
@media (max-width: 575px) {
  .page-id-1151 .inner_hero .banner-content h1,
  .page-id-1149 .inner_hero .banner-content h1 {
    font-size: 14px;
  }
}

.brokers_main {
  padding-top: 2rem;
}
.brokers_main .container .col-md-4 {
  text-align: center;
}
.brokers_main .container .col-md-4 img {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.brokers_main .container .col-md-4 h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #bb2026;
}
.brokers_main .container .col-md-12 {
  text-align: center;
}
.brokers_main .container .col-md-12 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}
.brokers_main .container .col-md-12 h2 strong {
  color: #bb2026;
}
.brokers_main .container .col-md-12 h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 1rem;
}
.brokers_main .container .col-md-12 p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem;
}

@media (max-width: 768px) {
  .brokers_main {
    padding: 2rem 0;
  }
  .brokers_main .col-md-4 {
    margin-bottom: 1.5rem;
  }
  .brokers_main .col-md-4 img {
    width: 80px;
    height: 80px;
  }
  .brokers_main .col-md-12 h2 {
    font-size: 2rem;
  }
  .brokers_main .col-md-12 p {
    font-size: 0.9rem;
  }
}
._in_home_btn {
  color: #fff;
  background-color: #bb2026;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 100%;
  padding: 10px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.offcanvas {
  right: 0;
  transform: translateX(100%);
  left: auto;
}

.offcanvas.show {
  transform: none !important;
}

.form-group._inn p {
  margin: 0;
}
.form-group._inn .wpcf7-form-control-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
.form-group._inn .wpcf7-form-control-wrap .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
}
.form-group._inn .wpcf7-form-control-wrap .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  white-space: nowrap !important;
}
.form-group._inn .wpcf7-form-control-wrap .wpcf7-list-item label input[type=radio] {
  margin-right: 5px !important;
  cursor: pointer;
}

.page-id-9 .contact_home .col-lg-8.col-md-7.pe-md-0.bg_white {
  padding: 0 40px !important;
}
.page-id-9 .contact_home .section_title__heading {
  margin-bottom: 0 !important;
}
.page-id-9 .contact_home .wpcf7-form p {
  margin-bottom: 0;
}
.page-id-9 .contact_home .wpcf7-form input,
.page-id-9 .contact_home .wpcf7-form textarea {
  background-color: #f1f1f1 !important;
  border: 1px solid #f2f2f2 !important;
  padding: 6px 10px !important;
}
.page-id-9 .contact_home .wpcf7-form textarea {
  height: 80px;
}
.page-id-9 .cont_right {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-id-9 .cont_right ul li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #bdb9b9;
}
.page-id-9 .cont_right ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.teams-modal .modal-dialog {
  position: relative;
}
.teams-modal .modal-content {
  overflow: unset !important;
}
.teams-modal .modal-title {
  margin-top: 55px;
}
.teams-modal .modal-header {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.teams-modal .modal-body {
  text-align: center;
}
.teams-modal .mdl_img {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: -60px;
  overflow: hidden;
}
.teams-modal .mdl_img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-widget-wrap .widget-link .link li a,
.footer-widget-wrap .footer-widget-about p {
  font-size: 12px;
}

.footer-widget-wrap {
  padding-bottom: 0 !important;
}

.page-id-9 .footer-copyright-area {
  padding-bottom: 150px;
}

.footer-copyright-area {
  margin-top: 0 !important;
}

.footer-social .social {
  margin-top: 0;
}

.single-property #enqModal .btn-close,
.single-property #floorModal .btn-close,
.single-property #dnldModal .btn-close {
  background-image: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  opacity: 1;
  position: relative;
  right: 15px;
  bottom: 3px;
}
.single-property #enqModal .btn-close:focus,
.single-property #floorModal .btn-close:focus,
.single-property #dnldModal .btn-close:focus {
  outline: none;
  box-shadow: none;
}
.single-property #close_form {
  position: absolute;
  left: -26px;
  top: 0;
  color: #fff;
  font-size: 24px;
}

.location_prop {
  background: #f8f4f1;
  padding-block: 40px;
}
.location_prop .property_card {
  border: 1px solid #d1cdca;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 22px;
}
.location_prop .property_card .img_box {
  height: 100%;
  border-radius: unset;
}
.location_prop .property_card .img_box img {
  aspect-ratio: 3/2;
}
.location_prop .property_card .cont_box {
  padding: 0;
  box-shadow: none;
}
.location_prop .property_card .cont_box h3 {
  font-size: 18px;
  margin-bottom: 5px;
}
.location_prop .location_box_wrap .col-md-4:nth-last-child(-n+3) .property_card {
  margin-bottom: 0;
}

.chrismas_light_tab .nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  border-bottom: 2px solid #bb2026;
  background-color: transparent;
  color: #bb2026;
}

.chrismas_light_tab .nav-pills .nav-link {
  width: auto;
  padding: 8px 12px;
  height: auto;
  font-size: 12px;
  font-weight: 400;
  margin-left: 6px;
  background-color: transparent;
  color: #656565;
  text-transform: math-auto;
  border-radius: unset;
  margin: 0;
}

.chrismas_light_tab ul {
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  border: 1px solid #edecec;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 30px !important;
  display: inline-flex !important;
}

.chrismas_light_tab ul li {
  border-right: 1px solid #edecec;
  text-align: center;
}

.chrismas_light_tab ul li button:hover {
  border-bottom: 2px solid #bb2026;
}

.partner_dev {
  background: #f8f4f1;
}
.partner_dev .property_card {
  padding: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: unset;
  border: 1px solid #ececec;
  aspect-ratio: 3/2;
}
.partner_dev .property_card .cont_box {
  box-shadow: unset;
  padding: 15px 10px 0 10px;
}
.partner_dev .property_card .cont_box h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
.partner_dev .property_card .cont_box p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  font-size: 12px;
}
.partner_dev .property_card .img_box {
  height: auto;
  border-radius: unset;
}
.partner_dev .property_card .img_box img {
  width: 100%;
  aspect-ratio: 3/2;
}

.grtplce_towork {
  padding: 40px 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.grtplce_towork .container {
  padding: 0 10%;
}
.grtplce_towork_txt h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-transform: math-auto;
  line-height: 1.4;
}
.grtplce_towork_txt h2 span {
  background-color: #000;
  color: #fff;
  padding: 5px;
  font-size: 30px;
  position: relative;
}
.grtplce_towork_txt h2 span:before {
  content: "";
  background-color: #ffffff;
  width: 300px;
  height: 2px;
  top: 50%;
  left: calc(50% + 270px);
  transform: translate(-50%, -50%);
  position: absolute;
}
.grtplce_towork_img {
  width: 100%;
}
.grtplce_towork_img span {
  width: 200px;
  height: 200px;
  background-color: #fff;
  display: inline-block;
  border-radius: 100%;
  line-height: 200px;
  position: relative;
  text-align: center;
  padding: 10px;
}
.grtplce_towork_img span:after {
  content: "";
  width: 100%;
  height: calc(100% + 9px);
  position: absolute;
  bottom: -5px;
  left: 14px;
  background-color: #000;
  border-radius: 100%;
  z-index: -1;
}
.grtplce_towork_img span:before {
  content: "";
  width: 90%;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  border-radius: 100%;
  border: 2px dashed #000000;
}
.grtplce_towork_img img {
  width: 95px;
  margin-top: -15px;
}
.grtplce_towork:after {
  content: "";
  background-color: #bb2026;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.partner_dtls .col-md-8 p {
  font-size: 14px;
}

.mission_main .row_rev {
  display: flex;
  flex-direction: row;
}
.mission_main .row_rev:nth-child(even) {
  flex-direction: row-reverse;
}
.mission_main .row_rev p {
  font-size: 15px;
}

.filter_li_home {
  position: relative !important;
}
.filter_li_home .select_box {
  position: relative !important;
}
.filter_li_home .slider_box {
  position: absolute;
  top: -75px;
  bottom: 100%;
  display: none;
  width: 650px;
  right: -52px;
}
.filter_li_home .nice-select .list {
  display: none !important;
}
.filter_li_home .form-group label {
  position: absolute;
  font-size: 10px;
  top: 15px;
  left: 10px;
}

/* indrajit 03/01/2025 */
.property_card .img_box .location {
  background-color: rgba(0, 0, 0, 0.768627451);
  width: 65%;
  padding: 7px 10px;
  font-size: 12px;
}
.property_card .img_box .location span {
  padding-right: 15px !important;
}

.card-container {
  position: relative;
  background-size: cover;
  background-position: center;
  height: auto;
  color: white;
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  aspect-ratio: 3/2;
}
.card-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4962359944) 20%, rgba(0, 0, 0, 0.1040791317) 60%);
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
}
.card-container:hover::after {
  opacity: 0;
  visibility: hidden;
}
.card-container .details {
  position: absolute;
  bottom: -40px;
  left: 20px;
  z-index: 2;
}
.card-container .location {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: -5px;
  color: white;
}
.card-container .project-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: -5px;
  color: white;
}
.card-container .price {
  font-size: 18px;
  font-weight: bold;
  color: white;
}
.card-container .price span {
  font-size: 26px;
  font-weight: bold;
  display: block;
  line-height: 40px;
}
.card-container .possession {
  font-size: 14px;
  color: white;
}

.mobile_search {
  position: fixed;
  width: 100%;
  height: auto;
  display: none;
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f5f5f5;
  z-index: 99;
  padding: 20px;
}
.mobile_search .search_row {
  display: flex;
  flex-direction: column;
}
.mobile_search .filter_li_home .form-group label {
  top: 58px;
}
.mobile_search .in_btn {
  width: 100%;
  border-radius: 0;
  height: auto;
}
.mobile_search input:not([type=submit]):not([type=checkbox]):not([type=radio]):not([type=file]) {
  height: 44px;
  padding-top: 19px;
  margin-top: 0;
}
.mobile_search .loan-amount-new {
  min-height: 50px;
}
.mobile_search .list {
  width: 100%;
}
.mobile_search .search_cont {
  padding: 0;
}
.mobile_search .nice-select {
  width: 100%;
  margin-bottom: 15px;
}

.mobile_srch_show {
  top: 0 !important;
}

.show_new_btn {
  position: relative;
}
.show_new_btn .section_title {
  padding: 0 8%;
}
.show_new_btn .in_btn {
  width: 100px;
  height: auto;
  font-size: 12px;
  display: block;
  text-align: center;
  padding: 8px;
  margin: 15px auto 25px;
}

.ft_categori .col-md-3 {
  width: 20%;
}

.launch_sec.trending .in_btn {
  width: 100px;
  height: auto;
  font-size: 12px;
  display: block;
  text-align: center;
  padding: 8px;
  margin: 15px auto 25px;
}

.card_slider {
  overflow: hidden;
  position: relative;
}

.new_card .details {
  position: absolute;
  overflow: hidden;
  bottom: 10px;
  z-index: 9;
  left: 30px;
  margin-bottom: 0 !important;
}
.new_card .details .location {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: -5px;
  color: white;
}
.new_card .details .project-name {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: -5px;
  color: white;
}
.new_card .details .price {
  font-size: 14px;
  font-weight: bold;
  color: white;
  line-height: 1.5;
  margin-bottom: -5px;
}
.new_card .details .price span {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  line-height: 1.5;
}
.new_card .details .possession {
  font-size: 14px;
  color: white;
}

.card_slider.swiper-button-prev {
  position: absolute;
  opacity: 0.6;
}

.card_slider.swiper-button-next {
  position: absolute;
  opacity: 0.6;
}

.card_slider.swiper-button-next:after,
.card_slider.swiper-button-prev:after {
  font-size: 20px;
  color: #fff;
}

.suggestion-box {
  position: absolute;
  width: calc(100% - 17px);
  top: calc(0% + 32px);
}

.advname_search .searchInput {
  padding: 5px !important;
}

.suggestion-item {
  background: #fff;
  width: 100%;
  border-bottom: 1px solid #ebebeb;
  font-size: 11px;
  height: 32px;
  padding: 8px;
  cursor: pointer;
}

.srch_icn {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 32px;
  background-color: #bb2026;
  color: #fff;
  padding: 8px;
  font-size: 14px;
}

.advname_search {
  margin-left: 42%;
}

.section-top_footer_show {
  display: block !important;
}

.section-top_footer {
  background-color: #eee1cf;
  padding-block: 15px 5px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: none;
}
.section-top_footer .wpcf7-list-item-label {
  color: #415674;
}
.section-top_footer input {
  border: 1px solid #415674 !important;
}
.section-top_footer .wpcf7-list-item {
  margin-left: 0;
  text-align: center;
}
.section-top_footer .wpcf7-list-item .wpcf7-list-item-label a {
  text-decoration: underline;
}
.section-top_footer .wpcf7-list-item .wpcf7-list-item-label a:hover {
  color: #fff !important;
}
.section-top_footer .wpcf7-list-item label {
  color: #fff;
  font-size: 12px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-top_footer .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-top_footer .container {
  max-width: 1100px;
}
.section-top_footer .section_title__heading {
  color: #000000;
  font-size: 16px;
  text-align: center;
  margin-bottom: 5px;
}
.section-top_footer .form_style p {
  margin-bottom: 0;
}

.form_style .sub_mit_btn {
  width: 100%;
  background-color: #000000 !important;
  height: 36px !important;
  color: #fff !important;
  border: unset !important;
}

.form_style .foot_frm_input {
  background-color: #ffffff;
  border: 1px solid #f2f2f2;
  padding: 2px 10px !important;
}

/*Indrajit 11/02/2025*/
.ui-checkbox {
  width: 15px;
  height: auto;
  aspect-ratio: 1;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  background: #fff;
  border: 1px solid #d9d9d9;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  padding: 0 !important;
  margin-right: 5px;
}

.ui-checkbox::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg) scale(0);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s;
}

.ui-checkbox:hover {
  border-color: #000;
}

.ui-checkbox:checked {
  background: #000 !important;
  border-color: transparent;
}

.ui-checkbox:checked::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

#wpcf7-f1306-o3 .wpcf7-response-output {
  color: #fff !important;
}
#wpcf7-f1306-o3 .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  color: #fff;
}

.blog_slider a {
  display: block;
  width: 100%;
}

#areasizeCat {
  padding: 5px;
  line-height: 42px;
  height: 42px;
  border: unset;
  font-size: 15px;
}
#areasizeCat::-moz-placeholder {
  font-size: 15px;
}
#areasizeCat::placeholder {
  font-size: 15px;
}

.section-top_footer .section_title__heading {
  position: relative;
}

.frm_close {
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  width: 30px;
  height: 30px;
  background-color: rgba(187, 32, 38, 0.8);
  color: #fff;
  outline: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -27px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.frm_close_show {
  display: flex;
}

.add_padd {
  padding-top: 10px;
}

.frm_show {
  display: block !important;
}

.loc-dtls-land {
  margin-block: 16px;
}
.loc-dtls-land ul li {
  padding-inline: 10px;
  position: relative;
}
.loc-dtls-land ul li:after {
  content: "";
  width: 1px;
  height: 14px;
  background-color: #656565;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.loc-dtls-land ul li p {
  margin-bottom: 0;
}
.loc-dtls-land ul li:last-child:after {
  display: none;
}

.section-top_footer input {
  line-height: 22px !important;
}
.section-top_footer .form_style .sub_mit_btn {
  height: 29px !important;
}

.tnxpage {
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tnxpage .thank-you-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.tnxpage .thank-you-content h2 {
  font-size: 36px;
  color: #bb2026;
  font-weight: bold;
  margin-bottom: 15px;
}
.tnxpage .thank-you-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}
.tnxpage .thank-you-content h5 {
  font-size: 20px;
  color: #222;
  margin-top: 10px;
}
.tnxpage .thank-you-content .frm_dtls {
  background: #f1f1f1;
  padding: 20px 80px;
  border-radius: 8px;
  margin: 12px auto;
  display: inline-block;
  text-align: left;
}
.tnxpage .thank-you-content .frm_dtls p {
  margin: 5px 0;
  font-size: 16px;
  font-weight: 500;
  color: #555;
}
.tnxpage .thank-you-content a {
  color: #bb2026;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.tnxpage .thank-you-content a:hover {
  text-decoration: underline;
}

.thxpage_dir h2 {
  font-size: 36px;
  color: #bb2026;
  font-weight: bold;
  margin-bottom: 15px;
}
.thxpage_dir p {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.banner-text {
  top: 50%;
  position: absolute;
  left: 20px;
  transform: translateY(-50%);
  color: #fff;
}

.single-property .card {
  border: unset;
}
.single-property .card-image iframe {
  width: 100%;
  height: 100%;
}

.section-top_footer #wpcf7-f1306-o3 .wpcf7-response-output,
.section-top_footer #wpcf7-f1306-o3 .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  color: #ff0000 !important;
}

.category-report .blog_card,
.category-journal .blog_card,
.category-blog .blog_card {
  height: auto !important;
}

.single-post .wo_hr_line .banner-content h1::after {
  width: calc(100% - 60px);
  bottom: -8px;
}

.single-post .banner-content h1 {
  display: inline-block;
}

#dnldModal .btn-close {
  background-image: none;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  opacity: 1;
  position: relative;
  right: 15px;
  bottom: 3px;
}

.listing_card .cont_box .top .prop_name,
.listing_card .cont_box .top .prop_price {
  font-size: 17px;
}

#final-submit input {
  white-space: nowrap;
  transition: background-color 0.3s;
  width: 187px;
  height: 42px;
  background-color: #bb2026 !important;
  font-size: 14px;
  text-transform: none;
  color: #ffffff;
  font-weight: 700;
  border: 0 !important;
  border-radius: 30px;
  padding: 0;
}

.dnld_pymnt_btn {
  width: auto;
  padding: 8px 12px;
  height: auto;
  font-size: 14px;
  font-weight: 400;
  margin-left: 6px;
  border-radius: 100px;
  background-color: #fff;
  color: #585858 !important;
  border: 1px solid;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #bb2026 !important;
  border: 1px solid;
  margin-top: 30px;
}
.dnld_pymnt_btn:hover {
  background-color: #bb2026;
  color: #fff !important;
}

#send-otp-btn {
  width: 100%;
}

#details-submit {
  padding: 0 !important;
  background-color: #bb2026 !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px !important;
}

#otp-send-btn_header {
  border-radius: 5px;
  width: 100%;
}

#otp-send-btn_visit,
#download-send-otp-btn,
#floor-send-otp-btn {
  border-radius: 0;
  width: 100%;
}

.banner-text h1,
.banner-text h2 {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-family: "Campton-Book";
  font-size: 36px;
  left: 120px;
}
.banner-text h1:after, .banner-text h1:before,
.banner-text h2:after,
.banner-text h2:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
}
.banner-text h1:after,
.banner-text h2:after {
  top: -9px;
}
.banner-text h1:before,
.banner-text h2:before {
  bottom: -9px;
}

.blog-dtls-ul ul {
  list-style: disc;
  margin-left: 20px;
}
.blog-dtls-ul ul li {
  font-size: 14px;
  color: #111;
}
.blog-dtls-ul ul li:last-child {
  margin-bottom: 20px;
}

.video-glry-single iframe {
  width: 100% !important;
}

.section-top_footer .hiddn_foot {
  display: none;
}

.prop_details .hiddn_foot {
  display: none;
}

.flw-txt-ftr {
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.4901960784);
  line-height: 37px;
}

.contact_home input {
  line-height: 25px !important;
  margin-bottom: 10px !important;
}

.page-id-9 .contact_home .wpcf7-form textarea {
  height: 60px;
}

.contact_home .section_title__heading {
  padding-bottom: 10px;
}

.contact_home #send-otp-btn {
  height: 40px;
}

.cat-nme-dtls {
  margin-bottom: 0;
  font-weight: 600 !important;
  line-height: 0.8 !important;
}

.details_slider {
  position: relative;
}

.details_slider .breadcrumb {
  position: absolute;
  left: 25px;
  top: 25px;
  width: 100%;
  height: auto;
  z-index: 999;
  padding: 5px 0;
}

.details_slider .breadcrumb li {
  margin-right: 20px;
  color: #fff;
  position: relative;
  font-size: 14px;
  text-transform: capitalize;
}
.details_slider .breadcrumb li:nth-child(1):before {
  right: -17px;
}
.details_slider .breadcrumb li:nth-child(2):before {
  right: -24px;
}
.details_slider .breadcrumb li:nth-child(3):before {
  right: -24px;
}
.details_slider .breadcrumb li:nth-child(3):before {
  right: -24px;
}
.details_slider .breadcrumb li::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-weight: 900;
  right: 0;
  top: 4px;
  font-size: 10px;
  color: #fff;
}
.details_slider .breadcrumb li:last-child::before {
  display: none;
}

#sortPrice:focus {
  outline: none;
  box-shadow: none;
}

#sortPrice {
  border: 1px solid #bb2026;
  font-size: 14px;
  font-family: "Gotham Rounded Book" !important;
}

#sortPrice option {
  font-family: "Gotham Rounded Book" !important;
}

.category-listing-pr .nice-select .list {
  height: 165px;
  overflow-y: auto;
}

.main-listing-pr .nice-select .list {
  height: 165px;
  overflow-y: auto;
}

.details_slider .dtls-prop-cat {
  position: absolute;
  z-index: 9;
  top: auto !important;
  left: auto !important;
  bottom: calc(181px + 10%) !important;
  right: 20px !important;
}

.video_box .marquee_container {
  display: none;
}/*# sourceMappingURL=style.css.map */