/* @import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/***** General CSS *****/

body {
  word-break: break-word;
  font-family: "Montserrat", sans-serif;
  color: #484848;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  position: relative;
  background-color: #f7f7f7;
}

/***** Headings *****/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "League Spartan", sans-serif;
  color: #000000;
  font-weight: 800;
  font-family: "Nunito Sans", sans-serif;
}

h1 {
  font-size: 86px;
  line-height: 90px;
}

h2 {
  font-size: 55px;
  line-height: 65px;
}

h3 {
  font-size: 30px;
  line-height: 35px;
}

h4 {
  font-size: 24px;
  line-height: 29px;
}

h5 {
  font-size: 20px;
  line-height: 25px;
}

h6 {
  font-size: 18px;
  line-height: 22px;
}

p {
  font-size: 14px;
  line-height: 24px;
}

/***** Gradient Text *****/

/***** Utilities *****/

.padd {
  padding: 100px 0;
  position: relative;
}

.paddTop {
  padding-top: 100px;
}

.paddBottom {
  padding-bottom: 100px;
}

.margTop {
  margin-top: 100px;
}

.margBottom {
  margin-bottom: 100px;
}

.flx {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bt {
  display: inline-block;
}

.pbtn {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 62px;
  justify-content: center;
  background: #870b2d;
  border-radius: 45px;
  padding: 6px 19px 6px 6px;
  transition: 0.2s;
}

.pbtn span {
  background: #fff;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  transition: 0.2s;
  border-radius: 40px;
  height: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 20px;
  color: #870b2d;
  font-family: "League Spartan";
}

.maxWidth {
  max-width: 1440px;
}

/* general btn css start  */

a {
  text-decoration: none;
  color: #fff;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #fff;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/*header css start */

.menuSec {
  padding: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #ffff;
  padding: 10px 14px;
  font-size: 14px;
  text-transform: uppercase;
  font-family: "Nunito Sans";
  font-weight: 400;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #fff;
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner css start */

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: #0a0a0ab2;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: 32px;
}

/*banner css end*/

header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 12;
  padding: 24px 12px;
}

.menuSec ul li a i {
  margin-left: 5px;
  font-size: 10px;
}

/* Banner Start  */

.banner_text {
  margin-bottom: 60px;
}

.banner_text p {
  width: 90%;
  margin: 10px auto 0;
  font-family: "Nunito Sans";
  font-size: 17px;
  line-height: 30px;
  font-weight: 400;
}

/* ============== */

.search-wrapper {
  padding: 14px;
  background: #ffffff47;
  width: 88%;
  margin: 0px auto 20px;
  border-radius: 6px;
}

.search-top {
  background: #fff;
  padding: 18px;
  border-radius: 6px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.search-input {
  height: 48px;
  font-size: 14px;
  border-radius: 6px;
  font-weight: 500;
}

.search-input::placeholder {
  font-weight: 500;
}

.advanced-toggle {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: roboto;
}

.search-btn {
  color: #fff;
  height: 48px;
  padding: 0px 38px;
  border-radius: 5px;
  font-weight: 500;
  background: #870b2d;
  transition: 0.2s;
}

.search-btn:hover {
  color: #fff;
  transform: scale(1.08);
}

.range-label {
  font-size: 15px;
  color: #444;
  position: relative;
  font-family: "League Spartan";
  font-weight: 400;
  text-align: center;
}

/* RANGE SLIDER */
.range-custom {
  width: 100%;
  -webkit-appearance: none;
  background: transparent;
  position: relative;
}

.range-custom::-webkit-slider-runnable-track {
  height: 6px;
  background: #ff4d4f;
  border-radius: 0px;
}

.range-custom::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background: #1f2a44;
  border-radius: 0px;
  margin-top: -5px;
  cursor: pointer;
  position: relative;
}

.range-custom::-moz-range-track {
  height: 4px;
  background: #ff4d4f;
}

.range-custom::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #1f2a44;
  border-radius: 3px;
}

