@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Cinzel:wght@400..900&display=swap');

/* @import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&family=Cinzel:wght@400..900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Marcellus&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Roboto+Condensed:wght@100..900&display=swap'); */
:root {
  --primary-color: #c4aa8e;
  --secondary-color: #fffffc;
  --golden-color: #a8853b;
  /* --secondary-dark-color: #d2a276;
  --secondary-light-color: #faf0e2; */
  /* --third-color: #15434b; */
  /* --third-color: #1e2b6b; */
  --dark-color: #0d2828;
  --light-color: #fffbf5;
  --body-color: #231f20;
  --facebook: #4267B2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #FF0000;
  --whatsapp: #25D366;
  --instagram: #c92bb7;
  --serif: 'Cinzel', serif;
  --primary-gradient: linear-gradient(45deg, var(--primary-color), #f0deca, var(--primary-color));
  --footer-height: 425px;
  --primary-radius: 10px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--body-color);
  background: url(../images/background.jpg) var(--secondary-color);
  font: 400 1.125rem 'Cinzel', serif;
  overflow-x: hidden;
}

svg:not([fill]) {
  fill: currentColor;
  stroke: currentColor;
}

.mx-n3 {
  margin-left: -1rem;
  margin-right: -1rem;
}

hr {
  border-top-color: var(--secondary-color);
}

p {
  line-height: 1.5;
}

.padding {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

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

a,
a:hover {
  text-decoration: none;
}

a {
  color: inherit;
  line-height: inherit;
  outline: 0;
  transition: color .25s;
}

a:hover {
  color: var(--primary-color);
}

p a {
  font-style: italic;
  font-weight: 300;
  text-decoration: underline;
}

.bg-primary a,
.bg-dark a {
  color: #fff;
}

.bg-primary a:hover,
.bg-dark a:hover {
  color: var(--light-color);
}

img,
video,
iframe {
  width: 100%;
  display: block;
}

.gap-row {
  row-gap: 30px;
}

.gap-row-sm {
  row-gap: 10px;
}

.object-cover {
  object-fit: cover;
}

.container-fluid {
  padding-left: 2rem;
  padding-right: 2rem;
}

.rounded {
  border-radius: 5px !important;
}

.filter-white {
  -ms-filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0);
  filter: grayscale(1) brightness(0);
}

main {
  position: relative;
  background: url(../images/background.jpg) var(--secondary-color);
  /* margin-bottom: var(--footer-height); */
  box-shadow: 0px 1rem 3rem rgb(0 0 0 / 70%);
  z-index: 2;
}

