@import url("https://fonts.googleapis.com/css2?family=Questrial&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@font-face {
  font-family: "Tw Cen MT";
  font-style: normal;
  font-weight: 400;
  src: url("../font/tw-cen-mt.woff") format("woff");
  font-display: swap;
}
html, body {
  font-family: "Tw Cen MT", sans-serif;
  font-size: "16px";
}

#site-header {
  width: 100%;
  height: auto;
  background-color: #001731;
}
@media (max-width: 991.98px) {
  #site-header {
    display: none;
  }
}
#site-header .site-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  #site-header .site-container {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  #site-header .site-container {
    max-width: 970px;
  }
}
@media (min-width: 1200px) {
  #site-header .site-container {
    max-width: 1210px;
  }
}
@media (min-width: 1400px) {
  #site-header .site-container {
    max-width: 1320px;
  }
}
#site-header .site-container .info-bar {
  width: 100%;
  height: 42px;
  padding: 10px 30px;
}
#site-header .site-container .info-bar .contact-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 18px;
}
#site-header .site-container .info-bar .contact-info span span, #site-header .site-container .info-bar .contact-info span a {
  color: #fff;
  font-size: 15px;
}
#site-header .site-container .info-bar .contact-info span a, #site-header .site-container .info-bar .contact-info span span {
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
#site-header .site-container .info-bar .contact-info span:hover span, #site-header .site-container .info-bar .contact-info span:hover a {
  color: rgba(0, 174, 239, 0.75);
}
#site-header .site-container .nav-bar {
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#site-header .site-container .nav-bar ul {
  display: flex;
  gap: 7px;
  list-style: none;
  width: auto;
  height: 100%;
  white-space: nowrap;
}
#site-header .site-container .nav-bar ul li {
  height: 100%;
  display: flex;
  align-items: center;
}
#site-header .site-container .nav-bar ul li.menu-item-has-children {
  position: relative;
}
#site-header .site-container .nav-bar ul li.menu-item-has-children > a::after {
  content: "\f282";
  font-size: 10px;
  font-weight: bold;
  font-family: "bootstrap-icons";
  margin-left: 5px;
}
#site-header .site-container .nav-bar ul li.menu-item-has-children:hover .sub-menu {
  display: block;
}
#site-header .site-container .nav-bar ul li.menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 0;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  width: auto;
  height: auto;
}
#site-header .site-container .nav-bar ul li.menu-item-has-children .sub-menu li {
  width: 100%;
  height: 100%;
}
#site-header .site-container .nav-bar ul li.menu-item-has-children .sub-menu li a {
  width: 100%;
  font-size: 12px;
  color: #222222;
  text-decoration: none;
  line-height: 50px;
  border-bottom: 1px solid #dce0e0;
}
#site-header .site-container .nav-bar ul li.menu-item-has-children .sub-menu li a:hover {
  background-color: rgb(0, 174, 255);
  color: #fff;
}
#site-header .site-container .nav-bar ul li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 0 15px;
  display: flex;
  align-items: center;
  line-height: 90px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
  text-transform: uppercase;
}
#site-header .site-container .nav-bar ul li a:hover {
  color: #d6d6d6;
  background-color: rgba(0, 174, 255, 0.1);
}
#site-header .search-bar {
  background: #fff;
  width: 100%;
  height: 62px;
  transition: all 0.3s ease;
}
#site-header .search-bar .search-el {
  flex-basis: auto;
}
#site-header .search-bar .search-el .search-btn {
  display: flex;
  gap: 6px;
}
#site-header .search-bar .search-el .search-btn.btn-main-search {
  justify-content: center;
  align-items: center;
  background: #c4aa54;
  border-color: #c4aa54;
  min-width: 160px;
  text-align: center;
  color: #fff;
}
#site-header .search-bar .search-input:focus {
  outline: none;
  box-shadow: none;
  border-color: #dee2e6;
}

.search-bar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  z-index: 20000;
  transform: translateY(0);
  animation: showSearchBar 0.8s ease forwards;
}

