* {
  font-feature-settings: 'pnum' on, 'lnum' on;
}

::selection {
  color: #fff;
  background: var(--rh-accent-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

body {
  font-family: Raleway;
  font-weight: 100;
  font-size: 16px;
  background-color: var(--bs-body-bg);
  color: #fff;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.fs-22 {
  font-size: 22px;
}

.fs-23 {
  font-size: 23px;
}

.fs-24 {
  font-size: 24px;
}

.fs-28 {
  font-size: 28px;
}

.fs-32 {
  font-size: 32px;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pl-100 {
  padding-left: 100px;
}

.px-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.px-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 100;
}

.text-accent * {
  color: var(--rh-primary-color) !important;
}

.navbar {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: start;
  background-color: transparent;
  /* backdrop-filter: blur(5px);
  border-bottom: 1.5px solid var(--rh-border-color); */
  z-index: 9999;
  top: 0;
  transition: all 0.3s;
}

.navbar.scrolled{
  position: fixed;
  background-color: #121212e8;
  backdrop-filter: blur(5px);
  border-bottom: 1.5px solid var(--rh-border-color);
}

.navbar-collapse {
  background-color: rgba(0, 0, 0, 0.9);
}

.navbar .logo img {
  width: 100%;
  max-width: 120px;
  height: auto;
}

.navbar .col-1 {
  width: 7.333333%;
}

.navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: start;
}

.navbar ul li {
  margin: 0;
}

.navbar ul li a {
  display: block;
  padding: 20px;
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 300;
}

.navbar ul li a:hover {
  color: var(--rh-primary-color);
}

@media only screen and (min-width: 600px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    display: flex;
  }

  .navbar ul li a {
    padding: 26px 23px;
  }
}

.menu-box .active {
  color: #fff;
  position: relative;
}

.menu-box .active::after {
  content: '';
  background-image: linear-gradient(90deg, transparent, var(--rh-accent-color), transparent);
  left: 0;
  bottom: -1px;
  height: 1px;
  position: absolute;
  transition-duration: .2s;
  width: 100%;
}

.menu-box li {
  position: relative;
}

.menu-box li:hover .dropdown {
  display: block;
}

.menu-box .dropdown {
  display: none;
  position: absolute;
  background-color: #121212;
  top: 100%;
  min-width: 150px;
  border: 1px solid #333333;
  border-radius: 4px;
  z-index: 1;
}

.menu-box .dropdown a {
  display: block;
  padding: 10px;
  color: #b8b8b8;
  text-decoration: none;
  font-size: 14px;
}

.right-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.right-side>div {
  margin-left: 20px;
  position: relative;
}

.right-side>div a {
  text-decoration: none;
  color: var(--rh-primary-color);
  font-size: 15px;
  font-weight: 300;
  display: block;
  cursor: pointer;
}

.right-side>.language a {
  text-decoration: none;
  color: #b8b8b8;
  font-size: 14px;
  display: block;
  cursor: pointer;
}

.right-side>.language .dropdown {
  display: none;
  position: absolute;
  background-color: #121212;
  top: 100%;
  right: -13px;
  min-width: 45px;
  border: 1px solid #333333;
  border-radius: 4px;
  z-index: 1;
}

.right-side>.whatsapp a {
  font-size: 22px;
}

.right-side>.follow-us .dropdown {
  display: none;
  position: absolute;
  background-color: #121212;
  top: 100%;
  left: 0;
  min-width: 130px;
  border: 1px solid #333333;
  border-radius: 4px;
  z-index: 1;
}

.navbar-toggler {
  border-color: rgba(255,
      255,
      255,
      0.1);
  /* Optional: changes the border to a faint white */
}

.navbar-toggler-icon {
  background-image: none;
  /* Removes the default icon */
  width: 30px;
  height: 30px;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
  /* White color for the bars */
  transition: all 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: none;
}

.navbar-toggler-icon::before {
  top: 8px;
}

.navbar-toggler-icon::after {
  bottom: 8px;
}

.follow-us .dropdown svg {
  padding-right: 10px;
}

.right-side>.language .dropdown a {
  display: block;
  padding: 10px;
  color: #b8b8b8;
  text-decoration: none;
  font-size: 14px;
}

