@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: Avenir;
  src: url("../assets/fonts/Avenir/AvenirLTStd-Medium.otf");
}

@font-face {
  font-family: AvenirLTStd-Heavy;
  src: url("../assets/fonts/Avenir/AvenirLTStd-Heavy.otf");
}

@font-face {
  font-family: ScotchDisplay-Medium;
  src: url("../assets/fonts/scotch-display/ScotchDisplay-Medium.ttf");
}

@font-face {
  font-family: ScotchDisplay-Bold;
  src: url("../assets/fonts/scotch-display/ScotchDisplay-Bold.ttf");
}

@font-face {
  font-family: ScotchDisplay-SemiBold;
  src: url("../assets/fonts/scotch-display/ScotchDisplay-SemiBold.ttf");
}

@font-face {
  font-family: Aston_Script;
  src: url("../assets/fonts/Aston_Script/Aston_Script.ttf");
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --light: #ffffff;
  --dark: #000;
  --Lato: "Lato", sans-serif;
  --Montserrat: "Montserrat", sans-serif;
  --Raleway: "Raleway", sans-serif;
  --Avenir: Avenir;
  --AvenirLTStd-Heavy: AvenirLTStd-Heavy;
  --ScotchDisplay-Medium: ScotchDisplay-Medium;
  --ScotchDisplay-SemiBold: ScotchDisplay-SemiBold;
  --ScotchDisplay-Bold: ScotchDisplay-Bold;
  --Aston_Script: Aston_Script;
  --radius-1: 16px;
  --radius-2: 24px;
  --radius-full: 100px;
  --primary: rgba(188, 144, 81, 1);
  --primary-bg: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.5) 100%
    ),
    #f7f5f2;
  --primary-bg-2: #f8f2ec;
  --primary-bg-3: rgba(237, 229, 218, 1);
  --secondary: rgba(25, 57, 41, 1);
  --text-color: #585858;
  --text-color-2: rgba(116, 83, 61, 1);
  --brown: #74533d;
  --polish-gray: #393939;
}

html {
  font-size: 16px !important;
  overflow-x: hidden;
}

body {
  overflow-x: hidden !important;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
  padding-right: 0px !important;
  font-family: var(--Avenir);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  background-color: #ffffff00;
}

body::-webkit-scrollbar {
  width: 9px;
  background-color: #ffffff00;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
  background-color: #cfcfcf;
}