@keyframes showSearchBar {
  from {
    transform: translateY(-20px);
  }
  to {
    transform: translateY(0);
  }
}
#mobile-header {
  width: 100%;
  background-color: #001731;
}
@media (min-width: 992px) {
  #mobile-header {
    display: none;
  }
}
#mobile-header .mobile-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 16px;
}
#mobile-header .mobile-header-container .mobile-logo {
  display: flex;
  align-items: center;
}
#mobile-header .mobile-header-container .mobile-logo a img {
  max-height: 24px;
  width: auto;
}
#mobile-header .mobile-header-container .mobile-menu-icon {
  display: flex;
  align-items: center;
}
#mobile-header .mobile-header-container .mobile-menu-icon i {
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: color 0.2s ease-in-out;
}
#mobile-header .mobile-header-container .mobile-menu-icon i:hover {
  color: rgba(0, 174, 239, 0.75);
}

#mobile-sidebar {
  position: fixed;
  top: 0;
  left: -85%;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background-color: #fff;
  z-index: 1100;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
#mobile-sidebar .mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 20px;
  border-bottom: 1px solid #eee;
}
#mobile-sidebar .mobile-sidebar-header .menu-label {
  font-family: "Questrial", sans-serif;
  font-size: 18px;
  color: #001731;
  letter-spacing: 1px;
}
#mobile-sidebar .mobile-sidebar-header .close-btn {
  color: #ccc;
  cursor: pointer;
  display: flex;
  align-items: center;
}
#mobile-sidebar .mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
#mobile-sidebar .mobile-menu li {
  border-bottom: 1px solid #eee;
  position: relative;
}
#mobile-sidebar .mobile-menu li a {
  display: block;
  padding: 20px;
  color: #001731;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}
#mobile-sidebar .mobile-menu li a:active {
  background-color: #f9f9f9;
}
#mobile-sidebar .mobile-menu li.menu-item-has-children > a::after {
  content: "\f282";
  font-family: "bootstrap-icons";
  position: absolute;
  right: 20px;
  font-size: 12px;
  color: #001731;
}
#mobile-sidebar .mobile-menu li .sub-menu {
  list-style: none;
  padding: 0;
  background-color: #fff;
}
#mobile-sidebar .mobile-menu li .sub-menu li {
  border-bottom: none;
}
#mobile-sidebar .mobile-menu li .sub-menu li a {
  padding: 15px 20px 15px 40px;
  font-size: 13px;
  color: #666;
}
#mobile-sidebar .mobile-menu li .sub-menu li:first-child {
  border-top: 1px solid #eee;
}

#mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.mobile-menu-open {
  overflow: hidden;
}
.mobile-menu-open #mobile-sidebar {
  left: 0;
}
.mobile-menu-open #mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}

footer {
  font-family: "Questrial", sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  color: #fff;
}
footer .footer-top {
  background-color: #002349;
  padding: 100px 0 70px;
}
@media (max-width: 767.98px) {
  footer .footer-top {
    padding: 50px 30px 30px;
  }
}
footer .footer-top-title h3 {
  font-family: "Tw Cen MT", Sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
}
footer .footer-top .footer-col-1 {
  line-height: 24px;
}
footer .footer-link-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-link-list ul li {
  padding-top: 8px;
}
footer .footer-link-list ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
footer .footer-link-list ul li a:hover {
  color: rgb(221, 221, 221);
}
footer .footer-bottom {
  background-color: #002038;
  text-align: center;
}
footer .footer-bottom .social-medias a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
footer .footer-bottom .social-medias a:hover {
  color: #48629a;
}
footer .footer-bottom .footer-logo {
  margin: 30px 0;
}
footer .footer-bottom .footer-about {
  padding: 0 55px;
}
@media (max-width: 768px) {
  footer .footer-bottom .footer-about {
    padding: 0 24px;
  }
}
footer .footer-bottom .footer-about p {
  line-height: 24px;
}

