@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
/* font-family: "Lato", sans-serif; */

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --scroll-behavior: smooth;
  --default-font: "Lato", sans-serif;
}

html {
  scroll-behavior: var(--scroll-behavior);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--default-font);
  height: auto;
  width: 100%;
  font-style: normal;
  font-weight: 500;
  color: #585858;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.4em;
}

img {
  max-width: 100%;
}

b,
strong {
  font-weight: 600;
}

p {
  margin: 0 0 25px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
.h1-heading,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px 0;
  font-weight: 600;
  color: #000000;
  line-height: 1.2em;
  padding: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

.h1-heading,
h1 {
  font-size: 75px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1em;
}

h2 {
  font-size: 40px;
  margin: 0 0 15px 0;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

ul,
ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  color: var(--bg-text-color);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a:hover {
  color: #000;
}

.cmn-btn {
  display: inline-flex;
  min-width: 206px;
  align-items: center;
  color: #000;
  background-color: #e8e1c4;
  text-align: center;
  gap: 5px;
  padding: 17px 10px;
  border-radius: 6px;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.cmn-btn i {
  font-size: 13px;
  transform: rotate(-45deg);
}

.cmn-btn:hover {
  background-color: #777777;
  color: #e8e1c4;
}

input[type="password"],
input[type="email"],
input[type="tel"],
input[type="text"] {
  background-color: transparent;
  width: 100%;
  outline: none;
  border: 1px solid #3e4c66;
  height: 50px;
  border-radius: 5px;
  color: var(--bg-white);
  padding: 0 14px;
}

::placeholder {
  opacity: 1;
  color: #3e4c66;
}

textarea {
  width: 100%;
  outline: none;
  border: 1px solid var(--bg-light-wh);
  border-radius: 5px;
  background-color: transparent;
  padding: 14px;
  color: var(--bg-white);
  resize: none;
  height: 100px;
}

.cmn-gap {
  padding: 80px 0;
  position: relative;
}

/* header */
.header .cmn-btn {
  min-width: 150px;
  border-radius: 50px;
}

.btn-lords {
  padding: 0 0;
  border: none;
  color: #fff;
  background-color: transparent;
  font-size: 14px;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.menu__link.btn-lords::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 60%;
  transform: translateY(-50%);
  background-color: #b1b1b1;
}

/* banner */

.banner__inner-col {
  position: relative;
  min-height: 724px;
  padding: 60px 0 130px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.banner__inner-col::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(53, 53, 53, 0.18) 0%,
    rgba(53, 53, 53, 0.84) 100%
  );
  z-index: -1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.banner__inner-col .image-overlay {
  z-index: -2;
}

.banner__inner-col-txt {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.banner__inner-col-txt p {
  font-weight: 500;
  font-size: 26px;
  color: #fff;
  line-height: 1.5;
}

.js-banner__inner .slick-dots {
  position: absolute;
  top: 50%;
  right: 40px;
  z-index: 1;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.js-banner__inner .slick-dots li button {
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 22px;
  transform: scale(0.8);
  color: #c9c9c9;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.js-banner__inner .slick-dots li.slick-active button {
  transform: scale(1);
  color: #fff;
}

.banner-search__inner {
  max-width: 1193px;
  margin: 0 auto;
  padding: 18px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.banner-search-input {
  background-color: #fff;
  margin-top: 28px;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  gap: 20px;
}

/* radio button */
/* Wrapper */
.radio-tabs {
  display: flex;
  gap: 17px;
}

/* Hide default radio */
.radio-tabs input {
  display: none;
}

/* Button Style */
.radio-tabs label {
  position: relative;
  width: 104px;
  height: 48px;
  background: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #4d4d4d;
  cursor: pointer;
  transition: 0.3s;
}

/* Active Button */
.radio-tabs input:checked + label {
  background: #e7e0c5;
}

/* Bottom Triangle */
.radio-tabs input:checked + label::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 16px solid #e7e0c5;
}

.cmn-sumbit {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  border: none;
  outline: none;
  letter-spacing: 1px;
  align-items: center;
  flex-shrink: 0;
  min-height: 50px;
  gap: 5px;
}

.banner-search {
  margin-top: -240px;
  position: relative;
  padding-bottom: 35px;
  z-index: 1;
}

.scroll-down {
  position: absolute;
  bottom: 35px;
  right: 20px;
  display: flex;
  cursor: pointer;
  gap: 10px;
}

.scroll-down__cont {
  text-align: right;
}

.scroll-down__cont h3 {
  font-size: 16px;
  margin-bottom: 2px;
  color: #fff;
}

.scroll-down__cont p {
  font-size: 13px;
  color: #fff;
}

.scroll-down__icon {
  width: 20px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 50px;
  position: relative;
}

.scroll-down__icon-border {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 7px;
  height: 13px;
  transform: translateX(-50%);
  border-radius: 50px;
  background-color: #fff;
  animation: scroll-down 2s ease-in-out infinite;
}

/* featured */

.featured-sec {
  padding: 100px 0 50px;
  position: relative;
}

.featured-sec > .image-overlay {
  height: auto;
}

.cmn-hd {
  margin-bottom: 40px;
}

.property-card {
  position: relative;
  height: 387px;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.property-card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 76.77%
  );
}

.property-slider .slick-list {
  margin: 0 -12px;
}

.property-slider-item {
  padding: 0 12px;
}

.property-top-tag {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.property-tag {
  font-size: 14px;
  font-weight: 500;
  padding: 5px 13px;
  border-radius: 3px;
}

.property-tag.sale {
  background-color: #3e4c66;
  color: #fff;
}

.property-tag.featured {
  background-color: #e8e1c4;
  color: #4d4d4d;
}

.property-card .image-overlay {
  z-index: -2;
}

.property-price {
  font-weight: 700;
  font-size: 25px;
  color: #fff;
  margin-bottom: 15px;
}

.property-price span {
  font-size: 15px;
}

.property-slider-wrap {
  position: relative;
}

.property-title {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}

.property-title:hover {
  color: #e8e1c4;
}

.property-content {
  padding: 20px;
}

.property-info {
  display: flex;
  gap: 19px;
}

.property-info span {
  color: #fff;
  font-size: 14px;
}

.property-icons ul {
  display: flex;
  gap: 8px;
}

.property-icons ul li a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.property-icons ul li a:hover {
  color: #000;
  background-color: #e8e1c4;
}

.property-bottom {
  position: absolute;
  right: 12px;
  bottom: 12px;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid #3e4c66;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  font-size: 0px;
  z-index: 1;
}

.slick-arrow:hover {
  background-color: #3e4c66;
}

.slick-next {
  right: -70px;
}

.slick-prev {
  left: -70px;
}

.slick-prev::after {
  content: "\f104";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  font-family: "fontawesome";
  color: #3e4c66;
  font-size: 18px;
}

.slick-next::after {
  content: "\f105";
  position: absolute;
  top: 50%;
  left: 50%;
  color: #3e4c66;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  font-family: "fontawesome";
  font-size: 18px;
}

.slick-arrow:hover::after {
  color: #fff;
}

.property-slider-button {
  margin-top: 40px;
  text-align: center;
}

.cmn-btn-border {
  background-color: transparent;
  border: 1px solid #000000;
  color: #4d4d4d;
}

.cmn-btn-border:hover {
  background-color: #000000;
  color: #fff;
}

.text-right {
  text-align: right;
}

.explore-sec {
  padding: 50px 0;
}

@keyframes scroll-down {
  0% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }

  100% {
    transform: translateX(-50%) translateY(0);
  }
}

/* --------------------- */

/* Slider */
.location-slider .slick-list {
  margin: 0 -12px;
}

.location-slider-item {
  padding: 0 12px;
}

/* Card */
.location-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  display: flex;
  padding-top: 67%;
}

.location-card .image-overlay {
  z-index: -2;
}

.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgb(0 0 0 / 68%) 78.26%
  );
  z-index: -1;
}

.location-content {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
}

.location-content h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

.home-contact-sec {
  padding: 50px 0 100px;
}

.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.form-col label {
  font-size: 22px;
  font-weight: 500;
  color: #2b2b2b;
  margin-bottom: 15px;
}

.form-col label sub {
  color: #fa0c0c;
  font-size: 32px;
}

/* check box */
.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* Hide Default Checkbox */
.custom-checkbox input {
  display: none;
}

/* Custom Box */
.custom-checkbox label {
  position: relative;
  padding-left: 34px;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  cursor: pointer;
}

/* Square Box */
.custom-checkbox label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border: 2px solid #cfcfcf;
  border-radius: 4px;
  background: #fff;
  transition: 0.3s;
}

/* Check Icon */
.custom-checkbox label::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 1px;
  font-size: 14px;
  color: #fff;
  opacity: 0;
  transition: 0.3s;
}

/* Checked Style */
.custom-checkbox input:checked + label::before {
  background: #111;
  border-color: #111;
}

.custom-checkbox input:checked + label::after {
  opacity: 1;
}

/* Links */
.custom-checkbox label a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #999;
}

/* map */

.map-sec {
  background-color: #f7f7f7;
}

.map-wrap {
  padding: 100px 0 324px;
  position: relative;
  z-index: 1;
}

.map-wrap {
  text-align: center;
}

.map-wrap h2 {
  color: #fff;
}

.map-wrap p {
  color: #fff;
}

.map-wrap-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.map-wrap-btns .cmn-btn {
  min-width: 112px;
}

.cmn-btn-wht {
  background-color: #fff;
}

.map-img-wrap {
  border: 6px solid #fff;
  background: #ffffff;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.map-img-wrap img {
  width: 100%;
  border-radius: 10px;
}

.map-img {
  margin-top: -270px;
  position: relative;
  z-index: 1;
}

/* why-cho-sec */