.right-side>div .dropdown a {
  display: block;
  padding: 10px;
  color: var(--rh-primary-color);
  text-decoration: none;
  font-size: 14px;
  background-color: #000;
}

.right-side>div .dropdown a:hover {
  background-color: #333;
}

.right-side>div:hover .dropdown {
  display: block;
}

.tools {
  display: flex;
  gap: 25px;
  border-left: 1px solid #fff;
  padding-left: 20px;
}

.tools .compare,
.tools .bookmark {
  font-size: 22px;
  color: #fff;
  position: relative;
}

.tools .qt-bubble {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  color: var(--bs-body-bg);
  background-color: var(--rh-primary-color);
  position: absolute;
  top: -5px;
  right: -5px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
}

#successModal .modal-content,
#inquiryModal .modal-content {
  border-radius: 0;
  text-align: center;
}

#successModal .modal-header,
#inquiryModal .modal-header {
  border-bottom: none;
}

#inquiryModal .modal-backdrop {
  background-color: rgba(0, 0, 0, 0.9) !important;
}

.modal-backdrop {
  background-color: #000;
  opacity: 0.75 !important;
}

#successModal .modal-footer {
  border-top: none;
  justify-content: center;
}

#successModal i {
  font-size: 90px;
  margin-bottom: 20px;
  color: var(--rh-primary-color);
}

#successModal h4 {
  font-size: 30px;
  font-weight: 100;
}

#successModal p {
  font-size: 18px;
  font-weight: 100;
}

#successModal .btn-primary {
  background-color: transparent;
  border-radius: 0;
  padding: 10px 30px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-color: var(--rh-primary-color);
  color: var(--rh-primary-color);
}

/* Base slider styles */
input[type='range'] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: transparent;
  border-radius: 5px;
  outline: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

input[type='range']:hover {
  opacity: 1;
  /* Full opacity on hover */
}

/* Track (the background line) */
input[type='range']::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: var(--rh-primary-color);
  /* Custom track color */
  border-radius: 5px;
}

input[type='range']::-moz-range-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: var(--rh-primary-color);
  border-radius: 5px;
}

input[type='range']::-ms-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: var(--rh-primary-color);
  border-radius: 5px;
  border-color: transparent;
  color: transparent;
}

/* Thumb (the draggable circle) */
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rh-primary-color);
  /* Custom thumb color */
  cursor: pointer;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

input[type='range']::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rh-primary-color);
  /* Custom thumb color */
  cursor: pointer;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

input[type='range']::-ms-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rh-primary-color);
  /* Custom thumb color */
  cursor: pointer;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/* Focus styles for the thumb */
input[type='range']:focus::-webkit-slider-thumb {
  box-shadow: 0 0 8px var(--rh-primary-color);
  /* Custom glow color when focused */
}

input[type='range']:focus::-moz-range-thumb {
  box-shadow: 0 0 8px var(--rh-primary-color);
}

input[type='range']:focus::-ms-thumb {
  box-shadow: 0 0 8px var(--rh-primary-color);
}

/* Styles for the range before the thumb */
input[type='range']::-webkit-slider-runnable-track {
  background: linear-gradient(to right,
      #d89652 0%,
      #d89652 var(--value),
      #444 var(--value),
      #444 100%);
}

/* Fallback for older browsers */
input[type='range']::-moz-range-progress {
  background: var(--rh-primary-color);
}

.main,
.filter_section {
  margin-top: 10px;
}

.img_contain img {
  aspect-ratio: 1 / 1.325;
  object-fit: cover;
  display: block;
}

/* apartment details section start */

/* modals css start */
.popSwiper2 {
  width: 100%;
  height: 300px;
  margin: auto;
}

.popSwiper2,
.popSwiper .swiper-slide {
  background-size: cover;
  background-position: center;
}

.popSwiper2 {
  height: 80%;
  width: 100%;
}

.popSwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.popSwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.popSwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.view_btn button {
  color: var(--rh-primary-color);
  margin-top: 0;
  border: 1px solid #ffffff73;
  border-radius: 0;
  font-weight: 200;
}

/* modals css end */

.mobile_img_btn {
  text-align: center;
  display: none;
}

.view_btn {
  backdrop-filter: blur(10px);
  position: absolute;
  bottom: 20px;
  left: 65px;
  background: #000000a1;
}

.mobile_img_btn a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 18px;
}

