:root {
  /* fonts */
  --ff-base: "AlteHaasGroteskRegular",sans-serif;
  --ff-base-bold: "AlteHaasGroteskBold",sans-serif;
  --ff-accent: "EITIW",sans-serif;
  --ff-small: "HelveticaNeueRoman",sans-serif;
  --fs-base: 1.6rem;
  --fw-light: 400;
  --fw-regular: 500;
  --fw-bold: 600;
  --fw-black: 700;
  /* colors */
  --clr-main: #FEEF01;
  --clr-main-50: hsla(56, 99%, 50%, 0.5);
  --clr-main-70: hsla(56, 99%, 50%, 0.7);
  --clr-main-80: hsla(56, 99%, 50%, 0.8);
  --clr-secondary: #FF3C00;
  --clr-dark-80: hsla(0, 28%, 7%, .8);
  --clr-dark-50: hsla(0, 28%, 7%, .5);
  --clr-dark-25: hsla(0, 28%, 7%, .25);
  --clr-dark: #170d0d;
  --clr-orange: hsl(22, 100%, 53%);
  --clr-orange-80: hsla(22, 100%, 53%, .8);
  --clr-gold: #CF9D20;
  --clr-gold-80: hsla(43, 73%, 47%, .8);
  --clr-gold-light: #DAB056;
  --clr-gold-light-80: hsla(41, 64%, 60%, .8);
  --clr-grey-light: #FFFDFE;
  --clr-grey: hsl(36, 20%, 90%);
  --clr-grey-80: hsla(36, 20%, 90%, .8);
  --clr-blue: hsl(214, 67%, 83%);
  --clr-blue-80: hsla(214, 67%, 83%, .8);
  --clr-dark-blue: #4667fb;
  --clr-dark-blue-80: hsla(229, 96%, 63%, .8);
}

/*
xs:     0 - 576px
sm:     576 - 768px
md:     768 - 992px
lg:     992 - 1200px
xl:     1200 - 1400px
xxl:    1400+
xxxl:   1600+
*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    top: -5rem;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes pulsing {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--ff-base);
}

.clear:before,
.clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: black;
  text-decoration: none;
  transition: all 400ms;
  font-size: 1.6rem;
  font-family: var(--ff-base);
}

a:focus {
  outline: 0;
}

a:hover,
a:active {
  outline: 0;
}

input:focus {
  outline: 0;
  border: 1px solid #04A4CC;
}

button {
  transition: all 400ms;
  font-family: var(--ff-base);
}

p, strong {
  font-size: var(--fs-base);
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: white;
  color: black;
  text-shadow: none;
}

::-webkit-selection {
  background: white;
  color: black;
  text-shadow: none;
}

::-moz-selection {
  background: white;
  color: black;
  text-shadow: none;
}

::placeholder,
::-moz-placeholder,
::-webkit-input-placeholder {
  font-family: var(--ff-base);
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
    content: "";
  }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr, img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
h3 {
    page-break-after: avoid;
  }
}
/* Typography */
@font-face {
  font-family: "AlteHaasGroteskRegular";
  src: url("../assets/fonts/AlteHaasGrotesk/regular.ttf") format("truetype");
}
@font-face {
  font-family: "AlteHaasGroteskBold";
  src: url("../assets/fonts/AlteHaasGrotesk/bold.ttf") format("truetype");
}
@font-face {
  font-family: "EITIW";
  src: url("../assets/fonts/EITIW/regular.otf") format("opentype");
}
@font-face {
  font-family: "HelveticaNeueRoman";
  src: url("../assets/fonts/NeueHelvetica55Roman/normal_normal.woff2") format("woff2"), url("../fonts//NeueHelvetica55Roman/normal_normal.woff") format("woff");
}
.is-uppercase {
  text-transform: uppercase;
}

.small {
  font-size: 1.1rem;
}
@media (max-width: 36em) {
  .small {
    font-size: 0.8rem;
  }
}

button, input, select, textarea {
  font-size: initial;
}

/* Containers */
.container,
.container-fluid,
.container-xxxl,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container-xs,
.container-xxs {
  margin-left: auto;
  margin-right: auto;
  padding: 0 5rem;
  width: 100%;
}
@media (max-width: 48em) {
  .container,
.container-fluid,
.container-xxxl,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container-xs,
.container-xxs {
    padding: 0 1rem;
  }
}

.container-xxl {
  max-width: 1600px !important;
}

.container-xl {
  max-width: 1439px !important;
}

.container-lg {
  max-width: 1200px !important;
}

.container-md {
  max-width: 992px !important;
}

.container-sm {
  max-width: 768px !important;
}

.container-xs {
  max-width: 576px !important;
}

/* Positions */
.position-absolute {
  position: absolute;
}

.position-relative {
  position: relative;
}

.position-fixed {
  position: fixed;
}

/* Text alignment */
.txt-align-center {
  text-align: center;
}

.txt-align-left {
  text-align: left;
}

.txt-align-right {
  text-align: right;
}

/* Heights */
.h-100 {
  height: 100%;
}

/* Widths */
.w-100 {
  width: 100%;
}

.w-70 {
  width: 70%;
}

.w-40 {
  width: 40%;
}

@media (max-width: 36em) {
  .w-xs-80 {
    width: 80%;
  }
}

/* Overflow */
.of-h {
  overflow: hidden;
}

/* Display */
.display-none, .d-n {
  display: none !important;
}

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

.display-grid, .d-g {
  display: grid !important;
}

.display-block, .d-b {
  display: block !important;
}

@media (max-width: 36em) {
  .d-xs-b {
    display: block !important;
  }
}

.display-inline-block, .d-ib {
  display: inline-block;
}

/* Flex Justify */
.justify-space-between, .jc-sb {
  justify-content: space-between;
}

.justify-space-evenly, .jc-se {
  justify-content: space-evenly;
}

.fd-c {
  flex-direction: column;
}

@media (max-width: 36em) {
  .fd-xs-c {
    flex-direction: column;
  }
}

/* Flex Align */
.align-items-center, .ai-c {
  align-items: center;
}

/* Flex */
.flex-1 {
  flex: 1;
}

/* Letter Spacing */
.ls-1 {
  letter-spacing: 1px;
}

/* Stick */
.stick {
  position: fixed;
  top: 0px;
}