.why-cho-sec {
  padding: 100px 0;
  background-color: #f7f7f7;
}

.why-cho-col-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: #e8e1c4;
}

.why-cho-col-icon img {
  max-width: 84px;
}

.why-cho-col {
  background: #ffffff;
  box-shadow: 4px 4px 40px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 50px 60px;
  text-align: center;
  height: 100%;
}

.why-cho-col h3 {
  font-size: 22px;
  color: #444444;
}

.why-cho-col p {
  color: #737373;
  line-height: 1.5;
}

/* why-cho-sec end */

.testimonial-sec {
  padding: 100px 0;
  overflow: hidden;
}

.testimonial-cont {
  margin-left: calc((100% - 1464px) / 2);
  padding-left: 12px;
}

.testimonial-item {
  border-radius: 4px;
  border: 1px solid #d5d5d5;
  padding: 130px 30px 53px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.slick-current.slick-active .testimonial-item {
  background-color: #e8e1c4;
  border-color: #e8e1c4;
}

.quote-icon {
  max-width: 90px;
  position: absolute;
  opacity: 0.5;
  top: 20px;
  left: 15px;
  transition: all 0.3s ease-in-out;
}

.slick-current.slick-active .quote-icon {
  opacity: 0.8;
}
.testimonial-item p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-item-col {
  padding: 0 15px;
}

.js-testimonial .slick-list {
  margin: 0 -15px;
  padding-right: 80px;
}

.read-story {
  display: inline-block;
  color: #000;
  line-height: 1.4;
  border-bottom: 2px solid #000;
  margin-bottom: 60px;
}

.client-img {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 100%;
  flex-shrink: 0;
}

.client-info {
  display: flex;
  gap: 34px;
  align-items: center;
}

.client-img img {
  width: 100%;
}

.client-text h4 {
  font-size: 22px;
  color: #585858;
  margin-bottom: 2px;
}

.client-text span {
  color: #585858;
}

.client-text ul {
  display: inline-flex;
  gap: 6px;
  margin-top: 4px;
}

.client-text ul li i {
  color: #f8bf16;
  font-size: 12px;
}

.js-testimonial .slick-arrow {
  top: -110px;
  transform: translate(0, 0);
  border-radius: 4px;
}

.js-testimonial .slick-next {
  right: 80px;
}

.js-testimonial .slick-prev {
  left: unset;
  right: 140px;
}

/* newsletter */

.newsletter-blog-sec {
  padding: 65px 0 35px;
  position: relative;
  z-index: 1;
}

.blog-img {
  width: 213px;
  height: 147px;
  overflow: hidden;
  border-radius: 5px;
  flex-shrink: 0;
}

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

.recent-blog-box h2 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 25px;
}

.blog-item {
  display: flex;
  gap: 34px;
  align-items: center;
}

.blog-content h4 {
  max-width: 403px;
  font-size: 23px;
  color: #fff;
  line-height: 1.5;
}

.blog-meta span {
  color: #dbdbdb;
}

.btn-read {
  color: #e8e1c4;
  display: inline-flex;
  gap: 12px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
}

.btn-read i {
  line-height: 1;
  font-size: 14px;
  margin-top: 5px;
}

.btn-read:hover {
  color: #fff;
}

.newsletter-box {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 50px;
  padding-bottom: 5px;
}

.newsletter-box h3 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 25px;
}

.newsletter-box p {
  color: #fff;
  margin-bottom: 30px;
}

.newsletter-form {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
}

.newsletter-form input {
  border: none;
  height: 50px;
}

.newsletter-form .cmn-sumbit {
  flex-shrink: 0;
  border-radius: 0px;
  min-width: 146px;
}

.lft-img-cont-wrap {
  max-width: 1199px;
  margin: 0 auto;
}

.lft-img-cont {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 20px;
  max-width: 600px;
}

.support-item {
  overflow: hidden;
  border-radius: 8px;
}

.support-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.large-img {
  grid-row: 1 / 3;
}