.apart_name {
  margin: 1.5rem 0;
  font-size: 30px;
  line-height: 48px;
  color: #fff;
  font-weight: 100;
  font-family: Raleway;
}

.filter .price {
  margin-right: 20px;
  font-size: 36px;
  line-height: 3.5rem;
  font-family: Raleway;
  color: #fff;
  font-weight: 200;
  font-style: normal;
}

.dropdown_btn {
  background: transparent;
  border: 1px solid #333333;
  border-radius: 0;
}

.item_icons a i {
  font-size: 24px;
  color: #fff;
}

.d_icon,
.mini_first_detail,
.mini_second_detail {
  gap: 30px;
}

.d_icon p {
  padding: 0.8rem 0;
  color: #fff;
  margin-bottom: 0;
  font-size: 14px;
  font-family: Raleway;
  font-weight: 100;
}

.d_icon p i {
  margin-right: 10px;
}

.a_filter .tab {
  border: 1px solid var(--rh-border-color);
  border-radius: 0;
  color: #fff;
  margin: 0;
}

.a_filter .tab.active {
  border: 1px solid #fffefe;
}

.f_border {
  padding: 0.8rem 0;
  border-top: 1px solid var(--rh-border-color);
  border-bottom: 1px solid var(--rh-border-color);
}

h2.heading {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 200;

}

.t_data {
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
  font-weight: 100 !important;
  background: transparent !important;
  color: #fff !important;
  padding: 18px !important;
}

.details p {
  line-height: 1.75rem;
  color: #ffff;
}

.location {
  margin-top: 2.25rem;
  padding-bottom: 2.25rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--rh-border-color);
}

.location .map iframe {
  width: 100%;
}

.details p:first-line {
  margin-bottom: 20px !important;
}

.t_data img {
  margin-right: 10px;
}

.sm_last {
  position: relative;
}

tr {
  border-color: var(--rh-border-color);
}

.dtable_wrapper {
  padding: 3rem 1.25rem;
  border: 1px solid var(--rh-border-color);
}

.dtable_wrapper .value a img {
  border: 4px solid #fff;
  width: 100px;
}

.sc_address {
  padding: 3rem 0rem;
  border-top: 1px solid var(--rh-border-color);
}

.sc_address h4 {
  margin-bottom: 24px;
  color: #fff;
}

.sc_address_container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.loc_content {
  flex: 1 1 calc(50% - 1rem);
  box-sizing: border-box;
}

.loc_content h4 {
  font-weight: 200;
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 1.5rem;
}

.loc_content p {
  font-size: 14px;
  color: var(--rh-text-color);
  margin: 0;
  line-height: 1rem;
}

@media (max-width: 768px) {
  .loc_content {
    flex: 1 1 100%;
  }
}

.view_btn a {
  font-family: Raleway;
  font-size: 16px;
  color: var(--rh-primary-color);
  padding: 0.5rem 1.375rem;
  line-height: 1.75rem;
  background: #111010cc;
  border-radius: 0;
  border-color: rgb(89 88 88);
}

.dropdown-menu {
  background-color: #000;
  color: #fff;
}

.dropdown-item {
  color: #fff;
}

.dropdown-item:hover {
  background-color: #333;
}

.dropdown-toggle::after {
  border-top-color: #fff;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* slider icon  testing */
.price_table {
  padding: 7rem 0;
}

.custom_padding {
  padding-top: 0;
}

/* listing details */

.single_line {
  padding: 0.6rem 0;
  color: #fff;
  border-bottom: 1px solid rgb(89 88 88);
}

.left .single_line:last-child {
  border: none;
}

.sv_line {
  border-bottom: none;
}

.single_line .title {
  font-size: 24px;
  line-height: 32px;
}

.ls_detail_container {
  border: 1px solid var(--rh-border-color);
  padding: 3rem 2.25rem;
}

.listing_details .single_line {
  padding: 0.6rem 0;
}

.top_section {
  transition: transform 0.3s ease;
  transform: translateY(0px);
}

.top_section.sticky {
  transform: translateY(-20px);
}

.contact_wrap {
  padding: 16px;
  border: 1px solid var(--rh-border-color);
}

.contact_wrap span {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #fff;
  text-align: center;
  margin-top: 16px;
}

.contact_wrap span a {
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--rh-primary-color);
  font-weight: 200;
}