/* Disabled text */
.txt-disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Lazy images */
.lazyImage:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAAulBMVEUBAAD/AAAIAAD/CgoOAAAZAAAUAAD/BQUeAAAuAAA9AAA4AAAoAAAjAADmAABCAAA0AAD/IiLhAAD/HR3ZAACcAAD/GBj6AADSAAB8AABMAAD/MDD/EhKxAACYAABRAAD/KSm5AACTAAB2AABHAAD1AADGAACBAADxAACkAACJAADqAACrAABqAABmAADJAADBAACgAACFAABhAACNAAC+AABdAABVAADeAADuAACPAABwAADNAAD/OTmppkF+AAAEnklEQVQ4yxSSWbKiQBREb3rVaocuLYrRAkQQZFIBh6c+3f+22v4/kZGRechNbJQFlCxMAz/UCgmcxc2PplGfUus/17GM6A1ixYbxNh4nyN0QbJKk4vGiW23XfUl3JaY3a9ZXpLv8C3o5bChlBAD2crP7gRevljwc5uF8PkOwpBwGENoqFbzE9wXsHAfndR0v7Ivj8IGGArMsdQjQBRpICJw/D0hPQDMdCntU7FoK4mB6Kfbjm0MKsJIzyqeCAD4MYyMclnF7GeVytXH4OlsVp1NFpuNQPjnJAeWVLBl2aHmH/T5ajTa7YVqb6wjRMKazr6VWLPEFlGA0XmlPAj8YZWKgtP3Zds2J6tAmGGbz0AkERIKQ4XVWvBnO0aSUVeZYv3Q439M5k4IE+N2EGq5i92kJuF22bVHPf1s/iKLXMVCX8Z3gGm1KIfOQhftN+3RAn8pqWw2LALtDulvM7hwQicIufcl4iI/+svwwrMax9ibZrtzc7Drz385o3d8o6TQAu9M+5wY6tAyzM+mbFcVDRQGL+WZop45FFnOBhxuqEMyWZ5Xyq8mJdvpwOe7qbfq4/Vm3Ed1IMIuELSMA8WQoDe0u85jix2tq8y8dq/h0FacRcXNOGI1A8u0HlUt8MGvDLA2e6ThtuI34ulxFR2IhE9dK4AowXKiQDV++Mx+nM3tNO29Wbbmjy4NcV8NjwPw/uysB9jT29CrmVJ8D6hGsaxnse7JYg23gLUOPn57yuFHBs15ucFz99tmktn+WDn4mpBIIZpYAc6k/sLSLReYG9z33yxj239p+kVPu/7VAbstpA0EQbcazy17ZNbGwUFlSdAGZi0QAAQ74/78ruCozD/3S1ae60WWP2bfdv3Z5dah8Nhb6vjLwUrA0FkAEICIIG+N3SYH1e8rnlwZfv26uEMozNMkAAUQjYgZCmtz7MDm779SKzecEf+Z7a6Ad2HtuFQzARkZG9lisOF0V4u3bJZd5GPvF8EQDUEYwe7awkF7gFm7vOdl89Nm7Dvnp2NsNNMhLTSyUAbyQrSK89uYz7Xi9+zMM60I1Se1L0k4qBCtF6ZWDFnDAZr/vj3X5SNdreZ1n1PxdNrE0IBUzR8/DzdmoCPpldkZXDQiHZFkv0qap6owUZwrOEgKJoDRZgdE3023sdje1qe7YFwMvLxw9iEoQ8FPcsmwFft9MUdX2a1d3b2NANt25B6CZACfV06MiGSEJ6T3gre6w/FWKyUeHR7KFVWQIlkxQpIRUioigq4WVp7+nWzmJy6ZKaD6pQoRgAy0oMHEU0nmgl4fLJSabkI3znK650fnIgrQiKp10gpSFgDb4sLS6X4/Dep5tpydznZ3p3Skd9Q+dgPD8H0Uzv+abw+F8mlt8TmvXX7ajapm11ELBe20ZpAIwJHmESY+yfPGqeSlj330Tac9MQGuRUZSsgoQXyeEo0sXZZdUXZ/MW5ZYGeND/kRhCkG8xOdvL683luzsdZrV/24xZ6lmXTy4JVuRaGDA59OtlO6z25fWjeGwXZyoO/UAeAEmwN2z0c56oJGQx7a6zWaRkNru2K0/baWjxzIJjQEoARND8D7+tgCt2HKJNAAAAAElFTkSuQmCC") center center repeat;
  opacity: 0;
  transition: opacity 0.5s;
}

.lazyImageWaiting:before {
  opacity: 1;
  transition: opacity 0s;
}

.lazyImageError img,
.lazyImageWaiting img {
  opacity: 0;
  transform: scale(0);
  transition: none;
}

