:root {
  --clr-main: #ffffff;
  --clr-bg: #000000;
  --clr-bg-33: hsla(0, 0%, 0%, 0.33);
  --ff-small: "HelveticaNeueRoman", sans-serif;
  --ff-main: "MontserratBold", sans-serif;
  --fs-base: 1.6rem;
  --fw-light: 400;
  --fw-regular: 500;
  --fw-bold: 600;
  --fw-black: 700;
}

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

*,
*: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-main);
  overflow-x: hidden;
  color: var(--main-color);
}

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

.clear:after {
  clear: both;
}

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

a {
  color: var(--main-color);
  text-decoration: none;
  transition: all 400ms;
  font-size: 1.4rem;
  font-family: var(--ff-main);
  font-variation-settings: "wght" 643.1, "wdth" 74.7, "opsz" 30;
}

a:focus {
  outline: 0;
}

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

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

button {
  transition: all 400ms;
}

p, strong {
  font-size: 1.4rem;
  font-variation-settings: "wght" 643.1, "wdth" 74.7, "opsz" 30;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

::-webkit-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

::-moz-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

/*------------------------------------*\
    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: "HelveticaNeueRoman";
  src: url("../assets/fonts/NeueHelvetica55Roman/normal_normal.woff2") format("woff2"), url("../assets/fonts/NeueHelvetica55Roman/normal_normal.woff") format("woff");
}
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/Montserrat/medium.ttf") format("truetype");
}
@font-face {
  font-family: "MontserratBold";
  src: url("../assets/fonts/Montserrat/bold.ttf") format("truetype");
}
.is-uppercase {
  text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-main);
  font-weight: 200;
  font-variation-settings: "wght" 1000, "wdth" 54.3, "opsz" 30;
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3rem;
}

.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: 1400px;
}

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

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

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

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

.container-xxs {
  max-width: 566px;
}

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

.flex-075 {
  flex: 0.75;
}
@media (max-width: 75em) {
  .flex-075 {
    flex: 1;
  }
}
.flex-075 .container-xl-h.container-h-l {
  max-width: 56rem;
  padding: 0 3rem 0 1.5rem;
}
@media (max-width: 36em) {
  .flex-075 .container-xl-h.container-h-l {
    padding: 0 2.5rem;
  }
}

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

.d-only {
  display: flex;
  align-items: center;
}
@media (max-width: 62em) {
  .d-only {
    display: none;
  }
}

.m-only {
  display: none;
}
@media (max-width: 62em) {
  .m-only {
    display: flex;
    align-items: center;
  }
}

/* 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: var(--clr-main);
  margin: 0;
  letter-spacing: 0.5px;
  background-color: var(--clr-bg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 300ms all;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
  background-image: url("../assets/img/bg.webp");
  background-position: center top 10%;
  background-repeat: no-repeat;
  background-size: cover;
}
body main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 15.4rem);
  gap: 4rem;
}
@media (max-width: 36em) {
  body main {
    gap: 1rem;
  }
}
body main h1 {
  max-width: 50vw;
  margin: 0 auto;
}
@media (max-width: 48em) {
  body main h1 {
    max-width: 85%;
  }
}
body main .cta-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
body main .cta-container a, body main .cta-container button {
  background-color: transparent;
  font-family: var(--ff-main);
  font-size: 3rem;
  text-transform: lowercase;
  color: white;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  border: none;
  width: 100%;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  max-width: 20rem;
  cursor: pointer;
}
@media (max-width: 36em) {
  body main .cta-container a, body main .cta-container button {
    font-size: 2.5rem;
  }
}
body main .cta-container a:hover, body main .cta-container button:hover {
  opacity: 0.6;
}
body main .cta-container a img, body main .cta-container button img {
  max-width: 3rem;
  max-height: 3rem;
}
@media (max-width: 36em) {
  body main .cta-container a img, body main .cta-container button img {
    max-width: 2.5rem;
    max-height: 2.5rem;
  }
}
body.open-modal::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1;
  transition: all 200ms;
  opacity: 0.4;
  background-color: var(--clr-bg);
}

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  padding: 4rem 8rem 0 8rem;
  gap: 5rem;
  z-index: 10;
  font-family: var(--ff-main);
  font-weight: bold;
  color: black;
  text-transform: uppercase;
  font-size: 3.6rem;
}
@media (max-width: 48em) {
  header {
    padding: 2rem 2rem 0 2rem;
  }
}
header span {
  padding: 0;
  line-height: initial;
  font-size: 4rem;
}
@media (max-width: 48em) {
  header span {
    font-size: 2rem;
  }
}

footer {
  display: flex;
  align-items: end;
  padding: 0 3rem 3rem 3rem;
  gap: 2rem;
  background-color: transparent;
  color: var(--clr-main);
  text-align: center;
  height: 5.4rem;
}
footer ::-moz-selection {
  /* Code for Firefox */
  color: var(--clr-main);
  background: var(--clr-bg);
}
footer ::selection {
  color: var(--clr-main);
  background: var(--clr-bg);
}
footer a, footer button {
  color: var(--clr-main);
  font-family: var(--ff-small);
  text-transform: capitalize;
  text-decoration: none;
  background-color: transparent;
  border: none;
}
footer a:hover, footer button:hover {
  filter: brightness(1.4);
}
footer .legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.5rem;
  height: 100%;
}
@media (max-width: 75em) {
  footer .legal {
    width: 100%;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 0.8rem;
  }
}
@media (max-width: 75em) {
  footer .legal .rca img {
    width: 7rem;
  }
}
footer .legal .copyright {
  text-align: left;
  width: 100%;
}
@media (max-width: 75em) {
  footer .legal .copyright {
    text-align: center;
  }
}
footer .legal .copyright p, footer .legal .copyright p * {
  font-size: 0.9rem;
  margin-bottom: 0;
  letter-spacing: 0;
  font-family: var(--ff-small);
  margin: 0;
}
footer .signup {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  gap: 2rem;
  height: 100%;
}
@media (max-width: 75em) {
  footer .signup {
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
  }
}
footer .signup .form-disclaimer {
  font-size: 0.9rem;
  text-align: left;
  letter-spacing: 0;
  font-family: var(--ff-small);
}
@media (max-width: 75em) {
  footer .signup .form-disclaimer {
    text-align: center;
  }
}
footer .social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-content: center;
  height: 100%;
}
@media (max-width: 75em) {
  footer .social {
    justify-content: center;
    width: 100%;
  }
}

