:root {
  --white: white;
  --gold: #ddac05;
  --black: black;
  --gray: #868686;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--white);
  color: #f1f1f1;
  font-family: Montserrat, sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
}

h1 {
  color: var(--gold);
  letter-spacing: -3px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 68px;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.3;
}

p {
  margin-bottom: 10px;
  font-weight: 300;
}

img {
  max-width: 100%;
  display: inline-block;
}

.section {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 200px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.section.pb-200 {
  padding-bottom: 200px;
}

.section.black {
  color: #fff;
  background-color: #000;
}

.section.black.pb-200 {
  color: #fff;
}

.section.black.double-pd {
  overflow: hidden;
}

.section.black.double-pd.relative-2 {
  z-index: 10;
  position: relative;
}

.section.black.double-pd.relative-2.white-agian {
  background-color: var(--white);
  color: var(--black);
}

.section.black.double-pd.relative-2.white-agian.new-ring {
  padding-top: 0;
}

.section.black.double-pd.white-agian {
  background-color: var(--white);
  color: var(--black);
}

.section.black.double-pd.white-agian.single-pd {
  padding-bottom: 0;
}

.section.black.double-pd.white-agian.hide {
  display: none;
}

.section.ring {
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;
}

.section.double-pd {
  padding-bottom: 200px;
}

.container {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  display: flex;
}

.container.gap-40 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.container.gap-160 {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  object-fit: cover;
}

.container.gap-80 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
}

.container.centered {
  justify-content: flex-start;
  align-items: center;
}

.container.relative.gap-100 {
  grid-column-gap: 150px;
  grid-row-gap: 150px;
}

.container.of-hide {
  overflow: hidden;
}

.container.tight {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  color: #000;
  max-width: 800px;
}

.hero-text-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 586px;
  display: flex;
}

.hero-text-wrapper.bigger {
  color: #fff;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  font-size: 21px;
}

.hero-text-wrapper.bigger.page--space {
  flex-flow: wrap;
  justify-content: flex-start;
}

.cricle {
  background-color: var(--gold);
  border-radius: 100%;
  width: 16px;
  height: 16px;
}

.cricle.smaller {
  width: 12px;
  height: 12px;
}

.paragraph-xl {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.3;
}

.paragraph-xl.align-right {
  text-align: right;
  font-size: 24px;
  line-height: 1.5;
}

.paragraph-xl.align-right.left-align-again {
  text-align: left;
}

.max-width-671 {
  z-index: 2;
  width: 100%;
  max-width: 671px;
  position: relative;
}

.max-width-671.pd-100 {
  max-width: 671px;
  padding-top: 220px;
}

.right-align-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.right-align-wrapper.spacing-100 {
  height: auto;
  padding-top: 200px;
  padding-bottom: 220px;
}

.max-width-989 {
  z-index: 2;
  width: 100%;
  max-width: 989px;
  position: relative;
}

.button-primary {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #000;
  text-transform: capitalize;
  cursor: pointer;
  background-color: #0000;
  border: 1px solid #000;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.button-primary:hover {
  color: #fff;
  background-color: #000;
}

.button-primary.secondary {
  border-color: var(--white);
  color: var(--white);
  padding: 12px 36px;
  font-size: 14px;
  text-decoration: none;
}

.button-primary.secondary:hover {
  border-color: var(--gold);
  background-color: var(--gold);
  color: var(--white);
}

.button-primary.secondary.event {
  color: var(--white);
  border-radius: 8px;
  margin-top: 10px;
  padding: 8px 10px;
  text-decoration: none;
}

.button-primary.secondary.event:hover {
  color: var(--gold);
}

.button-primary.secondary.event.inactive {
  border-color: var(--gray);
  color: var(--gray);
  cursor: pointer;
}

.button-primary.secondary.event.inactive:hover {
  border-color: var(--gray);
}

.button-primary.left-40 {
  margin-left: auto;
  margin-right: auto;
}

