html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  box-sizing: border-box;
  color: #3A3A3A;
  margin: 0;
  padding: 0;
}

.scroll-lock {
  height: 100vh;
  overflow: hidden;
}

.container {
  margin: auto;
}

ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Prata", serif;
  color: #06402B;
}

h1 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-bottom: 4rem;
}

h2 {
  font-size: 2.025rem;
  line-height: 2.688rem;
  margin-bottom: 2.4rem;
}

h3 {
  font-size: 2rem;
  line-height: 2.05rem;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: 1.3rem;
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
}
h4:last-child {
  margin-bottom: 0;
}

h5 {
  font-size: 1rem;
  line-height: 1.025rem;
  margin-bottom: 1.5rem;
}

p {
  font-size: 1.02rem;
  line-height: 1.25rem;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.navbar {
  --bs-navbar-padding-y: 1.2rem;
}

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

section {
  padding: 160px 0;
}
section.sp {
  padding: 104px 0;
}

.cta {
  padding: 16px 52px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  color: #ffffff;
  overflow: hidden;
  border: 2px solid #AD935E;
  cursor: pointer;
  display: inline-block;
}
.cta a.butn, .cta .butn {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  -webkit-text-fill-color: #ffffff;
  background-image: none;
}
.cta::after {
  content: "";
  position: absolute;
  background-color: #AD935E;
  z-index: -1;
  top: -1px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 120%;
  height: calc(100% + 2px);
  transform: rotate(0deg) translateZ(0);
  transform-origin: 0 100%;
  transition: transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 1s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.cta:hover {
  color: #AD935E;
}
.cta:hover::after {
  opacity: 0.5;
  transform: rotate(10deg) translate3d(-1.2em, 110%, 0);
}
.cta:hover a.butn, .cta:hover .butn {
  -webkit-text-fill-color: #AD935E;
}

.subtitle {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  color: #BB9732;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-image: url(../images/gold.jpg);
  background-position: 50% 100%;
  background-size: 1000px;
  -webkit-background-clip: text;
          background-clip: text;
}

a.link {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  position: relative;
  color: #AD935E;
  padding-right: 4px;
  overflow: hidden;
}
a.link img {
  width: 20px;
  transition: 0.4s;
}
a.link::after {
  content: "";
  position: absolute;
  background-color: #AD935E;
  width: 100%;
  height: 1px;
  opacity: 1;
  right: 0;
  bottom: 0;
  animation: flash2 linear 0.4s 1 forwards;
}
a.link:hover {
  color: #AD935E;
}
a.link:hover img {
  transform: translateX(4px);
}
a.link:hover::after {
  animation: flash linear 0.4s 1 forwards;
}

@keyframes flash {
  0% {
    width: 100%;
    left: 0;
  }
  50% {
    width: 100%;
    left: 100%;
  }
  51% {
    width: 100%;
    left: -100%;
  }
  100% {
    width: 100%;
    left: 0;
  }
}
@keyframes flash2 {
  0% {
    width: 100%;
    right: 0;
  }
  50% {
    width: 100%;
    right: 100%;
  }
  51% {
    width: 100%;
    right: -100%;
  }
  100% {
    width: 100%;
    right: 0;
  }
}
:root {
  --plyr-color-main: $primary-color;
}

* {
  caret-color: transparent;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background-color: #fefefe;
  z-index: 1;
  transition: ease 0.4s;
  z-index: 100;
  --bs-navbar-padding-y: 6px;
  --bs-navbar-active-color: $primary-color;
}
.navbar .navbar-nav {
  -moz-column-gap: 5vh;
       column-gap: 5vh;
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
}
@media screen and (max-width: 1320px) {
  .navbar .navbar-nav {
    -moz-column-gap: 3vh;
         column-gap: 3vh;
  }
}
@media screen and (max-width: 1200px) {
  .navbar .navbar-nav {
    -moz-column-gap: 0vh;
         column-gap: 0vh;
  }
}
.navbar a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: #BE8D03;
  -webkit-text-fill-color: transparent;
  background-image: url(../images/gold.jpg);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 1000px;
  -webkit-background-clip: text;
          background-clip: text;
  text-align: left;
}
.navbar a.navbar-brand img {
  width: 180px;
}
.navbar .cta {
  margin-top: -18px;
}
.navbar .navbar-brand,
.navbar .nav-item,
.navbar .cta {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.navbar .dropdown-toggle::after {
  margin-left: 0.255em;
}
.navbar .dropdown-menu[data-bs-popper] {
  left: 0;
  right: auto;
  padding: 0;
}
.navbar li a.dropdown-item {
  padding: 8px 16px;
  margin-bottom: 6px;
  font-size: 0.84rem;
  font-weight: 600;
}
.navbar .nav-link:focus, .navbar .nav-link:hover, .navbar nav-link.show {
  color: #AD935E;
}

.bannerWrap {
  position: relative;
}
.bannerWrap .path {
  position: absolute;
  top: 0px;
  right: 0;
  width: 42vw;
  height: 100%;
  z-index: -1;
  transform: rotate(180deg);
  opacity: 0.4;
}

body {
  overflow-x: hidden;
}

.desc {
  font-weight: 300;
  font-size: 1.2rem;
}

.dlfSlider_wrap .sliderTitle {
  align-items: center;
  margin-top: 2vh;
}
.dlfSlider_wrap .dlfSlider {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}
.dlfSlider_wrap .dlfSlider .horizontal_galleryStrip,
.dlfSlider_wrap .dlfSlider .horizontal_galleryWrapper {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  position: relative;
}
.dlfSlider_wrap .dlfSlider .dlfSlide {
  width: 52vw;
  padding-right: 6rem;
  box-sizing: content-box;
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: flex-end;
}
.dlfSlider_wrap .dlfSlider .dlfSlide:last-child {
  padding-right: 14rem;
}
.dlfSlider_wrap .dlfSlider .dlfSlide .image img {
  height: 80vh;
  width: 24vw;
}
.dlfSlider_wrap .dlfSlider .dlfSlide .slideDesc .sn {
  color: #BE8D03;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1rem;
  margin-bottom: 1.7rem;
  -webkit-text-fill-color: transparent;
  background-image: url(../images/gold.jpg);
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 1000px;
  -webkit-background-clip: text;
          background-clip: text;
}

.amneties {
  background-color: rgba(173, 147, 94, 0.0117647059);
}
.amneties .amnetiesIntro .row {
  align-items: center;
}
.amneties .amneties_wrap {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: 1px;
}
.amneties .amneties_wrap .amenity {
  padding: 48px;
  width: 25%;
  box-sizing: border-box;
  border: 1px solid #e2e0dc;
  margin-left: -1px;
  margin-top: -1px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.amneties .amneties_wrap .amenity img {
  width: 72px;
  margin-bottom: 32px;
  transition: 0.8s;
}
.amneties .amneties_wrap .amenity p {
  margin-bottom: 0;
  font-size: 0.9rem;
}
.amneties .amneties_wrap .amenity:hover {
  background-color: #01100b;
}
.amneties .amneties_wrap .amenity:hover img {
  scale: 1.04;
}
.amneties .amneties_wrap .amenity:hover h4 {
  color: #FDF8D4;
}
.amneties .amneties_wrap .amenity:hover p {
  color: #ffffff;
}

.floornunits {
  height: 100vh;
  position: relative;
  margin-top: 104px;
}
.floornunits::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(270deg, rgba(6, 64, 43, 0.2) 0%, rgba(1, 16, 11, 0.431372549) 100%);
  z-index: 1;
}
.floornunits video {
  width: 100%;
  height: 100%;
}
.floornunits .floornunitsDetail {
  position: absolute;
  z-index: 2;
  top: 120px;
  left: 120px;
  max-width: 460px;
  height: calc(100% - 220px);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
.floornunits .floornunitsDetail h1 {
  color: #ffffff;
}
.floornunits .floornunitsDetail .countFrame {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 56px;
       column-gap: 56px;
  row-gap: 36px;
  max-width: 60%;
}
.floornunits .floornunitsDetail .countFrame .count {
  font-size: 2.5rem;
  line-height: 3.4rem;
  font-family: "Prata";
  color: #FDF8D4;
}
.floornunits .floornunitsDetail .countFrame .countUnit {
  text-transform: uppercase;
  color: #ffffff;
}

.brochure {
  background-color: #01100b;
  margin-bottom: -1px;
}
.brochure .row {
  --bs-gutter-x: 5rem ;
}
.brochure h1 {
  color: #FDF8D4;
}
.brochure .brochure_text {
  color: #ffffff;
  position: relative;
  padding-bottom: 80px;
}
.brochure .brochure_text .cta {
  margin-top: 40px;
}
.brochure .brochure_text img {
  position: absolute;
  height: auto;
  z-index: 0;
}
.brochure .brochure_text img.open {
  visibility: visible;
  opacity: 1;
  width: 200px;
  right: -48px;
  bottom: -6px;
  transition: 0.4s ease-out;
}
.brochure .brochure_text img.closed {
  visibility: hidden;
  opacity: 0;
  width: 140px;
  right: 109px;
  bottom: -16px;
  transition: 0.6s ease-in;
}
.brochure .brochure_text:hover .open {
  visibility: hidden;
  opacity: 0;
  right: 0;
}
.brochure .brochure_text:hover .closed {
  visibility: visible;
  opacity: 1;
  right: 16px;
}
.brochure .carousel-indicators {
  margin: 0;
  bottom: -56px;
}
.brochure .carousel-indicators [data-bs-target] {
  width: 140px;
  height: 96px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ffffff;
  opacity: 0.8;
}
.brochure .carousel-indicators [data-bs-target].active {
  opacity: 1;
}
.brochure .carousel-item {
  height: 480px;
}
.brochure .carousel-control-next-icon, .brochure .carousel-control-prev-icon {
  width: 2.6rem;
  height: 2.6rem;
}

.newsnupdates {
  background-color: #01100b;
  position: relative;
}
.newsnupdates::before {
  position: absolute;
  content: url(../images/Asset\ 2.png);
  right: 0;
  top: 0;
  width: 320px;
  height: auto;
  z-index: 0;
}
.newsnupdates h1 {
  max-width: 520px;
  color: #EFD9B2;
}
.newsnupdates .post_collection {
  margin-top: 5rem;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  height: 560px;
  width: 100%;
  flex-direction: column;
}
.newsnupdates .post {
  position: relative;
  width: calc(27% - 4px);
  height: calc(50% - 8px);
  overflow: hidden;
}
.newsnupdates .post:hover img {
  transform: scale(1.1);
}
.newsnupdates .post:first-of-type {
  width: 44%;
  height: 100%;
}
.newsnupdates .post::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.3019607843);
}
.newsnupdates .post img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.8s;
}
.newsnupdates .post .post_text {
  position: absolute;
  left: 32px;
  top: 24px;
  width: calc(100% - 64px);
  height: calc(100% - 48px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.newsnupdates .post .post_text .cat {
  text-transform: uppercase;
  font-size: 16px;
  color: #FDF8D4;
  font-weight: 500;
}
.newsnupdates .post .post_text .post_desc .date {
  font-size: 15px;
  color: #EFD9B2;
  margin-bottom: 14px;
}
.newsnupdates .post .post_text .post_desc .title h4 {
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 55px;
}
.newsnupdates .post:not(:first-child) .title h4 {
  font-size: large;
}
.newsnupdates .cta {
  margin-top: 56px;
}

.construction .row {
  --bs-gutter-x: 5rem;
}
.construction .row .cta {
  margin-top: 24px;
}
.construction .row .video {
  position: relative;
  overflow: hidden;
}
.construction .row .video .plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0%);
}
.construction .row .video .plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: none;
}
.construction .row .video .plyr__controls {
  gap: 16px;
  bottom: 0px;
  color: #AD935E;
  padding: 12px 16px;
}
.construction .row .video .plyr__controls .plyr__controls__item.plyr__progress__container {
  margin-top: 32px;
}
.construction .row .video .plyr__controls .plyr__control {
  background: rgba(239, 217, 178, 0.1803921569);
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 50%;
  padding: 14px;
  backdrop-filter: blur(8px);
}
.construction .row .video .plyr__controls .plyr__control svg {
  width: 14px;
  height: 14px;
}
.construction .row .video .plyr__controls .plyr__progress {
  margin-right: 32px;
}
.construction .row .video .plyr__controls .plyr__progress .plyr__tooltip {
  display: none;
}
.construction .row .video .plyr__controls__item.plyr__menu {
  display: none;
}
.construction .row .video .plyr__controls__item.plyr__time--current.plyr__time {
  display: none;
}
.construction .row .video .plyr__controls__item.plyr__control[data-plyr=pip] {
  display: none;
}
.construction .row .video .plyr__controls__item.plyr__volume input {
  display: none;
}
.construction .row .video .audio-toggle {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(239, 217, 178, 0.1803921569);
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.construction .row .video .audio-toggle:hover {
  border-color: transparent;
  transform: scale(1.04);
}
.construction .row .video .audio-toggle .icon-audio {
  width: 24px;
  height: 24px;
}
.construction .row .video .audio-toggle .icon-audio .mute-line {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.construction .row .video .audio-toggle.is-muted .mute-line {
  opacity: 1;
}
.construction .row .video .progressLink {
  position: absolute;
  left: 50%;
  top: 88%;
  transform: translate(-50%, -88%);
  padding: 8px 24px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 24px;
  border: 2px solid #AD935E;
  color: #ffffff;
  background-color: #AD935E;
  transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
}
.construction .row .video .progressLink:hover {
  background-color: #ffffff;
  color: #AD935E;
}

.homeForm {
  background-color: rgba(173, 147, 94, 0.0117647059);
  position: relative;
}
.homeForm .building {
  position: absolute;
  left: 106px;
  bottom: 0;
  top: 60px;
  height: 100%;
  width: auto;
  z-index: -1;
  opacity: 0.2;
}
.homeForm .formWrap {
  max-width: 960px;
  margin: auto;
}
.homeForm .formWrap .row {
  --bs-gutter-x: 7rem;
}
.homeForm .cta {
  margin-top: 3.2rem;
}

footer {
  padding: 120px 0 72px;
  background-color: #01100b;
}
footer .upper {
  margin-bottom: 64px;
  padding-bottom: 24px;
  position: relative;
}
footer .upper::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.4px;
  left: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3764705882);
}
footer .upper .secFoot {
  margin-bottom: 48px;
}
footer .upper .secFoot .flex {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
footer .upper .secFoot .logo img {
  width: 120px;
}
footer .upper .secFoot .textual {
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}
footer .upper .secFoot span, footer .upper .secFoot span a {
  text-transform: uppercase;
  color: #ffffff;
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}
footer .upper .secFoot span:last-child, footer .upper .secFoot span a:last-child {
  margin-bottom: 0;
}
footer .upper .secFoot a {
  transition: 0.1s;
}
footer .upper .secFoot a:hover {
  color: #EFD9B2;
}
footer .upper .secFoot img {
  width: 30px;
  margin-bottom: 6px;
}
footer .lower {
  color: #ffffff;
}
footer .lower .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
footer .lower .flex i {
  font-size: 14px;
}
footer .lower span {
  font-size: 13px;
}
footer .lower a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  margin-left: 2px;
  transition: 0.1s;
  font-size: 13px;
}
footer .lower a:hover {
  color: #EFD9B2;
}
footer .lower span a {
  font-weight: 600;
  font-size: 14px;
}