.breadcrumb-nav {
  font-family: "Questrial", sans-serif;
  font-size: 14px;
}
.breadcrumb-nav .breadcrumb {
  margin-bottom: 10px;
}
.breadcrumb-nav .breadcrumb .breadcrumb-item a {
  color: #001731;
}

.property-breadcrumbs {
  font-size: 14px;
}
.property-breadcrumbs ol.breadcrumb {
  list-style: none;
  background: transparent;
}
.property-breadcrumbs .breadcrumb-item {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.property-breadcrumbs .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.property-breadcrumbs .breadcrumb-item a:hover {
  opacity: 0.8;
  color: #fff;
}
.property-breadcrumbs .breadcrumb-item.active {
  font-weight: 300;
}
.property-breadcrumbs .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  display: flex;
  align-items: center;
}

.page-title {
  font-size: 30px;
  color: #222;
  margin-bottom: 10px;
}

.listing-title {
  font-size: 32px;
  color: #222;
  margin-bottom: 10px;
}

.btn-load-listing {
  color: #001731;
  background-color: transparent;
  border-color: #001731;
  transition: all 0.3s ease-in-out;
  padding: 12px;
  font-size: 15px;
  font-weight: 500;
  min-width: 190px;
}
.btn-load-listing:hover {
  color: #fff;
  background-color: #001731;
  border-color: #001731;
}

.post-title, .post-content {
  font-size: 14px;
}

.post-title {
  color: #222;
  text-decoration: none;
}

.post-content {
  color: #636363;
}

.property-tags {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 5px;
  padding: 0 7px;
  display: flex;
  justify-content: space-between;
}
.property-tags .badge {
  border-radius: 2px;
}
.property-tags .badge.bg-featured {
  background-color: #c4aa54;
  text-transform: uppercase;
  font-family: "Questrial", sans-serif;
  font-size: 10px;
}
.property-tags .property-categories {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px;
  max-height: 20px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  z-index: 100;
}
.property-tags .property-categories:hover {
  max-height: 300px; /* large enough to fit content */
}
.property-tags .property-categories .bg-category {
  padding: 4px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.65);
  text-transform: uppercase;
  font-family: "Questrial", sans-serif;
  font-size: 10px;
}
.property-tags .property-categories .bg-category:hover {
  color: #001731 !important;
}

.property-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
  border: none;
}
.property-card .carousel .carousel-inner {
  cursor: pointer;
}
.property-card .card-body {
  padding: 20px;
  height: 170px;
  overflow: hidden;
  border: none;
}
.property-card .card-body .card-title {
  font-family: "Questrial", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
}
.property-card .card-body .property-price {
  font-family: "Questrial", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.property-card .card-body .property-amenities {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}
.property-card .card-body .property-amenities .amenity {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Questrial", sans-serif;
  font-size: 16px;
  color: #222;
}
.property-card .card-body .property-amenities .amenity i {
  color: #222;
  font-size: inherit;
}

.main-listing {
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
}
@media (max-width: 992.98px) {
  .main-listing {
    padding: 10px 0;
  }
}

.featured-listing-title {
  padding: 24px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  width: calc(100% - 75px);
}
@media (max-width: 992.98px) {
  .featured-listing-title {
    width: 100%;
  }
}
.featured-listing-title h5 {
  font-size: 16px;
  font-weight: 400;
  color: #222;
}

#featuredPropertiesCarousel {
  width: calc(100% - 75px);
}
@media (max-width: 992.98px) {
  #featuredPropertiesCarousel {
    width: 100%;
  }
}
#featuredPropertiesCarousel .carousel-control-prev .carousel-control-prev-icon,
#featuredPropertiesCarousel .carousel-control-next .carousel-control-next-icon {
  margin-bottom: 30px;
}
#featuredPropertiesCarousel .carousel-control-next, #featuredPropertiesCarousel .carousel-control-prev {
  top: -135px;
}

