body {

  font-size: 14px;

  color: #000;

  font-family: "Inter", sans-serif;

  font-weight: 400;

    --bg: #fbf7f3;

  --card: rgba(255,255,255,0.75);

  --text: #141414;

  --muted: #6d6d6d;

  --border: rgba(0,0,0,0.08);

  --primary: #461513;

  --shadow: 0 18px 40px rgba(0,0,0,0.08);

}

:root {

  --main-color: #3a72c7;

  --green: #07332f;

  --light-black: #2f2f2f;

}



.same-section {

  margin-bottom: 70px;

}



.project-info-section {

  display: none;

}

.container {

  max-width: 1280px;

}

header {

  /* background-color:#000;  */

  position: fixed;

  width: 100%;

  top: 0;

  left: 0;

  z-index: 999;

  transition: all 0.5s;

  padding: 10px 0;

}

.darkHeader {

  background-color: #fff;

  box-shadow: 0 0 10px 0 #bababa;

  transition: all 0.5s;

}

.project-logo {
    background: #3a72c7;
    border-radius: 20px;
    overflow: hidden;
    padding: 10px;
}

.project-logo img {

  max-height: 65px;

  width: auto;

}

header.darkHeader .project-logo img

 {

    height: 50px;

    transition: all 0.5s;

}



header.darkHeader .button_container {

    height: 50px;

}

.header-inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  position: relative;

}

header.darkHeader .button_container span {

    top: 13px;

}

header.darkHeader .button_container span:nth-of-type(2) {

    top: 24px;

}

header.darkHeader .button_container span:nth-of-type(3) {

    top: 35px;

}

.luxury-logo {

  max-width: 130px;

  padding: 5px;

  background: #fff;

}

.menu ul {

  margin: 0;

  padding: 0;

  list-style: none;

  display: flex;

  align-items: center;

  justify-content: space-between;

}

.menu ul li a {

  color: #fff;

  text-transform: uppercase;

  font-size: 15px;

  text-decoration: none;

  font-weight: 600;

  padding: 10px 18px;

  width: auto;

  display: inline-block;

}

.menu ul li a:hover {

  background-color: #3a72c7;

}

.button_container {

    position: absolute;

    top: 50%;

    right: 0;

    height: 60px;

    width: 120px;

    cursor: pointer;

    z-index: 100;

    transition: opacity 0.25s ease;

    transform: translateY(-50%);

    background: #fff;

    border-radius: 10px;

    color: #fff;

    display: flex;

    flex-flow: row;

    align-items: center;

    border: 2px solid #3a72c7;

}

.button_container label {

  padding-left: 55px;

  font-size: 16px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin: 0;

  color: var(--main-color);

}

.button_container:hover {

  opacity: 0.7;

}

.button_container.active .top {

  transform: translateY(11px) translateX(0) rotate(45deg);

  background: #3a72c7;

}

.button_container.active .middle {

  opacity: 0;

  background: background: #3a72c7;;

}

.button_container.active .bottom {

  transform: translateY(-11px) translateX(0) rotate(-45deg);

background: #3a72c7;

}

.button_container span {

  background: var(--main-color);

  border: none;

  height: 3px;

  width: 30px;

  position: absolute;

  top: 18px;

  left: 15px;

  transition: all 0.35s ease;

  cursor: pointer;

}

.button_container span:nth-of-type(2) {

  top: 29px;

}

.button_container span:nth-of-type(3) {

  top: 39px;

}

.overlay {

  position: fixed;

  background: rgba(0, 0, 0, 0.9);

  top: 0;

  left: 0;

  width: 100%;

  height: 0%;

  opacity: 0;

  visibility: hidden;

  transition: opacity 0.35s, visibility 0.35s, height 0.35s;

  overflow: hidden;

  z-index: 9;

}

.overlay.open {

  opacity: 0.9;

  visibility: visible;

  height: 100%;

}

.overlay.open li {

  -webkit-animation: fadeInRight 0.5s ease forwards;

  animation: fadeInRight 0.5s ease forwards;

  -webkit-animation-delay: 0.35s;

  animation-delay: 0.35s;

}

.overlay.open li:nth-of-type(2) {

  -webkit-animation-delay: 0.4s;

  animation-delay: 0.4s;

}

.overlay.open li:nth-of-type(3) {

  -webkit-animation-delay: 0.45s;

  animation-delay: 0.45s;

}

.overlay nav {

  position: relative;

  height: 70%;

  top: 50%;

  transform: translateY(-50%);

  text-align: center;

}

.overlay ul {

  list-style: none;

  padding: 0;

  margin: 0 auto;

  display: inline-block;

  position: relative;

  height: 100%;

}

.overlay ul li {

  display: block;

  position: relative;

  opacity: 0;

  margin: 0 0 15px 0;

}

.overlay ul li a {

  display: block;

  position: relative;

  color: #fff;

  text-decoration: none;

  overflow: hidden;

  font-size: 25px;

  padding: 0;

  font-weight: 400;

}

.menu ul li a:hover {

  background-color: transparent;

}

.overlay ul li a:hover:after,

.overlay ul li a:focus:after,

.overlay ul li a:active:after {

  width: 100%;

}

.overlay ul li a:after {

  content: "";

  position: absolute;

  bottom: 0;

  left: 50%;

  width: 0%;

  transform: translateX(-50%);

  height: 3px;

  background: #fff;

  transition: 0.35s;

}

@-webkit-keyframes fadeInRight {

  0% {

    opacity: 0;

    left: 20%;

  }

  100% {

    opacity: 1;

    left: 0;

  }

}

@keyframes fadeInRight {

  0% {

    opacity: 0;

    left: 20%;

  }

  100% {

    opacity: 1;

    left: 0;

  }

}



.home-banner {

  position: relative;

  background-image: url("../images/slider1.jpg");

  background-color: #dcdcdc;

  height: 80vh;

  background-size: cover;

  background-position: center center;

  padding-top: 70px;

  position: relative;

}



.home-banner-img {

  display: none;

}

.project-configurations {

  text-shadow: 0px 0px 0px #000;

  padding-left: 0px;

}

.project-rera {

  position: relative;

  margin: 3px 0 0 0;

}

.about-section figure {

    width: 100%;

    float: left;

    border-radius: 25px;

    overflow: hidden;

    position: sticky;

    top: 100px;

}

.about-section figure img {

  max-width: 100%;

  width: 100%;

  max-height: 480px;

  object-fit: cover;

}

.about-section p {

  margin: 0 0 25px !important;

}

.project-rera-mobile {

  display: none;

}

.banner-cnt {

  position: absolute;

  left: 0;

  width: 100%;

  bottom: 0px;

  z-index: 2;

  background: rgb(0 0 0 / 90%);

  padding: 30px 0;

}

.project-configurations h1 {

  color: var(--main-color);

  font-size: 42px;

  font-weight: 700;

  text-align: center;

}

.project-configurations p {

  font-size: 16px;

  text-align: center;

  color: #fff;

  font-weight: 700;

  margin: 0 0 25px;

  text-align: center;

}

.configuration-item {

  padding: 0 25px;

}

.configuration-item h4 {

  color: var(--main-color);

  font-size: 14px;

  font-weight: 400;

  letter-spacing: 1px;

  text-transform: uppercase;

  text-align: center;

}

.configurations-size {

  position: relative;

}

.banner-configurations-site-visit {

  display: flex;

  align-items: center;

  justify-content: space-between;

}

.banner-configurations {

  display: flex;

}

.configurations-size::after {

  content: "";

  background-color: gainsboro;

  width: 1px;

  height: 100%;

  position: absolute;

  right: 0px;

  bottom: 0;

}

.project-configurations .configuration-item p {

  margin: 0;

}

.project-configurations .configuration-item p span {

  color: #3a72c7;

}

.btn {

  background-color: var(--main-color);

  border-radius: 0;

  color: #000;

  font-size: 14px;

  letter-spacing: 2px;

  font-weight: 600;

  text-transform: uppercase;

  border: 2px solid var(--main-color);

  padding: 10px 25px;

  border-radius: 25px;

}

.btn:hover {

  background: #461513 !important;

  border: 2px solid #461513;

  color: #fff !important;

}



header .btn {

  padding: 6px 20px 6px 10px !important;

  font-weight: 600 !important;

  color: #000 !important;

  font-size: 16px !important;

}

header .btn .icon {

  width: 30px;

  height: 30px;

  background: #fff;

  border-radius: 50%;

  display: inline-block;

  line-height: 30px;

}

header .btn .icon img {

  max-height: 16px;

}



.project-site-visit {

  display: flex;

  align-items: center;

}

.project-info-item {

  text-align: center;

  padding-top: 30px;

  height: 100%;

}

.project-info-item h3 {

  color: #232323;

  font-size: 16px;

  margin: 10px 0;

  font-weight: 700;

}

.project-info-item p {

  color: #232323;

  font-size: 14px;

}

.project-info-border {

  border-right: 1px solid #e6e6e6;

  border-bottom: 1px solid #e6e6e6;

}

.inner-title h2 {

  color: #2a2a2a;

  font-size: 36px;

  font-weight: 600;

  margin-bottom: 20px;

}