.aboutSection .row {
  --bs-gutter-x: 5rem;
}

.about .imgWrap {
  margin-top: 48px;
}
.about .imgWrap img {
  width: 100%;
  height: 200vh;
}

.sp.mix .row {
  --bs-gutter-x: 5rem;
}
.sp.mix .row .col-6:nth-of-type(n) img {
  height: 720px;
}
.sp.mix .row .col-6:nth-of-type(2n) img {
  height: 400px;
}
.sp.mix:nth-of-type(even) {
  background-color: #01100b;
}
.sp.mix:nth-of-type(even) h1 {
  color: #EFD9B2;
}
.sp.mix:nth-of-type(even) p {
  color: #ffffff;
}

.landmarks p, .landmarks .cta {
  max-width: 720px;
  margin: 0 auto 1.28rem;
}
.landmarks .cta {
  margin: auto;
}
.landmarks .connection {
  margin: 0 -9px;
  width: calc(100% + 18px);
  display: flex;
}
.landmarks .connection li {
  width: 20%;
  flex: 0 0 20%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.landmarks .connection li .number__box {
  padding: 9px;
}
.landmarks .connection li .number__box .in {
  padding: 24px;
  min-height: 168px;
  background-color: var(--brown-light);
  color: #fff;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.landmarks .connection li .number__box .in .tag {
  font-size: 0.78rem;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  opacity: 1;
  visibility: visible;
  transition: 0.7s ease;
}
.landmarks .connection li .number__box .in .tag svg {
  margin: 2px 6px 0 0;
}
.landmarks .connection li .number__box .in .distance {
  z-index: 2;
  font-size: 1.8rem;
  line-height: 1;
  font-family: "Prata";
  opacity: 1;
  visibility: visible;
  transition: 0.7s ease;
}
.landmarks .connection li .number__box .in .image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  transition: 0.8s ease;
}
.landmarks .connection li .number__box .in .image::after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: 0.5s ease;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0, rgba(0, 0, 0, 0.3) 100%);
}
.landmarks .connection li .number__box .in:hover .tag, .landmarks .connection li .number__box .in:hover .distance {
  opacity: 0;
  visibility: hidden;
}
.landmarks .connection li .number__box .in:hover .image {
  transform: scale(1.1);
}
.landmarks .connection li .number__box .in:hover .image::after {
  height: 0;
}
.landmarks .connection li .number__box:first-child .in {
  min-height: 314px;
}
.landmarks .connection li:nth-child(3n) .number__box .in {
  min-height: 226px;
}