/*header*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  transition: all 300ms ease-in-out;
}

.header.fixed {
  background-color: var(--secondary-color);
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

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

.logo {
  padding: 10px 0;
  min-height: 1px;
  transition: all 300ms ease-in-out;
  z-index: 2;
}

.logo a {
  display: block;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--body-color);
  font-weight: 500;
  overflow: hidden;
  width: 200px;
  transition: all 300ms ease-in-out;
}

.header.fixed .logo a {
  width: 120px;
}

.header nav {
  column-gap: 20px;
}

.topLinks,
.menu {
  display: flex;
  align-items: center;
  position: relative;
}

.topLinks {
  column-gap: .5rem;
  background-color: var(--secondary-color);
  border-radius: 50px;
  background-image: linear-gradient(45deg, var(--primary-color), #fffaf4, var(--primary-color));
  box-shadow: inset 0.2em 0.2em 0.2em 0 rgba(255, 255, 255, 0.5), inset -0.2em -0.2em 0.2em 0 rgba(0, 0, 0, 0.5);
  padding: 10px;
  height: 100%;
  margin-top: 1rem;
  justify-content: center;
}

.topLinks li.topIcons a i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 0 0 50px var(--body-color) inset;
  color: var(--primary-color);
  transition: all 300ms ease-in-out;
}

.topLinks li.topIcons a:hover i {
  color: var(--body-color);
  box-shadow: 0 0 0 1px var(--body-color) inset;
}

.header .menu {
  gap: 1rem;
}

.header .menu a {
  color: var(--body-color);
  font: 600 1rem var(--serif);
  text-transform: uppercase;
}

.header .menu a:hover {
  color: var(--primary-color);
}

.header .menuBtn {
  width: 40px;
  height: 40px;
  padding: .5rem;
  border-radius: 50%;
  margin-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
  color: var(--light);
  background-color: transparent;
  box-shadow: 0 0 0 0px var(--primary-color) inset;
  border: 0;
  overflow: hidden;
}

.menuBtn .menuDots {
  width: 100%;
  display: flex;
  justify-content: space-around;
  position: relative;
  transition: all 0.3s linear;
}

.menuBtn .menuDots::before,
.menuBtn .menuDots::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--body-color);
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn:hover .menuDots::before,
.menuBtn:hover .menuDots::after {
  background-color: var(--body-color);
}

.menuBtn.closeMenuBtn {
  gap: 2px;
  box-shadow: 0 0 0 50px var(--primary-color) inset;
}

.menuBtn.closeMenuBtn .menuDots::before,
.menuBtn.closeMenuBtn .menuDots::after {
  height: 20px;
  width: 2px;
  border-radius: 0;
  background-color: var(--secondary-color);
}

.menuBtn.closeMenuBtn .menuDots::before {
  transform: translate(6px, 1px) rotate(45deg);
}

.menuBtn.closeMenuBtn .menuDots::after {
  transform: translate(-6px, 1px) rotate(-45deg);
}

.menuBtn.closeMenuBtn .menuDots#menuDot2 {
  display: none;
}

.menuContainer {
  position: fixed;
  inset: 0;
  z-index: 996;
  background-color: rgba(0, 75, 49, 0.13);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  display: none;
}

.menuContainer .mainMenu {
  position: relative;
  isolation: isolate;
  margin: 100px 10px 0 auto;
  padding: 2rem;
  width: 100%;
  max-width: 350px;
  border-radius: var(--primary-radius);
  overflow-y: auto;
  background-color: var(--primary-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%);
  transition: all 300ms ease-in-out;
}

.menuContainer .mainMenu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/logo-stroke-icon.svg) center bottom / 100% no-repeat;
  opacity: 0.125;
  z-index: -1;
}

/* .header.fixed + .menuContainer .mainMenu{
  padding-top: calc(1.5rem + 51px);
} */
.menuContainer .navi a {
  transition: all 300ms ease-in-out;
}