.featured-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
  border: none;
  height: 475.98px;
}
.featured-card .card-body {
  padding: 20px;
}
.featured-card .card-body .card-title {
  font-family: "Questrial", sans-serif;
  font-size: 16px;
}
.featured-card .card-body .property-map {
  display: flex;
  font-family: "Questrial", sans-serif;
  font-size: 13px;
  color: #636363;
}
.featured-card .card-body .property-amenities {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  margin-bottom: 3px;
}
.featured-card .card-body .property-amenities .amenity {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Questrial", sans-serif;
  font-size: 16px;
  color: #222;
}
.featured-card .card-body .property-amenities .amenity i {
  color: #222;
  font-size: inherit;
}
.featured-card .card-body .property-types {
  line-height: 16px;
}
.featured-card .card-body .property-types span {
  font-family: "Questrial", sans-serif;
  font-size: 12px;
  color: #222;
  font-weight: 600;
}

.discover-wrapper {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  width: calc(100% - 75px);
  border-radius: 4px;
}
@media (max-width: 992.98px) {
  .discover-wrapper {
    width: 100%;
  }
}
.discover-wrapper .discover-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #222;
}
.discover-wrapper .property-type-parent,
.discover-wrapper .property-type-children {
  font-size: 16px;
  font-family: "Questrial", sans-serif;
  list-style: none;
  padding-left: 0;
}
.discover-wrapper .property-type-parent > li, .discover-wrapper .property-type-children > li {
  margin-bottom: 6px;
}
.discover-wrapper .term-parent a, .discover-wrapper .term-child a, .discover-wrapper .term-parent i, .discover-wrapper .term-child i {
  color: #001731;
}
.discover-wrapper .property-type-children {
  padding-left: 22px; /* indent children */
}

.about-container {
  background: #00203F;
  min-height: 200px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.about-container .about-title {
  color: #fff;
}

.about-body {
  font-family: "Questrial", sans-serif;
  font-size: 16px;
  color: #54595f;
  line-height: 1.8em;
  margin-top: 54px;
}

#team {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
#team .team-main-title {
  font-size: 35px;
  color: #000;
  margin-bottom: 28px;
}

.agent {
  font-size: 15px;
  font-family: "Questrial", sans-serif;
  transition: all 0.3s ease-in-out;
}
.agent:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.agent .agent-name a, .agent .agent-profile {
  color: #001731;
}

.agent-wrap {
  background: #fff;
  border-radius: 4px;
  padding: 40px;
  margin: 30px 0;
}
.agent-wrap .agent-name {
  font-size: 24px;
}
.agent-wrap .agent-sub-info {
  font-size: 15px;
  font-family: "Questrial", sans-serif;
  color: #222;
}
.agent-wrap .agent-sub-info span {
  color: #222;
}
.agent-wrap .agent-about-name {
  font-size: 18px;
  padding-bottom: 16px;
}
.agent-wrap .agent-about-body {
  font-size: 15px;
  font-family: "Questrial", sans-serif;
  color: #222;
}

.agent-additional-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
}
.agent-additional-info div {
  margin: 2px 0;
}
.agent-additional-info strong {
  margin-right: 3px;
}

.agent-buttons .btn, .agent-buttons a {
  min-width: 150px;
}

.agent-contact {
  background: #fff;
  padding: 30px;
  margin: 30px 0;
}
.agent-contact .agent-contact-title {
  font-size: 18px;
  margin-bottom: 24px;
}

.btn-agent-tab {
  border: 1px solid #001731;
  background: #fff;
  color: #001731;
  font-size: 15px;
  font-family: "Questrial", sans-serif;
  width: 100%;
  margin: 50px 0;
}
.btn-agent-tab:hover, .btn-agent-tab:active {
  border: 1px solid #001731;
  background: #fff;
  color: #001731;
}
.btn-agent-tab.active {
  background: #001731;
  color: #fff;
}

.review-title {
  font-size: 16px;
  padding: 0 0 30px;
  margin: 0 0 30px;
  color: #222;
}