.contact_wrap .consaltant_content {
  color: #fff;
}

.contact_wrap .consaltant_content h4 {
  line-height: 32px;
}

/* .contact_wrap .consaltant_img{
   
} */

/* luxury section start */

.luxury_slider_content ul {
  display: flex;
}

.luxury_slider_content ul li {
  margin-right: 20px;
}

.luxury_slider_content ul li:last-child {
  margin-right: 0;
}

.scontent_wrapper .slider_btn {
  display: flex;
}

.compare_content {
  margin-top: 30px;
  border: 1px solid var(--rh-border-color);
  padding: 1.5rem 1rem;
}

.compare_content h4 {
  font-size: 18px;
  font-weight: 200;
  line-height: 28px;
  margin: 30px 0 20px 0;
}

.compare_content h5 {
  font-size: 18px;
  font-weight: 200;
  line-height: 28px;
  margin: 50px 0 20px;
  border-bottom: 1px solid var(--rh-border-color);
}

.social {
  margin-top: 30px;
  padding: 1.9rem;
  border: 1px solid var(--rh-border-color);
}

.social h4 {
  margin-bottom: 30px;
}

.social ul li a {
  color: var(--rh-primary-color);
  font-size: 24px;
}

.btn_wrapper {
  border: 1px solid var(--rh-primary-color);
  text-align: center;
}

.btn_wrapper a {
  text-align: center;
  text-transform: uppercase;
  padding: 0.8rem 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--rh-primary-color);
  display: block;
  font-weight: 400;
}

.contact_wrap .consaltant_img img {
  display: block;
  object-fit: cover;
  height: 100px;
  width: 100px;
}

/* apartment details end section */

/* contact section start */
.contact_form {
  padding: 7rem 0;
}

.form_wrapper {
  padding: 0px 30px;
}

.form_heading {
  color: #fff;
}

.form_heading h3 {
  font-size: 40px;
  line-height: 40px;
}

.form_heading p {
  font-size: 24px;
  line-height: 32px;
}

.img_contain {
  position: relative;
}

.img_contain img {
  aspect-ratio: 1 / 1.025;
  object-fit: cover;
  display: block;
}

.deg_out {
  border: 1px solid rgb(89 88 88);
  padding: 1rem 1.7rem;
}