.toggle-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--dark-blue);
  width: 45px;
  height: 45px;
  border-radius: 100px;
  position: fixed;
  bottom: 0%;
  right: 1.25%;
  color: var(--light);
  z-index: 999;
  cursor: pointer;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up.show {
  opacity: 1;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.toggle-up i {
  font-size: 1.15rem;
}

/* form loader css */

.form-loader-div {
  display: none;
}

.form-loader {
  width: 25px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #b5acac;
  border-right-color: var(--light);
  -webkit-animation: l2 0.35s infinite linear;
  animation: l2 0.35s infinite linear;
}

@-webkit-keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes l2 {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

/* form loader css */

.compensate-for-scrollbar {
  margin-right: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0rem;
}

ul {
  padding-left: 0rem;
  margin-bottom: 0rem;
}

/* li {
  list-style: none;
  text-decoration: none;
} */

a {
  text-decoration: none;
}

p {
  margin-bottom: 0rem;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.max-content {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.no-wrap {
  text-wrap: nowrap;
}

.invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.rotate {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.rotate-180 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.mirror {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.letter-spacing {
  letter-spacing: 1.05px;
}

.text-shadow {
  text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3);
}

.primary-bg {
  background-color: var(--primary);
}

.custom-container {
  width: 85vw;
  max-width: 90%;
  margin: auto;
}

.custom-container-2 {
  width: 90vw;
  max-width: 100%;
  margin: auto 0 auto auto;
}
.custom-container-2.custom-margin {
  margin: auto 2rem auto auto;
}

.header-container {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  z-index: 11;

  -webkit-transition: all 1s ease;

  -o-transition: all 1s ease;

  transition: all 1s ease;
}

.navbar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.85rem 8rem;
  background: var(--primary-bg);
  gap: 1rem;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.menu {
  display: none;
  width: 21px;
  cursor: pointer;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}

.logo-img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 70px;
  max-width: 100%;
  position: relative;
}

.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.navLinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  gap: 1.25rem;
}

.navLinks .navLink {
  display: block;
  font-family: var(--TT_Neoris_Regular);
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
  text-transform: capitalize;
  cursor: pointer;
  position: relative;
}

.navLinks .navLink::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  bottom: -5px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  border-radius: var(--radius-full);
  background-color: var(--primary-pink);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.navLinks .navLink:hover::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.line {
  width: 1px;
  height: 20px;
  background-color: rgba(88, 89, 91, 0.18);
}

.btn-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.35rem;
  color: var(--light);
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.05rem;
  margin: 0 0 0 1rem;
  border-radius: var(--radius-full);
  background-color: var(--primary);
}

.invert {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.m-n3 {
  margin: 0 0 0 -3rem;
}

.m-n2 {
  margin: -2rem 0 0 0;
}

.custom-width {
  width: 50rem;
  max-width: 90%;
}

.custom-width-2 {
  width: 60rem;
  max-width: 100%;
  margin: auto;
}

.custom-width-3 {
  width: 40vw;
  max-width: 90%;
}

.custom-width-4 {
  width: 60vw;
  max-width: 90%;
}

.custom-padding {
  padding: 8rem 0;
}

.btnPrimary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  text-transform: capitalize;
  background: var(--primary);
  padding: 0.75rem 2rem;
  border: none;
  cursor: pointer;
  color: var(--light);
  font-family: var(--AvenirLTStd-Heavy);
  font-weight: 800;
  border-radius: var(--radius-full);
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.btnPrimary.btnLight {
  background: transparent;
  border: 1px solid var(--primary);
  cursor: pointer;
  color: var(--primary);
  font-weight: 800;
}

.offcanvas {
  background: var(--light);
}

.offcanvas.offcanvas-end {
  width: 100%;
}

.offcanvas.offcanvas-end .offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.offcanvas-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.offcanvas-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.offcanvas-close {
  width: 100px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  border-radius: 100px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  -webkit-transform: translateY(4px) scale(0.95);
  -ms-transform: translateY(4px) scale(0.95);
  transform: translateY(4px) scale(0.95);
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.offcanvas-close i {
  font-size: 1.65rem;
}

.offcanvas-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.75rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 2rem 0 1rem 0;
}

.offcanvas-links .line {
  margin: auto auto;
  width: 100%;
  height: 1px;
  background-color: rgb(221 221 221);
}

.offcanvas-link {
  display: block;
  font-size: 2.5vw;
  font-weight: 600;
  font-family: var(--AvenirLTStd-Heavy);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--primary);
  text-transform: uppercase;
  position: relative;
  width: 100%;
}

.offcanvas-logo .logo-img {
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  width: 85px;
  max-width: 100%;
}

.section-heading {
  position: relative;
  z-index: 4;
}

.primary-light {
  background-color: var(--primary-bg-2);
}

.primary-dark {
  background-color: var(--primary-bg-3);
}

.section-heading .section-title {
  font-size: 3.75vw;
  color: var(--text-color-2);
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  font-family: var(--ScotchDisplay-Medium);
  transition: all 0.5s ease;
  text-transform: capitalize;
}

.section-heading .section-title-2 {
  font-size: 3vw;
  color: var(--primary);
  position: relative;
  top: -15px;
  font-weight: 700;
  font-family: var(--Aston_Script);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading .section-subtitle {
  font-size: 2.45vw;
  color: var(--primary);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading .section-desc {
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading .section-desc.light {
  color: var(--light);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.section-heading .section-more-desc {
  font-size: 1.25rem;
  color: var(--text-color);
  font-style: italic;
  font-weight: 700;
  display: block;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.custom-input {
  padding: 0.75rem 1rem;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: unset;
  color: var(--text-color);
  font-weight: 400;
  letter-spacing: 1.438px;
  font-size: var(--Avenir);
  font-weight: 400;
  border-radius: 0px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: transparent;
}

.custom-input.custom-input-2 {
  border-radius: 10px;
  padding: 0.95rem 1.25rem;
  border: none;
  background-color: rgba(86, 86, 86, 0.1);
}

.custom-input.custom-input-2::-webkit-input-placeholder {
  color: #727272;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.custom-input.custom-input-2::-moz-placeholder {
  color: #727272;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.custom-input.custom-input-2:-ms-input-placeholder {
  color: #727272;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.custom-input.custom-input-2::-ms-input-placeholder {
  color: #727272;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.custom-input.custom-input-2::placeholder {
  color: #727272;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}

.custom-input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  border: 1px solid rgba(188, 32, 49, 0.5);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 0px 0px 2px var(--primary-pink);
  box-shadow: 0px 0px 0px 2px var(--primary-pink);
}

.custom-input::-webkit-input-placeholder {
  color: var(--text-color) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 1rem !important;
}

.custom-input::-moz-placeholder {
  color: var(--text-color) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 1rem !important;
}

.custom-input:-ms-input-placeholder {
  color: var(--text-color) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 1rem !important;
}

.custom-input::-ms-input-placeholder {
  color: var(--text-color) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 1rem !important;
}

.custom-input::placeholder {
  color: var(--text-color) !important;
  font-weight: 400 !important;
  text-transform: capitalize !important;
  font-size: 1rem !important;
}

.form-check-label {
  font-size: 0.95rem;
}

.custom-modal-content {
  position: relative;
  z-index: 1;
  padding: 1.25rem 0.5rem 0.5rem 0.5rem;
  background: var(--primary-bg-2);
  border: 2px solid var(--primary);
}

.custom-modal-content::before,
.custom-modal-content::after {
  position: absolute;
  content: "";
  width: 35%;
  -webkit-transform: scale(-1, -1);
  -ms-transform: scale(-1, -1);
  transform: scale(-1, -1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  height: 25%;
  top: 0;
  z-index: -1;
  left: 0;
  background: url("../assets/images/layers/flower.svg") no-repeat center
    center/cover;
}

.custom-modal-content::after {
  right: 0;
  left: unset;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  top: unset;
  z-index: -1;
  bottom: 0;
}

.modal-logo {
  width: 300px;
  max-width: 100%;
}

.modal-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal-close {
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.modal-close img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

section.main-banner {
  margin: 6rem 0 0 0;
  height: 80dvh;
  overflow: hidden;
}

.custom-slider {
  width: 100%;
  height: 100%;
}

.custom-slider .carousel-inner,
.custom-slider .carousel-inner .carousel-item {
  width: 100%;
  height: 100%;
}

.custom-slider .carousel-inner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

section.section-overview {
  width: 100%;
  overflow: hidden;
  z-index: 1;
  position: relative;
  padding: 12rem 0 9rem 0;
}

.overview-overlay {
  position: absolute;
  z-index: -1;
}

.overview-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.overview-overlay.start {
  top: 0;
  left: 0;
  width: 100%;
  height: 1.85rem;
}

.overview-overlay.start-2 {
  top: 3%;
  width: 15vw;
  left: 50%;
  -webkit-transform: translate(-50%, -0%);
  -ms-transform: translate(-50%, -0%);
  transform: translate(-50%, -0%);
}

.overview-overlay.left {
  top: 5%;
  left: 1%;
  width: 8vw;
}

.overview-overlay.right {
  top: 5%;
  right: 1%;
  width: 8vw;
}

.overview-overlay.bottom {
  left: 0%;
  bottom: 1%;
  width: 100%;
}

.overview-img {
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: var(--radius-2);
  overflow: hidden;
}

.overview-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.overview-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 3rem 0 0 0;
}

section.section-amenities {
  width: 100%;
  overflow: hidden;
  z-index: 1;
  position: relative;
  padding: 6rem 0 8rem 0;
}

.ame-overlay {
  position: absolute;
  z-index: -1;
}

.ame-overlay.right {
  top: 6%;
  right: 2%;
  width: 7vw;
}

.ame-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ame-overlay-left {
  bottom: 5%;
  left: 1%;
  width: 8vw;
}

.ame-overlay-right {
  bottom: 5%;
  right: 1%;
  width: 8vw;
}

.ame-overlay.end {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.85rem;
}

.ame-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 3rem 0 2rem 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  gap: 1rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-transition: all 0.45s ease;
  -o-transition: all 0.45s ease;
  padding: 0 0 0.5rem 0;
  transition: all 0.45s ease;
}

/* Custom scrollbar for Chrome, Edge, Safari */
.ame-tabs::-webkit-scrollbar {
  height: 6px; /* Height for horizontal scrollbar */
}

.ame-tabs::-webkit-scrollbar-track {
  background: #e0e0e0; /* Track color */
  border-radius: 50px;
}

.ame-tabs::-webkit-scrollbar-thumb {
  background: var(--primary); /* Scrollbar thumb color */
  border-radius: 50px;
}

.ame-tabs::-webkit-scrollbar-thumb:hover {
  background: #0a72aa; /* Hover color */
}

/* For Firefox */
.ame-tabs {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) #e0e0e0;
}

.ame-tabs .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* width: calc(100% / 4); */
  width: 100%;
}

.nav-item .btn-ame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  outline: none;
  font-weight: 500;
  font-size: 0.9rem;
  text-wrap: nowrap;
  padding: 0.85rem 0.5rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.27);
  border-radius: var(--radius-full);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--brown);
  border: 1px solid var(--brown);
}

.nav-item .btn-ame.active {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: var(--primary);
  color: var(--light);
}

.amenities-content {
  display: -ms-grid;
  display: grid;
  margin: 2.5rem 1rem auto 1rem;
  /* -ms-grid-columns: (1fr) [6]; */
  grid-template-columns: repeat(3, 1fr);
}

.amenities-content .amenities-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.amenities-item .amenities-icon {
  width: 75px;
  height: 75px;
}

.amenities-item .amenities-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.amenities-item .amenities-txt {
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-color);
}

.amenities-item:nth-child(3n) {
  border-right: none;
}

/* Remove bottom border from items in the last row (7 to 12) */
.amenities-item:nth-child(n + 7) {
  border-bottom: none;
}

.amenities-swiper .swiper-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: unset;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 2rem 0;
}

