@charset "UTF-8";

/* ========================================================================== */
/* Base Styles */
/* ========================================================================== */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --header-height: 15vh;
  --innerFooter-height: 5vh;
  --outerFooter-height: 2vh;
  --main-height: calc(
    100vh - (var(--header-height) + var(--innerFooter-height))
  );
  --aspect-width: 45.02732240437158vh;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "inter-variable", sans-serif;
  line-height: 1;
  background-color: #000 !important;
  background-repeat: no-repeat;
  background-position: center -1%;
  min-height: 100vh;
}

/* ========================================================================== */
/* Layout */
/* ========================================================================== */

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: url("img/bg.jpg"), #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

h1 {
  font-size: 2.666vh;
  margin: 0;
}

header {
  width: 100%;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1vh;
  padding-top: 1.349325vh;
  padding-bottom: 2.398801vh;
}

header .logo {
  width: auto;
  height: 16.893553vh;
}

header > div,
.content-wrapper {
  max-width: 100%;
  width: 100%;
}

main {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.content-wrapper {
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 3vw;
}

.lower-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 1.5vh;
  text-align: center;
  flex-direction: column;
}

.lower-content p {
  text-align: center;
  text-transform: uppercase;

  text-shadow: 0px 1px 5px #000;
  font-family: "inter-variable", sans-serif;
  font-size: 35px;
  font-weight: 500;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.3;
}

.lower-content p span {
  display: block;

  line-height: 1;
  font-family: "inter-variable", sans-serif;
  background-image: linear-gradient(to top, #ab6e1c, #fbff80);
  font-size: 74px;
  font-weight: 800;
  text-align: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0px 2px 1px #e99e0e) drop-shadow(0px -2px 1px #fff);
  margin-top: 0.4vw;
  letter-spacing: -1.1px;
}

@media screen and (max-width: 1920px) {
  .lower-content p span {
    font-size: 2.85vw;
  }
}

/* ========================================================================== */
/* Video */
/* ========================================================================== */

.video-holder {
  box-shadow: rgba(0, 0, 0, 0.8) 0 0 2.544529vh;
  max-width: 1125px;
  width: 100%;
  aspect-ratio: 16 / 9.02;
  position: relative;
  border: 2px solid transparent;
  background-clip: border-box;
  display: block;
}

.video-holder .lower-content {
  display: none;
}

@media screen and (max-width: 1920px) {
  .video-holder {
    max-width: 56.6vw;
  }
}

.video-holder:before {
  position: absolute;
  background: linear-gradient(to top, #e5b420, #fffea6);
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: -2px;
}

.video-holder__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.video-holder .wistia_embed,
.video-holder video,
.video-holder iframe {
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  height: 100%;
}

#video-poster {
  position: absolute;
  left: 0.555556vh;
  top: 0.555556vh;
  width: calc(100% - (2 * 0.555556vh));
  height: calc(100% - (2 * 0.555556vh));
  border-radius: 2.290076vh;
  background-size: cover;
}

.hidden-sm {
  display: block;
}

.visible-sm {
  display: none;
}

@media screen and (max-width: 991px) {
  .video-holder {
    max-width: calc(100% - 30px);
  }

  .hidden-sm {
    display: none;
  }

  .visible-sm {
    display: block;
  }
}

main h2 {
  font-size: 5.6vh;
  font-weight: 700;
  -webkit-text-stroke: 0.16vh yellow;
  paint-order: stroke fill;
  filter: drop-shadow(0.4vh 0.4vh 0.4vh rgba(0, 0, 0, 0.3));
}

main h2 sup {
  font-size: 2.8vh;
}

main p {
  font-size: 2.1vh;
}

/* ========================================================================== */
/* Slider */
/* ========================================================================== */

div.tns-inner {
  position: relative;
  z-index: -1;
}

div.my-slider div > img {
  width: var(--aspect-width);
  height: 32.5vh;
}

.tns-outer::after {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: -1px;
  width: calc(var(--aspect-width) + 2px);
  height: 42vh;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0) 90%,
    rgba(0, 0, 0, 1) 100%
  );
  overflow: hidden;
}

/* ========================================================================== */
/* CTA */
/* ========================================================================== */
@keyframes cta-pulse {
  0% {
    transform: scale(1);
    box-shadow:
      0 0 0.7vh rgba(0, 0, 0, 1),
      inset 0 0 1.667vh rgba(93, 228, 48, 1);
  }
  50% {
    transform: scale(1.04);
    box-shadow:
      0 0 2.5vh rgba(93, 228, 48, 0.6),
      inset 0 0 2.2vh rgba(93, 228, 48, 1);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0.7vh rgba(0, 0, 0, 1),
      inset 0 0 1.667vh rgba(93, 228, 48, 1);
  }
}

