/*
via https://gist.githubusercontent.com/jonesnxt/b8af57e364c328aad29eb512686b2b60/raw/c86a8431b94dd1c1be56fd378dd5e8fcda6ab9cc/criticalCSSOneLiner.js
Array.from(document.styleSheets).filter((sheet) => { try { sheet.cssRules; return true; } catch (err) { console.log(`Due to CORS issues, this script can't access "${sheet.href}"`); return false; }}).map((sheet) => Array.from(sheet.cssRules).map((rule) => rule.type === rule.FONT_FACE_RULE ? rule.cssText : rule.type === rule.STYLE_RULE ? Array.from(document.querySelectorAll(rule.selectorText)).some((node) => node.getBoundingClientRect().top < window.innerHeight && window.getComputedStyle(node).display !== 'none') ? rule.cssText : null : rule.type === rule.MEDIA_RULE ? `@media ${rule.conditionText} {${Array.from(rule.cssRules).map((mediaRule) => mediaRule.type === mediaRule.FONT_FACE_RULE ? mediaRule.cssText : mediaRule.type === mediaRule.STYLE_RULE ? Array.from(document.querySelectorAll(mediaRule.selectorText)).some((node) => node.getBoundingClientRect().top < window.innerHeight && window.getComputedStyle(node).display !== 'none') ? mediaRule.cssText : null : null).filter((mediaRule) => mediaRule != null).join(' ')}}` : null)).flat().filter((rule) => rule != null && !new RegExp(/^@media.*{}$/).test(rule)).join(' ').replace(/\/_nuxt/g, '');
 */

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #fff;
  --bs-secondary: #a51d2d;
  --bs-success: #015668;
  --bs-info: #3584e4;
  --bs-warning: #eb9b27;
  --bs-danger: #f66151;
  --bs-light: #e8e8e8;
  --bs-dark: #000;
  --bs-primary-rgb: 255, 255, 255;
  --bs-secondary-rgb: 165, 29, 45;
  --bs-success-rgb: 1, 86, 104;
  --bs-info-rgb: 53, 132, 228;
  --bs-warning-rgb: 235, 155, 39;
  --bs-danger-rgb: 246, 97, 81;
  --bs-light-rgb: 232, 232, 232;
  --bs-dark-rgb: 0, 0, 0;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 255, 255, 255;
  --bs-body-bg-rgb: 36, 2, 2;
  --bs-font-sans-serif: "Alte Haas Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #fff;
  --bs-body-bg: #240202;
}

*, ::before, ::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0px;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0px;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.485rem + 2.82vw);
}

@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 3.6rem;
  }
}

h2, .h2 {
  font-size: calc(1.425rem + 2.1vw);
}

@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 3rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

p {
  margin-top: 0px;
  margin-bottom: 1rem;
}

ol, ul {
  padding-left: 2rem;
}

ol, ul, dl {
  margin-top: 0px;
  margin-bottom: 1rem;
}

small, .small {
  font-size: 0.65em;
}

a {
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

img, svg {
  vertical-align: middle;
}

label {
  display: inline-block;
}

button {
  border-radius: 0px;
}

input, button, select, optgroup, textarea {
  margin: 0px;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, select {
  text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
  appearance: button;
}

button:not(:disabled), [type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled) {
  cursor: pointer;
}

.container, .container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 1.05rem);
  padding-left: var(--bs-gutter-x, 1.05rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1440px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.g-0, .gx-0 {
  --bs-gutter-x: 0;
}

.g-0, .gy-0 {
  --bs-gutter-y: 0;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.3333%;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }
}

@media (min-width: 992px) {
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.6667%;
  }

  .offset-lg-2 {
    margin-left: 16.6667%;
  }
}

@media (min-width: 1400px) {
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.3333%;
  }
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgb(255, 255, 255);
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid rgb(255, 255, 255);
  appearance: none;
  border-radius: 0px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none 0s ease 0s;
  }
}

.btn {
  display: inline-block;
  align-self: center;
  font-weight: 400;
  line-height: 1.5;
  color: rgb(255, 255, 255);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  border-radius: 0px;
  transition: color 0.15s ease-in-out 0s, background-color 0.15s ease-in-out 0s, border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none 0s ease 0s;
  }
}

