@font-face {
  font-family: "Christmas Shine";
  src: url("../fonts/ChristmasShine.woff2") format("woff2"),
    url("../fonts/ChristmasShine.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy Medium";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2"),
    url("../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy Regular";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2"),
    url("../fonts/Gilroy-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Myriad Pro Regular";
  src: url("../fonts/MyriadPro-Regular.woff2") format("woff2"),
    url("../fonts/MyriadPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy Semibold";
  src: url("../fonts/Gilroy-SemiBold.woff2") format("woff2"),
    url("../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy Bold";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2"),
    url("../fonts/Gilroy-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy Light Italic";
  src: url("../fonts/Gilroy-LightItalic.woff2") format("woff2"),
    url("../fonts/Gilroy-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Bold";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"),
    url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Authentic Signature";
  src: url("../fonts/Authentic-Signature.woff2") format("woff2"),
    url("../fonts/Authentic-Signature.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #b2a5c5;
  --primary-dark-color: #8b7da0;
  --primary-light-color: #ece9f0;
  --secondary-color: #000000;
  --secondary-light-color: #303030;
  --ternary-dark-color: #1f1b3e;
  --primary-background-color: #b2a5c5;
  --seondary-background-color: #faf5f2;
  --ternary-background-color: #f6f2ee;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
  line-height: 1.5;
  color: black;
  font-family: "Gilroy Regular";
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gilroy Bold";
  color: var(--primary-dark-color);
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  font-size: 16px;
  line-height: 1.4;
}

img,
iframe {
  display: block;
}

a {
  text-decoration: none;
  color: var(--secondary-color);
}

input[type="text"],
input[type="tel"],
input[type="submit"],
button.submit-btn,
select {
  width: 100%;
  border: 1px solid #d5d5d5;
  border-radius: 5px;
  padding: 18px 20px;
  font-family: "Gilroy Medium";
  font-weight: 500;
  font-size: 15px;
  display: block;
}

input[type="submit"],
button.submit-btn {
  cursor: pointer;
}

.container {
  width: 1170px;
  max-width: 96%;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

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

.font-style {
  font-family: "Authentic Signature";
}

.btn {
  padding: 8px 6px;
  border-radius: 2px;
  font-weight: 500;
}

.btn-outline,
.btn-filled:hover {
  background-color: transparent;
  border: 1px solid var(--primary-background-color);
  color: var(--primary-color);
}

.btn-filled,
.btn-outline:hover {
  background-color: var(--primary-background-color);
  border: 1px solid var(--primary-background-color);
  color: white;
}

.btn-filled-filled {
  background-color: var(--primary-light-color);
  color: var(--primary-color);
}

/* POPUP */

.popup-active {
  overflow: hidden;
}

.modal-popup {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  inset: 0;
  z-index: 99999;
  display: none;
}

.popup-active .modal-popup {
  display: block;
}

.modal-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

.modal-inner {
  padding: 14px;
  position: relative;
  max-width: 480px;
  width: 100%;
}

.modal-popup .enquiry-form {
  background-color: white;
}

#modal-close {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #222;
  box-shadow: none;
  border: 0;
  cursor: pointer;
}

#modal-close svg {
  fill: #fff;
}

#openModal,
.enquire-now {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999;
  background-color: #333;
  border: 0;
  padding: 13px;
  color: white;
  font-family: "Gilroy Semibold";
  cursor: pointer;
}

/* HEADER */

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
}

header {
  padding: 5px 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  max-height: 55px;
  width: auto;
}

.menu {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li a {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  padding: 5px 10px;
}

.menu li a:hover {
  color: black;
}

#hamburgerMenu {
  display: none;
}

.hamburger {
  position: relative;
  top: 0;
  left: 0;
  width: 30px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 2px;
}

/* Animate to X when active */
.hamburger .bar:nth-child(1) {
  transform: rotate(0deg) translate(0, -11px);
}

.hamburger .bar:nth-child(3) {
  transform: rotate(0deg) translate(0, 11px);
}

.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(6px, -5px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, 6px);
}

/* FOOTER */

footer {
  background-color: var(--primary-background-color);
  padding: 50px 0;
  text-align: center;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.f-head-top {
  margin-bottom: 6px;
}

.f-head-middle {
  margin-top: 16px;
}

footer p,
footer h4 {
  color: white;
}

.footer-top {
  max-width: 700px;
  margin: 0 auto;
}

.footer-top p {
  font-size: 18px;
}


.footer-bottom-bar {
  border-top: 1px solid #ccc;
  padding: 15px 0;
  margin-top: 30px;
  font-size: 14px;
}

.footer-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-bar .powered-by a {
  color: #000;
  text-decoration: none;
}

.footer-bottom-bar .powered-by a:hover {
  text-decoration: underline;
}

.footer-bottom-bar .social-icons {
  display: flex;
  gap: 15px;
}

.footer-bottom-bar .social-icons img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

/* HERO BANNER */

.hero-banner {
  display: none;
  height: 100vh;
}

.hero-banner img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BANNER */

.banner {
  position: relative;
}

.banner .owl-theme .owl-nav {
  height: auto;
  margin-top: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  left: 0;
  right: 0;
  padding: 0 15px;
}

.banner .owl-theme .owl-nav button {
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.banner-content {
  height: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding-bottom: 30px;
  display: none;
}

.banner-content div {
  height: auto;
}

.property-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.pi-col {
  display: flex;
  gap: 10px;
}

.property-info .pi-col {
  justify-content: flex-end;
  border-left: 1px solid #fff;
}

.property-info .pi-col:first-child {
  border-left: 0;
}

.pi-icon img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.pi-meta h6,
.pi-meta p {
  color: white;
}

/* PROJECT HIGHLIGHTS */

.project-highlights {
  padding: 60px 0;
  background-color: var(--seondary-background-color);
}

.project-highlights h3 {
  margin-bottom: 40px;
}

.highlights-inner {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.ph-col {
  border-bottom: 1px solid #c4896b;
  padding-bottom: 14px;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
}

.ph-col:last-child {
  border-bottom: 0;
}

.ph-col h6 {
  color: var(--secondary-light-color);
}

/* ENQUIRY FORM */

.enquiry-form {
  padding: 45px 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px;
  overflow: hidden;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.enquiry-form h3 {
  margin-bottom: 40px;
  text-align: center;
}

.form-control label {
  font-size: 14px;
  display: block;
  line-height: 20px;
}

.form-control label input {
  margin-right: 8px;
}

.form-submit-btn {
  margin-top: 25px;
}

.submit-btn[type="submit"],
button.submit-btn {
  border: 0;
  max-width: 220px;
  margin: 0 auto;
  display: block;
  background-color: var(--primary-background-color);
  color: white;
  text-transform: uppercase;
  font-family: "Gilroy Bold";
  font-weight: bold;
  font-size: 18px;
}

.submit-btn:hover {
  background-color: var(--primary-dark-color);
}

/* OVERVIEW */

.overview-sec {
  padding: 60px 0;
}

.overview-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.overview-lft {
  width: 56%;
  text-align: center;
}

.overview-rgt {
  width: 40%;
}

.overview-lft h3 {
  margin-bottom: 30px;
}

.overview-content p {
  font-size: 16px;
  line-height: 1.5;
}

.ov-features {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}

.ovf-col {
  width: 50%;
  padding: 0 12px;
  display: flex;
  align-items: center;
}

.ovf-icon {
  width: 50px;
}

.ovf-icon img {
  width: 100%;
}

.ovf-data p {
  font-size: 16px;
  line-height: 1.3;
}

/* VIDEOS */

.videos {
  padding: 60px 0;
  background-color: var(--seondary-background-color);
}

.videos h3 {
  margin-bottom: 40px;
}

.video-container {
  max-width: 700px;
  max-width: 100%;
  margin: 0 auto;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* LOCATION */

.property-location {
  padding: 60px 0;
}

.location-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.location-header p {
  color: var(--primary-color);
}

.location-tabs,
.amenities-tabs,
.gallery-tabs {
  display: flex;
  max-width: 500px;
  margin: 50px auto;
  gap: 15px;
}
.location-tabs button,
.amenities-tabs button,
.gallery-tabs button {
  flex: 1;
  cursor: pointer;
  border-radius: 5px;
  font-family: "Gilroy Medium";
  font-weight: 500;
}

.gallery-tab .owl-theme .owl-nav {
  margin-top: 0;
}

.gallery-tab .owl-theme .owl-nav button {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
}

.gallery-tab .owl-theme .owl-nav button.owl-prev {
  left: 0;
}

.gallery-tab .owl-theme .owl-nav button.owl-next {
  right: 0;
}

.amenities-tab {
  max-width: 730px;
  margin: 0 auto;
}

.location-tab {
  max-width: 100%;
  margin: 0 auto;
}

.locator-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  width: fit-content;
  margin: 0 auto 50px auto;
}

.loc-main-logo {
  max-height: 45px;
  width: auto;
  max-width: 100%;
}

.loc-icon {
  max-height: 26px;
  width: auto;
  max-width: 100%;
}

.locator-header span {
  font-family: "Gilroy Medium";
  font-weight: 500;
  font-size: 16px;
}

.route-map-wrapper img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.location-tab iframe {
  width: 100%;
  height: 450px;
}

/* AMENITIES */

.amenitis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 45px 30px;
}

.ag-box {
  text-align: center;
  max-width: 200px;
  margin: 0 auto;
}

.ag-box p {
  font-size: 18px;
  line-height: 1.4;
  font-family: "Gilroy Medium";
  font-weight: 500;
}

.ag-box img {
  display: block;
  margin: 0 auto 14px auto;
  height: 70px;
  width: auto;
  max-width: 100%;
}

/* GALLERY SLIDER WITH LIGHTBOX */

.gallery-tab {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-tab .owl-carousel.owl-hidden {
  opacity: 1;
}

/* FEATURES - Accordion */

.features-wrapper {
  max-width: 580px;
  margin: 0 auto;
}

.features-block button {
  border: 0;
  border-bottom: 1px solid #b5b5b5;
  background-color: transparent;
  display: block;
  padding: 12px 44px 12px 22px;
  width: 100%;
  margin-bottom: 12px;
  text-align: left;
  line-height: normal;
  font-family: "Gilroy Semibold";
  font-weight: 600;
  color: var(--primary-color);
  font-size: 20px;
  cursor: pointer;
  position: relative;
}

.features-block button.active {
  border-radius: 5px;
  background-color: var(--primary-background-color);
  color: white;
  margin-bottom: 0;
}

.features-block button::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent url("../images/icons/chevron-down.png") no-repeat center center;
  background-size: contain;
  z-index: 2;
  width: 20px;
  height: 20px;
}

.features-block button.active::before {
  background: transparent url("../images/icons/chevron-up.png") no-repeat center center;
  background-size: contain;
}

.features-wrap {
  padding-bottom: 20px;
}

.features-block p {
  padding: 12px 22px;
  font-size: 18px;
  border-bottom: 1px solid #b5b5b5;
}

.features-block p:last-child {
  border-bottom: 0;
}

/* AMENITIES */

.amenities {
  padding: 80px 0;
}

/* GALLERY */

.gallery-sec {
  padding: 60px 0;
}

/* PROJECT CTA */

.project-cta {
  background: transparent url("../images/project-bg-image.webp") no-repeat center/cover;
  background-position: center;
  padding: 60px 0 100px 0;
}

.project-cta h3 {
  color: var(--ternary-dark-color);
}

.project-cta .font-style {
  font-size: 56px;
  letter-spacing: 1px;
  font-weight: 400;
}

.location-heading {
  font-family: "Gilroy Medium";
  font-weight: 500;
}

.project-cta-wrap {
  gap: 12px;
  display: flex;
  max-width: 500px;
  margin: 25px auto 0 auto;
}

.project-cta-wrap a {
  display: block;
  width: 100%;
}

.features {
  padding: 60px 0;
  background-color: var(--seondary-background-color);
}

.features .location-header {
  margin-bottom: 40px;
}

/* ABOUT */

.about-sec {
  padding: 80px 0;
}

.about h3 {
  font-family: "Gilroy Medium";
  font-weight: 500;
  margin-bottom: 7px;
}

.about-site-logo {
  display: block;
  margin: 0 auto;
  max-width: 220px;
  width: 100%;
  height: auto;
}

.about-content {
  max-width: 800px;
  margin: 30px auto 0 auto;
}

#banner .owl-nav,
#banner .owl-dots {
  display: none !important;
}

form label.error,
.text-error {
  color: #ff6000;
  font-size: 16px;
  display: block;
}

.sticky-desktop {
  position: fixed;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  display: flex;
  flex-direction: column;
  z-index: 10;
  background-color: var(--primary-background-color);
  padding: 16px 10px;
  border-radius: 10px 0 0 10px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  box-shadow: 0px 0px 13.67px 0px rgba(0, 0, 0, 0.1607843137);
}

.sticky-desktop a,
.sticky-desktop svg,
.social-icons svg {
  display: block;
  color: white;
}

.sticky-desktop a {
  padding: 26px 12px;
}

.sticky-desktop a:first-child {
  border-bottom: 1px solid #fff;
}

.sticky-desktop svg,
.social-icons svg {
  width: 32px;
  height: 32px;
}

.mobile-sticky {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 32px;
  background-color: var(--primary-background-color);
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  box-shadow: 0px 0px 13.67px 0px rgba(0, 0, 0, 0.1607843137);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: none;
}

.mobile-sticky::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  translate: 0 -50%;
  margin: 0 auto;
  height: 50%;
  width: 1px;
  background-color: white;
}

.mob-connect a {
  display: flex;
  align-items: center;
  color: white;
  gap: 6px;
  font-size: 16px;
}

.mob-connect svg {
  display: block;
  width: 20px;
  height: 20px;
}

@media (max-width: 380px) {
  .property-info {
    grid-gap: 12px !important;
  }

  body .pi-icon img {
    height: 36px;
    width: 36px;
  }

  body .pi-meta h6,
  body .pi-meta p {
    font-size: 13px;
  }

  body .pi-meta p {
    line-height: 1.2;
  }
}

@media (max-width: 400px) {

  .pi-meta h6,
  .pi-meta p {
    font-size: 14px;
  }

  .location-tabs button,
  .amenities-tabs button,
  .gallery-tabs button {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .banner-content {
    padding-bottom: 12px !important;
  }

  .project-cta-wrap {
    flex-direction: column;
  }

  .location-tabs {
    flex-direction: column;
  }

  .locator-header {
    flex-direction: column;
    gap: 10px;
  }

  .loc-main-logo {
    max-height: 50px !important;
  }

  .loc-icon {
    max-height: 18px;
    transform: rotate(90deg);
  }
}

@media (max-width: 480px) {
  .property-info {
    grid-gap: 15px !important;
  }

  .pi-icon img {
    height: 42px;
    width: 42px;
  }

  .pi-meta h6,
  .pi-meta p {
    font-size: 15px;
  }

  .ov-features {
    flex-direction: column;
  }

  .ovf-col:nth-child(even) {
    justify-content: flex-start !important;
  }

  .ovf-col {
    width: 100%;
    max-width: 100%;
  }

  .ovf-data {
    width: 100% !important;
  }

  .ovf-col:nth-child(even) {
    border: 0 !important;
  }

  .features-block button {
    font-size: 17px;
  }

  .features-block p {
    font-size: 16px;
  }

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

@media (max-width: 575.98px) {

  /* Styles for extra small devices (phones, portrait) */
  .f-head-middle {
    font-size: 20px;
  }

  .location-heading {
    font-size: 26px;
  }

  .ovf-data h6 {
    font-size: 17px;
  }

  .ovf-data p {
    font-size: 15px;
  }

  .loc-main-logo {
    max-height: 42px;
    width: auto;
    max-width: 100%;
  }

  .locator-header {
    gap: 18px;
  }

  .loc-icon {
    max-height: 20px;
  }

  .locator-header span {
    font-size: 14px;
    text-align: center;
  }

  .banner-content {
    padding-bottom: 20px !important;
  }

  .footer-bar-container {
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bottom-bar .social-icons {
    justify-content: flex-start;
  }

}

@media (max-width: 767.98px) {

  /* Styles for small devices (phones, landscape) */
  .banner .owl-theme .owl-nav button {
    width: 30px;
    height: 30px;
  }

  .banner .owl-theme .owl-nav {
    padding: 0 6px;
  }

  .ovf-col:nth-child(even) {
    position: relative;
    justify-content: flex-end;
    border-left: 1px solid #848484;
  }

  .ovf-data {
    width: auto;
    max-width: 150px;
    min-width: 120px;
  }

  .ovf-col {
    text-align: left;
    gap: 16px;
  }

  .ag-box p {
    font-size: 16px;
  }
}

@media (max-width: 991.98px) {

  /* Styles for medium devices (tablets) */
  #hamburgerMenu {
    display: block;
  }

  header nav {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
      rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    position: absolute;
    top: 120%;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 99;
    display: none;
    max-width: 95%;
    margin: 0 auto;
  }

  .menu {
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .menu li a {
    text-align: center;
    color: #000;
    display: block;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .banner-content {
    display: block;
  }

  .sticky-desktop {
    display: none;
  }

  .mobile-sticky {
    display: flex;
  }
}

@media (max-width: 1199.98px) {

  /* Styles for large devices (small desktops) */
  .banner,
  .banner div,
  .banner .item img {
    height: auto;
  }

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

  .property-info-desktop {
    display: none;
  }

  .overview-wrapper {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .property-info {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .property-info .pi-col:nth-child(even) {
    margin-left: auto;
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }

  .property-info .pi-col:nth-child(odd) {
    justify-content: flex-start;
  }

  .overview-lft,
  .overview-rgt {
    width: 100%;
  }

  .overview-sec .enquiry-form {
    max-width: 700px;
    margin: 0 auto;
  }

  .property-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
}

@media (min-width: 768px) {

  /* Styles for medium devices and up */
  .highlights-inner {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ph-col {
    width: 50%;
    padding: 0 20px;
    border: 0;
    max-width: 100%;
  }

  .ovf-col {
    width: 25%;
    border: 0;
    flex-direction: column;
  }

  .ovf-icon {
    margin-bottom: 15px;
  }
}

@media (min-width: 992px) {

  /* Styles for large devices and up */
  .menu li a:hover {
    color: var(--ternary-dark-color);
  }

  h3 {
    font-size: 36px;
  }

  h4 {
    font-size: 30px;
  }

  .footer-top p {
    font-size: 20px;
    line-height: 1.3;
  }

  .property-info-desktop {
    display: block;
    position: relative;
    background-color: var(--primary-background-color);
    padding: 30px 0;
    height: auto !important;
  }

  .property-info {
    grid-template-columns: repeat(4, 1fr);
  }

  .pi-col {
    min-width: 220px;
    max-width: 220px;
  }

  .pi-meta p {
    line-height: 1.1;
    margin-top: 5px;
  }
}

@media (min-width: 1400px) {

  /* Styles for very large screens and up */
  p {
    font-size: 20px;
    line-height: 1.5;
  }

  .gallery-tab .owl-theme .owl-nav button.owl-prev {
    left: -50px;
  }

  .gallery-tab .owl-theme .owl-nav button.owl-next {
    right: -50px;
  }
}