.btn {
  border: 1px solid white;
  padding: 0.5rem 4rem;
  text-align: center;
  transition: all 800ms;
  font-family: var(--ff-main);
  font-size: 1.4rem;
  letter-spacing: 1rem;
  text-align: center;
  text-transform: uppercase;
  max-width: 30rem;
  padding-right: 2.7rem;
}
.btn:hover {
  color: black;
  background-color: white;
}

a.pre-save, a.pre-order {
  background-color: white;
  border: 2px solid black;
  font-family: var(--ff-main);
  color: black;
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
  padding: 1.4rem;
  letter-spacing: -1px;
  line-height: 2.2rem;
  max-height: 10rem;
  cursor: pointer;
}

.social {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.social a {
  font-size: 1.8rem;
  color: #c1a459;
}
.social a:hover {
  opacity: 0.8;
}
.social a.rca-icon img,
.social a.rca-icon svg {
  fill: white;
  width: 18px;
  max-height: 18px;
}
.social a.rca-icon img path,
.social a.rca-icon svg path {
  fill: var(--clr-main);
}
.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;
  }
}

#music img.page-title {
  max-width: 15rem;
  text-align: center;
  margin: auto;
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: block;
}
@media (max-width: 36em) {
  #music img.page-title {
    margin-top: 4rem;
  }
}
#music .album-list {
  display: flex;
  flex-direction: row;
}
@media (max-width: 36em) {
  #music .album-list {
    max-width: 80%;
    margin: auto;
  }
}
#music .album-list .album {
  text-align: center;
  min-height: 34rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0 1rem;
}
#music .album-list .album h5 {
  font-size: 1.5rem;
  font-family: var(--ff-main);
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  font-variation-settings: "wght" 643.1, "wdth" 74.7, "opsz" 30;
}
#music .album-list .album a {
  font-family: var(--ff-main);
  background-color: transparent;
  border: 1px solid var(--main-color);
  padding: 0.1rem 0.8rem 0.1rem 0.8rem;
  font-size: 1.1rem;
  color: var(--main-color);
  text-transform: lowercase;
  display: flex;
  margin-top: 1.5rem;
}
#music .album-list .album a img.arrow {
  width: 10px;
  height: 10px;
  border: none;
  position: relative;
  margin-right: 3px;
  transform: translate(-3px, 4px) rotate(-45deg);
}
#music .album-list .album a:hover {
  background-color: var(--main-color);
  color: black;
}
#music .album-list .album a:hover img {
  filter: brightness(0);
}