.mainMenu .navi li:not(:last-child) a {
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.mainMenu .navi a {
  padding: 10px 0;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 1.25rem;
  display: block;
  border-radius: var(--primary-radius);
  position: relative;
}

.mainMenu .navi li:hover>a {
  padding: 10px;
  background-color: #fff;
  color: var(--primary-color);
}

/*header*/
.banner {
  height: 100vh;
  position: relative;
  z-index: 1;
}

.banner .carousel-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(45deg, var(--primary-color), #fffaf4, var(--primary-color));
  opacity: 0.2;
  z-index: -1;
  pointer-events: none;
}

.bannerText {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.bannerText .h1 {
  font-size: 2.75rem;
  text-transform: uppercase;
  position: relative;
  padding: 1px 0;
}

.banner-location {
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 10px 1rem;
  gap: 5px;
  border-radius: 30px;
  background-image: var(--primary-gradient);
}

.scrollDown {
  margin: 1rem auto 0;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  z-index: 9;
}

.scrollDown:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/*  */
.bottom-art {
  /* position: absolute;
  inset: auto 0 0; */
  width: 100%;
  height: 70px;
  transform: translateY(6rem);
  background: url(../images/bottom-art.svg) center / contain repeat no-repeat;
  opacity: 0.5;
}

/*  */
/* Overview */
.aspire-logo {
  width: 250px;
  margin: 3rem auto;
}

.frame {
  aspect-ratio: 125/139;
  padding: 3.75rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/frame.jpg) center / contain no-repeat;
}

.frame .frame-text {
  display: block;
  font-size: 2.5rem;
}

.icons {
  margin: 40px 0;
  width: 100%;
}

.icons .iconBx {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  text-transform: uppercase;
}

.icons .iconBx:last-child {
  border-right-color: transparent;
  padding-right: 0rem;
  margin-right: 0rem;
}

.icons .iconBx img {
  width: 40px;
  margin-bottom: 15px;
}

.icons .iconBx p {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: center;
  margin-bottom: 0;
}

/* chapman-section */
.chapman-section {
  background-color: color-mix(in srgb, var(--secondary-color) 50%, var(--primary-color) 15%);
}

.chapman-section .designedby {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chapman-section .boxContent .img {
  width: 75%;
}

.chapman-section .boxContent img {
  width: 100%;
}

.chapman-section .designedby .qr {
  width: 85px;
}

.chapman-section .designedby .qr img {
  width: 100%;
}

.chapmanImg .img {
  position: relative;
}

.chapmanImg .abuDhabiImg {
  background-color: #fff;
  padding: 10px;
  position: absolute;
  right: 3rem;
  bottom: 10%;
}

.chapbtmbox .loca p {
  font-size: 14px;
}

/* Overview */
/* gallery */
.middle-controls {
  width: calc(var(--slide-width) + 5rem);
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.galBox.swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent, rgb(0 0 0 / 25%));
}

.facilityBox.swiper-slide.swiper-slide-active {
  /* transform: scale(1,1); */
}

.galBox img {
  aspect-ratio: 16/7;
  object-fit: cover;
}

.galBox .box-title {
  color: #fff;
  text-shadow: 2px 2px 1px #000;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: absolute;
  inset: auto 0 1rem;
  transition: all 300ms ease-in-out;
  opacity: 0;
}

.galBox .box-title .container-lg {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.galBox.swiper-slide.swiper-slide-active .box-title {
  opacity: 1;
}

.galBox .box-title:hover {
  color: var(--gray);
  border-bottom: 1px solid var(--primary-color);
}

.galBox .box-title i {
  transition: all 300ms ease-in-out;
}

.galBox .box-title:hover i {
  transform: scale(2, 2);
}

/* gallery */
/* amenities */
.amenity-imageBox {
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  color: #fff;
  transition: background-image 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 1;
}

.amenity-imageBox.fade-out {
  opacity: 0;
}

.amenity-imageBox.bg-image::before {
  background: linear-gradient(rgb(0 0 0 / 80%), transparent, rgb(0 0 0 / 80%));
}

/* .amenity-wrapper{
  aspect-ratio: 2/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
} */
.clubSlider {
  & .carousel-caption {
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: 50%;
    background-image: linear-gradient(transparent, rgb(0 0 0 / 50%));

    & h5 {
      font-family: var(--serif);
    }
  }
}

.clubAmenitiesBox {
  & .inner {
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 10%);

    & section:not(:last-child) {
      margin-bottom: 2rem;
    }
  }
}

.amenity-list {
  display: flex;
  flex-wrap: wrap;

  & li {
    flex-grow: 1;
    width: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 10px;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    font-size: 12px;
    text-transform: uppercase;

    & .imgBox {
      max-width: 24px;
    }
  }
}

.amenBox.swiper-slide {
  height: auto;
}

.amenBox .inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  margin-bottom: 0;
  padding: 1rem;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 15%);
  transition: all 300ms ease-in-out;
}

.amenBox.swiper-slide-active .inner,
.amenBox .inner:hover {
  border-color: #fff;
}

.amenBox .inner .img-fluid {
  max-width: 75px;
  flex: 0 0 75px;
  padding: 10px;
  transition: all 300ms ease-in-out;
}

.amenBox .inner span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Amenities */
/* location */
.connectivity {
  padding: 1rem;
  background-color: var(--secondary-color);
  margin-top: 1rem;
}

