@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@500;900&family=Noto+Sans+TC:wght@900&family=Noto+Sans:wght@400;600&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  font-size: 16px;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h2` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h2 {
  font-size: 32px;
  line-height: 32px;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

button,
input,
optgroup,
select,
textarea {
  border: none;
  background-image: none;
  background-color: transparent;
  box-shadow: none;
  outline: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

a:focus, button:focus, .button.alt:focus, input:focus, textarea:focus, input[type=button]:focus, input[type=reset]:focus, input[type=submit]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=url]:focus, input[type=password]:focus, input[type=search]:focus {
  outline-color: transparent;
}

/*----- site fonts -----*/
/* ---- site variables ---- */
/*
* General Styles
* @author Anil - PURPOSE Marketing
*/
/* -------------------------------------------------------------------------- */
:root {
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  max-width: 1920px;
  margin: 0 auto;
  color: #fff;
  transition: all 0.2s linear;
  font-family: "Noto Sans", sans-serif;
  background-color: #222222;
}

main {
  overflow: hidden;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.transition, .socials a {
  transition: all 0.2s linear;
}

a {
  color: #fff;
}

.grecaptcha-badge {
  visibility: hidden;
}

img.svg {
  display: none;
}

#svg-filters {
  height: 0;
  position: absolute;
}

h2 {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 24px;
}

p {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
}

.socials {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
}
.socials span {
  display: inline-block;
  margin-right: 15px;
}
.socials a {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
}
.socials a:hover {
  transform: scale(1.11);
}
.socials a:not(:last-of-type) {
  margin-right: 10px;
}
.socials a .svg {
  width: 100%;
  height: 100%;
}

nav a,
.btn,
#mc_embed_signup .btn {
  display: inline-block;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  width: fit-content;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid #fff;
  cursor: pointer;
  color: #ffffff;
  height: fit-content;
  letter-spacing: 0.2rem;
  transition: all 0.2s linear;
}
nav a:hover, nav a:active, nav a:focus,
.btn:hover,
.btn:active,
.btn:focus,
#mc_embed_signup .btn:hover,
#mc_embed_signup .btn:active,
#mc_embed_signup .btn:focus {
  background: rgba(255, 255, 255, 0.3019607843);
}

.parallax > div {
  position: relative;
}
.parallax > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 720px;
  background-position: center bottom;
  background-size: cover;
  padding-bottom: 24px;
}
.parallax > div:last-child {
  height: 480px;
  overflow: hidden;
}
.parallax > div:last-child div {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  clip: rect(0, auto, auto, 0);
}
.parallax > div:last-child img {
  top: 0;
  left: calc(50% - 960px);
  position: fixed;
  width: 1920px;
  transform: scale(1.03);
}

.info {
  width: 100%;
  text-align: center;
  padding: 0 16px;
  z-index: 3;
}
.info p {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 16px;
}
.info p a {
  color: #F2DF9E;
}
.info p a:hover {
  text-decoration: underline;
}
.info p:last-of-type {
  margin-bottom: 32px;
}

@media screen and (min-width: 576px) {
  h2 {
    margin-bottom: 32px;
  }
  .info {
    max-width: 680px;
    width: 80%;
    padding: 0;
  }
  .info p {
    font-size: 20px;
    line-height: 27px;
  }
  .info p:last-of-type {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1151px) {
  .parallax > div:first-child {
    justify-content: center;
    padding-bottom: 0;
    height: 480px;
  }
  .parallax > div:last-child {
    height: 480px;
  }
  .info {
    max-width: 840px;
    width: 44%;
  }
}
header.main {
  max-width: 1920px;
  margin: 0 auto;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 11;
  display: flex;
  justify-content: space-between;
  min-height: 108px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(34, 34, 34) 100%);
  padding: 16px;
}
header.main .hamburger {
  width: 26px;
  height: 35px;
  margin-left: 8px;
  display: flex;
  align-items: center;
}
header.main nav {
  display: none;
  flex-direction: column;
  flex: 0 1 auto;
  gap: 16px 15px;
  height: fit-content;
  align-items: flex-start;
  position: absolute;
  left: 70px;
}
header.main nav a span:last-child {
  display: none;
}
header.main nav a:hover > span:last-child, header.main nav a:active > span:last-child, header.main nav a:focus > span:last-child {
  display: inline;
}
header.main .side-links {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  height: 35px;
  text-transform: uppercase;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
}
header.main .side-links a:hover {
  text-decoration: underline;
}
header.main .side-links .socials {
  display: none;
}
@media screen and (min-width: 537px) {
  header.main .side-links .socials {
    display: flex;
  }
}
header.main .side-links > *:not(:first-child) {
  padding-left: 10px;
  margin-left: 18px;
  position: relative;
}
header.main .side-links > *:not(:first-child)::before {
  position: absolute;
  content: "|";
  width: 8px;
  height: 19px;
  text-align: center;
  left: -8px;
  top: 0;
  pointer-events: none;
}

@media screen and (max-width: 1150px) {
  body.open-nav {
    overflow: hidden;
  }
  body.open-nav header.main {
    height: 300px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 20%, #222 100%);
  }
  body.open-nav header.main nav {
    display: flex;
    animation-name: fadeIn;
    animation-duration: 2s;
    animation-fill-mode: forwards;
  }
}
@media screen and (min-width: 1151px) {
  header.main .hamburger {
    display: none;
  }
  header.main nav {
    display: flex;
    flex-direction: row;
    position: static;
    align-items: center;
  }
} /*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author Jonathan Suh @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
* @author James - PURPOSE Marketing
*/
/* -------------------------------------------------------------------------- */
.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 19px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 19px;
  height: 2px;
  background-color: #fff;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
  background-color: #fff;
}
.hamburger-inner::after {
  bottom: -8px;
  background-color: #fff;
}

/* -------------------------------------------------------------------------- */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Food section
 * @author Anil - PURPOSE Marketing
 */
/* -------------------------------------------------------------------------- */
#food > div:first-child {
  background-image: url("../images/bg-hills-clouds-xs.jpg");
  background-position: center 62%;
}
#food > div:last-child {
  z-index: 4;
}
#food .placeholder-img {
  position: absolute;
}
#food .placeholder-img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  position: relative;
  object-fit: cover;
  z-index: 5;
}
#food .placeholder-img.first {
  width: 58vw;
  max-width: 207px;
  height: 58vw;
  max-height: 207px;
  left: -17px;
  top: -20px;
}
#food .placeholder-img.first::before {
  content: "";
  position: absolute;
  width: 239%;
  height: 133%;
  left: -35px;
  top: 18px;
  background-image: url(../images/food-placeholder-1-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
#food .placeholder-img.second {
  width: 42vw;
  max-width: 149px;
  height: 42vw;
  max-height: 155px;
  right: 26px;
  top: 150px;
}
#food .placeholder-img.second::before {
  content: "";
  position: absolute;
  width: 198%;
  height: 134%;
  left: 17px;
  bottom: 73px;
  background-image: url(../images/food-placeholder-2-bg.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  z-index: 1;
}
@media screen and (min-width: 576px) {
  #food > div:first-child {
    background-image: url("../images/bg-hills-clouds.png");
    background-position: center 62%;
  }
  #food .placeholder-img.first {
    width: 31vw;
    max-width: 249px;
    height: 31vw;
    max-height: 248px;
    left: 35px;
    top: 30px;
  }
  #food .placeholder-img.first::before {
    top: 17px;
  }
  #food .placeholder-img.second {
    width: 31vw;
    max-width: 219px;
    height: 31vw;
    max-height: 228px;
    top: 102px;
    right: 14vw;
  }
  #food .placeholder-img.second::before {
    left: 21px;
    bottom: 86px;
  }
}
@media screen and (min-width: 1151px) {
  #food .placeholder-img.first {
    width: 23vw;
    max-width: 425px;
    height: 23vw;
    max-height: 425px;
    left: 60px;
    top: -65px;
  }
  #food .placeholder-img.first::before {
    left: -63px;
    top: 26px;
  }
  #food .placeholder-img.second {
    width: 18vw;
    max-width: 342px;
    height: 18vw;
    max-height: 357px;
    right: 6.4vw;
    top: 174px;
  }
  #food .placeholder-img.second::before {
    left: 37px;
    bottom: 146px;
  }
}

footer.main {
  display: flex;
  flex-direction: column;
  padding: 32px 16px 16px;
  position: relative;
  background-image: url("../images/bg-hills-clouds.png");
  background-position: center 62%;
  background-size: cover;
  min-height: 494px;
}
footer.main::before {
  content: "";
  width: 152px;
  height: 330px;
  background-image: url(../images/footer-bg-before.png);
  position: absolute;
  top: -199px;
  left: 0;
  background-position: 98%;
  background-size: cover;
}
footer.main::after {
  content: "";
  width: 235px;
  height: 260px;
  background-image: url(../images/footer-bg-after-xs.png);
  position: absolute;
  bottom: 0px;
  right: 0;
  background-size: cover;
}
footer.main > * {
  z-index: 1;
}
footer.main dl {
  display: flex;
  font-family: "Noto Sans SC", sans-serif;
  font-size: 16px;
  line-height: 21px;
  width: 100%;
  margin-bottom: 32px;
  position: relative;
}
footer.main dl::before {
  content: "";
  width: 120px;
  height: 253px;
  background-image: url(../images/footer-logo-text.png);
  position: absolute;
  top: -9px;
  right: 0;
  background-position: 98%;
  background-size: cover;
}
footer.main dl > div {
  max-width: 411px;
}
footer.main dl dt {
  font-weight: 900;
  color: #F2DF9E;
  text-transform: uppercase;
}
footer.main dl dt:not(:first-of-type) {
  margin-top: 24px;
}
footer.main dl dd {
  font-weight: 500;
  margin-bottom: 1px;
}
footer.main .form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  width: 100%;
}
footer.main .form-wrapper > * {
  max-width: 411px;
}
footer.main .form-wrapper p {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}
footer.main .copy-created {
  max-width: 291px;
  text-align: center;
  align-self: center;
}
footer.main .copy-created p {
  font-size: 14px;
  line-height: 19px;
}
footer.main .copy-created p a {
  text-decoration: underline;
}
footer.main .copy-created p:last-child, footer.main .copy-created p a {
  color: #F2DF9E;
}
@media screen and (min-width: 576px) {
  footer.main {
    padding: 32px 70px 16px;
  }
  footer.main::after {
    width: 363px;
    height: 411px;
    background-image: url(../images/footer-bg-after.png);
  }
  footer.main dl::before {
    top: -20px;
    right: 40px;
  }
  footer.main .form-wrapper {
    margin-bottom: 5px;
  }
  footer.main .copy-created {
    width: 100%;
    max-width: initial;
    text-align: right;
    align-self: flex-end;
  }
}
@media screen and (min-width: 1151px) {
  footer.main {
    padding: 109px 120px 16px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 80px;
  }
  footer.main::before {
    width: 241px;
    height: 562px;
    top: -327px;
  }
  footer.main dl,
  footer.main .form-wrapper {
    flex: 0 1 30%;
  }
  footer.main dl {
    justify-content: flex-start;
  }
  footer.main dl::before {
    display: none;
  }
  footer.main .form-wrapper {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 1873px) {
  footer.main {
    justify-content: center;
  }
  footer.main::before {
    top: -222px;
  }
  footer.main::after {
    width: 489px;
    height: 494px;
    background-size: 148%;
    background-position: 0 100%;
  }
  footer.main dl,
  footer.main .form-wrapper {
    flex: 1 1 40%;
  }
  footer.main dl {
    justify-content: flex-end;
  }
  footer.main dl::before {
    display: block;
    width: 164px;
    height: 320px;
    right: auto;
    left: 17%;
    top: -24px;
  }
}

/*
* Drinks section
* @author Anil - PURPOSE Marketing
*/
/* -------------------------------------------------------------------------- */
#drinks > div:first-child {
  background-image: url("../images/bg-hills-clouds-gray-xs.jpg");
  background-position: center bottom;
}
#drinks > div:first-child::before {
  content: "";
  width: 87.3%;
  max-width: 314px;
  aspect-ratio: 312/342;
  background-image: url(../images/drinks-before-bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left top;
  position: absolute;
  left: -20px;
  top: 93px;
  z-index: 3;
}
#drinks > div:last-child {
  z-index: 2;
}
#drinks .info p:last-of-type {
  margin-bottom: 40px;
}
#drinks .placeholder-img {
  position: absolute;
  width: 76.4vw;
  aspect-ratio: 275/256;
  right: 0;
  top: -56px;
}
#drinks .placeholder-img::before {
  content: "";
  position: absolute;
  width: 74.2%;
  aspect-ratio: 204/233;
  background-image: url(../images/drinks-placeholder-bg-1.png);
  background-size: 100%;
  background-repeat: no-repeat;
  top: 23px;
  right: 0;
  z-index: 4;
}
#drinks .placeholder-img::after {
  content: "";
  position: absolute;
  width: 59%;
  aspect-ratio: 162/97;
  background-image: url(../images/drinks-placeholder-bg-2.png);
  background-size: 100%;
  background-repeat: no-repeat;
  top: 25px;
  left: 0;
  z-index: 4;
}
#drinks .placeholder-img img {
  border-radius: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
}
#drinks .placeholder-img img:first-child {
  width: 56.4%;
  aspect-ratio: 155/161;
  right: 0;
  top: 0;
  z-index: 4;
}
#drinks .placeholder-img img:last-child {
  width: 45.5%;
  aspect-ratio: 125/130;
  left: 23px;
  bottom: 0;
  z-index: 4;
}
@media screen and (min-width: 576px) {
  #drinks > div:first-child {
    background-image: url("../images/bg-hills-clouds-gray.png");
  }
  #drinks > div:first-child::before {
    width: 55.8%;
    max-width: 409px;
    top: -57px;
  }
  #drinks .placeholder-img {
    top: -32px;
    width: 57.4vw;
    max-width: 467px;
  }
}
@media screen and (min-width: 1151px) {
  #drinks > div:first-child::before {
    max-width: 566px;
    width: 29.5%;
  }
  #drinks .placeholder-img {
    width: 27.4vw;
    max-width: 646px;
  }
  #drinks .placeholder-img::before,
  #drinks .placeholder-img img:first-child {
    z-index: 0;
  }
}

/*
 * Experience and Reservations
 * @author Anil - PURPOSE Marketing
 */
/* -------------------------------------------------------------------------- */
.experience-reservation > div:first-child {
  height: 960px;
  padding-top: 146px;
  justify-content: center;
  background-color: #000000;
}
.experience-reservation > div:first-child::before {
  content: "";
  background-image: url(../images/experience-reservation-bg-before-xs.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left bottom;
  position: absolute;
  width: 576px;
  height: 500px;
  top: -115px;
  left: -140px;
  z-index: 2;
}
.experience-reservation > div:first-child::after {
  content: "";
  background-image: url(../images/experience-reservation-bg-after.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left bottom;
  position: absolute;
  width: 501px;
  height: 343px;
  bottom: -77px;
  right: -92px;
  z-index: 2;
}
.experience-reservation h2 {
  max-width: 286px;
  white-space: pre-line;
}
.experience-reservation .info {
  text-align: left;
}
.experience-reservation .info:first-child p:last-of-type {
  margin-bottom: 48px;
}
@media screen and (min-width: 576px) {
  .experience-reservation > div:first-child::before {
    width: 841px;
    height: 733px;
    top: -173px;
    left: -206px;
  }
  .experience-reservation > div:first-child::after {
    width: 705px;
    height: 483px;
    bottom: -108px;
    right: -129px;
  }
  .experience-reservation h2 {
    max-width: fit-content;
    white-space: nowrap;
  }
  .experience-reservation .info {
    padding: 0;
  }
  .experience-reservation .info:first-child {
    max-width: 480px;
    align-self: flex-end;
    margin-right: 70px;
  }
  .experience-reservation .info:last-child {
    max-width: 640px;
    align-self: flex-start;
    margin-left: 70px;
    padding-top: 48px;
  }
  .experience-reservation .info:last-child p:last-of-type {
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 1151px) {
  .experience-reservation > div:first-child {
    padding-top: 0;
    flex-direction: row;
    column-gap: 79px;
    height: 640px;
  }
  .experience-reservation > div:first-child::before {
    background-image: url(../images/experience-reservation-bg-before.png);
    width: 1183px;
    height: 940px;
    left: -291px;
    top: -240px;
  }
  .experience-reservation > div:first-child::after {
    max-width: 1256px;
    width: 65.5%;
    max-height: 940px;
    height: 147.8%;
    aspect-ratio: 1227/940;
    bottom: -192px;
    right: -234px;
  }
  .experience-reservation .info:first-child {
    max-width: 640px;
    margin-left: 281px;
    margin-right: 0;
  }
  .experience-reservation .info:first-child p:last-of-type {
    margin-bottom: 96px;
  }
  .experience-reservation .info:last-child {
    max-width: 640px;
    margin-right: 281px;
    margin-left: 0;
    padding-top: 96px;
  }
}

footer.main #mc_embed_signup {
  background: transparent;
  clear: left;
  width: 328px;
  padding: 0;
}
footer.main #mc_embed_signup h2 {
  display: none;
}
footer.main #mc_embed_signup #mc-embedded-subscribe-form {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  margin: 0;
}
footer.main #mc_embed_signup #mc-embedded-subscribe-form .indicates-required {
  display: none;
}
footer.main #mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
  border: 2px solid #F2DF9E;
  margin-bottom: 2px;
}
footer.main #mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  margin: 0 0 16px;
  padding: 0;
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-weight: 400;
  z-index: 1;
  color: #F2DF9E;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
}
footer.main #mc_embed_signup .mc-field-group {
  padding-bottom: 0;
}
footer.main #mc_embed_signup .mc-field-group label {
  text-transform: uppercase;
  font-family: "Noto Sans SC", sans-serif;
  font-weight: 900;
  line-height: 21px;
  margin-bottom: 4px;
}
footer.main #mc_embed_signup input:not(.btn) {
  border: none;
  width: 328px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 16px;
  padding: 4px 8px;
  background-color: #fff;
  color: #791025;
  border-radius: 0;
  text-indent: 0;
}
footer.main #mc_embed_signup input.btn {
  border-radius: 0;
  margin: 0;
}
footer.main #mc_embed_signup .brandingLogo {
  display: none;
}
footer.main #mc_embed_signup .foot {
  grid-template-columns: auto auto;
  width: 100%;
  column-gap: 10px;
}
footer.main #mc_embed_signup #mce-responses, footer.main #mc_embed_signup div.response {
  margin: 0;
  padding: 0;
  font-weight: bold;
  float: left;
  width: 100%;
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
}
footer.main #mc_embed_signup #mce-responses #mce-success-response, footer.main #mc_embed_signup #mce-responses #mce-error-response, footer.main #mc_embed_signup div.response #mce-success-response, footer.main #mc_embed_signup div.response #mce-error-response {
  color: #F2DF9E;
}

/*
* Home page Intro section
* @author Anil - PURPOSE Marketing
*/
/* -------------------------------------------------------------------------- */
.intro {
  height: 710px;
  background-image: url("../images/intro-bg.jpg");
  background-size: cover;
  background-position: center top;
  position: relative;
  z-index: 1;
}
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 0%, rgb(0, 0, 0) 100%);
}
.intro div {
  height: 100%;
  padding: 0 16px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  position: relative;
}
.intro div::before {
  position: absolute;
  content: "";
  width: 199px;
  height: 111px;
  left: 0;
  bottom: 0;
  background-image: url(../images/steam-788-509.png);
  background-size: 194%;
  background-position: 99% 16%;
  background-repeat: no-repeat;
}
.intro .svg {
  margin-bottom: 24px;
  width: 246px;
  height: 160px;
}
.intro p {
  font-size: 16px;
  line-height: 22px;
}
.intro p:not(:last-of-type) {
  margin-bottom: 16px;
}
@media screen and (min-width: 576px) {
  .intro {
    height: 760px;
  }
  .intro div::before {
    width: 398px;
    height: 222px;
  }
  .intro .svg {
    width: 384px;
    height: 250px;
  }
  .intro p {
    max-width: 680px;
    font-size: 20px;
    line-height: 27px;
  }
}
@media screen and (min-width: 1151px) {
  .intro div::after {
    position: absolute;
    content: "";
    width: 755px;
    height: 153px;
    right: 0;
    top: 0;
    background-image: url(../images/steam-788-509-flipped.png);
    background-size: 104%;
    background-position: -11px bottom;
    background-repeat: no-repeat;
  }
  .intro p {
    max-width: 840px;
  }
}

/*
 * Gallery section
 * @author Anil - PURPOSE Marketing
 */
/* -------------------------------------------------------------------------- */
#gallerypage {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 108px;
  background-color: #000;
  position: relative;
}
#gallerypage::before, #gallerypage::after {
  content: "";
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
}
#gallerypage::before {
  width: 518px;
  height: 336px;
  background-image: url(../images/steam-788-509.png);
  transform: rotateY(180deg);
  background-size: 100%;
  top: -213px;
  right: -125px;
}
#gallerypage::after {
  width: 788px;
  height: 510px;
  left: -384px;
  top: 125px;
  background-image: url(../images/steam-788-509.png);
  background-size: 63%;
}
#gallerypage .logo {
  width: 246px;
  height: 160px;
  margin-bottom: 24px;
  z-index: 1;
}
#gallerypage .logo img {
  width: 100%;
  height: 100%;
}
#gallerypage h2 {
  margin-bottom: 40px;
}
#gallerypage ul {
  width: 100%;
  padding: 0 16px 41px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(107px, auto));
  gap: 4px;
}
#gallerypage ul li {
  width: 100%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 107/119;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
#gallerypage ul li.feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 238px;
}
#gallerypage ul li::before, #gallerypage ul li::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0px;
  box-sizing: border-box;
  opacity: 0;
}
#gallerypage ul li::before {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 1px solid #fff;
  inset: 2px;
  opacity: 1;
}
#gallerypage ul li::after {
  background-color: rgba(255, 255, 255, 0.3019607843);
  background-image: url(../images/icon-search.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 25px 25px;
}
#gallerypage ul li:hover::after {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
#gallerypage ul img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#gallerypage dialog#galleryDialog {
  margin: auto;
  border: none;
  background-color: transparent;
  overflow: hidden;
}
#gallerypage dialog#galleryDialog img {
  width: 100%;
  height: auto;
}
#gallerypage dialog#galleryDialog .controls {
  position: absolute;
  inset: 6px 5px;
  border: 1px solid #fff;
  width: calc(100% - 10px);
  height: calc(100% - 15px);
}
#gallerypage dialog#galleryDialog .controls button {
  width: 22px;
  height: 31px;
  background-repeat: no-repeat;
  cursor: pointer;
  position: absolute;
  top: calc(50% - 10px);
  background-position: center;
}
#gallerypage dialog#galleryDialog .controls button[value=prev] {
  left: 10px;
  background-image: url(../images/icon-prev.png);
}
#gallerypage dialog#galleryDialog .controls button[value=next] {
  right: 10px;
  background-image: url(../images/icon-next.png);
}
#gallerypage dialog#galleryDialog .controls button[value=close] {
  width: 26px;
  height: 35px;
  background-image: url(../images/icon-cross.png);
  right: 10px;
  top: 0;
}
#gallerypage dialog#galleryDialog::backdrop {
  background: rgba(255, 255, 255, 0.3019607843);
}
@media screen and (min-width: 695px) {
  #gallerypage::before {
    top: -218px;
    right: 0;
  }
  #gallerypage::after {
    left: -377px;
    top: 211px;
    background-size: 100%;
  }
  #gallerypage .logo {
    width: 384px;
    height: 250px;
  }
  #gallerypage h2 {
    margin-bottom: 56px;
  }
  #gallerypage ul {
    padding: 0 70px 41px;
    grid-template-columns: repeat(5, minmax(107px, auto));
  }
  #gallerypage ul li.feature {
    min-height: 300px;
  }
  #gallerypage ul li:nth-child(5).feature {
    grid-column: 4/span 2;
    grid-row: 1/span 2;
  }
  #gallerypage ul li:nth-child(17).feature {
    grid-column: 1/span 2;
    grid-row: 5/span 2;
  }
}
@media screen and (min-width: 1151px) {
  #gallerypage ul {
    padding: 0 280px 41px;
  }
}

/*# sourceMappingURL=styles.css.map */