/* .search-advanced {
  background: #fff;
  padding: 22px;
  margin-top: 18px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
} */

.search-advanced {
  background: #fff;
  padding: 22px;
  margin-top: 18px;
  border-radius: 6px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  transition: all 0.35s ease;
  width: 88%;
  margin: 0px auto;
}

.search-advanced.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.advanced-toggle span {
  font-size: 18px;
  margin-left: 7px;
}

/* Banner End  */

/* ------------------ News -------------------------------- */

.news-card {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  position: relative;
  height: 100%;
}

.news-tag {
  color: #ff4d4f;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

.news-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #484848;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #777;
  margin-bottom: 12px;
}

.news-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-footer {
  border-top: 1px solid #eee;
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #777;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #dcdcdc;
  display: inline-block;
}

.read-more {
  font-size: 14px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover {
  color: #ff4d4f;
}

img.news-img-bg {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.news-date i {
  font-size: 18px;
}

.avatar img {
  border-radius: 45px;
}

.secWrap {
  width: 90%;
  margin: 0px auto;
}

/* ------------------ News -------------------------------- */

/* ------------------ Browse -------------------------------- */

section.browse-sec .secWrap {
  background: white;
  padding: 60px;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  position: relative;
}

.rental-img {
  position: relative;
  padding-right: 40px;
  padding-bottom: 60px;
}

img.rental-big-img {
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0px 0px 20px 3px #00000038;
}

img.rental-sm-img {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 260px;
  height: 160px;
  border-radius: 36px;
  padding: 12px;
  background: #fff;
}

/* ------------------ Browse -------------------------------- */

/* ------------------ Our Testimonials -------------------------------- */

section.testi-sec {
  background-color: #000316;
}

.tes-cd {
  position: relative;
  background: #fff;
  box-shadow: -11px 1px 4px 0 #870c2e;
  border-radius: 12px;
  padding: 30px;
  transition: 0.3s;
}

.tes-head {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #000;
}

.avatar-img img {
  width: 80px;
  border-radius: 70px;
}

.avatar-name h6 {
  font-size: 20px;
  transition: 0.2s;
}

.avatar-name h6 span {
  display: block;
  color: #ff5a5f;
  font-weight: 400;
  font-size: 14px;
}

section.testi-sec .slick-slide {
  opacity: 1;
}

.tes-cd:hover {
  background: #870c2e;
  box-shadow: unset;
}

.tes-cd:hover * {
  color: #fff;
}

.tes-cd:hover .tes-head {
  border-color: #ffffff82;
}

section.testi-sec ul.slick-dots {
  bottom: -60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

.slick-dots li button {
  padding: 0px;
  margin: 0;
  font-size: 0;
  opacity: 0;
}

.slick-dots li {
  width: 6px;
  height: 6px;
  background: #fff;
  margin: 0px;
  border-radius: 45px;
}

section.testi-sec .slick-dots li.slick-active {
  opacity: 1;
  outline: 4px solid #fff;
  outline-offset: 1px;
  background: #24324a;
}

/* ------------------ Our Testimonials -------------------------------- */

/* ------------------ About us -------------------------------- */

section.aboutsec .secWrap {
  background: white;
  padding: 60px;
  border: 1px solid #ebebeb;
  border-radius: 6px;
  position: relative;
}

.abt-txt h5 {
  font-size: 28.66px;
  color: #00072d;
  padding-bottom: 10px;
}

/* ------------------ About us -------------------------------- */

/* ---------------------------- footer ------------------------ */

.footer-main {
  background-color: transparent;
  background-image: linear-gradient(180deg, #000000e0 0%, #64182e 100%);
}

.footer-btm {
  background-color: #000000;
  padding: 40px 0px 40px 0px;
}

.foot-general {
  padding-left: 70px;
}

footer h5 {
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 5px;
}

footer ul li a:hover i.fa-solid.fa-arrow-right {
  color: #fff;
  transform: translate(3px, 0px);
}

footer ul li a i.fa-solid.fa-arrow-right {
  margin-right: 7px;
  color: #b45f5a;
  transition: 0.3s;
}

footer ul li a i.fa-solid.fa-arrow-right {
  transition: 0.3s;
}

.footer-contact ul li a i {
  color: #b45f5a;
}

.ft-social {
  position: relative;
}

.ft-social ul li a i {
  width: 50px;
  height: 50px;
  border-radius: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #870c2e;
  font-size: 26px;
  margin-right: 8px;
  transition: 0.3s;
}

.ft-social ul li a i:hover {
  transform: scale(1.04);
}

.footer-logo.mb-4 {
  margin-top: -10px;
}

/* ---------------------------- footer ------------------------ */

/* -------------------- featured Properites ---------------------*/

section.featured-sec .nav-tabs .nav-link {
  padding: 14px 20px;
  margin-bottom: 0px;
  border-radius: 40px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  color: #484848;
  font-weight: 500;
  background: #fff;
  font-size: 13px;
}

section.featured-sec .nav-tabs .nav-link.active {
  background: #820024;
  color: #fff;
}

section.featured-sec .slick-slide {
  opacity: 1;
  margin: 0px 10px;
}

.tour-card {
  position: relative;
  transition: 0.2s;
  overflow: hidden;
}

img.featured-main-img {
  height: 320px;
  object-fit: cover;
  border-radius: 32px 32px 10px 10px;
  transition: 0.3s;
  display: inline-block;
}

.tour-card span.rent-label {
  padding: 1px 12px;
  text-transform: capitalize;
  color: #fff;
  background-color: #3e4c66;
  border-radius: 3px;
  position: absolute;
  display: inline-block;
  top: 20px;
  left: 18px;
  font-size: 13px;
  z-index: 1;
}

.tour-card .card-txt {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  padding-top: 40px;
  background-image: -webkit-linear-gradient(top, transparent 0%, #1d293e 100%);
  background-image: -o-linear-gradient(top, transparent 0%, #1d293e 100%);
  background-image: linear-gradient(to bottom, transparent 0%, #1d293e 100%);
  background-repeat: repeat-x;
  padding: 15px 20px;
  border-radius: 0px 0px 10px 10px;
}

.tour-card .card-txt ul li span {
  background: #820024;
  padding: 5px 17px;
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  gap: 6px;
  display: flex;
  align-items: center;
}

.tour-card:hover img.featured-main-img {
  transform: scale(1.1);
}

section.featured-sec ul.slick-dots {
  bottom: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}

section.featured-sec .slick-dots li {
  background: #dedede;
}

section.featured-sec .slick-dots li.slick-active {
  opacity: 1;
  outline: 4px solid #dedede;
  outline-offset: 1px;
  background: #24324a;
}

section.featured-sec .slick-prev {
  left: -10px;
  z-index: 12;
  top: 55%;
}
section.featured-sec .slick-next {
  right: 10px;
  z-index: 12;
  top: 55%;
}

section.featured-sec .slick-prev:before {
  content: "\f060";
}

section.featured-sec .slick-next:before {
  content: "\f061";
}

section.featured-sec .slick-prev:before,
section.featured-sec .slick-next:before {
  font-family: "FontAwesome";
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 45px;
  opacity: 1;
  color: #000;
  transition: 0.3s;
  filter: drop-shadow(2px 4px 6px #999);
  font-size: 15px;
}

section.featured-sec .slick-prev:hover:before,
section.featured-sec .slick-next:hover:before {
  background: #820024;
  color: #fff;
}

.border-left-0 {
  border-left: none !important;
}

/* -------------------- featured Properites ------------------------*/

.search-wrapper .form-select {
  background: unset;
}

.search-advanced select.form-select {
  background: unset;
}

.home-fd {
  position: relative;
}

.home-fd i {
  position: absolute;
  right: 20px;
  color: #44444469;
  top: 19px;
  font-size: 12px;
}

.range-custom:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 16px;
  height: 16px;
  background: #1f2a44;
  border-radius: 0px;
  margin-top: -5px;
}

video.banner-video {
  height: 800px;
  width: 100%;
  object-fit: cover;
}

/* ========================================= */

section.featured-sec .feinerslider .slick-prev:before,
section.featured-sec .feinerslider .slick-next:before {
  background: transparent;
  color: #fff;
}

section.featured-sec .feinerslider .slick-prev:hover:before,
section.featured-sec .feinerslider .slick-next:hover:before {
  background: #820024;
}

section.featured-sec .feinerslider .slick-prev {
  left: 11px;
  top: 44%;
}

section.featured-sec .feinerslider .slick-next {
  right: 32px;
  top: 44%;
}

.mountainSlider .slick-track,
.feinerslider .slick-track {
  display: flex;
}

.slick-slide {
  height: auto;
}

/* ====================================== Property Page  ================================= */

header.property-header {
  position: unset;
  background-color: transparent;
  background-image: linear-gradient(140deg, #1c303f 0%, #ffffff 100%);
}

section.property {
  position: relative;
  overflow: hidden;
  background-color: #1d293e61;
}

section.property .slick-slide.slick-current {
  opacity: 1;
}

section.property .slick-slide {
  opacity: 1;
  margin: 0px;
}

.property-gallery img {
  height: 450px;
  width: 100%;
  object-fit: contain;
}

.property-gallery a {
  display: block;
}

.property-icons button {
  border: 0px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: #fff;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  background-color: #515d68;
}

.property-icons {
  position: absolute;
  top: 20px;
  display: flex;
  gap: 14px;
  left: 190px;
}

.property-icons button:hover,
.property-icons button.active {
  background-color: #ff5a5f;
}

.property .slick-prev {
  left: 20px;
  z-index: 12;
  top: 50%;
}

.property .slick-next {
  right: 40px;
  z-index: 12;
  top: 50%;
}

.property .slick-prev:before {
  content: "\f060";
}

.property .slick-next:before {
  content: "\f061";
}

.property .slick-prev:before,
.property .slick-next:before {
  font-family: "FontAwesome";
  width: 40px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-radius: 5px;
  opacity: 1;
  color: #fff;
  transition: 0.3s;
  filter: drop-shadow(2px 4px 6px #999);
  font-size: 15px;
  border: 1px solid;
}

.property .slick-prev:hover:before,
.property .slick-next:hover:before {
  background: #820024;
  color: #fff;
}

/* ======================== property banner end ===================== */

/* ====================================== Property Page ================================= */

.action-wrap {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.action-btn {
  width: 30px;
  height: 30px;
  background: #007b7a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  text-decoration: none;
  position: relative;
}

.action-btn:hover {
  background: #006666;
  color: #fff;
}

/* Share dropdown */
.share-wrap {
  position: relative;
}

.share-icons {
  position: absolute;
  top: -70%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  left: -20px;
  background: #fff;
}

.share-wrap:hover .share-icons {
  opacity: 1;
  visibility: visible;
}

.share-icons a {
  width: 30px;
  height: 30px;
  background: #fff;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}

.share-icons a:hover {
  background: #007b7a;
  color: #fff;
}

section.propty-title {
  padding: 50px 0;
}

.prp-title p a {
  color: #484848;
  font-family: "Nunito Sans";
}

span.feature-label {
  background-color: #79b530;
  color: #fff;
  padding: 5px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 5px;
  display: inline-block;
  line-height: 14px;
  position: relative;
  top: -4px;
  margin-left: 5px;
}

.tooltip-inner {
  background-color: #1d293ede !important;
  color: #fff;
  font-size: 10px;
  padding: 6px 10px;
  border-radius: 6px;
  font-weight: 500;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before,
.tooltip.bs-tooltip-bottom .tooltip-arrow::before,
.tooltip.bs-tooltip-start .tooltip-arrow::before,
.tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-top-color: #1d293ede !important;
  border-bottom-color: #1d293ede !important;
  border-left-color: #1d293ede !important;
  border-right-color: #1d293ede !important;
}

/* ============================ overviews ================================= */

.overview-title h4 {
  font-family: "League Spartan";
  font-weight: 500;
}

.card.overview-card {
  padding: 24px;
  border-radius: 6px;
}

.prp-overview p {
  font-family: "Nunito Sans";
  font-size: 16px;
  line-height: 26px;
  color: #000;
}

/* ==================== features ===================== */

.property-features {
  background: #fff;
  border-radius: 6px;
  padding: 32px;
  border: 1px solid #ddd;
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.feature-list li {
  padding: 6px 0;
  font-family: "Nunito Sans";
  font-size: 16px;
  line-height: 26px;
  color: #000;
}

/* Table Styling */
.property-table {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.property-table thead th {
  background: #8c1538; /* maroon */
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  font-family: "Nunito Sans";
  padding: 16px;
}

.property-table tbody td {
  vertical-align: middle;
  font-family: "Nunito Sans";
  font-size: 13px;
  line-height: 24px;
  padding: 16px;
}

.property-table tbody tr:nth-child(even) {
  background-color: #faf5f7;
}

.appy-btn button {
  background-color: #820024;
  color: white;
  padding: 7px 10px;
  text-decoration: none;
  display: inline-block;
  border-radius: 25px;
  transition: background-color 0.3s ease;
  border: 0;
  font-family: "Nunito Sans";
}

.appy-btn button:hover {
  background: #000;
}

.inqurey-sec form input {
  display: block;
  width: 100%;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 6px 14px;
  margin: 10px 0 24px;
}

.inqurey-sec form label {
  display: block;
  color: #000;
  font-family: "Nunito Sans";
}

.inqurey-sec form textarea {
  width: 100%;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 14px 14px;
  margin: 10px 0 24px;
  resize: unset;
  height: 150px;
  font-family: "Nunito Sans";
  color: #000;
}

.inqurey-sec form textarea::placeholder {
  color: #000;
}

.inqurey-sec .appy-btn button {
  padding: 6px 16px;
  margin-top: 18px;
}

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

.location-map {
  position: relative;
}

.location-map .pin-marker {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: 0px auto;
  display: table;
}

.location-map .pin-marker {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: 0px auto;
  display: table;
}

.location-map .pin-marker:before {
  content: "";
  position: absolute;
  display: block;
  top: 100%;
  left: 0px;
  width: 100%;
  height: 35px;
  background-color: #ff5a5f;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  margin-top: -20px;
  -webkit-transform: rotateX(-60deg) scale(0);
  transform: rotateX(-60deg) scale(0);
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 12;
  animation: scale_icon_map 1.5s ease-in-out 0s infinite normal;
  -webkit-animation: scale_icon_map 1.5s ease-in-out 0s infinite normal;
}

@keyframes scale_icon_map {
  form {
    -webkit-transform: rotateX(-60deg) scale(0);
    -moz-transform: rotateX(-60deg) scale(0);
    -ms-transform: rotateX(-60deg) scale(0);
    -o-transform: rotateX(-60deg) scale(0);
    transform: rotateX(-60deg) scale(0);
    opacity: 1;
    filter: alpha(opacity=100);
  }
  to {
    -webkit-transform: rotateX(-60deg) scale(1.2);
    -moz-transform: rotateX(-60deg) scale(1.2);
    -ms-transform: rotateX(-60deg) scale(1.2);
    -o-transform: rotateX(-60deg) scale(1.2);
    transform: rotateX(-60deg) scale(1.2);
    opacity: 0;
    filter: alpha(opacity=0);
  }
}
/* ==================== features ===================== */

.go-up a {
  width: 45px;
  height: 45px;
  border-radius: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-right: 8px;
  transition: 0.3s;
  background-color: #141e2f;
  color: #8a99b3;
  border: 0px;
}

.go-up a:hover {
  color: #fff;
}

.go-up {
  right: 30px;
  bottom: 30px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 15px;
  position: fixed;
}

.pbtn:hover {
  transform: scale(1.04);
}