.connectivity-box .in {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.connectivity-box .in .img-fluid {
  max-width: 40px;
  flex: 0 0 40px;
}

.connectivity-box .in .h5 {
  margin-bottom: .25rem;
  font-family: var(--serif);
}

.mapBox {
  position: relative;
  isolation: isolate;
}

.mapBox>img {
  aspect-ratio: 3/1;
  background-color: var(--secondary-color);
}

.mapBox .map-marker {
  position: absolute;
  right: 26%;
  top: 46%;
  width: 90px;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

/*--location-pointers-css--*/
.location-pointers .inner {
  padding: 1rem;
  background-color: var(--secondary-color);
}

.location-pointers .inner>h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.location-pointers .faqs_question {
  width: 100%;
  display: block;
  padding: 1rem 2.5rem 1rem 1rem;
  border: 1px solid rgb(0 0 0 / 8%);
  cursor: pointer;
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  transition: all 300ms ease-in-out;
}

.location-pointers .faqs_question:hover,
.location-pointers .faqs_question.active {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 1rem 2.5rem 1rem 1rem;
}

.location-pointers .faqs_question.active {
  border-bottom-color: transparent;
}

.location-pointers .faqs_question span {
  position: absolute;
  right: 15px;
  top: 15px;
  transition: transform 300ms ease-in-out;
}

.location-pointers .faqs_question.active span {
  transform: rotate(225deg);
}

.location-pointers .faqs_answer {
  width: 100%;
  display: block;
  background-color: var(--secondary-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.location-pointers .faqs_question.active+.faqs_answer {
  margin-bottom: 10px;
  border: solid rgb(0 0 0 / 8%);
  border-width: 0 1px 1px;
}

.location-pointers .faqs_answer article {
  width: 100%;
  padding: 1.25rem;
}

.location-pointers .faqs_answer article ul li {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 20px;
  padding-left: 0;
  position: relative;
  z-index: 1;
}

.location-pointers .faqs_answer article ul li::before {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
  top: 10px;
  height: 1px;
  background-color: rgb(0 0 0 / 10%);
  z-index: -1;
}

.location-pointers .faqs_answer article ul li:last-child {
  margin-bottom: 0;
}

.location-pointers .faqs_answer article ul li * {
  background-color: var(--secondary-color);
}

.location-pointers .faqs_answer article ul li span {
  padding-right: 10px;
  display: block;
}

.location-pointers .faqs_answer article ul li strong {
  padding-left: 10px;
  display: block;
}

/*--location-pointers--*/
/* location */
/* walkthrough-wrapper */
.walkthrough-wrapper iframe {
  aspect-ratio: 8 / 3;
}

/* walkthrough-wrapper */


/* siteplan-section */
.siteplan-section .siteBox .siteInnerbox:nth-child(1) {
  margin-bottom: 1rem;
}

.siteplan-section .siteBox .siteInnerbox p {
  width: max-content;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--primary-color);
}

.siteplan-section .siteBox span {
  background-color: var(--siteColor);
  display: block;
  max-width: 170px;
  padding: 1px 4px;
  font-size: 14px;
}

/* siteimgbox */
.siteimgbox img {
  width: 100%;
  /* max-height: 480px; */
  object-fit: cover;
}

.siteBox h5 {
  font-size: 1.4rem;
}

/* end siteplan-section */
/* floor plans */
.building-sketch {
  position: absolute;
  inset: 0 0 0 auto;
  width: 45%;
  opacity: 0.2;
}

.building-sketch img {
  object-position: bottom;
}

.fp-section {
  background-color: color-mix(in srgb, var(--secondary-color) 50%, var(--primary-color) 15%);
}

.fpContainer .fpBox .inner {
  padding: 1rem;
  border: 1px solid rgb(0 0 0 / 10%);
  transition: all 300ms ease-in-out;
  isolation: isolate;
}

.fpContainer .fpBox .inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 24%);
}

.fpContainer .fpBox .inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  box-shadow: inset 0.2em 0.2em 0.2em 0 rgba(255, 255, 255, 0.5), inset -0.2em -0.2em 0.2em 0 rgba(0, 0, 0, 0.5);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 300ms ease-in-out;
  z-index: -1;
}

.fpContainer .fpBox .inner:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}

.planBase {
  padding-top: 10px;
}

.fpDetails {
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
  padding-bottom: 6px;
}

.fpDetails:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.fpContainer .fpBox .inner:hover .fpDetails {
  border-bottom-color: rgb(255 255 255 / 15%);
}

.planBase .fpDetails small {
  font-size: .75rem;
}

.planBase .fpDetails h6 {
  margin-bottom: 0;
  font-weight: 800;
}

.fpContainer .fpBox .img-fluid {
  overflow: hidden;
}

.fpContainer .fpBox .img-fluid img {
  aspect-ratio: 4/3;
  object-fit: contain;
}

.fpContainer .fpBox span {
  display: block;
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #e4e4e4;
}

