::selection {
  background-color: #e8c911;
  color: #000000;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

:root {
  --neutral-color--n-500: #000000;
  --_typography---font-family--font-family: Sora, sans-serif;
  --neutral-color--n-100: white;
  --_typography---heading--h1: 86px;
  --_typography---heading--h2: 72px;
  --_typography---heading--h3: 64px;
  --_typography---heading--h4: 54px;
  --_typography---heading--h5: 32px;
  --_typography---heading--h6: 28px;
  --_sizes---section--padding-section: 60px;
  --_sizes---container--max-width: 1400px;
  --_typography---bodytext--b3: 20px;
  --_typography---bodytext--b2: 22px;
  --_typography---bodytext--b4: 18px;
  --_typography---bodytext--b1: 24px;
  --_typography---bodytext--b5: 16px;
  --_typography---bodytext--b6: 14px;
  --neutral-color--n-200: #e7e7e7;
  --neutral-color--n-300: #b7b7b7;
  --neutral-color--n-400: #707070;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--neutral-color--n-500);
  font-family: var(--_typography---font-family--font-family);
  color: #333;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h1);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1em;
}

h2 {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h2);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1em;
}

h3 {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h3);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1em;
}

h4 {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h4);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1em;
}

h5 {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h5);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1em;
}

h6 {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h6);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1em;
}

.navbar-hero {
  flex-flow: column;
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
}

.navbar-section {
  z-index: 10;
  width: 100%;
  padding: 40px var(--_sizes---section--padding-section);
  flex: none;
  position: relative;
}

.navbar-container {
  max-width: var(--_sizes---container--max-width);
}

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

.navbar-title {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b3);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1em;
}

.navbar-logo {
  height: 40px;
  width: auto;
  display: block;
}

.navbar-menu-block {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.navbar-link {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b3);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1em;
  text-decoration: line-through;
  transition: all .3s cubic-bezier(.645, .045, .355, 1);
}

.navbar-link:hover {
  opacity: 1;
  color: #e8c911;
  text-decoration: none;
}

.navbar-menu-icon {
  display: none;
}

.hero-section {
  width: 100%;
  height: 100%;
  padding: 100px var(--_sizes---section--padding-section) 40px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-container {
  width: 100%;
  height: 100%;
  max-width: var(--_sizes---container--max-width);
  position: relative;
}

.hero-block {
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.hero-heading {
  color: var(--neutral-color--n-100);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 320px;
  font-weight: 500;
  line-height: 1em;
}

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

.button-primary {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b1);
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.button-primary:hover {
  color: #e8c911;
}

.button-primary:hover .button-primary-vertical-line,
.button-primary:hover .button-primary-horizontal-line {
  background-color: #e8c911;
}

.button-primary.cta {
  background-color: #0000;
}

.button-primary-vertical-line {
  background-color: var(--neutral-color--n-100);
  width: 1px;
  height: 40%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.button-primary-vertical-line._2nd {
  inset: 0% 0% auto auto;
}

.button-primary-vertical-line.hover {
  height: 100%;
}

.button-primary-horizontal-line {
  background-color: var(--neutral-color--n-100);
  width: 20%;
  height: 1px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.button-primary-horizontal-line._2nd {
  inset: auto auto 0% 0%;
}

.button-primary-horizontal-line.hover {
  width: 100%;
}

.hero-text-1 {
  max-width: 490px;
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b1);
  text-align: center;
  line-height: 1.4em;
}

.hero-image {
  object-fit: cover;
  width: 480px;
  height: 560px;
  position: absolute;
  top: 0;
}

.hero-heading-block {
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-section {
  width: 100%;
  height: 100vh;
  padding: 40px var(--_sizes---section--padding-section);
  position: sticky;
  top: 0;
  overflow: hidden;
}

.about-container {
  height: 100%;
  max-width: var(--_sizes---container--max-width);
}

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

.about-text-1 {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h1);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1em;
}

.about-text-2 {
  max-width: 650px;
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h5);
  text-align: center;
  font-weight: 400;
  line-height: 1.1em;
}

.about-text-3 {
  max-width: 846px;
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b5);
  text-align: center;
  font-weight: 300;
  line-height: 1.4em;
}

.about-inner-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  display: flex;
  position: relative;
}