.designation {
  padding: 20px;
  background: #00000080;
  position: absolute;
  width: 100%;
  bottom: 0;
  backdrop-filter: blur(10px);
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.tabs {
  display: flex;
  justify-content: center;
}

.tabs div {
  flex: 1;
  padding: 10px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.5s ease;
}

.tabs .tab {
  flex: 1;
  padding-left: 0;
  cursor: pointer;
  border-bottom: 1px solid var(--rh-border-color);
  color: #fff;
}

.tabs div.active {
  border-bottom: 2px solid #ffffff;
}

.tabs .tabs_item {
  padding-left: 0;
  border-bottom: 1px solid var(--rh-border-color);
}

/* .tabs .tabs_item:active {
    border-bottom: 2px solid #ffffff;
} */

:root {
  --swiper-navigation-size: 20.5px !important;
}

.contact-date-slider {
  margin-bottom: 20px !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.dates {
  display: flex;
  justify-content: center;
}

.dates div {
  flex: 1;
  padding: 5px;
  border: 1px solid rgb(89 88 88);
  text-align: center;
  color: var(--rh-text-color);
  font-size: 14px;
}

.designation h2 {
  font-weight: 100;
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 0;
  color: #fff;
}

.designation p {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-top: 0;
  margin-bottom: 0;
  color: #fff;
  font-weight: 100;
}

.designation p:nth-child(2) {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.designation p:nth-child(3),
.designation p:nth-child(4) {
  font-size: 14px;
}

input {
  padding-left: 0px;
}

input::placeholder {
  color: #808080 !important;
}

::-ms-input-placeholder {
  /* Edge 12-18 */
  color: #808080 !important;
}

.form-control {
  background: transparent;
  color: #fff;
  border: none;
  border-bottom: 1px solid var(--rh-border-color);
  border-radius: 0;
  color: #7d6c6c;
  margin-bottom: 20px;
}

.form-control:focus {
  color: #7d6c6c;
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
  outline: 0;
  border-bottom: 0;
}

.btn-send {
  width: 100%;
  border-radius: 0;
  background-color: transparent;
  border: 1px solid var(--rh-primary-color);
  color: var(--rh-primary-color);
  padding: 1rem 1.75rem;
  text-transform: uppercase;
  font-size: 1.125rem;
  margin-top: 0px;
  text-transform: uppercase;
}

.btn-send:hover {
  border: 1px solid var(--rh-primary-color);
  color: var(--rh-primary-color);
}

.contact {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--rh-text-color);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contact a {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.5rem;
  color: var(--rh-primary-color);
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
}

a {
  text-decoration: none;
}

.contact a i {
  font-size: 1.5rem;
  color: var(--rh-primary-color);
  text-decoration: none;
  padding-left: 10px;
  padding-right: 5px;
}

/* slider start */

.blog_section {
  padding: 7rem 0;
}

.single_slide {
  position: relative;
  transition: 0.3s;
}

.single_slide img {
  aspect-ratio: 1 / 1.175;
  object-fit: cover;
  display: block;
}

.single_slide .content {
  background: #2c2d1b69;
  position: absolute;
  width: 100%;
  bottom: 0;
  backdrop-filter: blur(10px);
  transition: 0.3s;
  text-align: center;
  text-decoration: none !important;
  height: 72px;
}
.slider_img{
  transition: 0.5s;
}
.slider_img:hover .content{
  height: 100%;
  transition: 0.3s;
}

.slider_img:hover .content a.btn{
  opacity: 1;
  position: relative;
  transform: translateY(0px);
}

.single_slide .content h4 {
  font-family: Raleway;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #fff;
  font-weight: 200;
}

.single_slide .content span {
  font-family: Raleway;
  font-size: 14px;
  line-height: 2rem;
  margin-bottom: 0.4rem;
  color: #fff;
}

.single_slide .content a {
  display: block;
  font-family: Raleway;
  font-size: 1rem;
  line-height: 2rem;
  color: #fff;
}

.single_slide .content a.btn{
  opacity: 0;
  position: absolute;
  transform: translateY(0px);
}

.single_slide .content a:last-child {
  text-transform: uppercase;
  border-top: 1px solid rgb(89 88 88);
}

.slider_btn {
  display: flex;
  margin-top: 40px;
}

.slider_btn .slider_single_btn {
  margin-right: 20px;
}

.sb_next,
.sb_prev {
  padding-bottom: 10px !important;
  font-size: 16px;
  line-height: 21px;
  color: #fff;
  border-bottom: 1px solid var(--rh-text-color);
  border-radius: 0;
  padding: 0;
  width: 90px;
  text-transform: uppercase;
}

.sp_prev,
.sp_next {
  padding-bottom: 10px !important;
  font-size: 16px;
  line-height: 21px;
  color: #fff;
  border-bottom: 1px solid var(--rh-text-color);
  border-radius: 0;
  padding: 0;
  width: 90px;
  text-transform: uppercase;
}

.sb_next,
.sp_next {
  text-align: right;
}

.sr_prev,
.sr_next {
  padding-bottom: 10px !important;
  font-size: 16px;
  line-height: 21px;
  color: #fff;
  border-bottom: 1px solid var(--rh-text-color);
  border-radius: 0;
  padding: 0;
  width: 90px;
  text-transform: uppercase;
}

.sr_next {
  text-align: right;
}

.sr_prev {
  text-align: left;
}

.product_icon_flex {
  display: flex !important;
}

.swiper-button-disabled {
  opacity: 0.2;
  transition: 0.5 ease all;
}

/* Footer  */
.footer {
  background-color: #0a0a0a;
  color: rgb(255, 255, 255);
  padding: 70px 50px 30px;
  text-align: center;
  border-top: 1px solid rgba(184, 184, 184, 0.26);
}

.footer-container {
  max-width: 1200px;
  margin: 0px auto;
  justify-content: space-between;
}

.row1 {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(184, 184, 184, 0.26);
}

.row2 {
  padding: 40px 0px;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.main {
  position: relative;
}

.footer img {
  width: 25%;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
  text-align: start;
}

.navbar-brand .logo-center {
  display: block;
  margin: 11px 140px 11px auto;
  width: 120px;
}

.footer-column1 ul {
  list-style: none;
  padding: 0px;
}

.footer-column1 ul li {
  margin-bottom: 10px;
}

.footer-column1 ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 14px;
}

.footer-column1 ul li a:hover {
  color: rgb(211, 161, 136);
}

.footer-column2 ul {
  list-style: none;
  padding: 0px;
}

.footer-column2 ul li {
  margin-bottom: 10px;
}

.footer-column2 ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 14px;
}

.footer-column2 ul li a:hover {
  color: rgb(211, 161, 136);
}

.footer-column3 ul {
  list-style: none;
  padding: 0px;
}

.footer-column3 ul li {
  margin-bottom: 10px;
}

.footer-column3 ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 14px;
}

.footer-column3 ul li a:hover {
  color: rgb(211, 161, 136);
}

.footer-column4 ul {
  list-style: none;
  padding: 0px;
}

.footer-column4 ul li {
  margin-bottom: 10px;
}

.footer-column4 ul li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 14px;
}