.map-box {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.map-box img {
  object-fit: contain;
}

.lft-img-cont-wrap .row {
  align-items: center;
}

.lft-content-box-form {
  margin-top: 30px;
}

.lft-content-box-form .newsletter-form {
  border: 1px solid #d9d9d9;
}

.career-cta-sec {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.career-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-end;
}

.cmn-btn.cmn-btn-white {
  background-color: #fff;
  color: #333;
}

.cmn-btn.cmn-btn-white:hover {
  background-color: #777777;
  color: #e8e1c4;
}

.career-content p,
.career-content h2 {
  color: #fff;
}

/* newsletter end */

/* footer */
.footer-sec {
  background: #fff;
  color: #000;
}

/* Top Footer */
.footer-top {
  padding: 80px 0 60px;
}

.footer-logo img {
  max-width: 240px;
  margin-bottom: 30px;
}

.footer-logo-box p {
  color: #4b4b4b;
  max-width: 320px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 22px;
  margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 19px;
}

.footer-links ul li a,
.footer-contact ul li,
.footer-contact ul li a {
  color: #4b4b4b;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
  color: #000;
}

/* Social */
.social-icons {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.social-icons a {
  color: #4b4b4b;
  font-size: 20px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #ddd2ab;
}

.subscribe-title {
  margin-bottom: 20px !important;
}

/* Subscribe Form */
.subscribe-form {
  position: relative;
}

.subscribe-form input {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 50px;
  padding: 0 80px 0 25px;
  border: 1px solid #374261;
  outline: none;
  font-size: 15px;
}

.subscribe-form button {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 100%;
  background: #374261;
  color: #fff;
  font-size: 13px;
  transition: 0.3s;
}

.subscribe-form button:hover {
  background: #cfc39b;
}

/* Bottom Footer */
.footer-bottom {
  background: #323c52;
  padding: 27px 0;
  position: relative;
}

.footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-menu li a:hover {
  color: #ddd2ab;
}

.copyright-text {
  margin-left: auto;
}

.copyright-text p {
  margin: 0;
  color: #d9d9d9;
}

.scroll-top {
  width: 55px;
  height: 55px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s;
}

.scroll-top:hover {
  background: #ddd2ab;
  color: #222;
}

/* footer end */

/* modal */
.login-modal .modal-content {
  border-radius: 0;
  overflow: hidden;
}

.login-image img {
  object-fit: cover;
}

.login-form-wrap {
  padding: 50px 60px 50px 30px;
}

.login-form-wrap h2 {
  font-size: 31px;
  font-weight: 600;
  color: #484848;
  margin: 0;
}

.social-btn {
  width: 100%;
  height: 55px;
  border: 1px solid #a8a8a8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  text-decoration: none;
  color: #555;
  margin-bottom: 13px;
  border-radius: 4px;
  position: relative;
}

.social-btn img {
  position: absolute;
  left: 25px;
  max-width: 20px;
  max-height: 20px;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 30px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ddd;
}

.divider span {
  padding: 0 15px;
  color: #777;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-control {
  height: 60px;
  border-radius: 0;
  padding: 15px 50px 15px 20px;
  border: 1px solid #ddd;
  box-shadow: none !important;
}

.form-group i {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #999;
}

.form-check-label {
  font-size: 14px;
  color: #888;
}

.form-check-label a {
  color: #888;
}

.forgot-link {
  font-size: 14px;
  color: rgb(171, 138, 5);
  text-decoration: none;
}

.register-text {
  text-align: center;
  margin-top: 25px;
  color: #888;
}

.register-text a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid #333;
}

.login-form-wrap .cmn-btn {
  min-width: 160px;
  padding: 9px 10px;
}

.form-control:focus {
  border-color: #3e4c66;
}

.form-check-label a {
  font-size: 14px;
  border-bottom: 1px solid #3e4c66;
}

.login-image {
  position: relative;
  height: 100%;
  z-index: 1;
}

.forgot-sub .cmn-btn.cmn-sumbit {
  width: 100%;
}

.login-modal .modal-dialog {
  max-width: 1000px;
}

.aft-log-header .lords-item {
  display: none;
}

/* nav dropdow */
.profile-wrap {
  position: relative;
  display: inline-block;
}

/* Profile Button */
.profile-btn {
  display: flex;
  align-items: center;
  gap: 18px;
  border-left: 1px solid #959595;
  padding-left: 25px;
  cursor: pointer;
}

.profile-btn img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-btn span {
  color: #000;
  font-size: 18px;
}

/* Dropdown */
.profile-dropdown {
  width: 273px;
  background: #fff;
  border-radius: 8px;
  position: absolute;
  top: 70px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s;
  z-index: 99;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Desktop Hover */
@media (min-width: 992px) {
  .profile-wrap:hover .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Mobile Click */
.profile-wrap.active .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Arrow */
.profile-dropdown-arrow {
  position: absolute;
  top: -10px;
  right: 30px;
  width: 20px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
}

/* User Info */
.profile-user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
}

.profile-user-img img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-user-text h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.profile-user-text span {
  color: #000;
}

/* Menu */
.profile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #eee;
}

.profile-menu li {
  border-bottom: 1px solid #cfcece;
}

.profile-menu li a {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  font-size: 14px;
  justify-content: space-between;
  text-decoration: none;
  color: #000;
}

.profile-menu ul li a i {
  font-size: 12px;
}

/* Logout */
.profile-logout {
  padding: 16px;
}

.profile-logout a {
  width: 100%;
  height: 50px;
  background: #e5ddb9;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
}

.profile-logout a:hover {
  background-color: #3e4c66;
  color: #fff;
}

/* cmn-banner */

.cmn-banner-all {
  background-color: #f7f7f7;
  padding: 120px 0 80px;
  min-height: 100vh;
}

.property-filter {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* cmn-banner end */

/* felter heading */

.property-filter__item--location {
  width: 400px;
  position: relative;
}

.property-filter__item--location input {
  width: 100%;
  height: 45px;
  border-radius: 50px !important;
  border: 1px solid #585858;
  font-size: 14px;
}

.btn-mp-search {
  position: absolute;
  top: 0;
  right: 17px;
  border: none;
  outline: none;
  font-size: 13px;
  padding: 0;
  background: transparent;
  height: 100%;
  color: #028394;
}

.property-filter-left {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* price */
.filter-price {
  position: relative;
  display: inline-block;
}

.filter-price__btn {
  padding: 11px 15px;
  font-size: 12px;
  border-radius: 50px;
  min-height: 45px;
  position: relative;
  text-align: left;
  width: 150px;
  font-weight: 600;
  border: none;
  outline: none;
  background-color: #d9d9d9;
  color: #4a4a4a;
  cursor: pointer;
}

.filter-price__btn i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.filter-price__value {
  margin-left: 4px;
  font-weight: 800;
  color: #333;
}

.filter-price__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 270px;
  padding: 14px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  box-shadow: 0px 13px 10px #33333342;
  /* Add */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
  transition: 0.3s;
}

.filter-price.active .filter-price__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.filter-price__group {
  display: flex;
  gap: 15px;
}

.filter-price__input {
  width: 100%;
  height: 45px;
  border: none;
  border-radius: 5px;
  padding: 0 10px;
  font-size: 14px;
  outline: none;
  background: #e7e7e7;
}

.filter-price__dropdown h3 {
  font-size: 16px;
  margin: 0 0 20px;
}

/* Rental */

.filter-rent {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

.filter-rent__btn {
  padding: 11px 15px;
  padding-right: 30px;
  font-size: 12px;
  border-radius: 50px;
  min-height: 45px;
  position: relative;
  text-align: left;
  min-width: 150px;
  font-weight: 600;
  border: none;
  outline: none;
  background-color: #d9d9d9;
  color: #4a4a4a;
  cursor: pointer;
}

.filter-rent__btn i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.filter-rent__dropdown {
  top: calc(100% + 10px);
  left: 0;
  width: 270px;
  padding: 18px 14px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  box-shadow: 0px 13px 10px #33333342;
  z-index: 10;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
}

.filter-rent.active .filter-rent__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.filter-rent__top {
  padding: 0px 2px 12px;
  border-bottom: 1px solid #e5e5e5;
}

.filter-rent__title {
  font-size: 16px;
  margin: 0 0 20px;
}

.filter-rent__radio,
.filter-rent__checkbox {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.filter-rent__radio:not(:last-child) {
  margin-bottom: 10px;
}

.filter-rent__checkbox {
  padding: 19px 2px 0;
}

.filter-rent__radio input,
.filter-rent__checkbox input {
  display: none;
}

/* Radio */
.filter-rent__check {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #999;
  position: relative;
}

.filter-rent__radio input:checked + .filter-rent__check {
  border-color: #ff3b30;
}

.filter-rent__radio input:checked + .filter-rent__check::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff3b30;
  transform: translate(-50%, -50%);
}

/* Checkbox */
.filter-rent__box {
  width: 14px;
  height: 14px;
  border: 2px solid #999;
  border-radius: 2px;
  position: relative;
}

.filter-rent__box::after {
  content: "\f00c";
  font-family: "fontawesome";
  color: #fff;
  position: absolute;
  top: 0;
  left: 2px;
  line-height: 1;
  font-size: 9px;
}

.filter-rent__checkbox input:checked + .filter-rent__box {
  background: #111827;
  border-color: #111827;
}

.filter-rent__label {
  font-size: 14px;
  color: #1f2937;
}

.filter-rent__done {
  width: calc(100% - 56px);
  height: 60px;
  margin: 0 28px 28px;
  border: none;
  border-radius: 50px;
  background: #e5e5e5;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
/* felter heading end */

/* beds */

.filter-bed {
  position: relative;
}

.filter-date__btn,
.filter-bed__btn {
  padding: 11px 15px;
  padding-right: 30px;
  font-size: 12px;
  border-radius: 50px;
  min-height: 45px;
  position: relative;
  text-align: left;
  min-width: 100px;
  font-weight: 600;
  border: none;
  outline: none;
  background-color: #d9d9d9;
  color: #4a4a4a;
  cursor: pointer;
}

.filter-date__btn i,
.filter-bed__btn i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.filter-bed__dropdown {
  top: calc(100% + 10px);
  left: 0;
  width: 270px;
  padding: 18px 14px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  box-shadow: 0px 13px 10px #33333342;
  z-index: 10;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
}

.filter-bed.active .filter-bed__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.filter-bed__item {
  padding: 7px 19px;
  border: 1px solid #7c7c7c;
  font-weight: 600;
  font-size: 14px;
  border-radius: 20px;
  background: transparent;
  transition: all 0.3s ease-in-out;
}

.filter-bed__item:hover,
.filter-bed__item.active {
  background: #161328;
  color: #fff;
  border-color: #161328;
}

.filter-bed__numbers-buttons,
.filter-bed__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.filter-bed__numbers-buttons .filter-bed__item {
  width: 38px;
  height: 38px;
  padding: 0;
  font-size: 12px;
}

.filter-bed__checkbox input[type="checkbox"] {
  display: none;
}

.filter-bed__box {
  width: 14px;
  height: 14px;
  display: block;
  border: 2px solid #999;
  border-radius: 2px;
  position: relative;
}

.filter-bed__box::after {
  content: "\f00c";
  font-family: "fontawesome";
  color: #fff;
  position: absolute;
  top: 0;
  left: 2px;
  line-height: 1;
  font-size: 9px;
}

.filter-bed__checkbox input:checked + .filter-bed__box {
  background: #111827;
  border-color: #111827;
}

.filter-bed__checkbox {
  display: flex;
  align-items: center;
  gap: 7px;
}

.filter-date__done,
.filter-bed__done {
  width: 100%;
  border: none;
  padding: 7px 4px 11px;
  background: #161328;
  border-radius: 4px;
  color: #fff;
  margin-top: 20px;
}

.filter-bed__bottom {
  margin-top: 20px;
}

/* date */
.filter-date {
  position: relative;
}

.filter-date__dropdown {
  top: calc(100% + 10px);
  left: 0;
  width: 270px;
  padding: 18px 14px;
  background: #ffffff;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  box-shadow: 0px 13px 10px #33333342;
  z-index: 10;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
}

.filter-date.active .filter-date__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.filter-date__small,
.filter-date__select {
  width: 100%;
  border: 1px solid #b0b0b0;
  font-size: 12px;
  padding: 8px 8px;
  border-radius: 2px;
  outline: none;
}

.filter-date__inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.filter-date__day,
.filter-date__year {
  width: 30%;
}

.filter-date__month {
  width: 35%;
}

.btn-sm-blk,
.property-filter__link {
  padding: 11px 15px;
  padding-right: 30px;
  font-size: 12px;
  border-radius: 50px;
  min-height: 45px;
  position: relative;
  text-align: left;
  min-width: 100px;
  font-weight: 600;
  border: none;
  outline: none;
  background-color: #333;
  color: #fff;
}

.property-filter__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.property-filter__link i {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  font-size: 10px;
}

.btn-sm-blk {
  padding-right: 15px;
}

/* modal for filter */

/* Overlay */
.more-filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

/* Popup */
.more-filter-popup {
  position: fixed;
  top: 0;
  right: -50%;
  width: 50%;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transition: 0.4s ease;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

/* Active */
.more-filter-popup.active {
  right: 0;
}

.more-filter-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Header */
.more-filter-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #eee;
}

.more-filter-popup__title {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.more-filter-popup__title h3 {
  font-size: 25px;
  margin: 0;
}

.more-filter-popup__title span {
  display: inline-block;
  background-color: #78c0ca;
  font-size: 12px;
  line-height: 1;
  padding: 5px 9px;
  font-weight: 600;
  color: #000;
  border-radius: 10px;
}

/* Close Button */
.more-filter-popup__close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #36373a;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
}

/* Body */
.more-filter-popup__body {
  padding: 24px;
}

.more-filter__section:first-child {
  padding-top: 0;
}

.more-filter__section {
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.more-filter__title {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
}

.more-filter__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.more-filter__check,
.more-filter__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.more-filter__check input,
.more-filter__radio input {
  display: none;
}

/* Checkbox */
.more-filter__box {
  width: 18px;
  height: 18px;
  border: 1px solid #858686;
  border-radius: 2px;
  position: relative;
  flex-shrink: 0;
}

.more-filter__check input:checked + .more-filter__box {
  background: #111827;
  border-color: #111827;
}

.more-filter__check input:checked + .more-filter__box::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Radio */
.more-filter__circle {
  width: 18px;
  height: 18px;
  border: 1px solid #9ca3af;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.more-filter__radio input:checked + .more-filter__circle {
  border-color: #111827;
}

.more-filter__radio input:checked + .more-filter__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111827;
  transform: translate(-50%, -50%);
}

.more-filter__label {
  font-size: 14px;
  color: #111827;
  line-height: 1.4;
}

.more-filter__section .property-filter__item--location {
  width: 100%;
}

.more-filter__section:last-child {
  border-bottom: none;
}

.more-filter-popup::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.more-filter-popup::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

.more-filter-popup::-webkit-scrollbar-thumb {
  background-color: #217cc1;
}

body.more-filter-open {
  overflow: hidden;
}

.more-filter-popup {
  overflow-y: auto;
  height: 100vh;
}

.map-sec-col iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* card for map section */

.map-property-card {
  overflow: hidden;
  border-radius: 7px;
  box-shadow: 0 0 10px #33333333;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.property-card__image-wrap {
  position: relative;
  height: 240px;
  z-index: 1;
}

.card-rgt-wrap > .row {
  --bs-gutter-x: 12px;
  --bs-gutter-y: 12px;
}

.property-card__badge {
  background-color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 600;
  text-transform: capitalize;
  border: 1px solid #ffffff82;
  padding: 5px 10px;
  border-radius: 4px;
}

.property-card__badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  gap: 10px;
}

.property-card__badge--rent {
  background-color: #e8e1c4;
  color: #000;
}

.property-card__actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  gap: 10px;
}

.property-card__action-btn {
  border: none;
  background-color: #fff;
  color: #000;
  width: 27px;
  height: 27px;
  padding: 0;
  font-size: 10px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
}

.property-card__action-btn:hover {
  background-color: #e8e1c4;
}

.property-card__overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 10px;
}

.property-card__overlay-badge {
  background-color: #16130b;
  font-size: 10px;
  color: #fff;
  padding: 8px 9px 6px;
  border-radius: 12px;
  border: none;
  outline: none;
  line-height: 1;
  display: inline-flex;
  gap: 5px;
}

.property-card__overlay-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.property-card__content {
  padding: 15px 10px 10px;
}

.property-card__type {
  font-size: 14px;
  color: #5a5b61;
  display: block;
  margin-bottom: 6px;
}

.property-card__title {
  font-size: 18px;
  margin: 0 0 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.property-card__location {
  font-size: 12px;
  color: #333;
  overflow: hidden;
  line-height: 1.4;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}

.property-card__price-wrap {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.property-card__price {
  margin: 0;
  color: #025417;
  font-weight: 800;
}

.property-card__price-label {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.property-card__info {
  display: flex;
  flex-wrap: wrap;
  background-color: #e8e8e8;
  border-radius: 4px;
  margin-top: 10px;
}

.property-card__info-item {
  width: 33.33%;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #3333332d;
  padding: 3px;
}

.property-card__info-item:last-child {
  border: none;
}

.property-card__available {
  flex-shrink: 0;
  background-color: #f1f7f3;
  border: 1px solid #b5eac8;
  border-radius: 5px;
  padding: 6px;
  width: 60%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.property-card__available-label {
  font-size: 12px;
  color: #737373;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 600;
}

.property-card__available-date {
  color: #14723b;
  font-size: 14px;
  letter-spacing: 1px;
}

.property-card__available-icon i {
  color: #14723b;
  font-size: 20px;
}

.property-card__available-icon {
  line-height: 1;
}

.property-card__bottom {
  display: flex;
  align-items: center;
  margin-top: 12px;
  justify-content: space-between;
}

/* Compare Checkbox */
.property-card__compare {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
  position: relative;
  margin-right: 20px;
}

/* Hide Default Checkbox */
.property-card__compare-input {
  display: none;
}

/* Custom Checkbox */
.property-card__compare-check {
  width: 16px;
  height: 16px;
  border: 2px solid #717171;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Check Icon */
.property-card__compare-check i {
  font-size: 10px;
  line-height: 1;
  color: #ffffff;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

/* Checked State */
.property-card__compare-input:checked + .property-card__compare-check {
  background: linear-gradient(135deg, #2f9148, #2f9148);
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}

.property-card__compare-input:checked + .property-card__compare-check i {
  opacity: 1;
  transform: scale(1);
}

/* Hover Effect */
.property-card__compare:hover .property-card__compare-check {
  border-color: #2563eb;
}

/* Text */
.property-card__compare-text {
  transition: color 0.3s ease;
  font-weight: 600;
  color: #535353;
}

.property-card__compare-input:checked ~ .property-card__compare-text {
  color: #2f9148;
}

.property-card__btn {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  width: calc(50% - 5px);
  justify-content: center;
  border: 1px solid #333;
  border-radius: 4px;
  gap: 5px;
}

.property-card__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.property-card__btn--outline {
  border-color: rgb(47 145 72);
  color: rgb(47 145 72);
}

.property-card__btn--outline:hover {
  background-color: rgb(47 145 72);
  color: #fff;
}

.property-card__btn--fill {
  border-color: rgb(47 145 72);
  background-color: rgb(47 145 72);
  color: #fff;
}

.map-property-card-sale .property-card__btn--fill:hover,
.property-card__btn--fill:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.map-property-card-sale .property-card__badge--rent {
  background-color: #0a6fe2;
  color: #fff;
}

.map-property-card-sale .property-card__available-icon i,
.map-property-card-sale .property-card__available-date,
.map-property-card-sale .property-card__price {
  color: #0a6fe2;
}

.map-property-card-sale .property-card__available {
  background-color: #0a6fe229;
  border: 1px solid #b5c3ea;
}

.map-property-card-sale .property-card__btn--outline {
  border-color: #0a6fe2;
  color: #0a6fe2;
}

.map-property-card-sale .property-card__btn--outline:hover {
  color: #fff;
  background-color: #0a6fe2;
}

.map-property-card-sale .property-card__btn--fill {
  border-color: #0a6fe2;
  background-color: #0a6fe2;
  color: #fff;
}

.map-property-card-sale
  .property-card__compare-input:checked
  + .property-card__compare-check {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
}

.map-property-card-sale
  .property-card__compare-input:checked
  ~ .property-card__compare-text {
  color: #0a6fe2;
}

.map-sec-col {
  min-height: 100vh;
  background-color: #028394;
  position: sticky;
  top: 0;
}

/* Compare */

.compare-popup {
  position: fixed;
  bottom: -100%;
  width: 100%;
  background: #262626;
  z-index: 9999;
  transition: 0.4s ease;
  padding: 30px 0 30px;
}

.compare-popup.active {
  bottom: 0;
}

.compare-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.compare-popup__title {
  font-size: 25px;
  color: #fff;
  margin: 0;
}

.compare-popup__close {
  width: 30px;
  height: 30px;
  font-size: 13px;
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  cursor: pointer;
}

.compare-popup__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.compare-item {
  position: relative;
  background-color: #fff;
  border-radius: 6px;
}

.compare-item__remove {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: #ffffff;
  color: #d40909;
  padding: 0;
  font-size: 10px;
  cursor: pointer;
  z-index: 2;
}

.compare-item__image img {
  width: 100%;
  height: 123px;
  object-fit: cover;
  border-radius: 6px;
}

.compare-item__title {
  font-size: 11px;
  padding: 10px;
}

.compare-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.compare-popup__body p {
  font-size: 14px;
  color: #fff;
}

.pop-btn {
  padding: 14px 17px;
  border: none;
  line-height: 1;
  outline: none;
  transition: all 0.3s ease-in-out;
  border-radius: 2px;
  width: 100%;
  max-width: 126px;
}

.compare-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 13px;
  height: 100%;
}

.compare-popup__clear {
  background-color: #c02920;
  color: #fff;
}

.video-modal .modal-dialog {
  max-width: 1000px;
}

.video-modal .modal-body {
  padding: 0;
  display: flex;
}

.video-modal .modal-body iframe {
  width: 100%;
  height: 530px;
}

.video-modal .modal-content {
  border-radius: 0px;
  background-color: transparent;
  border: none;
}

.video-modal .modal-header {
  position: relative;
  padding: 11px 20px;
  background: #262626;
  border: none;
}

.pop-btn-close {
  position: absolute;
  right: 20px;
  border: none;
  background: #ba3535;
  padding: 0 1px 0 0;
  border-radius: 100%;
  color: #fff;
  font-size: 10px;
  width: 25px;
  height: 25px;
}

.modal-title {
  color: #fff;
}

/* Share Popup */
.share-popup {
  width: 400px;
  padding: 13px;
}

.share-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0 11px;
  border-bottom: 1px solid #d0d0d0;
}

.share-popup__close {
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
}

.share-popup__body {
  padding: 8px 0 0;
}

.share-popup__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  text-decoration: none;
  color: #111;
  font-size: 16px;
  font-weight: 500;
}

.share-popup__item i {
  color: #0d5eff;
  font-size: 16px;
}

#tour-popup,
#share-popup {
  padding: 0;
  border-radius: 4px;
  cursor: default;
}

/* FANCYBOX CUSTOM */
.fancybox__content {
  padding: 0 !important;
  border-radius: 24px;
}

.fancybox__backdrop {
  background: rgb(0 0 0 / 78%);
}

.share-popup__header h3 {
  font-size: 20px;
}

#tour-popup .is-close-button,
#share-popup .is-close-button {
  top: 9px;
  color: #000;
  padding: 0;
  width: 20px;
  right: 11px;
}

/* video popup */
.tour-popup {
  width: 900px;
  padding: 13px;
  overflow: hidden;
}
.tour-popup__body {
  margin-top: 14px;
}

.tour-popup__body iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 4px;
}

/* FANCYBOX */
.fancybox__content {
  padding: 0 !important;
  border-radius: 20px;
}

/* popup Details */
#details-popup {
  width: 100%;
  max-width: 1280px;
  cursor: default;
}

#details-popup .is-close-button {
  display: none;
}

