:root {
  --black: black;
  --white: white;
  --joram-blue-dark: #003779;
  --light-grey: #f4f4f4;
  --revo-blue: #448a8a;
  --toxic-waste: #fdda0b;
  --black-dark: #121212;
  --blog-text: #ddcfb8;
  --darker-black: #0c0c0c;
  --heading-gold: #827557;
  --orange: #ff7003;
  --transparent: #fff0;
  --joram-light-purple: #e2dfff;
  --joram-blue: #0b58b4;
  --black-med: #171616;
  --line-green: #a7753580;
  --revo-purple: #c0f;
  --joram-green: #20cd8b;
  --joram-pink: #ff7dcb;
  --joram-purple: #ea98ff;
  --joram-light-blue: #e7eeff;
}

body {
  color: var(--black);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  color: var(--white);
  letter-spacing: .03rem;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Royal;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 95%;
}

h2 {
  color: var(--white);
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Royal;
  font-size: 3rem;
  font-weight: 400;
  line-height: 90%;
}

h3 {
  color: var(--white);
  letter-spacing: .03rem;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Royal;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 90%;
}

h4 {
  letter-spacing: .02rem;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Royal;
  font-size: 2rem;
  font-weight: 400;
  line-height: 90%;
}

h5 {
  letter-spacing: .02rem;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Royal;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 90%;
}

h6 {
  letter-spacing: .02rem;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Royal;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 90%;
}

p {
  margin-bottom: 0;
  font-family: Specialelite;
  font-size: .9rem;
  line-height: 150%;
}

a {
  font-family: Specialelite;
  text-decoration: none;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
  font-family: Specialelite;
}

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

label {
  text-align: left;
  letter-spacing: .02rem;
  margin-bottom: .25rem;
  font-family: Specialelite;
  font-weight: 400;
}

blockquote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

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

.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;
}

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

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

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.hide-mobile-portrait {
  font-family: eurostile, sans-serif;
}

.hide {
  display: none;
}

.main-wrapper {
  overflow: hidden;
}

.margin-xsmall {
  margin: 1rem;
}

.margin-bottom, .margin-bottom.margin-xxlarge, .margin-bottom.margin-medium, .margin-bottom.margin-small, .margin-bottom.margin-large, .margin-bottom.margin-xxsmall, .margin-bottom.margin-xsmall, .margin-bottom.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.button {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #ffffffe6;
  text-align: center;
  letter-spacing: .09rem;
  text-transform: uppercase;
  background-color: #0000;
  border: 1px solid #ffffffbf;
  border-radius: 2px;
  padding: .9rem 1.5rem .7rem;
  font-family: Exo, sans-serif;
  transition: all .2s cubic-bezier(.215, .61, .355, 1);
}

.button:hover {
  border-color: var(--toxic-waste);
  background-color: var(--toxic-waste);
  color: var(--black-dark);
  transform: scale(1.025);
  box-shadow: 0 0 5px #0003;
}

.button.green-outline {
  color: var(--toxic-waste);
  background-color: #0003;
  border-color: #ffffffbf;
  transition: all .2s cubic-bezier(.215, .61, .355, 1);
}

.button.green-outline:hover {
  border-color: var(--revo-blue);
  background-color: var(--black-dark);
  color: var(--revo-blue);
  transform: scale(1.025);
  box-shadow: 0 2px 5px #0003;
}

.button.green-outline.dark-bg {
  color: var(--toxic-waste);
  -webkit-text-stroke-color: var(--toxic-waste);
  background-color: #000000a6;
  border-radius: 0;
  font-family: Exo, sans-serif;
}

.button.green-outline.dark-bg:hover {
  border-color: var(--toxic-waste);
}

.button.green-outline.dark-bg.max-width-full-mobile-landscape {
  border-radius: 0;
  font-family: eurostile, sans-serif;
}

.button.green-outline.larger {
  border-radius: 0;
  font-family: Exo, sans-serif;
  font-size: 1.1rem;
}

.button.smaller {
  opacity: .5;
  font-size: .7rem;
}

.button.smaller.ways-top-play {
  border-color: var(--black);
  background-color: var(--black-dark);
  opacity: .95;
  color: var(--revo-blue);
  cursor: pointer;
  mix-blend-mode: multiply;
  margin-bottom: 1rem;
}

.button.pricing-table.play-options.max-width-full-mobile-landscape {
  text-align: center;
  mix-blend-mode: normal;
  border-radius: 0;
  font-family: Exo, sans-serif;
  position: static;
}

.button.green-background {
  border-color: var(--toxic-waste);
  background-color: var(--toxic-waste);
  width: auto;
  color: var(--black-dark);
  border-color: var(--toxic-waste);
  background-color: var(--toxic-waste);
  width: auto;
  border-radius: 0;
  font-family: eurostile, sans-serif;
}

.text-weight-bold {
  font-weight: 700;
}

.heading-style-h3 {
  text-align: center;
  -webkit-text-stroke-color: var(--toxic-waste);
  text-transform: capitalize;
  padding-top: 10px;
  padding-bottom: 20px;
  font-family: Exo, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}