.button-primary.boundless {
  border-width: 0;
  border-radius: 0;
  margin-top: 20px;
  margin-left: 20px;
  padding: 0;
  font-size: 21px;
  text-decoration: underline;
}

.button-primary.boundless:hover {
  background-color: var(--white);
  color: var(--gold);
}

.button-primary.boundless.hidee {
  display: none;
}

.button-right-arrow {
  width: 16px;
  height: 16px;
}

.card-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
  color: var(--black);
  cursor: pointer;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

._3-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-flow: row;
  width: 100%;
  margin-top: -100px;
}

._3-col-grid.gap-16 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

._3-col-grid.gap-16.no-margin-tp {
  margin-top: 0;
}

._3-col-grid.no-margin-tp {
  grid-row-gap: 50px;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
}

._3-col-grid.no-margin-tp._3-col {
  grid-template-columns: 1fr 1fr 1fr;
}

.card-image {
  object-fit: cover;
  width: 100%;
}

.card-image.portrait {
  aspect-ratio: 4 / 3;
}

.card-image.landscape {
  aspect-ratio: 3 / 2;
}

._2-col-grid {
  z-index: 2;
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  position: relative;
}

.grid-left-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.grid-left-wrapper.gap-0 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.grid-right-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.grid-right-wrapper.center-left {
  justify-content: center;
  align-items: flex-start;
}

.grid-right-wrapper.center-center {
  justify-content: center;
  align-items: center;
}

