:root {
  --main-color: white;
  --main-color-30: hsla(0, 0%, 100%, 0.3);
  --dark-bg: #000000;
  --blue-color: #001e4b;
  --main-font: "NeueHelvetica55Roman",sans-serif;
  --main-font-bold: "NeueHelvetica75Bold", sans-serif;
  --font-base-weight: 500;
  --font-base-size: 1.4rem;
  --font-xs-size: .8rem;
}

/*
xs:     0 - 576px
sm:     576 - 768px
md:     768 - 992px
lg:     992 - 1200px
xl:     1200 - 1400px
xxl:    1400+
xxxl:   1600+
*/
main h1 {
  --animate-delay: .5s;
}
main .main-bg {
  --animate-delay: .5s;
}

@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(--main-font);
  overflow-x: hidden;
}

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

.clear:after {
  clear: both;
}

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

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

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(--main-font);
}

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

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: var(--main-color);
  color: white;
  text-shadow: none;
}

::-webkit-selection {
  background: var(--main-color);
  color: white;
  text-shadow: none;
}

::-moz-selection {
  background: var(--main-color);
  color: white;
  text-shadow: none;
}

::placeholder {
  color: white;
}

::-moz-placeholder {
  color: white;
}

::-webkit-input-placeholder {
  color: white;
}