.inner-title p {

  color: #000;

  font-size: 16px;

  line-height: 1.8em;

  text-align: justify;

  margin: 0 0 5px 0;

}

.trans-btn {

  background-color: transparent;

  color: #0e709f;

}

#floor-plan .project-site-visit a:hover {

  color: #fff;

}

.about-video {

  position: relative;

  height: 100%;

}



.img-box {

  background-image: url("../images/gallery1-sm.jpg");

  background-repeat: no-repeat;

  background-size: cover;

  height: 100%;

  width: 100%;

  display: inline-block;

  background-position: 100% 100%;

}

.play-btn {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 50px;

}

.highlight-div {

}

.highlight-div h3 {

  background-color: #0e709f;

  color: #fff;

  font-size: 20px;

  padding: 20px 32px;

  margin: 0 0 30px 0;

}

.table.table-bordered tr th,

.table.table-bordered tr td {

  color: #fff;

  border: 2px solid var(--main-color);

  vertical-align: middle;

}

.highlight-div ul {

  list-style: none;

  width: 100%;

  display: inline-block;

  padding-right: 10px;

}

.highlight-div ul li {

  color: #000;

  font-size: 16px;

  font-weight: 400;

  padding-left: 30px;

  margin-bottom: 15px;

  position: relative;

}

.highlight-div ul li::before {

  position: absolute;

  content: "\f00c";

  left: 0px;

  top: 0px;

  color: #0e709f;

  font-size: 18px;

  font-weight: 400;

  font-family: "FontAwesome";

}

.highlight-image {

  height: 100%;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

}

.section-title {

    margin: 0 0 20px 0;

}



.section-title h2 {

    font-size: 44px;

    line-height: 1.12;

    font-weight: 700;

    color: #111827;

    margin: 0 0 18px;

    letter-spacing: -0.8px;

}

.gray-background {

  background-color: #167b48;

}

.gray-background .inner-title h2 {

  color: #fff;

}

.gray-background .inner-title h4 {

  color: var(--main-color);

}

.gray-background .inner-title p {

  color: #fff;

}

.floor-plan-section .container-fluid {

  padding: 0;

}

.features-section .container-fluid {

  padding: 0;

}

#gallery .container-fluid {

  padding: 0;

}

.location-advantage-section .container-fluid {

  padding: 0;

}

.floor-plan {

  background-color: #fff;

  padding: 15px;

  height: 100%;

  display: flex;

  align-items: center;

  justify-content: center;

}

.floor-plan-img {

  box-shadow: 0px 0 0px gainsboro;

  text-align: center;

  padding: 15px;

  width: 100%;

}

.floor-plan-cnt {

  padding: 45px;

  height: 100%;

  display: flex;

  align-items: center;

}

.inner-title {

  width: 100%;

}

.inner-title .project-site-visit {

  margin: 20px 0 0 0;

}

.featured-inner h4 {

  color: #ffffff;

  font-size: 20px;

  font-weight: 600;

  margin-bottom: 25px;

  padding-left: 25px;

  border-left: 6px solid var(--main-color);

  text-transform: uppercase;

}

.featured-inner p {

  color: #ffffff;

  font-size: 14px;

  margin-bottom: 0;

  padding-left: 30px;

}

.featured-inner {

  margin-top: 35px;

}

.gray-background .inner-title ul {

  padding: 0;

  list-style: none;

  color: #fff;

  margin: 0;

}

.gray-background .inner-title ul li {

  font-size: 16px;

  font-weight: 500;

  padding-left: 30px;

  margin-bottom: 15px;

  position: relative;

}

.gray-background .inner-title ul li::before {

  content: "\f00c";

  font-size: 16px;

  font-weight: 400;

  font-family: "FontAwesome";

  position: absolute;

  left: 0;

  top: 0;

  color: #3a72c7;

}

.location-map-div {

  height: 100%;

}

.call-to-action-section {

  background-color: #3a72c7;

  padding: 40px 0;

}

.call-to-action-button {

  text-align: right;

}

.call-to-action-button .btn {

  background-color: #fff;

  color: #3a72c7;

  border-color: #fff;

}

.call-to-action-cnt p {

  color: #fff;

  font-size: 14px;

  margin: 0;

}

.specialist-block {

  margin-bottom: 30px;

  color: #fff;

  border: 1px solid #fff;

  padding: 15px;

  min-height: 90%;

}

.specialist-block a {

  color: #fff;

  text-decoration: none;

}

.faq-section {

  background-color: #e62e2c;

  padding: 40px 0;

}

.faq-section .section-title h2 {

  color: #fff;

  margin: 0 0 20px 0;

}

.faq-section .section-title p {

  color: #fff;

}

.faq-section .section-title p a {

  color: #fff;

}

.specialist-block h5 {

  margin-bottom: 10px;

  padding-left: 20px;

  border-left: 6px solid #fff;

}

.specialist-block p {

  text-align: justify;

  margin: 0;

}

.top-footer {

  position: relative;

  padding: 50px 0px 50px;

  background-attachment: fixed;

  background-repeat: no-repeat;

  background-size: cover;

}

.top-footer::before {

  position: absolute;

  content: "";

  left: 0px;

  top: 0px;

  width: 100%;

  height: 100%;

  background-color: rgba(0, 0, 0, 0.7);

}

.location-detail {

  padding: 30px 30px;

  /* background-color: #2c2c2c; */

  color: #fff;

  border: 2px solid rgba(255, 255, 255, 0.3);

}

.top-footer .container {

  position: relative;

}

.location-detail h4 {

  margin: 0;

  font-size: 25px;

  font-weight: 600;

}

.location-item {

  margin-top: 30px;

}

.location-item h5 {

  font-size: 22px;

}

.location-item p {

  margin: 0;

  font-size: 14px;

}

.location-item p a {

  color: #fff;

  text-decoration: none;

}

.form-footer h4 {

  color: var(--main-color);

  font-weight: 700;

  margin-bottom: 30px;

  font-size: 30px;

}

.form-group {

  margin-bottom: 20px;

  position: relative;

}

.form-control {

  border-radius: 0;

  padding: 10px 15px;

}

textarea.form-control {

  min-height: 90px;

  resize: none;

}

.form-control {

    border-radius: 10px;

    padding: 10px 15px;

    border: 1px solid #ccc;

    background-color: transparent;

    color: #000;

}



.countryCode {

  position: absolute;

  width: 100px;

  left: 15px;

  top: 50%;

  transform: translateY(-50%);

  height: 57%;

  border: 0;

  background-color: transparent;

  z-index: 1;

  color: #000;

}

.countryCode ~ .form-control {

  padding-left: 120px;

}

.countryCode option {

  color: #000;

}

.form-control::placeholder {

  color: #000;

  opacity: 1;

}

.form-control:-ms-input-placeholder {

  color: #fff;

}

.form-control::-ms-input-placeholder {

  color: #fff;

}



.mid-footer {

  background-color: #161616;

  padding-top: 30px;

  width: 100%;

  display: inline-block;

}

.footer-menu {

  margin-bottom: 15px;

}

.footer-menu h4 {

  color: #a3a3a5;

  font-size: 20px;

  font-weight: 600;

  margin-bottom: 10px;

  padding-left: 20px;

  border-left: 6px solid #3a72c7;

}

.footer-menu ul {

  padding: 0;

  list-style: none;

  margin: 0;

  width: 100%;

  display: inline-block;

}

.footer-menu ul li {

  width: auto;

  display: inline-block;

  margin: 0 10px 0 0;

  position: relative;

  padding: 0 0 0 12px;

}

.footer-menu ul li::before {

  content: "";

  width: 5px;

  height: 5px;

  position: absolute;

  left: 0;

  top: 50%;

  background-color: #777;

  border-radius: 100%;

  transform: translateY(-50%);

}

.footer-menu ul li a {

  color: #777;

  text-decoration: none;

  font-size: 13px;

}

.rera-strip ul {

  padding: 0;

  list-style: none;

  text-align: center;

  margin: 0;

}