.keen-slider[data-keen-slider-moves] * {
  cursor: grabbing !important;
  pointer-events: unset !important;
}
.keen-slider[data-keen-slider-moves] * a {
  pointer-events: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Paddings */
.p-0 {
  padding: 0;
}

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

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

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-1 {
  padding-top: 1rem;
}

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

.pt-3 {
  padding-top: 3rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.pt-11 {
  padding-top: 11rem;
}

.pt-12 {
  padding-top: 12rem;
}

.pt-8 {
  padding-top: 8rem;
}

@media (max-width: 48em) {
  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 1rem !important;
  }

  .pt-sm-2 {
    padding-top: 2rem !important;
  }

  .pt-sm-3 {
    padding-top: 3rem !important;
  }

  .pt-sm-4 {
    padding-top: 4rem !important;
  }

  .pt-sm-5 {
    padding-top: 5rem !important;
  }

  .pt-sm-6 {
    padding-top: 6rem;
  }
}
.pl-0 {
  padding-left: 0;
}

.pl-4 {
  padding-left: 4rem;
}

.pl-5 {
  padding-left: 5rem;
}

.pl-6 {
  padding-left: 6rem;
}

.pl-7 {
  padding-left: 7rem;
}

.pl-8 {
  padding-left: 8rem;
}

@media (max-width: 48em) {
  .pl-sm-0 {
    padding-left: 0;
  }

  .pl-sm-1 {
    padding-left: 1rem;
  }

  .pl-sm-2 {
    padding-left: 2rem;
  }

  .pl-sm-3 {
    padding-left: 3rem;
  }

  .pl-sm-4 {
    padding-left: 4rem;
  }

  .pl-sm-5 {
    padding-left: 5rem;
  }

  .pl-sm-6 {
    padding-left: 6rem;
  }
}
.pr-0 {
  padding-right: 0;
}

.pr-4 {
  padding-right: 4rem;
}

.pr-5 {
  padding-right: 5rem;
}

.pr-6 {
  padding-right: 6rem;
}

.pr-7 {
  padding-right: 7rem;
}

.pr-8 {
  padding-right: 8rem;
}

@media (max-width: 48em) {
  .pr-sm-0 {
    padding-right: 0;
  }

  .pr-sm-1 {
    padding-right: 1rem;
  }

  .pr-sm-2 {
    padding-right: 2rem;
  }

  .pr-sm-3 {
    padding-right: 3rem;
  }

  .pr-sm-4 {
    padding-right: 4rem;
  }
}
.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pb-11 {
  padding-bottom: 11rem;
}

.pb-12 {
  padding-bottom: 12rem;
}

@media (max-width: 48em) {
  .pb-sm-0 {
    padding-bottom: 0;
  }

  .pb-sm-1 {
    padding-bottom: 1rem;
  }

  .pb-sm-2 {
    padding-bottom: 2rem;
  }

  .pb-sm-3 {
    padding-bottom: 3rem;
  }

  .pb-sm-4 {
    padding-bottom: 4rem;
  }

  .pb-sm-5 {
    padding-bottom: 5rem;
  }

  .pb-sm-6 {
    padding-bottom: 6rem;
  }
}
/* Margins */
.m-auto {
  margin: auto !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-10 {
  margin-top: 10rem;
}

@media (max-width: 36em) {
  .mt-xs-0 {
    margin-top: 0;
  }

  .mt-xs-1 {
    margin-top: 1rem;
  }

  .mt-xs-2 {
    margin-top: 2rem;
  }

  .mt-xs-3 {
    margin-top: 3rem;
  }

  .mt-xs-4 {
    margin-top: 4rem;
  }
}
.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

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

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

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

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

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

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

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

@media (max-width: 36em) {
  .mb-xs-0 {
    margin-bottom: 0;
  }

  .mb-xs-1 {
    margin-bottom: 1rem;
  }

  .mb-xs-2 {
    margin-bottom: 2rem;
  }
}
.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 1 !important;
}

.ml-2 {
  margin-left: 2 !important;
}

.ml-3 {
  margin-left: 3 !important;
}

body {
  color: black;
  margin: 0;
  position: relative;
  font-family: var(--ff-base);
  background-color: var(--clr-grey-light);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 100vh;
  height: 100svh;
  gap: 1rem;
}
@media (max-width: 75em) {
  body {
    background-size: auto;
  }
}
@media (max-width: 48em) {
  body {
    background-size: cover;
    gap: 0;
  }
}
body main {
  position: relative;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  gap: 0;
  width: 100%;
  max-height: 100vh;
  max-height: 100svh;
}
@media (max-width: 62em) {
  body main {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 36em) {
  body main {
    grid-template-rows: 1fr 1fr;
  }
}
body main .main-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 0 4rem;
}
@media (max-width: 75em) {
  body main .main-container {
    align-items: flex-start;
  }
}
@media (max-width: 62em) {
  body main .main-container {
    padding: 0 2rem;
  }
}
@media (max-width: 62em) {
  body main .main-container header {
    width: calc(100% - 5rem);
  }
}
body main .main-container header a.brand {
  color: black;
  text-transform: uppercase;
  font-size: 2.5rem;
}
@media (max-width: 62em) {
  body main .main-container header a.brand {
    z-index: 100;
    position: fixed;
  }
}
body main .main-container section {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
  margin-top: 0;
  margin-bottom: auto;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1000ms;
}
@media (max-width: 75em) {
  body main .main-container section#eitiw-video-section {
    width: 100%;
    z-index: -1;
  }
}
@media (max-width: 62em) {
  body main .main-container section#eitiw-video-section {
    max-height: initial;
  }
}
@media (max-width: 36em) {
  body main .main-container section#eitiw-video-section {
    min-width: 100%;
  }
}
body main .main-container section#eitiw-video-section .video-container {
  width: auto;
  height: 100%;
  aspect-ratio: 1;
  position: relative;
  margin: auto auto auto 0;
  margin-top: 0;
  margin-bottom: 0;
  min-height: 20rem;
  max-height: calc(100vh - 19rem);
  max-height: calc(100svh - 19rem);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 75em) {
  body main .main-container section#eitiw-video-section .video-container {
    aspect-ratio: initial;
    margin: 0 auto;
    min-width: 100%;
    max-height: initial;
    width: auto;
  }
}
@media (max-width: 62em) {
  body main .main-container section#eitiw-video-section .video-container {
    height: initial;
  }
}
body main .main-container section#eitiw-video-section .video-container video {
  border: 2px solid var(--clr-dark);
  position: relative;
  max-width: 100%;
  pointer-events: none;
}
body main .main-container section#eitiw-video-section .video-container #sound-on-off {
  border: none;
  background-color: transparent;
  font-family: var(--ff-base);
  font-size: 2rem;
  gap: 0.5rem;
  padding: 0.6rem 0 0 0;
  cursor: pointer;
}
body main .main-container section#eitiw-video-section .video-container #sound-on-off.sound-off span.off {
  font-weight: bold;
}
body main .main-container section#eitiw-video-section .video-container #sound-on-off.sound-on span.on {
  font-weight: bold;
}
body main .main-container section#eitiw-video-section .video-container a {
  font-family: var(--ff-base);
  font-size: 2rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--clr-dark);
  margin: 2rem auto;
}
body main .main-container section#eitiw-video-section .video-container footer .social {
  height: 2.6rem;
}
body main .main-container section#eitiw-video-section .video-container footer .social a {
  text-decoration: none;
  border-bottom: none;
  font-size: 1.8rem;
}
body main .main-container section#eitiw-video-section .video-container footer .social a.fab {
  margin: 0 auto 0 0;
  font-family: "Font Awesome 6 Brands";
}
body main .main-container section#eitiw-video-section .video-container footer .footer__bottom a {
  font-size: 0.8rem;
}
body main .main-container section#eitiw-video-section .video-container footer .footer__bottom a#rcalogo {
  border-bottom: 0;
  margin: 0;
}
body main .main-container section#eitiw-video-section .video-container footer .footer__bottom .disclaimer {
  text-align: left;
  font-family: var(--ff-small);
  font-size: 0.8rem;
  color: var(--clr-dark-50);
  width: 100%;
}
@media (max-width: 62em) {
  body main .main-container section#eitiw-video-section .video-container footer .footer__bottom .disclaimer {
    text-align: center;
  }
}
body main .main-container section#eitiw-video-section .video-container footer .footer__bottom .disclaimer p, body main .main-container section#eitiw-video-section .video-container footer .footer__bottom .disclaimer a {
  font-size: 0.8rem;
  font-family: var(--ff-small);
  color: var(--clr-dark-50);
  margin-bottom: 0;
  padding: 0;
  text-decoration: none;
  border-bottom: none;
  text-transform: capitalize;
}
body main .main-container section#eitiw-video-section .video-container footer .footer__bottom .disclaimer a:hover {
  color: var(--clr-dark);
}
@media (max-width: 62em) {
  body main .main-container section#eitiw-video-section .video-container footer {
    display: none;
  }
}
body main .sections-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-height: 100vh;
  max-height: 100svh;
  overflow-x: scroll;
  width: 100%;
  min-height: 100%;
  height: 100%;
  padding: 0 4rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1000ms;
}
@media (max-width: 62em) {
  body main .sections-container {
    max-height: initial;
    overflow: initial;
    min-height: initial;
    padding: 0 2rem;
  }
}
body main .sections-container header {
  height: 9rem;
  position: sticky;
  top: 0;
  z-index: 10;
}
@media (max-width: 62em) {
  body main .sections-container header {
    position: initial;
    height: 3rem;
    padding: 1.5rem 0;
  }
}
body main .sections-container section h1 {
  margin: 0 auto;
}
body main .sections-container section p {
  font-size: 2.5rem;
  text-align: center;
  text-transform: uppercase;
  margin: 1rem auto;
}
@media (max-width: 36em) {
  body main .sections-container section p {
    font-size: 2rem;
  }
}
body main .sections-container footer {
  display: none;
}
@media (max-width: 62em) {
  body main .sections-container footer {
    display: flex;
  }
}
body#home main .sections-container {
  background-color: var(--clr-main);
  padding-bottom: 2rem;
}
body#home main .sections-container header {
  background-color: var(--clr-main);
}
body#home main .sections-container section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
body#home main .sections-container section h2 {
  font-size: 2.5rem;
  font-family: var(--ff-base);
  font-weight: initial;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 36em) {
  body#home main .sections-container section h2 {
    font-size: 1.9rem;
  }
}
body#home main .sections-container section h3 {
  font-size: 2.5rem;
  font-family: var(--ff-base);
  font-weight: initial;
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto;
  max-width: 45rem;
}
@media (max-width: 36em) {
  body#home main .sections-container section h3 {
    font-size: 1.9rem;
  }
}
body#home main .sections-container section img.album-art {
  border: 2px solid var(--clr-dark);
  max-width: 38rem;
  width: 100%;
}
body#home main .sections-container section a {
  font-size: 2.5rem;
  text-decoration: underline;
  text-transform: uppercase;
}
@media (max-width: 36em) {
  body#home main .sections-container section a {
    font-size: 2rem;
  }
}
body#home main .sections-container section p.cta-disclaimer {
  font-size: 0.8rem;
  color: var(--clr-dark-25);
}
body#home main .sections-container section .pre-save-block {
  position: relative;
}
body#home main .sections-container section .pre-save-block button#pre-save-trigger {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  border: none;
  font-family: var(--ff-base);
  font-size: 2.5rem;
  text-transform: uppercase;
  cursor: pointer;
}
@media (max-width: 36em) {
  body#home main .sections-container section .pre-save-block button#pre-save-trigger {
    font-size: 2rem;
  }
}
body#home main .sections-container section .pre-save-block .cta-container {
  position: absolute;
  top: 3rem;
  transition: all 500ms;
  background-color: var(--clr-main);
  border: 2px solid var(--clr-dark);
  display: flex;
  flex-direction: column;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