/*------------------------------------*\
    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: "NeueHelvetica55Roman";
  src: url("../assets/fonts/NeueHelvetica55Roman/normal_normal.woff") format("woff2"), url("../fonts/NeueHelvetica55Roman/normal_normal.woff") format("woff");
}
@font-face {
  font-family: "NeueHelvetica75Bold";
  src: url("../assets/fonts/NeueHelvetica75Bold/normal_normal.woff") format("woff2"), url("../fonts/NeueHelvetica75Roman/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 1.5rem;
  width: 100%;
}

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

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

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

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

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

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

/* 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;
}

/* 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;
}

html body {
  color: var(--main-color);
  margin: 0;
  position: relative;
  font-family: var(--main-font);
  background-color: var(--dark-bg);
  color: white;
}
html body.open-modal::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1;
  transition: all 200ms;
  opacity: 1;
  background-color: var(--main-color-30);
}
html body main section {
  padding: 8rem 0;
}
@media (max-width: 62em) {
  html body main section {
    padding: 4rem 0;
  }
}
@media (max-width: 36em) {
  html body main section {
    padding: 3rem 0;
  }
}
html body main section h2 {
  font-family: var(--main-font-bold);
  font-size: 2.4rem;
  text-transform: uppercase;
}
html body main section#tour {
  color: white;
  position: relative;
  padding: 8rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (max-width: 48em) {
  html body main section#tour {
    padding: 4rem 2rem;
  }
}
html body main section#tour .section-title-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 62em) {
  html body main section#tour .section-title-container {
    flex-direction: column;
  }
}
html body main section#tour .section-title-container a {
  font-family: var(--main-font-bold);
  font-size: 2rem;
  text-decoration: none;
  color: var(--main-color);
}
@media (max-width: 48em) {
  html body main section#tour .section-title-container a {
    font-size: 1.6rem;
  }
}
html body main section#tour .section-title-container a span {
  transition: all 200ms;
  border-bottom: 1px solid transparent;
}
html body main section#tour .section-title-container a sup {
  font-size: 1rem;
}
html body main section#tour .section-title-container a:hover span {
  border-bottom: 1px solid var(--main-color);
}
html body main section#tour h2 {
  font-family: var(--main-font-bold);
  color: white;
  font-size: 3.5rem;
  letter-spacing: -1px;
  max-width: 30rem;
  line-height: 1.2cap;
}
html body main section#tour h2 sup {
  font-size: 1.5rem;
  line-height: 1cap;
}
html body main section#tour .dates {
  color: white;
}
html body main section#music #music-slider a {
  display: flex;
  flex-direction: row;
  gap: 8rem;
  align-items: center;
}
@media (max-width: 48em) {
  html body main section#music #music-slider a {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 36em) {
  html body main section#music #music-slider a {
    gap: 0rem;
  }
}
html body main section#music #music-slider a .cover-container {
  width: 100%;
  height: 100%;
  max-width: 30vw;
}
@media (max-width: 36em) {
  html body main section#music #music-slider a .cover-container {
    max-width: 64%;
  }
}
html body main section#music #music-slider a .cover-container img {
  width: 100%;
}
@media (max-width: 36em) {
  html body main section#music #music-slider a .music-info {
    width: 64%;
  }
}
html body main section#music #music-slider a .music-info h3 {
  font-family: var(--main-font-bold);
  font-size: 3.2rem;
  text-transform: uppercase;
  color: var(--main-color);
}
@media (max-width: 36em) {
  html body main section#music #music-slider a .music-info h3 {
    font-size: 2.4rem;
  }
}
html body main section#music #music-slider a .music-info .listen-now {
  color: var(--main-color);
  font-size: 2.2rem;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
html body main section#music #music-slider a:hover .listen-now {
  border-bottom: 1px solid var(--main-color);
}
html body main section#video #video-slider li {
  display: flex;
  justify-content: center;
}
html body main section#video #video-slider li iframe {
  width: 80%;
  max-width: 80rem;
  height: 100%;
  aspect-ratio: 16/9;
}
html body .gradient {
  position: absolute;
  width: 100%;
  height: 605px;
  flex-shrink: 0;
  background: radial-gradient(23.47% 28.5% at 34.02% 49.92%, rgba(1, 0, 1, 0.5) 0%, rgba(1, 0, 1, 0.26) 67.37%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}
html body::before {
  transition: all 200ms;
}
html body .d-only {
  display: flex !important;
  opacity: 1 !important;
}
@media (max-width: 62em) {
  html body .d-only {
    display: none !important;
    opacity: 0 !important;
  }
}
html body .m-only {
  display: none !important;
  opacity: 0 !important;
}
@media (max-width: 62em) {
  html body .m-only {
    display: flex !important;
    opacity: 1 !important;
  }
}
html.is-scrolling .scroll-down-indicator {
  opacity: 0 !important;
}

body > header {
  position: relative;
  padding: 1rem 4rem 1rem 1rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6%;
  height: 100vh;
  height: 100svh;
  background-image: url("../assets/img/skifall-bg.webp");
  background-size: 40%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 62em) {
  body > header {
    background-size: 50%;
    padding: 1rem;
  }
}
@media (max-width: 36em) {
  body > header {
    background-size: 70%;
  }
}
body > header p {
  font-size: 2.5rem;
  margin: 0.5rem 0;
}
body > header .logo {
  text-transform: uppercase;
  font-size: 1rem;
  z-index: 100;
}
body > header .header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10vw;
}
body > header .header-top button.toggle-menu {
  display: none;
  background-color: transparent;
  border: none;
  color: var(--main-color);
  z-index: 10;
}
@media (max-width: 62em) {
  body > header .header-top button.toggle-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 3rem;
    margin: 0;
    width: 100%;
    padding: 0;
  }
}
body > header .header-top button.toggle-menu .line {
  transition: 500ms;
  transform-origin: center;
  fill: white;
}
body > header .header-top button.toggle-menu.active .top {
  y: 50;
  transform: rotate(-45deg);
}
body > header .header-top button.toggle-menu.active .bottom {
  y: 50;
  transform: rotate(45deg);
}
body > header .header-top button.toggle-menu.active .middle {
  opacity: 0;
}
body > header .header-top .menu-content {
  transition: all 300ms;
  max-width: 33vw;
  width: 100%;
}
@media (max-width: 62em) {
  body > header .header-top .menu-content {
    position: fixed;
    opacity: 0;
    max-width: initial;
    left: 0;
    min-height: 100vh;
    min-height: 100svh;
    background-color: var(--bg-color-75);
    top: 0;
    width: 100%;
    padding: 13rem 5rem 0 2rem;
    background-color: black;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    pointer-events: none;
  }
  body > header .header-top .menu-content.open {
    right: 0;
    opacity: 1;
    pointer-events: all;
  }
}
body > header .header-top .menu-content .nav-container {
  display: flex;
}
body > header .header-top .menu-content .nav-container nav {
  text-align: right;
  width: 100%;
}
@media (max-width: 62em) {
  body > header .header-top .menu-content .nav-container nav {
    text-align: left;
  }
}
body > header .header-top .menu-content .nav-container nav ul {
  padding: 0;
  margin-left: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}
@media (max-width: 62em) {
  body > header .header-top .menu-content .nav-container nav ul {
    gap: 2rem;
    margin: 0;
    flex-direction: column;
  }
}
body > header .header-top .menu-content .nav-container nav ul li a {
  transition: all 200ms;
  font-family: var(--main-font);
  font-size: 2.4rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
body > header .header-top .menu-content .nav-container nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
body > header .header-top .menu-content .nav-container nav ul li a:hover::after {
  width: 100%;
}
body > header .header-top .menu-content .nav-container .social {
  display: none;
  position: relative;
  transform: initial;
  top: initial;
  left: initial;
}
@media (max-width: 62em) {
  body > header .header-top .menu-content .nav-container .social {
    display: flex;
    flex-direction: column;
  }
  body > header .header-top .menu-content .nav-container .social a {
    font-size: 2.5rem;
  }
}
body > header .social-container {
  display: flex;
  gap: 1.2rem;
}
body > header .social-container a {
  font-size: 1rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
body > header .social-container a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
body > header .social-container a:hover::after {
  width: 100%;
}

.btn {
  border: none;
  background-color: transparent;
  transition: all 200ms;
  font-family: var(--main-font);
  font-size: 1.6rem;
  text-align: left;
  text-transform: lowercase;
  color: white;
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  justify-content: flex-start;
  align-items: center;
  padding: 0.8rem 0;
  cursor: pointer;
}
@media (max-width: 48em) {
  .btn {
    gap: 1rem;
    font-size: 1.5rem;
  }
}
.btn img.arrow-right-narrow {
  width: 3.8rem;
  transition: all 200ms;
}
.btn img path {
  transition: all 200ms;
}
.btn i {
  font-size: 2.4rem;
}
.btn:hover {
  color: var(--main-color);
}
.btn:hover img.arrow-right-narrow {
  transform: translateX(10px);
}
.btn-outline-secondary {
  padding: 0;
  border: none;
  border-bottom: 1px solid white;
  font-family: var(--main-font-bold);
}
.btn-outline-secondary:hover {
  color: var(--main-color);
  border-color: var(--main-color);
}

.social {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.social a {
  background-color: white;
  width: 5rem;
  height: 5rem;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social a:hover img {
  scale: 1.2;
}
.social a.rca-icon img {
  fill: black;
  width: 21px;
  transition: all 200ms;
}
.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;
}
@media (max-width: 75em) {
  .social {
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 36em) {
  .social {
    min-width: inherit;
    margin-bottom: 0;
  }
}

.modal {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  min-height: 15rem;
  max-width: 29rem;
  width: 100%;
  z-index: 10;
  background-color: var(--dark-bg);
  transition: all 300ms;
  border-radius: 0;
}
@media (max-width: 36em) {
  .modal {
    max-width: 90%;
  }
}
.modal p {
  font-size: 1.1rem;
  margin: 2.3rem 5.6rem 1.6rem 2.7rem;
}
.modal h2 {
  text-align: center;
  font-size: 2rem;
  text-transform: uppercase;
  font-family: var(--main-font-bold);
  line-height: 1.9rem;
  letter-spacing: 2px;
  color: var(--main-color);
  margin: 0;
  font-weight: 300;
  margin: 3.3rem 3.6rem 1.6rem 2.7rem;
}
.modal a {
  font-size: 2.2rem;
  margin-top: 1rem;
  text-transform: lowercase;
  color: var(--main-color);
  display: block;
  text-decoration: underline;
}
.modal.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-30%) translateX(-50%);
}
.modal .btn-close {
  position: absolute;
  top: 2.5rem;
  right: 3rem;
  font-family: var(--main-font);
  letter-spacing: 0;
  max-width: 2rem;
  text-transform: uppercase;
  cursor: pointer;
  color: white;
}
.modal .btn-close svg {
  width: 100%;
}
.modal .btn-close svg .top {
  transform-origin: center;
  fill: var(--main-color);
  y: 44;
  transform: rotate(-45deg);
}
.modal .btn-close svg .bottom {
  transform-origin: center;
  fill: var(--main-color);
  y: 44;
  transform: rotate(45deg);
}

footer {
  color: white;
  padding: 0 6rem 2rem 6rem;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  height: 50vh;
  height: 50svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10%;
}
footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--blue-color) 100%);
  z-index: -1;
}
@media (max-width: 62em) {
  footer {
    height: initial;
  }
}
@media (max-width: 36em) {
  footer {
    padding: 0 1rem 2rem 1rem;
  }
}
footer .signup-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .signup-container p {
  font-size: 2.1rem;
  text-transform: uppercase;
  font-family: var(--main-font);
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}
@media (max-width: 62em) {
  footer .signup-container p {
    flex-direction: column;
    gap: initial;
  }
}
footer .signup-container p b {
  font-weight: 700;
}
footer .signup-container .signup {
  width: 100%;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6rem 0;
  gap: 2rem;
}
@media (max-width: 48em) {
  footer .signup-container .signup {
    padding: 4rem 2rem;
  }
}
footer .signup-container .signup .form-container {
  max-width: 60rem;
  width: 100%;
}
footer .signup-container .signup form {
  display: flex;
  flex-direction: row;
  width: 100%;
}
footer .signup-container .signup form .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
footer .signup-container .signup form .form-group input {
  border-bottom: 1px solid white;
  color: white;
  width: 100%;
}
footer .signup-container .signup form .form-group input::placeholder {
  text-transform: uppercase;
  color: vaR(--main-color-30);
}
footer .signup-container .signup form button {
  border: none;
  color: white;
  font-family: var(--main-font-bold);
  font-weight: 700;
  font-size: 2.1rem;
}
footer .signup-container .signup form button:hover {
  color: var(--main-color);
}
footer .signup-container .signup p {
  color: white;
  font-family: var(--main-font);
  font-size: 0.9rem;
  max-width: 50rem;
}
footer .disclaimer {
  text-align: center;
  font-family: var(--main-font);
  font-size: 0.9rem;
  color: white;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1.5rem;
  align-items: center;
  padding-top: 1.5rem;
}
@media (max-width: 48em) {
  footer .disclaimer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
footer .disclaimer .disclaimer-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 1.5rem;
}
footer .disclaimer .disclaimer-top .rca img {
  height: 2rem;
}
footer .disclaimer .disclaimer-top svg {
  height: 2.7rem;
}
footer .disclaimer .disclaimer-bottom {
  max-width: 50rem;
}
footer .disclaimer p,
footer .disclaimer a {
  font-size: 0.8rem;
  font-family: var(--small-font);
  color: white;
  margin-bottom: 0;
}

form label {
  display: none;
}
form .form-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
}
form .form-group input[type=email] {
  font-size: 2.1rem;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid black;
  background-color: transparent;
  color: var(--main-color);
  padding: 0.5rem 0;
  font-family: var(--main-font);
  width: 100%;
}
form button {
  background-color: transparent;
  border: none;
  text-transform: uppercase;
  font-size: 2.1rem;
  line-height: 2.5rem;
  cursor: pointer;
  padding: 0;
}

.slider-container {
  height: 60vh;
  display: flex;
  align-items: center;
}

.splide__slide {
  display: flex;
  align-items: center;
}

.splide__track {
  margin: auto;
  width: 80%;
}
@media (max-width: 36em) {
  .splide__track {
    width: 100%;
  }
}

.splide__arrow {
  background-color: transparent;
}
.splide__arrow svg {
  fill: var(--main-color);
  height: 2.2em;
  width: 2.2em;
}

.marquee {
  margin: 0 auto;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.marquee__content {
  width: 300% !important;
  display: flex;
  animation: marquee 15s linear infinite forwards;
}
.marquee__content:hover {
  animation-play-state: paused;
}

.list-inline {
  display: flex;
  justify-content: space-around;
  width: 33.33%;
  list-style: none;
  padding: 0;
  margin: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.6%);
  }
}
.has-scroll-smooth .custom-cursor[data-cursor-init=true] {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.custom-cursor {
  position: fixed;
  z-index: 100;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(0.001deg);
  /* display: none; */
  opacity: 0;
  visibility: hidden;
  display: flex;
  /* pointer-events: none; */
}