.rera-strip {

    padding-top: 10px;

background: linear-gradient(135deg, #3a72c7, #20539f);

    border-radius: 50px;

}

.rera-strip ul li {

    padding: 0 35px;

    text-align: center;

    font-size: 13px;

    border-right: 1px solid #fff;

    width: auto;

    display: inline-block;

    color: #fff;

    margin-bottom: 10px;

}

.rera-strip ul li:last-child {

  border-right: 0;

}

.footer-para p {

  text-align: justify;

  margin-top: 16px;

  font-size: 13px;

  color: #fff;

}

.btm-footer .container {

  display: flex;

  justify-content: space-between;

  align-items: center;

  color: #fff;

}

.social-icons a {

  background-color: #3a72c7;

  width: 35px;

  height: 35px;

  justify-content: center;

  align-items: center;

  text-decoration: none;

  display: inline-flex;

  border-radius: 100%;

  color: #fff;

  margin: 0 0 0 10px;

}

.btm-footer {

  background-color: #272727;

  padding: 15px 0;

}

.modal-body .top-footer {

  padding: 15px 0px 15px;

}

.close {

  padding: 0;

  position: absolute;

  right: 5px;

  top: 0px;

  z-index: 9;

  background-color: transparent;

  border: 0;

  color: #fff;

  font-size: 20px;

}

.modal-body .top-footer {

  padding: 15px 0px 15px;

  background-attachment: inherit;

}

.modal-body {

  padding: 0;

}



.logo img {

  max-width: 100%;

}

.fix-mobile-strip {

  display: none;

}

a.whatsapp {

  background-color: #2fb842;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #fff;

  font-size: 25px;

  text-decoration: none;

  border-radius: 100%;

  text-align: center;

  width: 50px;

  height: 50px;

  position: fixed;

  left: 10px;

  bottom: 20px;

  margin: 0;

  z-index: 2;

}



.sidebar-contact {

  position: fixed;

  top: 50%;

  right: -350px;

  transform: translateY(-50%);

  width: 350px;

  height: auto;

  padding: 0px;

  background: #fff;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);

  box-sizing: border-box;

  transition: 0.5s;

  z-index: 99;

}



.sidebar-contact.active {

  right: 0;

}



.toggle {

  position: absolute;

  height: 40px;

  width: 160px;

  text-align: center;

  cursor: pointer;

  background: var(--main-color);

  top: 40%;

  transform: rotate(270deg);

  left: -100px;

  font-size: 18px;

  color: #fff;

  line-height: 40px;

}

.sidebar-contact.active .toggle {

  top: 60px;

  transition: 0.5s;

}

.toggle:before {

  content: "\f003";

  font-family: fontAwesome;

  font-size: 18px;

  color: #fff;

  margin-right: 10px;

}



.toggle.active:before {

  content: "\f00d";

}



@media (max-width: 768px) {

  .sidebar-contact {

    width: 85%;

    height: auto;

    right: -85%;

  }



  .sidebar-contact .toggle {

    top: 150px;

    transition: 0.5s;

  }



  .sidebar-contact.active .toggle {

    top: 60px;

  }



  .scroll {

    width: 100%;

    height: 100%;

    overflow-y: auto;

  }



  .content {

    padding: 50px 50px;

  }

}



.toggle_call {

  position: fixed;

  height: 40px;

  width: 160px;

  text-align: center;

  cursor: pointer;

  background: #3a72c7;

  top: 80%;

  transform: rotate(270deg);

  right: 0px;

  font-size: 18px;

  color: #fff;

  line-height: 40px;

}

.toggle_call:before {

  content: "\f003";

  font-family: fontAwesome;

  font-size: 18px;

  color: #fff;

  margin-right: 5px;

}



/*   This is the background overlay   */

.backgroundOverlay {

  position: fixed;

  top: 0;

  right: 0;

  bottom: 0;

  left: 0;

  height: 100%;

  width: 100%;

  margin: 0;

  padding: 0;

  background: #000000;

  opacity: 0.85;

  filter: alpha(opacity=85);

  -moz-opacity: 0.85;

  z-index: 101;

  display: none;

}

/*   This is the Popup Window   */

.delayedPopupWindow {

  display: none;

  position: fixed;

  width: auto;

  max-width: 710px;

  min-height: 310px;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  background-color: #efefef;

  border: 2px solid #333;

  z-index: 102;

  padding: 0px 0px;

}

/*   This is the closing button  */

#btnClose {

  width: 100%;

  display: block;

  text-align: right;

  text-decoration: none;

  color: #3a72c7;

  position: absolute;

  margin-top: 5px;

  top: 10px;

  right: 10px;

}

/*   This is the closing button hover state  */

#btnClose:hover {

  color: #c90c12;

}



.form-v {

  width: 56%;

}



.image-v {

  width: 44%;

}



@media (max-width: 768px) {

  .delayedPopupWindow {

    width: 95%;

  }



  .form-v {

    width: 100%;

  }



  #btnClose {

    top: 20px;

    right: 25px;

  }

}



.send_btn {

  border: 2px solid #167b48;

}

.modal-form .form-control {

  border: 2px solid #000;

  color: #000;

  border-radius: 4px;

}



.modal-form .send_btn.btn {

  background-color: #3a72c7;

  color: #fff;

  padding: 10px 15px;

  border-radius: 4px;

  margin: 0 auto;

  display: table;

}



.modal-form .form-control::-webkit-input-placeholder {

  color: #000;

}



.modal-form .form-control:-ms-input-placeholder {

  color: #000;

}



.modal-form .form-control::placeholder {

  color: #000;

}



.modal-form .countryCode {

  color: #000;

}



.modal-form textarea.form-control {

  min-height: 100px;

}



.modal-form {

  padding: 15px;

}



.modal-form .form-footer {

  text-align: center;

  padding: 15px;

  border: 1px dashed gray;

}



.modal-form .form-footer h4 {

  font-size: 22px;

  margin-bottom: 10px;

}



.modal-form .form-footer p {

  font-size: 16px;

}



.modal-body .close {

  color: #000;

  background-color: #fff;

  width: 30px;

  height: 30px;

  text-align: center;

  position: absolute;

  right: 0;

  box-shadow: 2px -2px 3px #000;

}



.modal-form .form-footer h4 {

  font-size: 22px;

  margin-bottom: 5px;

}



.modal-form .form-footer p {

  font-size: 16px;

}

.form-control option {

  color: #000;

}



/* price section */



.price_section {

  position: relative;

  padding: 70px 0;

  background: url("../images/price_bg.jpg") no-repeat center;

  background-size: cover;

  background-attachment: fixed;

}



.price_section:before {

  position: absolute;

  content: "";

  height: 100%;

  width: 100%;

  top: 0;

  left: 0;

  background: rgba(0 0 0 / 90%);

  z-index: 0;

}



.price_section .container {

  position: relative;

  z-index: 9;

}



.price_section .price_row {

  max-width: 90%;

  margin: auto;

  justify-content: center;

}



.price_section .price_col {

  padding: 0 15px;

}



.price_section .ov_headings {

  margin-bottom: 80px;

  text-align: center;

  width: 100%;

}



.price_section .ov_headings .sec_title {

  color: var(--yellow);

}



.price_section .ov_headings .section_heading {

  color: #fff;

  font-weight: 600;

}



.price_section .price_img {

  position: absolute;

  top: 0;

  left: 0;

  width: 35%;

  height: 100%;

  object-fit: cover;

}



.price_section .single_price {

  box-shadow: 0 5px 25px rgb(0 0 0 / 5%);

  text-align: center;

  border-radius: 20px;

  overflow: hidden;

  margin: auto;

  margin-bottom: 35px;

}

.price_section .single_price p {

  margin-bottom: 0;

}

.price_section .single_price .typology {

  background: #e7e7e7;

  min-height: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #333;

  font-size: 16px;

  font-weight: 700;

  margin-bottom: 20px;

  text-transform: uppercase;

  padding: 10px 20px;

  line-height: 22px;

  letter-spacing: 1px;

  max-width: calc(100% - 30px);

  margin: auto;

  border-top-left-radius: 20px;

  border-top-right-radius: 20px;

}



.price_section .price_c {

  background: #fff;

  max-width: calc(100% - 30px);

  margin: auto;

  padding: 25px 10px 15px;

}



.price_section .price {

  color: var(--green);

  font-weight: 600;

  font-size: 28px;

  margin-bottom: 0;

  line-height: 34px;

  margin: auto;

}

.price_section .price sup {

  font-weight: 400;

}

.price_section .onw {

  font-size: 14px;

  color: #797979;

  font-weight: 500;

  letter-spacing: 2px;

  text-transform: uppercase;

}

.price_section .title {

  color: #461513;

  font-size: 14px;

  font-weight: 600;

  text-transform: uppercase;

  letter-spacing: 0.5px;

}

.price_section .type {

  margin-top: 20px;

}

.price_section .sizes p,

.price_section .type p {

  font-size: 18px;

  letter-spacing: 0.5px;

  font-weight: 700;

  margin-top: 2px;

  color: #000;

}

.price_section .call_btn {

  padding: 6px 24px;

  font-size: 14px;

  margin-top: 24px;

  min-height: 42px;

  width: 100%;

  box-shadow: 0 3px 7px rgb(0 0 0 / 25%);

}

.price_section .single_price .content {

  position: relative;

  z-index: 1;

  padding: 20px 10px 20px;

  max-width: calc(100% - 30px);

  margin: auto;

  background: #fff;

}



/* highlight_section */



.highlight_section {

  padding: 60px 0;

  background: #fff8e3;

}

.highlight_section h2 {

  font-size: 36px;

  font-weight: 600;

}

.highlight_section .section_heading {

  position: absolute;

  writing-mode: tb-rl;

  top: -30px;

  left: 50%;

  transform: translateX(-50%);

  margin: 0;

  background: #e0c47f;

  padding: 35px 18px;

  height: calc(100% + 60px);

  text-align: center;

  letter-spacing: 4px;

  font-weight: 700;

}



.highlight_section .left_col ul,

.highlight_section .right_col ul {

  height: 100%;

  display: flex;

  flex-flow: row wrap;

  justify-content: space-between;

  padding: 0;

}



.highlight_section .center_col {

  display: flex;

  align-items: center;

}



.highlight_section .center_col .image {

  position: relative;

}



.highlight_section .center_col img {

  object-fit: cover;

  border-radius: 100%;

  box-shadow: 0 0 100px rgb(0 0 0 / 5%);

  width: 380px;

  height: 380px;

}