.navigation-wrapper {
  position: relative;
}

.dots {
  display: flex;
  padding: 10px 0;
  justify-content: center;
}

.dot {
  border: none;
  width: 10px;
  height: 10px;
  background: #c5c5c5;
  border-radius: 50%;
  margin: 0 5px;
  padding: 5px;
  cursor: pointer;
}

.dot:focus {
  outline: none;
}

.dot--active {
  background: #000;
}

.arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  fill: #fff;
  cursor: pointer;
}

.arrow--left {
  left: 5px;
  fill: "#fff";
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' %3E%3Cpath d='M16.67 0l2.83 2.829-9.339 9.175 9.339 9.167-2.83 2.829-12.17-11.996z' %3E%3C/path%3E%3C/svg%3E");
}

.arrow--right {
  left: auto;
  right: 5px;
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 24 24' %3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z'%3E%3C/path%3E%3C/svg%3E");
}

.arrow--disabled.arrow--left {
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='grey' viewBox='0 0 24 24' %3E%3Cpath d='M16.67 0l2.83 2.829-9.339 9.175 9.339 9.167-2.83 2.829-12.17-11.996z' %3E%3C/path%3E%3C/svg%3E");
}

.arrow--disabled.arrow--right {
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='grey' viewBox='0 0 24 24' %3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z'%3E%3C/path%3E%3C/svg%3E");
}

.navigation-wrapper {
  position: relative;
}

.arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  fill: #fff;
  cursor: pointer;
}

.arrow--left {
  left: 5px;
  fill: "#fff";
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' %3E%3Cpath d='M16.67 0l2.83 2.829-9.339 9.175 9.339 9.167-2.83 2.829-12.17-11.996z' %3E%3C/path%3E%3C/svg%3E");
}

.arrow--right {
  left: auto;
  right: 5px;
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 24 24' %3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z'%3E%3C/path%3E%3C/svg%3E");
}

.arrow--disabled.arrow--left {
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='grey' viewBox='0 0 24 24' %3E%3Cpath d='M16.67 0l2.83 2.829-9.339 9.175 9.339 9.167-2.83 2.829-12.17-11.996z' %3E%3C/path%3E%3C/svg%3E");
}

.arrow--disabled.arrow--right {
  background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='grey' viewBox='0 0 24 24' %3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z'%3E%3C/path%3E%3C/svg%3E");
}

#video img.page-title {
  max-width: 15rem;
  text-align: center;
  margin: auto;
  margin-top: 4rem;
  margin-bottom: 4rem;
  display: block;
}
@media (max-width: 36em) {
  #video img.page-title {
    margin-top: 4rem;
  }
}
#video .album-list {
  display: flex;
  flex-direction: row;
}
@media (max-width: 36em) {
  #video .album-list {
    max-width: 80%;
    margin: auto;
  }
}
#video .album-list .album {
  text-align: center;
  min-height: 34rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0 2rem;
}
#video .album-list .album h5 {
  font-size: 1.5rem;
  text-transform: lowercase;
  font-family: var(--ff-main);
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  font-variation-settings: "wght" 643.1, "wdth" 74.7, "opsz" 30;
}
#video .album-list .album a {
  font-family: var(--ff-main);
  background-color: transparent;
  border: 1px solid var(--main-color);
  padding: 0.1rem 0.8rem 0.1rem 0.8rem;
  font-size: 1.1rem;
  color: var(--main-color);
  text-transform: lowercase;
  display: flex;
  margin-top: 1.5rem;
}
#video .album-list .album a img.arrow {
  width: 10px;
  height: 10px;
  border: none;
  position: relative;
  margin-right: 3px;
  transform: translate(-3px, 4px) rotate(-45deg);
}
#video .album-list .album a:hover {
  background-color: var(--main-color);
  color: black;
}
#video .album-list .album a:hover img {
  filter: brightness(0);
}
#video .album-list .album .loop-container {
  overflow: hidden;
}
#video .album-list .album .loop-container video {
  max-width: 100%;
}