.custom-cursor .cursor-bubble {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -25%) scale(0) rotate(-15deg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8em;
  transition: transform 0.4s cubic-bezier(0.5, 0, 0.25, 1) 0.1s;
  overflow: hidden;
  border-radius: 50%;
  font-size: 2rem;
}

.custom-cursor[data-cursor-bubble=active] .cursor-bubble {
  transform: translate(-50%, -70%) scale(1) rotate(-15deg);
  transition: transform 0.4s cubic-bezier(0.5, 0, 0.25, 1) 0s;
}

.custom-cursor[data-cursor-bubble-size=big] .cursor-bubble {
  width: 10em;
  height: 4.5em;
}
.custom-cursor[data-cursor-bubble-size=big] .cursor-bubble .cursor-text {
  width: 9em;
  text-align: center;
  white-space: inherit;
}
.custom-cursor[data-cursor-bubble-size=big] .cursor-bubble .cursor-text-drag {
  width: 9em;
  text-align: center;
  white-space: inherit;
}
.custom-cursor[data-cursor-bubble-size=small] .cursor-bubble {
  width: 14rem;
  height: 5em;
}
.custom-cursor[data-cursor-bubble-size=small] .cursor-bubble .cursor-text-drag {
  width: 14rem;
  text-align: center;
  white-space: inherit;
}
.custom-cursor[data-cursor-bubble-size=small] .cursor-bubble .cursor-text {
  width: 14rem;
  text-align: center;
  white-space: inherit;
  font-size: 1.4rem;
}