.highlight_section .right_col {

  text-align: right;

}



.highlight_section ul li {

  margin: 10px 0;

  font-size: 16px;

  flex: 0 0 24%;

  line-height: 27px;

  letter-spacing: 0.3px;

  background: #fff;

  padding: 20px 25px;

  border-radius: 10px;

  font-weight: 500;

  font-style: italic;

  list-style-type: none;

  position: relative;

  text-align: center;

}

.highlight_section figure {

  width: 100%;

  float: left;

  height: 100%;

  margin-bottom: 0;

  border-radius: 25px;

  overflow: hidden;

}

.highlight_section figure img {

  width: 100%;

  height: 100%;

  object-fit: cover;

}

.highlight_section li .count {

  top: 0px;

  height: 50px;

  width: 50px;

  border-radius: 8px;

  background-color: var(--main-color);

  color: #000;

  display: flex;

  align-items: center;

  font-style: normal;

  justify-content: center;

  font-size: 18px;

  font-weight: 700;

  margin: 0 auto 15px;

}



.highlight_section .right_col li .count {

  right: -25px;

  left: unset;

}



/* amenities_section */



.amenity_section {

  position: relative;

  padding: 50px 0;

  margin: 0;

  text-align: center;

}

.amenity_section h2 {

  color: #000;

  font-size: 36px;

  font-weight: 600;

}

.amenity_section .left_col {

  position: unset;

  max-width: 40%;

  flex: 0 0 40%;

}

.amenity_section .left_col img {

  position: absolute;

  content: "";

  height: 100%;

  left: 0;

  width: 40%;

  top: 0;

  object-fit: cover;

}

.amenity_section .right_col {

  position: unset;

  max-width: 60%;

  flex: 0 0 60%;

}

.amenity_section .contents {

  padding: 25px 20px;

}

.amenity_section .contents p {

  font-size: 18px;

  font-weight: 500;

}

.amenity_section .contents ul {

  list-style-type: none;

  display: flex;

  flex-wrap: wrap;

}

.amenity_section .contents li {

  max-width: 33.33%;

  flex: 0 0 33.33%;

  text-align: center;

  margin-bottom: 30px;

}

.amenity_section .contents h4 {

  font-size: 16px;

  margin-top: 15px;

  margin-bottom: 0;

  color: #07332f;

  font-weight: 600;

}

.amenity_section .ov_headings {

  margin: 50px 0;

}

.amenity_section .icon {

  display: inline-block;

}

.amenity_section .icon img {

  max-height: 80px; width: auto; max-width: 100%;

}



.amenity_section .amenity_swiper {

  overflow: visible;

  max-width: 80%;

}



.amenity_section .swiper-slide {

  position: relative;

}



.amenity_section .swiper-slide:after {

  position: absolute;

  content: "";

  left: 0;

  top: 0;

  height: 100%;

  width: 100%;

  background: #000;

  opacity: 0.65;

  z-index: 9;

  transition: all 300ms ease-in-out;

}



.amenity_section .swiper-slide-active:after {

  opacity: 0;

}



.amenity_section .single {

  position: relative;

  margin-bottom: 30px;

  text-align: center;

  border: 1px solid var(--main-color);

  padding: 20px;

  background: var(--main-color);

  border-radius: 10px;

}



/* .amenity_section .single:before{

    position:absolute;

    content: '';

    left:0;

    top:0;

    height:100%;

    width:100%;

    background-image:linear-gradient(to bottom, transparent, rgb(0 0 0 / 85%));

} */



.amenity_section .single .title {

  position: absolute;

  margin: 0;

  margin-top: 15px;

  font-size: 28px;

  letter-spacing: 2px;

  font-weight: 600;

  bottom: 50px;

  left: 50px;

  z-index: 1;

  color: #fff;

  text-transform: uppercase;

}



.amenity_swiper .swiper-button-next,

.amenity_swiper .swiper-button-prev {

  position: relative;

  top: unset;

  right: unset;

  left: unset;

  height: 45px;

  width: 45px;

  border: 1px solid rgba(0 0 0 / 10%);

  border-radius: 50%;

  margin: 0 10px;

}



.amenity_swiper .swiper-button-next:after,

.amenity_swiper .swiper-button-prev:after {

  display: none;

}



.amenity_swiper .swiper_btns {

  margin-top: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

}



.amenity_swiper .swiper_btns .icon {

  max-width: 16px;

}

/* modal */



