@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: "aktiv-grotesk-condensed", sans-serif;
  line-height: 1;
  background-color: #000 !important;
  background-repeat: no-repeat;
  background-position: center -1%;
  overflow-x: hidden;
  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: 2vw;
}

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

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

  text-shadow: 0px 1px 5px #000;
  font-family: "aktiv-grotesk-condensed", 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;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  background-image: linear-gradient(to top, #ffeab5, #e7c093);
  font-size: 85px;
  font-weight: 700;
  text-align: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0px 1px 0 #5e0000) drop-shadow(0px -1px 0 #5e0000)
    drop-shadow(0px 1px 13px rgba(249, 206, 13, 0.42))
    drop-shadow(0px 1px 13px rgba(249, 206, 13, 0.42));
  line-height: 1;
}

.ribbon-text {
  box-shadow: 0px 1px 14.6px 3.4px rgba(0, 0, 0, 0.59);
  background-color: #b68218;
  font-family: "aktiv-grotesk-condensed", sans-serif;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  text-shadow: 0px 1px 5px #000;
  padding: 15px 10px;
  margin-top: 30px;
}

.ribbon-text.ribbon-text p {
  font-size: 30px;
  font-weight: 500;
}

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

.video-holder {
  box-shadow: rgba(0, 0, 0, 0.8) 0 0 2.544529vh;
  max-width: 600px;
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  border: 6px solid transparent;
  background-clip: border-box;
  display: block;
  border-radius: 60px;
}

.video-holder:before {
  position: absolute;
  background: linear-gradient(to top, #fcd56f, #987927, #dcb653, #fcd56f);
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: -6px;
  border-radius: 60px;
}

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

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

#video-poster {
  position: absolute;
  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);
  }
}

button.cta-btn,
a.cta-button {
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
  margin: 26px auto;
  padding: 0;
  color: white;
  text-decoration: none;
  font-family: "Poppins";
  font-weight: 700;
  transition: background 0.3s ease;
  font-size: 36px;
  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;
  font-family: "aktiv-grotesk-condensed", sans-serif;
}

.cta-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: cta-pulse 2s ease-in-out infinite;
}

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;
  box-shadow:
    inset 0 0 0 0 #010101,
    inset 0 0 0 3px #2d1613;
  z-index: 1;
  background-image: linear-gradient(to bottom, #00bd59, #005627);
  padding: 1vw 3vw;
  margin: 0;
  display: inline-block;
  line-height: 1.2;
}

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

/* tablet */
@media (max-width: 991px) {
  .lower-content p {
    font-size: 5.4vw;
    letter-spacing: 0.4vw;
  }

  .lower-content p span {
    font-size: 15vw;
  }

  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: url("img/bg_sm.jpg"), #000;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
  .desktop-only {
    display: none;
  }
  .ribbon-text.ribbon-text {
    margin-top: 5vw;
  }
  .ribbon-text.ribbon-text p {
    font-size: 4.5vw;
  }
  .lower-content.ribbon-text p {
    font-size: 5.8vw;
    line-height: 1.1;
  }
  .lower-content.ribbon-text p span {
    font-size: 15vw;
    margin-top: 2vw;
  }

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

  .mobile-only {
    display: block;
  }

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