.custom-cursor[data-cursor-bubble-size=switch] .cursor-bubble {
  transform: scale(0) rotate(15deg);
  transition: transform 0.4s cubic-bezier(0.5, 0, 0.25, 1) 0s;
}

.custom-cursor[data-cursor-bubble=active][data-cursor-bubble-size=switch] .cursor-bubble {
  transform: scale(1) rotate(15deg);
}

.custom-cursor .cursor-bubble .cursor-before {
  position: relative;
  width: 100%;
  padding-top: 43%;
}

.custom-cursor[data-cursor-background=secondary] .cursor-bubble .cursor-background {
  background: var(--secondary-color);
}

.custom-cursor[data-cursor-background=primary] .cursor-bubble .cursor-background {
  background: var(--main-color);
}

.custom-cursor .cursor-bubble .cursor-background {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 100%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0.001deg);
  background: white;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.5, 0, 0.25, 1) 0.1s;
}

.custom-cursor[data-cursor-bubble=active] .cursor-bubble .cursor-background {
  transform: translate(-50%, -50%) rotate(0.001deg);
  transition: transform 0.4s cubic-bezier(0.5, 0, 0.25, 1) 0s;
}

.custom-cursor[data-cursor-bubble=active] .cursor-bubble .cursor-text {
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.5, 0, 0.25, 1) 0s;
}