a.cta-button {
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
  margin: 20px auto;
  padding: 0;
  color: white;
  text-decoration: none;
  font-family: "inter-variable", sans-serif;
  font-weight: 700;
  transition: background 0.3s ease;
  line-height: 6.481481vh;
  text-shadow: 0 0.278vh 0 rgba(0, 0, 0, 1);
  position: relative;
  z-index: 1;
  line-height: 1;
  transition: opacity 0.4s ease;
  border: 9px solid transparent;
  background-clip: border-box;
  border-radius: 100px;
  letter-spacing: 1px;
}

@media screen and (max-width: 1920px) {
  a.cta-button {
    margin: 1vw auto;
  }
}

a.cta-button span {
  position: relative;
  z-index: 3;
  border-radius: 100px;
}

a.cta-button:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
    -90deg,
    #fff121,
    #d68400,
    #fdf123,
    #b24d00,
    #e4a50a,
    #b24d00
  );
  margin: -4px;
  z-index: 2;
  border-radius: 100px;
}
a.cta-button:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(0deg, #fff121, #d68400, #fdf123, #b24d00);
  margin: -9px;
  border-radius: 100px;
  z-index: 1;
}

.cta-button {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

button.cta-btn:hover,
a.cta-button:hover {
  background-color: #005bb5;
  background-image: linear-gradient(to top, #00bd59, #005627);
  box-shadow: inset 0 0 3.704vh rgba(0, 0, 0, 1);
}

.cta-content {
  position: relative;
  text-shadow: 0.8px 2.9px 5px #000;
  border: 1px solid #2a0501;
  z-index: 1;
  background-image: linear-gradient(to bottom, #1e600e, #1e600e);
  padding: 10px 1.5vw;
  margin: 0;
  display: inline-block;
  line-height: 1.2;
  box-shadow: inset 0 0 15px 5px #63e331;
}
.cta-content > span {
  background-image: linear-gradient(to top, #b8b8b8, #b8b8b8, #fff, #fff);
  text-align: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0px 1px 1px #fff) drop-shadow(0px -1px 0 #fff)
    drop-shadow(0px 5px 5px #0c111e);
  font-size: 42px;
  font-family: "inter-variable", sans-serif;
  font-weight: 500;
  letter-spacing: 1.3px;
}
@media screen and (max-width: 1920px) {
  .cta-content > span {
    font-size: 2.19vw;
  }
}

/* Default: desktop */
.mobile-only {
  display: none;
}

/* tablet */
@media (max-width: 1199px) {
  .video-holder {
    max-width: calc(100% - 30px);
  }
}
@media (max-width: 991px) {
  .lower-content p {
    font-size: 4.4vw;
    letter-spacing: 0.4vw;
  }

  .lower-content p span {
    font-size: 7vw;
  }
  a.cta-button span {
    font-size: 4vw;
  }
  button.cta-btn,
  a.cta-button {
    font-size: 4vw;
    margin: 3vw auto;
  }
  .cta-content {
    padding: 1.5vw 5vw;
  }
  .content-wrapper {
    padding-top: 4vw;
  }
  .lower-content {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .page-container {
    background-size: auto 100%;
    background-position: center top;
    background-repeat: no-repeat;
    background: #000;
  }

  .lower-content--lg {
    display: none;
  }

  .video-holder .lower-content {
    display: block;
    position: absolute;
    bottom: -1px;
    padding-bottom: 1vw;
    padding-top: 3vw;
    background: linear-gradient(to top, #000, #000, #000, rgba(0, 0, 0, 0));
  }

  .video-holder {
    aspect-ratio: 9 / 16;
    max-width: 100%;
    border: none;
  }

  .video-holder::before {
    display: none;
  }

  .content-wrapper {
    padding-top: 0;
  }
  .desktop-only {
    display: none;
  }
  a.cta-button span {
    font-size: 4.5vw;
    display: block;
  }
  .lower-content p {
    font-size: 4.9vw;
    line-height: 1.1;
  }
  .lower-content p span {
    font-size: 7vw;
    margin-top: 2vw;
    filter: drop-shadow(0px 1px 0px #e99e0e) drop-shadow(0px -1px 0px #fff);
  }

  .cta-content > span {
    filter: drop-shadow(0px 5px 5px #0c111e);
    background-clip: unset;
    -webkit-text-fill-color: unset;
    background-image: none;
    font-weight: 700;
  }

  button.cta-btn,
  a.cta-button {
    font-size: 5.4vw;
    margin: 2vw auto;
  }
  .cta-content {
    padding: 1.5vw 5vw;
  }

  .mobile-only {
    display: block;
  }

  .lower-content p span img {
    max-width: 100%;
  }
}