.top-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.top-actions .details-popup__close {
  margin-left: 10px;
}

.top-actions .property-card__action-btn {
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #fff;
}

.more-btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  padding: 0;
  border: none;
  gap: 6px;
  font-size: 14px;
}

.more-btn span {
  width: 20px;
  height: 20px;
  border: 1px solid #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  color: #333;
}

.action-item {
  position: relative;
}

.more-dropdown {
  position: absolute;
  top: 37px;
  right: 0;
  width: 220px;
  background: #333;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.292);
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
  z-index: 2;
}

.more-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.more-dropdown a {
  display: block;
  padding: 12px 15px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid #444;
}

.more-dropdown a:last-child {
  border-bottom: none;
}

.more-dropdown a:hover {
  background: #f5f5f5;
  color: #333;
}

.details-gallery-right {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  margin: 0 auto;
}

.details-gallery-item:first-child {
  grid-row: span 2;
}

.details-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.details-popup-inner {
  position: relative;
}

.dtl-pop-gl {
  position: absolute;
  display: inline-flex;
  align-items: center;
  border: none;
  background: #ffffff;
  padding: 5px 10px;
  bottom: 20px;
  right: 20px;
  gap: 5px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 12px;
  border-radius: 4px;
}

/* .details-popup__header {
  position: sticky;
  top: -35px;
  z-index: 11;
  background: #fff;
} */