.amenities-carousel-container .amenities-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
}

section.section-edition {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 4rem 0 6rem 0;
}

.edition-overlay {
  position: absolute;
}

.edition-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.edition-overlay.left-top {
  width: 8vw;
  top: -3%;
  left: 0;
  z-index: -1;
}

.edition-overlay.right-top {
  width: 8vw;
  top: -3%;
  right: 0;
  z-index: -1;
}

.edition-overlay.left-down {
  left: 0%;
  bottom: 0;
  z-index: -1;
}

.edition-overlay.right-down {
  right: 0%;
  bottom: 0;
  z-index: -1;
}

.edition-container {
  margin: 5rem auto auto auto;
}

.edition-content {
  border-radius: 20px;
  padding: 2rem 1rem;
  border: 1px solid var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  gap: 1rem;
}

.edition-title {
  font-family: var(--ScotchDisplay-SemiBold);
  font-size: 1.25vw;
  font-weight: 600;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--text-color-2);
}

.edition-subtitle {
  font-family: var(--Avenir);
  color: rgba(57, 57, 57, 1);
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 0.9vw;
}

.edition-img {
  width: 100%;
  border: 2px solid var(--primary);
  border-radius: var(--radius-2);
  height: 100%;
  overflow: hidden;
}

.edition-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

section.section-master {
  padding: 8rem 0 4rem 0;
  position: relative;
}

.master-overlay {
  position: absolute;
}

.master-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.master-overlay.master-overlay-1 {
  top: 0;
  left: 0;
  width: 2%;
}

.master-overlay.master-overlay-2 {
  top: 0;
  right: 0;
  width: 2%;
}

.master-overlay.master-overlay-3 {
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 22vw;
}

.config-nav {
  width: 100%;
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--light);
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
}

.config-nav .nav-item {
  width: 100%;
}

.config-nav .nav-pills {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  width: 100%;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: var(--primary) #e0e0e0;
}

.config-nav .nav-pills::-webkit-scrollbar {
  height: 8px;
  border-radius: var(--radius-full);
}

.config-nav .nav-pills::-webkit-scrollbar-track {
  background: red; /* track color */
  border-radius: 10px;
}

.config-nav .nav-pills::-webkit-scrollbar-thumb {
  background-color: green; /* scrollbar color */
  border-radius: 10px;
}

.config-nav .nav-pills .nav-item .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0.5;
  width: 100%;
}

.config-nav .nav-pills .nav-item .nav-link.active {
  opacity: 1;
  background: transparent;
}

