
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;family=Libre+Caslon+Display&amp;family=Allison&amp;display=swap');

:root {
  --web-wash: #fff;
  --primary: #1b1b1b;
  --secondary: #d6dce8;
  --ternary: #F2EDE2;
  --gray: #f7f7f5;
  --border: #eaeaea;
  --accent: #b58546;
  /* --body-gutter: 3rem; */
  --body-gutter: 0rem;
  
  --third-color: #05173f;
  --dark-color: #0d2828;
  --facebook: #4267B2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #FF0000;
  --whatsapp: #25D366;
  --instagram: #c92bb7;
  --serif: 'Libre Caslon Display', serif;
  --cursive: 'Allison', cursive;
  --primary-gradient: linear-gradient(90deg, var(--third-color), var(--ternary), var(--third-color));
  --footer-height: 429px;
  --primary-radius: 10px;
}

html{
  scroll-behavior: smooth;
}

body {
  color: var(--secondary);
  background-color: var(--third-color);
  font: 300 1rem "Poppins", sans-serif;
  overflow-x: hidden;
}

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

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

p {
  line-height: 1.5;
}

.py-6 {
  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(--accent);
}

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

.ui-primary a,
.ui-dark a {
  color: #fff;
}
.ui-primary a:hover,
.ui-dark a:hover {
  color: var(--gray);
}

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

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

.rw--gap-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);
}

.bg-text{
  position: absolute;
  font-size: 17vw;
  white-space: nowrap;
  z-index: -1;
  pointer-events: none;
  color: rgb(255 255 255 / 20%);
  opacity: 0.1;
  display: none;
}

.ui-gray .bg-text,
.ui-light .bg-text{
  color: rgb(0 0 0 / 25%);
}

.bg-text[data-position='center']{
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) ;
  text-align: center;
}

.body-wrapper{
  padding: 0 var(--body-gutter);
  position: relative;
}

main{
  position: relative;
  background-color: var(--third-color);
  margin-bottom: var(--footer-height);
  box-shadow: 0px -1rem 3rem rgb(0 0 0 / 60%), 0px -1rem 6rem rgb(255 255 255 / 25%);
  z-index: 2;
}

/*header*/
.header {
  width: calc(100% - (var(--body-gutter * 2)));
  position: fixed;
  inset: 0 var(--body-gutter) auto;
  /* background-color: rgba(0, 0, 0, 0.5); */
  padding: 15px 0;
  z-index: 999;
  transition: all 300ms ease-in-out;
}

.header:hover{
  background-color: rgb(0 0 0 / 30%);
}

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

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

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

.logo a{
  display: block;
  width: 250px;
  overflow: hidden;
  filter: brightness(50);
  transition: all 300ms ease-in-out;
}

.header.fixed .logo a{
  width: 180px;
  filter: brightness(1);
}

.header nav {
  gap: 1.5rem;
}

.topLinks {
  display: flex;
  align-items: center;
  position: relative;
  column-gap: .5rem;
}

.topLinks.menu a{
  display: block;
  padding: 10px;
  font-size: .875rem;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 1px;
  color: #fff;
}

.header.fixed .topLinks.menu a{
  color: var(--primary);
  font-weight: 400;
}

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

.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(--ternary) inset;
  color: var(--accent);
  transition: all 300ms ease-in-out;
}

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

.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(--gray);
  background-color: transparent;
  box-shadow: 0 0 0 0px var(--accent) 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(--accent);
  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(--accent);
}

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

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

.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: 0 50px 0 auto;
  padding: 125px 2rem 30px;
  width: 100%;
  max-width: 350px;
  border-radius: var(--primary-radius);
  overflow-y: auto;
  background-color: var(--accent);
  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{
  color: #fff;
  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: 300;
  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(--accent);
}
/*header*/

.hero-banner {
  height: calc(100vh - 60px);
  position: relative;
  z-index: 2;
}

.hero-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  background: linear-gradient(rgba(0, 0, 0, .5), rgb(0 0 0 / 0%) 20%);
  z-index: 1;
}