.price-cut-badge {
  background-color: #fbe9eb;
  color: #bd1a2a;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  display: inline-block;
  margin-bottom: 15px;
}

.property-price {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #025417;
  margin: 0 0 7px;
}

.btn-pre-qu {
  display: inline-block;
  background: #d5eefb;
  padding: 8px 17px;
  border-radius: 5px;
  margin: 7px 0 0;
}

.text-primarys {
  font-weight: 600;
  text-transform: capitalize;
  color: #2880cc;
  margin-left: 5px;
  border-bottom: 1px solid #2a81cc;
}

.core-specs .spec-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 7px;
}

.core-specs .spec-label {
  display: block;
  font-size: 1.1rem;
  color: #2a2a2a;
  font-weight: 400;
}

.action-sidebar-card {
  border-radius: 4px;
  padding: 13px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 12%);
  width: 98%;
  margin-left: auto;
  position: sticky;
  top: -18px;
}

.feature-card {
  background-color: #d2c68e4f;
  border-radius: 4px;
  padding: 14px 16px;
  height: 100%;
  font-weight: 600;
  font-size: 14px;
  color: #2a2a2a;
}

.feature-card i {
  color: #2a2a2a;
}

/* Action Buttons styling */
.btn-primary-tour {
  background-color: #cab86c;
  color: #000;
  border: none;
  border-radius: 4px;
  padding: 12px 16px;
  transition: all 0.3s ease-in-out;
}

.btn-primary-tour:hover {
  background-color: #333;
  color: #fff;
}

.btn-outline-agent {
  color: #333;
  background-color: transparent;
  border: 1px solid #333;
  border-radius: 4px;
  padding: 12px 16px;
  transition: all 0.2s ease;
}

.btn-outline-agent:hover {
  background-color: #333;
  color: #fff;
  border-color: #333;
}

.feature-grid {
  --bs-gutter-x: 12px;
  --bs-gutter-y: 12px;
}

.dtl-top-cont-info {
  margin-top: 30px;
  border-top: 1px solid #3333;
  padding: 20px 0 0;
}

.sub-txt {
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ebefff;
  background: #7890e2;
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  line-height: 1.3;
  border-radius: 3px;
}

.dtl-top-cont-info h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.info-house span {
  display: inline-block;
  color: #333;
  cursor: pointer;
  margin: 0 10px;
  text-transform: uppercase;
  margin-right: 10px;
  font-weight: 500;
  border-bottom: 1px dashed #7890e2;
}

.dtl-top-cont-info iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 4px;
}

/* Section Titles styling override */
.section-title {
  font-size: 20px;
  font-weight: 700;
  color: #2a2a2a;
}

/* Travel Destination Form Box */
.search-destination-box {
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 0 18px;
  background-color: #fff;
  transition:
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.search-destination-box:focus-within {
  border-color: #006aff;
  box-shadow: 0 0 0 3px rgba(0, 106, 255, 0.15);
}

.search-destination-box input::placeholder {
  color: #6a6a6a;
  font-size: 1.05rem;
}

/* Custom Affordability Card Box Wrapper */
.home-loans-card {
  background-color: #f0f7ff; /* Brand background tint */
  border: 1px solid #d4ebff;
  border-radius: 8px;
}

/* Simulated Zillow Logo Layout details */
.brand-text-blue {
  color: #006aff;
  font-size: 1rem;
  letter-spacing: -0.5px;
}

/* Styled Illustrative House & Dollar Icon Component */
.loan-icon-badge {
  background-color: #fff;
  border: 3px solid #006aff;
  border-radius: 12px;
  min-width: 65px;
  height: 65px;
  box-shadow: 0 4px 8px rgba(0, 106, 255, 0.1);
}

.currency-indicator {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -40%);
  font-size: 0.9rem;
  font-weight: 800;
  color: #f2a104; /* Gold standard tint */
}

/* Content Area Details */
.loan-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2a2a2a;
}

.loan-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #4a4a4a !important;
}

/* Custom Control Actions Buttons Elements */
.btn-prequalify {
  background-color: #006aff;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.btn-prequalify:hover {
  background-color: #0052c4;
  color: #fff;
}

.btn-calculate-link {
  color: #006aff;
  font-size: 1rem;
  transition: color 0.15s ease;
}

.btn-calculate-link:hover {
  color: #00419e;
}

/* Compliance Disclaimer Tag footer metadata text alignment */
.disclaimer-text {
  font-size: 0.72rem;
  letter-spacing: 0.2px;
}

.travel-times-section {
  margin: 20px 0;
}

.loan-details {
  background-color: #d5eefb;
  padding: 26px 26px;
  border-radius: 12px;
  border-left: 4px solid #006aff;
}

.tour-col-txt strong {
  display: inline-flex;
  gap: 6px;
  font-size: 14px;
}

.tour-col-txt strong i {
  margin-top: 5px;
  color: #006aff;
}

.tour-col-txt p {
  margin-bottom: 10px;
}

.tour-col-txt p:last-child {
  margin-bottom: 0;
}

/* Core Card Styles */
.appointment-slot-group {
  position: relative;
}
/* Horizontal Slider Track Layout Components */
.calendar-slider-container {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.date-track-wrapper {
  display: flex;
  gap: 10px;
  width: 100%;
  overflow-x: auto; /* Enables sliding */
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.date-track-wrapper::-webkit-scrollbar {
  display: none;
}

/* Hidden Native Radios */
.date-node {
  flex: 0 0 calc(25% - 8px); /* Displays exactly 4 items comfortably at once */
  min-width: 85px; /* Ensures text never warps or overflows breaks */
  cursor: pointer;
}

.date-node input[type="radio"] {
  display: none;
}

/* Date Cards Unchecked Aesthetics */
.date-node-content {
  background: #e8e3d0;
  border: 1.5px solid transparent;
  border-radius: 6px;
  padding: 20px 8px;
  text-align: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.date-node-content span {
  display: block;
}

.day-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #8a8a8a;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.day-number {
  font-size: 1.4rem;
  font-weight: 800;
  color: #222222;
  line-height: 1.1;
}

.month-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6a6a6a;
}

.date-node:hover .date-node-content {
  background: #e9ecef;
  transform: translateY(-2px);
}

/* Unique Checked State Look (Premium Dark Selection Frame) */
.date-node input[type="radio"]:checked + .date-node-content {
  background: #1a1a1a;
  border-color: #1a1a1a;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.date-node input[type="radio"]:checked + .date-node-content .day-name {
  color: rgba(255, 255, 255, 0.6);
}

.date-node input[type="radio"]:checked + .date-node-content .day-number,
.date-node input[type="radio"]:checked + .date-node-content .month-name {
  color: #ffffff;
}

/* Control Navigation Handles */
.slider-arrow * {
  pointer-events: none;
}
.slider-arrow {
  background: #ffffff;
  border: 1px solid #343434;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #495057;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.slider-arrow:hover {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

/* Custom Icon Select Inputs */
.input-icon-group {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 16px;
  color: #6c757d;
  pointer-events: none;
  font-size: 1.05rem;
  z-index: 5;
}

.modern-select {
  padding: 14px 16px 14px 44px !important;
  border: 1.5px solid #e9ecef;
  border-radius: 14px;
  font-weight: 600;
  color: #333333;
  background-color: #f8f9fa;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: none !important;
}

.modern-select:focus {
  background-color: #ffffff;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.08) !important;
}

/* Full Block Destruction Action Button Control */
.btn-remove-entire-group {
  background: none;
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: #dc3545;
  padding: 4px 0;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.btn-remove-entire-group:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Action Trigger Links */
.additional-actions {
  display: flex;
  gap: 16px;
}

.action-link-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

.primary-action {
  color: #006aff;
}

.primary-action:hover {
  color: #00419e;
}

.disabled-action {
  color: #ced4da;
  cursor: not-allowed;
}

.icon-left {
  font-size: 1.05rem;
  margin-right: 6px;
}

/* Booking Submission System Actions */
.btn-submit-booking {
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  letter-spacing: 0.2px;
  display: flex;
  padding: 10px 0 12px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.25s ease;
}

.btn-submit-booking i {
  font-size: 14px;
  margin-top: 4px;
}

.btn-submit-booking:hover {
  background: #333333;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.btn-submit-booking:hover .submit-arrow {
  transform: translateX(4px);
}

.submit-arrow {
  transition: transform 0.2s ease;
}

.main-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-top: 0;
  margin-bottom: 24px;
}

.section-block {
  margin-bottom: 32px;
}

.section-block:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  background-color: #edf2f7;
  padding: 8px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 0 8px;
}

.category-group {
  display: flex;
  flex-direction: column;
}

.category-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #718096;
  margin-bottom: 12px;
}

.data-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.data-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px dashed #a3a3a3;
  font-size: 12px;
}

.data-item:last-child {
  border-bottom: none;
}

.data-label {
  color: #4a5568;
  font-weight: 500;
}

.data-value {
  color: #1a202c;
  font-weight: 600;
  text-align: right;
}

/* Responsive adjustments for mobile screens */
@media (max-width: 600px) {
  .grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Contact Form Section Styles */

.contact-title {
  font-size: 25px;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 10px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 8px;
}

.required-star {
  color: #e53e3e;
  margin-left: 2px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  background-color: #ffffff;
  font-size: 15px;
  color: #2d3748;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
}

.form-textarea {
  height: 110px;
  font-family: inherit;
  resize: none;
}

/* Interactive Focus Effects */
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: rgb(0 0 0 / 9%);
  box-shadow: rgb(0 0 0 / 15%) 0px 0px 7px 0px;
  background-color: rgb(255, 255, 255);
}