.config-nav .nav-pills .nav-item .nav-link strong {
  color: var(--brown);
  font-weight: 800;
  font-size: 1.5vw;
  font-family: var(--AvenirLTStd-Heavy);
}

.config-nav .nav-pills .nav-item .nav-link span {
  color: var(--brown);
  font-weight: 400;
  font-size: 1vw;
}

.config-nav .nav-pills .line {
  width: 100%;
  height: 1px;
  background-color: rgba(88, 88, 88, 0.18);
}

.config-swiper-container,
.config-swiper-container .config-swiper {
  height: 100%;
}

.config-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-1);
  overflow: hidden;
  position: relative;
}

.config-txt {
  font-size: 1.35rem;
  margin: 1rem 0 0 0;
  text-align: center;
  font-weight: 900;
  font-family: var(--ScotchDisplay-Bold);
}

.config-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.config-img img.blur {
  background: rgba(255, 255, 255, 0.01);
  -webkit-filter: blur(6px);
  filter: blur(6px);
}

.btn-play-div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2;
}

.btn-lock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: var(--radius-full);
  gap: 0.25rem;
  padding: 0.65rem 1.75rem;
  color: var(--light);
  border: none;
  background-color: var(--primary);
}

.btn-lock .icon {
  width: 30px;
  height: 30px;
}

.btn-lock .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.btn-lock .txt {
  font-size: 1.175rem;
  font-family: var(--AvenirLTStd-Heavy);
  font-weight: 800;
  white-space: nowrap;
}

.swiper-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1.5rem auto auto auto;
  gap: 1.75rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.swiper-nav .swiper-button {
  width: 5rem;
}

.swiper-nav .swiper-button img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

section.section-vision {
  width: 100%;
  height: 110dvh;
  position: relative;
}

section.section-vision::after {
  position: absolute;
  content: "";
  width: 100%;
  inset: 0;
  height: 100%;
  background: -webkit-gradient(
      linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.2)),
      to(rgba(0, 0, 0, 0.2))
    ),
    -webkit-gradient(linear, left top, left bottom, color-stop(28.89%, rgba(0, 0, 0, 0)), color-stop(110.74%, rgba(0, 0, 0, 0.7)));
  background: -o-linear-gradient(
      bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    -o-linear-gradient(top, rgba(0, 0, 0, 0) 28.89%, rgba(0, 0, 0, 0.7) 110.74%);
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.2) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 28.89%, rgba(0, 0, 0, 0.7) 110.74%);
}

.video-container {
  width: 100%;
  height: 100%;
}

.video-container video::-webkit-media-controls,
.video-container video::-webkit-media-controls-panel,
.video-container video::-webkit-media-controls-play-button,
.video-container video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.video-title {
  width: 35vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video-title .video-title-1 {
  font-size: 4vw;
  color: var(--light);
  text-align: start;
  font-family: var(--ScotchDisplay-Medium);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.video-title .video-title-2 {
  font-size: 2.5vw;
  position: relative;
  margin: -25px 0 0 0;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--primary);
  text-align: end;
  font-family: var(--Aston_Script);
}

section.section-location {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

section.section-location::after {
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #f8f2ec;
  background: -o-linear-gradient(
    8deg,
    rgba(248, 242, 236, 1) 54%,
    rgba(251, 249, 246, 0.21) 70%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    82deg,
    rgba(248, 242, 236, 1) 54%,
    rgba(251, 249, 246, 0.21) 70%,
    rgba(255, 255, 255, 0) 100%
  );
}

.location-overlay {
  position: absolute;
  top: 0;
  width: 10vw;
  z-index: -1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  left: 0;
}

.location-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.map-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.map-container img,
.map-container iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.location-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 3rem 0 0 0;
  gap: 1.75rem 1.5rem;
}

.btn-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  border: none;
  outline: none;
  font-weight: 500;
  font-size: 1.075rem;
  padding: 1rem 1.85rem;
  background: rgba(255, 255, 255, 0.27);
  border-radius: var(--radius-full);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--brown);
  border: 1px solid var(--brown);
}

.btn-location.active {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: var(--primary);
  color: var(--light);
}

.btn-location.active .icon svg path {
  fill: #fff;
}

.location-modal-title {
  width: 35vw;
}