.fpContainer .fpBox .inner:hover .readmore .button {
  background-color: var(--secondary-color);
  color: var(--body-color);
}

.fpContainer .fpBox .inner:hover .readmore .button:hover {
  color: var(--secondary-color);
}

/* floor plans */
/* Gaurs Group */
.gaurs-logo {
  width: 140px;
  margin: 0 auto 1rem;
}

.statsContainer>.inner {
  border: solid rgb(0 0 0 / 20%);
  border-width: 1px 0;
  padding: 2rem 0;
  margin-top: 3rem;
}

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

.statsBox h2 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--primary-color);
}

.statsBox p {
  font-size: 13px;
  text-transform: uppercase;
}

/* Gaurs Group */
/* Project Page */
/* Custom controllers */
.slider-control {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 1;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  transition: all 300ms ease-in-out;
}

.carousel-control-prev {
  left: calc(2% - 25px);
}

.carousel-control-next {
  right: calc(2% - 25px);
}

.slider-control::before,
.slider-control::after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.slider-control::before {
  inset: -8px;
  border: 1px solid rgb(255 255 255 / 50%);
  z-index: -2;
  transition: all 300ms ease-in-out 10ms;
}

.slider-control:hover::before {
  inset: 0px;
  border: 0;
  background-color: var(--primary-color);
}

.slider-control::after {
  inset: 0px;
  transform: scale(0, 0);
  transition: all 300ms ease-in-out 10ms;
  z-index: -1;
}

.slider-control:hover::after {
  inset: -8px;
  transform: scale(1, 1);
  border: 1px solid rgb(255 255 255 / 50%);
}

.slider-control svg {
  width: 22px;
  color: var(--secondary-color);
}

/* Custom controllers */
/* overview */
.section-over-image {
  position: absolute;
  inset: 0 0 0 53%;
  opacity: 0.3;
}

.section-over-image img {
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
}

.distance-container {
  margin-top: 2.5rem;
  padding: 1.5rem 0;
  border: solid rgb(255 255 255 / 50%);
  border-width: 1px 0;
  position: relative;
}

.absolute-title {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  transform: translateY(-50%);
  padding-right: 2rem;
  color: var(--secondary-color);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.distance-box:not(:last-child) {
  border-right: 1px solid rgb(255 255 255 / 50%);
}

.distance-box figure {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 10px;
}

.distance-box figure .img-fluid {
  max-width: 40px;
  flex: 0 0 40px;
}

.distance-box figure figcaption .h5 {
  font-family: var(--serif);
  color: var(--secondary-color);
  display: block;
  font-size: 1.75rem;
}

/* overview */
/* gallery */
.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.image-slide {
  width: 80%;
}

.image-slide--inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.image-slide--inner::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background-image: linear-gradient(transparent, rgb(0 0 0 / 50%)); */
}

.image-slide .image-slide--inner,
.image-slide .caption,
.image-slide img {
  transition: all 300ms ease-in-out;
}

.caption {
  display: table;
  position: absolute;
  right: 5px;
  top: 10px;
  font-size: .675rem;
  font-family: var(--serif);
  color: var(--secondary-color);
  writing-mode: sideways-lr;
  z-index: 1;
}

/* gallery */
/* Iconic Tower */
.iconic-tower-image {
  position: absolute;
  inset: 0 0 0 auto;
  overflow: hidden;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}

.iconic-tower-image img {
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  /* padding: 0 10%;
  margin-top: 35rem;
  transition: transform 0.1s ease-out;
  will-change: transform; */
}

/* .iconic-tower-image{
  position: relative;
} */
.iconic-title {
  position: absolute;
  left: 0;
  bottom: 20%;
  font-size: 2rem;
  transform: rotate(-90deg);
  transform-origin: left top;
}

/* Iconic Tower */
/* Master plan */
.masterplan-section {
  --ht: 500px;
}

.planBox .inner {
  padding: 2rem;
  border: 1px solid rgb(0 0 0 / 10%);
  transition: all 300ms ease-in-out;
}

.planBox .inner:hover {
  background-color: #fff;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 10%);
  border-color: transparent;
}

.masterplanBox img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: top;
}

/* legendsBox */
.legendsBox .inner {
  height: 100%;
  background-color: var(--secondary-color);
  padding: 40px;
  color: var(--darkblue);
  position: relative;
  z-index: 1;
}