.signup .form-container {
  display: flex;
  align-items: center;
}
.signup .form-container form {
  background-color: transparent;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 4rem;
  align-items: center;
  gap: 3px;
  border-bottom: 1px solid var(--main-color);
  font-variation-settings: "wght" 643.1, "wdth" 74.7, "opsz" 30;
}
.signup .form-container form input[type=email] {
  font-family: var(--ff-main);
  font-size: 1rem;
  background-color: transparent;
  text-align: left;
  color: var(--clr-main);
  transition: all 400ms;
  padding: 0.3rem 0 0.2rem 0;
  border: none;
  border-radius: 0;
  width: 13rem;
  border-bottom: 1px solid var(--clr-main);
}
.signup .form-container form input[type=email]::placeholder {
  font-family: var(--ff-main);
  color: var(--clr-main);
}
.signup .form-container form input[type=submit],
.signup .form-container form button#submit_join {
  font-family: var(--ff-main);
  font-size: 1.1rem;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--clr-main);
  border-radius: 0;
  color: var(--clr-main);
  letter-spacing: 0;
  cursor: pointer;
  transition: all 400ms;
  padding: 0.2rem 0.5rem 0.1rem 0.5rem;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: 1.6rem;
  background-position: 0 center;
  text-transform: uppercase;
}
.signup .form-container form input[type=submit]:hover,
.signup .form-container form button#submit_join:hover {
  background-color: var(--clr-main);
  color: var(--clr-bg);
}
.signup .form-container form .default-mailing-list {
  display: none;
}

.modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 90%;
  max-width: 36rem;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  transition: all 300ms;
  text-align: center;
  font-size: 1rem;
  background-color: var(--clr-bg);
  border: 1px solid var(--clr-main);
  opacity: 1;
  pointer-events: initial;
  z-index: 10;
  padding: 2rem;
  gap: 1.5rem;
}
.modal.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-30%) translateX(-50%);
}
.modal.msg-modal {
  z-index: 1000;
}
.modal h2 {
  font-size: 2.6rem;
  margin: 0 auto;
  padding-top: 0.8rem;
  font-variation-settings: "wght" 1000, "wdth" 54.3, "opsz" 30;
  font-weight: bold;
}
.modal .btn-close {
  display: block;
  text-transform: uppercase;
  text-decoration: underline;
  color: var(--clr-main);
  font-family: var(--ff-main);
  font-size: 1.4rem;
  padding: 1rem;
  transition: all 400ms;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}
.modal .btn-close:hover {
  color: white;
}

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

.slick-next,
.slick-prev {
  width: 26px;
  height: 20px;
  top: 50%;
}

.slick-next::before,
.slick-prev::before {
  content: "";
}

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

.slick-prev::before {
  transform: rotate(180deg);
}
.slick-prev:hover::before {
  transform: rotate(180deg) scale(1.1);
}

.slick-slide img {
  border: 2px solid black;
}

.tour-container {
  max-width: 76.8rem;
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

form {
  background-color: transparent;
  padding: 0;
  width: 100%;
  display: flex;
  grid-template-columns: 1fr 4rem;
  align-items: center;
  gap: 3px;
  border-bottom: 1px solid var(--main-color);
  font-variation-settings: "wght" 643.1, "wdth" 74.7, "opsz" 30;
}
form label {
  display: none;
}
form .input-group {
  display: flex;
  gap: 0.5rem;
}
form input[type=email] {
  font-family: var(--ff-main);
  font-size: 1.6rem;
  background-color: transparent;
  text-align: left;
  color: var(--clr-main);
  transition: all 400ms;
  padding: 0.3rem 0 0.2rem 0;
  border: none;
  border-radius: 0;
  width: 22rem;
  border-bottom: 1px solid var(--clr-main);
  text-transform: uppercase;
}
form input[type=email]::placeholder {
  font-family: var(--ff-main);
  color: var(--clr-main);
}
form button {
  font-family: var(--ff-main);
  font-size: 1.6rem;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--clr-main);
  border-radius: 0;
  color: var(--clr-main);
  letter-spacing: 0;
  cursor: pointer;
  transition: all 400ms;
  padding: 0.2rem 0.5rem 0.1rem 0.5rem;
  text-decoration: none;
  background-repeat: no-repeat;
  background-size: 1.6rem;
  background-position: 0 center;
  text-transform: uppercase;
}
form button:hover {
  background-color: var(--clr-main);
  color: var(--clr-bg);
}