.review-label {
  font-size: 15px;
  font-family: "Questrial", sans-serif;
  font-weight: 700;
  margin-bottom: 4px;
}

.agent-wrap .review-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.agent-wrap .review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.agent-wrap .review-card .card-title {
  font-family: "Questrial";
  font-weight: 600;
  color: #333;
}
.agent-wrap .stars-container {
  color: #ffb900;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.agent-wrap .stars-container .star-muted {
  color: #e0e0e0;
}
.agent-wrap .stars-container .rating-number {
  font-size: 0.85rem;
  color: #6c757d;
  margin-left: 8px;
}
.agent-wrap .review-date {
  font-size: 0.85rem;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pagination .page-numbers {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: var(--bs-primary);
  background-color: #fff;
  border: 1px solid #dee2e6;
  text-decoration: none;
}
.pagination .page-numbers:hover {
  background-color: #e9ecef;
}
.pagination .page-numbers.current {
  z-index: 3;
  color: #fff;
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}
.pagination .page-numbers.dots {
  cursor: default;
  background-color: transparent;
}

.nav-property {
  position: absolute;
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-property .property-navigation .property-navigation-item a {
  color: #222222;
  font-weight: 500;
  font-size: 13px;
  font-family: "Questrial", sans-serif;
}
.nav-property .property-navigation .property-navigation-item a.active {
  color: #001731;
  border-bottom: 3px solid #001731;
}

.nav-property-search-bar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 9999;
}

.property-banner {
  position: relative;
  width: 100%;
  min-height: 88vh;
  aspect-ratio: 4/1.67;
}
.property-banner .property-container {
  z-index: 999;
  position: relative;
  height: 100%;
}

.property-map-overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.property-map-overlay.show {
  display: block;
}

.mobile-property-banner {
  position: relative;
  width: 100%;
  min-height: 410px;
  max-height: 100%;
  aspect-ratio: 4/1.67;
}
.mobile-property-banner .property-container {
  position: relative;
  height: 100%;
}
.mobile-property-banner .property-images-count {
  position: absolute;
  bottom: 20px;
  right: 20px;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 3px 10px;
  color: #fff;
  font-size: 12px;
  font-family: "Questrial", sans-serif;
  border-radius: 2px;
}

#property-tags {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 5px;
  padding: 0 7px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#property-tags .badge {
  border-radius: 2px;
  font-family: "Questrial", sans-serif;
  font-size: 12px;
}
@media (max-width: 768.98px) {
  #property-tags .badge {
    font-size: 10px;
  }
}
#property-tags .badge.bg-featured {
  background-color: #c4aa54;
  text-transform: uppercase;
  padding: 8px 10px;
}
#property-tags .property-categories {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 700px;
  transition: max-height 0.5s ease;
}
@media (max-width: 768.98px) {
  #property-tags .property-categories {
    justify-content: flex-start;
  }
}
#property-tags .property-categories .bg-category {
  border-radius: 2px;
  padding: 8px 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  font-family: "Questrial", sans-serif;
  font-size: 12px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768.98px) {
  #property-tags .property-categories .bg-category {
    font-size: 10px;
  }
}
#property-tags .property-categories .bg-category:hover {
  color: #001731 !important;
}

#property-tags-mobile {
  display: flex;
  gap: 5px;
  padding: 0 7px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#property-tags-mobile .badge {
  border-radius: 2px;
  font-family: "Questrial", sans-serif;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.65);
}
@media (max-width: 768.98px) {
  #property-tags-mobile .badge {
    font-size: 10px;
  }
}
#property-tags-mobile .badge.bg-featured {
  background-color: #c4aa54;
  text-transform: uppercase;
  padding: 8px 10px;
}
#property-tags-mobile .property-categories {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 700px;
  transition: max-height 0.5s ease;
}
@media (max-width: 768.98px) {
  #property-tags-mobile .property-categories {
    justify-content: flex-start;
  }
}
#property-tags-mobile .property-categories .bg-category {
  border-radius: 2px;
  padding: 8px 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  font-family: "Questrial", sans-serif;
  font-size: 12px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768.98px) {
  #property-tags-mobile .property-categories .bg-category {
    font-size: 10px;
    background-color: rgba(0, 0, 0, 0.65);
  }
}
#property-tags-mobile .property-categories .bg-category:hover {
  color: #001731 !important;
}