.legendsBox .inner::before {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  bottom: 20px;
  border: 1px solid #fff;
  z-index: -1;
}

.legendsBox .inner h5 {
  margin-bottom: 20px;
}

.legendsBox .inner ul li {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.legendsBox .inner ul.legend-amen>li:last-child {
  margin-bottom: 0;
}

.legendsBox {
  counter-reset: num;
}

.legendsBox .inner>ul>li::before {
  content: counter(num, decimal-leading-zero);
  counter-increment: num;
  max-width: 19px;
  flex: 0 0 19px;
  height: 19px;
  font-size: 9px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-legend-amen>li::before {
  content: '-' !important;
  background: transparent;
  color: var(--secondary-color-dark) !important;
  max-width: 19px;
  flex: 0 0 19px;
  height: 19px;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legendsBox .inner ul.legend-amen {
  height: calc(var(--ht) - 124px);
  /* height: 400px; */
}

.legendsBox .inner ul.legend-amen>li::before {
  background-color: var(--primary-color);
}

/* Master plan */
/* Enquiry Form */
.anotherForm {
  margin-bottom: 2rem;
}

.anotherForm+small {
  font-size: 75%;
}

/* Enquiry Form */
.viewmore {
  width: 100%;
  margin-top: 1.25rem;
}

.viewmore .button {
  width: max-content;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 300ms ease-in-out;
}

.viewmore .button:hover {
  gap: 15px;
  color: var(--body-color);
}

.viewmore .button i {
  color: var(--primary-color);
}

.viewmore .button.text-primary:hover,
.viewmore .button.text-primary:hover i {
  color: #fff !important;
}

.viewmore .button.text-primary i {
  color: var(--primary-color);
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 2rem;
  z-index: 1;
}

.heading.d-flex {
  gap: 10px;
}

.title-logo {
  width: 160px;
  margin-bottom: 1rem;
}

.title-hidden {
  font-size: 12vw;
  text-transform: uppercase;
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  font-weight: 800;
  color: rgba(125, 125, 125, 0.062);
  line-height: 1;
  z-index: -1;
  pointer-events: none;
}

.heading.border-bottom {
  border-bottom-width: 2px !important;
}

.heading .heading-logo {
  width: 120px;
  margin: 0 auto 1rem;
}

.heading h1,
.heading h2,
.heading h3,
.heading h4,
.heading h5 {
  display: block;
  font-family: var(--serif);
}

.heading .h1 {
  color: var(--primary-color);
  font-size: 2.75rem;
  font-weight: 300;
}

.heading h6 {
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
}

.text-grad {
  background-image: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-bevel {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--golden-color);
  text-shadow: -2px -2px 0 rgb(249 236 178 / 77%), 2px -2px 0 rgb(252 247 229 / 80%), -2px 2px 0 rgb(0 0 0 / 53%), 2px 2px 0 rgb(0 0 0 / 53%)
}

.text-serif {
  font-family: var(--serif);
}

.text-sans {
  font-family: "Open Sans", sans-serif !important;
}

.text-light {
  color: var(--light-color) !important;
}

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

.text-secondary {
  color: var(--secondary-color) !important;
}

.text-third {
  color: var(--third-color) !important;
}

.text-truncate-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bg-third {
  background-color: var(--third-color) !important;
}

.has-bevel {
  box-shadow: inset 0.2em 0.2em 0.2em 0 rgba(255, 255, 255, 0.5), inset -0.2em -0.2em 0.2em 0 rgba(0, 0, 0, 0.5);
}

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

.bg-secondary {
  background-color: var(--secondary-color) !important;
}

.bg-dark {
  background-color: var(--body-color) !important;
  color: var(--light-color);
}

.bg-light {
  background-color: var(--light-color) !important;
}

.bg-gradient {
  background: var(--primary-gradient) !important;
}

.bg-texture {
  background-image: url(../images/texture.png);
}

.bg-image {
  background: center / cover no-repeat fixed;
}

.bg-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 60%);
  z-index: -1;
}

.bg-image.bg-secondary {
  background-attachment: initial;
}

.bg-image.bg-secondary::before {
  background-color: transparent;
}

.scroller {
  overflow: auto;
}

.scroller::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--primary-color);
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.readmore {
  width: 100%;
  margin-top: 2rem;
}