body#music main .main-half-left .album-container {
  display: flex;
  flex-direction: column;
  max-width: 80%;
  max-height: 80%;
  aspect-ratio: 1/1;
}
body#music main .main-half-left .album-container .album-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 1.6rem;
  text-transform: uppercase;
  padding: 0.8rem 0;
}
body#music main .main-half-left .album-container .album-info a {
  font-size: 1.6rem;
  text-decoration: underline;
}
body#music main .main-half-right {
  justify-content: flex-start;
  overflow-x: scroll;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
body#music main .main-half-right .music-grid {
  list-style: none;
  max-width: 90%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-left: 0;
  margin: auto;
}
@media (max-width: 62em) {
  body#music main .main-half-right .music-grid {
    grid-template-columns: 1fr 1fr;
  }
}
body#music main .main-half-right .music-grid li a {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
  font-size: 1.3rem;
  text-decoration: none;
}
body#music main .main-half-right .music-grid li a .art-container {
  overflow: hidden;
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
  border: 1px solid var(--clr-main);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 400ms;
}
body#music main .main-half-right .music-grid li a .art-container:hover {
  background-color: var(--clr-main-10);
  opacity: 0.8;
}
body#music main .main-half-right .music-grid li a span {
  text-decoration: none;
}
body#music main .main-half-right .music-grid li a span.listen-now {
  text-decoration: underline;
}

body#video main {
  overflow-x: scroll;
}
@media (max-width: 48em) {
  body#video main {
    overflow-x: initial;
    height: initial;
  }
}
body#video main .video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 4rem;
  padding-bottom: 4rem;
  gap: 5rem;
}
@media (max-width: 48em) {
  body#video main .video-grid {
    grid-template-columns: 1fr;
  }
}
body#video main .video-grid button {
  background-color: transparent;
  border: none;
  font-family: var(--ff-main);
  color: var(--clr-main);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  cursor: pointer;
}
body#video main .video-grid button:hover {
  filter: brightness(1.3);
}
body#video main .video-grid button .video-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}
body#video main .video-grid button .video-info span {
  text-align: left;
}
body#video main .video-grid button .video-info span.watch-now {
  text-align: right;
  font-family: var(--ff-main);
  text-decoration: underline;
}

body#tour main {
  overflow-x: scroll;
}
body#tour main .container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
body#tour main .container #dates {
  padding: 4rem 0;
}

.bit-widget {
  background-color: transparent !important;
}

.bit-widget.bit-layout-desktop .bit-details {
  flex-direction: column !important;
  align-content: flex-start !important;
  align-items: flex-start !important;
}

.bit-widget.bit-layout-ipad .bit-event .bit-details {
  align-items: flex-start !important;
}
@media (max-width: 36em) {
  .bit-widget.bit-layout-ipad .bit-event .bit-details {
    align-items: center !important;
  }
}

.bit-widget a {
  text-align: left;
}

.bit-widget .bit-event .bit-event-buttons {
  margin: 0 !important;
}

.bit-widget.bit-layout-desktop .bit-event .bit-button {
  margin: 0 !important;
}

.bit-widget.bit-layout-desktop .bit-location {
  margin-left: 0 !important;
}

.bit-widget .bit-event-list-title {
  color: white;
}

.bit-widget .bit-follow-section-heading-text {
  max-width: 100% !important;
}

.bit-widget.bit-layout-ipad .bit-upcoming-events,
.bit-widget.bit-layout-ipad .bit-past-events,
.bit-widget .bit-upcoming-events,
.bit-widget .bit-past-events {
  margin: 0 !important;
  color: white !important;
  border-bottom: none;
}

.bit-details-inner-wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 1rem;
}
@media (max-width: 36em) {
  .bit-details-inner-wrapper {
    justify-content: center;
    margin-bottom: 0.5rem;
  }
}

.bit-details-inner-wrapper .bit-details {
  display: none !important;
}

.bit-widget .bit-event,
.bit-widget.bit-layout-ipad .bit-event {
  padding: 0.5rem 1rem !important;
  display: grid !important;
  grid-template-columns: 1fr 2fr 1fr !important;
  justify-content: space-between;
  border-top: none;
}
@media (max-width: 36em) {
  .bit-widget .bit-event,
.bit-widget.bit-layout-ipad .bit-event {
    grid-template-columns: 1fr !important;
  }
}

.bit-widget .bit-top-track-button {
  color: white !important;
  font-size: 1.4rem;
}

.bit-widget .bit-event .bit-sold-out-text {
  font-size: 1.4rem !important;
}

.bit-widget.bit-layout-ipad .bit-event .bit-offers-container {
  margin: 0 !important;
}