.footer-column4 ul li a:hover {
  color: rgb(211, 161, 136);
}

.footer-contact {
  text-align: right;
  width: 100%;
  color: rgb(155, 99, 78);
}

.social-icons a {
  margin: 0px 5px;
  color: rgb(211, 161, 136);
  font-size: 20px;
  text-decoration: none;
}

.call-button {
  background-color: transparent;
  border: 1px solid rgb(211, 161, 136);
  padding: 10px 30px;
  margin: 10px 0px;
  color: rgb(211, 161, 136);
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.row3 {
  padding: 0px;
}

.copyright {
  padding: 0px;
}

.copyright ul {
  list-style: none;
  text-align: start;
  padding: 0px !important;
}

.copyright li a {
  padding-left: 10px;
  color: rgb(255, 255, 255);
  font-size: 12px;
}





/* footer start */
footer {
  background-color: #0a0a0a;
  padding-bottom: 2.5rem;
  padding-top: 6rem;
}

.first_footer_wrap {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--rh-border-color)80;
  padding-bottom: 20px;
}

.footer_logo_wrap img {
  height: 2.7rem;
}

.footer_second_row {
  padding-top: 3.5rem;
}

.footer_list_item ul li a {
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  transition: all 0.3s ease;
}



.footer_list_item ul li a:hover {
  color: var(--rh-accent-color) !important;
}

.footer_list_item ul li {
  margin-top: 0.4rem;
}

.footer_list_item ul li:first-child {
  margin-top: 0rem;
}

.footer_second_contact_text {
  display: none;
}

.footer_contact_details {
  text-align: left;
}


.footer_contact_details ul li a i {
  font-size: 28px;
  color: var(--rh-primary-color);
}

.third_footer_wrap {
  margin-top: 7rem;
}

.third_footer_wrap ul li a {
  font-size: 12px;
  color: #fff;

}

/* footer end */

/* RH Custom CSS */

.b-border {
  border-bottom: 1.5px solid var(--rh-border-color);
}

.g-border {
  position: relative;
}