.readmore.d-flex {
  gap: 10px 1rem;
}

.readmore .button {
  position: relative;
  z-index: 1;
  display: table;
  min-width: 180px;
  background-color: transparent;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  background-color: var(--primary-color);
  transition: all ease-in-out 0.3s;
  overflow: hidden;
}

.readmore button {
  border: 0;
}

.readmore .button::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--body-color);
  transform: translate(-100%, -100%);
  transition: all ease-in-out .5s;
  z-index: -1;
}

.readmore .button:hover::after {
  transform: translate(-20%, -30%);
}

.readmore .button.reverse,
.bg-dark .readmore .button,
.bg-primary .readmore .button {
  color: var(--primary-color);
  background: radial-gradient(farthest-side, var(--secondary-color), var(--secondary-dark-color));
}

.readmore .button.reverse::after,
.bg-dark .readmore .button::after,
.bg-primary .readmore .button::after {
  background-color: #fff;
}

.readmore .button.mw-auto {
  min-width: 1px;
  padding: 1rem;
}

.readmore .button.text-white {
  border-color: #fff;
  color: #fff;
}

.readmore .button.text-white:hover {
  color: var(--third-color) !important;
  background-color: #fff;
  border-color: transparent;
}

.readmore .button.bg-secondary {
  border: none;
}

.readmore .button.bg-secondary:hover {
  background-color: var(--primary-color) !important;
}

.controls {
  position: absolute;
  width: 110px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  z-index: 9;
}

.controls a {
  position: static;
  display: table;
  width: 100%;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: center;
  color: var(--primary-color);
  font-size: 13px;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  opacity: 1;
}

.controls a:last-child {
  border-bottom: none;
}

.controls a:focus,
.controls a:hover {
  color: var(--primary-color) !important;
  opacity: 1;
}

.multiply {
  mix-blend-mode: multiply;
}

.position-relative {
  z-index: 1;
}

/* custom swiper controls */
div[class^="swiper-button"] {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--body-color);
  transition: all 300ms ease-in-out;
}

div[class^="swiper-button"].sm {
  width: 30px;
  height: 30px;
  background-size: 14px;
}

.heading .d-flex {
  gap: 10px;
}

div[class^="swiper-button"]:hover {
  background-color: var(--body-color);
  color: #fff;
}

div[class^="swiper-button"]:after {
  color: inherit;
  font-size: 1rem;
}

.swiper-control {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 10px;
}

.swiper-control.sm {
  top: calc(100% - .5rem);
}

.swiper-control *[class^="swiper-"] {
  position: static;
}

.swiper-control .swiper-pagination {
  transform: none;
}

.swiper-control .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--primary-color);
}

.swiper-control div[class^="swiper-button"] {
  margin-top: 0;
}

.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width: 20px;
  border-radius: 10px;
}

/* custom swiper controls */
/*Footer*/
.footer-area {
  padding: 4rem 0;
  background-color: var(--body-color);
  color: #fff;
  font-size: .875rem;
  z-index: 1;
}

.foot-logo img {
  max-width: 160px;
  /* margin: 0 auto 10px; */
  margin-bottom: 10px;
}

.foot-logo small {
  text-transform: uppercase;
  display: block;
  justify-content: center;
  padding: 7px 0;
  gap: 5px;
  border-width: 1px 0;
  /* max-width: fit-content; */
  /* text-align: center; */
  /* align-items: center; */
  /* text-align: center; */
  /* margin: 0 auto; */
  /* border: solid rgb(255 255 255 / 50%); */
}

.foot-logo small:nth-child(2) {
  border-bottom: none;
}

.footer-title {
  font-family: var(--serif);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.foot-links li:not(:last-child) {
  margin-bottom: 10px;
}

.foot-links li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.foot-links li a {
  position: relative;
  display: grid;
  transition: all 300ms ease-in-out;
}

.icon-circular {
  width: 34px;
  flex: 0 0 34px;
  height: 34px;
  font-size: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255 255 255 / 15%);
  transition: all 300ms ease-in-out;
}