body#home main .sections-container section .pre-save-block .cta-container.hidden {
  top: 2rem;
  opacity: 0;
  pointer-events: none;
}
body#home main .sections-container section .pre-save-block .cta-container a, body#home main .sections-container section .pre-save-block .cta-container button {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  font-size: 2rem;
  padding: 0.5rem;
  text-decoration: none;
  text-align: center;
  background-color: var(--clr-main);
  border: none;
  border-bottom: 2px solid black;
  cursor: pointer;
  color: var(--clr-dark);
}
@media (max-width: 36em) {
  body#home main .sections-container section .pre-save-block .cta-container a, body#home main .sections-container section .pre-save-block .cta-container button {
    font-size: 1.6rem;
  }
}
body#home main .sections-container section .pre-save-block .cta-container a:hover, body#home main .sections-container section .pre-save-block .cta-container button:hover {
  color: var(--clr-main);
  background-color: var(--clr-dark);
}
body#home main .sections-container section .pre-save-block .cta-container button {
  border-bottom: none;
}
@media (max-width: 62em) {
  body#tour {
    background-color: var(--clr-dark-blue);
    color: var(--clr-dark);
  }
}
@media (max-width: 62em) {
  body#tour main {
    grid-template-rows: 7rem 1fr;
  }
}
@media (max-width: 62em) {
  body#tour main .main-container header a.brand {
    color: var(--clr-dark);
  }
}
@media (max-width: 62em) {
  body#tour main .main-container section#eitiw-video-section {
    display: none;
  }
}
body#tour main .sections-container {
  background-color: var(--clr-dark-blue);
  padding-bottom: 2rem;
}
body#tour main .sections-container header {
  background-color: var(--clr-dark-blue);
}
@media (max-width: 62em) {
  body#tour main .sections-container header {
    position: fixed;
    background-color: var(--clr-dark-blue);
    height: 7rem;
    padding: 0;
    top: 0;
  }
}
body#tour main .sections-container header nav ul li.current a {
  border-bottom: 2px solid var(--clr-dark);
}
@media (max-width: 62em) {
  body#tour main .sections-container header nav ul li.current a {
    border-bottom: none;
  }
}
body#tour main .sections-container header nav ul li a {
  color: var(--clr-dark);
}
body#tour main .sections-container header nav ul li a:hover {
  border-bottom: 2px solid var(--clr-dark);
}
@media (max-width: 62em) {
  body#tour main .sections-container header nav ul li a:hover {
    border-bottom: none;
  }
}
body#tour main .sections-container section#tour-intro {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
body#tour main .sections-container section#tour-intro h1, body#tour main .sections-container section#tour-intro h2 {
  font-family: var(--ff-base);
  font-size: 3.3vw;
  line-height: 1.3cap;
  text-transform: uppercase;
  color: var(--clr-dark);
  margin: 0.5rem 0;
  display: flex;
}
@media (max-width: 62em) {
  body#tour main .sections-container section#tour-intro h1, body#tour main .sections-container section#tour-intro h2 {
    font-size: 6.3vw;
  }
}
body#tour main .sections-container section#tour-intro h2 {
  justify-content: flex-end;
  width: 100%;
}
body#tour main .sections-container section#tour-intro div.grid-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}
body#tour main .sections-container section#tour-intro div.grid-1 div {
  display: flex;
  align-items: center;
}
body#tour main .sections-container section#tour-intro div.grid-1 div:nth-of-type(2) {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
body#tour main .sections-container section#tour-intro div.grid-2 {
  display: flex;
  width: 100%;
}
body#tour main .sections-container section#tour-intro div.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 50%;
}
body#tour main .sections-container section#tour-intro div.grid-4 {
  width: 50%;
}
body#tour main .sections-container section#tour-intro .jt-tour-portrait {
  background-image: url("../assets/img/jt-tour-portrait.webp");
  background-size: cover;
  aspect-ratio: 12/16;
  opacity: 0;
  transform: translateX(-50px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}