.bit-widget.bit-layout-ipad .bit-event .bit-event-buttons {
  flex-direction: row !important;
}
@media (max-width: 36em) {
  .bit-widget.bit-layout-ipad .bit-event .bit-event-buttons {
    gap: 1rem;
  }
}

.bit-widget.bit-layout-ipad .bit-event-list-title {
  color: white;
}

.bit-widget.bit-layout-ipad .bit-event .bit-button {
  width: 10rem !important;
  height: 3rem !important;
  border: 1px solid white !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  font-weight: normal;
  color: white;
}
.bit-widget.bit-layout-ipad .bit-event .bit-button:hover {
  color: black;
  background-color: white;
}
@media (max-width: 36em) {
  .bit-widget.bit-layout-ipad .bit-event .bit-button {
    width: 15rem !important;
  }
}

.bit-widget .bit-event .bit-date,
.bit-widget .bit-venue,
.bit-widget .bit-event .bit-location {
  color: white !important;
  font-size: 1.4rem !important;
  line-height: 1.8rem !important;
}
@media (max-width: 36em) {
  .bit-widget .bit-event .bit-date,
.bit-widget .bit-venue,
.bit-widget .bit-event .bit-location {
    font-size: 1.3rem !important;
  }
}

.bit-widget .bit-event {
  display: flex;
}

.bit-widget .bit-event .bit-button {
  line-height: 2.5rem !important;
  padding: 0 2rem;
}

.bit-widget .bit-offers,
.bit-widget .bit-event .bit-rsvp {
  color: var(--clr-main) !important;
  border: 1px solid var(--clr-main) !important;
  background-color: transparent !important;
  transition: 400ms all !important;
}
.bit-widget .bit-offers:hover,
.bit-widget .bit-event .bit-rsvp:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

.bit-widget.bit-layout-desktop .bit-event .bit-button.bit-rsvp,
.bit-widget .bit-event .bit-rsvp {
  position: relative;
  color: transparent !important;
}
.bit-widget.bit-layout-desktop .bit-event .bit-button.bit-rsvp::before,
.bit-widget .bit-event .bit-rsvp::before {
  content: "VIP";
  color: var(--clr-main);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bit-widget .bit-event .bit-offers-text {
  font-size: 1.3rem;
}

#dates {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-main);
  font-size: 1.6rem;
  text-transform: uppercase;
  gap: 2rem;
  margin-bottom: 4rem;
}
#dates .event {
  padding: 0.5rem 1rem;
  display: grid;
  grid-template-columns: 1fr 11.5rem;
  align-items: center;
  text-decoration: none;
  line-height: 1.8rem !important;
  text-align: center;
  gap: 2rem;
}
#dates .event:hover {
  background-color: #ffffff24;
}
@media (max-width: 48em) {
  #dates .event {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}
#dates .event .bit-details {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  gap: 2rem;
  font-variation-settings: "wght" 643.1, "wdth" 74.7, "opsz" 30;
}
@media (max-width: 48em) {
  #dates .event .bit-details {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}
#dates .event .bit-details .location,
#dates .event .bit-details .location2 {
  text-align: left;
  width: 100%;
}
@media (max-width: 48em) {
  #dates .event .bit-details .location,
#dates .event .bit-details .location2 {
    text-align: center;
  }
}
#dates .event .bit-details .location2 {
  text-transform: uppercase;
}
#dates .event .bit-details .location {
  width: fit-content;
  display: flex;
  gap: 0.4rem;
  font-family: var(--ff-main);
}
@media (max-width: 48em) {
  #dates .event .bit-details .location {
    margin: auto;
  }
}
#dates .event .bit-details .date {
  text-align: left;
  width: fit-content;
  display: flex;
  gap: 0.4rem;
  font-family: var(--ff-main);
}
@media (max-width: 48em) {
  #dates .event .bit-details .date {
    text-align: center;
    margin: auto;
  }
}
#dates .event .tickets {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-direction: column;
}
#dates .event .tickets a {
  font-size: 1.6rem;
  width: 100%;
  border: none;
  transition: 400ms all;
  letter-spacing: 0;
  position: relative;
  font-family: var(--ff-main);
  text-decoration: underline;
}
#dates .event .tickets .sold-out {
  font-family: var(--ff-main);
  font-variation-settings: "wght" 643.1, "wdth" 74.7, "opsz" 30;
  font-size: 1.4rem;
}

#store .shopify-buy__product__title {
  color: var(--main-color);
}

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