.location-modal-title .location-modal-title-1 {
  font-family: var(--ScotchDisplay-Medium);
  font-weight: 500;
  color: var(--brown);
  text-align: start;
  font-size: 3.5vw;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.location-modal-title .location-modal-title-2 {
  font-family: var(--Aston_Script);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.5rem;
  font-size: 2.5vw;
  text-align: end;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.location-content {
  border-radius: 14px;
  border: 5px solid rgba(188, 144, 81, 0.18);
  background: #fbf9f7;
  overflow: hidden;
  position: relative;
}

.location-content .modal-body {
  padding: 2rem;
}

.btn-location-close {
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
  position: absolute;
  right: 2%;
  top: 3%;
  z-index: 5;
}

.location-swiper-content {
  border-radius: var(--radius-2);
  overflow: hidden;
  border: 5px solid rgba(188, 144, 81, 0.18);
  background: #fbf9f7;
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
  margin: 3.75rem 0 0 0;
}

.location-swiper-content .location-img {
  width: 100%;
  height: 35dvh;
}

.location-swiper-content .location-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.location-swiper-content .location-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.5rem 1rem;
  gap: 1rem;
  height: 15dvh;
}

.location-swiper-content .location-txt .location-title {
  font-family: var(--ScotchDisplay-Medium);
  font-weight: 600;
  font-size: 1.25vw;
  color: var(--brown);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.location-swiper-content .location-txt .location-dist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  background-color: rgba(193, 149, 85, 1);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  color: var(--light);
  font-weight: 800;
  font-size: 1vw;
  text-transform: capitalize;
}

.location-swiper-content .location-txt .location-dist .txt {
  font-weight: 800;
  text-transform: capitalize;
  font-family: var(--AvenirLTStd-Heavy);
}

.location-swiper .swiper-wrapper {
  margin: 0 0 3rem 0;
}

.location-swiper .swiper-scrollbar {
  background: rgba(134, 102, 81, 0.14) !important;
}

.location-swiper .swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 8px !important;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.location-swiper .swiper-scrollbar-drag {
  background: rgba(193, 149, 85, 1) !important;
}

section.section-architect {
  padding: 10rem 0 4rem 0;
  position: relative;
  z-index: 1;
}

.architect-overlay {
  position: absolute;
  z-index: -1;
}

.architect-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.architect-overlay.architect-overlay-top {
  top: 0;
  left: 0;
}

.architect-overlay.architect-overlay-middle {
  top: 2%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 22vw;
}

.architect-overlay.architect-overlay-left {
  top: 5%;
  left: 1%;
}

.architect-overlay.architect-overlay-right {
  top: 5%;
  right: 1%;
}

.architect-overlay.architect-overlay-bottom {
  left: 0;
  bottom: 0;
}

.gallery-swiper-container {
  margin: 4rem 0;
}

.gallery-swiper .swiper-wrapper {
  margin: 0 0 3.5rem 0;
}

.gallery-img {
  width: 100%;
  height: 54dvh;
  border-radius: var(--radius-2);
  overflow: hidden;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery-swiper-container {
  position: relative;
}

.gallery-swiper-container .swiper-nav,
.construction-swiper-container .swiper-nav {
  width: 100%;
  z-index: 2;
  position: absolute;
  top: 48%;
}

.gallery-swiper-container .swiper-nav .swiper-button,
.construction-swiper-container .swiper-nav .swiper-button {
  width: 5rem;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.gallery-swiper-container .swiper-nav .swiper-button-prev-3 {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  left: -40px;
}

.gallery-swiper-container .swiper-nav .swiper-button-next-3 {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  right: -40px;
}

.gallery-swiper .swiper-scrollbar {
  background: #fbf9f7 !important;
}

.gallery-swiper .swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 8px !important;
}

.gallery-swiper .swiper-scrollbar-drag {
  background: rgba(193, 149, 85, 1) !important;
}

section.section-construction {
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.construction-overlay {
  position: absolute;
  z-index: -1;
  width: 5%;
}

.construction-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.construction-overlay.construction-overlay-1 {
  left: 0;
  top: 30%;
}

.construction-overlay.construction-overlay-2 {
  right: 0;
  top: 40%;
}

.construction-swiper-container {
  margin: 4rem 0 0 0;
}

.construction-img {
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-1);
  overflow: hidden;
}

.construction-img::after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.2)),
    to(rgba(0, 0, 0, 0.2))
  );
  background: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.construction-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.construction-txt {
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  text-wrap: nowrap;
  z-index: 2;
  bottom: 2%;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-full);
  background: var(--light);
  color: var(--dark);
}

.construction-swiper-container .swiper-nav {
  width: 100%;
  z-index: 2;
  position: absolute;
  top: 50%;
}

.construction-swiper-container .swiper-nav .swiper-button {
  width: 5rem;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.construction-swiper-container .swiper-nav .swiper-button-prev-4 {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  left: 0;
}

.construction-swiper-container .swiper-nav .swiper-button-next-4 {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  right: 0;
}

section.section-about {
  padding: 5rem 0 9rem 0;
  position: relative;
  z-index: 1;
}

section.section-about::after {
  position: absolute;
  content: "";
  bottom: 8%;
  right: 0%;
  z-index: -1;
  width: 12rem;
  height: 12rem;
  background: url("../assets/images/layers/men.svg") no-repeat center
    center/contain;
}

.about-overlay {
  position: absolute;
  z-index: -1;
}

.about-overlay img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-overlay-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 1.85rem;
}

.about-overlay-start-2 {
  top: 3%;
  width: 22vw;
  left: 50%;
  -webkit-transform: translate(-50%, -0%);
  -ms-transform: translate(-50%, -0%);
  transform: translate(-50%, -0%);
}

.about-overlay-left {
  top: 5%;
  left: 1%;
  width: 8vw;
}

.about-overlay-right {
  top: 5%;
  right: 1%;
  width: 8vw;
}

.about-overlay-bottom {
  bottom: 3%;
  left: 0;
}

.about-img {
  width: 100%;
  height: 100%;
}

.about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 1rem;
  margin: 1rem 0 0 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-content .line {
  width: 1px;
  height: 7dvh;
  background-color: rgba(88, 88, 88, 0.25);
}

.about-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-count .aboutno {
  color: var(--primary);
  font-family: var(--ScotchDisplay-SemiBold);
  font-size: 2vw;
  font-weight: 600;
}

.about-count .about-txt {
  text-align: center;
  font-family: var(--Avenir);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-color);
}

.about-contact {
  background: var(--light);
  padding: 6rem 4rem;
  border-radius: var(--radius-2);
  margin: 0 auto;
  width: 70vw;
  max-width: 100%;
}

.btn-form {
  background-color: var(--primary);
  color: var(--light);
  border: none;
  border-radius: var(--radius-1);
  padding: 0.85rem 2rem;
  font-size: 1.15rem;
  font-family: var(--Avenir);
  font-weight: 500;
}

section.section-contact {
  padding: 0 0 3rem 0;
}

/* ***********FAQ sarts here****** */
section.section-faq {
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 0 0 4rem 0;
}