.spaces-details-list {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.image-gallery-wrapper {
  width: 100%;
  position: relative;
}

.gallery-light-box {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.overlay {
  z-index: 1;
  background-image: linear-gradient(#0009, #0009);
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 16px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.expand-icon {
  width: 24px;
}

.hero-section {
  width: 100%;
  height: 100vh;
  color: var(--white);
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-tint {
  z-index: 1;
  background-image: linear-gradient(#0000004d, #0000004d);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.sticky-wrap {
  z-index: 1;
  width: 100%;
  padding-bottom: 100vh;
  position: relative;
}

.sticky-wrap.ms {
  padding-bottom: 0;
}

.sticky-trigger {
  border: 10px red;
  width: 100%;
  height: auto;
}

.sticky-trigger.less-scroll {
  height: 120vh;
}

.sticky-track {
  z-index: 1;
  width: 100%;
  position: absolute;
  inset: 0%;
}

.sticky-track.auto {
  position: relative;
}

.sticky-element {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 90vh;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: relative;
  top: 0;
}

.sticky-element.no-pd {
  padding-left: 0;
  padding-right: 0;
  position: sticky;
}

.sticky-element.auto {
  height: auto;
}

.sticky-element.auto.new {
  padding-bottom: 0;
}

.center-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.center-wrapper.gap-60 {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
}

.tag-wrapper {
  z-index: 5;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 900px;
  display: flex;
  position: relative;
}

.tag-item {
  z-index: 10;
  color: #868686;
  border: 1px solid #868686;
  border-radius: 16px;
  padding: 10px;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}

.tag-item:hover {
  color: #fff;
  border-color: #fff;
  overflow: visible;
}

.tag-text {
  text-align: center;
  font-weight: 400;
}

.tag-image {
  z-index: 10;
  object-fit: cover;
  width: 400px;
  max-width: none;
  height: 400px;
  margin-left: 0;
  margin-right: 0;
  position: absolute;
  inset: -420px auto auto;
}

.event-card-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 100%;
  color: var(--black);
  cursor: pointer;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.event-card-wrapper.past {
  filter: grayscale();
  cursor: auto;
}

.event-card-image {
  aspect-ratio: 2;
  object-fit: cover;
}

.card-text-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.event-title, .event-date {
  font-weight: 400;
}

.book-appointment-link {
  color: #000;
  text-decoration: none;
}

.space-h1 {
  font-size: 68px;
  line-height: 1.3;
}

.tag-hover {
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100%;
  color: var(--gray);
  transition: opacity .3s;
  position: absolute;
  inset: 0%;
}

.navbar-logo-left {
  z-index: 100;
  background-color: #fff;
  width: 100%;
  height: 84.7969px;
  padding-left: 30px;
  padding-right: 30px;
  position: sticky;
  inset: 0% 0% auto;
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  height: 84.7969px;
  margin-bottom: 0;
  padding: 20px 0;
  display: flex;
}

.container-2 {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 100%;
  display: flex;
  position: relative;
}

.nav-menu-wrapper {
  background-color: var(--white);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  min-width: 100vw;
  height: 100vh;
  margin-top: 84.7969px;
  padding-top: 80px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: fixed;
  top: 84.7969px;
  overflow: auto;
}

.nav-menu-two {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: var(--black);
  letter-spacing: .25px;
  margin-left: 0;
  margin-right: 0;
  padding: 5px 0;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  transition: all .3s;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link.w--current {
  color: var(--gold);
}

.menu-button {
  color: #000;
  padding: 0;
}

.menu-button.w--open {
  color: var(--gold);
  background-color: #c8c8c800;
}

.plus-icon {
  width: 24px;
  height: 24px;
}

.logo {
  width: 120px;
}

.div-block-2 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.flex-wrap {
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.social-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.social-wrapper.footer-class {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  width: 202.508px;
  color: var(--white);
  flex: 1;
  justify-content: flex-start;
  align-items: flex-end;
}

.grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.grid._3-3col {
  grid-template-columns: 1fr 1fr 1fr;
}

.social {
  width: 30px;
  height: 30px;
}

.icon {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.footer-light {
  background-color: var(--black);
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 0 20px;
  position: relative;
}

.container-3 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
}

.footer-wrapper-two {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-block-two {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  display: flex;
}

.footer-block-two.three {
  width: 310.508px;
}

.footer-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.footer-link-two {
  color: var(--white);
  cursor: pointer;
  margin-top: 0;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s;
}

.footer-link-two:hover {
  color: var(--gold);
}

.footer-link-two.less {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1;
}

.footer-link-two.hidee {
  display: none;
}

.footer-divider-two {
  opacity: 0;
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 0;
  margin-bottom: 40px;
}

.footer-bottom {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

.footer-copyright {
  width: auto;
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
}

.footer-copyright.right {
  text-align: right;
}

.div-block-3 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.link {
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
  transition: all .3s;
}

.link:hover {
  color: var(--gold);
}

.div-block-4 {
  width: 231.125px;
}

.div-block-5 {
  width: 310.508px;
}

._100 {
  z-index: 1;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  padding-top: 40px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.div-block-6 {
  grid-column-gap: 110px;
  grid-row-gap: 110px;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.image {
  height: 184px;
}

.image-2 {
  height: 147px;
}

.image-3 {
  height: 165px;
  margin-bottom: 60px;
}

.div-block-7 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.image-4 {
  height: 189px;
  margin-left: 60px;
}

.loader {
  z-index: 2147483647;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.cylinder-lottie {
  width: 100%;
}

.apple-vision-pro {
  background-color: var(--white);
  width: 100%;
  height: 100vh;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}

.full-screen-image {
  object-fit: cover;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.full-screen-image._60 {
  height: 60vh;
}

.text-out {
  z-index: 3;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 900px;
  height: 310px;
  margin: auto;
  display: flex;
  position: absolute;
  inset: 0;
}

.text-out.static {
  position: static;
}

.tint {
  z-index: 2;
  background-color: #00000080;
  margin-top: 0;
  position: absolute;
  inset: 0%;
}

.map {
  margin-bottom: 80px;
}

.big-slider {
  background-color: #0000;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 500px;
  margin-top: 160px;
  display: flex;
}

.left-arrow {
  justify-content: center;
  align-items: center;
  display: flex;
}

.mask {
  width: 80%;
  height: 500px;
  overflow: visible;
}

.slide-nav {
  display: none;
}

.right-arrow {
  justify-content: center;
  align-items: center;
  display: flex;
}

.slider-link {
  color: #aab1bb;
  width: 100%;
  text-decoration: none;
}

.slider-image {
  object-fit: cover;
  width: 100%;
  height: 500px;
}

.slide {
  width: 100%;
  height: 500px;
  margin-right: 40px;
}

.slider-right-arrow {
  width: 36px;
}

.day-night-image-wrapper {
  z-index: 1;
  background-color: #000;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.day {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.night {
  z-index: 1;
  opacity: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-5 {
  width: 36px;
}

.service-list {
  margin-top: 20px;
  padding-left: 40px;
}

.service-list.no-mt {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 0;
  display: flex;
}

.div-block-8 {
  z-index: 1;
  width: 501.875px;
  height: 480.5px;
  position: absolute;
  inset: 0% 0% 0% auto;
  overflow: hidden;
}

.div-block-8.lefft {
  margin-top: auto;
  margin-bottom: auto;
  display: none;
  inset: 0 auto 0 0%;
}

.h2-gold {
  color: var(--gold);
  letter-spacing: 0;
}

.h2-gold.black {
  color: var(--black);
}

.h2-smaller {
  letter-spacing: 0;
  font-size: 24px;
}

.h2-smaller.back {
  color: var(--black);
  font-size: 16px;
}

.amenities-changing-image {
  z-index: 1;
  opacity: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hero-slider, .mask-2, .slide-2 {
  width: 100%;
  height: 100%;
}

.right-arrow-2, .left-arrow-2 {
  display: none;
}

.slider-dot-css {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
}

.feature-scroll-position {
  position: absolute;
  top: -200px;
}

.background-video {
  z-index: 11;
  width: 150px;
  height: 150px;
}

.lottie-animation-2 {
  width: 501.875px;
  height: 488.992px;
  margin-left: 250.938px;
}

.lottie-animation-2.lefffft {
  margin-left: -250.938px;
  margin-right: 0;
  transform: rotate(180deg);
}

.body {
  background-color: var(--white);
  color: var(--black);
}

.grid-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
}

.grid-2._5-cc {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.div-block-9 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.image-7 {
  aspect-ratio: 1;
  object-fit: cover;
  width: 75%;
}

.map-cont {
  filter: grayscale();
  width: 100%;
}

.grid-3 {
  grid-template-columns: 1fr;
  width: 100%;
}

.image-8.full-h {
  object-fit: contain;
  height: 100%;
}

.image-9 {
  object-fit: cover;
  height: 100%;
}

.image-10 {
  z-index: 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image-10:hover {
  box-shadow: 0 0 50px #00000026;
}

.image-10.lower-hover-image {
  z-index: 1;
}

.image-10.square {
  height: 100%;
}

.link-block {
  cursor: pointer;
  width: 100%;
}

.link-block.mmp {
  height: 60vh;
  position: relative;
}

.link-block.mmp.square {
  aspect-ratio: 1;
  height: auto;
}

.heading {
  font-size: 16px;
}

.m-h1 {
  font-size: 68px;
}

.div-block {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.style-link-box {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #000;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.custom-style-card {
  z-index: 0;
  text-align: center;
  cursor: pointer;
  background-color: #0000001a;
  border: 8px #0000001a;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.expand-wrapper {
  z-index: 1;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  padding: 12px 13px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.code-embed {
  justify-content: center;
  align-items: center;
  width: 16px;
  display: flex;
}

.expand-icon-2 {
  cursor: pointer;
  width: 100%;
}

._2x2-grid {
  grid-column-gap: 32px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  width: 100%;
}

.card-inner {
  z-index: 1;
  color: #000;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: visible;
}

.style-block-image {
  z-index: 1;
  aspect-ratio: 3 / 2;
  cursor: auto;
  object-fit: cover;
  object-position: 0% 50%;
  width: 100%;
  transition: all .2s cubic-bezier(.445, .05, .55, .95);
  position: static;
}

.custom-style-text {
  color: #000;
  letter-spacing: .2px;
  text-transform: uppercase;
  font-size: 21px;
}

.style-block-image-wrapper {
  cursor: pointer;
  width: 100%;
  position: relative;
}

.style-block-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.div-block-12 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

._3-col-grid-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.new-details {
  font-size: 12px;
}

.go-button {
  width: 30px;
  height: 30px;
}

.card-tag-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.card-tag-wrapper.vertical {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.stream-card-image-wrapper {
  aspect-ratio: 1.42;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.stream-card-details {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
}

.stream-image {
  aspect-ratio: 1.42;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.header-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.stream-card-text-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.stream-card-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #212121;
  cursor: pointer;
  background-color: #f9f9f9;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  overflow: hidden;
}

.stream-card-wrapper:hover {
  box-shadow: 0 2px 10px #0000001f;
}

.stream-card-wrapper.blue-shadow {
  height: 100%;
}

.stream-card-wrapper.blue-shadow:hover {
  box-shadow: none;
}

.div-block-13 {
  width: 100%;
}

.image-11 {
  object-fit: cover;
  width: 100%;
}

.div-block-14 {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: -20px;
  display: flex;
}

.text-block {
  font-size: 14px;
}

.lightbox-link {
  width: 100%;
  height: 100%;
}

.image-12 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.image-12.blueprint {
  object-fit: contain;
}

.no-pointer {
  cursor: auto;
}

.sun {
  z-index: 3;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 200px;
  height: 200px;
  display: none;
  position: absolute;
  inset: 100px 100px auto auto;
}

.image-13 {
  z-index: 2;
  width: 100%;
  position: relative;
}

.moon {
  z-index: 2;
  width: 200px;
  height: 200px;
  display: none;
  position: absolute;
  inset: 100px 100px auto auto;
}

.image-14 {
  width: 100%;
}

.div-block-55 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #6e6e6e;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  display: flex;
}

._2-col-grid-2 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  width: 100%;
}

._4-col-social-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-self: center;
  place-items: center;
}

._4-col-social-grid.left-aligned {
  margin-right: auto;
}

._4-col-social-grid.left-aligned._2-col {
  grid-template-columns: 1fr 1fr;
}

.code-embed-6 {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: none;
  overflow: hidden;
}

.social-link {
  color: #fff;
  cursor: pointer;
  width: 48px;
  height: 48px;
  transition: all .2s;
}

.social-link:hover {
  color: #d7a836;
}

.social-link.small-black {
  color: #000;
  width: 30px;
  height: 30px;
}

.social-link.small-black:hover {
  color: #d09e23;
}

.div-block-54 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.gap-20 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.gap-20.ovf-hhhd {
  aspect-ratio: 1;
  overflow: hidden;
}

.link-call {
  color: #3e69c6;
  cursor: pointer;
  text-decoration: underline;
  transition: all .2s;
}

.link-call:hover {
  color: #d09e23;
  text-decoration: none;
}

.text-block-13 {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.social-icon {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.h4-black {
  color: #000;
}

.checkbox {
  margin-top: 0;
}

.checkbox-field {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: #000;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  font-size: .625em;
  line-height: 1;
  display: flex;
}

.checkbox-label {
  margin-bottom: 0;
}

.button-wrapper-form {
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.button-wrapper-form.right-aligned {
  justify-content: flex-end;
  align-items: flex-start;
}

.center-wrapper-2 {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.info-form-wrapper {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  background-color: #0000;
  border-radius: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0 100px;
  display: flex;
}

.info-form {
  width: 100%;
}

.two-input-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button {
  z-index: 3;
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  color: #fff;
  cursor: pointer;
  background-color: #0000;
  border: 1px solid #fff;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  padding: 12px 36px;
  font-size: .67em;
  transition: all .4s;
  display: flex;
  position: relative;
}

.button:hover {
  background-color: #d7a836;
  background-image: linear-gradient(#fee1a4, #9c701c);
  border-color: #d7a836;
}

.button.blue {
  background-color: #2d4d8a;
  border-bottom-color: #2d4d8a;
}

.button.black {
  background-color: var(--black);
}

.button.black:hover {
  border-color: var(--gold);
  background-color: var(--gold);
  background-image: none;
}

.text-area {
  color: #000;
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1.5px solid #6e6e6e;
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  padding: 20px 0 70px;
}

.text-area:focus {
  border-bottom-color: #b40000;
}

.text-area::placeholder {
  color: #6e6e6e;
  line-height: 1.2;
}

.form-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.success-message {
  color: #000;
  text-align: center;
  background-color: #0000;
}

.h3-black {
  color: #000;
}

.error-message {
  color: #000;
  text-align: center;
  background-color: #fff;
  font-size: .6em;
}

.input-box {
  color: #000;
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1.5px solid #6e6e6e;
  border-radius: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 20px 0;
}

.input-box:focus {
  color: #000;
  border-bottom-color: #6e6e6e;
}

.input-box::placeholder {
  color: #6e6e6e;
  line-height: 1.2;
}

.link-2 {
  color: #6e6e6e;
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
}

.link-2:hover {
  color: var(--gold);
}

.paragraph {
  font-weight: 400;
}

.div-block-56 {
  z-index: 3;
  width: 154px;
  position: absolute;
  inset: auto 20px 20px auto;
}

.image-15 {
  width: 100%;
}

.grid-4 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}

.div-block-57 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.image-16 {
  width: 40px;
}

.div-block-58 {
  flex-flow: column;
  display: flex;
}

.lower-mm {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.hide {
  display: none;
}

@media screen and (min-width: 1440px) {
  body {
    background-color: var(--white);
  }

  .section.ring {
    background-image: none;
    height: auto;
    position: relative;
  }

  .container.relative {
    z-index: 2;
    position: relative;
  }

  .button-primary.secondary.event.inactive {
    border-color: var(--black);
    color: var(--black);
  }

  .sticky-trigger.less-scroll {
    border-width: 0;
    border-color: #000;
  }

  .book-appointment-link {
    color: var(--black);
  }

  .footer-light {
    background-color: var(--black);
  }

  .map {
    margin-bottom: 0;
  }

  .big-slider {
    min-height: 600px;
  }

  .mask, .slider-image, .slide {
    height: 600px;
  }

  .grid-3 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    grid-template-rows: auto;
    width: 100%;
  }

  .div-block-10 {
    background-color: #cc990e;
    width: 100%;
  }

  .image-8 {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }

  .div-block-11 {
    width: 100%;
    max-width: 100%;
  }

  .image-9 {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 52px;
  }

  .section {
    padding-top: 140px;
  }

  .section.black.double-pd.white-agian.single-pd, .section.black.double-pd.white-agian.gggggg {
    padding-top: 10vh;
  }

  .section.ring {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section.double-pd {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .container.gap-80.nav {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    max-width: none;
  }

  .container.gap-80.extra-pd-40, .container.of-hide.extra-pd-40 {
    padding-top: 140px;
  }

  .right-align-wrapper.spacing-100 {
    padding-bottom: 100px;
  }

  .space-h1 {
    font-size: 44px;
  }

  .navbar-logo-left-container.shadow-three, .container-2 {
    max-width: none;
  }

  .nav-menu-wrapper {
    background-color: var(--white);
  }

  .nav-menu-two {
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    display: flex;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 32px;
  }

  .menu-button {
    padding: 12px;
  }

  .div-block-2, .container-3 {
    max-width: none;
  }

  .footer-wrapper-two {
    flex-wrap: wrap;
  }

  .div-block-6 {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .image-4 {
    margin-left: 0;
  }

  .text-out {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }

  .m-h1 {
    font-size: 44px;
  }

  ._3-col-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  ._2-col-grid-2 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  ._2-col-grid-2.resp-left-right {
    grid-template-columns: 1fr 1fr;
  }

  .center-wrapper-2.resp-left {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
  }

  .info-form-wrapper {
    padding: 0;
  }

  .info-form, .info-form.left-aligned {
    margin-bottom: 0;
  }

  .slide-nav-2 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 24px;
  }

  h3, p {
    font-size: 18px;
  }

  .section {
    padding-top: 60px;
  }

  .section.black.double-pd.white-agian {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.black.double-pd.white-agian.single-pd {
    padding-top: 10vh;
  }

  .section.ring, .section.double-pd {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .container.gap-160 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .container.gap-80.nav {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .container.gap-80.extra-pd-40 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding-top: 60px;
  }

  .container.relative.gap-100 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .container.of-hide.extra-pd-40 {
    padding-top: 40px;
  }

  .hero-text-wrapper {
    justify-content: center;
    align-items: center;
  }

  .paragraph-xl.align-right, .paragraph-xl.align-right.left-align-again {
    font-size: 21px;
  }

  .right-align-wrapper.spacing-100 {
    padding-bottom: 0;
  }

  ._3-col-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  ._3-col-grid.gap-16.no-margin-tp, ._3-col-grid.no-margin-tp._3-col {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  ._2-col-grid {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .grid-right-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .spaces-details-list {
    font-size: 18px;
  }

  .image-gallery-wrapper {
    aspect-ratio: auto;
    position: relative;
  }

  .gallery-light-box {
    height: auto;
  }

  .expand-icon {
    height: 24px;
  }

  .sticky-wrap {
    padding-bottom: 80vh;
  }

  .sticky-trigger.less-scroll {
    height: 120vh;
  }

  .sticky-element.no-pd {
    height: 100vh;
  }

  .center-wrapper.gap-60 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .event-card-image {
    width: 100%;
  }

  .event-title, .event-date {
    font-size: 18px;
  }

  .space-h1 {
    font-size: 38px;
  }

  .navbar-logo-left {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-wrapper {
    padding-top: 60px;
  }

  .nav-menu-two {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    text-align: left;
    border-radius: 20px;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
    padding-bottom: 0;
  }

  .nav-link {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 21px;
    font-weight: 500;
    display: inline-block;
  }

  .logo {
    width: 100px;
  }

  .footer-light {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-copyright.right {
    text-align: left;
  }

  .div-block-6 {
    grid-column-gap: 44px;
    grid-row-gap: 44px;
  }

  .image {
    height: 136px;
  }

  .image-2 {
    height: 104px;
  }

  .image-3 {
    height: 129px;
  }

  .image-4 {
    height: 134px;
  }

  .apple-vision-pro, .full-screen-image, .day-night-image-wrapper {
    height: 100vh;
  }

  .div-block-8 {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    position: static;
  }

  .lottie-animation-2 {
    aspect-ratio: 1;
    width: 100%;
    height: auto;
    margin-left: 50%;
  }

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

  .grid-2._5-cc {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .div-block-9 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .image-7 {
    width: 50%;
  }

  .grid-3 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .m-h1 {
    font-size: 38px;
  }

  ._3-col-grid-2 {
    grid-template-columns: 1fr;
  }

  .stream-card-wrapper {
    overflow: visible;
  }

  .image-ll {
    height: 130px;
  }

  .sun, .moon {
    width: 100px;
    height: 100px;
  }

  ._2-col-grid-2 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  ._2-col-grid-2.resp-left-right {
    grid-template-columns: 1fr;
  }

  .button-wrapper-form {
    flex-flow: column;
    align-items: stretch;
  }

  .center-wrapper-2.resp-left {
    text-align: left;
    justify-content: flex-start;
    align-items: center;
  }

  .info-form-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 60px 0;
  }

  .two-input-wrapper {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .list-item {
    font-size: 24px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.gap-80, .container.gap-80.nav {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .hero-text-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: wrap;
  }

  .hero-text-wrapper.bigger.page--space {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cricle {
    width: 12px;
    height: 12px;
  }

  .max-width-671.pd-100 {
    padding-top: 0;
  }

  .button-primary.boundless {
    margin-left: 0;
    font-size: 18px;
  }

  ._3-col-grid.no-margin-tp {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .grid-right-wrapper {
    flex-flow: column;
  }

  .hero-section {
    height: 90vh;
  }

  .center-wrapper.gap-60 {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .container-2 {
    max-width: none;
  }

  .nav-menu-wrapper {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-menu-two {
    flex-direction: column;
  }

  .nav-link {
    font-size: 21px;
  }

  .social-wrapper.footer-class {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-light {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-3 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .footer-wrapper-two {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-block-two {
    margin-top: 0;
  }

  .footer-divider-two {
    margin-top: 40px;
    margin-bottom: 0;
    display: none;
  }

  .footer-bottom {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    text-align: left;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright, .footer-copyright.right {
    text-align: left;
  }

  .div-block-6 {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    justify-content: space-between;
    align-items: flex-end;
    padding-left: 0;
  }

  .image {
    height: 68px;
  }

  .image-2 {
    height: 52px;
    margin-left: 40px;
  }

  .image-3 {
    height: 64.5px;
  }

  .image-4 {
    object-position: 0% 50%;
    height: 67px;
  }

  .service-list.no-mt {
    padding-left: 20px;
  }

  .h2-gold {
    font-size: 21px;
  }

  .grid-2._5-cc {
    grid-template-columns: 1fr 1fr;
  }

  .style-link-box {
    text-align: center;
  }

  ._2x2-grid {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .card-inner {
    width: 100%;
  }

  .style-block-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .div-block-12 {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .stream-card-image-wrapper {
    z-index: 1;
  }

  .stream-card-wrapper {
    overflow: visible;
  }

  .image-ll {
    height: 65px;
  }

  .sun, .moon {
    top: 60px;
    right: 60px;
  }

  .button-wrapper-form.right-aligned {
    flex-flow: column;
    align-items: stretch;
  }

  .info-form-wrapper {
    padding: 40px 0;
  }

  .two-input-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .form-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}

#w-node-e09aad95-7153-b450-9b0b-53b047270023-4727001a, #w-node-_9d7bd9dc-2338-3de8-716d-5b89afeddad9-afeddaaf, #w-node-_79793f99-04b0-c56a-4ec2-08b332d8c3e3-4b60df5d, #w-node-_700961bc-7591-338d-2295-ffea6b43504d-4b60df5d, #w-node-ddc82776-5bb8-40c0-bf3e-b90522c5b066-4b60df5d, #w-node-_83261e8c-ee02-de7a-c175-70cc06dd7ecb-4b60df5d, #w-node-_989a463a-4bab-2c12-a63e-e7e48d1c5146-4b60df5d, #w-node-_61962c68-7d30-fbde-0546-8a3eaa26f46c-c444adde, #w-node-_61962c68-7d30-fbde-0546-8a3eaa26f477-c444adde, #w-node-_3fd33ee6-2888-01b6-85f7-51dde4cb7f0d-c444adde, #w-node-_3fd33ee6-2888-01b6-85f7-51dde4cb7f18-c444adde, #w-node-_3fd33ee6-2888-01b6-85f7-51dde4cb7f23-c444adde, #w-node-_3fd33ee6-2888-01b6-85f7-51dde4cb7f2e-c444adde, #w-node-_3fd33ee6-2888-01b6-85f7-51dde4cb7f39-c444adde, #w-node-b1753651-c01d-d70d-e11d-48379b8aa617-79e2a7fb, #w-node-b1753651-c01d-d70d-e11d-48379b8aa622-79e2a7fb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_896a95ad-347c-9008-c79a-f809ea3555f0-647f23ec {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-e2fa393f-1723-2db5-07f9-699205da91d7-79e2a7fb {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