.about-image {
  object-fit: cover;
  width: 190px;
  height: 240px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.about-image._2 {
  inset: auto auto 0% -14%;
  transform: rotate(15deg);
}

.about-image._3 {
  inset: 0% -14% auto auto;
  transform: rotate(-14deg);
}

.about-image._4 {
  inset: auto -14% 0% auto;
  transform: rotate(-15deg);
}

.about-image._1 {
  left: -14%;
  transform: rotate(15deg);
}

.about-scroll-block {
  width: 100%;
  height: 300vh;
  position: relative;
}

.menu-section {
  width: 100%;
  height: 100vh;
  padding: 60px var(--_sizes---section--padding-section);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.lounge-section {
  width: 100%;
  height: 100vh;
  padding: 60px var(--_sizes---section--padding-section);
  overflow: hidden;
}

.lounge-container {
  height: 100%;
  max-width: var(--_sizes---container--max-width);
}

.lounge-block {
  grid-column-gap: 55px;
  grid-row-gap: 55px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.lounge-heading {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h3);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1em;
}

.lounge-inner-block {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.lounge-item-block {
  cursor: pointer;
  border-bottom: 1px solid #ffffff26;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  position: relative;
}

.lounge-text-1 {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h6);
  text-align: center;
  line-height: 1em;
  position: relative;
}

.lounge-item-image {
  object-fit: cover;
  width: 210px;
  height: 140px;
  position: absolute;
}

.page-track {
  width: 100%;
  height: 500vh;
  position: relative;
}

.page-camera {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.page-frame {
  width: auto;
  height: 100%;
  display: flex;
  transform: translate(0);
}

.testimonial-section {
  width: 100vw;
  height: 100%;
  padding: 40px var(--_sizes---section--padding-section);
  flex-flow: column;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.testimonial-section._1st {
  transform: rotate(-6deg);
}

.testimonial-section._2nd {
  transform: rotate(6deg);
}

.testimonial-container {
  width: 100%;
  height: 100%;
  max-width: var(--_sizes---container--max-width);
  text-align: center;
  position: relative;
}

.testimonial-block {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.testimonial-heading {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h2);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1em;
}

.testimonial-text-1 {
  max-width: 1040px;
  color: var(--neutral-color--n-100);
  font-size: 80px;
  line-height: 1.2em;
}

.testimonial-text-2 {
  color: var(--neutral-color--n-100);
  text-transform: uppercase;
  font-size: 80px;
  line-height: 1em;
}

.testimonial-image {
  filter: brightness(50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.cta-section {
  width: 100%;
  padding: 60px var(--_sizes---section--padding-section);
  overflow: hidden;
}

.cta-container {
  max-width: var(--_sizes---container--max-width);
}

.cta-block {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.cta-image-block {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 600px;
  padding: 20px;
  display: flex;
  position: relative;
}

.cta-image {
  opacity: .5;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.cta-image-text {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h2);
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2em;
  position: relative;
}

.cta-form-block {
  width: 100%;
  margin-bottom: 0;
}

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

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

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

.cta-flex-1 {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 940px;
  display: flex;
}

.cta-text-field {
  width: 100%;
  height: auto;
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b5);
  background-color: #fff0;
  border: 1px #000;
  border-bottom: 1px solid #ffffff80;
  margin-bottom: 0;
  padding: 10px 0;
  font-weight: 300;
  line-height: 1em;
  transition: all .2s cubic-bezier(.645, .045, .355, 1);
}

.cta-text-field:focus {
  border-bottom-color: #fff;
}

.cta-field-label {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b1);
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1em;
}

.footer-section {
  width: 100%;
  padding: 100px var(--_sizes---section--padding-section) 40px;
  overflow: hidden;
}

.footer-container {
  max-width: var(--_sizes---container--max-width);
}

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

.footer-heading {
  color: #ffffff4d;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 320px;
  font-weight: 500;
  line-height: 1em;
  transition: all .5s cubic-bezier(.645, .045, .355, 1);
}

.footer-heading:hover {
  color: #e8c911;
}

.footer-menu-block {
  justify-content: space-around;
  align-items: center;
  width: 100%;
  display: flex;
}

.footer-link {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b1);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  transition: all .3s cubic-bezier(.645, .045, .355, 1);
}

.footer-link:hover {
  color: #e8c911;
}

.footer-link._2nd {
  color: var(--neutral-color--n-200);
  font-size: var(--_typography---bodytext--b4);
}

.footer-link._2nd:hover {
  color: #e8c911;
}

.footer-inner-block {
  border-top: 1px solid #ffffff4d;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  padding-top: 30px;
  display: flex;
}

.footer-text-1 {
  color: var(--neutral-color--n-200);
  font-size: var(--_typography---bodytext--b4);
  text-transform: uppercase;
  line-height: 1em;
}

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

._404-section {
  width: 100%;
  height: 100vh;
  padding: 40px var(--_sizes---section--padding-section);
  overflow: hidden;
}

._404-container {
  height: 100%;
  max-width: var(--_sizes---container--max-width);
}

._404-block {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  padding-bottom: 40px;
  display: flex;
  position: relative;
}

._404-text-1 {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b1);
  text-align: center;
  line-height: 1.4em;
  position: relative;
}

._404-heading {
  color: var(--neutral-color--n-100);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 510px;
  font-weight: 300;
  line-height: 1em;
  position: relative;
  transform: translate(0, -54px);
}

._404-image {
  opacity: .5;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.hero-style-section {
  padding: 80px var(--_sizes---section--padding-section);
  overflow: hidden;
}

.hero-style-container {
  max-width: var(--_sizes---container--max-width);
}

.hero-style-block {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero-style-heading {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h1);
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1em;
}

.license-section {
  width: 100%;
  padding: 100px var(--_sizes---section--padding-section) 220px;
  overflow: hidden;
}

.license-container {
  max-width: 940px;
}

.license-block {
  grid-column-gap: 200px;
  grid-row-gap: 200px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

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

.license-heading {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h5);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1em;
}

.license-text-1 {
  max-width: 758px;
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b1);
  text-align: center;
  line-height: 1.4em;
}

.license-link {
  color: var(--neutral-color--n-100);
}

.license-image-block {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.license-image {
  object-fit: cover;
  width: 100%;
  height: 520px;
}

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

.sg-heading {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---heading--h5);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1em;
}

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

.sg-block {
  grid-column-gap: 200px;
  grid-row-gap: 200px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.sg-container {
  max-width: 940px;
}

.sg-section {
  width: 100%;
  padding: 100px var(--_sizes---section--padding-section) 220px;
  overflow: hidden;
}

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

.sg-flex-3 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.sg-text-1 {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b1);
  line-height: 1em;
}

.sg-text-1._2nd {
  color: #ffffff80;
}

.sg-color-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.sg-color {
  background-color: var(--neutral-color--n-100);
  color: #0a0a0a80;
  width: 100%;
  height: 90px;
  font-size: var(--_typography---bodytext--b3);
  text-transform: uppercase;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  line-height: 1em;
  display: flex;
}

.sg-color.neutral-200 {
  background-color: var(--neutral-color--n-200);
}

.sg-color.neutral-300 {
  background-color: var(--neutral-color--n-300);
}

.sg-color.neutral-400 {
  background-color: var(--neutral-color--n-400);
  color: #ffffff80;
}

.sg-color.neutral-500 {
  background-color: var(--neutral-color--n-500);
  color: #ffffff80;
}

.sg-bodytext-1 {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b1);
  line-height: 1em;
}

.sg-bodytext-2 {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b2);
  line-height: 1em;
}

.sg-bodytext-3 {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b3);
  line-height: 1em;
}