.g-border:after {
  background-image: linear-gradient(90deg, var(--rh-primary-color), hsla(20, 46%, 68%, 0));
  bottom: 0;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.container-rh {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  max-width: 1680px;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

.breadcrub{
  margin-top: 100px;
}

.container-nt {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  max-width: 1476px;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}

/* Select2 Dark Mode Theme */
.select2-container--default .select2-selection--single {
  background-color: #212529 !important;
  border-color: #343a40 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #ffffff !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #adb5bd !important;
}

.select2-container--default .select2-selection--multiple {
  background-color: #212529 !important;
  border-color: #343a40 !important;
  color: #ffffff !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  color: #ffffff !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #adb5bd !important;
}

/* Dropdown Menu Styling */
.select2-dropdown {
  background-color: #050505 !important;
  border-color: #333 !important;
  backdrop-filter: 4px;
}

.select2-search--dropdown .select2-search__field {
  background-color: #343a40 !important;
  color: #ffffff !important;
  border-color: #495057 !important;
}

/* Results List */
.select2-container--default .select2-results__option {
  color: #ffffff !important;
}

.select2-container--default .select2-results__option--highlighted {
  background-color: #495057 !important;
  color: #ffffff !important;
}

/* Selected Option */
.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #495057 !important;
  color: #ffffff !important;
}

/* Disabled Options */
.select2-container--default .select2-results__option[aria-disabled="true"] {
  color: #6c757d !important;
}

/* Adjusting Search Input Placeholder Color */
.select2-container--default .select2-search--dropdown .select2-search__field::placeholder {
  color: #adb5bd;
}

.select2-container--bootstrap-5 .select2-dropdown,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted,
.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  background-color: #111010;
  color: #fff;
  font-weight: 200;
}

.select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered .select2-selection__placeholder {
  color: #fff;
  font-weight: 100;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
  font-weight: 200;
  font-size: 14px;
}

.select2-container--bootstrap-5 .select2-selection {
  background-color: #121010;
  border: none;
  font-weight: 200;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered {
  gap: 3px;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
  color: #fff;
  font-size: 12px;
  border-color: #333;
  padding: 3px 5px;
  margin: 0;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
  margin-top: 0;
  height: 8px;
  width: 8px;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23676a6d'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") 50%/.75rem auto no-repeat;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
  background-color: var(--rh-primary-color);
  color: var(--bs-body-bg);
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection--multiple,
.select2-container--bootstrap-5 .select2-selection--multiple {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: center;
}

.select2-search.select2-search--inline {
  flex: 1;
  min-width: 50px;
  overflow: hidden;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

ul.pagination .disabled {
  display: none;
}

.blog-card .card-btn {
  color: var(--rh-primary-color);
  font-weight: 200;
}

.blog-card .card-btn:hover {
  color: var(--rh-accent-color);
}

.blog-card .badge {
  font-weight: 400;
  color: var(--bs-body-bg);
  background-color: var(--rh-primary-color);
}

.property_freatured_img img {
  aspect-ratio: 1.5/1;
  height: 100%;
  object-fit: cover;
}

.map-marker {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background-repeat: no-repeat;
}

/* Header Hero Section */
.hero-section {
  position: relative;
  margin-top: -80px;
  margin-bottom: 80px;
}

.header-hero-image {
  position: relative;
}

.header-hero-image::before {
  background-image: linear-gradient(0deg, var(--bs-body-bg) 3%, rgba(17, 16, 16, 0.625) 43%, rgba(0, 0, 0, 0) 100%);
  bottom: -1px;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
}

.header-hero-image img {
  width: 100%;
  height: calc(100vh - 80px);
  object-fit: cover;
}

.header-hero-content-wrapper {
  width: 100%;
  position: absolute;
  bottom: 60px;
  text-align: center;
}

.header-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.header-hero-content h2 {
  text-transform: uppercase;
  font-weight: 200;
  font-size: 58px;
  max-width: 80%;
}

.header-hero-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 24px;
}

.addToBookmark,
.addToCompare {
  cursor: pointer;
}


/* Responsive adjustments */
@media (max-width: 992px) {
  .header-hero-image img {
    height: 80vh;
  }

  .header-hero-content h2 {
    font-size: 48px;
  }

  .header-hero-content p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .header-hero-image img {
    height: 60vh;
  }

  .header-hero-content h2 {
    font-size: 36px;
  }

  .header-hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .header-hero-image img {
    height: 50vh;
  }

  .header-hero-content h2 {
    font-size: 28px;
    padding: 0 10px;
  }

  .header-hero-content p {
    font-size: 16px;
  }

  .header-hero-content-wrapper {
    bottom: 40px;
  }
}


/* Agent List */
.agent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.agent-content {
  max-width: calc(25% - 15px);
  flex: 1 1 calc(25% - 15px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .agent-content {
    max-width: calc(50% - 10px);
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 480px) {
  .agent-content {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

.img_contain img {
  aspect-ratio: 1 / 1.5;
}