.icon-circular:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.icon-circular.stroke {
  background-color: transparent;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 20%);
}

.copyrights {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 20%);
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

/*  */
/* .officeBOx .qrImg{
  width: 50px;
}

.officeBOx .qrImg img{
  width: 100%;
} */
/* privacy */
.gaursBox {
  margin-top: 4rem;
}

.button-top {
  background: rgba(0, 0, 0, 0.32);
  position: fixed;
  left: calc(50% - 20px);
  bottom: 10px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 99;
}

.button-top:hover {
  background: var(--secondary-color);
  color: var(--body-color);
}

/* enquiry_btn */
.enquiry_btn {
  background: var(--primary-color);
  position: fixed;
  right: 2rem;
  bottom: 10px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  z-index: 99;
  display: none;
  animation: zoomAni 2s ease 0s infinite normal none;
}

@keyframes zoomAni {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

/*Footer*/
/* internal pages start from here */
.hero_inside__banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--dark-color);
  z-index: 1;
}

.hero_inside__banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgb(7 91 78 / 60%);
  background: linear-gradient(rgb(7 91 78 / 60%), rgb(0 0 0 / 0%) 40%);
  z-index: 1;
  pointer-events: none;
}

.hero_inside__banner_img {
  /* position: absolute; */
  inset: 0;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.25; */
  z-index: -1;
}

.super_title {
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.page_title {
  font-weight: 200;
  font-family: var(--serif);
}

.breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
  color: var(--light-color);
}

.breadcrumb li a {
  color: var(--light-color);
}

.breadcrumb li a:hover {
  color: var(--secondary-color);
}

.breadcrumb li.active {
  color: var(--secondary-color);
}

.enquiry__img {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
}

.flip-x {
  transform: rotateY(180deg);
}

/* forms */
.form-group>div {
  margin-top: 15px;
}

.form-group label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}

.form-group {
  display: flex;
}

.form-group>i {
  max-width: 60px;
  flex: 0 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  background-color: color-mix(in srgb, var(--secondary-color) 50%, var(--primary-color) 10%);
  border-right: 1px solid color-mix(in srgb, var(--primary-color), transparent 80%);
  ;
}

.form-control {
  border-radius: 0px;
  padding: 10px;
  border: 0;
  background-color: color-mix(in srgb, var(--secondary-color) 50%, var(--primary-color) 10%);
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
  background-color: var(--light-color);
}

.form-control.lg {
  padding: 1.25rem 2.5rem;
}

/* forms */
/* customize modal */
.modal-backdrop.show {
  opacity: 1;
  background: rgba(0, 2, 12, 0.894);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  border: 0;
  color: #000;
  opacity: 1;
  text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  background-color: rgb(141, 0, 0);
  color: #fff;
}

.modal-content {
  background-color: var(--light-color);
  color: var(--body-color);
  border-radius: 0;
  border: none;
}

.modal-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/lines-map-pattern.svg) center / 120px;
  opacity: 0.35;
  pointer-events: none;
}

.modal-content .modal-header {
  padding: 0;
  border: none;
}

.modal-content button.close {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
  text-shadow: none;
  color: var(--body-color);
  background-color: var(--secondary-color);
  opacity: 1;
  z-index: 2;
}

.modal-header .close {
  color: #fff;
}

.modal-header {
  background: none;
  border: none;
}

.modal-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal-logo img {
  max-width: 210px;
  margin: 0 auto;
}

.modal-body {
  padding: 2.5rem;
}

/* customize modal */
/*transformation Animation*/
.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.rightTranslate {
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.topTranslate {
  -webkit-transform: translate(0, -200px);
  transform: translate(0, -200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}

.fadeIn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.zoomOut {
  transform: scaleX(0);
  transform-origin: left;
  transition: all .5s ease-in-out;
}

.zoomIn {
  transform: scale(1);
}

/*transformation Animation*/
.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: -40px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.separator::before,
.separator::after {
  content: '';
  width: 50%;
  border-bottom: 1px solid var(--secondary-color);
}

.list li {
  position: relative;
  padding-left: 20px;
}

.list li:not(:last-of-type) {
  margin-bottom: 8px;
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  background: url(../images/logo-icon.png) center / contain no-repeat;
}