.license-flex-1 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  display: flex;
}

.license-flex-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.license-text-2 {
  color: #ffffff80;
  font-size: var(--_typography---bodytext--b3);
  text-align: center;
  line-height: 1em;
}

.license-text-3 {
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b1);
  text-align: center;
  line-height: 1em;
}

.navbar-single {
  flex-flow: column;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-single-image {
  filter: brightness(60%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.hero-single-section {
  width: 100%;
  height: 100%;
  padding: 40px var(--_sizes---section--padding-section) 60px;
  position: relative;
}

.hero-single-container {
  height: 100%;
  max-width: var(--_sizes---container--max-width);
}

.hero-single-block {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.hero-single-heading {
  font-size: var(--_typography---heading--h1);
  line-height: 1em;
}

.single-section {
  width: 100%;
  padding: 140px var(--_sizes---section--padding-section);
  overflow: hidden;
}

.single-container {
  max-width: 940px;
}

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

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

.single-heading {
  font-size: var(--_typography---heading--h5);
}

.single-value {
  width: 100%;
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b1);
  line-height: 1.4em;
}

.menu-collection-list-wrapper {
  width: 100%;
}

.menu-collection-list {
  flex-flow: column;
  width: 100%;
  display: flex;
  position: relative;
}

.menu-collection-item {
  width: 100%;
  position: sticky;
  top: 0;
}

.menu-item-image {
  filter: brightness(56%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.menu-container {
  height: 100%;
  max-width: var(--_sizes---container--max-width);
  position: relative;
}

.menu-block {
  grid-column-gap: 52px;
  grid-row-gap: 52px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.menu-item-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 80px;
  font-weight: 400;
  position: absolute;
}

.menu-item-description {
  max-width: 750px;
  color: var(--neutral-color--n-100);
  font-size: var(--_typography---bodytext--b2);
  text-align: center;
  line-height: 1.4em;
  position: absolute;
  bottom: 0;
}

.about-trigger {
  pointer-events: none;
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: auto auto 0% 0%;
}

.links {
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  body {
    --_typography---font-family--font-family: Sora, sans-serif;
    --_typography---heading--h1: 86px;
    --_typography---heading--h2: 72px;
    --_typography---heading--h3: 64px;
    --_typography---heading--h4: 54px;
    --_typography---heading--h5: 32px;
    --_typography---heading--h6: 28px;
    --_typography---bodytext--b3: 20px;
    --_typography---bodytext--b2: 22px;
    --_typography---bodytext--b4: 18px;
    --_typography---bodytext--b1: 24px;
    --_typography---bodytext--b5: 16px;
    --_typography---bodytext--b6: 14px;
    --_sizes---section--padding-section: 60px;
    --_sizes---container--max-width: 1400px;
  }

  h1 {
    font-size: 134px;
  }

  .navbar-title {
    font-size: 36px;
  }

  .navbar-menu-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background-color: var(--neutral-color--n-100);
    flex-flow: column;
    align-items: stretch;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    position: absolute;
    bottom: 0;
    overflow: hidden;
    transform: translate(0, 110%);
  }

  .navbar-link {
    color: var(--neutral-color--n-500);
    font-size: var(--_typography---bodytext--b2);
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
    text-decoration: none;
  }

  .navbar-link.first {
    margin-top: 30px;
  }

  .navbar-link.last {
    border-bottom-style: none;
    margin-bottom: 30px;
    padding-bottom: 0;
  }

  .navbar-menu-icon {
    cursor: pointer;
    object-fit: contain;
    width: 36px;
    display: block;
  }

  .navbar-menu-icon.close {
    display: none;
  }

  .hero-section {
    padding-top: 140px;
  }

  .hero-heading {
    font-size: 170px;
  }

  .hero-inner-block {
    grid-column-gap: 44px;
    grid-row-gap: 44px;
    flex-flow: column;
    justify-content: flex-end;
    align-items: center;
  }

  .button-primary {
    font-size: var(--_typography---bodytext--b4);
  }

  .hero-text-1 {
    max-width: 410px;
    font-size: var(--_typography---bodytext--b3);
    order: 9999;
  }

  .hero-image {
    width: 390px;
    height: 446px;
  }

  .about-block {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .about-text-1 {
    font-size: var(--_typography---heading--h5);
  }

  .about-text-2 {
    max-width: 524px;
    font-size: var(--_typography---heading--h5);
  }

  .about-text-3 {
    font-size: var(--_typography---bodytext--b4);
  }

  .about-image {
    width: 150px;
    height: 186px;
  }

  .lounge-block {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-between;
  }

  .lounge-heading {
    font-size: var(--_typography---heading--h5);
  }

  .lounge-item-block {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .lounge-text-1 {
    font-size: 20px;
  }

  .lounge-item-image {
    width: 242px;
    height: 68px;
    position: static;
  }

  .testimonial-heading {
    font-size: var(--_typography---heading--h4);
  }

  .testimonial-text-1, .testimonial-text-2 {
    font-size: 50px;
  }

  .cta-image-block {
    height: 350px;
  }

  .cta-image-text {
    font-size: var(--_typography---heading--h6);
  }

  .cta-form {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .cta-text-field {
    font-size: var(--_typography---bodytext--b5);
  }

  .cta-field-label {
    font-size: var(--_typography---bodytext--b4);
  }

  .footer-heading {
    font-size: 170px;
  }

  .footer-link {
    font-size: var(--_typography---bodytext--b3);
  }

  .footer-link._2nd {
    font-size: var(--_typography---bodytext--b4);
  }

  .footer-inner-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-text-1 {
    font-size: var(--_typography---bodytext--b4);
    text-align: center;
    order: 9999;
    line-height: 1.4em;
  }

  .footer-flex-1 {
    grid-column-gap: 44px;
    grid-row-gap: 44px;
    justify-content: center;
    align-items: center;
  }

  ._404-text-1 {
    font-size: var(--_typography---bodytext--b3);
  }

  ._404-heading {
    font-size: 356px;
    transform: translate(0, -44px);
  }

  .hero-style-heading {
    font-size: var(--_typography---heading--h3);
  }

  .license-block {
    grid-column-gap: 130px;
    grid-row-gap: 130px;
  }

  .license-inner-block {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
  }

  .license-heading {
    font-size: var(--_typography---heading--h6);
  }

  .license-text-1 {
    font-size: var(--_typography---bodytext--b3);
  }

  .license-image-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .license-image {
    height: 300px;
  }

  .sg-heading {
    font-size: var(--_typography---heading--h6);
  }

  .sg-block {
    grid-column-gap: 130px;
    grid-row-gap: 130px;
  }

  .sg-flex-2 {
    grid-column-gap: 18px;
    grid-row-gap: 18px;
  }

  .sg-text-1 {
    font-size: var(--_typography---bodytext--b4);
  }

  .sg-color {
    height: 70px;
    font-size: var(--_typography---bodytext--b5);
  }

  .license-text-2 {
    font-size: var(--_typography---bodytext--b4);
  }

  .hero-single-heading {
    font-size: var(--_typography---heading--h4);
  }

  .single-block {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .single-inner-block {
    grid-column-gap: 26px;
    grid-row-gap: 26px;
  }

  .single-heading {
    font-size: var(--_typography---heading--h6);
  }

  .single-value {
    font-size: var(--_typography---bodytext--b3);
  }

  .menu-item-title {
    font-size: 66px;
  }

  .menu-item-description {
    font-size: var(--_typography---bodytext--b3);
  }
}

@media screen and (max-width: 767px) {
  body {
    --_typography---font-family--font-family: Sora, sans-serif;
    --_typography---heading--h1: 86px;
    --_typography---heading--h2: 72px;
    --_typography---heading--h3: 64px;
    --_typography---heading--h4: 54px;
    --_typography---heading--h5: 32px;
    --_typography---heading--h6: 28px;
    --_typography---bodytext--b3: 20px;
    --_typography---bodytext--b2: 22px;
    --_typography---bodytext--b4: 18px;
    --_typography---bodytext--b1: 24px;
    --_typography---bodytext--b5: 16px;
    --_typography---bodytext--b6: 14px;
    --_sizes---section--padding-section: 40px;
    --_sizes---container--max-width: 1400px;
  }

  h1 {
    font-size: 102px;
  }

  h2 {
    font-size: 90px;
  }

  h3 {
    font-size: 80px;
  }

  h4 {
    font-size: 70px;
  }

  .navbar-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .navbar-title {
    font-size: 30px;
  }

  .navbar-menu-block {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .navbar-link {
    font-size: var(--_typography---bodytext--b3);
  }

  .navbar-menu-icon {
    width: 32px;
  }

  .hero-section {
    padding-top: 200px;
  }

  .hero-heading {
    font-size: 128px;
  }

  .button-primary {
    font-size: var(--_typography---bodytext--b5);
  }

  .hero-text-1 {
    max-width: 370px;
    font-size: var(--_typography---bodytext--b4);
  }

  .hero-image {
    width: 280px;
    height: 410px;
    top: 60px;
  }

  .about-text-1 {
    font-size: var(--_typography---heading--h6);
  }

  .about-text-2 {
    max-width: 410px;
    font-size: var(--_typography---heading--h6);
  }

  .about-image {
    width: 126px;
    height: 152px;
  }

  .lounge-heading {
    font-size: var(--_typography---heading--h6);
  }

  .lounge-item-block {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .lounge-text-1 {
    font-size: 18px;
  }

  .lounge-item-image {
    height: 72px;
  }

  .testimonial-block {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
  }

  .testimonial-heading {
    font-size: var(--_typography---heading--h5);
  }

  .testimonial-text-1, .testimonial-text-2 {
    font-size: 36px;
  }

  .cta-image-block {
    height: 300px;
  }

  .cta-image-text {
    font-size: 36px;
  }

  .cta-flex-1 {
    flex-flow: column;
  }

  .cta-text-field {
    font-size: var(--_typography---bodytext--b5);
  }

  .footer-heading {
    font-size: 128px;
  }

  .footer-link {
    font-size: var(--_typography---bodytext--b4);
  }

  .footer-link._2nd, .footer-text-1 {
    font-size: var(--_typography---bodytext--b5);
  }

  ._404-block {
    padding-top: 40px;
  }

  ._404-text-1 {
    font-size: var(--_typography---bodytext--b4);
  }

  ._404-heading {
    font-size: 290px;
    transform: translate(0, -34px);
  }

  .hero-style-heading {
    font-size: var(--_typography---heading--h5);
  }

  .license-heading {
    font-size: 42px;
  }

  .license-text-1 {
    font-size: var(--_typography---bodytext--b4);
  }

  .license-image-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .license-image {
    height: 250px;
  }

  .sg-heading {
    font-size: 42px;
  }

  .sg-text-1 {
    font-size: var(--_typography---bodytext--b5);
  }

  .sg-color {
    font-size: var(--_typography---bodytext--b6);
  }

  .license-flex-1 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .license-flex-2 {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .license-text-2 {
    font-size: var(--_typography---bodytext--b5);
  }

  .license-text-3 {
    font-size: var(--_typography---bodytext--b3);
  }

  .single-heading {
    font-size: 40px;
  }

  .single-value {
    font-size: var(--_typography---bodytext--b4);
  }

  .menu-item-title {
    font-size: 60px;
  }

  .menu-item-description {
    font-size: var(--_typography---bodytext--b4);
  }
}

@media screen and (max-width: 479px) {
  body {
    --_typography---font-family--font-family: Sora, sans-serif;
    --_typography---heading--h1: 86px;
    --_typography---heading--h2: 72px;
    --_typography---heading--h3: 64px;
    --_typography---heading--h4: 54px;
    --_typography---heading--h5: 32px;
    --_typography---heading--h6: 28px;
    --_typography---bodytext--b3: 20px;
    --_typography---bodytext--b2: 22px;
    --_typography---bodytext--b4: 18px;
    --_typography---bodytext--b1: 24px;
    --_typography---bodytext--b5: 16px;
    --_typography---bodytext--b6: 14px;
    --_sizes---section--padding-section: 30px;
    --_sizes---container--max-width: 1400px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 50px;
  }

  h3 {
    font-size: 46px;
  }

  h4 {
    font-size: 42px;
  }

  h5 {
    font-size: 38px;
  }

  h6 {
    font-size: 34px;
  }

  .navbar-title {
    font-size: 24px;
  }

  .navbar-menu-block {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-link {
    font-size: var(--_typography---bodytext--b4);
  }

  .navbar-link.first {
    margin-top: 20px;
  }

  .navbar-link.last {
    margin-bottom: 20px;
  }

  .navbar-menu-icon {
    width: 28px;
  }

  .hero-heading {
    font-size: 68px;
  }

  .hero-inner-block {
    grid-column-gap: 38px;
    grid-row-gap: 38px;
  }

  .button-primary, .hero-text-1 {
    font-size: var(--_typography---bodytext--b6);
  }

  .hero-image {
    width: 160px;
    height: 310px;
    top: 110px;
  }

  .about-text-1 {
    font-size: 42px;
  }

  .about-text-2 {
    font-size: 32px;
  }

  .about-text-3 {
    font-size: var(--_typography---bodytext--b6);
  }

  .about-image {
    width: 69px;
    height: 102px;
  }

  .lounge-heading {
    font-size: 40px;
  }

  .lounge-text-1 {
    font-size: 16px;
  }

  .lounge-item-image {
    width: 100%;
  }

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

  .testimonial-heading {
    font-size: 50px;
  }

  .testimonial-text-1, .testimonial-text-2 {
    font-size: 24px;
  }

  .cta-image-text {
    font-size: 28px;
    line-height: 1em;
  }

  .cta-text-field {
    font-size: var(--_typography---bodytext--b6);
  }

  .cta-field-label {
    font-size: var(--_typography---bodytext--b5);
  }

  .footer-heading {
    font-size: 68px;
  }

  .footer-link {
    font-size: var(--_typography---bodytext--b5);
  }

  .footer-inner-block {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .footer-text-1 {
    font-size: var(--_typography---bodytext--b6);
  }

  .footer-flex-1 {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    flex-flow: column;
  }

  ._404-text-1 {
    font-size: var(--_typography---bodytext--b5);
  }

  ._404-heading {
    font-size: 148px;
    font-weight: 400;
  }

  .hero-style-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-style-heading {
    font-size: 38px;
  }

  .license-block {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .license-inner-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .license-heading {
    font-size: 28px;
  }

  .license-text-1 {
    font-size: var(--_typography---bodytext--b5);
  }

  .license-image {
    height: 200px;
  }

  .sg-heading {
    font-size: 28px;
  }

  .sg-block {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .sg-text-1 {
    font-size: var(--_typography---bodytext--b6);
  }

  .sg-color-grid {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .sg-color {
    height: 60px;
  }

  .license-text-2 {
    font-size: var(--_typography---bodytext--b6);
  }

  .license-text-3 {
    font-size: var(--_typography---bodytext--b4);
  }

  .hero-single-heading {
    font-size: var(--_typography---heading--h6);
  }

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

  .single-inner-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .single-heading {
    font-size: 32px;
  }

  .single-value {
    font-size: var(--_typography---bodytext--b5);
  }

  .menu-item-title {
    font-size: 42px;
  }

  .menu-item-description {
    font-size: var(--_typography---bodytext--b5);
  }

  .text-block {
    text-align: center;
  }
}