body#tour main .sections-container section#tour-intro .jt-tour-portrait.reveal {
  opacity: 1;
  transform: translateX(0);
}
body#tour main .sections-container section#tour-section {
  width: 100%;
  padding-top: 1.7rem;
}
body#tour main .sections-container section#tour-section a.credits-link {
  font-family: var(--ff-base);
  color: var(--clr-dark);
  margin: 2rem auto;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--clr-dark);
  max-width: fit-content;
  padding: 0.3rem 0;
}
body#tour main .sections-container section#tour-section a.credits-link:hover {
  border-bottom: 1px solid transparent;
}
body#tour main .sections-container section#credits-section .credit-block {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
}
body#tour main .sections-container section#credits-section .credit-block h2 {
  font-family: var(--ff-base);
  color: var(--clr-dark);
  font-size: 2.6rem;
  margin: 2.6rem auto 0.5rem auto;
  text-transform: uppercase;
  text-align: center;
}
body#tour main .sections-container section#credits-section .credit-block p {
  margin: 0 auto;
}
body#tour main .sections-container section#credits-section .credit-block p.credit {
  font-family: var(--ff-base);
  color: var(--clr-dark);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body#tour main .sections-container section#credits-section .credit-block p.credit span:first-of-type {
  font-size: 1.2rem;
}
body#tour main .sections-container section#credits-section .credit-block p.credit span:last-of-type {
  font-size: 1.8rem;
}
@media (max-width: 62em) {
  body#tour main .sections-container footer {
    color: var(--clr-dark);
  }
}
@media (max-width: 62em) {
  body#tour main .sections-container footer .footer__top .social a {
    color: var(--clr-dark);
  }
}
@media (max-width: 62em) {
  body#tour main .sections-container footer .footer__bottom .disclaimer {
    color: var(--clr-dark-50);
  }
}
@media (max-width: 62em) {
  body#tour main .sections-container footer .footer__bottom .disclaimer p, body#tour main .sections-container footer .footer__bottom .disclaimer a {
    color: var(--clr-dark-50);
  }
}
@media (max-width: 62em) {
  body#tour main .sections-container footer .footer__bottom .disclaimer a:hover:hover {
    filter: brightness(1.1);
  }
}
body#tour main .sections-container footer .cta-disclaimer {
  color: var(--clr-dark);
}
body#tour main .sections-container footer .rca {
  color: var(--clr-dark);
}
body#tour main .sections-container footer .form-container form {
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
}
body#tour main .sections-container footer .form-container form input[type=email] {
  border-bottom: 1px solid var(--clr-dark);
  color: var(--clr-dark);
}
body#tour main .sections-container footer .form-container form button {
  border: 1px solid var(--clr-dark);
  color: var(--clr-dark);
}
body#tour main .sections-container footer .form-container form button:hover {
  background-color: var(--clr-dark);
}
body#tour.credits-external main {
  grid-template-columns: 1fr;
}
@media (max-width: 62em) {
  body#videos main {
    grid-template-rows: 7rem 1fr;
  }
}
@media (max-width: 62em) {
  body#videos main .main-container section#eitiw-video-section {
    display: none;
  }
}
body#videos main .sections-container {
  background-color: var(--clr-main);
  padding-bottom: 2rem;
}
body#videos main .sections-container header {
  background-color: var(--clr-main);
}
@media (max-width: 62em) {
  body#videos main .sections-container header {
    position: fixed;
    background-color: var(--clr-grey-light);
    height: 7rem;
    padding: 0;
    top: 0;
  }
}
body#videos main .sections-container header nav ul li.current a {
  border-bottom: 2px solid var(--clr-dark);
}
@media (max-width: 62em) {
  body#videos main .sections-container header nav ul li.current a {
    border-bottom: none;
  }
}
body#videos main .sections-container header nav ul li a {
  color: var(--clr-dark);
}
body#videos main .sections-container header nav ul li a:hover {
  border-bottom: 2px solid var(--clr-dark);
}
@media (max-width: 62em) {
  body#videos main .sections-container header nav ul li a:hover {
    border-bottom: none;
  }
}
body#videos main .sections-container section#videos-intro {
  width: 100%;
  padding: 0rem 0 2.9rem 0;
}
@media (max-width: 62em) {
  body#videos main .sections-container section#videos-intro {
    padding: 2.9rem 0;
  }
}
body#videos main .sections-container section#videos-intro a {
  font-size: 2rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--clr-dark);
}
body#videos main .sections-container section#videos-intro a:hover {
  border-bottom: 1px solid transparent;
}
body#videos main .sections-container section#videos-section {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 36em) {
  body#videos main .sections-container section#videos-section {
    grid-template-columns: 1fr;
  }
}
body#videos main .sections-container section#videos-section button.video-container {
  max-width: 100%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  color: var(--clr-dark);
}
body#videos main .sections-container section#videos-section button.video-container:hover {
  opacity: 0.9;
}
body#videos main .sections-container section#videos-section button.video-container .video-content {
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
body#videos main .sections-container section#videos-section button.video-container .video-content video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 100%;
}
body#videos main .sections-container section#videos-section button.video-container p {
  font-size: 1.6rem;
  text-align: left;
  margin: 0.7rem 0 0 0;
  font-weight: 500;
}
@media (max-width: 62em) {
  body#music main {
    grid-template-rows: 7rem 1fr;
  }
}
@media (max-width: 62em) {
  body#music main .main-container section#eitiw-video-section {
    display: none;
  }
}
body#music main .sections-container {
  transition: all 400ms;
}
@media (max-width: 62em) {
  body#music main .sections-container header {
    position: fixed;
    background-color: var(--clr-grey-light);
    height: 7rem;
    padding: 0;
    top: 0;
  }
}
body#music.slide-1 .sections-container {
  background-color: var(--clr-main);
}
body#music.slide-1 .sections-container .slide {
  background-color: var(--clr-main);
}
body#music.slide-1 .sections-container header {
  transition: all 400ms;
  background-color: var(--clr-main);
}
@media (max-width: 62em) {
  body#music.slide-1 .sections-container header {
    background-color: var(--clr-grey-light);
  }
}
body#music.slide-1 .sections-container .slider-arrows {
  transition: all 400ms;
  background-color: var(--clr-main);
}
body#music.slide-2 .sections-container {
  background-color: var(--clr-orange);
}
body#music.slide-2 .sections-container .slide {
  background-color: var(--clr-orange);
}
body#music.slide-2 .sections-container header {
  transition: all 400ms;
  background-color: var(--clr-orange);
}
@media (max-width: 62em) {
  body#music.slide-2 .sections-container header {
    background-color: var(--clr-grey-light);
  }
}
body#music.slide-2 .sections-container .slider-arrows {
  transition: all 400ms;
  background-color: var(--clr-orange);
}
body#music.slide-3 .sections-container {
  background-color: var(--clr-gold);
}
body#music.slide-3 .sections-container .slide {
  background-color: var(--clr-gold);
}
body#music.slide-3 .sections-container header {
  transition: all 400ms;
  background-color: var(--clr-gold);
}
@media (max-width: 62em) {
  body#music.slide-3 .sections-container header {
    background-color: var(--clr-grey-light);
  }
}
body#music.slide-3 .sections-container .slider-arrows {
  transition: all 400ms;
  background-color: var(--clr-gold);
}
body#music.slide-4 .sections-container {
  background-color: var(--clr-gold-light);
}
body#music.slide-4 .sections-container .slide {
  background-color: var(--clr-gold-light);
}
body#music.slide-4 .sections-container header {
  transition: all 400ms;
  background-color: var(--clr-gold-light);
}
@media (max-width: 62em) {
  body#music.slide-4 .sections-container header {
    background-color: var(--clr-grey-light);
  }
}
body#music.slide-4 .sections-container .slider-arrows {
  transition: all 400ms;
  background-color: var(--clr-gold-light);
}
body#music.slide-5 .sections-container {
  background-color: var(--clr-grey);
}
body#music.slide-5 .sections-container .slide {
  background-color: var(--clr-grey);
}
body#music.slide-5 .sections-container header {
  transition: all 400ms;
  background-color: var(--clr-grey);
}
@media (max-width: 62em) {
  body#music.slide-5 .sections-container header {
    background-color: var(--clr-grey-light);
  }
}
body#music.slide-5 .sections-container .slider-arrows {
  transition: all 400ms;
  background-color: var(--clr-grey);
}
body#music.slide-6 .sections-container {
  background-color: var(--clr-blue);
}
body#music.slide-6 .sections-container .slide {
  background-color: var(--clr-blue);
}
body#music.slide-6 .sections-container header {
  transition: all 400ms;
  background-color: var(--clr-blue);
}
@media (max-width: 62em) {
  body#music.slide-6 .sections-container header {
    background-color: var(--clr-grey-light);
  }
}
body#music.slide-6 .sections-container .slider-arrows {
  transition: all 400ms;
  background-color: var(--clr-blue);
}
body#music main .sections-container {
  position: relative;
}
body#music main .sections-container header nav ul li.current a {
  border-bottom: 2px solid var(--clr-dark);
}
@media (max-width: 62em) {
  body#music main .sections-container header nav ul li.current a {
    border-bottom: none;
  }
}
body#music main .sections-container header nav ul li a {
  color: var(--clr-dark);
}
body#music main .sections-container header nav ul li a:hover {
  border-bottom: 2px solid var(--clr-dark);
}
@media (max-width: 62em) {
  body#music main .sections-container header nav ul li a:hover {
    border-bottom: none;
  }
}
body#music main .sections-container .slide {
  width: 100%;
  position: absolute;
  opacity: 0;
  padding: 0 4rem 4rem 4rem;
  top: 9rem;
  pointer-events: none;
  transition: 400ms all;
}
@media (max-width: 62em) {
  body#music main .sections-container .slide {
    padding: 0 0 3rem 0;
    top: 0;
  }
}
@media (max-width: 36em) {
  body#music main .sections-container .slide {
    min-height: 113rem;
  }
}
body#music main .sections-container .slide.active {
  opacity: 1;
  pointer-events: initial;
}
body#music main .sections-container .slide .album .general-info {
  display: grid;
  grid-template-columns: 30rem 1fr;
  align-items: end;
  gap: 1.6rem;
}
@media (max-width: 62em) {
  body#music main .sections-container .slide .album .general-info {
    grid-template-columns: 1fr;
  }
}
body#music main .sections-container .slide .album .general-info .album-art {
  border: 2px solid var(--clr-dark);
}
body#music main .sections-container .slide .album .general-info .album-art img {
  width: 100%;
}
@media (max-width: 62em) {
  body#music main .sections-container .slide .album .general-info .album-info {
    padding: 0 2rem;
  }
}
body#music main .sections-container .slide .album .general-info .album-info h2, body#music main .sections-container .slide .album .general-info .album-info p {
  font-size: 1.6rem;
  margin: 0;
  text-transform: uppercase;
}
body#music main .sections-container .slide .album .general-info .album-info .listen-now {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 2rem;
  text-transform: uppercase;
}
body#music main .sections-container .slide .album .general-info .album-info .listen-now p {
  font-size: 1.6rem;
}
body#music main .sections-container .slide .album .general-info .album-info .listen-now a {
  font-size: 1.6rem;
  text-decoration: underline;
}
body#music main .sections-container .slide .album .track-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2rem 2rem 2rem 3.6rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  align-items: flex-start;
}
@media (max-width: 62em) {
  body#music main .sections-container .slide .album .track-list {
    padding: 2rem 2rem 2rem 4.6rem;
  }
}
body#music main .sections-container .slide .album .track-list a {
  font-size: 1.6rem;
  display: inline-block;
  text-decoration: underline;
}
body#music main .sections-container .slide .album .track-list a:hover {
  opacity: 0.8;
  text-decoration: none;
}
body#music main .sections-container .slide .album .track-list a img {
  width: 2rem;
  top: -2px;
  position: relative;
  margin-left: 5px;
}
body#music main .sections-container .slide .slider-arrows {
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  width: calc(50% - 8rem);
  padding: 2rem 0;
}
@media (max-width: 62em) {
  body#music main .sections-container .slide .slider-arrows {
    width: 100%;
  }
}
body#music main .sections-container .slide .slider-arrows button {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--ff-base);
  font-size: 1.6rem;
  text-transform: uppercase;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: var(--clr-dark);
}
body#music main .sections-container .slide .slider-arrows button.prev {
  text-align: left;
}
body#music main .sections-container .slide .slider-arrows button.next {
  text-align: right;
}
body#music main .sections-container .slide-album-1 .slider-arrows {
  justify-content: end;
}
body.open-modal::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 20;
  transition: all 200ms;
  opacity: 1;
  background-color: var(--clr-main-70);
}
body .d-only {
  display: flex !important;
  opacity: 1 !important;
}
@media (max-width: 75em) {
  body .d-only {
    display: none !important;
    opacity: 0 !important;
  }
}
body .m-only {
  display: none !important;
  opacity: 0 !important;
}
@media (max-width: 75em) {
  body .m-only {
    display: flex !important;
    opacity: 1 !important;
  }
}