.modal .modal-content {

    border-radius: 20px;

    overflow: hidden;

    background: radial-gradient(circle at top, #fff 0%, var(--bg) 60%);

}



.modal .modal-body {

  padding: 45px;

  position: relative;

}



.modal .modal-body .close {

    position: absolute;

    content: "";

    right: 10px;

    top: 10px;

    height: 45px;

    width: 45px;

    background: #461513;

    color: #fff;

    text-shadow: none;

    border-radius: 15px;

    box-shadow: none;

}



.modal .projectName {

  text-align: center;

  font-size: 30px;

  font-weight: 600;

}



.modal .projectName img {

  max-width: 160px;

}



.modal .location {

  text-align: center;

  font-size: 15px;

  letter-spacing: 0.5px;

}



.modal .form_price {

    margin: 20px auto 25px;

    text-align: center;

    width: max-content;

    background: #07332f;

    color: #fff;

    padding: 12px 30px;

    font-size: 18px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    font-weight: 600;

    background: #3a72c7;

    border-radius: 15px;

}



.modal .form-group {

  margin-bottom: 14px;

}



.modal label {

  margin-bottom: 4px;

  font-size: 15px;

  font-weight: 500;

}



.modal .form-control::placeholder {

  font-size: 14px;

}



.modal .submit_btn {

  border-radius: 0;

  text-transform: uppercase;

  font-weight: 500;

  letter-spacing: 0.5px;

  padding: 12px;

  width: 130px;

  font-size: 14px;

  min-height: 44px;

  display: table;

  margin: 20px auto 0;

}



/* floor plan section */



.floor_plans_section {

  position: relative;

  padding: 60px 0;

  background: #fff8e3;

  background-size: cover;

  margin: 0px 0 0;

}

.floor_plans_section .ov_headings {

  margin-bottom: 50px;

}

.floor_plans_section .ov_headings {

  text-align: center;

}

.floor_plans_section .ov_headings h5 {

  color: #dca723;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 5px;

  font-size: 14px;

}

.floor_plans_section .ov_headings h3 {

  color: #000;

  font-weight: 600;

  font-size: 36px;

}



.floor_plans_section .contents_row {

  display: flex;

  flex-wrap: wrap;

}

.floor_plans_section .side_nav {

  max-width: 20%;

  flex: 0 0 20%;

}

.floor_plans_section .right_images {

  max-width: 80%;

  flex: 0 0 80%;

}

.floor_plans_section .single {

  position: relative;

  background: #fff;

  text-align: center;

  padding: 20px;

  box-shadow: 0 0 10px 0 #ccc;

}

.floor_plans_section .single img {

  width: auto !important;

  max-width: 100%;

  overflow: hidden;

  /* filter: blur(4px); */

}

.gallery-section {

    background: #fff2f3;

    padding: 70px 0;

}

.floor_plans_section .single .title {

  color: #000;

  margin: 0;

  padding: 6px 20px;

  font-size: 18px;

  text-transform: uppercase;

  height: 40px;

  text-align: center;

  display: flex;

  align-items: center;

  justify-content: center;



  width: 100%;

  font-weight: 600;

}

.gallery-item {

    margin: 15px 0;

    border: solid 8px #ffffff;

    box-shadow: 0 0 10px 0 #ccc;

    border-radius: 50px 0;

    overflow: hidden;

}

.gallery-item img {

  min-height: 300px;

  max-height: 300px;

  object-fit: cover;

}

.rounded.floorplan {

}

.btn_dark_fill {

  background: #000;

  color: #fff;

}

.btn_dark_fill .icon::before {

  background: var(--yellow);

}

.btn_dark_fill .icon:after {

  background: #fff;

}

.btn_dark_fill.round .icon:before {

  border-radius: 50%;

}

.btn_dark_fill.round .icon:after {

  border-radius: 50%;

}

.btn.round {

  border-radius: 100px;

}



@media only screen and (max-width: 1320px) {

  .container {

    max-width: 1230px;

  }

}



@media only screen and (max-width: 1279px) {

  .rera-strip ul li {

    padding: 0 7px;

  }

  a.whatsapp {

    font-size: 20px;

    width: 44px;

    height: 44px;

  }

  .project-configurations {

    padding-left: 45px;

  }

  .project-configurations h1 {

    font-size: 35px;

  }

  .project-configurations p {

    font-size: 16px;

  }

  .configuration-item h4 {

    font-size: 18px;

  }

}



@media only screen and (max-width: 1199px) {

  .menu ul li a {

    font-size: 12px;

    padding: 20px 10px;

  }

  .highlight-div h3 {

    font-size: 18px;

    padding: 15px 32px;

    margin: 0 0 15px 0;

  }

  .highlight-div ul li {

    font-size: 14px;

    padding-left: 30px;

    margin-bottom: 5px;

  }

  .same-section {

    margin-bottom: 35px;

  }

  .inner-title h2 {

    font-size: 30px;

  }

  .inner-title p {

    font-size: 14px;

  }

  .featured-inner h4 {

    font-size: 18px;

    margin-bottom: 10px;

    padding-left: 10px;

    border-left: 5px solid #3a72c7;

  }

  .featured-inner p {

    font-size: 14px;

    padding-left: 15px;

    line-height: 1.6em;

  }

  .section-title h2 {

    font-size: 30px;

  }

  .project-configurations h1 {

    font-size: 30px;

  }

  .banner-configurations-site-visit {

    width: auto;

    display: inline-block;

  }

  .configuration-item {

    padding-right: 18px;

  }

  .project-site-visit {

    margin: 12px 0 0 0;

  }

}



@media only screen and (max-width: 991px) {

  .project-info-item p {

    font-size: 13px;

  }

  .project-info-item h3 {

    font-size: 12px;

  }

  .luxury-logo {

    display: none;

  }

  .same-section {

    margin-bottom: 25px;

  }

  .inner-title h2 {

    font-size: 25px;

    margin-bottom: 15px;

  }

  .inner-title .project-site-visit {

    margin: 15px 0 0 0;

  }

  .about-video {

    height: 400px;

    margin-top: 20px;

  }

  .highlight-image {

    display: none;

  }

  .section-title h2 {

    font-size: 25px;

  }

  .form-footer h4 {

    font-size: 26px;

  }

  .specialist-block h5 {

    font-size: 18px;

  }

  header {

    padding: 10px 0;

  }

  .home-banner {

    padding-top: 58px;

  }

  .project-configurations h1 {

    font-size: 30px;

  }

  .project-configurations p {

    font-size: 16px;

  }

  .project-configurations p {

    font-size: 13px;

  }

  .btn {

    font-size: 13px;

    padding: 8px 10px;

  }

  a.whatsapp {

    bottom: 14px;

  }

}



@media only screen and (max-width: 767px) {

  .highlight_section ul li {

    flex: 0 0 100%;

  }

  .project-info-section {

    display: block;

  }

  a.whatsapp {

    left: 50%;

    transform: translateX(-50%);

    bottom: 0;

  }

  .overlay ul li a {

    font-size: 22px;

  }

  .btm-footer .container {

    display: block;

    text-align: center;

  }

  .copyright {

    margin-bottom: 10px;

  }

  .logo {

    text-align: center;

    margin: 0 0 15px 0;

  }

  .call-to-action-cnt {

    text-align: center;

    margin: 0 0 15px 0;

  }

  .call-to-action-button {

    text-align: center;

  }

  .section-title h2 {

    font-size: 22px;

  }

  .form-footer h4 {

    font-size: 20px;

    margin-bottom: 15px;

    margin-top: 25px;

  }

  .fix-mobile-strip {

    display: block;

    position: fixed;

    bottom: 0;

    left: 0;

    width: 100%;

    z-index: 1;

    box-shadow: 0 0 5px #696969;

  }

  .fix-mobile-strip ul {

    margin: 0;

    padding: 0;

    list-style: none;

    display: flex;

  }

  .fix-mobile-strip ul li {

    width: 50%;

    text-align: center;

  }

  .fix-mobile-strip ul li a {

    display: block;

    text-decoration: none;

    color: #fff;

    background-color: #3a72c7;

    padding: 10px;

    font-size: 16px;

  }

  .btm-footer {

    padding: 15px 0 59px 0;

  }

  .banner-cnt {

    display: none;

  }

  .home-banner-img {

    display: block;

  }

  .home-banner {

    height: 70vh;

  }

  header {

    background-color: #000;

  }

  .project-rera-mobile {

    position: absolute;

    left: 15px;

    bottom: 0px;

    display: block;

    z-index: 2;

    color: #fff;

  }

  .floor_plans_section .single {

    margin: 15px 0;

  }

  .about-section figure,

  .highlight_section figure {

    margin: 20px 0;

    height: auto;

  }

  .highlight_section figure img {

    height: auto;

  }

}



@media only screen and (max-width: 575px) {

  .overlay ul li a {

    font-size: 20px;

  }

  .project-configurations {

    border: 15px solid rgba(255, 255, 255, 0.2);

    padding: 15px;

  }

  .configuration-item {

    text-align: left;

    margin: 0 0 12px 0;

  }

  .configurations-size::after {

    width: 100%;

    height: 1px;

    right: 0;

    bottom: 4px;

  }

  .configuration-item h4 {

    font-size: 18px;

  }

  .configuration-item h4 {

    margin: 0;

  }

  .project-configurations h1 {

    font-size: 20px;

    margin: 0;

  }

  .btn {

    font-size: 13px;

    padding: 8px 15px;

    letter-spacing: 1px;

  }

  .inner-title p {

    font-size: 13px;

    line-height: 1.5em;

  }

  .about-video {

    height: 250px;

  }

  .highlight-div h3 {

    font-size: 16px;

    padding: 15px;

  }

  .highlight-div ul {

    padding-left: 15px;

  }

  .highlight-div ul li {

    font-size: 13px;

    padding-left: 25px;

  }

  .section-title h2 {

    font-size: 20px;

    padding: 0 15px;

  }

  .section-title {

    margin: 0 0 20px 0;

  }

  .floor-plan-cnt {

    padding: 15px;

  }

  .inner-title h2 {

    font-size: 20px;

  }

  .featured-inner {

    margin-top: 20px;

  }

  .featured-inner h4 {

    font-size: 16px;

  }

  .gray-background .inner-title ul li {

    font-size: 13px;

    margin-bottom: 10px;

  }

  .rera-strip ul li {

    border-right: 0;

  }

  .specialist-block h5 {

    font-size: 16px;

  }

  .project-info-item .icon {

    max-width: 50px;

    height: auto;

    margin: 0 5px 0 0;

  }

  .fix-mobile-strip ul li a {

    font-size: 14px;

  }

  .project-info-border {

    border-right: 0;

    border-bottom: 1px solid #e6e6e6;

    flex: auto;

  }

  .project-info-item {

    padding-top: 10px;

    padding-bottom: 10px;

    height: auto;

    display: flex;

    align-items: center;

    text-align: left;

  }

  .project-info-item h3 {

    margin: 0 0 5px 0;

  }

  .project-info-item p {

    margin-bottom: 0;

  }

  .project-info-item-txt h3 {

    width: auto;

    display: inline-block;

  }

  .project-info-item-txt p {

    width: auto;

    display: inline-block;

  }

  a.whatsapp {

    font-size: 18px;

    width: 41px;

    height: 41px;

  }

  #about {

    margin-top: 0;

  }

  .same-section {

    margin-bottom: 15px;

  }

}

.error {

  float: left;

  padding-left: 10px;

  color: red;

}





.pricing-section{

  position: relative;

  padding: 80px 16px;

  background: url("your-bg.jpg") center/cover no-repeat;

  overflow: hidden;

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

}



.pricing-overlay{

  position: absolute;

  inset: 0;

 background: #3a72c7;

  z-index: 1;

}



.pricing-container{

  position: relative;

  z-index: 2;

  max-width: 1200px;

  margin: 0 auto;

}



.pricing-heading{

  text-align: center;

  margin-bottom: 45px;

  color: #fff;

}



.pricing-heading h2 {

   font-size: 44px;

    line-height: 1.12;

    font-weight: 700;

    color: #fff;

    margin: 0 0 18px;

    letter-spacing: -0.8px;

}



.pricing-heading p{

  margin: 0;

  opacity: .85;

  font-size: 16px;

}



.pricing-grid{

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 26px;

}



.price-card{

  position: relative;

  border-radius: 22px;

  overflow: hidden;

  background: rgba(255,255,255,0.96);

  box-shadow: 0 22px 50px rgba(0,0,0,.35);

  transform: translateY(0);

  transition: .35s ease;

}



.price-card:hover{

  transform: translateY(-10px);

  box-shadow: 0 28px 70px rgba(0,0,0,.45);

}