.amnetiesGallery .swiper-slide img {
  height: 420px;
  margin-bottom: 20px;
}
.amnetiesGallery .swiper-button-next, .amnetiesGallery .swiper-button-prev {
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: 24px;
  background-color: #AD935E;
  opacity: 0.6;
  transition: 0.8s ease-in-out;
}
.amnetiesGallery .swiper-button-next::after, .amnetiesGallery .swiper-button-prev::after {
  font-size: 24px;
}
.amnetiesGallery .swiper-button-next:hover, .amnetiesGallery .swiper-button-prev:hover {
  opacity: 1;
}
.amnetiesGallery p {
  max-width: 960px;
  margin: auto;
}

.gallery .masonry {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
  font-size: 0.85em;
}
.gallery .masonry .imageWrapper {
  margin: 0 0 24px;
  box-shadow: 2px 2px 4px 0 #ccc;
  transition: all 300ms ease;
  overflow: hidden;
}
.gallery .masonry .imageWrapper img {
  transition: all 1.25s cubic-bezier(0.475, 0.425, 0, 0.995);
  transform: scale(1);
  max-width: 100%;
}
.gallery .masonry .imageWrapper:hover img {
  transform: scale(1.08);
}

form {
  margin-top: 2rem;
}
form h3 {
  margin-bottom: 0;
  font-size: 1.7rem;
}
form .modal-header .btn-close {
  margin-right: 0;
}
form .modal-header {
  padding-top: 32px;
  justify-content: space-between;
}
form .modal-footer {
  border-top: 0;
  justify-content: flex-start;
  margin-bottom: 12px;
  margin-top: -32px;
}
form .form-floating {
  margin-bottom: 1rem;
}
form .form-floating label {
  left: 0;
  right: auto;
  color: #AD935E;
  background-color: transparent;
}
form .form-floating label::after {
  position: absolute;
  content: "*";
  top: 16px;
  right: 0;
  width: 10px;
  height: 10px;
  color: #da2222;
}
form .form-floating.checkbox {
  margin-bottom: 0;
}
form .form-floating.checkbox label {
  padding-top: 1px;
  padding-bottom: 0;
  font-size: 13px;
}
form .form-floating.checkbox label::after {
  content: none;
}
form .form-floating.checkbox .form-check-input:focus {
  border-color: #AD935E;
  box-shadow: none;
}
form .form-floating.checkbox input[type=checkbox]:checked {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23AD935E" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  background-size: 80%;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: bottom center;
}
form .form-floating .form-control {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #AD935E;
  border-radius: 0;
}
form .form-floating .form-control:focus {
  box-shadow: none;
}
form .form-floating input:-internal-autofill-selected {
  background-color: transparent !important;
}
form .form-floating input::-webkit-outer-spin-button,
form .form-floating input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
form .form-floating textarea:not(:-moz-placeholder) ~ label::after {
  background-color: transparent;
}
form .form-floating textarea:focus ~ label::after, form .form-floating textarea:not(:placeholder-shown) ~ label::after {
  background-color: transparent;
}
form .form-floating textarea {
  resize: none;
}
form .form-floating input[type=date]::-webkit-calendar-picker-indicator, form .form-floating input[type=time]::-webkit-calendar-picker-indicator {
  filter: invert(61%) sepia(50%) saturate(442%) hue-rotate(1deg) brightness(94%) contrast(90%);
  cursor: pointer;
}