.soundBtn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 0;
  border: 0;
  background-color: transparent;
  z-index: 9;
}
.soundBtn i {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 0 50px var(--ternary) inset;
  color: var(--accent);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: .875em;
  transition: all 300ms ease-in-out;
}

.soundBtn i:hover,
.soundBtn i.fa-volume-up {
  box-shadow: 0 0 0 1px var(--ternary) inset;
  color: var(--ternary);
}

.circleButton {
  align-items: center;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  position: absolute;
  transition: background-color .3s;
  width: 10rem;
  height: 10rem;
  bottom: 0rem;
  left: 50%;
  transform: translate(-50%, 35%);
  background-color: transparent;
  border: 0;
  padding: 0;
  z-index: 1;
}

.circleButton[data-position='bottom'] {
  transform: translate(-50%, -25%);
}
.circleButton[data-position='left'] {
  transform: translate(0%, 0%);
  left: 0;
}

.circleButton:hover .circleButton__circle rect {
  transform: rotate(0deg);
}

.circleButton:hover .circleButton__circle rect:last-of-type {
  stroke-dashoffset: 0;
}

.circleButton--fillHover:hover {
  background-color: var(--accent);
}

.circleButton__circle {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.circleButton__circle rect {
  fill: #0000;
  stroke-width: 1.25;
  rx: 9rem;
  ry: 9rem;
  stroke-dasharray: 321%;
  stroke-dashoffset: 642%;
  height: calc(100% - 2px);
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1s,transform 1s;
  width: calc(100% - 2px);
}

.circleButton__circle rect:first-of-type {
  stroke: var(--accent);
}

.circleButton__circle rect:last-of-type {
  stroke-dashoffset: 321%;
  stroke: #fff;
}

.circleButton__circle--gray rect:first-of-type {
  stroke: #ffffff80;
}

.circleButton__icon {
  width: 2rem;
  filter: brightness(50);
  font-size: 1.75rem;
  color: #fff;
  font-weight: 100;
  text-align: center;
}

.ui-light .circleButton__icon {
  color: var(--primary);
  filter: none;
  font-weight: 300;
}

.circleButton--small {
  height: 6rem;
  width: 6rem;
}

.hero-text{
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 9;
}

.hero-text .hero-text--inner{
  max-width: 570px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero-text p{
  position: relative;
  text-transform: uppercase;
  letter-spacing: 7.5px;
  padding: 2px 1rem;
  margin-bottom: 8px;
  font-weight: 600;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgb(255 255 255 / 15%);
  border-bottom: 1px solid #fff;
}

.hero-text .h1 {
  font-size: 3rem;
  position: relative;
  font-weight: 300;
  padding: 1px 0;
}

/* .plot-size-icon{
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.plot-size-icon span{
  display: flex;
}

.plot-size-icon .plot-icon{
  width: 60px;
}

.plot-size-icon .plot-size{
  display: flex;
  flex-direction: column;
}

.plot-size-icon .plot-size span.h4{
  font-size: 2.375rem;
  gap: 1rem;
}

.plot-size-icon .plot-size span small{
  font-size: 0.375em;
  align-self: center;
} */

/* 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(--accent);
}

.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(--ternary);
}
/* Custom controllers */

/* overview */
.section-over-image{
  position: relative;
  isolation: isolate;
}
.section-over-image::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--ternary), transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.section-over-image img{
  height: 100%;
  object-fit: cover;
}
/* overview */

/* Pneumonic */
.pneumonic-box .pneu--in{
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.pneumonic-wrapper{
  min-width: 70px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.pneumonic-wrapper .pneumonic{
  font: 100 2.25rem Material Symbols Outlined, sans-serif;
  margin-bottom: 1.25rem;
  max-height: 60px;
  max-width: 60px;
}

.semicircle {
  z-index: -1;
  max-height: 30px;
  max-width: 70px;
  min-width: 70px;
  background-color: #1c2745;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 21%;
}

.pneumonic-box figcaption{
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 4px;
}
/* Pneumonic */

/* Amenities */
.iconsContainer .amenBox.swiper-slide{
  height: auto;
}
.iconsContainer .amenBox figure{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  margin-bottom: 0;
  padding: 1rem;
  background-color: var(--gray);
  border-radius: var(--primary-radius);
  border: 1px solid var(--accent);
  transition: all 300ms ease-in-out;
}
.iconsContainer .amenBox figure:hover{
  background-color: #fff;
}

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

.iconsContainer .amenBox figure:hover .img-fluid{
  -webkit-filter: brightness(1);
  filter: brightness(1);
}

.iconsContainer .amenBox figure figcaption{
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}

.iconsContainer .amenBox figure figcaption small{
  color: var(--accent);
}

.amenities-wrapper--home::after{
  content: '';
  position: absolute;
  inset: 0 0 80%;
  background-color: var(--third-color);
  z-index: -1;
}
/* Amenities */

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

.image-slide{
  width: 70%;
}

.amenities-gallery .image-slide{
  width: 30%;
}

.amenities-gallery .image-slide img{
  aspect-ratio: 1 / 1.125;
  object-fit: cover;
}

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

.amenities-gallery  .image-slide--inner::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 20%);
  z-index: 1;
}

.caption{
  display: table;
  position: absolute;
  color: #fff;
  z-index: 1;
}

.amenities-gallery .caption{
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  padding: 0 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.image-gallery .caption{
  left: 5px;
  top: 5px;
  font-size: 14px;
  padding: .5rem 1.25rem;
  background-color: rgb(0 0 0 / 50%);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
/* gallery */

/* Floor Plan */
.fp_box .in{
  position: relative;
}

.fp_box .in .caption{
  background-color: var(--dark-color);
  left: 10px;
  bottom: 10px;
  font-weight: 700;
  padding: 3px 10px;
  text-transform: uppercase;
}

.fp_box .in .readmore{
  z-index: 2;
}
/* Floor Plan */

/* Walkthrough */
.walkthroughBox iframe{
  height: 400px;
}
/* Walkthrough */

/* location */
.connectivity-box{
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgb(0 0 0 / 10%);
}
.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;
  border: 1px solid var(--accent);
  padding: 8px;
  border-radius: 50%;
}
.connectivity-box .in .h5{
  margin-bottom: .25rem;
}

.connectivity-box .in b{
  font-weight: 700;
  font-size: 1rem;
}

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

.mapBox::before{
  content: '';
  position: absolute;
  inset: 0;
  /* background-image: linear-gradient(to right, var(--gray), transparent 20%); */
  z-index: 1;
}

.mapBox img{
  object-position: center;
  aspect-ratio: 1.25 / 1;
  background-color: #fff;
}
/* location */

/* Delivered Projects Home */
.delivered--projects{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* gap: .75rem; */
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
/* .delivered--projects::before{
  content: '';
  position: absolute;
  inset: 50% 0 auto;
  border-bottom: 1px solid var(--accent);
  transform: translateY(-50%);
  z-index: -1;
} */
.delivered--projects--box{
  padding: 0 8px;
  position: relative;
  isolation: isolate;
}
.delivered--projects--box::before{
  content: '';
  position: absolute;
  inset: 50% 0 auto;
  border-bottom: 1px solid var(--accent);
  transform: translateY(-50%);
  z-index: -1;
}
.delivered--projects--box.sm{
  flex-grow: 1;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.delivered--projects--box.big{
  max-width: 15%;
  flex: 0 0 15%;
  font-family: var(--serif);
  color: var(--accent);
}
.delivered--projects--box .insider{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem 10px;
}
.delivered--projects--box .img--box{
  background-color: var(--dark-color);
  overflow: hidden;
}
.delivered--projects--box .img--box img{
  object-fit: cover;
  transition: all 300ms ease-in-out;
}
.delivered--projects--box .img--box:hover img{
  transform: scale(1.125,1.125);
}

.delivered--projects--box.sm .box__title{
  height: 40px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.delivered--projects--box.sm .box__location{
  height: 40px;
}
.delivered--projects--box.big .box__location{
  text-transform: uppercase;
}

.delivered--projects--box .connector{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--accent);
  background-color: var(--accent);
}
/* Delivered Projects Home */


.viewmore {
  width: 100%;
  margin-top: 1.25rem;
}

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

.viewmore .button i {
  width: 30px;
  color: var(--ternary);
}

.viewmore .button:hover, .viewmore .button:hover i {
  color: #fff;
}

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

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

.watermark{
  position: absolute;
  height: 90%;
  top: 50%;
  z-index: -1;
  pointer-events: none;
}

.watermark[data-position="left"]{
  left: 0;
  transform: translate(25%,10%);
}

.watermark[data-position="right"]{
  right: 0;
  transform: translate(35%,-50%);
}

.watermark[data-position="center"]{
  left: 50%;
  transform: translate(-50%,-50%);
}

.watermark img{
  height: 100%;
  width: auto;
  opacity: 0.15;
  transition: transform 700ms ease-in-out, opacity 700ms ease-in-out, filter 1500ms linear;
}
.watermark img.doneTranslate{
  filter: brightness(1) opacity(1);
}

.section-title {
  display: table;
  position: relative;
  margin-bottom: 2.5rem;
  z-index: 1;
}

.section-title.d-flex {
  gap: 10px;
}

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

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

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

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

.section-title .h1 {
  color: var(--accent);
  font-size: 3rem;
  font-weight: 300;
  text-transform: uppercase;
}

.section-title h6 {
  font-weight: 400;
  letter-spacing: 2px;
}

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

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

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

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

.text-light{
  color: var(--gray) !important;
}
.text-primary{
  color: var(--accent) !important;
}
.text-secondary{
	color:var(--ternary) !important;
}
.text-third{
	color:var(--third-color) !important;
}

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

.ui-primary{
  background-color: var(--accent) !important;
  color: var(--gray);
}

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

.ui-dark{
  background-color: var(--dark-color) !important;
  color: var(--gray);
}

.ui-light{
  background-color: var(--ternary) !important;
  color: var(--primary);
}
.ui-gradient{
  background: var(--primary-gradient);
}

.ui-texture{
  background-image: url(../images/texture.png);
  background-blend-mode: color-burn;
}

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

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

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

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

.scroller{
  overflow: auto;
}

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

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

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--ternary);
  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: 10px 1.25rem;
  border-radius: 50px;
  text-align: center;
  color: #fff;
  background-color: var(--accent);
  transition: all ease-in-out 0.3s;
  overflow: hidden;
}

.readmore button {
  outline: none;
  box-shadow: none;
  border: 0;
}

.readmore .button:hover {
  color: var(--accent);
}

.ui-light .readmore .button:hover {
  color: var(--gray);
}

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

.ui-light .readmore .button::after{
  background-color: var(--primary);
}

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

.readmore .button.reverse,
.ui-dark .readmore .button,
.ui-primary .readmore .button{
  color: var(--accent);
  background-color: var(--ternary);
}

.readmore .button.reverse:hover,
.ui-dark .readmore .button:hover,
.ui-primary .readmore .button:hover{
  color: var(--ternary);
}

.readmore .button.reverse::after,
.ui-dark .readmore .button::after,
.ui-primary .readmore .button::after{
  background-color: var(--primary);
}

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



.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(--accent);
  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(--accent) !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(--ternary);
  color: var(--primary);
  transition: all 300ms ease-in-out;
}
div[class^="swiper-button"].sm{
  width: 30px;
  height: 30px;
  background-size: 14px;
}

.section-title .d-flex{
  gap: 10px;
}

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

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

.swiper-control{
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

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

.swiper-pagination{
  bottom: 0 !important;
}

.swiper-pagination-bullet-active{
  background-color: var(--accent);
  width: 20px;
  border-radius: 10px;
}
/* custom swiper controls */

/*Footer*/
.footer-area {
  height: var(--footer-height);
  position: fixed;
  inset: auto var(--body-gutter) 0;
  z-index: 1;
  font-size: 14px;
  padding: 4rem 0 6rem;
}

.footer-area::before{
  content: '';
  position: absolute;
  background: url(../images/suncity-projects-vector.svg) center bottom / 70% repeat-x;
  inset: 0;
  -webkit-filter: brightness(7) opacity(0.4);
  filter: brightness(7) opacity(0.4);
  z-index: -1;
}

.foot-logo img{
  max-width: 200px;
  margin: 0 auto;
}

.foot-links{
  gap: 10px;
}

.foot-links a{
  padding: 10px 1.5rem;
  background-color: var(--ternary);
  text-transform: uppercase;
  color: var(--primary);
  border-radius: var(--primary-radius);
  transition: all 300ms ease-in-out;
}

.foot-links a:hover{
  background-color: var(--primary);
  color: var(--ternary);
}

.bottom-links ul li a:hover {
  color: var(--ternary);
}

.copyrights {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.copyrights p{
  line-height: 1;
}

.copyrights a {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid;
  text-decoration: 1px underline;
}

.copyrights a:hover {
  text-decoration: none;
}

.button-top {
  background-color: rgba(0, 0, 0, 0.32);
  border: 1px solid rgb(255 255 255 / 0%);
  position: fixed;
  left: calc(50% - 20px);
  bottom: -40px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 99;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.button-top:hover {
  background-color: var(--primary);
  border-color: rgb(255 255 255 / 10%);
}
/*Footer*/

/* Enquiry Btn */
.videoth{
  position: relative;
  z-index: 1;
}

.videoth::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 50%);
}

.videoBtn{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: #fff;
  transition: all 300ms ease-in-out;
  animation: breathe 800ms alternate infinite;
}

.videoBtn::before{
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgb(255 255 255 / 30%);
  z-index: -1;
  transition: all 300ms ease-in-out;
  transition-delay: 100ms;
  animation: breathe 800ms alternate infinite;
}

@keyframes breathe{
  100%{scale: 1.2;}
}

.videoBtn:hover{
  background-color: var(--youtube);
  color: #fff;
  animation-play-state: paused;
}

.videoBtn:hover::before{
  animation-play-state: paused;
  border-color: #fff;
}
/* Enquiry Btn */

.footer-enquiryBtn {
  position: fixed;
  bottom: 0px;
  left: 0px;
  right: 0px;
  display: flex;
  justify-content: center;
  z-index: 99;
  background-color: var(--ternary);
  border-top: 1px solid var(--accent);
  text-align: center;
}
.footer-enquiryBtn a {
	width: 100%;
  color: var(--dark-color);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px 5px;
  font-size: 11px;
  text-transform: uppercase;
}
.footer-enquiryBtn a:not(:first-child) {
  border-left: 1px solid var(--accent);
}
.footer-enquiryBtn a i{
  color: var(--accent);
}

/* internal pages start from here */
.hero_inside__banner{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--accent);
  color: var(--primary);
  padding: 2rem 0;
  margin-top: 85px;
  z-index: 1;
}

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

.page_title{
  font: 200 3rem var(--serif);
}

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

.breadcrumb-item+.breadcrumb-item::before{
  color: var(--primary);
}

.breadcrumb li a{
  color: var(--primary);
  font-weight: 600;
}

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

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

/* legacy */
.footprints-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}