.btn-tab {
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  height: 48px;
  width: 48px;
  line-height: 48px;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
.btn-tab::before {
  content: "";
  display: none !important;
}
.btn-tab::after {
  content: "";
  display: none;
}
@media (max-width: 768.98px) {
  .btn-tab {
    background: transparent;
    color: #000;
    border: 1px solid #000;
  }
}
.btn-tab:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
}
.btn-tab:hover .active {
  color: #fff;
  background-color: rgba(0, 23, 49, 0.68);
}
.btn-tab:active {
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 768.98px) {
  .btn-tab:active {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
  }
}
.btn-tab.active {
  color: #fff;
  background-color: rgba(0, 23, 49, 0.68);
}
@media (max-width: 768.98px) {
  .btn-tab.active {
    background: #001731;
    border: 1px solid #001731;
    color: #fff;
  }
}

.property-title {
  font-size: 30px;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 768.98px) {
  .property-title {
    font-size: 20px;
    color: #000;
  }
}

#property-info {
  height: 100%;
}

.property-address {
  font-size: 15px;
  font-family: "Questrial", sans-serif;
  color: #fff;
}
@media (max-width: 768.9px) {
  .property-address {
    color: #636363;
  }
}

.property-item-tools {
  display: flex;
  gap: 5px;
  align-items: flex-end;
}
@media (max-width: 768.9px) {
  .property-item-tools {
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
  }
}

.property-price {
  font-size: 28px;
  font-family: "Questrial", sans-serif;
  font-weight: 700;
}

.dropdown-menu-dark-custom {
  background-color: rgba(0, 0, 0, 0.85);
}
.dropdown-menu-dark-custom .dropdown-item {
  color: #fff;
}
@media (max-width: 768px) {
  .dropdown-menu-dark-custom .dropdown-item {
    font-size: 12px;
  }
}
.dropdown-menu-dark-custom .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.card-header-custom {
  background-color: #fff;
}
.card-header-custom .card-title {
  font-size: 18px;
}

.property-types {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
}
.property-types .property-type {
  font-weight: 600;
  font-size: 15px;
  margin-right: 0.5rem;
  color: #000;
}
.property-types span {
  font-weight: 400;
  font-size: 15px;
  font-family: "Questrial", sans-serif;
  color: #5c6872;
}

.read-more-toggle {
  font-size: 15px;
  font-family: "Questrial", sans-serif;
  color: #001731;
}

.btn-details-map {
  color: #fff;
  background-color: #001731;
  border-color: #001731;
  text-decoration: none;
  font-family: "Questrial", sans-serif;
  padding: 0.25rem 0.5rem;
}
.btn-details-map:hover {
  background-color: #001731;
  color: #fff;
}

.map-details-container {
  padding: 8px 0;
}

.map-label, .details-label {
  font-size: 15px;
  font-weight: 700;
  font-family: "Questrial", sans-serif;
}

.map-value, .details-value, .feature-value {
  font-size: 15px;
  font-family: "Questrial", sans-serif;
}

.updated-time {
  font-size: 12px;
  font-family: "Questrial", sans-serif;
}

.row-details {
  background-color: rgba(0, 35, 73, 0.1);
  border: 1px solid #002349;
  padding: 30px;
}

.agent-info, .agent-info a {
  font-size: 15px;
  color: #222 !important;
  font-family: "Questrial", sans-serif;
}

.enquire-text {
  font-size: 16px;
  margin-top: 40px;
  margin-bottom: 10px !important;
  padding-bottom: 18px;
}

