:root {
  --maxw: 100vw;
  --pad: 20px;
  --bg-transparent: transparent;
  --bg-color-1: #ed1a3d;
  --bg-color-2: #ed1a3d;
  --bg-color-3: #ed1a3d;
  --fade-distance: 16px;
}

/* Helvetica Neue LT Std LT Pro (core) */
@font-face {
  font-family: "Helvetica Neue LT Std";
  src: url("../fonts/helvetica-neue/HelveticaNeueLTStd65Medium.woff2") format("woff2"), url("../fonts/helvetica-neue/HelveticaNeueLTStd65Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue LT Std";
  src: url("../fonts/helvetica-neue/HelveticaNeueLTStd65Medium.woff2") format("woff2"), url("../fonts/helvetica-neue/HelveticaNeueLTStd65Medium.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html,
body {
  font-family: "Helvetica Neue LT Std", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  color: #ffffff;
  line-height: 1.5;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue LT Std", sans-serif !important;
}

.h1 {
  color: #ed1a3d;
  font-family: "Helvetica Neue LT Std", sans-serif !important;
  font-size: 96px;
  font-style: normal;
  font-weight: 700;
  line-height: 88%;
  letter-spacing: -1.92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  transform: translateY(0);
  transition: transform 0.28s ease;
}
.site-header .is-hidden {
  transform: translateY(-110%);
}

.site-header--inner {
  max-width: var(--maxw);
  width: 100%;
  padding: var(--pad) var(--pad);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}
.site-header--inner img {
  width: 275px !important;
  height: 110px !important;
  position: relative;
  top: 10px;
}

#siteHeader {
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: transform 220ms ease, opacity 220ms ease;
  will-change: transform;
}
#siteHeader.is-hidden {
  transform: translateY(-110%);
  opacity: 0.98;
}

.logo {
  width: 100%;
}
.logo .logo--inner {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 31px;
  padding-bottom: 47px;
}
.logo .logo--inner img {
  width: 104px;
  height: 49px;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero .hero--media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero .hero--overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 var(--pad) calc(var(--pad) * 4);
}
@media (max-width: 768px) {
  .hero .hero--overlay {
    padding: 0 var(--pad) calc(var(--pad) * 3);
  }
}
.hero .hero--overlay {
  color: #fff;
}
.hero .hero--overlay-inner {
  width: 100%;
  max-width: calc(var(--maxw) - var(--pad) * 2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.hero .hero--overlay-inner .hero--overlay-text {
  color: #fff;
  text-align: center;
  font-family: "Helvetica Neue LT Std", sans-serif !important;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.48px;
  max-width: 280px;
}
.hero .hero--overlay-inner .hero--media-icon {
  width: 50px;
  height: auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: 80px;
}

.video-block {
  overflow: hidden;
  background: #000;
}
.video-block video {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.card {
  overflow: hidden;
  background: #fff;
  position: relative;
}
.card .card--img {
  width: 100%;
  height: auto;
  display: block;
}
.card .card--body {
  padding: 0 35px 23px 32px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.card .card--body .card--title {
  color: #fff;
  font-family: "Helvetica Neue LT Std", sans-serif !important;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 32px */
  letter-spacing: -0.64px;
}

.infobox {
  background: #ed1a3d;
  padding: 40px 32px 61px 32px;
}
.infobox .infobox--grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.infobox .infobox--grid .infoitem {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.infobox .infobox--grid .infoitem .infoitem--title {
  color: #000;
  text-align: center;
  font-family: "Helvetica Neue LT Std", sans-serif !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: -0.28px;
}
.infobox .infobox--grid .infoitem .infoitem--text {
  color: #fff;
  font-family: "Helvetica Neue LT Std", sans-serif !important;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.64px;
  text-align: center;
}

.never-just {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 53px;
}
.never-just img {
  width: 100%;
  height: 183.719px;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.offline-chevron {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 50px;
}
.offline-chevron .offline-chevron-inner {
  background: #ed1a3d;
  position: absolute;
  width: 50px;
  height: 50px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.offline-chevron .offline-chevron-inner img {
  width: 28px;
  height: 16px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

#offline-section {
  min-height: 100vh;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0;
}

.offline-onecol {
  display: block;
}

.word-anim {
  padding: 91px 32px 100px 32px;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  margin-top: 0;
}
.word-anim span {
  color: #ed1a3d;
  font-family: "Helvetica Neue LT Std", sans-serif !important;
  font-size: 96px;
  font-style: normal;
  font-weight: 700;
  line-height: 88%;
  letter-spacing: -1.92px;
  display: inline-block;
  opacity: 0;
  transform: translateY(0.2em);
  /* &:nth-child(1) {
  	-webkit-animation-delay: 0ms;
  	animation-delay: 0ms;
  }
  &:nth-child(2) {
  	-webkit-animation-delay: 600ms;
  	animation-delay: 600ms;
  }
  &:nth-child(3) {
  	-webkit-animation-delay: 1200ms;
  	animation-delay: 1200ms;
  }
  &:nth-child(4) {
  	-webkit-animation-delay: 1800ms;
  	animation-delay: 1800ms;
  } */
}
.word-anim {
  /* Activated */
}
.word-anim.is-active span {
  animation-name: word-in;
  animation-duration: 0.3s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  animation-delay: calc(var(--i) * 120ms);
}
@keyframes word-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .word-anim span {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(var(--fade-distance));
  transition-property: opacity, transform;
  transition-timing-function: ease;
  will-change: opacity, transform;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.desc1 {
  color: #fff;
  font-family: "Helvetica Neue LT Std", sans-serif !important;
  font-size: 60px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -1.28px;
  text-align: left;
  padding: 0 25px 65px 32px;
}

.desc2 {
  padding: 80px 35px 70px 32px;
  color: #fff;
  font-family: "Helvetica Neue LT Std", sans-serif !important;
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 32px */
  letter-spacing: -0.64px;
}
.desc2.bg-transparent {
  background: var(--bg-transparent);
}
.desc2.bg-color-1 {
  background: var(--bg-color-1);
}
.desc2.bg-color-2 {
  background: var(--bg-color-2);
}
.desc2.bg-color-3 {
  background: var(--bg-color-3);
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

#offline-section[hidden],
#online-section[hidden] {
  display: none !important;
}

html.is-switching-offline #online-section .hero--overlay-text {
  opacity: 1;
  transform: translateY(0);
}
/*# sourceMappingURL=main.css.map */