body header {
  display: flex;
  align-items: center;
  height: 9rem;
  width: 100%;
  padding: 3rem 0;
  position: relative;
  animation: fadeIn 1s ease forwards;
  z-index: 1;
}
@media (max-width: 62em) {
  body header {
    height: 7.2rem;
    padding: 2.4rem 0;
  }
}
body header .nav-container {
  width: 100%;
}
body header .nav-container .menu-content {
  display: flex;
  align-items: center;
}
@media (max-width: 62em) {
  body header .nav-container .menu-content {
    position: fixed;
    opacity: 0;
    right: -100%;
    height: 100vh;
    height: 100svh;
    min-height: 100%;
    background-color: var(--clr-main);
    top: 0;
    width: 100%;
    grid-template-columns: 1fr;
    align-items: center;
    align-content: center;
    gap: 3rem;
    padding: 0 5rem;
  }
  body header .nav-container .menu-content.open {
    right: 0;
    opacity: 1;
  }
}
body header .nav-container .menu-content nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
}
@media (max-width: 62em) {
  body header .nav-container .menu-content nav {
    flex-direction: column;
    gap: 4rem;
    border-right: none;
    padding-top: initial;
    margin-top: 20%;
  }
}
body header .nav-container .menu-content nav ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media (max-width: 62em) {
  body header .nav-container .menu-content nav ul {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}
body header .nav-container .menu-content nav ul li.current a {
  border-bottom: 2px solid var(--clr-dark);
}
@media (max-width: 62em) {
  body header .nav-container .menu-content nav ul li.current a {
    border-bottom: none;
  }
}
body header .nav-container .menu-content nav ul li a {
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: 3rem;
  transition: none;
  border-bottom: 2px solid transparent;
  transition: all 400ms linear;
}
@media (max-width: 62em) {
  body header .nav-container .menu-content nav ul li a {
    font-family: var(--ff-accent);
    font-size: 9rem;
  }
}
@media (max-width: 36em) {
  body header .nav-container .menu-content nav ul li a {
    font-size: 35vw;
    line-height: 12vw;
  }
}
body header .nav-container .menu-content nav ul li a:hover {
  border-bottom: 2px solid var(--clr-dark);
}
@media (max-width: 62em) {
  body header .nav-container .menu-content nav ul li a:hover {
    border-bottom: none;
  }
}
body header .nav-container button.toggle-menu {
  display: none;
  background-color: transparent;
  border: none;
  color: var(--clr-dark);
  margin: 0;
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 100;
  max-width: 4rem;
  padding: 0;
}
@media (max-width: 62em) {
  body header .nav-container button.toggle-menu {
    display: flex;
    top: 2rem;
  }
}
body header .nav-container button.toggle-menu .line {
  transition: 500ms;
  transform-origin: center;
  fill: var(--clr-dark);
}
body header .nav-container button.toggle-menu.active .top {
  y: 50;
  transform: rotate(-45deg);
}
body header .nav-container button.toggle-menu.active .bottom {
  y: 50;
  transform: rotate(45deg);
}
body header .nav-container button.toggle-menu.active .middle {
  opacity: 0;
}
body#tour header .nav-container {
  width: 100%;
}
@media (max-width: 62em) {
  body#tour header .nav-container .menu-content {
    background-color: var(--clr-dark-blue);
  }
}
@media (max-width: 62em) {
  body#tour header .nav-container .menu-content nav ul li.current a {
    border-bottom: 2px solid transparent;
  }
}
@media (max-width: 62em) {
  body#tour header .nav-container .menu-content nav ul li a:hover {
    border-bottom: 2px solid var(--clr-dark);
  }
}
@media (max-width: 62em) {
  body#tour header .nav-container button.toggle-menu {
    color: var(--clr-dark);
  }
}
@media (max-width: 62em) {
  body#tour header .nav-container button.toggle-menu .line {
    fill: var(--clr-dark);
  }
}