.price-top{

  padding: 24px 24px 18px;

  border-bottom: 1px solid rgba(0,0,0,.08);

  text-align: center;

  background: linear-gradient(180deg, #ffffff, #f7f7f7);

}



.tag{

  display: inline-block;

  padding: 7px 18px;

  border-radius: 30px;

  background: rgba(0,0,0,.08);

  font-weight: 700;

  letter-spacing: .12em;

  text-transform: uppercase;

  font-size: 12px;

}



.price-top h3{

  margin: 18px 0 6px;

  font-size: 38px;

  font-weight: 900;

  color: #0f2c2d;

}



.price-top h3 small{

  font-size: 18px;

  opacity: .75;

  font-weight: 700;

}



.rupee{

  font-size: 20px;

  vertical-align: top;

  margin-right: 4px;

  font-weight: 900;

}



.sub{

  margin: 0;

  font-weight: 700;

  letter-spacing: .25em;

  color: #7b7b7b;

  text-transform: uppercase;

  font-size: 12px;

}



.price-body{

  padding: 22px 26px 26px;

  text-align: center;

}



.info{

  padding: 12px 0;

}



.label{

  margin: 0;

  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: .18em;

  font-weight: 700;

  color: #de2026;

}



.value{

  margin: 8px 0 0;

  font-size: 18px;

  font-weight: 900;

  color: #111;

}



.btn-price{

  display: inline-flex;

  justify-content: center;

  align-items: center;

  margin-top: 18px;

  width: 100%;

  height: 52px;

  border-radius: 14px;

 background: linear-gradient(135deg, #3a72c7, #20539f);

  color: #fff;

  text-decoration: none;

  font-weight: 900;

  letter-spacing: .10em;

  text-transform: uppercase;

  font-size: 13px;

  transition: .25s ease;

  box-shadow: 0 10px 30px rgba(234,27,37,.35);

}



.btn-price:hover{

  filter: brightness(1.1);

  transform: translateY(-2px);

}



/* Featured card */

.price-card.featured{

  border: 2px solid rgba(234,27,37,.55);

  transform: translateY(-12px);

}



.price-card.featured:hover{

  transform: translateY(-18px);

}



.badge{

  position: absolute;

  top: 16px;

  right: 16px;

  padding: 7px 12px;

  border-radius: 12px;

  background: #ea1b25;

  color: #fff;

  font-weight: 900;

  font-size: 12px;

  letter-spacing: .08em;

  text-transform: uppercase;

  box-shadow: 0 10px 25px rgba(0,0,0,.25);

}



/* Responsive */

@media (max-width: 992px){

  .pricing-grid{ grid-template-columns: repeat(2, 1fr); }

  .pricing-heading h2{ font-size: 32px; }

}



@media (max-width: 620px){

  .pricing-grid{ grid-template-columns: 1fr; }

  .price-card.featured{ transform: none; }

}





.highlights-section{

  background: linear-gradient(180deg, #fff6f6 0%, #ffffff 100%);

  padding: 70px 0;

  font-family: "Inter", sans-serif;

}



.highlights-container{

  width: min(1200px, 92%);

  margin: auto;

}



.highlights-title {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0px;

    margin-bottom: 10px;

    flex-direction: column;

}



.highlights-title h2{

font-size: 44px;

    line-height: 1.12;

    font-weight: 700;

    color: #111827;

    margin: 0 0 2px;

    letter-spacing: -0.8px;

}



.highlights-title .line{

  height: 1px;

  width: 90px;

  background: rgba(0,0,0,0.2);

}



.highlights-subtitle{

  text-align: center;

  max-width: 650px;

  margin: 0 auto 40px auto;

  color: #6a6a6a;

  font-size: 15px;

  line-height: 1.7;

}



.highlights-grid{

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

}



.highlight-card{

  background: rgba(255,255,255,0.9);

  border: 1px solid rgba(0,0,0,0.06);

  border-radius: 18px;

  padding: 20px;

  display: flex;

  gap: 14px;

  align-items: flex-start;

  box-shadow: 0px 10px 28px rgba(0,0,0,0.07);

  transition: 0.35s ease;

  position: relative;

  overflow: hidden;

}



.highlight-card::before{

  content: "";

  position: absolute;

  inset: 0;

  background: radial-gradient(circle at top left, rgba(255, 87, 87, 0.10), transparent 55%);

  opacity: 0;

  transition: 0.35s ease;

}



.highlight-card:hover{

  transform: translateY(-7px);

  border-color: rgba(255, 87, 87, 0.30);

  box-shadow: 0px 18px 50px rgba(0,0,0,0.12);

}



.highlight-card:hover::before{

  opacity: 1;

}



.highlight-card .icon{

  min-width: 46px;

  height: 46px;

  border-radius: 14px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: linear-gradient(135deg, #3a72c7, #20539f);

  color: #fff;

  font-size: 20px;

  font-weight: 700;

  box-shadow: 0px 12px 25px rgba(255, 75, 75, 0.25);

  position: relative;

  z-index: 2;

}



.highlight-card .content{

  position: relative;

  z-index: 2;

}



.highlight-card h4{

  font-size: 16px;

  margin: 0 0 6px 0;

  font-weight: 700;

  color: #121212;

}



.highlight-card p{

  margin: 0;

  font-size: 13.5px;

  line-height: 1.6;

  color: #5f5f5f;

}



/* Responsive */

@media(max-width: 1024px){

  .highlights-grid{

    grid-template-columns: repeat(2, 1fr);

  }

}



@media(max-width: 640px){

  .highlights-title .line{

    width: 50px;

  }

  .highlights-grid{

    grid-template-columns: 1fr;

  }

}









.amenities-section{

  background: radial-gradient(circle at top, #fff 0%, var(--bg) 60%);

  padding: 90px 0;

  font-family: "Inter", sans-serif;

}



.container{

  width: min(1200px, 92%);

  margin: auto;

}



.amenities-head{

  text-align: center;

  margin-bottom: 50px;

}



.mini-tag{

display: inline-flex;
    padding: 5px 15px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: rgb(255 210 212);
    border: 0px solid rgb(251 183 186);
    margin-bottom: 0px;
    background: rgb(75 23 20 / 33%);
    background: linear-gradient(135deg, #3a72c7, #20539f);

}



.amenities-head h2 {

    font-size: 44px;

    line-height: 1.12;

    font-weight: 700;

    color: #111827;

    margin: 10px 0 10px;

    letter-spacing: -0.8px;

}



.amenities-head p{

  color: var(--muted);

  font-size: 16px;

  max-width: 720px;

  margin: auto;

  line-height: 1.7;

}



.amenities-grid{

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 22px;

}



.amenity-card{

  background: var(--card);

  border: 1px solid var(--border);

  border-radius: 22px;

  padding: 30px 22px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.05);

  position: relative;

  overflow: hidden;

  transition: 0.35s ease;

  backdrop-filter: blur(10px);

}



.amenity-card::before{

  content:"";

  position: absolute;

  width: 120px;

  height: 120px;

  background: rgba(223,42,42,0.10);

  border-radius: 50%;

  top: -55px;

  right: -55px;

  transition: 0.35s ease;

}



.amenity-card:hover{

  transform: translateY(-10px);

  box-shadow: var(--shadow);

  border-color: rgba(223,42,42,0.25);

}



.amenity-card:hover::before{

  transform: scale(1.4);

  opacity: 0.9;

}



.amenity-card .icon {

    width: 62px;

    height: 62px;

    border-radius: 18px;

    display: grid;

    place-items: center;

    background: rgb(251 232 231);

    margin-bottom: 18px;

}

.amenity-card .icon img{

  width: 36px;

  height: 36px;

  object-fit: contain;

  opacity: 0.85;

}



.amenity-card h3{

  font-size: 18px;

  margin: 0 0 10px;

  color: var(--text);

  font-weight: 700;

}



.amenity-card p{

  color: var(--muted);

  font-size: 14px;

  line-height: 1.7;

  margin-bottom: 20px;

}


.amenity-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgb(70 21 19 / 35%);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}



.amenity-btn:hover{

  background: var(--primary);

  color: #fff;

  border-color: var(--primary);

}



/* Responsive */

@media (max-width: 1100px){

  .amenities-grid{

    grid-template-columns: repeat(3, 1fr);

  }

}



@media (max-width: 850px){

  .amenities-grid{

    grid-template-columns: repeat(2, 1fr);

  }

  .amenities-head h2{

    font-size: 40px;

  }

}



@media (max-width: 520px){

  .amenities-grid{

    grid-template-columns: 1fr;

  }

  .amenities-section{

    padding: 60px 0;

  }

}





.loc-section {

   

    padding: 90px 0;

    color: #e9eefc;

    overflow: hidden;

    background: #3a72c7;

}



.loc-container{

  width: min(1180px, 92%);

  margin: 0 auto;

}



/* Header */

.loc-header{

  text-align: center;

  margin-bottom: 40px;

}



.loc-pill{

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 9px 14px;

  border-radius: 999px;

  background: rgba(255,255,255,.07);

  border: 1px solid rgba(255,255,255,.12);

  color: rgba(255,255,255,.88);

  font-weight: 600;

  font-size: 13px;

  letter-spacing: .2px;

}



.loc-title{

  font-size: clamp(28px, 3.2vw, 44px);

  margin: 14px 0 8px;

  font-weight: 700;

  letter-spacing: -.8px;

  line-height: 1.1;

}



.loc-subtitle{

  margin: 0 auto;

  max-width: 720px;

  font-size: 15px;

  color: rgba(233,238,252,.72);

  line-height: 1.7;

}



/* Grid */

.loc-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

}

ul.adv-list {

    padding: 0 0 0 20px;

}

ul.adv-list li {

    font-size: 16px;

    margin: 10px 0;

}

.map-frame iframe {

    width: 100%;

    height: 300px;

}

.map-actions {

    display: grid;

    justify-content: center;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    margin: 20px 0 0;

}

.map-actions .btn
 {
    background-color: #bc9865;
    padding: 10px 0;
    color: #ffffff;
}



/* Card */

.loc-card {

    background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .06));

    border: 3px solid rgb(255 255 255 / 65%);

    border-radius: 18px;

    box-shadow: 0 30px 70px rgba(0, 0, 0, .35);

    padding: 22px;

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    position: relative;

}



.loc-card::after{

  content:"";

  position:absolute;

  inset: 0;

  border-radius: 18px;

  pointer-events:none;

  background: radial-gradient(500px 160px at 30% 0%, rgba(255,255,255,.07), transparent 60%);

}



/* Map Card */

.map-card .card-top{

  display: flex;

  align-items: center;

  gap: 14px;

  margin-bottom: 16px;

}



.about-lead {

    padding: 70px 0;

    background: linear-gradient(180deg, #fff7ea 0%, #fffdf7 100%);

    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

    background: radial-gradient(circle at top, #fff 0%, var(--bg) 60%);

}



.container{

  width: min(1200px, 92%);

  margin: auto;

}



.grid{

  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  gap: 40px;

  align-items: start;

}



/* LEFT CONTENT */

.about-content{

  padding: 20px 10px;

}



.chip{

display: inline-flex;

    gap: 8px;

    padding: 8px 16px;

    border-radius: 50px;

    background: rgba(223, 42, 42, 0.08);

    color: var(--primary);

    font-weight: 600;

    font-size: 13px;

    letter-spacing: 0.5px;

}



.about-content h2{

font-size: 44px;

    line-height: 1.12;

    font-weight: 700;

    color: #111827;

    margin: 10px 0 18px;

    letter-spacing: -0.8px;

}



.about-content p{

  font-size: 16px;

  line-height: 1.8;

  color: #374151;

  max-width: 720px;

}



.points{

  margin: 20px 0 0;

  padding: 0;

  list-style: none;

  display: grid;

  gap: 12px;

}



.points li{

  padding: 14px 14px;

  border-radius: 14px;

  border: 1px solid rgba(0,0,0,0.08);

  background: rgba(255,255,255,0.7);

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  color: #111827;

  font-size: 15px;

  line-height: 1.6;

}



.points b{

  color: #0f172a;

}



.note{

  margin-top: 18px;

  padding: 14px 16px;

  border-radius: 16px;

  background: #fff;

  border: 1px solid rgba(0,0,0,0.08);

  box-shadow: 0 12px 30px rgba(0,0,0,0.05);

  font-size: 15px;

  color: #1f2937;

}



/* RIGHT FORM CARD */

.lead-card{

  position: sticky;

  top: 18px;

  background: #ffffff;

  border: 1px solid rgba(0,0,0,0.09);

  border-radius: 22px;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0,0,0,0.10);

}



.lead-head {

    padding: 22px 22px 18px;

    background: linear-gradient(135deg, #ffdadc 0%, #fff 55%);

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

}



.lead-head h3{

  font-size: 20px;

  margin: 0 0 6px;

  color: #111827;

}



.lead-head p{

  margin: 0;

  font-size: 14px;

  color: #374151;

}



.lead-form{

  padding: 20px 22px 22px;

  display: grid;

  gap: 14px;

}



.field label{

  display: block;

  margin-bottom: 7px;

  font-size: 13px;

  font-weight: 700;

  color: #111827;

}



.field input,

.field textarea{

  width: 100%;

  padding: 13px 14px;

  border-radius: 14px;

  border: 1px solid rgba(0,0,0,0.14);

  background: #fff;

  outline: none;

  font-size: 14px;

  color: #111827;

  transition: 0.25s ease;

}



.field input::placeholder,

.field textarea::placeholder{

  color: rgba(17,24,39,0.45);

}



.field input:focus,

.field textarea:focus{

  border-color: rgba(245,158,11,0.9);

  box-shadow: 0 0 0 4px rgba(245,158,11,0.18);

}



.btn {

    margin-top: 6px;

    border: 0;

    cursor: pointer;

    padding: 14px 16px;

    border-radius: 14px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.06em;

    text-transform: uppercase;

    color: #ffffff;

    background: linear-gradient(180deg, #facc15 0%, #f59e0b 100%);

    box-shadow: 0 14px 30px rgba(245, 158, 11, 0.30);

    transition: 0.25s ease;

background: linear-gradient(135deg, #3a72c7, #20539f);

}



.btn:hover{

  transform: translateY(-2px);

  box-shadow: 0 18px 35px rgba(245,158,11,0.40);

}



.btn:active{

  transform: translateY(0px);

}



.secure{

  padding: 14px 22px 20px;

  font-size: 13px;

  color: #6b7280;

  border-top: 1px solid rgba(0,0,0,0.08);

}



/* RESPONSIVE */

@media (max-width: 980px){

  .grid{

    grid-template-columns: 1fr;

    gap: 24px;

  }

  .lead-card{

    position: relative;

    top: auto;

  }

}



.floor-plans {

    padding: 70px 0;

    background: #fff2f3;

    /* font-family: Arial, sans-serif; */

    background: radial-gradient(circle at top, #fff 0%, var(--bg) 60%);

}



.fp-container{

  max-width: 1200px;

  margin: auto;

  padding: 0 18px;

}



.fp-head{

  text-align: center;

  margin-bottom: 40px;

}



.fp-tag{

  display: inline-block;

  font-size: 12px;

  letter-spacing: 4px;

  font-weight: 700;

  color: #ff9800;

  margin-bottom: 12px;

}



.fp-head h2 {

    font-size: 44px;

    line-height: 1.12;

    font-weight: 700;

    color: #111827;

    margin: 10px 0 10px;

    letter-spacing: -0.8px;

}



.fp-head p{

  max-width: 560px;

  margin: auto;

  color: #444;

  line-height: 1.6;

  font-size: 16px;

}



.fp-grid{

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

}



.fp-card{

  background: #fff;

  border-radius: 18px;

  overflow: hidden;

  box-shadow: 0 12px 30px rgba(0,0,0,.10);

  transition: 0.35s ease;

  border: 1px solid rgba(0,0,0,.06);

}



.fp-card:hover{

  transform: translateY(-10px);

  box-shadow: 0 25px 55px rgba(0,0,0,.16);

}



.fp-image{

  position: relative;

  padding: 20px;

  background: #fff;

}



.fp-image img{

  width: 100%;

  height: 200px;

  object-fit: contain;

  display: block;

  border-radius: 12px;

  background: #fafafa;

  padding: 0px;

}



.fp-badge{

  position: absolute;

  top: 18px;

  left: 18px;

  padding: 7px 12px;

  font-size: 12px;

  font-weight: 700;

  border-radius: 999px;

  background: #ff9800;

  color: #111;

  box-shadow: 0 10px 20px rgba(0,0,0,.15);

}



.fp-badge-alt{

  background: #111;

  color: #fff;

}



.fp-body{

  padding: 18px 20px 22px;

  text-align: center;

}



.fp-body h3{

  font-size: 20px;

  margin: 0 0 8px;

  font-weight: 700;

  color: #111;

}



.fp-body p{

  margin: 0 0 16px;

  font-size: 14px;

  color: #555;

  line-height: 1.6;

}



.fp-btn{

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  padding: 12px 16px;

  border-radius: 12px;

  color: #fff;

  font-weight: 700;

  text-decoration: none;

  font-size: 14px;

  transition: 0.35s ease;

  border: 1px solid rgba(0,0,0,.08);
  background: linear-gradient(135deg, #3a72c7, #20539f);

}



.fp-btn span{

  transition: 0.35s ease;

  font-size: 16px;

}



.fp-btn:hover{

  transform: translateY(-2px);

  box-shadow: 0 14px 26px rgba(255,152,0,.35);

}



.fp-btn:hover span{

  transform: translateX(4px);

}



/* Responsiveresponsive */

@media (max-width: 992px){

  .fp-grid{

    grid-template-columns: repeat(2, 1fr);

  }



  .fp-head h2{

    font-size: 32px;

  }

}



@media (max-width: 600px){

  .fp-grid{

    grid-template-columns: 1fr;

  }



  .fp-head h2{

    font-size: 28px;

  }



  .fp-image img{

    height: 190px;

  }

}





.overview-sec{

  padding: 80px 0;

    background: radial-gradient(circle at top, #fff 0%, var(--bg) 60%);

}



.overview-container{

  width: min(1200px, 92%);

  margin: auto;

}



.overview-grid{

  display: grid;

  grid-template-columns: 1.1fr 0.9fr;

  gap: 60px;

  align-items: center;

}



.overview-badge {
    display: inline-flex;
    padding: 5px 15px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: rgb(255 210 212);
    border: 0px solid rgb(251 183 186);
    margin-bottom: 15px;
    background: rgb(75 23 20 / 33%);
    background: linear-gradient(135deg, #3a72c7, #20539f);
}



.overview-title{

  font-size: 44px;

  line-height: 1.12;

  font-weight: 700;

  color: #111827;

  margin: 0 0 18px;

  letter-spacing: -0.8px;

}



.overview-title span {

    background: #3a72c7;

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}



.overview-text{

  font-size: 16px;

  line-height: 1.85;

  color: #4b5563;

  margin: 0 0 16px;

}



.overview-features{

  margin-top: 22px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 14px;

}



.feat{

  display: flex;

  gap: 12px;

  align-items: center;

  padding: 14px 14px;

  border-radius: 16px;

  background: rgba(255,255,255,.85);

  border: 1px solid rgba(17,24,39,.08);

  box-shadow: 0 12px 30px rgba(17,24,39,.07);

  transition: 0.25s ease;

}



.feat:hover{

  transform: translateY(-4px);

  box-shadow: 0 18px 40px rgba(17,24,39,.10);

}



.feat .icon {
    height: 42px;
    width: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #3a72c7;
    color: #bc9865;
    font-size: 20px;
}



.feat strong{

  display: block;

  font-size: 14px;

  font-weight: 700;

  color: #111827;

}



.feat small{

  display: block;

  font-size: 12px;

  color: #6b7280;

  margin-top: 2px;

}



.overview-btns{

  display: flex;

  gap: 14px;

  margin-top: 26px;

}



.btn-primary{

  padding: 12px 22px;

  border-radius: 12px;

  color: #fff;

  font-weight: 700;

  text-decoration: none;

 background: linear-gradient(135deg, #3a72c7, #20539f);

  transition: 0.25s ease;

}



.btn-primary:hover{

  transform: translateY(-2px);

  box-shadow: 0 22px 38px rgba(63,94,251,.30);

}



.btn-outline{

  padding: 12px 22px;

  border-radius: 12px;

  color: #111827;

  font-weight: 700;

  text-decoration: none;

  border: 1px solid rgba(17,24,39,.18);

  background: #fff;

  transition: 0.25s ease;

}



.btn-outline:hover{

  transform: translateY(-2px);

  border-color: rgba(63,94,251,.45);

}



/* IMAGE SIDE */

.overview-image{

  position: relative;

}



.img-wrap{

  border-radius: 26px;

  overflow: hidden;

  position: relative;

  border: 1px solid rgba(17,24,39,.10);

  box-shadow: 0 30px 60px rgba(17,24,39,.12);

}



.img-wrap img{

  width: 100%;

  height: 420px;

  object-fit: cover;

  display: block;

  transition: 0.6s ease;

}



.img-wrap:hover img{

  transform: scale(1.06);

}



.img-wrap::after{

  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(120deg, rgba(63,94,251,.15), rgba(252,70,107,.08));

  pointer-events: none;

}



.img-card{

  position: absolute;

  bottom: -22px;

  left: 20px;

  right: 20px;

  padding: 14px 16px;

  border-radius: 18px;

  background: rgba(255,255,255,.95);

  border: 1px solid rgba(17,24,39,.10);

  box-shadow: 0 18px 40px rgba(17,24,39,.14);

  backdrop-filter: blur(10px);

}



.img-card strong{

  display: block;

  font-size: 14px;

  font-weight: 900;

  color: #111827;

}



.img-card span{

  display: block;

  font-size: 12px;

  color: #6b7280;

  margin-top: 2px;

}



/* RESPONSIVE */

@media (max-width: 992px){

  .overview-grid{

    grid-template-columns: 1fr;

    gap: 34px;

  }



  .overview-title{

    font-size: 34px;

  }



  .overview-features{

    grid-template-columns: 1fr;

  }



  .img-wrap img{

    height: 340px;

  }



  .img-card{

    position: relative;

    bottom: 0;

    left: 0;

    right: 0;

    margin-top: 14px;

  }

}





.lux-hero{

  position: relative;

  width: 100%;

  min-height: 230px;

  display: flex;

  align-items: center;

  overflow: hidden;

  padding: 24px 18px;

  background: url("your-image.jpg") center/cover no-repeat;

}



/* Dark overlay + gradient for premium look */

.lux-hero-overlay{

  position:absolute;

  inset:0;

    background: linear-gradient(135deg, #3a72c7, #20539f);

  z-index: 1;

}



.lux-hero-content{

  position: relative;

  z-index: 2;

  width: 100%;

  max-width: 1280px;

  margin: 0 auto;

  color: #fff;

}



.lux-top-badge{

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 8px 14px;

  border-radius: 999px;

  background: rgba(255,255,255,0.10);

  border: 1px solid rgba(255,255,255,0.18);

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 0.3px;

  margin-bottom: 12px;

}



.lux-top-badge .dot{

  width: 10px;

  height: 10px;

  border-radius: 50%;

  background: #fff;

  box-shadow: 0 0 0 5px rgba(225,29,72,0.15);

}



.lux-title{

  font-size: clamp(20px, 2.6vw, 44px);

  font-weight: 800;

  line-height: 1.12;

  letter-spacing: 0.2px;

  margin: 0;

  text-transform: none;

}



.lux-title span{ color: #ef4444; }



.lux-subtitle{

  margin: 8px 0 18px;

  font-size: clamp(13px, 1.2vw, 18px);

  opacity: 0.92;

  font-weight: 500;

}



/* Info grid */

.lux-info-grid{

  display: grid;

  grid-template-columns: repeat(5, minmax(140px, 1fr));

  gap: 14px;

  margin-top: 10px;

}



.lux-info{

  padding: 14px 14px;

  border-radius: 14px;

  background: rgba(255,255,255,0.10);

  border: 1px solid rgba(255,255,255,0.16);

  backdrop-filter: blur(12px);

  -webkit-backdrop-filter: blur(12px);

  transition: all 0.25s ease;

}



.lux-info:hover{

  transform: translateY(-3px);

  background: rgba(255,255,255,0.14);

  border-color: rgba(255,255,255,0.28);

}



.lux-label{

  display: block;

  font-size: 11px;

  letter-spacing: 0.9px;

  text-transform: uppercase;

  color: rgba(255,255,255,0.7);

  margin-bottom: 6px;

}



.lux-value{

  display: block;

  font-size: 15px;

  font-weight: 800;

  color: #fff;

}



/* Buttons */

.lux-actions{

  margin-top: 18px;

  display: flex;

  gap: 12px;

  flex-wrap: wrap;

}



.lux-btn-primary {
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #a88258, #bc9865);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.3px;
    box-shadow: 0 1px 6px rgb(184 148 99);
    transition: all 0.25s ease;
}



.lux-btn-primary:hover{

  transform: translateY(-2px);

  box-shadow: 0 16px 36px rgba(239,68,68,0.45);

}



.lux-btn-secondary{

  text-decoration: none;

  padding: 12px 18px;

  border-radius: 999px;

  background: rgba(255,255,255,0.10);

  border: 1px solid rgba(255,255,255,0.22);

  color: #fff;

  font-weight: 700;

  transition: all 0.25s ease;

}



.lux-btn-secondary:hover{

  transform: translateY(-2px);

  background: rgba(255,255,255,0.14);

}



/* ✅ Responsive */

@media (max-width: 1200px){

  .lux-info-grid{ grid-template-columns: repeat(3, minmax(160px, 1fr)); }

}



@media (max-width: 800px){

  .lux-hero{ padding: 18px 14px; border-radius: 16px; }

  .lux-info-grid{ grid-template-columns: repeat(2, minmax(150px, 1fr)); }

}



@media (max-width: 480px){

  .lux-info-grid{ grid-template-columns: 1fr; }

  .lux-actions{ gap: 10px; }

  .lux-btn-primary, .lux-btn-secondary{ width: 100%; text-align:center; }

}



@media only screen and (max-width: 600px) {

  .project-logo img {

    max-height: 50px;

    width: auto;

}

.button_container {

    height: 48px;

}

.button_container span {

    top: 12px;

}

.button_container span:nth-of-type(2) {

    top: 22px;

}

.button_container span:nth-of-type(3) {

    top: 32px;

}

    header {

        background-color: #ffffff;

    }

    .highlight-card .content {

    position: relative;

    z-index: 2;

    padding: 0;

}

.loc-grid {

    display: grid;

    grid-template-columns: 100%;

    gap: 20px;

}

    a.whatsapp {

        z-index: 1111;

    }

        .fix-mobile-strip {

        z-index: 111;

    }

        .overview-title {

        font-size: 24px;

    }

    .overview-sec {

    padding: 50px 0;

    background: radial-gradient(circle at top, #fff 0%, var(--bg) 60%);

}

.gallery-section {

    background: #fff2f3;

    padding: 50px 0;

}

    .section-title h2 {

        font-size: 24px;



    }

    .pricing-section {

    position: relative;

    padding: 50px 16px;

}

    .pricing-heading h2 {

        font-size: 24px;

    }

    .pricing-heading {

    text-align: center;

    margin-bottom: 20px;

    color: #fff;

}

.highlights-section {

    padding: 50px 0;

}

.highlights-title h2 {

    font-size: 24px;

    margin: 0 0 2px;

}

.highlights-subtitle {

    margin: 0 auto 20px auto;

}

    .amenities-section {

        padding: 0px 0 50px;

    }

    .amenities-head {

    text-align: center;

    margin-bottom: 20px;

}

.loc-section {

    padding: 50px 0;

    color: #e9eefc;

    overflow: hidden;

    background: #3a72c7;

}

.loc-header {

    text-align: center;

    margin-bottom: 20px;

}

.map-actions {

    display: none;

}

.about-lead {

    padding: 40px 0 50px;

}

.about-content h2 {

    font-size: 24px;

    line-height: 1.12;

    font-weight: 700;

    color: #111827;

    margin: 10px 0 18px;

    letter-spacing: -0.8px;

}

    .home-banner {

        height: 50vh;

    }

}

.fp-image img {
    filter: blur(3px);
}

.btn-primary:hover {
    color: #3a72c7;
    background-color: #bc9865;
    border-color: #bc9865;
}