/* Form Action Button */
.btn-submit {
  margin-bottom: 20px;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  letter-spacing: 0.2px;
  display: flex;
  padding: 10px 0 12px;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: all 0.25s ease;
}

.btn-submit:hover {
  background-color: #cab86c;
  color: #000;
}

.btn-submit:active {
  transform: scale(0.99);
}

/* Custom Checkbox Alignment */
.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  margin: 0 12px 0 0;
  cursor: pointer;
  accent-color: #cab86c; /* Modern browser checkbox coloring */
}

.checkbox-label {
  font-size: 15px;
  font-weight: 500;
  color: #2d3748;
  user-select: none;
}

/* Disclaimer Text */
.form-disclaimer {
  font-size: 12px;
  line-height: 1.6;
  color: #718096;
  margin: 0 0 10px;
}

.form-link {
  color: #cab86c;
  font-weight: 600;
  font-size: 12px;
  text-decoration: underline;
}

/* table */
.custom-room-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  border: 1px solid #3333;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}

.custom-room-table th {
  background-color: #cab86c;
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 12px;
  border-bottom: 1px solid #e2e8f0;
}

.custom-room-table td {
  padding: 13px 12px;
  font-size: 12px;
  color: #2d3748;
  border-bottom: 1px solid #d8d8d8;
  background-color: #c3c3c333;
  line-height: 1.5;
}

.custom-room-table tr:last-child td {
  border-bottom: none;
}

.custom-room-table .room-name-cell {
  font-weight: 600;
  color: #1a202c;
  width: 140px;
}

.custom-room-table .empty-val {
  color: #a0aec0;
}

/* Hover effect on desktop */
.custom-room-table tr:hover td {
  background-color: #f8fafc;
}

.empty-val {
  width: 120px;
  text-align: center;
}

.contact-subtitle {
  margin: 0 0 16px;
  font-size: 12px;
  color: #333333b5;
}

.contact-section input[type="password"],
.contact-section input[type="email"],
.contact-section input[type="tel"],
.contact-section input[type="text"] {
  height: 43px;
  padding: 0 10px;
  border-radius: 3px;
}

.contact-section textarea {
  padding: 10px;
  border-radius: 3px;
  border: 1px solid #3e4c66;
  font-size: 14px;
}

.contact-section .form-group {
  margin-bottom: 12px;
}

.map-open {
  position: fixed;
  bottom: 13px;
  right: 13px;
  background-color: #2c2c2c;
  display: none;
  z-index: 9999;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  border: none;
  padding: 7px 15px;
  color: #fff;
  border-radius: 18px;
  font-size: 12px;
}

/* popup Details end */





/* Container Box */
.protection-container {
    background: #ffffff;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
        margin: 23px 0;
}

/* Interactive Header Button */
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease-in-out;
}

.accordion-header:hover {
    background-color: #fcfdfe;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-wrapper {
    background-color: #e8f2ff;
    color: var(--primary-color);
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.main-icon {
    width: 28px;
    height: 28px;
}

.accordion-header h2 {
        font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Toggle Actions */
.toggle-action {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.chevron-icon {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-speed) ease;
}

/* Smooth Accordion Mechanics */
.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-speed) ease-in-out;
}

.accordion-content:not([hidden]) {
    grid-template-rows: 1fr;
}

.content-inner {
    overflow: hidden;
    padding: 0 24px 24px 24px;
}

/* Grid Layout for Columns */
.protection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

/* Protection Content Cards */
.protection-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: var(--text-dark);
}

.protection-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin: 0 0 20px 0;
    min-height: 72px; /* aligns cards nicely if text length varies slightly */
}