.grid-item1 { grid-area: 1 / 1 / 2 / 2; }
.grid-item2 { grid-area: 1 / 2 / 2 / 3; }
.grid-item3 { grid-area: 1 / 3 / 2 / 4; }
.grid-item4 { grid-area: 1 / 4 / 2 / 5; }
.grid-item5 { grid-area: 1 / 5 / 2 / 6; }
.grid-item6 { grid-area: 2 / 1 / 3 / 2; }
.grid-item7 { grid-area: 2 / 2 / 3 / 3; }
.grid-item8 { grid-area: 2 / 3 / 3 / 4; }
.grid-item9 { grid-area: 2 / 4 / 3 / 5; }
.grid-item10 { grid-area: 2 / 5 / 3 / 6; }
.grid-item11 { grid-area: 1 / 6 / 3 / 7; }

.legacyBox .legacyBox--in{
  height: 100%;
  padding: 1rem;
  font-size: 0.75em;
  text-transform: uppercase;
  background-color: rgb(255 255 255 / 4%);
  color: #fff;
  position: relative;
  z-index: 1;
}

.legacyBox .legacyBox--title{font-weight: 700;}


.intro_numbers{
  margin-top: 3rem;
  background-color: #fff;
  padding: 2rem;
  color: var(--third-color);
}
.sun-num:not(:last-of-type){
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.sun-num section{
  text-align: center;
}

.sun-num section h2{
  font-weight: 700;
  color: var(--third-color);
}

.sun-num section h2 .odometer{
  font-size: 125%;
}

.sun-num section p{
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 14px;
}


.legacy_img{
  position: relative;
}

.legacy_img::before{
  content: '';
  inset: 0;
  position: absolute;
}

.legacy_img img{
  object-fit: cover;
  object-position: center bottom;
}
/* legacy */

.mnemonic__in{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.mnemonic__in .icon{
  max-width: 30px;
}

.enquiry__img{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 33%;
  mix-blend-mode: multiply;
}

.siteplan_legends .insider{
  padding: 2rem;
  background-color: rgb(255 255 255 / 10%);
}

.contact_box .contact_box__inside{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact_box .contact_box__inside .small--title{
  margin-bottom: 1rem;
  font-weight: 300;
  color: var(--accent);
}

.contact_box .contact_box__inside .con-links li:not(:last-of-type){
  margin-bottom: 10px;
}

.contact_box .contact_box__inside .con-links li em{
  font-style: normal;
}

.contact_box .contact_box__inside .con-links li a{
  display: flex;
  align-items: center;
  color: var(--accent);
}

.contact_box .contact_box__inside .con-links li a:hover{
  color: var(--dark-color);
}

.contact_box .contact_box__inside .con-links li a i{
  flex: 0 0 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid var(--accent);
  margin-right: 10px;
  color: var(--accent);
}

.contact_map iframe{
  background-color: var(--dark-color);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
  border-radius: 0 var(--primary-radius);
  padding: 5px;
  filter: invert(1);
  display: block;
  transition: all 300ms ease-in-out;
}

.contact_map iframe:hover{
  background-color: var(--accent);
  filter: invert(0);
}

.more-projectBox{
  margin: 15px 0;
}
/* internal pages end here */

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

.form-group {
  margin-bottom: 10px;
}

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

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

.form-control {
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 16%);
  background-color: var(--gray);
  outline: none;
}

.form-control[readonly] {
  background: none;
}

.form-control.form-control-dark{
  border-bottom-color: rgb(255 255 255 / 15%);
  color: #fff;
}

select.form-control.form-control-dark{
  background-color: var(--accent);
}

.form-control.form-control-dark::placeholder{
  color: #8f8f8f;
}

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

/* customize modal */
.modal-backdrop.show {
  opacity: 1;
  background: rgb(0 10 12 / 95%);
  -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;
  background-color: var(--accent);
  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: #fff;
  color: var(--primary);
  border: none;
  border-radius: 0;
}
.modal-dialog {
  max-width: 700px;
}
.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: #fff;
  border-radius: 50%;
  border: 0;
  opacity: 1;
  z-index: 2;
}
.modal-header .close {
  color: #fff;
}
.modal-header {
  background: none;
  border: none;
}

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

.modal-title{
  padding-bottom: 1rem;
  line-height: normal;
  border-bottom: 1px dashed var(--accent);
}

.modal-icons{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--ternary);
  text-transform: uppercase;
}

.modal-icons .connectivity-box:last-child{
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.modal-icons .connectivity-box .location-text{
  font-size: .875rem;
}

.modal-body {
  padding: 1.5rem;
}
/* customize modal */

.separator{
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: -20px auto;
  position: relative;
  z-index: 2;
}

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

.separator span{
  width: 50px;
  filter: brightness(1.5);
}

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

.list li:not(:last-of-type),
.ordered-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-solid-icon.svg) center / contain no-repeat;
}

.ordered-list li::marker{
  color: var(--accent);
}