.blogs .post {
  position: relative;
  overflow: hidden;
}
.blogs .post img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.8s;
}
.blogs .post:hover img {
  transform: scale(1.1);
}
.blogs .post::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.3019607843);
}
.blogs .post .post_text {
  position: absolute;
  left: 32px;
  top: 24px;
  width: calc(100% - 64px);
  height: calc(100% - 48px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blogs .post .post_text .cat {
  text-transform: uppercase;
  font-size: 16px;
  color: #FDF8D4;
  font-weight: 500;
}
.blogs .post .post_text .post_desc .date {
  font-size: 15px;
  color: #EFD9B2;
  margin-bottom: 14px;
}
.blogs .post .post_text .post_desc .title h4 {
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 55px;
}
.blogs .post:not(:first-child) .title h4 {
  font-size: large;
}

.blogsPost .subtitle {
  display: flex;
  align-items: center;
  -moz-column-gap: 44px;
       column-gap: 44px;
}

.floor_image {
  background-color: #01100b;
  margin-bottom: -2px;
}
.floor_image h1 {
  color: #FDF8D4;
}
.floor_image .flex {
  display: flex;
  row-gap: 16px;
  -moz-column-gap: 32px;
       column-gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.floor_image .flex .units_nav {
  display: flex;
  row-gap: 16px;
}
.floor_image .flex .units_nav .card {
  box-shadow: rgba(173, 147, 94, 0.2392156863) 0px 1px 7px 1px;
  padding: 16px;
  margin-right: 20px;
  font-weight: 600;
  font-size: 14px;
  height: -moz-fit-content;
  height: fit-content;
  cursor: pointer;
}
.floor_image .flex .units_nav .card.active {
  background: #AD935E;
  color: #fff;
}
.floor_image .compass img {
  width: 96px;
}
.floor_image .floor_units {
  width: 100%;
  height: 629.22px;
  position: relative;
}
.floor_image .floor_units img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s all linear;
}
.floor_image .floor_units img.main {
  opacity: 1;
}
.floor_image .floor_units img.units {
  z-index: 3;
  opacity: 0;
}/*# sourceMappingURL=style.css.map */