/* Status Tags styling */
.tag-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-tag {
    background-color: #d4dfe3;
    padding: 12px 16px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: transparent;
    border: 2px solid var(--text-dark);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Accordion Footer Info */
.accordion-footer {
    margin-top: 32px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.accordion-footer a {
    color: var(--text-muted);
    text-decoration: underline;
}

.accordion-footer a:hover {
    color: var(--primary-color);
}

/* State changes driven by JavaScript */
.accordion-container.is-open .chevron-icon {
    transform: rotate(180deg);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .protection-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .protection-card p {
        min-height: auto;
    }
}

/* Responsive */

@media (max-width: 1600px) {
  .slick-arrow {
    background-color: #e8e1c4;
    border-color: #e8e1c4;
  }

  .slick-arrow:hover {
    background-color: #000000;
    border-color: #000;
  }

  .slick-arrow::after {
    color: #000;
  }

  .slick-next {
    right: -20px;
  }

  .slick-prev {
    left: -20px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1464px;
  }
}

@media (max-width: 1440px) {
  .h1-heading,
  h1 {
    font-size: 50px;
  }

  .banner__inner-col-txt p {
    font-size: 20px;
  }

  .banner-search__inner {
    max-width: 991px;
  }

  .radio-tabs label {
    width: 88px;
    height: 40px;
  }

  .cmn-btn {
    display: inline-flex;
    min-width: 170px;
    padding: 10px 10px;
    border-radius: 4px;
  }

  .property-price {
    font-size: 20px;
  }

  .property-title {
    font-size: 21px;
  }

  .property-info span {
    font-size: 10px;
  }

  .property-bottom {
    right: 12px;
    bottom: 95px;
  }

  .property-icons ul li a {
    width: 25px;
    height: 25px;
    font-size: 11px;
  }

  .property-tag {
    font-size: 10px;
    padding: 2px 10px;
  }

  .property-card {
    height: 320px;
  }

  input[type="password"],
  input[type="email"],
  input[type="tel"],
  input[type="text"] {
    height: 45px;
    border-radius: 3px;
    padding: 0 10px;
  }

  .why-cho-col-icon {
    width: 110px;
    height: 110px;
  }

  .why-cho-col-icon img {
    max-width: 44px;
  }

  .why-cho-col {
    border-radius: 8px;
    padding: 50px 40px;
  }

  .testimonial-cont {
    margin-left: calc((100% - 1400px) / 2);
  }

  .social-icons {
    gap: 12px;
  }
  .subscribe-form input {
    border-radius: 50px;
  }
  .subscribe-form button {
    width: 45px;
    height: 45px;
  }
  .scroll-top {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .footer-menu {
    gap: 19px;
  }

  .footer-links ul li,
  .footer-contact ul li {
    margin-bottom: 11px;
  }

  .client-text h4 {
    font-size: 18px;
  }

  .client-text span {
    font-size: 12px;
  }

  .client-img {
    width: 70px;
    height: 70px;
  }

  .client-text ul {
    gap: 3px;
    margin-top: 0;
  }

  .blog-content h4 {
    font-size: 20px;
    line-height: 1.2;
  }

  .blog-item {
    gap: 22px;
  }

  .btn-read i {
    font-size: 10px;
    margin-top: 8px;
  }

  .newsletter-form .cmn-sumbit {
    min-height: unset;
  }

  .aft-log-header .container {
    max-width: 100%;
  }
}

@media (max-width: 1366px) {
  .cmn-btn {
    padding: 12px 19px;
  }

  .form-col label {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .testimonial-cont {
    margin-left: calc((100% - 1140px) / 2);
  }

  .newsletter-box h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .property-filter__item--location {
    width: 300px;
  }

  .property-card__available {
    width: 55%;
    gap: 6px;
  }

  .property-card__available-icon i {
    font-size: 16px;
  }

  .property-card__available-date {
    font-size: 12px;
  }

  .property-card__available {
    padding: 1px 6px 6px;
  }

  .property-card__compare {
    font-size: 12px;
  }

  .property-card__compare-check {
    width: 12px;
    height: 12px;
    border: 1px solid #717171;
    border-radius: 2px;
  }

  .property-card__compare-check i {
    font-size: 7px;
  }

  .property-card__btn {
    font-size: 10px;
    padding: 8px 0 6px;
  }

  .aft-log-header .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .filter-date__btn,
  .filter-bed__btn,
  .filter-rent__btn,
  .filter-price__btn {
    font-size: 10px;
  }

  .filter-price__btn {
    width: 120px;
  }

  .more-filter-popup__title h3 {
    font-size: 20px;
  }

  .more-filter-popup__title span {
    font-size: 10px;
    padding: 6px 8px 5px;
  }

  .btn-sm-blk,
  .property-filter__link {
    font-size: 10px;
    text-align: center;
    min-width: 90px;
  }
}

@media (max-width: 1199px) {
  .h1-heading,
  h1 {
    font-size: 45px;
  }

  .banner__inner-col-txt {
    max-width: 600px;
    margin: 0 auto;
  }
  .banner__inner-col {
    min-height: 620px;
  }
  .js-banner__inner .slick-dots {
    right: 12px;
    gap: 12px;
  }

  .js-banner__inner .slick-dots li button {
    font-size: 14px;
  }

  .banner-search-input {
    padding: 12px;
    margin-top: 19px;
  }
  .banner-search__inner {
    max-width: 700px;
  }
  .banner__inner-col-txt p {
    font-size: 16px;
  }

  .banner-search__inner-col .cmn-btn {
    padding: 7px 19px;
    min-height: 45px;
  }

  .banner-search {
    margin-top: -210px;
    padding-bottom: 35px;
  }

  .scroll-down__cont {
    display: none;
  }

  .radio-tabs input:checked + label::after {
    bottom: -10px;
  }
  .explore-sec .slick-arrow {
    transform: translate(0, 0);
    top: -90px;
  }

  .explore-sec .slick-next {
    right: 0;
  }

  .explore-sec .slick-prev {
    left: unset;
    right: 50px;
  }

  .why-cho-col {
    padding: 30px 20px;
  }

  .why-cho-col h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .why-cho-sec {
    padding: 50px 0;
  }

  .testimonial-cont {
    margin-left: unset;
  }

  .footer-logo {
    max-width: 200px;
    display: inline-block;
    margin-bottom: 20px;
  }

  .footer-logo img {
    max-width: 100%;
    margin: 0;
  }

  .footer-links h4,
  .footer-contact h4,
  .footer-social h4 {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .footer-links ul li a,
  .footer-contact ul li,
  .footer-contact ul li a {
    font-size: 14px;
  }

  .footer-logo-box p {
    font-size: 14px;
  }

  .social-icons a {
    font-size: 16px;
  }

  .login-image {
    display: none;
  }

  .login-modal .modal-dialog {
    max-width: 500px;
  }

  .login-form-wrap {
    padding: 30px;
  }

  .login-form-wrap .cmn-btn {
    min-width: 140px;
    padding: 3px 6px;
    min-height: 44px;
  }

  .map-left {
    width: 70%;
  }

  .map-cnt-rgt {
    width: 30%;
  }

  .col-item-lg-100 {
    width: 100%;
  }

  .map-left {
    width: 67%;
  }

  .map-cnt-rgt {
    width: 33%;
  }

  .filter-bed,
  .btn-sm-blk.property-filter__save-btn {
    display: none;
  }

  .profile-btn span {
    font-size: 16px;
  }

  .protection-grid {
    gap: 12px;
  }

  .status-tag {
    padding: 12px 16px;
    font-size: 11px;
    gap: 6px;
  }

  .accordion-footer a {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 12px;
  }

  #details-popup {
    padding: 20px;
  }

  .top-actions {
    margin-bottom: 20px;
  }

  .core-specs .spec-value {
    font-size: 20px;
  }

  .core-specs .spec-label {
    font-size: 14px;
  }

  .core-specs .spec-label {
    font-size: 12px;
  }

  .price-cut-badge {
    padding: 4px 7px;
    font-size: 12px;
  }

  .property-price {
    font-size: 28px;
  }

  .property-address {
    font-size: 13px;
  }

  .btn-pre-qu {
    padding: 5px 10px;
    font-size: 13px;
  }

  .feature-card {
    padding: 14px 10px;
    font-size: 10px;
  }

  .feature-card i {
    font-size: 14px !important;
  }

  .dtl-top-cont-info p {
    font-size: 12px;
    line-height: 1.3;
  }

  .dtl-top-cont-info h3 {
    font-size: 16px;
  }

  .modern-select {
    font-size: 14px;
  }

  .search-destination-box i {
    font-size: 14px !important;
  }

  .search-destination-box input {
    font-size: 14px;
  }

  .search-destination-box input::placeholder {
    font-size: 14px;
  }

  .loan-details {
    padding: 20px 16px;
  }

  .loan-title {
    font-size: 18px;
  }

  .btn-prequalify {
    font-size: 14px;
  }

  .btn-calculate-link {
    font-size: 14px;
  }

  .tour-col-txt strong {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  body {
    font-size: 14px;
    line-height: 1.4em;
  }

  h2 {
    font-size: 35px;
  }

  .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: 12px;
  }

  .featured-sec {
    padding: 70px 0 50px;
  }

  .cmn-hd.text-center {
    text-align: left !important;
  }

  .featured-sec .slick-arrow {
    transform: translate(0%, 0%);
    top: -100px;
  }

  .featured-sec .slick-next {
    right: 6px;
  }

  .featured-sec .slick-prev {
    left: unset;
    right: 56px;
  }

  .explore-sec .slick-arrow {
    transform: translate(0, 0);
    top: -90px;
  }

  .map-wrap {
    padding: 100px 0 190px;
  }

  .map-img {
    margin-top: -140px;
  }

  .testimonial-item {
    padding: 90px 30px 30px;
  }

  .quote-icon {
    max-width: 50px;
  }

  .client-info {
    gap: 20px;
  }

  .read-story {
    margin-bottom: 30px;
  }

  .testimonial-sec {
    padding: 50px 0;
  }

  .js-testimonial .slick-next {
    right: 12px;
  }

  .js-testimonial .slick-prev {
    right: 60px;
  }

  .blog-content {
    width: 100%;
  }

  .recent-blog-box {
    max-width: 600px;
    margin: 0 auto;
  }

  .newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 20px 0 0;
    margin-top: 20px;
  }

  .newsletter-box h3 {
    margin-bottom: 15px;
  }

  .career-content {
    text-align: center;
    margin-bottom: 20px;
  }

  .career-btns {
    justify-content: center;
    gap: 20px;
  }

  .career-cta-sec {
    padding: 50px 0;
  }

  .footer-sec {
    overflow: hidden;
  }

  .footer-bottom-wrap {
    flex-direction: column;
  }

  .footer-menu li a {
    font-size: 14px;
  }

  .copyright-text {
    margin: 0 auto;
  }

  .scroll-top {
    width: 30px;
    height: 30px;
    font-size: 10px;
    position: absolute;
    top: 40px;
    right: 12px;
  }

  .social-btn {
    height: 46px;
  }

  .profile-btn span {
    display: none;
  }

  .profile-btn {
    border: none;
    border-right: 1px solid #959595;
    padding: 0;
    padding-right: 16px;
    margin-right: 10px;
  }

  .profile-user-img img {
    width: 50px;
    height: 50px;
  }

  .profile-user-text h3 {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .profile-user-text span {
    font-size: 12px;
  }
  .profile-user-info {
    gap: 10px;
    padding: 14px;
  }

  .profile-menu li a {
    padding: 9px 12px;
    font-size: 12px;
  }

  .profile-logout a {
    width: 100%;
    height: 40px;
    font-size: 13px;
  }

  .profile-logout {
    padding: 12px;
  }

  .profile-dropdown {
    width: 230px;
    top: 60px;
  }

  .profile-dropdown-arrow {
    top: -7px;
    right: 30px;
    width: 14px;
    height: 14px;
  }
  .more-filter-popup {
    width: 100%;
    right: -100%;
  }
  .more-filter__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-rent,
  .property-filter__actions {
    display: none;
  }

  .property-filter-left {
    width: 100%;
  }

  .property-filter__link-auto {
    margin-left: auto;
  }

  .map-left {
    width: 60%;
  }

  .map-cnt-rgt {
    width: 40%;
  }

  .cmn-banner-all {
    padding: 90px 0 50px;
  }

  .property-filter {
    margin-bottom: 20px;
  }

  .filter-date,
  .filter-price {
    display: none;
  }

  .share-popup__header h3 {
    font-size: 14px;
  }

  .tour-popup {
    width: 650px;
    padding: 5px;
  }

  .tour-popup__body iframe {
    height: 390px;
  }

  .share-popup__header {
    padding: 7px 4px 11px;
  }

  #tour-popup .is-close-button,
  #share-popup .is-close-button {
    top: 7px;
    width: 16px;
    right: 11px;
  }

  .compare-item__image img {
    width: 100%;
    height: 102px;
  }

  .compare-item__remove {
    top: 5px;
    right: 5px;
    width: 19px;
    height: 19px;
    font-size: 9px;
  }

  .compare-item__title {
    font-size: 10px;
    padding: 8px;
  }

  .compare-popup__title {
    font-size: 20px;
  }

  .compare-popup__body p {
    font-size: 10px;
  }

  .compare-popup__close {
    width: 22px;
    height: 22px;
    font-size: 9px;
    top: 10px;
    right: 10px;
  }

  .compare-buttons {
    flex-direction: row;
  }

  .dtl-pop-gl {
    padding: 3px 7px;
    bottom: 10px;
    right: 10px;
  }

  .slider-arrow {
    width: 27px;
    height: 27px;
    font-size: 12px;
  }

  .day-number {
    font-size: 18px;
  }

  .month-name,
  .day-name {
    font-size: 10px;
  }

  .date-node {
    flex: 0 0 calc(36% - 8px);
  }

  .modern-select {
    padding: 10px 9px 10px 32px !important;
    border-radius: 8px;
  }

  .field-icon {
    left: 9px;
    font-size: 14px !important;
  }

  .category-group {
    grid-column: span 2;
  }

  .grid-layout {
    grid-template-columns: 0;
    gap: 10px;
    padding: 0;
  }

  .category-title {
    font-size: 13px;
    color: #2d61ae;
    margin-bottom: 1px;
  }

  .action-sidebar-card {
    width: 100%;
    top: 0;
  }

  .section-title {
    font-size: 15px;
    font-weight: 600;
    background-color: #cbdbeb;
    padding: 8px 9px;
    border-radius: 4px;
  }
}

@media (max-width: 768px) {
  .header .cmn-btn {
    min-width: 130px;
    border-radius: 50px;
    padding: 12px 14px;
  }

  .banner__inner-col {
    min-height: 520px;
  }

  .h1-heading,
  h1 {
    font-size: 35px;
  }

  .banner-search {
    margin-top: -200px;
    padding-right: 50px;
  }

  .custom-checkbox label {
    font-size: 14px;
    line-height: 1.3;
  }

  .home-contact-sec {
    padding: 30px 0 50px;
  }
  .map-wrap {
    padding: 60px 0 190px;
  }

  .support-grid {
    max-width: 100%;
  }

  .lft-content-box {
    margin-top: 40px;
  }

  .map-left {
    display: none;
  }

  .map-cnt-rgt {
    width: 100%;
  }

  .col-item-lg-100 {
    width: 50%;
  }

  .tour-popup {
    width: 500px;
  }

  .tour-popup__body iframe {
    height: 300px;
  }

  .map-left {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    z-index: 111;
    background: rgba(0, 0, 0, 0.5);
  }

  .map-left.active {
    display: block;
  }

  .map-open {
    display: inline-flex;
  }

  .custom-room-table {
    border: none;
    border-radius: 0;
  }

  /* Hide the default table header row */
  .custom-room-table thead {
    display: none;
  }

  /* Force the table, rows, and cells to behave like block-level elements */
  .custom-room-table,
  .custom-room-table tbody,
  .custom-room-table tr,
  .custom-room-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .custom-room-table tr {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 11px;
    padding: 6px 11px;
    background-color: #ffffff;
  }

  .custom-room-table tr:hover td {
    background-color: transparent;
  }

  .custom-room-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px dashed #a7a7a7;
  }

  .custom-room-table td:last-child {
    border-bottom: none;
  }

  .custom-room-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: #718096;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .custom-room-table .room-name-cell {
    font-size: 16px;
    padding-bottom: 12px;
  }

  .custom-room-table td[data-label="Features"] {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .custom-room-table .room-name-cell {
    width: 100%;
  }

  .custom-room-table tr td,
  .custom-room-table tr:hover td {
    background-color: transparent !important;
  }

  .custom-room-table td::before {
    font-size: 12px;
    color: #0d0d0d;
  }

  .custom-room-table .room-name-cell {
    font-size: 12px;
    padding-bottom: 9px;
    font-weight: 400;
  }
}

@media (max-width: 576px) {
  p {
    margin: 0 0 15px 0;
  }

  h2 {
    font-size: 30px;
    margin: 0 0 10px 0;
  }

  .cmn-hd {
    margin-bottom: 30px;
  }

  .banner-search__inner-col .cmn-btn {
    font-size: 0px;
    min-width: 30px;
  }

  .banner-search__inner-col .cmn-btn::before {
    content: "\f002";
    font-family: "fontawesome";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
  }

  .banner-search-input {
    gap: 10px;
  }

  .banner-search__inner {
    padding: 12px;
    background: rgb(255 255 255 / 54%);
  }

  .banner__inner-col-txt {
    text-align: left;
    padding-right: 30px;
  }

  .banner-search {
    margin-top: -162px;
    padding-right: 26px;
    padding-bottom: 25px;
  }

  input[type="email"],
  input[type="tel"],
  input[type="text"] {
    font-size: 13px;
  }

  .banner-search-input {
    padding: 7px;
  }

  .radio-tabs label {
    width: 72px;
    height: 35px;
    font-size: 14px;
  }

  .slick-arrow {
    width: 32px;
    height: 32px;
  }

  .slick-arrow::after {
    font-size: 12px;
  }

  .featured-sec .slick-arrow {
    top: -56px;
  }

  .featured-sec .slick-next {
    right: 0;
  }

  .featured-sec .slick-prev {
    right: 38px;
  }

  .featured-sec .cmn-hd {
    padding-right: 75px;
  }

  .cmn-btn {
    min-width: unset;
  }

  .scroll-down {
    bottom: 28px;
    right: 9px;
  }

  .js-banner__inner .slick-dots {
    right: 5px;
  }

  .property-slider-button {
    margin-top: 30px;
  }

  .explore-sec .cmn-hd {
    text-align: center;
    margin-bottom: 10px;
  }

  .location-slider {
    margin-top: 30px;
  }

  .explore-sec {
    padding: 20px 0 50px;
  }

  .explore-sec .text-right {
    text-align: center;
  }

  .explore-sec .slick-arrow {
    transform: translate(0, -50%);
    top: 50%;
  }

  .explore-sec .slick-next {
    right: 15px;
  }

  .explore-sec .slick-prev {
    left: 15px;
    right: unset;
  }

  .home-contact-sec {
    padding: 0px 0 50px;
  }

  .form-col label sub {
    font-size: 22px;
  }

  .custom-checkbox label a {
    font-size: 14px;
  }

  .custom-checkbox label::after {
    top: 4px;
  }

  .map-wrap {
    padding: 60px 0 140px;
  }

  .map-img {
    margin-top: -90px;
  }

  .why-cho-col-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
  }

  .testimonial-sec .cmn-hd {
    padding-right: 60px;
  }

  .js-testimonial .slick-arrow {
    top: -82px;
  }
  .js-testimonial .slick-prev {
    right: 50px;
  }

  .testimonial-item-col {
    padding: 0 12px;
  }

  .client-img {
    width: 60px;
    height: 60px;
  }

  .blog-img {
    width: 135px;
    height: 100px;
  }

  .blog-item {
    gap: 14px;
  }

  .blog-content h4 {
    font-size: 16px;
    line-height: 1.5;
  }

  .btn-read {
    font-size: 12px;
  }

  .btn-read i {
    font-size: 9px;
    margin-top: 6px;
  }

  .newsletter-blog-sec {
    padding: 50px 0;
  }

  .map-box {
    padding: 5px;
  }

  .support-grid {
    grid-template-rows: 180px 180px;
  }

  .lft-content-box {
    margin-top: 10px;
  }

  .lft-img-cont {
    padding: 60px 0;
  }

  .scroll-top {
    top: -17px;
    background-color: #fff;
  }

  .footer-logo-box p {
    max-width: 100%;
  }

  .footer-links ul,
  .footer-contact ul {
    column-count: 2;
  }

  .footer-menu {
    gap: 10px;
    justify-content: center;
  }

  .footer-bottom-wrap {
    gap: 14px;
  }

  .footer-links {
    margin: 10px 0;
  }

  .footer-social {
    margin-top: 10px;
  }

  .footer-top {
    padding: 50px 0 40px;
  }

  .social-icons {
    margin-bottom: 24px;
  }

  .property-bottom {
    bottom: 16px;
  }

  .home-contact-wrap .row {
    --bs-gutter-y: 20px;
  }

  .custom-checkbox label {
    font-size: 12px;
    padding-left: 28px;
  }

  .custom-checkbox label a {
    font-size: 12px;
  }

  .location-content {
    right: 20px;
    text-align: center;
  }

  .form-col .cmn-sumbit {
    width: 100%;
  }

  .js-testimonial .slick-list {
    margin: 0 -15px;
    padding-right: 55px;
  }

  .login-form-wrap {
    padding: 20px;
  }

  .forgot-link {
    font-size: 12px;
  }

  .form-group-check .custom-checkbox label::before {
    top: -1px;
  }

  .form-group-check .custom-checkbox label::after {
    top: 0px;
  }

  .register-text a {
    font-size: 14px;
  }

  .login-form-wrap h2 {
    font-size: 28px;
  }

  .login-form-wrap .cmn-btn {
    min-width: 120px;
    padding: 3px 6px;
    min-height: 36px;
    font-size: 12px;
  }

  .more-filter__grid {
    grid-template-columns: 1fr;
  }

  .col-item-lg-100 {
    width: 100%;
  }

  .property-filter__link {
    font-size: 0px;
    padding: 0;
    min-width: 45px;
  }

  .property-filter__link i {
    right: unset;
    left: 11px;
    font-size: 13px;
  }

  .more-filter-popup__close {
    width: 27px;
    height: 27px;
    font-size: 12px;
  }

  .more-filter-popup__header {
    padding: 12px 10px;
  }

  .more-filter-popup__body {
    padding: 20px;
  }

  .property-filter__item--location input[type="text"] {
    height: 40px;
  }

  .property-filter__link {
    min-width: 40px;
    min-height: 40px;
  }

  .property-filter__item--location {
    width: 100%;
  }

  .share-popup {
    width: 360px;
  }

  .share-popup__header h3 {
    font-size: 17px;
  }

  #tour-popup .is-close-button,
  #share-popup .is-close-button {
    width: 16px;
  }

  .property-card__action-btn {
    font-size: 12px;
  }

  .tour-popup {
    width: 370px;
  }

  .tour-popup__body iframe {
    height: 261px;
  }

  .tour-popup__body {
    margin-top: 5px;
  }

  .share-popup__header h3 {
    font-size: 13px;
  }

  .compare-item__image {
    position: relative;
    padding-top: 70%;
  }

  .compare-item__title {
    display: none;
  }

  .compare-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }

  .compare-item__remove {
    top: -5px;
    right: -5px;
    width: 14px;
    height: 14px;
    font-size: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .compare-popup__header {
    margin-bottom: 5px;
  }

  .pop-btn {
    padding: 10px 8px;
    border-radius: 32px;
    width: 100%;
    max-width: 85px;
    font-size: 10px;
  }

  .compare-popup {
    padding: 15px 0;
  }

  .compare-popup__title {
    font-size: 16px;
  }

  .compare-popup__body p {
    margin-bottom: 15px;
  }

  .compare-popup__close {
    width: 19px;
    height: 19px;
    font-size: 9px;
    padding: 0;
  }

  #details-popup {
    padding: 16px;
  }

  .details-popup__header .brand {
    max-width: 120px;
  }

  .top-actions .property-card__action-btn {
    width: 25px;
    height: 25px;
    font-size: 9px;
  }

  .top-actions {
    gap: 10px;
  }

  .top-actions .details-popup__close {
    margin-left: 3px;
  }

  .more-dropdown a {
    padding: 8px 15px;
    font-size: 12px;
  }

  .more-dropdown {
    width: 180px;
  }

  .details-gallery-right {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .btn-primary-tour span {
    font-size: 14px !important;
  }

  .btn-outline-agent {
    font-size: 14px;
    border-radius: 4px;
    padding: 9px 11px;
  }

  .accordion-header h2 {
    font-size: 13px;
  }

  .icon-wrapper {
    padding: 9px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.toggle-action {
    gap: 2px;
    font-size: 0px;
    flex-shrink: 0;
}

.accordion-header {
    padding: 10px;
}

.content-inner {
    padding: 0 10px 16px 10px;
}

.accordion-footer {
    margin-top: 20px;
    font-size: 10px;
}

    .accordion-footer a {
        font-size: 10px;
    }
}