.btn {
  font-family: var(--ff-base);
  text-align: center;
  font-size: 1.5rem;
  transition: all 400ms;
  text-align: center;
  text-transform: uppercase;
  color: black;
  border: 1px solid black;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
  padding: 0.5rem 1rem;
}
.btn:hover {
  background-color: white;
  color: black;
}
.btn__dark {
  background-color: black;
  color: var(--clr-main);
}
.btn__dark:hover {
  background-color: var(--clr-main);
  color: black;
}
.btn__large {
  font-size: 1.9rem;
  padding: 0.8rem 2.4rem;
}

.social {
  text-align: right;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.social a {
  font-size: 1.8rem;
  color: black;
}
.social a:hover {
  opacity: 0.8;
}
.social a span.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.modal {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  transition: all 300ms;
  padding: 2rem;
  max-width: 30rem;
  width: 100%;
  height: 15rem;
  z-index: 100;
  background-color: black;
  border-radius: 10px;
  gap: 1rem;
}
@media (max-width: 36em) {
  .modal {
    max-width: 90%;
  }
}
.modal h2 {
  font-family: var(--ff-base);
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.9rem;
  letter-spacing: 0;
  color: var(--clr-main);
}
.modal.hidden {
  opacity: 0;
  pointer-events: none;
  top: 70%;
}
.modal .btn-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--ff-base);
  letter-spacing: 0;
  max-width: 2rem;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--clr-main);
}
.modal .btn-close svg {
  width: 100%;
}
.modal .btn-close svg .top {
  transform-origin: center;
  fill: var(--clr-main);
  y: 44;
  transform: rotate(-45deg);
  rx: 10px;
}
.modal .btn-close svg .bottom {
  transform-origin: center;
  fill: var(--clr-main);
  y: 44;
  transform: rotate(45deg);
  rx: 10px;
}
.modal#videoModal {
  background-color: black;
  padding: 0;
  max-width: 50rem;
  width: 100%;
  max-height: 30rem;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 36em) {
  .modal#videoModal {
    max-width: 90%;
    max-height: 22rem;
  }
}
.modal#videoModal .video-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal#videoModal .video-container iframe {
  aspect-ratio: 16/9;
  height: initial !important;
}

.ae-modal-overlay-closed,
.ae-modal {
  display: none;
}