.btn-primary {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}

.btn-outline-light {
  color: rgb(232, 232, 232);
  border-color: rgb(232, 232, 232);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0px;
  margin-bottom: 0px;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: color 0.15s ease-in-out 0s, background-color 0.15s ease-in-out 0s, border-color 0.15s ease-in-out 0s;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none 0s ease 0s;
  }
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0px;
  margin-bottom: 0px;
  list-style: none;
}

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

.navbar-dark .navbar-brand {
  color: rgb(255, 255, 255);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}

.navbar-dark .navbar-nav .show > .nav-link, .navbar-dark .navbar-nav .nav-link.active {
  color: rgb(255, 255, 255);
}

.ratio > * {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.d-flex {
  display: flex !important;
}

.border {
  border: 1px solid rgb(222, 226, 230) !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-uppercase {
  text-transform: uppercase !important;
}

@font-face {
  font-family: "Alte Haas Grotesk";
  src: url("/assets/fonts/AlteHaasGrotesk.woff2") format("woff2"), url("/assets/fonts/AlteHaasGrotesk.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alte Haas Grotesk";
  src: url("/assets/fonts/AlteHaasGrotesk_Bold.woff2") format("woff2"), url("/assets/fonts/AlteHaasGrotesk_Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: rarrip;
  src: url("/assets/fonts//rarrip.3.1.ttf") format("truetype"), url("/assets/fonts//rarrip.3.1.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="rri-"], [class*=" rri-"] {
  font-style: normal;
  font-weight: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-family: rarrip !important;
}

.btn-nav-toggle {
  position: relative;
  width: 4em;
  height: 3.5em;
  padding: 1em;
  cursor: pointer;
  background: transparent;
  border-radius: 0px;
  border: none;
  outline: none;
}

.btn-nav-toggle span {
  position: absolute;
  width: 2em;
  height: 0.16em;
  top: 50%;
  left: 50%;
  background: rgb(255, 255, 255);
  border-radius: 0px;
  overflow: hidden;
  transition: all 0.3s linear 0s;
  transform: translate(-50%, -50%);
}

.btn-nav-toggle span:nth-child(1) {
  animation: 0.5s ease-in-out 0s 1 normal forwards running bnt-span-first-off;
}

.btn-nav-toggle span:nth-child(2) {
  animation: 0.5s ease-in-out 0s 1 normal forwards running bnt-span-second-off;
}

.btn-nav-toggle span:nth-child(3) {
  animation: 0.5s ease-in-out 0s 1 normal forwards running bnt-span-third-off;
}

:root {
  --form-control-color: $ secondary;
  --form-control-disabled: $ input-disabled-bg;
}

.form-control-checkbox {
  text-transform: uppercase;
  font-weight: bold;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.75em;
}

.form-control-checkbox *, .form-control-checkbox ::before, .form-control-checkbox ::after {
  box-sizing: border-box;
}

.form-control-checkbox input[type="checkbox"] {
  appearance: none;
  background-color: var(--form-background);
  margin: 0px;
  font: inherit;
  color: currentcolor;
  width: 1em;
  height: 1em;
  border: 1px solid currentcolor;
  border-radius: 0px;
  transform: translateY(0.15em);
  display: grid;
  place-content: center;
}

.btn-outline-light {
  border-color: transparent;
}

.btn, .form-control {
  text-align: left;
  padding: 1rem 1rem 0.8rem;
  font-weight: bold;
}

.btn {
  text-transform: uppercase;
  border: 1px solid white;
  padding: 0.9em 1em;
}

.anim--rotating {
  animation-name: infinite-rotate;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-direction: normal;
}

.anim--rotating-variant-1 {
  animation-delay: 1s;
  animation-duration: 15s;
  animation-direction: reverse;
}

.btn-block {
  display: block;
  width: 100%;
}

.white-grid .p-3 {
  padding-bottom: 0.8rem !important;
}

@media (min-width: 768px) {
  .white-grid .br-md-0 {
    border-right: 0px !important;
  }
}

.white-grid .border {
  border: 1px solid white;
  margin-bottom: -1px;
  margin-right: -1px;
}

@media (max-width: 767.98px) {
  html {
    font-size: 70%;
    word-break: break-word;
  }
}

.h1, h1 {
  text-transform: uppercase;
  font-weight: bold;
  word-break: break-word;
  font-size: 3.6rem;
  letter-spacing: 0.02em;
  line-height: 0.9;
  hyphens: auto;
}

.h2, h2 {
  text-transform: uppercase;
  font-weight: bold;
  word-break: break-word;
  font-size: 3rem;
  line-height: 0.8;
  letter-spacing: -0.01em;
  hyphens: auto;
}

.h4, h4 {
  text-transform: uppercase;
  font-weight: bold;
  word-break: break-word;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  hyphens: auto;
}

.text--nohypens {
  hyphens: none !important;
}

.text-skewed {
  display: inline-block;
  transform: scaleY(0.5);
  text-transform: uppercase;
}

header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 1030;
}

header .navbar {
  background-color: transparent;
  transition: background-color 1s ease-out 0s;
  align-items: start;
}

.with-intro header .brand-wrapper {
  opacity: 0;
  overflow: hidden;
}

header .brand-wrapper .navbar-brand {
  margin-right: 0px;
}

header .brand-wrapper .navbar-brand img.navbar-brand_logo {
  position: relative;
  top: -0.1em;
  left: -25%;
  width: 150%;
}

header .btn-language-toggle {
  position: relative;
  top: -0.4em;
  left: -0.3em;
  border: 0px;
}

header .btn-language-toggle svg {
  position: relative;
  top: -0.15em;
}

@media (max-width: 767.98px) {
  header .btn-language-toggle svg {
    transform: scale(0.8);
  }
}

header .btn-nav-toggle {
  z-index: 3;
  position: relative;
  top: -0.25em;
}

header .btn-nav-toggle, header .btn.btn-language-toggle {
  border-color: transparent;
  box-shadow: none !important;
}

.navbar-main {
  position: relative;
  top: 0.25em;
  z-index: 1030;
  padding-bottom: 0.5em !important;
}

.navbar-main > .nav-item {
  width: 10em;
  max-width: 25vw;
}

.navbar-main > .nav-item:nth-child(2) {
  max-width: 35vw;
}

.navbar-main .navbar-nav {
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
}

.navbar-main .navbar-language > .navbar-nav {
  margin: 0.5rem 1rem;
}

.navbar-main .navbar-content .navbar-nav {
  margin: 1.8rem 1rem 2.5rem;
  font-size: 4rem;
}

@media (max-width: 767.98px) {
  .navbar-main .navbar-content .navbar-nav {
    font-size: 3rem;
    padding-top: 0.15em;
    padding-bottom: 0.15em;
  }
}

.navbar-main .navbar-content .navbar-nav .nav-link, .navbar-main .navbar-content .navbar-nav button.nav-link {
  display: block;
  width: 100%;
  padding: 0px;
  line-height: 0.8;
  margin-bottom: 0.16em;
  border: 0px;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  text-align: center;
  font-weight: inherit;
  text-transform: inherit;
}

footer .section-footer nav a.btn {
  border: 1px solid white;
  display: block;
  width: 100%;
}

footer .section-footer nav > div {
  margin-right: -1px;
  margin-bottom: -1px;
}

.intro-anim.intro-anim--fade {
  pointer-events: none;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 100vh;
  z-index: 0;
}

.intro-anim.intro-anim--fade .scene {
  position: absolute;
}

.intro-anim.intro-anim--fade .scene, .intro-anim.intro-anim--fade .scene > div {
  inset: 0px;
  opacity: 1;
}

@media (max-width: 767.98px) {
  .intro-anim.intro-anim--fade .scene {
    bottom: -80px;
  }
}

.intro-anim.intro-anim--fade .scene > div {
  position: absolute;
}

.intro-anim.intro-anim--fade .scene-logo {
  z-index: 5;
}

.intro-anim.intro-anim--fade .scene-logo .logo {
  padding-top: 15vh;
  z-index: 2;
  text-align: center;
  opacity: 1;
}

.intro-anim.intro-anim--fade .scene-logo .logo img {
  width: 50vw;
}

@media (max-width: 767.98px) {
  .intro-anim.intro-anim--fade .scene-logo .logo {
    height: 60vh;
  }

  .intro-anim.intro-anim--fade .scene-logo .logo img {
    width: 110vw;
    margin: 0px -10vw;
  }
}

.intro-anim.intro-anim--fade .scene-logo .logo .intro-text {
  margin-top: -0.5vw;
}

.intro-anim.intro-anim--fade .scene-logo .logo .intro-text img {
  width: 25vw;
}

.intro-countdown.countdown--horizontal:not(.somespecificnonthing) .ct-item[data-v-6789ce80] {
  display: inline-block;
}

.intro-countdown.countdown--horizontal:not(.somespecificnonthing) .ct-item .ct-val[data-v-6789ce80] {
  display: inline-block;
}

.intro-countdown.countdown--horizontal:not(.somespecificnonthing) .ct-item .ct-unit[data-v-6789ce80] {
  display: inline-block;
}

.lmarquee {
  user-select: none;
  position: relative;
  width: 100%;
  overflow: hidden;
  --move-speed: 5s;
  --lmarquee-width: 100%;
  --offset: 20%;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
}

.lmarquee__inner {
  width: fit-content;
  display: flex;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation-duration: ;
  animation-timing-function: ;
  animation-delay: ;
  animation-iteration-count: ;
  animation-direction: ;
  animation-fill-mode: ;
  animation-name: ;
  animation-play-state: running;
}

.lmarquee__inner * {
  display: inline-block;
  white-space: nowrap;
}

.bg-wrapper {
  z-index: -1;
  transform: translate3d(0px, 0px, 0px);
}

.bg-wrapper, .bg-wrapper > div {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  height: 155vw;
  min-height: 150vh;
  background-position: center 0px;
  background-repeat: no-repeat;
  background-size: 100%;
}

@media (max-width: 767.98px) {
  .bg-wrapper, .bg-wrapper > div {
    height: 300vw;
    background-size: 200%;
  }
}

@media (max-width: 767.98px) {
  .bg-wrapper > div:not(.bg-main) {
    background-position-y: 20vh;
  }
}

.bg-wrapper .bg-main {
  background-image: url("/assets/img/bg/1920_subpages_main.avif");
}

.no-avif:not(.no-webp) .bg-wrapper .bg-main {
  background-image: url("/assets/img/bg/1920_subpages_main.webp");
}

.bg-wrapper.isHome, .bg-wrapper.isHome > div {
  height: 133vw;
}

.bg-wrapper.isHome .bg-main {
  background-image: url("/assets/img/bg/1920_03_2.avif");
}

.no-avif:not(.no-webp) .bg-wrapper.isHome .bg-main {
  background-image: url("/assets/img/bg/1920_03_2.webp");
}

.bg-wrapper .bg-planet {
  background-image: url("/assets/img/bg/Round_03.avif");
}

.no-avif:not(.no-webp) .bg-wrapper .bg-planet {
  background-image: url("/assets/img/bg/Round_03.webp");
}

.bg-wrapper .bg-moon2 {
  background-image: url("/assets/img/bg/Round_02_icon_24.png");
}

.ticker-wrapper[data-v-75cfef72] {
  height: 3em;
  margin-top: -2em;
  margin-bottom: -1em;
  width: 100%;
  overflow: hidden;
}

.ticker-wrapper.ticker-wrapper--top[data-v-75cfef72] {
  margin-top: -0.6em;
  margin-bottom: -1em;
}

.ticker[data-v-75cfef72] {
  width: calc(100% + 2em + 2px);
  margin-left: calc(-1em - 1px);
  height: 1.5em;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  font-weight: bold;
  word-break: break-word;
  line-height: 0.8;
  letter-spacing: -0.01em;
  font-size: 2.2rem;
  white-space: nowrap;
}

.ticker > div[data-v-75cfef72] {
  padding-top: 0.19em;
}

.ticker > div > div .ticker-item[data-v-75cfef72] {
  display: inline-block;
  position: relative;
}

.ticker > div > div .ticker-item > span[data-v-75cfef72] {
  vertical-align: middle;
}

.ticker > div > div .ticker-item_icon[data-v-75cfef72] {
  display: inline-block;
  position: relative;
  left: 0.2em;
  top: 0.05em;
  font-size: 0.83em;
  height: 1em;
  width: 1em;
  text-align: center;
}

.br-chrome .ticker > div > div .ticker-item_icon[data-v-75cfef72] {
  top: 0.075em;
}

.ticker > div > div .ticker-item_label[data-v-75cfef72] {
  position: relative;
  top: 0.07em;
  padding-left: 0.2em;
  padding-right: 0.2em;
}

.section-intro.section-intro--fade {
  min-height: 83vh;
}

.parallax-planets {
  position: relative;
  height: 0px;
  overflow: visible;
}

.parallax-planets .planet-layer {
  position: absolute;
  top: -30vw;
}

.parallax-planets .planet-layer .bg-planet, .parallax-planets .planet-layer .bg-moon2 {
  background-position: center -10vw;
}

.parallax-planets .planet-layer .bg-planet {
  background-size: 120%;
  background-position: 47% -10vw;
}

.get-cashless-btn img, .get-tickets-btn img {
  position: absolute;
  height: 165%;
  width: auto;
  top: -34%;
  left: -4%;
}

html, body {
  height: 100vh;
  overflow: hidden;
}

.scrollarea {
  width: 100%;
  height: 100vh;
  padding: 0px;
  overflow-y: scroll;
  box-sizing: border-box;
}

.header-masked {
  pointer-events: none;
  background: transparent !important;
}

.header-masked .navbar-main {
  width: calc(100% - var(--rr-scrollbar-width, 0));
}

.scrolled .header-masked a, .scrolled .header-masked nuxt-link, .scrolled .header-masked button, .layout-wrapper:not(.with-intro-overlay) .header-masked a, .layout-wrapper:not(.with-intro-overlay) .header-masked nuxt-link, .layout-wrapper:not(.with-intro-overlay) .header-masked button {
  pointer-events: all;
}

.section-intro.section-intro--fade {
  min-height: 83vh;
}

@media (max-width: 767.98px) {
  .section-intro.section-intro--fade {
    min-height: 60vh;
  }
}

.parallax-planets {
  position: relative;
  height: 0px;
  overflow: visible;
}

.parallax-planets .planet-layer {
  position: absolute;
  top: -30vw;
}

.parallax-planets .planet-layer .bg-planet, .parallax-planets .planet-layer .bg-moon2 {
  background-position: center -10vw;
}

.parallax-planets .planet-layer .bg-planet {
  background-size: 120%;
  background-position: 47% -10vw;
}

.get-cashless-btn img, .get-tickets-btn img {
  position: absolute;
  height: 165%;
  width: auto;
  top: -34%;
  left: -4%;
}

.section-intro.section-intro--fade {
  min-height: 83vh;
}

@media (max-width: 767.98px) {
  .section-intro.section-intro--fade {
    min-height: 60vh;
  }
}

.parallax-planets {
  position: relative;
  height: 0px;
  overflow: visible;
}

.parallax-planets .planet-layer {
  position: absolute;
  top: -30vw;
}

.parallax-planets .planet-layer .bg-planet, .parallax-planets .planet-layer .bg-moon2 {
  background-position: center -10vw;
}

.parallax-planets .planet-layer .bg-planet {
  background-size: 120%;
  background-position: 47% -10vw;
}

.get-cashless-btn img, .get-tickets-btn img {
  position: absolute;
  height: 165%;
  width: auto;
  top: -34%;
  left: -4%;
}

html, body {
  height: 100vh;
  overflow: hidden;
}

.scrollarea {
  width: 100%;
  height: 100vh;
  padding: 0px;
  overflow-y: scroll;
  box-sizing: border-box;
}

.header-masked {
  pointer-events: none;
  background: transparent !important;
}

.header-masked .navbar-main {
  width: calc(100% - var(--rr-scrollbar-width, 0));
}

.scrolled .header-masked a, .scrolled .header-masked nuxt-link, .scrolled .header-masked button, .layout-wrapper:not(.with-intro-overlay) .header-masked a, .layout-wrapper:not(.with-intro-overlay) .header-masked nuxt-link, .layout-wrapper:not(.with-intro-overlay) .header-masked button {
  pointer-events: all;
}