section.section-faq::after {
  position: absolute;
  content: "";
  background: url("../assets/images/layers/men2.svg") no-repeat center
    center/contain;
  width: 14rem;
  height: 14rem;
  z-index: -1;
  top: 20%;
  left: 1%;
}

.faq-accordian {
  width: 60rem;
  margin: 3rem auto auto auto;
  max-width: 90%;
}

.faq-accordian .accordion-item {
  border: 1px solid var(--primary);
  border-radius: 10px;
  background-color: transparent;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-accordian .accordion-button {
  background-color: transparent;
  color: var(--polish-gray);
  padding: 1rem;
  font-weight: 500;
  font-size: 1.2rem;
  border: none;
  -webkit-box-shadow: unset !important;
  box-shadow: unset !important;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.faq-accordian .accordion-button:focus {
  -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
}

.faq-accordian .accordion-button:not(.collapsed),
.faq-accordian
  .accordion-button:not(.collapsed)
  + .accordion-collapse
  .accordion-body {
  background-color: rgba(251, 249, 247, 0.5) !important;
  color: var(--brown) !important;
}

.faq-accordian .accordion-button:not(.collapsed)::after {
  background-image: url("../assets/images/icons/drop-active.svg") !important;
  width: 45px;
  height: 45px;
  background-size: cover;
}

.faq-accordian .accordion-button::after {
  background-image: url("../assets/images/icons/drop.svg") !important;
  width: 45px;
  height: 45px;
  background-size: cover;
}

.faq-accordian .accordion-item:not(:first-of-type) {
  border-top: 1px solid var(--primary) !important;
}

.accordion-body {
  background-color: rgba(251, 249, 247, 0.5) !important;
  color: var(--polish-gray);
  font-size: 1rem;
  padding: 0.15rem 1rem 1rem 1.25rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.modal-data {
  display: none;
}

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

/* ***********FAQ ends here****** */

footer {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem 1rem 1.5rem;
}

footer::before {
  position: absolute;
  content: "";
  left: 0;
  z-index: -1;
  bottom: 0;
  width: 50px;
  height: 100%;
  background: url("../assets/images/layers/footer1.png") no-repeat bottom
    center/cover;
}

footer::after {
  position: absolute;
  content: "";
  right: 0;
  width: 50px;
  height: 100%;
  z-index: -1;
  bottom: 0;
  background: url("../assets/images/layers/footer2.png") no-repeat bottom
    center/cover;
}

.footer-container {
  margin: 4rem auto auto auto;
  width: 50rem;
  max-width: 95%;
}

.footer-logo {
  width: 10rem;
  margin: auto;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 0;
}

.created {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.created a {
  color: var(--dark);
  opacity: 0.9;
  -webkit-text-decoration: underline 1px solid #817b7b;
  text-decoration: underline 1px solid #817b7b;
  text-underline-offset: 6px;
}

.fixed-button {
  position: fixed;
  top: 50%;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  right: 0;
  z-index: 999;
  background-color: transparent;
  -webkit-transform: translate(65px, -50%) rotate(270deg);
  -ms-transform: translate(65px, -50%) rotate(270deg);
  transform: translate(65px, -50%) rotate(270deg);
}

.btn-fixed {
  padding: 0.65rem 1rem 0.65rem 1rem;
  font-size: 0.925rem;
  color: #1a4427;
  border-radius: 16px 16px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  border: none;
  color: var(--light);
  background-color: var(--primary);
}
/* thank you css */

section.section-thankyou {
  height: 85vh;
  max-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.thankyou-title {
  text-align: center;
  font-family: var(--Montserrat);
  margin: 0.35rem 0 0 0;
  font-weight: 500;
}

.thankyou-subtitle {
  text-align: center;
  font-family: var(--Montserrat);
  font-weight: 400;
  text-wrap: balance;
  opacity: 0.85;
  margin: 0.5rem 0 0 0;
}

.go_txt {
  font-size: 15px;
  color: #000;
  color: var(--light);
  background-color: var(--secondary) !important;
  border-radius: 3.125rem;
  font-family: var(--Montserrat);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 30px;
  margin: 15px auto 0;
}

.secondary {
  background-color: var(--primary);
}

/*********** media query *********/

@media only screen and (max-width: 1700px) {
  .navbar-container {
    padding: 0.75rem 5rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }
}

@media only screen and (max-width: 1400px) {
  .navbar-container {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    padding: 0.65rem 2rem;
  }

  .custom-container {
    width: 90vw;
    max-width: 90%;
    margin: auto;
  }

  .master-overlay.master-overlay-1,
  .master-overlay.master-overlay-2 {
    width: 2.5%;
  }
}

@media only screen and (max-width: 1200px) {
  .navbar-container {
    padding: 0.5rem 2rem;
  }

  .logo-img {
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
    width: 5rem;
  }

  .navLinks {
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    gap: 1rem;
  }

  .menu {
    display: block;
  }

  .navLinks {
    display: none;
  }

  .custom-visible {
    display: none;
  }

  .custom-container-2 {
    width: 95%;
  }

  .master-overlay.master-overlay-1,
  .master-overlay.master-overlay-2 {
    width: 3%;
  }

  .construction-overlay {
    width: 7%;
  }

  section.section-about::after {
    width: 8rem;
    height: 8rem;
  }
}

@media only screen and (max-width: 1080px) {
  .navbar-container {
    padding: 0.45rem 2rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }
}

@media only screen and (max-width: 991px) {
  .section-heading .section-title {
    font-size: 7.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-title-2 {
    font-size: 7vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading.custom-size .section-title {
    font-size: 6vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading.custom-size .section-title-2 {
    font-size: 5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .custom-width-3 {
    width: 70vw;
    max-width: 80%;
  }

  .logo-img {
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
    width: 4rem;
  }

  .offcanvas-link {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  section.main-banner {
    margin: 5rem 0 0 0;
  }

  section.section-overview {
    padding: 12rem 0 6rem 0;
  }

  .overview-overlay.start {
    height: 1.5rem;
  }

  .overview-overlay.start-2 {
    top: 1%;
    width: 18vw;
  }

  .overview-overlay.left,
  .overview-overlay.right {
    top: 4%;
    width: 10vw;
  }

  section.section-edition {
    padding: 6rem 0;
  }

  section.section-amenities {
    padding: 6rem 0;
  }

  .edition-overlay.left-top,
  .edition-overlay.right-top {
    width: 15vw;
    top: -1%;
  }

  .edition-title {
    font-size: 2.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .edition-subtitle {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 2vw;
  }

  .custom-container-2,
  .custom-container-2.custom-margin {
    width: 90%;
    margin: auto;
  }

  .config-nav {
    width: 100%;
    padding: 1.75rem;
    height: auto;
    border-radius: var(--radius-full);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: var(--light);
    -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.05);
  }

  .config-img {
    height: 50dvh;
  }

  .master-overlay.master-overlay-1,
  .master-overlay.master-overlay-2 {
    width: 4%;
  }

  .config-nav .nav-pills {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2rem;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
  }

  .config-nav .nav-pills .line {
    display: none;
  }

  .config-nav .nav-pills .nav-item .nav-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 1;
    background-color: var(--primary-bg-2);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
  }

  .config-nav .nav-pills .nav-item .nav-link span {
    display: none;
  }

  .config-nav .nav-pills .nav-item .nav-link.active {
    background-color: var(--brown);
    color: var(--light) !important;
  }

  .config-nav .nav-pills .nav-item .nav-link strong {
    color: var(--brown);
    font-size: 2vw;
  }

  .config-nav .nav-pills .nav-item .nav-link.active strong {
    color: var(--light) !important;
  }

  section.section-vision {
    height: 80dvh;
  }

  .video-title {
    width: 35vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .video-title .video-title-1 {
    font-size: 5.75vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .video-title .video-title-2 {
    font-size: 4vw;
  }

  section.section-location::after {
    content: "";
    inset: 0;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: transparent;
  }

  .location-content .modal-body {
    padding: 1rem;
  }

  .location-modal-title {
    width: 40vw;
  }

  .location-modal-title .location-modal-title-1 {
    font-size: 4vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .location-modal-title .location-modal-title-2 {
    font-size: 3vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .location-swiper-content .location-txt .location-title {
    font-size: 2vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .location-swiper-content .location-txt .location-dist {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 1.5vw;
  }

  .custom-padding {
    padding: 6rem 0 1rem 0;
  }

  .location-overlay {
    width: 13vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .architect-overlay.architect-overlay-top {
    height: 1.65rem;
  }

  .architect-overlay.architect-overlay-middle {
    width: 35vw;
  }

  .architect-overlay.architect-overlay-left,
  .architect-overlay.architect-overlay-right {
    top: 7%;
    width: 14vw;
  }

  .gallery-swiper-container {
    margin: 2rem 0;
  }

  .amenities-swiper .swiper-nav {
    margin: 1.5rem 0 3rem 0;
  }

  .amenities-swiper .swiper-horizontal > .swiper-scrollbar,
  .swiper-scrollbar.swiper-scrollbar-horizontal {
    height: 6px !important;
  }

  .amenities-swiper .swiper-scrollbar-drag {
    background: var(--primary);
  }

  .custom-width-4 {
    width: 90%;
    max-width: 100%;
  }

  .construction-overlay {
    width: 10%;
  }

  .accordion-button {
    font-size: 1rem;
  }

  .accordion-body {
    font-size: 0.96rem;
  }

  .about-content {
    margin: 2rem 0 0 0;
  }

  .about-count .aboutno {
    font-size: 3.75vw;
  }

  .about-overlay-top {
    height: 1.5rem;
  }

  .about-overlay-start-2 {
    top: 1.45%;
    width: 35vw;
  }

  .about-overlay-left,
  .about-overlay-right {
    top: 3%;
    width: 10vw;
  }

  section.section-about::after {
    width: 6rem;
    height: 6rem;
  }

  section.section-faq::after {
    width: 10rem;
    height: 10rem;
    top: 7%;
    left: 1%;
  }

  section.section-location {
    padding: 0 0 2rem 0;
  }

  .map-container {
    width: 100%;
    height: 50dvh;
  }
}

@media only screen and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 8vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .section-heading .section-title-2 {
    font-size: 6.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    top: -8px;
    transition: all 0.5s ease;
  }

  .custom-width-3 {
    width: 80vw;
    max-width: 80%;
  }

  .overview-overlay.start {
    height: 1.25rem;
  }

  .overview-overlay.start-2 {
    width: 25vw;
  }

  .overview-overlay.left,
  .overview-overlay.right {
    top: 4%;
    width: 14vw;
  }

  .edition-title {
    font-size: 4vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .edition-subtitle {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 3vw;
  }

  .master-overlay.master-overlay-1,
  .master-overlay.master-overlay-2 {
    width: 5%;
  }

  .config-nav {
    padding: 1rem;
  }

  .config-nav .nav-pills {
    gap: 1.5rem;
  }

  .config-nav .nav-pills .nav-item .nav-link strong {
    font-size: 2.25vw;
  }

  .location-modal-title {
    width: 52vw;
  }

  .location-modal-title .location-modal-title-1 {
    font-size: 5.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .location-modal-title .location-modal-title-2 {
    font-size: 4.25vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .location-swiper-content .location-txt .location-title {
    font-size: 2.65vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .location-swiper-content .location-txt .location-dist {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 2vw;
  }

  .location-overlay {
    width: 15vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  section.section-vision {
    height: 70dvh;
  }

  section.section-architect {
    padding: 6rem 0 4rem 0;
  }

  .architect-overlay.architect-overlay-middle {
    top: 2%;
    width: 38vw;
  }

  .architect-overlay.architect-overlay-left,
  .architect-overlay.architect-overlay-right {
    top: 5%;
    width: 18vw;
  }

  .gallery-swiper-container .swiper-nav .swiper-button,
  .construction-swiper-container .swiper-nav .swiper-button {
    width: 4rem;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }

  .gallery-swiper-container .swiper-nav .swiper-button-prev-3 {
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    left: 4%;
  }

  .gallery-swiper-container .swiper-nav .swiper-button-next-3 {
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    right: 4%;
  }

  .construction-overlay {
    width: 12%;
  }

  .about-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .about-count .aboutno {
    font-size: 4.5vw;
  }

  .about-overlay-start-2 {
    top: 0.85%;
    width: 35vw;
  }

  footer::before,
  footer::after {
    height: 90%;
  }
}

@media only screen and (max-width: 576px) {
  .navbar-container {
    padding: 0.5rem 1rem;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }

  .logo-img {
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
    width: 3.5rem;
  }

  section.main-banner {
    margin: 4.5rem 0 0 0;
  }

  .offcanvas-link {
    font-size: 4vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .offcanvas-close {
    width: 40px;
    height: 40px;
  }

  .overview-overlay.start-2 {
    width: 40vw;
  }

  .overview-overlay.left,
  .overview-overlay.right {
    top: 3%;
    width: 18vw;
  }

  .edition-overlay.left-top,
  .edition-overlay.right-top {
    width: 20vw;
    top: -1%;
  }

  .edition-title {
    font-size: 5.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .edition-subtitle {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 4.25vw;
  }

  .ame-overlay.right {
    top: 3%;
    right: 3%;
    width: 11vw;
  }

  .nav-item .btn-ame {
    font-size: 1rem;
    padding: 0.65rem 1rem;
  }

  .master-overlay.master-overlay-1,
  .master-overlay.master-overlay-2 {
    width: 7%;
  }

  .config-nav .nav-pills .nav-item .nav-link strong {
    font-size: 3vw;
  }

  .about-count .aboutno {
    font-size: 6vw;
  }

  section.section-vision {
    height: 60dvh;
  }

  .video-title {
    width: 85vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .video-title .video-title-1 {
    font-size: 9vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .video-title .video-title-2 {
    font-size: 5.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    margin: -15px 0 0 0;
  }

  .location-modal-title {
    width: 60vw;
  }

  .location-modal-title .location-modal-title-1 {
    font-size: 6.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .location-modal-title .location-modal-title-2 {
    font-size: 5.5vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .location-swiper-content .location-txt .location-title {
    font-size: 3.65vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .location-swiper-content .location-txt .location-dist {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 2.75vw;
  }

  .location-overlay {
    width: 20vw;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }

  .btn-location {
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  section.section-architect {
    padding: 6rem 0 2rem 0;
  }

  .architect-overlay.architect-overlay-middle {
    top: 2.75%;
    width: 45vw;
  }

  .gallery-swiper-container .swiper-nav .swiper-button {
    width: 3.75rem;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }

  .gallery-swiper-container .swiper-nav .swiper-button-prev-3 {
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    left: -15px;
  }

  .gallery-swiper-container .swiper-nav .swiper-button-next-3 {
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    right: -15px;
  }

  section.section-about {
    padding: 3rem 0 4rem 0;
  }

  .about-contact {
    padding: 3rem 2rem;
    /* margin: 2rem auto 8rem auto; */
    width: 100%;
  }

  .about-content {
    display: -ms-grid;
    display: grid;
    -ms-flex-wrap: unset;
    flex-wrap: unset;
    justify-items: center;
    grid-template-columns: repeat(3, 1fr);
  }

  .about-overlay-start-2 {
    top: 1%;
    width: 45vw;
  }

  .about-overlay-left,
  .about-overlay-right {
    top: 2%;
    width: 15vw;
  }

  section.section-about::after {
    width: 5rem;
    height: 5rem;
    bottom: 4%;
  }

  .faq-accordian {
    width: 100%;
  }

  .faq-accordian .accordion-button {
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .faq-accordian .accordion-button:not(.collapsed)::after {
    width: 35px;
    height: 35px;
  }

  .faq-accordian .accordion-button::after {
    width: 35px;
    height: 35px;
  }

  .accordion-body {
    font-size: 0.875rem;
  }

  section.section-faq::after {
    width: 8rem;
    height: 8rem;
    top: 7%;
    left: 0%;
  }

  footer::before,
  footer::after {
    height: 70%;
  }

  .footer-copyright {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .fixed-button {
    top: 50%;
    -webkit-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
  }
}

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

@media only screen and (max-width: 350px) {
  .nav-item .btn-ame {
    font-size: 0.9rem;
    padding: 0.5rem 0.7rem;
  }
}

@media (min-width: 992px) {
    #mainModalPopup .modal-lg, .modal-xl {
        --bs-modal-width: 400px !important;
    }
} 

#locationModal .modal-lg, .modal-xl
{
    --bs-modal-width: 1100px !important;
}

/* Whatsapp */

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
  left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
@media only screen and (max-width: 600px) {
	.float{
		bottom:70px;
}
}
/*End Whatsapp*/