.enquire-label {
  margin-bottom: 0.5rem;
  font-size: 15px;
  font-family: "Questrial", sans-serif;
  color: #222;
  font-weight: 600;
}

.form-control::placeholder {
  color: #a1a7a8;
  font-family: Questrial;
}
.form-control-lg {
  min-height: calc(1.5em + 1rem + var(--bs-border-width) * 2);
  padding: 0.5rem 1rem !important;
  font-size: 1rem;
  border-radius: var(--bs-border-radius-lg) !important;
  color: var(--bs-body-color) !important;
}

.blog-wrapper {
  border: none;
}
.blog-wrapper .blog-title {
  font-size: 30px;
}
.blog-wrapper .blog-info {
  display: flex;
  gap: 22px;
  font-size: 15px;
}
.blog-wrapper .blog-post {
  margin-top: 10px;
  font-size: 15px;
  font-family: "Questrial", sans-serif;
}

.blog-prev-next .post-nav-label, .blog-prev-next .post-nav-link {
  font-size: 15px;
  font-family: "Questrial";
}
.blog-prev-next .post-nav-label {
  color: #222;
}
.blog-prev-next .post-nav-link h5 {
  color: #001731;
}

.related-posts-title {
  font-size: 18px;
}

.category-title {
  font-size: 30px;
  margin: 0;
}

.category-post-title {
  font-size: 30px;
}

.category-post-content {
  font-size: 15px;
}

.btn-category-read {
  background: #001731;
  color: #fff;
}

#search-additional-features {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  display: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  position: relative;
  z-index: 1;
}
#search-additional-features.show {
  max-height: 500px;
  padding: 15px;
  overflow: visible;
}

#search-other-features, #advanced-search-other-features {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  display: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
#search-other-features.show, #advanced-search-other-features.show {
  max-height: 100%;
  padding: 15px;
  overflow: visible;
}

.select2-container {
  height: 100%;
}

.select2-container--default .select2-selection--single {
  height: 100%;
  display: flex;
  align-items: center;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: unset;
}

.advanced-search-wrap {
  bottom: -38.5%;
  left: 40%;
  z-index: 10;
}
@media (max-width: 768.98px) {
  .advanced-search-wrap {
    bottom: -114.5%;
    left: 35%;
  }
}

.property-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  font-size: 15px;
  width: 100%;
}
@media (max-width: 576.98px) {
  .property-features-grid {
    gap: 10px;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-color: #f7f8f9;
}

a {
  color: #001731;
}

@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
}
@media print {
  header, footer, nav,
  .nav-property, .no-print, .property-map-overlay,
  .btn-group, .btn-tab, #similar-listings-wrap,
  .sticky-agent, .mobile-property-banner,
  .d-lg-none, #property-agent-form,
  #property-agent-email-modal, .property-item-tools,
  #mobile-contact-agent, button, .search-bar, form, .btn, .back-to-top {
    display: none !important;
  }
  body {
    background: #fff !important;
    color: #000 !important;
    margin: 0;
    padding: 0;
    font-family: "Times New Roman", serif;
    font-size: 12pt;
    line-height: 1.4;
  }
  .container, .container-lg {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .row {
    display: block !important;
  }
  .col-lg-9 {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .property-banner {
    height: 400px !important;
    background-position: center !important;
    background-size: cover !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    margin-bottom: 20px;
    position: relative;
  }
  .property-banner::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
  }
  .property-title, .property-address, .property-price {
    position: relative;
    color: #000 !important;
    text-shadow: none !important;
    background: rgba(255, 255, 255, 0.6);
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5px;
  }
  img {
    max-width: 100% !important;
    height: auto !important;
    page-break-inside: avoid;
  }
  h1, h2, h3, .overview-item {
    page-break-after: avoid;
  }
  section, .row > div {
    page-break-inside: avoid;
    margin-bottom: 20px;
  }
  table, tr, td, th {
    page-break-inside: avoid;
  }
  /*
  body * { display: none !important; }
  #property-content, #property-content * { display: block !important; }
  */
}