.heading-style-h3.party-page {
  color: var(--white);
  text-transform: capitalize;
  font-family: eurostile, sans-serif;
  font-size: 2rem;
  font-style: normal;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

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

.icon-height-small {
  height: 2rem;
}

.spacer-1rem {
  width: 100%;
  padding-top: 1rem;
}

.spacer-1-5rem {
  width: 100%;
  margin-top: 69px;
  padding-top: 1.5rem;
  font-size: 3rem;
  line-height: 3;
}

.loading-screen {
  z-index: 120;
  background-color: var(--black-dark);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.lottie-animation {
  width: 150px;
  display: flex;
}

.nav-bar {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: .8fr 1fr 1fr 1fr 1fr 1fr 1fr .5fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 5rem;
  display: grid;
  position: fixed;
}

.nav-bar.splash {
  z-index: 99;
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  font-variation-settings: "wght" 400, "wdth" 120;
  background-image: linear-gradient(#0a0a0a, #0c0c0ceb 48%, #0e0e0e75 79%, #12121200);
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  height: 10rem;
  padding: 0 4vw 5rem;
  display: flex;
}

.nav-bar.splash.hide {
  display: none;
}

.nav-link-wrapper {
  text-decoration: none;
}

.nav-link-wrapper.is-logo {
  flex: 0 auto;
  justify-content: flex-start;
}

.nav-link-wrapper.is-logo.w--current {
  flex: 0 auto;
  width: 100%;
  max-width: 250px;
  margin-top: 1rem;
}

.nav-link-wrapper.is-logo.footer {
  border: 1px #000;
}

.nav-link-wrapper.is-logo.footer.w--current {
  border: 1px #000;
  margin-top: -1rem;
}

.nav-link-wrapper.is-cart {
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
  margin-right: 1rem;
  transition: all .2s cubic-bezier(.215, .61, .355, 1);
  display: none;
}

.nav-link-wrapper.is-cart:hover {
  transform: translate(0, -4px);
}

.nav-link-wrapper.is-mobile-menu-icon {
  justify-content: center;
  align-items: center;
  transition: all .2s cubic-bezier(.215, .61, .355, 1);
  display: none;
}

.nav-link-wrapper.is-mobile-menu-icon:hover {
  transform: translate(0, -4px);
}

.nav-link-wrapper.is-text {
  color: var(--white);
  border-bottom: 1px solid #f4f4f440;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: flex-start;
  margin-right: 1.2vw;
  padding-left: .02rem;
  padding-right: .2svw;
  font-size: .8rem;
  line-height: 140%;
  text-decoration: none;
  transition: all .2s cubic-bezier(.215, .61, .355, 1);
  display: flex;
}

.nav-link-wrapper.is-text:hover {
  color: var(--revo-blue);
  transform: translate(0, -.15rem);
}

.nav-link-wrapper.is-text.w--current {
  color: var(--revo-blue);
  padding-right: .2svw;
}

.nav-link-wrapper.is-text.w--current:hover {
  color: var(--orange);
}

.nav-link-wrapper.is-text.book-now {
  color: var(--revo-blue);
  cursor: pointer;
  border: 1px solid #448a8a;
  border-radius: 2px;
  padding: 1rem 1rem .7rem;
  line-height: 100%;
}

.nav-link-wrapper.is-text.book-now:hover {
  background-color: var(--revo-blue);
  color: var(--darker-black);
}

.nav-link-wrapper.is-text.book-now.footer {
  text-align: center;
  text-align: center;
  border-radius: 0;
  flex: 1;
  align-self: stretch;
  display: flex;
}

.nav-link-text {
  text-align: left;
  letter-spacing: .06rem;
  align-self: auto;
  font-family: eurostile, sans-serif;
}

.nav-link-text.is-secondary {
  opacity: .5;
  font-variation-settings: "wght" 311, "wdth" 114.3;
  text-align: left;
  letter-spacing: .03rem;
  font-size: .7rem;
}

.nav-link-text.is-secondary.footer {
  color: var(--white);
  border-top-style: none;
  font-family: Exo, sans-serif;
}

.nav-link-text.is-secondary.footer.address {
  background-color: var(--transparent);
  background-image: none;
  padding-right: 1rem;
}

.nav-link-text.is-secondary.footer.address.mobile-menu {
  background-color: #fff0;
}

.nav-link-text.is-secondary.break-word.text-align-center {
  text-align: center;
  text-align: center;
}

.nav-link-text.is-secondary.footer-green {
  opacity: .9;
}

.nav-link-text.text-color-heading-green {
  color: var(--revo-blue);
  font-family: eurostile, sans-serif;
}

.embed-centre-centre {
  color: var(--white);
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-flex-vertical {
  flex-direction: column;
  display: flex;
}

.div-flex-vertical.is-footer {
  grid-column-gap: 0px;
  grid-row-gap: 6px;
  justify-content: flex-start;
  align-items: stretch;
  padding-right: 1rem;
  font-size: .8rem;
}

.div-flex-vertical.is-footer.line {
  justify-content: space-between;
  padding-right: .5rem;
}

.div-flex-vertical.is-footer.is-link {
  grid-row-gap: 2px;
  color: var(--white);
  flex: 1;
  justify-content: flex-start;
  padding-right: 0;
}

.div-flex-vertical.is-footer.is-link:hover {
  color: var(--revo-blue);
}

.div-block {
  width: 100vw;
  display: flex;
  overflow: hidden;
}

.footer-marquee-wrapper {
  color: var(--white);
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.grid-footer {
  grid-column-gap: 0px;
  grid-row-gap: 1rem;
  color: var(--white);
  grid-template-rows: minmax(2rem, 2rem) auto auto;
  grid-template-columns: 1.25fr 1fr max-content min-content 1fr 1fr 1fr max-content min-content 1fr 1fr;
  margin-top: 0;
  margin-bottom: 1.5rem;
  padding: 2rem 4.1vw;
  font-family: Specialelite;
}

.grid-footer.tablet-down {
  grid-row-gap: 0rem;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  display: none;
}

.grid-footer.desktop-only {
  grid-row-gap: 0rem;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr .252fr 1fr 1fr 1fr 1fr;
}

.grid-footer.desktop-only.landing {
  grid-template-rows: auto;
  grid-template-columns: 1fr .25fr 1fr .25fr 1fr .25fr 1fr .25fr;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.text-owis {
  z-index: 2;
  opacity: 1;
  color: #423509b3;
  mix-blend-mode: normal;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  width: 100%;
  padding-left: 2rem;
  font-size: 15vh;
  line-height: 85%;
}

.social-icon {
  color: var(--revo-blue);
  transition: all .2s cubic-bezier(.215, .61, .355, 1);
  display: flex;
}

.social-icon:hover {
  opacity: .75;
}

.social-icon.landing-page {
  color: var(--joram-light-purple);
}

.social-icon.landing-page.dark {
  color: var(--joram-blue);
}

.text-owis-wrapper {
  width: 100%;
}

.text-owis-wrapper.left {
  z-index: 1;
  z-index: 1;
  flex: 1;
  align-self: center;
  align-items: stretch;
  width: auto;
  display: flex;
}

.footer {
  z-index: 20;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1.5px solid #000;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  font-family: Specialelite;
}

.footer.background {
  background-image: linear-gradient(to bottom, var(--black-med), var(--black));
}

.footer.background.landing-page {
  background-color: var(--joram-blue-dark);
  background-image: none;
  border: 1px #000;
  font-family: Agrandirvariable, Arial, sans-serif;
  display: block;
}

.footer.background.featured {
  background-color: #2542ac;
  background-image: none;
  border-top: 1px #000;
  border-left: 1px #000;
  border-right: 1px #000;
  font-family: Agrandirvariable, Arial, sans-serif;
}

.position-relative {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all .2s cubic-bezier(.215, .61, .355, 1);
  position: relative;
}

.position-relative:hover {
  color: #361c0d;
}

.footer-bottom-image-wrapper {
  justify-content: center;
  align-items: center;
  min-height: 12vh;
  max-height: 15vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.flex-type-with-plus {
  align-items: center;
  padding-right: 4.1vw;
  display: flex;
}

.flex-type-with-plus.social-icons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  padding-right: 0;
}

.flex-type-with-plus.social-icons.footer {
  border-top-style: none;
  margin-top: .5px;
}

.container-full-width {
  width: 100%;
  height: 75%;
  margin-left: auto;
  margin-right: auto;
}

.container-full-width.position-relative {
  height: auto;
}

.overlay-full {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.overlay-full.background-gradient-taper-bottom {
  z-index: 2;
  opacity: 1;
  mix-blend-mode: hard-light;
  background-color: #0006;
  background-image: linear-gradient(0deg, #12121200 71%, #0c0c0c99);
}

.overlay-full.background-gradient-taper-bottom.blog-hero {
  background-image: linear-gradient(to top, var(--darker-black), #12121200);
  mix-blend-mode: normal;
  height: 101%;
}

.overlay-full.background-gradient-taper-bottom.lighter {
  background-color: #0000004d;
}

.overlay-full.background-gradient-taper-bottom {
  z-index: 2;
  opacity: 1;
  mix-blend-mode: hard-light;
  background-image: linear-gradient(to top, #0c0c0c99 25%, #12121200 71%);
}

.overlay-full.background-full {
  z-index: 2;
  opacity: .5;
  mix-blend-mode: hard-light;
  background-image: linear-gradient(0deg, #121212, #12121280);
}

.overlay-full.background-full.memberships-benefits {
  z-index: auto;
  background-image: linear-gradient(#12121269, #12121269);
  position: static;
}

.overlay-full.background-full.league {
  background-image: linear-gradient(to top, #000, #30303045 93%, #0000);
}

.overlay-full.background-full.halfsize {
  height: 50vh;
}

.hero-background {
  z-index: 1;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.logo {
  max-width: 260px;
}

.logo.is-hero-splash {
  filter: grayscale();
  width: 500px;
  max-width: none;
  display: none;
}

.logo.splash-nav {
  width: 100%;
  min-width: 100px;
  max-width: 250px;
  margin-top: -.25rem;
  margin-bottom: -.25rem;
  margin-right: .5rem;
}

.logo.footer-2 {
  width: 100%;
  max-width: 80px;
  margin-right: .5rem;
  padding-bottom: 1rem;
}

.hero-contents {
  z-index: 3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  padding: 0 8vw 8vw;
  display: flex;
  position: relative;
}

.hero-contents.lettersection {
  height: auto;
  padding-bottom: 5vw;
  font-family: eurostile, sans-serif;
}

.nav-links-container {
  grid-row-gap: 1rem;
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-end;
  align-self: center;
  align-items: center;
  width: 100%;
  margin: 1.5rem 0 0;
  display: flex;
  overflow: visible;
}

.main-heading-secondary {
  color: var(--toxic-waste);
  letter-spacing: .05rem;
  -webkit-text-stroke-color: var(--toxic-waste);
  font-family: eurostile, sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

.main-heading-secondary.textstyle-cap {
  text-transform: uppercase;
}

.main-heading-secondary.see-more {
  opacity: .75;
  color: var(--white);
  letter-spacing: .09rem;
  font-size: .9rem;
}

.hero-image {
  mix-blend-mode: soft-light;
  object-fit: cover;
  object-position: 50% 50%;
  background-color: #000;
  background-image: linear-gradient(0deg, #000, #000 100%, #fff);
  width: 100%;
  height: 100%;
}

.hero-image.hide-mobile-portrait {
  display: block;
}

.see-more-div-wrapper {
  z-index: 4;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2rem 2rem;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.text-color-heading-green {
  color: var(--toxic-waste);
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
}

.text-color-heading-green.pricing-table-tier-title {
  color: var(--revo-blue);
  font-size: 2.35rem;
}

.text-color-heading-green.pricing-table-tier-title.play-options {
  color: var(--toxic-waste);
  text-align: center;
  -webkit-text-stroke-color: var(--toxic-waste);
  padding-top: 12px;
  font-family: eurostile, sans-serif;
  font-size: 2.5rem;
  line-height: 100%;
}

.text-color-heading-green.pricing-table-tier-title.play-options.how-long {
  color: var(--toxic-waste);
  font-size: 1.9rem;
  line-height: 100%;
}

.text-color-heading-green.play-options {
  letter-spacing: .025rem;
  font-size: 1.15rem;
  font-weight: 500;
}

.text-color-heading-green.text-decoration-underline {
  text-decoration: underline;
}

.nav-links-container-mobile {
  grid-column-gap: 4.1vw;
  grid-row-gap: 4.1vw;
  display: none;
}

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

.spacer-2rem {
  width: 100%;
  padding-top: 2rem;
}

.section-learn-hero {
  background-color: var(--black);
  min-height: 100dvh;
  overflow: hidden;
}

.section-learn-hero.letter {
  min-height: auto;
}

.footer-vertical-divider {
  background-color: var(--revo-blue);
  width: 1px;
  height: 100%;
}

.footer-mobile-landscape-links-wrapper {
  grid-row-gap: .75rem;
  flex-direction: column;
  display: flex;
}

.footer-contact-details-wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.footer-buttons-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  justify-content: space-around;
  padding-bottom: 1.5rem;
  display: flex;
  position: relative;
}

.contact12_contact-list {
  grid-column-gap: 3rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.contact12_component {
  grid-column-gap: 4.1vw;
  grid-row-gap: 4.1vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.contact12_item {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.contact12_item.hours {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.contact12_item.location {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  flex-direction: column;
}

.contact12_item.hours {
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  grid-column-gap: 1.75rem;
  grid-row-gap: 1.75rem;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.contact12_icon-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  align-items: center;
  display: flex;
}

.map {
  border-radius: 8px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.heading-2 {
  aspect-ratio: auto;
  text-align: center;
  object-fit: fill;
  padding-left: 20px;
  padding-right: 20px;
  font-family: eurostile, sans-serif;
  font-size: 7rem;
  font-weight: 700;
}

.heading-2.homelgmob {
  margin-top: 8rem;
  font-family: eurostile, sans-serif;
}

.container {
  border: 3px none var(--revo-purple);
  border-radius: 20px;
  max-width: none;
  margin-top: 20px;
  margin-left: 0;
  margin-right: 0;
  padding-top: 20px;
  position: static;
}

.code-embed {
  box-sizing: content-box;
  aspect-ratio: auto;
  text-align: center;
  object-fit: none;
  object-position: 50% 50%;
  margin-bottom: 0;
  padding: 60px 0 0;
}

.code-embed-2 {
  margin-bottom: 10px;
}

.div-block-3 {
  min-width: 30vw;
  min-height: auto;
}

.padding-global-3 {
  padding: 0 4vw 4vw;
}

.hours-wrapper-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1.75fr;
  grid-auto-columns: 1fr;
  justify-items: end;
  display: grid;
}

.main-heading-secondary-3 {
  color: #fdda0b;
  letter-spacing: .05rem;
  -webkit-text-stroke-color: var(--toxic-waste);
  font-family: eurostile, sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

.main-heading-secondary-3.cap {
  text-transform: uppercase;
}

.main-heading-secondary-3.text-colour-orange {
  color: #ff7003;
}

.text-size-regular-opacity90-2 {
  opacity: .9;
  color: #fff;
  font-family: eurostile, sans-serif;
  font-size: 1rem;
  display: flex;
}

.text-size-regular-opacity90-2.text-color-heading-green {
  color: #fdda0b;
}

.text-size-regular-opacity90-2.link {
  text-decoration: underline;
}

.text-size-regular-opacity90-2.link.text-spacing-larger {
  letter-spacing: .025rem;
}

.text-size-regular-opacity90-2.link.text-spacing-larger.wrap.text-colour-orange {
  color: #ff7003;
}

.section_contact12-2 {
  color: #fff;
  margin-top: 100px;
  font-family: Gustavo;
}

.section-8 {
  display: none;
}

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

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: none;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .button.green-outline {
    font-size: .9rem;
  }

  .button.green-background, .button.green-outline {
    font-size: .9rem;
  }

  .button.pricing-table {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .button.green-background {
    font-size: .9rem;
  }

  .heading-style-h3 {
    font-size: 2.25rem;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .spacer-3rem {
    padding-top: 2.5rem;
  }

  .lottie-animation {
    width: 100px;
  }

  .nav-link-wrapper.is-logo {
    margin-left: 0;
    padding-left: .025rem;
  }

  .nav-link-wrapper.is-logo.w--current {
    flex: none;
    margin-left: 0;
    padding-left: 0;
  }

  .nav-link-wrapper.is-logo.footer {
    margin-left: 0;
  }

  .nav-link-wrapper.is-mobile-menu-icon {
    width: 48px;
    height: 48px;
    color: var(--white);
    padding: .5rem;
    display: flex;
  }

  .nav-link-wrapper.is-mobile-menu-icon:hover {
    color: var(--revo-blue);
    transform: none;
  }

  .nav-link-wrapper.is-mobile-menu-icon.close-mobile-menu {
    justify-content: flex-end;
    display: flex;
  }

  .nav-link-wrapper.is-text {
    display: none;
  }

  .nav-link-wrapper.is-text.mobile {
    height: 60px;
    padding-left: .25rem;
    padding-right: 2rem;
    font-family: Exo, sans-serif;
    display: flex;
  }

  .nav-link-wrapper.is-text.mobile.w--current {
    border-bottom-color: var(--revo-blue);
  }

  .nav-link-wrapper.is-text.mobile.socials {
    border-bottom-style: none;
    height: 70px;
    margin-top: .25rem;
  }

  .nav-link-wrapper.is-text.mobile.no-bottom-border {
    border-bottom-style: none;
  }

  .nav-link-wrapper.is-text.book-now.mobile {
    margin-top: .75rem;
    margin-bottom: 0;
    padding-right: .25rem;
  }

  .nav-link-wrapper.is-text.book-now.mobile.primary {
    background-color: var(--revo-blue);
    color: var(--darker-black);
    background-color: var(--revo-blue);
  }

  .nav-link-wrapper.is-text.book-now.footer {
    order: -1;
    min-height: 75px;
  }

  .nav-link-text {
    font-family: Exo, sans-serif;
    font-weight: 400;
  }

  .nav-link-text.is-secondary.footer.address.mobile-menu {
    opacity: .8;
  }

  .nav-link-text.is-secondary.footer.address.mobile-menu.underline {
    text-decoration: underline;
  }

  .nav-link-text.is-secondary.break-word.text-align-center {
    text-align: left;
    text-align: left;
  }

  .nav-link-text.text-weight-bold {
    font-weight: 500;
  }

  .div-flex-vertical.is-footer.socials-heading {
    display: none;
  }

  .div-flex-vertical.is-footer.ipad-padding {
    padding-top: .5rem;
  }

  .div-flex-vertical.is-footer.line {
    align-items: flex-start;
  }

  .div-flex-vertical.is-footer.line.address {
    padding-bottom: .5rem;
  }

  .div-flex-vertical.is-footer.is-link {
    align-items: flex-start;
  }

  .grid-footer {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-template-rows: 2px auto auto auto auto auto;
    grid-template-columns: 1.25fr 1fr 1fr;
    margin-top: 2rem;
  }

  .grid-footer.tablet-down {
    grid-column-gap: 1rem;
    grid-row-gap: 0rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .grid-footer.desktop-only {
    grid-row-gap: 0rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    display: none;
  }

  .grid-footer.desktop-only.landing {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .footer.background.landing-page {
    height: 100%;
    display: block;
  }

  .text-size-small-2 {
    font-size: .83rem;
    line-height: 145%;
  }

  .div-divider-line-footer {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .div-divider-line-footer.is-footer {
    width: 100%;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .flex-type-with-plus.social-icons {
    margin-top: .25rem;
  }

  .flex-type-with-plus.social-icons.mobile-menu {
    margin-bottom: -.5rem;
    padding-top: .25rem;
  }

  .flex-type-with-plus.social-icons.footer {
    width: 100%;
  }

  .text-wrapper.faqs {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .spacer-under-secondary-heading {
    height: 1.75rem;
  }

  .content-faqs {
    grid-row-gap: 2rem;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    padding-top: 2rem;
  }

  .faq-container.top {
    padding-top: 1rem;
  }

  .heading-the-venue, .heading-the-venue.mobile-sizing.play-options, .heading-the-venue.mobile-sizing.play-options, .heading-the-venue.mobile-sizing.play-options {
    font-size: 2rem;
  }

  .logo.splash-nav, .logo.footer-2, .logo.splash-nav, .logo.footer-2 {
    cursor: pointer;
  }

  .venue-text-wrapper.membership-options {
    width: auto;
  }

  .nav-links-container {
    cursor: pointer;
    flex: 0 auto;
    justify-content: flex-end;
    width: auto;
    max-width: none;
    margin-top: -.75rem;
    margin-right: -1vw;
    transition: all .2s cubic-bezier(.215, .61, .355, 1);
  }

  .wrapper-main-heading.heading-pricing-table {
    display: flex;
  }

  .wrapper-main-heading.heading-pricing-table.play-options {
    justify-content: center;
  }

  .heading-main-heading {
    text-align: center;
  }

  .heading-main-heading.smaller-text {
    font-size: 2rem;
  }

  .main-heading-secondary {
    font-weight: 400;
  }

  .heading-hero {
    font-size: 4rem;
  }

  .heading-hero.secondary {
    font-size: 2rem;
  }

  .heading-hero.play-options {
    font-size: 7svw;
  }

  .wrapper-ways-to-play-card-contents {
    padding: 2rem 2rem 2.5rem;
  }

  .heading-ways-to-play-card, .text-color-heading-green.pricing-table-tier-title {
    font-size: 2rem;
  }

  .text-color-heading-green.pricing-table-tier-title {
    font-size: 2rem;
  }

  .text-color-heading-green.pricing-table-tier-title.play-options {
    font-size: 3rem;
  }

  .text-color-heading-green.pricing-table-tier-title.play-options.how-long {
    font-size: 1.5rem;
  }

  .text-footer-heading {
    font-size: .83rem;
    line-height: 145%;
  }

  .span-address-ligther.mobile-menu {
    opacity: 1;
    color: var(--heading-gold);
    opacity: 1;
  }

  .nav-links-container-mobile {
    z-index: 100;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    background-color: var(--black-dark);
    flex-direction: column;
    justify-content: space-between;
    width: 75vw;
    height: 100%;
    min-height: 100dvh;
    max-height: 100svh;
    padding: 3.5rem 3rem 4dvh 2rem;
    display: none;
    position: fixed;
    inset: 0% 0% 0% auto;
    overflow: auto;
    box-shadow: 0 2px 9px #0003;
  }

  .mobile-menu-close-wrapper {
    z-index: 101;
    padding-top: 1.65rem;
    padding-left: 4.1vw;
    padding-right: 4.1vw;
    position: absolute;
    inset: 0% 0% auto auto;
  }

  .moble-menu-full-width-container {
    z-index: 100;
    background-color: #222a1cb8;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .grid-membership-options-4col {
    grid-template-rows: auto auto;
    grid-template-columns: 50vw 50vw;
  }

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

  .image-full-hero.overlay-member-benefits {
    object-position: 50% 30%;
  }

  .image-full-hero.overlay-member-benefits.position-top {
    object-position: 50% 25%;
    object-position: 50% 25%;
  }

  .mask-2col {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    width: 100vw;
  }

  .grid-2col {
    grid-row-gap: 2.5rem;
    grid-template: "."
                   "."
                   / 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .slide-2col {
    width: 100vw;
  }

  .grid-2col-text-content {
    margin-left: 4.1vw;
    margin-right: 4.1vw;
    padding-top: 3rem;
    padding-bottom: 5rem;
  }

  .spacer-2rem {
    padding-top: 2.5rem;
  }

  .text-size-extra-large.text-color-white {
    font-size: 1.2rem;
  }

  .pricing22_top-row-wrapper {
    padding-bottom: .5rem;
  }

  .pricing22_top-row-content.players {
    justify-content: flex-start;
  }

  .pricing22_top-row-price-month {
    font-size: 1rem;
  }

  .pricing22_top-row-price-month.text-color-white.how-long {
    font-size: 1.2rem;
  }

  .pricing22_top-row {
    margin-bottom: 0;
  }

  .pricing22_top-row.play-options {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .pricing22_top-row.play-options.how-long {
    grid-column-gap: .25rem;
    grid-row-gap: 1.5rem;
    grid-column-gap: .25rem;
    grid-row-gap: 1.5rem;
    margin-top: 3.5rem;
    padding-left: 1.1vw;
    padding-right: 1.1vw;
  }

  .pricing22_feature {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .section_pricing22 {
    padding-top: 1rem;
  }

  .section_pricing22.with-outline {
    padding-top: 0;
    padding-left: 3vw;
    padding-right: 3vw;
  }

  .pricing-table-price {
    font-size: 2.9rem;
  }

  .section-learn-our-coach {
    padding-bottom: 2rem;
  }

  .slider-2col.v1 {
    width: 100vw;
    height: 45vh;
    overflow: hidden;
  }

  .slider-2col.v1.learn-from-the-data {
    height: 80vh;
  }

  .section-learn-data {
    padding-bottom: 4rem;
  }

  .blog-post3-content_content {
    margin-bottom: 3rem;
  }

  .smash-factor-mobile-footer-wrapper {
    color: var(--white);
    flex-direction: column;
    margin-top: 2rem;
    display: flex;
  }

  .line-footer-vertical {
    display: none;
  }

  .footer-mobile-landscape-links-wrapper {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-direction: column;
    display: flex;
  }

  .footer-logo-name-wrapper {
    flex: 1;
  }

  .footer-contact-details-wrapper {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-direction: column;
    display: flex;
  }

  .footer-buttons-wrapper {
    grid-column-gap: 1rem;
    flex-direction: row;
    padding-top: 1.5rem;
  }

  .text-hero-secondary {
    white-space: break-spaces;
    font-size: 1.2rem;
    line-height: 140%;
  }

  .heading-hero-w-padding {
    font-size: 4rem;
  }

  .heading-4col {
    font-size: 2rem;
  }

  .text-size-medium-opacity90 {
    font-size: 1rem;
  }

  .contact12_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .contact12_item.hours {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-direction: column;
  }

  .heading-2 {
    font-size: 6rem;
  }

  .bold-text-11 {
    font-size: 6svw;
  }

  .slide-4col {
    width: 100vw;
  }

  .grid-membership-options-3col-copy {
    grid-template-rows: auto auto;
    grid-template-columns: 50vw 50vw;
  }

  .grid-membership-options-3col-copy.parties-only.test {
    flex-flow: column;
    grid-template-rows: auto;
    display: flex;
  }

  .pricing22_top-row-price-month-2 {
    font-size: 1rem;
  }

  .text-color-heading-green-2.pricing-table-tier-title {
    font-size: 2rem;
  }

  .text-pricing-table-feature-2 {
    font-size: 1rem;
  }

  .pricing-table-price-2 {
    font-size: 2.9rem;
  }

  .button-3.pricing-table {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-ways-to-play-card-2 {
    font-size: 2rem;
  }

  .pricing22_row-2 {
    height: auto;
  }

  .pricing22_row-2.background-color-gray {
    border-radius: 2px;
  }

  .pricing22_top-row-2 {
    margin-bottom: 0;
  }

  .pricing22_row-content-2 {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .heading-main-heading-2 {
    text-align: center;
  }

  .section_pricing22-2 {
    padding-top: 1rem;
  }

  .section-2, .section-3 {
    display: block;
  }

  .heading-13 {
    font-size: 3rem;
  }

  .heading-14 {
    font-size: 1.75rem;
  }

  .container-2 {
    max-width: 728px;
  }

  .gallery-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-slider-left {
    left: -20px;
  }

  .gallery-slider-right {
    right: -20px;
  }

  .container-4 {
    max-width: 728px;
  }

  .testimonial-grid-two {
    grid-column-gap: 30px;
  }

  .testimonial-info-three {
    flex-direction: column;
  }

  .bold-text-31, .bold-text-32, .bold-text-33 {
    font-size: 6svw;
  }

  .section-13 {
    margin-top: 40px;
  }

  .menu-icon4_line-middle-top {
    z-index: 2;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    inset: 0;
  }

  .button-book-now {
    font-size: .9rem;
  }

  .button-book-now.is-blue.is-outline.is-raiting-wrapper {
    text-align: center;
    text-align: center;
    text-align: center;
    text-align: center;
  }

  .navbar31_container {
    grid-auto-columns: 1fr;
  }

  .menu-icon4_line-middle-base {
    background-color: var(--\<unknown\|relume-variable-color-scheme-1-text\>);
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: absolute;
  }

  .menu-icon4_line-middle {
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: static;
  }

  .navbar31_menu-wrapper {
    padding-top: 2rem;
  }

  .menu-icon4_line-bottom, .menu-icon4_line-top {
    width: 20px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar31_links-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1.5rem;
  }

  .navbar31_menu-button {
    margin-left: -.5rem;
    padding: 0;
  }

  .navbar31_menu-button.w--open {
    background-color: #0000;
  }

  .navbar31_menu {
    flex-direction: column;
    justify-content: center;
  }

  .menu-icon4 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: relative;
  }

  .menu-icon4_wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .navbar31_link {
    font-size: 2.5rem;
  }

  .navbar31_link.is-blue {
    font-size: 1.9rem;
  }

  .header139_card {
    justify-content: center;
  }

  .padding-section-large-3 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .padding-section-large-3.hero-section {
    padding-bottom: 0;
  }

  .banner11_text-wrapper {
    text-align: center;
  }

  .banner11_text-wrapper.msot-pop {
    inset: -2rem 0% auto;
    inset: -2rem 0% auto;
  }

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

  .layout4_content {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .testimonial36_grid-list {
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }

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

  .comparison3_icon-wrapper {
    font-variation-settings: "wght" 600, "wdth" 100;
  }

  .comparison3_top-row-content {
    justify-content: flex-end;
    align-items: center;
    padding: 1.5rem 1rem;
  }

  .comparison3_top-row-content.background-color-secondary {
    justify-content: flex-end;
    align-items: center;
  }

  .comparison3_top-row-title {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .comparison3_row-content.middle {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .comparison3_row, .comparison3_top-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .heading-style-h6-3 {
    font-size: .75rem;
  }

  .faq10_content {
    grid-column-gap: 3rem;
    grid-row-gap: 4rem;
  }

  .footer4_logo {
    max-width: 100px;
  }

  .heading-h1-hero-new {
    font-size: 3.5rem;
  }

  .layout473_content {
    grid-column-gap: 0vw;
    grid-row-gap: 0vw;
    grid-template-columns: 1fr;
  }

  .layout473_content-left {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .layout473_content-left.slide-up {
    margin-top: 2rem;
    position: static;
  }

  .heading-h2.is-blue {
    font-size: 3rem;
  }

  .padding-section-large10rem {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .secondary-heading.party-inclusions {
    font-size: .9rem;
  }

  .heading-tile-s2 {
    font-size: 1.3rem;
  }

  .padding-section-epic-reasons {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }

  .migra-hero {
    font-size: 1.35rem;
  }

  .social-proof-wrapper {
    width: 95vw;
    margin-top: 100px;
    position: absolute;
  }

  .wrapper-grid-trusted {
    grid-template-columns: 1fr;
  }

  .button-group-3 {
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
  }

  .margin-bottom-epic-heading {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-party-table {
    font-size: 1.5rem;
  }

  .heading-party-table.is-purple {
    font-size: 1.6rem;
  }

  .heading-party-table.is-purple.opacity-lower {
    font-size: 1.5rem;
  }

  .smaller-script-span {
    font-size: 1.2rem;
  }

  .small-card-heading-wrapper {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h1-3 {
    font-size: 3.25rem;
  }

  .heading-style-h4-4 {
    font-size: 1.75rem;
  }

  .pricing13_feature {
    grid-column-gap: .5rem;
    grid-row-gap: .35rem;
    color: var(--joram-blue);
    font-variation-settings: "wght" 500, "wdth" 90;
    font-size: .9rem;
  }

  .pricing13_plan.budget, .pricing13_plan.premium, .pricing13_plan.ultimate, .pricing13_plan.budget, .pricing13_plan.premium, .pricing13_plan.ultimate {
    flex-flow: column;
  }

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

  .button-wrapper-pricing-card {
    margin-top: 1.5rem;
  }

  .container-5 {
    max-width: 728px;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    top: 70px;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

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

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    padding: 12px;
  }

  .menu-button.w--open {
    color: #fff;
    background-color: #a6b1bf;
  }

  .container-6 {
    max-width: 728px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .container-8 {
    max-width: 728px;
  }

  .hero-wrapper-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split-2 {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-split-2.fisrt {
    order: -9999;
  }
}

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

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .hide-mobile-portrait, .hide-mobile-landscape {
    display: none;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-xsmall {
    margin: .75rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .button.green-outline.dark-bg.max-width-full-mobile-landscape {
    width: auto;
  }

  .button.smaller.ways-top-play {
    display: none;
  }

  .button.pricing-table {
    width: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .6rem;
  }

  .button.pricing-table.play-options {
    font-size: .85rem;
  }

  .button.pricing-table.play-options.max-width-full-mobile-landscape {
    width: 100%;
  }

  .heading-style-h3 {
    padding-left: 55px;
    padding-right: 55px;
    font-size: 1.5rem;
  }

  .heading-style-h3.party-page {
    padding-left: 99px;
    padding-right: 99px;
    font-size: 1.5rem;
  }

  .button-group {
    justify-content: center;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .spacer-1rem {
    padding-top: .75rem;
  }

  .spacer-1-5rem {
    padding-top: 1.25rem;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-3rem {
    padding-top: 2rem;
  }

  .nav-bar.splash {
    padding-left: 4.1vw;
    padding-right: 4.1vw;
    display: flex;
  }

  .nav-link-wrapper.is-logo {
    justify-content: flex-start;
    margin-left: 0%;
  }

  .nav-link-wrapper.is-text.mobile {
    height: 55px;
  }

  .nav-link-text.is-secondary.break-word {
    word-break: break-all;
    word-break: break-all;
    word-break: break-all;
  }

  .div-flex-vertical.is-footer.line {
    flex-direction: column;
    justify-content: flex-end;
  }

  .grid-footer {
    grid-row-gap: 1rem;
    grid-template-rows: auto auto auto;
    grid-template-columns: 37.4vw 27.2vw 27.2vw;
  }

  .grid-footer.desktop-only.landing {
    grid-row-gap: 2rem;
    grid-row-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .text-size-small-2 {
    font-size: .785rem;
    line-height: 140%;
  }

  .div-divider-line-footer {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .div-divider-line-footer.is-footer {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .spacer-under-secondary-heading {
    height: 1.5rem;
  }

  .wrapper-right {
    text-align: center;
  }

  .faq-question-container {
    margin-left: 0;
  }

  .spacer-under-main-heading {
    height: 1rem;
  }

  .faq-container.top {
    padding-top: 0;
  }

  .grid-the-venue {
    grid-template-rows: auto auto auto;
    grid-template-columns: 100vw;
  }

  .image-full-bg {
    transform: scale3d(1none, 1none, 1none);
  }

  .wrapper-the-venue-card.border-right {
    border-right-style: none;
  }

  .wrapper-venue-card-contents {
    grid-template-rows: 30vh minmax(auto, 1fr);
    padding: 2rem 8.2vw 2.5rem;
  }

  .overlay-full.background-gradient-taper-bottom {
    background-image: linear-gradient(to top, #0c0c0ccc 25%, #12121200 71%);
  }

  .heading-the-venue {
    font-size: 2.7rem;
  }

  .heading-the-venue.mobile-sizing {
    font-size: 3rem;
  }

  .heading-the-venue.mobile-sizing.play-options {
    font-size: 1.6rem;
    line-height: 100%;
  }

  .wrapper-main-heading.heading-pricing-table {
    text-align: left;
  }

  .wrapper-main-heading.heading-pricing-table.play-options.text-align-center {
    text-align: center;
    text-align: center;
    text-align: center;
  }

  .wrapper-ways-to-play-card {
    border-radius: 10px;
    overflow: hidden;
  }

  .hero-image.hide-mobile-portrait {
    display: none;
  }

  .heading-hero {
    font-size: 3.6rem;
  }

  .heading-hero.secondary {
    font-size: 1.8rem;
  }

  .heading-hero.play-options {
    font-size: 3rem;
  }

  .heading-ways-to-play-card {
    font-size: 2.7rem;
  }

  .text-color-heading-green.pricing-table-tier-title {
    font-size: 1.3rem;
  }

  .text-footer-heading {
    font-size: .785rem;
    line-height: 140%;
  }

  .nav-links-container-mobile {
    padding-left: 1.5rem;
    padding-right: 2rem;
  }

  .heading-style-1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .moble-menu-full-width-container {
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .grid-membership-options-4col {
    grid-template-rows: auto auto auto;
    grid-template-columns: 100vw;
  }

  .image-full-hero.overlay-member-benefits {
    object-fit: cover;
    object-position: 50% 30%;
  }

  .image-full-hero.overlay-member-benefits.position-top {
    object-position: 50% 25%;
    object-position: 50% 25%;
  }

  .spacer-2rem {
    padding-top: 2rem;
  }

  .benefit-container {
    width: auto;
    padding-left: 16.6vw;
    padding-right: 16.6vw;
  }

  .text-size-extra-large {
    font-size: 1.125rem;
  }

  .text-size-extra-large.text-color-white {
    font-size: 1.1rem;
  }

  .pricing22_empty-space {
    display: block;
  }

  .pricing22_top-row-wrapper {
    padding-bottom: 0;
  }

  .pricing22_top-row-wrapper.players {
    padding-left: .2rem;
    padding-right: .2rem;
  }

  .pricing22_top-row-content.players {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .pricing22_top-row-content.play-options {
    border: 1px solid #8bc205bf;
    border-radius: 1rem;
    padding-top: 1.5rem;
    padding-bottom: .5rem;
  }

  .pricing22_top-row-price-month {
    opacity: .75;
    white-space: pre-line;
    word-break: normal;
    font-size: 1rem;
    line-height: 1;
    display: inline-block;
  }

  .pricing22_top-row {
    grid-column-gap: 0rem;
    grid-template-columns: 1.1fr 1fr 1fr 1fr 1fr;
    margin-bottom: 1.25rem;
  }

  .pricing22_top-row.play-options {
    grid-column-gap: 1rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .pricing22_top-row.play-options.how-long {
    grid-template-rows: auto auto auto auto auto;
  }

  .pricing22_feature {
    padding: .75rem .25rem .75rem 1rem;
  }

  .pricing22_bottom-row-content {
    align-items: center;
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .pricing-table-price {
    padding-top: .25rem;
    font-size: 3rem;
    line-height: 1;
  }

  .section-play-pricing {
    background-color: var(--black-med);
    padding-top: 4rem;
  }

  .slide-nav {
    display: none;
  }

  .grid-play-options {
    grid-template-rows: auto auto auto;
    grid-template-columns: 100vw;
  }

  .price-play-options-wrapper {
    justify-content: center;
    align-items: center;
  }

  .section-learn-our-coach {
    padding-bottom: 1rem;
  }

  .slider-2col.v1 {
    height: 35vh;
  }

  .slider-2col.v1.learn-from-the-data {
    height: 45vh;
  }

  .section-learn-pricing {
    background-color: var(--black-med);
    padding-top: 4rem;
  }

  .text-size-medium-2 {
    font-size: 1rem;
  }

  .blog-post3-content_content {
    margin-bottom: 2rem;
  }

  .text-hero-secondary {
    font-size: 1.1rem;
  }

  .heading-hero-w-padding {
    padding-left: 0;
    padding-right: 0;
    font-size: 3.6rem;
  }

  .heading-secondary-green {
    font-size: 1.2rem;
  }

  .heading-4col {
    font-size: 3rem;
  }

  .text-size-medium-opacity90 {
    font-size: 1rem;
  }

  .text-size-medium-opacity90.text-align-center.max-width-large, .text-size-regular-opacity90 {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact12_component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .heading-2 {
    margin-right: 0;
    padding-left: 100px;
    padding-right: 100px;
    font-size: 4rem;
  }

  .heading-2.homelgmob {
    font-size: 5rem;
  }

  .grid-membership-options-3col-copy {
    grid-template-rows: auto auto auto;
    grid-template-columns: 100vw;
  }

  .pricing22_top-row-price-month-2 {
    opacity: .75;
    white-space: pre-line;
    word-break: normal;
    font-size: 1rem;
    line-height: 1;
    display: inline-block;
  }

  .text-color-heading-green-2.pricing-table-tier-title {
    font-size: 1.3rem;
  }

  .text-pricing-table-feature-2 {
    font-size: .7rem;
  }

  .pricing-table-price-2 {
    padding-top: .25rem;
    font-size: 3rem;
    line-height: 1;
  }

  .button-3.pricing-table-highlight {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .6rem;
  }

  .button-3.smaller.ways-top-play {
    display: none;
  }

  .button-3.pricing-table {
    width: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: .6rem;
  }

  .pricing22_bottom-row-2 {
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    padding-top: 2rem;
  }

  .heading-ways-to-play-card-2 {
    font-size: 2.7rem;
  }

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

  .pricing22_row-2.background-color-gray {
    font-size: .75rem;
  }

  .pricing22_top-row-2 {
    grid-column-gap: 0rem;
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    margin-bottom: 1.25rem;
  }

  .pricing22_row-content-2 {
    padding: .75rem .25rem;
    font-size: .65rem;
  }

  .code-embed-2 {
    width: 100%;
    position: fixed;
  }

  .italic-text {
    padding-left: 0;
  }

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

  .section-9 {
    width: 100%;
    position: fixed;
  }

  .code-embed-6 {
    width: 100%;
  }

  .quick-stack {
    margin-top: 498px;
  }

  .gallery-slider {
    padding: 60px 15px;
  }

  .gallery-slide {
    margin-left: 10px;
    margin-right: 10px;
  }

  .gallery-slider-left {
    left: -20px;
  }

  .gallery-slider-right {
    right: -20px;
  }

  .testimonial-column-light {
    padding: 60px 15px;
  }

  .testimonial-grid-two {
    grid-template-columns: 1fr;
  }

  .testimonial-text-two {
    font-size: 1.25rem;
  }

  .testimonial-info-three {
    flex-direction: row;
  }

  .image-5 {
    display: none;
  }

  .section-13 {
    margin-top: 0;
    padding-top: 60px;
  }

  .button-book-now {
    font-size: .75rem;
  }

  .navbar31_links-wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar31_menu {
    width: 60vw;
  }

  .navbar31_component {
    min-height: 4rem;
  }

  .navbar31_link {
    font-size: 1.5rem;
  }

  .navbar31_link.is-blue {
    font-variation-settings: "wght" 500, "wdth" 100;
    font-variation-settings: "wght" 500, "wdth" 100;
    font-size: 1.4rem;
    line-height: .95;
  }

  .padding-section-large-3 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .banner11_text-wrapper.msot-pop {
    top: -1.5rem;
    left: auto;
    right: 1rem;
  }

  .layout521_row {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr 1fr;
  }

  .layout521_grid-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

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

  .layout521_card.text-color-white {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .layout521_card.text-color-white.smaller {
    padding-left: .7rem;
    padding-right: .7rem;
  }

  .layout4_content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout4_image-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .testimonial36_grid-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .testimonial36_grid-list.slide-up {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .testimonial36_client {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .testimonial36_card {
    border-width: 2px;
    padding: 1.5rem;
  }

  .layout434_content {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .comparison3_top-row-title {
    display: none;
  }

  .comparison3_row-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .comparison3_row-content.middle.mob-abov {
    border-bottom: 1px solid #000;
    display: block;
  }

  .comparison3_row {
    grid-template-columns: 33% 33% 33%;
  }

  .comparison3_top-row {
    z-index: 2;
    grid-template-columns: 33% 33% 33%;
  }

  .comparison3_feature {
    font-variation-settings: "wdth" 76.4, "wght" 450;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    width: auto;
    padding-right: 1rem;
    display: flex;
    position: relative;
  }

  .heading-style-h6-3 {
    font-variation-settings: "wght" 600, "wdth" 90;
    font-size: 1.125rem;
  }

  .faq10_list.first-col {
    border-bottom-style: none;
  }

  .faq10_content {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .faq10_icon-wrapper {
    width: 1.75rem;
  }

  .faq10_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .cta33_logo {
    max-height: 3rem;
  }

  .cta33_logo-row {
    grid-column-gap: 3rem;
    padding: 1rem;
  }

  .footer4_logo {
    max-width: 300px;
  }

  .footer4_link {
    font-variation-settings: "wght" 450, "wdth" 120;
  }

  .footer4_link.lighter.dark, .footer4_link.dark, .footer4_link.lighter.dark, .footer4_link.lighter.dark, .footer4_link.dark {
    font-size: .75rem;
  }

  .heading-h1-hero-new {
    font-family: Agrandirvariable, Arial, sans-serif;
    font-size: 3rem;
  }

  .layout473_content {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .layout473_image-group {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .layout473_content-left {
    margin-top: 3rem;
  }

  .heading-h2.is-blue-migra {
    font-size: 2.75rem;
  }

  .heading-h2.cta {
    font-size: 2.5rem;
  }

  .padding-section-large10rem {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .heading-tile-s1 {
    font-size: 1.8rem;
  }

  .secondary-heading {
    font-size: 1rem;
  }

  .secondary-heading.card.smaller {
    font-size: .8rem;
  }

  .heading-tile-s2 {
    width: 100%;
  }

  .padding-section-epic-reasons {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .migra-hero {
    font-size: 1rem;
  }

  .social-proof-wrapper {
    width: 90vw;
    padding-bottom: 2.5rem;
  }

  .margin-bottom-epic-heading {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-party-table {
    font-variation-settings: "wght" 600, "wdth" 100;
  }

  .heading-party-table.is-green {
    font-size: 1.4rem;
  }

  .heading-party-table.is-purple {
    font-size: 1.5rem;
  }

  .rating-avatar.hero {
    width: 1.5rem;
    height: 1.5rem;
  }

  .small-card-heading-wrapper {
    margin: 0 0 .5rem;
  }

  .text-span-4 {
    font-size: 1.4rem;
  }

  .cover-over {
    background-color: var(--white);
  }

  .heading-style-h1-3 {
    font-variation-settings: "wght" 600, "wdth" 85;
    font-size: 2.5rem;
  }

  .heading-style-h4-4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .pricing13_plan {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .pricing13_plan.budget, .pricing13_plan.premium, .pricing13_plan.ultimate, .pricing13_plan.budget, .pricing13_plan.premium, .pricing13_plan.ultimate {
    padding: 1.25rem;
  }

  .pricing13_feature-list {
    grid-template-columns: 1fr;
  }

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

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

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

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
    box-shadow: none;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .hero-heading-center, .hero-heading-right, .hero-heading-left, .hero-heading-right-2 {
    padding: 60px 15px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 2.5rem;
  }

  label {
    font-size: .9rem;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.iamge {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .icon-1x1-xsmall.mobile.span-green {
    color: var(--white);
  }

  .icon-1x1-xsmall.mobile-up {
    display: none;
  }

  .icon-1x1-xsmall.mobile {
    color: #c0f;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .button.green-outline.dark-bg.max-width-full-mobile-landscape {
    width: auto;
  }

  .button.green-outline.larger {
    box-sizing: border-box;
    border-radius: 0;
    font-size: .9rem;
  }

  .button.smaller.ways-top-play {
    margin-bottom: 0;
  }

  .button.pricing-table {
    width: 100%;
    padding: .5rem;
  }

  .button.pricing-table.play-options.max-width-full-mobile-landscape.mixedsizetable {
    width: 75vw;
  }

  .button.green-background {
    background-color: var(--toxic-waste);
    margin-top: 19px;
    font-size: .8rem;
  }

  .text-size-regular.text-color-white.faq-answer {
    font-size: .85rem;
  }

  .heading-style-h3 {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1rem;
  }

  .heading-style-h3.party-page {
    margin-top: 2.6rem;
    padding-left: 40px;
    padding-right: 40px;
  }

  .heading-style-h3.homepage {
    font-size: 1.5rem;
  }

  .button-group {
    flex-direction: row;
    align-items: stretch;
    margin-top: 0;
    margin-bottom: 173px;
  }

  .icon-embed-xsmall {
    width: 1.25rem;
    height: 1.25rem;
    padding-top: 0;
  }

  .padding-global {
    padding: 1rem;
  }

  .padding-section-large.blog-post {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .spacer-medium {
    padding-top: .5rem;
  }

  .lottie-animation {
    width: 90px;
  }

  .nav-bar.splash {
    justify-content: space-between;
    height: 7rem;
    padding-bottom: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-link-wrapper.is-logo {
    margin-top: .25rem;
    margin-left: 0;
  }

  .nav-link-wrapper.is-logo.w--current {
    flex: none;
  }

  .nav-link-wrapper.is-text.book-now.footer {
    padding: 1rem;
  }

  .nav-link-text {
    font-family: Exo, sans-serif;
    font-size: .75rem;
  }

  .nav-link-text.is-secondary {
    font-size: .65rem;
  }

  .nav-link-text.is-secondary.break-word.text-align-center {
    word-break: normal;
    word-break: normal;
    word-break: normal;
  }

  .nav-link-text.text-align-center {
    text-align: center;
  }

  .div-flex-vertical.is-footer.socials-heading {
    margin-top: 1rem;
    display: block;
  }

  .div-flex-vertical.is-footer.ipad-padding {
    justify-content: flex-start;
    padding-top: 0;
  }

  .div-flex-vertical.is-footer.credits {
    text-align: center;
  }

  .div-flex-vertical.is-footer.line {
    min-height: auto;
  }

  .hide-desktop-tablet-mob-p {
    display: block;
  }

  .grid-footer {
    grid-template-rows: 2px auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
    grid-template-columns: 1.25fr 1fr;
    margin-top: 0;
    margin-bottom: .5rem;
  }

  .grid-footer.tablet-down {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 1rem;
  }

  .grid-footer.desktop-only {
    grid-template-rows: auto auto;
    grid-template-columns: 1.25fr 1fr;
    padding-bottom: 1rem;
  }

  .grid-footer.desktop-only.landing {
    grid-row-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .text-size-small-2 {
    font-size: .75rem;
    line-height: 132%;
  }

  .div-divider-line-footer {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .flex-type-with-plus {
    padding-right: 8.3vw;
  }

  .flex-type-with-plus.social-icons {
    padding-right: 0;
  }

  .text-wrapper {
    width: 89vw;
  }

  .spacer-under-secondary-heading {
    height: 1rem;
  }

  .content-faqs {
    grid-row-gap: 1.5rem;
    min-height: auto;
    padding-top: 1rem;
    padding-bottom: 3rem;
  }

  .text-wrapper-left {
    width: 100%;
  }

  .spacer-under-main-heading {
    height: 1.25rem;
  }

  .heading-faq-question {
    font-size: .9rem;
    font-weight: 400;
  }

  .wrapper-venue-card-contents {
    grid-template-rows: minmax(auto, 1fr);
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .wrapper-venue-card-contents.play-options {
    grid-template-rows: 40vh minmax(auto, 1fr);
    padding: 0 0 2rem;
  }

  .wrapper-venue-card-contents.groups {
    flex-flow: row;
    grid-template-rows: 20vh minmax(auto, 1fr);
    justify-content: center;
    align-items: stretch;
    padding-left: 1rem;
    padding-right: 1rem;
    display: flex;
  }

  .overlay-full.background-gradient-taper-bottom {
    background-image: linear-gradient(to top, #0c0c0cbf 27%, #12121200 89%);
  }

  .heading-the-venue.mobile-sizing {
    font-size: 2.5rem;
    line-height: 100%;
  }

  .heading-the-venue.mobile-sizing.play-options {
    font-size: 1.3rem;
  }

  .logo.splash-nav {
    max-width: 200px;
  }

  .hero-contents {
    height: 100svh;
    padding-bottom: 25vw;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .venue-text-wrapper.play-options {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-links-container {
    margin-top: 0;
    position: static;
  }

  .wrapper-main-heading.heading-pricing-table {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .wrapper-main-heading.heading-pricing-table.play-options.text-align-center {
    display: none;
  }

  .heading-main-heading {
    margin-top: .25rem;
    font-family: Exo, sans-serif;
    font-weight: 300;
  }

  .main-heading-secondary.see-more {
    font-size: .75rem;
  }

  .heading-hero {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 2.6rem;
  }

  .heading-hero.secondary {
    font-size: 1.4rem;
  }

  .heading-hero.play-options {
    font-size: 2.5rem;
  }

  .wrapper-ways-to-play-card-contents {
    grid-template-rows: 15vh 1fr;
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .wrapper-ways-to-play-overlaid {
    grid-template-rows: 20vh 1fr;
  }

  .heading-ways-to-play-card {
    overflow-wrap: normal;
    font-size: 2.25rem;
  }

  .text-color-heading-green.pricing-table-tier-title {
    white-space: nowrap;
    font-size: .85rem;
  }

  .text-color-heading-green.pricing-table-tier-title.play-options {
    font-size: 2.5rem;
  }

  .text-color-heading-green.pricing-table-tier-title.play-options.how-long {
    white-space: normal;
    white-space: normal;
  }

  .text-color-heading-green.play-options {
    letter-spacing: .05rem;
    font-size: 1.1rem;
    font-weight: 500;
  }

  .text-footer-heading {
    font-size: .75rem;
    line-height: 132%;
  }

  .span-address-ligther {
    white-space: nowrap;
  }

  .nav-links-container-mobile {
    width: auto;
    padding-left: 1rem;
    padding-right: 1.5rem;
    display: none;
  }

  .moble-menu-full-width-container {
    justify-content: space-between;
    display: none;
  }

  .image-full-hero {
    object-position: 50% 15%;
  }

  .image-full-hero.overlay-member-benefits {
    inset: 0%;
    inset: 0%;
  }

  .mask-2col {
    height: 35vh;
  }

  .mask-2col.learn-the-data {
    height: 100%;
  }

  .hero {
    font-size: 2.25rem;
  }

  .grid-2col {
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .grid-2col-text-content {
    margin-left: 1rem;
    margin-right: 1rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .benefit-container {
    padding: 2rem;
  }

  .benefit-container.learn-the-data {
    align-items: flex-end;
    min-height: 55vh;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
  }

  .text-size-extra-large.text-color-white {
    font-size: .9rem;
  }

  .pricing22_top-row-wrapper {
    border-style: none;
    padding-left: .2rem;
    padding-right: .2rem;
  }

  .pricing22_top-row-wrapper.play-options {
    border-style: none;
  }

  .pricing22_top-row-wrapper.background-highlight {
    background-color: #c0f0;
    box-shadow: 0 0 5px 2px #c0f;
  }

  .pricing22_top-row-content.play-options {
    border-width: 2px;
    border-color: var(--revo-blue);
    border-width: 2px;
    border-color: var(--revo-blue);
    border-radius: .5rem;
    justify-content: center;
    align-items: center;
    width: 90vw;
    padding: 1rem .5rem;
  }

  .pricing22_top-row-price-month {
    opacity: .75;
    white-space: break-spaces;
    min-width: 15vw;
    padding-bottom: .5rem;
    font-size: .7rem;
    line-height: 1;
    position: relative;
    top: -.25rem;
    bottom: auto;
  }

  .pricing22_top-row-price-month.span-green.play-options {
    min-width: auto;
    font-size: 1rem;
  }

  .pricing22_top-row-price-month.text-color-white.how-long {
    font-size: 1rem;
  }

  .pricing22_top-row-price-month.play-options {
    min-width: auto;
    padding-bottom: 0;
    font-size: 1rem;
    top: auto;
  }

  .pricing22_top-row {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 25vw 25vw 25vw 25vw;
    place-content: center;
    place-items: center;
    margin-bottom: -.5rem;
  }

  .pricing22_top-row.play-options {
    grid-template-columns: 1fr;
  }

  .pricing22_top-row.play-options.how-long {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pricing22_top-row.faqs {
    grid-template-columns: 1fr;
    width: 100vw;
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pricing22_feature {
    padding-left: 1rem;
    padding-right: .1rem;
  }

  .section_pricing22 {
    padding-left: 0;
    padding-right: 0;
  }

  .section_pricing22.with-outline {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section_pricing22.play-options {
    margin-top: 10px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pricing22_bottom-row-content {
    padding-left: .4rem;
    padding-right: .4rem;
  }

  .pricing-table-price {
    padding-top: 0;
    font-size: 1.3rem;
    line-height: 1;
  }

  .pricing-table-price.play-options {
    justify-content: flex-end;
    font-size: 2.5rem;
    line-height: 100%;
  }

  .section-play-pricing {
    padding-bottom: 0;
  }

  .slide-nav {
    display: none;
  }

  .price-play-options-wrapper {
    flex-direction: row;
    justify-content: center;
  }

  .section-play-hero, .section-learn-hero {
    min-height: 100svh;
  }

  .section-learn-pricing {
    margin-top: -127px;
    margin-bottom: -91px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-size-medium-2 {
    font-size: .95rem;
  }

  .text-size-medium-2.testimonial {
    font-size: .825rem;
    line-height: 140%;
  }

  .blog-post3-content_tag-list-wrapper {
    width: 100%;
  }

  .blog-post3-content_content-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-post3-content_tag-list {
    justify-content: flex-start;
  }

  .blog-post3-content_share-wrapper {
    width: 100%;
    margin-bottom: 2rem;
  }

  .footer-mobile-landscape-links-wrapper {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    flex-direction: column;
    display: flex;
  }

  .text-hero-secondary {
    font-size: 1.05rem;
    line-height: 140%;
  }

  .heading-hero-w-padding {
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 2.6rem;
  }

  .heading-secondary-green {
    font-size: 1rem;
  }

  .heading-4col {
    font-size: 10svw;
    line-height: 100%;
  }

  .text-size-medium-opacity90 {
    font-size: .9rem;
  }

  .text-size-medium-opacity90.text-align-center.max-width-large {
    font-size: 1rem;
  }

  .text-size-regular-opacity90 {
    font-size: .9rem;
  }

  .contact12_contact-list {
    grid-column-gap: 1rem;
    grid-row-gap: .5rem;
    grid-template-columns: max-content;
    margin-top: -37px;
    padding-top: 0;
  }

  .contact12_component {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    grid-template-columns: 1fr;
  }

  .contact12_item {
    justify-content: center;
  }

  .contact12_item.hours {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-direction: column;
    align-items: center;
  }

  .contact12_icon-wrapper {
    grid-column-gap: .35rem;
    grid-row-gap: .35rem;
  }

  .button-group-2 {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
  }

  .heading-2 {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 2.75rem;
    display: block;
  }

  .heading-2.homelgmob {
    font-size: 2.75rem;
  }

  .bold-text-11 {
    font-size: 8svw;
  }

  .code-embed {
    padding-top: 10px;
  }

  .grid-membership-options-3col-copy.parties-only.test {
    grid-auto-flow: row;
  }

  .heading-10-copy {
    padding-bottom: 5px;
    font-size: 2rem;
    font-weight: 700;
    line-height: 90%;
  }

  .pricing22_top-row-price-month-2 {
    opacity: .75;
    white-space: break-spaces;
    min-width: 15vw;
    padding-bottom: .5rem;
    font-size: .7rem;
    line-height: 1;
    position: relative;
    top: -.25rem;
    bottom: auto;
  }

  .text-color-heading-green-2.pricing-table-tier-title {
    white-space: nowrap;
    white-space: nowrap;
    font-size: .85rem;
  }

  .pricing-table-price-2 {
    padding-top: 0;
    font-size: 1.3rem;
    line-height: 1;
  }

  .button-3.pricing-table-highlight {
    width: 100%;
    padding: .5rem;
    transition-timing-function: cubic-bezier(.288, .1, .1, 1);
  }

  .button-3.smaller.ways-top-play {
    margin-bottom: 0;
  }

  .button-3.pricing-table {
    background-color: #0000;
    width: 100%;
    padding: .5rem;
  }

  .pricing22_bottom-row-2 {
    grid-template-columns: 25vw 25vw 25vw 25vw;
    padding-top: 1.5rem;
  }

  .heading-ways-to-play-card-2 {
    overflow-wrap: normal;
    font-size: 2.25rem;
  }

  .pricing22_row-2 {
    grid-template-columns: repeat(auto-fit, 25vw) 25vw 25vw 25vw;
  }

  .pricing22_row-2.background-color-gray {
    grid-template-columns: 25vw 25vw 25vw 25vw;
  }

  .pricing22_top-row-2 {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 25vw 25vw 25vw 25vw;
    place-content: center;
    place-items: center;
    margin-bottom: -.5rem;
  }

  .pricing22_row-content-2 {
    justify-content: center;
    padding-left: .15rem;
    padding-right: .2rem;
  }

  .section_pricing22-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .section-2 {
    display: none;
  }

  .div-block-3 {
    min-width: 80vw;
  }

  .padding-global-3 {
    margin-bottom: -6px;
    padding: 1rem 1rem 0;
  }

  .hours-wrapper-2 {
    grid-column-gap: 0px;
    grid-row-gap: .75rem;
    grid-template-columns: 90vw;
    grid-auto-columns: 1vw;
    justify-items: start;
  }

  .main-heading-secondary-3 {
    margin-top: 1rem;
  }

  .text-size-regular-opacity90-2 {
    text-align: center;
    font-size: .9rem;
  }

  .text-size-regular-opacity90-2.text-color-heading-green {
    color: #fff;
  }

  .text-size-regular-opacity90-2.link.text-spacing-larger.wrap {
    word-break: break-all;
    word-break: break-all;
    word-break: break-all;
  }

  .div-block-6 {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: none;
    overflow: hidden;
  }

  .heading-13 {
    text-align: center;
    font-size: 2.5rem;
  }

  .heading-14 {
    text-align: center;
    font-size: 1.25rem;
  }

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

  .gallery-wrapper {
    grid-template-columns: 1fr;
  }

  .gallery-slide-wrapper {
    max-width: 100%;
    margin-right: 0%;
  }

  .gallery-slider-left {
    left: -20px;
  }

  .gallery-slider-right {
    right: -20px;
  }

  .heading-15.value {
    margin-top: -1.4rem;
  }

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

  .centered-heading-2 {
    margin-bottom: 24px;
  }

  .paragraph-3 {
    font-weight: 700;
  }

  .heading-16 {
    font-size: 1.5svw;
  }

  .section-13 {
    padding-top: 0;
  }

  .button-book-now {
    font-variation-settings: "wght" 580, "wdth" 101.8;
    padding: .8rem 1.25rem .7rem;
  }

  .button-book-now.is-blue.is-outline.is-raiting-wrapper {
    text-align: left;
    text-align: left;
    text-align: left;
  }

  .button-book-now.smaller {
    border-width: 2px;
  }

  .menu-icon4_line-middle {
    width: 15px;
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .menu-icon4_line-bottom, .menu-icon4_line-top {
    width: 15px;
  }

  .navbar31_links-wrapper {
    grid-template-columns: 1fr;
  }

  .navbar31_menu {
    width: 85dvw;
  }

  .menu-icon4 {
    width: 35px;
    height: 35px;
    margin-right: -.75rem;
  }

  .navbar31_component {
    padding-top: 2rem;
    padding-left: 1.5rem;
  }

  .navbar31_link.is-blue {
    font-size: 1.3rem;
    line-height: .75;
  }

  .header139_card {
    height: auto;
  }

  .padding-section-large-3.easy, .padding-section-large-3.testimonials {
    padding-bottom: 3rem;
  }

  .padding-section-large-3.easy, .padding-section-large-3.testimonials {
    padding-bottom: 3rem;
  }

  .padding-section-large-3.experience {
    padding-bottom: 4rem;
  }

  .section_header139.color-scheme-8 {
    min-height: 100svh;
    padding: .5rem;
  }

  .padding-global-4 {
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 8rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .banner11_text-wrapper.msot-pop {
    right: .75rem;
  }

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

  .padding-global-5.tigher {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .layout521_card.text-color-white {
    min-height: 50vh;
  }

  .layout521_card.text-color-white.smaller {
    aspect-ratio: 2 / 2.5;
    aspect-ratio: 2 / 2.5;
    height: 100%;
    padding: .65rem .65rem .75rem;
  }

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

  .layout4_image-wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .padding-global-6 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .testimonial36_grid-list {
    grid-template-rows: auto;
  }

  .testimonial36_grid-list.slide-up {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .icon-embed-xsmall-3 {
    width: 1rem;
    height: 1rem;
  }

  .testimonial36_card {
    padding: .75rem;
  }

  .padding-global-7 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .layout434_content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .padding-global-8 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .comparison3_top-row-content {
    padding: 1rem .5rem;
  }

  .comparison3_top-row-content.middle {
    border-top-width: 2px;
    border-left-width: 2px;
    border-right-width: 2px;
  }

  .comparison3_top-row-title {
    padding: 1rem .5rem;
  }

  .comparison3_row-content.middle {
    border-left-width: 2px;
    border-right-width: 2px;
  }

  .comparison3_row-content.middle.bottom {
    border-bottom-width: 2px;
  }

  .comparison3_row-content.middle.mob-abov {
    border-bottom-style: none;
    border-left-width: 2px;
    border-right-width: 2px;
  }

  .comparison3_feature {
    border-top: 1px solid #000;
    border-bottom-style: none;
    border-bottom-color: #000;
  }

  .padding-global-9 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

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

  .faq10_question {
    border-top-width: 2px;
  }

  .cta33_logo.merc {
    max-width: 200px;
    margin-top: 1rem;
  }

  .cta33_logo.desti {
    margin-top: -.5rem;
  }

  .cta33_logo.pg {
    margin-top: -1rem;
  }

  .cta33_logo.woiw {
    margin-top: .5rem;
    margin-bottom: 1rem;
  }

  .cta33_logo-row {
    justify-content: center;
  }

  .footer4_logo {
    max-width: 200px;
  }

  .heading-h1-hero-new {
    font-variation-settings: "wght" 630, "wdth" 100;
    font-family: Agrandirvariable, Arial, sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
  }

  .layout473_image-group {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .layout473_content-left {
    margin-top: 1rem;
  }

  .padding-global-13 {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .heading-h2.is-blue {
    font-variation-settings: "wght" 630, "wdth" 100;
    padding-left: .25rem;
    padding-right: .25rem;
    font-size: 2.15rem;
  }

  .heading-h2.is-blue-migra {
    font-size: 2.65rem;
  }

  .heading-h2.cta {
    font-variation-settings: "wght" 630, "wdth" 100;
    font-size: 2.5rem;
  }

  .heading-tile-s1 {
    font-variation-settings: "wght" 630, "wdth" 100;
  }

  .secondary-heading {
    font-size: .9rem;
  }

  .secondary-heading.card.smaller {
    opacity: .85;
    opacity: .85;
    font-size: .75rem;
    line-height: 115%;
  }

  .secondary-heading.party-inclusions {
    font-size: .7rem;
  }

  .secondary-heading.party-inclusions.b-page {
    font-size: .875rem;
  }

  .secondary-heading.paragraph {
    font-variation-settings: "wght" 400, "wdth" 83.6;
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .heading-tile-s2 {
    font-variation-settings: "wght" 600, "wdth" 100;
    font-size: 1.2rem;
  }

  .migra-hero {
    opacity: .8;
    font-size: .9rem;
  }

  .social-proof-wrapper {
    grid-row-gap: .5rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    height: auto;
    margin-top: 0;
    padding-bottom: 1rem;
  }

  .button-group-3.tripple {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .paragraphfaq {
    font-variation-settings: "wght" 400, "wdth" 100;
    font-size: .85rem;
  }

  .margin-bottom-epic-heading {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .rating-avatar.hero {
    width: 1.25rem;
    height: 1.25rem;
  }

  .small-card-heading-wrapper {
    margin: 0 0 .35rem;
  }

  .div-block-11 {
    position: sticky;
    bottom: 0;
  }

  .pricing13_content-top {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
  }

  .pricing13_feature {
    grid-column-gap: .25rem;
    font-size: .875rem;
  }

  .pricing13_feature.is-green {
    justify-content: flex-start;
    align-items: center;
  }

  .pricing13_plan.budget, .pricing13_plan.premium, .pricing13_plan.ultimate, .pricing13_plan.budget, .pricing13_plan.premium, .pricing13_plan.ultimate {
    padding: .5rem;
  }

  .pricing13_feature-list {
    grid-row-gap: .5rem;
  }

  .button-wrapper-pricing-card {
    margin-top: 1rem;
    margin-bottom: .5rem;
  }

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

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

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

  .centered-heading {
    margin-bottom: 24px;
  }

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

#w-node-b5975d0a-85fd-3961-f31b-5db687948293-96799f46, #w-node-b5975d0a-85fd-3961-f31b-5db6879482cb-96799f46 {
  justify-self: start;
}

#w-node-b5975d0a-85fd-3961-f31b-5db6879482f5-96799f46 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_0cc0eaa2-a236-fc69-7f19-e530a613757a-96799f46, #w-node-_0cc0eaa2-a236-fc69-7f19-e530a61375b2-96799f46 {
  justify-self: start;
}

#w-node-_0cc0eaa2-a236-fc69-7f19-e530a61375dc-96799f46 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_64bbfd4e-9fb0-7084-fc52-23906f5e0e3e-96799f46, #w-node-_64bbfd4e-9fb0-7084-fc52-23906f5e0e4e-96799f46 {
  justify-self: start;
}

#w-node-_64bbfd4e-9fb0-7084-fc52-23906f5e0e7d-96799f46, #w-node-b01745a5-0381-dda3-4947-dca6075e4870-96799f46 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff42a-783ff425 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff42c-783ff425 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff42d-783ff425 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff42f-783ff425 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff435-783ff425 {
  grid-area: 3 / 6 / 4 / 7;
  align-self: start;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff43c-783ff425, #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff43d-783ff425 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff442-783ff425 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff44a-783ff425 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff44b-783ff425, #w-node-f76e251c-d862-4437-10d1-9367d9ea65b0-783ff425, #w-node-_9ef1038c-719c-0a2c-01f8-67ec7a3d0b4b-783ff425 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff458-783ff425 {
  grid-area: 2 / 9 / 4 / 10;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff459-783ff425 {
  grid-area: 2 / 4 / 4 / 5;
  place-self: stretch center;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff45a-783ff425 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff468-783ff425 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff469-783ff425 {
  grid-area: 2 / 5 / 3 / 6;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff46a-783ff425 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff46f-783ff425 {
  grid-area: 2 / 6 / 3 / 7;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff475-783ff425 {
  grid-area: 2 / 7 / 3 / 8;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff47b-783ff425 {
  grid-area: 2 / 8 / 3 / 9;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff481-783ff425 {
  grid-area: 3 / 5 / 4 / 6;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff487-783ff425 {
  grid-area: 3 / 6 / 4 / 7;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff48d-783ff425 {
  grid-area: 3 / 7 / 4 / 8;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff493-783ff425 {
  grid-area: 3 / 8 / 4 / 9;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff499-783ff425 {
  grid-area: 2 / 4 / 4 / 5;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff49a-783ff425 {
  grid-area: 2 / 4 / 4 / 5;
  place-self: stretch center;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff49b-783ff425 {
  grid-area: 2 / 10 / 3 / 12;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff49e-783ff425 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4a2-783ff425 {
  grid-area: 2 / 6 / 3 / 8;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4a7-783ff425 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: start;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4a9-783ff425 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4aa-783ff425 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4ac-783ff425 {
  grid-area: 3 / 1 / 4 / 2;
  align-self: start;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4b2-783ff425 {
  grid-area: 2 / 9 / 4 / 10;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4b3-783ff425 {
  grid-area: 2 / 4 / 4 / 5;
  place-self: stretch center;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4b4-783ff425 {
  grid-area: 1 / 1 / 2 / 2;
  align-self: start;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4c2-783ff425, #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4c3-783ff425, #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4c4-783ff425 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4c9-783ff425 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4d1-783ff425 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-c47edd4a-81de-bd0c-43f3-51240e4496e7-783ff425, #w-node-aeeaa59d-7244-966a-1444-32277b4f8c06-783ff425 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4df-783ff425 {
  grid-area: 2 / 4 / 3 / 5;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4e0-783ff425 {
  grid-area: 2 / 5 / 3 / 6;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4e1-783ff425 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4e6-783ff425 {
  grid-area: 2 / 6 / 3 / 7;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4ec-783ff425 {
  grid-area: 2 / 7 / 3 / 8;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4f8-783ff425 {
  grid-area: 2 / 5 / 3 / 5;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4f9-783ff425 {
  grid-area: 3 / 5 / 4 / 6;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4ff-783ff425 {
  grid-area: 3 / 6 / 4 / 7;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff505-783ff425 {
  grid-area: 3 / 7 / 4 / 8;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff511-783ff425 {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff512-783ff425 {
  grid-area: 2 / 4 / 4 / 5;
  place-self: stretch center;
}

#w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff513-783ff425, #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff514-783ff425 {
  grid-area: 2 / 6 / 3 / 8;
}

#w-node-bb7dfcf6-38be-3d58-c468-00de3a1750e2-3a1750b3, #w-node-bb7dfcf6-38be-3d58-c468-00de3a1750e5-3a1750b3, #w-node-_8d3aacac-6b7f-c630-0512-d5bad7d6da53-d7d6da50, #w-node-_8d3aacac-6b7f-c630-0512-d5bad7d6da81-d7d6da50 {
  place-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff42a-783ff425, #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff42c-783ff425 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff42d-783ff425 {
    grid-area: 3 / 1 / 4 / 2;
    align-self: auto;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff42f-783ff425 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff435-783ff425 {
    grid-area: 6 / 2 / 7 / 3;
    align-self: end;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff43c-783ff425 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff442-783ff425 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff44a-783ff425 {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff458-783ff425 {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff45a-783ff425 {
    grid-area: 1 / 1 / 2 / 2;
    align-self: end;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff468-783ff425 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff469-783ff425 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff46f-783ff425 {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff475-783ff425 {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff47b-783ff425 {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff481-783ff425 {
    grid-area: 5 / 2 / 6 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff487-783ff425 {
    grid-area: 5 / 3 / 6 / 4;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff48d-783ff425 {
    grid-area: 6 / 2 / 7 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff493-783ff425 {
    grid-area: 6 / 3 / 7 / 4;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff499-783ff425 {
    grid-area: 7 / 3 / 8 / 4;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff49b-783ff425 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff49e-783ff425 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4a2-783ff425 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4a7-783ff425, #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4a9-783ff425 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4aa-783ff425 {
    grid-area: 3 / 1 / 4 / 2;
    align-self: auto;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4ac-783ff425 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4b2-783ff425 {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4b4-783ff425 {
    grid-area: 1 / 1 / 2 / 2;
    align-self: end;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4c2-783ff425 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4c3-783ff425 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4c9-783ff425 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4d1-783ff425 {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4df-783ff425 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4e0-783ff425 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4e6-783ff425 {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4ec-783ff425 {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4f8-783ff425 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4f9-783ff425 {
    grid-area: 5 / 2 / 6 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4ff-783ff425 {
    grid-area: 5 / 3 / 6 / 4;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff505-783ff425 {
    grid-area: 6 / 2 / 7 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff511-783ff425 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff514-783ff425 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-bb7dfcf6-38be-3d58-c468-00de3a1750e5-3a1750b3, #w-node-_8d3aacac-6b7f-c630-0512-d5bad7d6da53-d7d6da50 {
    grid-area: 1 / 3 / 2 / 4;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff435-783ff425, #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff45a-783ff425, #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4b4-783ff425 {
    grid-column: 3 / 4;
    place-self: center start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b5975d0a-85fd-3961-f31b-5db687948293-96799f46, #w-node-_0cc0eaa2-a236-fc69-7f19-e530a613757a-96799f46, #w-node-_64bbfd4e-9fb0-7084-fc52-23906f5e0e3e-96799f46 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff429-783ff425 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff42c-783ff425 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff42d-783ff425 {
    grid-row: 3 / 4;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff42f-783ff425 {
    grid-row: 1 / 2;
    grid-column-start: 2;
    align-self: center;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff435-783ff425 {
    grid-area: 10 / 1 / 11 / 4;
    justify-self: center;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff45a-783ff425 {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: center;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff468-783ff425 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff469-783ff425 {
    grid-row: 3 / 4;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff46f-783ff425 {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff475-783ff425 {
    grid-row: 5 / 6;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff47b-783ff425 {
    grid-area: 6 / 2 / 7 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff481-783ff425 {
    grid-row: 7 / 8;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff487-783ff425 {
    grid-area: 8 / 2 / 9 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff48d-783ff425 {
    grid-row: 9 / 10;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff493-783ff425 {
    grid-area: 10 / 2 / 11 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff49e-783ff425 {
    align-self: stretch;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4a6-783ff425 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4a9-783ff425 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4aa-783ff425 {
    grid-row: 3 / 4;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4ac-783ff425 {
    grid-row: 1 / 2;
    grid-column-start: 2;
    align-self: center;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4b4-783ff425 {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: center;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4c2-783ff425, #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4df-783ff425 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4e0-783ff425 {
    grid-row: 3 / 4;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4e6-783ff425 {
    grid-area: 4 / 2 / 5 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4ec-783ff425 {
    grid-row: 5 / 6;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4f8-783ff425 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4f9-783ff425 {
    grid-row: 7 / 8;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff4ff-783ff425 {
    grid-area: 8 / 2 / 9 / 3;
  }

  #w-node-_98dcc502-5d4c-c5d0-6c8a-cbe6783ff505-783ff425 {
    grid-row: 9 / 10;
  }
}