.custom-cursor[data-cursor-bubble=active] .cursor-bubble .cursor-text-drag {
  transform: translate(-50%, 100%);
  transition: all 0.4s cubic-bezier(0.5, 0, 0.25, 1) 0s;
}

.custom-cursor[data-cursor-background=primary] .cursor-bubble .cursor-text, .custom-cursor[data-cursor-background=primary] .cursor-bubble .cursor-text-drag {
  color: white;
  background: var(--main-color);
}

.custom-cursor[data-cursor-background=secondary] .cursor-bubble .cursor-text, .custom-cursor[data-cursor-background=primary] .cursor-bubble .cursor-text-drag {
  color: white;
  background: var(--secondary-color);
}

.custom-cursor .cursor-bubble .cursor-text,
.custom-cursor .cursor-bubble .cursor-text-drag {
  font-family: var(--main-font);
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  color: var(--color-dark);
  font-size: 1.2em;
  font-weight: 400;
  padding: 1.2rem 2rem;
  transition: all 0.4s cubic-bezier(0.5, 0, 0.25, 1) 0.2s;
}

.custom-cursor .cursor-bubble .cursor-text-drag {
  transform: translate(-50%, 50%);
}

@media screen and (min-width: 1024px) and (hover: hover) {
  .custom-cursor[data-cursor-init=true] {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
}
.dates {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 5rem 0;
}
@media (max-width: 62em) {
  .dates {
    gap: 4.5rem;
  }
}
.dates .event {
  display: grid;
  grid-template-columns: 1fr 27rem;
  gap: 1rem;
}
@media (max-width: 62em) {
  .dates .event {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.dates .event .bit-details {
  font-size: 1.8rem;
  color: white;
  display: grid;
  grid-template-columns: 13rem 1fr 1fr;
}
@media (max-width: 62em) {
  .dates .event .bit-details {
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.dates .event .bit-details .date {
  font-family: var(--main-font-bold);
  font-weight: 700;
}
.dates .event .bit-details .location {
  font-family: var(--main-font-bold);
}
@media (max-width: 36em) {
  .dates .event .bit-details .location {
    font-size: 1.6rem;
  }
}
.dates .event .tickets {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: flex-end;
}
@media (max-width: 62em) {
  .dates .event .tickets {
    justify-content: flex-start;
  }
}
.dates .event .tickets a {
  text-transform: uppercase;
  font-family: var(--main-font-bold);
  font-weight: 700;
  font-size: 1.8rem;
  color: white;
  border: 1px solid white;
  background-color: transparent;
  transition: all 200ms;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  min-width: 12.4rem;
}
.dates .event .tickets a:hover {
  color: black;
  background-color: white;
}
.dates .tour-more-wrap {
  display: flex;
  justify-content: flex-start;
  margin-top: 2rem;
}
.dates .tour-more-wrap a {
  font-size: 1.8rem;
  font-family: var(--main-font-bold);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  border: none;
  border-radius: 0;
  background-color: transparent;
  transition: all 200ms;
  position: relative;
  display: inline-block;
  padding: 0;
  padding-bottom: 2px;
}
.dates .tour-more-wrap a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: white;
  transition: width 0.3s ease-in-out;
}
.dates .tour-more-wrap a:hover::after {
  width: 100%;
}

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