footer {
  border-top: 0;
  display: flex;
  flex-direction: column;
  color: var(--clr-dark);
  bottom: 0;
  width: 100%;
  padding: 0.5rem 0 1rem 0;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1500ms;
}
@media (max-width: 62em) {
  footer {
    padding: 2rem 0 0 0;
  }
}
footer .footer__top {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  text-align: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 75em) {
  footer .footer__top {
    flex-direction: column;
    gap: 1rem;
    margin: auto;
  }
}
@media (max-width: 62em) {
  footer .footer__top {
    align-items: center;
  }
}
footer .footer__top .social {
  justify-content: space-between;
}
@media (max-width: 62em) {
  footer .footer__top .social {
    justify-content: center;
    gap: 1rem;
  }
}
footer .footer__top .social a {
  color: var(--clr-dark);
}
footer .footer__bottom {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  gap: 1rem;
}
@media (max-width: 62em) {
  footer .footer__bottom {
    flex-direction: column;
  }
}
footer .footer__bottom #rcalogo {
  display: flex;
  align-items: flex-start;
  padding-top: 0.2rem;
}
@media (max-width: 62em) {
  footer .footer__bottom #rcalogo {
    margin: auto;
  }
}
footer .footer__bottom .disclaimer {
  text-align: left;
  font-family: var(--ff-small);
  font-size: 0.8rem;
  color: var(--clr-dark-50);
  width: 100%;
}
@media (max-width: 62em) {
  footer .footer__bottom .disclaimer {
    text-align: center;
  }
}
footer .footer__bottom .disclaimer p, footer .footer__bottom .disclaimer a {
  font-size: 0.8rem;
  font-family: var(--ff-small);
  color: var(--clr-dark-50);
  margin-bottom: 0;
  padding: 0;
}
footer .footer__bottom .disclaimer a:hover {
  color: var(--clr-dark);
}
footer .cta-disclaimer {
  text-align: center;
  font-family: var(--ff-small);
  color: var(--clr-dark);
  max-width: 42rem;
  grid-area: disclaimer;
}
footer .cta-disclaimer p {
  padding: 0;
  font-size: 0.8rem;
  margin: 0;
}
footer .rca {
  display: flex;
  justify-content: center;
  color: var(--clr-dark);
}
footer .rca a {
  font-size: inherit;
}
footer .rca a img {
  width: 6rem;
}
footer .form-container form {
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
}

.form-container form {
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
}
.form-container form label {
  display: none;
}
.form-container form input[type=email] {
  border: none;
  border-bottom: 1px solid var(--clr-dark);
  border-radius: 0;
  color: var(--clr-dark);
  background-color: transparent;
  padding: 0.3rem 0;
  font-family: var(--ff-base);
  font-size: 1.3rem;
  text-transform: uppercase;
}
@media (max-width: 62em) {
  .form-container form input[type=email] {
    width: 20rem;
  }
}
.form-container form button {
  border: 1px solid var(--clr-dark);
  color: var(--clr-dark);
  font-family: var(--ff-base);
  font-size: 1.3rem;
  text-transform: uppercase;
  cursor: pointer;
  background-color: transparent;
}
.form-container form button:hover {
  background-color: var(--clr-dark);
  color: var(--clr-grey-light);
}
.form-container form .input-group {
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
}

.modal .form-container form input[type=email] {
  border-bottom: 1px solid var(--clr-main);
  color: var(--clr-main);
}
.modal .form-container form button {
  border: 1px solid var(--clr-main);
  color: var(--clr-main);
}
.modal .form-container form button:hover {
  background-color: var(--clr-main);
}

::placeholder {
  color: var(--clr-dark);
}

.modal ::placeholder {
  color: var(--clr-main);
}

.slick-arrow::before {
  background-color: transparent;
  content: "";
  height: 32px;
  display: block;
  transition: all 300ms;
}
.slick-arrow:hover::before {
  transform: scale(1.1);
}

.slick-next,
.slick-prev {
  position: absolute;
  width: 32px;
  height: 32px;
  top: 87%;
}

.slick-prev {
  left: 50%;
  transform: translateX(-5rem);
}

.slick-next {
  right: 50%;
  transform: translateX(5rem) rotate(180deg);
}

.slick-next::before,
.slick-prev::before {
  content: "";
  background-image: url("../assets/img/arrow.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.slick-track {
  display: flex;
  gap: 3rem;
}
@media (max-width: 36em) {
  .slick-track {
    gap: 0;
  }
}

.slick-slide img {
  width: 100%;
}
.slick-slide .video-container .loop-container img {
  max-width: initial;
  max-height: initial;
  height: 130%;
  width: initial;
}

.slick-dots li button::before {
  font-size: 2rem;
  color: white;
}
.slick-dots li.slick-active button::before {
  color: white;
}

@media (max-width: 36em) {
  .video-list.slick-slider {
    margin-bottom: 5rem;
  }
}

.video {
  text-align: center;
}
@media (max-width: 36em) {
  .video {
    min-height: 21rem;
    margin: 0;
  }
}
.video .video-thumbnail {
  max-height: 30rem;
  overflow: hidden;
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 36em) {
  .video .video-thumbnail {
    max-height: 21rem;
    margin-bottom: 0.5rem;
  }
}
.video .video-info {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}
.video .video-info h5,
.video .video-info a {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
  background-color: transparent;
  letter-spacing: -0.5px;
}
@media (max-width: 36em) {
  .video .video-info h5,
.video .video-info a {
    font-size: 1.1rem;
    margin: 0;
  }
}
.video .video-info h5 {
  margin-bottom: 0;
}
@media (max-width: 36em) {
  .video .video-info h5 {
    text-align: left;
  }
}
.video .video-info a {
  border-bottom: 1px solid transparent;
  color: white;
}
.video .video-info a:hover {
  border-bottom: 1px solid white;
}

.bit-widget.bit-layout-ipad .bit-event {
  display: grid !important;
  grid-template-columns: 8rem 1fr 11rem !important;
  grid-template-areas: "bit-mobile-date-and-share-wrapper bit-details-inner-wrapper bit-event-buttons";
  gap: 0.4rem !important;
  padding: 1.2rem 0 !important;
  align-items: start !important;
  border-bottom: 1px solid var(--clr-dark);
}

.bit-widget .bit-upcoming-events,
.bit-widget .bit-past-events {
  margin: 0 !important;
}

a.bit-mobile-date {
  display: flex !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

.bit-mobile-date-and-share-wrapper {
  grid-area: bit-mobile-date-and-share-wrapper;
}

.bit-widget .bit-event:hover {
  background-color: transparent !important;
}
.bit-widget .bit-event:hover .bit-offers {
  border-bottom: 1px solid transparent !important;
}

.bit-details-inner-wrapper {
  grid-area: bit-details-inner-wrapper;
  text-align: left;
}
.bit-details-inner-wrapper .bit-details {
  display: none !important;
}

.bit-event-buttons {
  grid-area: bit-event-buttons;
}

.bit-widget.bit-layout-ipad .bit-event .bit-details {
  align-items: flex-start !important;
}
.bit-widget.bit-layout-ipad .bit-event .bit-offers {
  padding: 0 !important;
}
.bit-widget.bit-layout-ipad .bit-event .bit-offers-container {
  margin: 0 !important;
}
.bit-widget.bit-layout-ipad .bit-event .bit-upcoming-events {
  margin: 0 !important;
}
.bit-widget.bit-layout-ipad .bit-event .bit-past-events {
  margin: 0 !important;
}

.bit-widget .bit-offers {
  width: initial !important;
  border: none !important;
  border-bottom: 1px solid var(--clr-dark) !important;
  padding-bottom: 0 !important;
  font-size: 1.6rem !important;
  transition: all 200ms;
}
.bit-widget .bit-offers:hover {
  border-bottom: 1px solid transparent !important;
}

/*# sourceMappingURL=style.css.map */
