/*
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: "RequiemDisplay", serif;
  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: "RequiemDisplay", serif;
  transition: all 400ms;
}

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.6rem;
}

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

/*------------------------------------*\
    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: "RequiemDisplay";
  src: url("../fonts/RequiemDisplay/RequiemDisplay.otf") format("opentype");
}
@font-face {
  font-family: "HelveticaNeueLTStd";
  src: url("../fonts/Helvetica/HelveticaNeueLTStd-Roman.otf") format("opentype");
}
.is-uppercase {
  text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "RequiemDisplay", serif;
  font-weight: 200;
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3rem;
}
@media (max-width: 36em) {
  h2 {
    font-size: 2rem;
  }
}

.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;
}

.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;
}

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

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

header {
  display: flex;
  flex-direction: column;
  padding: 4.5rem;
  background-image: url("../img/main-bg.jpg");
  background-size: cover;
  background-position: center;
  height: 96vh;
  position: relative;
  box-shadow: 0 -9rem 11rem black inset;
}
@media (max-width: 36em) {
  header {
    grid-template-columns: 1fr;
    padding: 2rem 2.4rem 4rem 2.4rem;
    height: 90vh;
    min-height: initial;
    margin-bottom: 6rem;
    background-position: 50% center;
    justify-content: center;
  }
}
header nav {
  margin: 0 auto;
  text-align: center;
}
header nav #logo {
  max-width: 18rem;
}
@media (max-width: 48em) {
  header nav #logo {
    max-width: 17rem;
    margin-bottom: 2rem;
  }
}
header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 6rem;
  margin: 2rem 0;
}
@media (max-width: 36em) {
  header nav ul {
    display: none;
  }
}
header nav ul li {
  line-height: 2rem;
}
header nav ul li a {
  font-family: "RequiemDisplay", serif;
  color: white;
  line-height: 5rem;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid transparent;
}
header nav ul li a:hover {
  border-bottom: 1px solid white;
}
@media (max-width: 36em) {
  header nav ul li a {
    color: white;
    font-size: 1.4rem;
    line-height: 4rem;
  }
}
header .la-fuerza {
  max-width: 29vw;
  margin: auto;
}
@media (max-width: 36em) {
  header .la-fuerza {
    max-width: 60vw;
  }
}
header .header-top {
  display: none;
  margin-bottom: 5rem;
}
@media (max-width: 48em) {
  header .header-top {
    display: flex;
  }
}
header .header-top .social {
  flex-direction: row;
  gap: 1rem;
  position: relative;
  justify-content: center;
}
header .header-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 48em) {
  header .header-bottom {
    flex-direction: column;
  }
}
header .header-bottom .social {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  width: inherit;
}
@media (max-width: 48em) {
  header .header-bottom .social {
    display: none;
  }
}
header .header-bottom .social a {
  color: white;
}
@media (max-width: 36em) {
  header .header-bottom .social a {
    margin: 0 0.5rem;
  }
}
header .header-bottom .social a:hover {
  filter: brightness(1.6);
}
header .header-bottom .scroll-indicator {
  margin: auto;
}
@media (max-width: 48em) {
  header .header-bottom .scroll-indicator {
    display: none;
  }
}
header .header-bottom .listen-now-container {
  max-width: 28rem;
  width: 100%;
  display: flex;
  justify-content: end;
  position: relative;
}
@media (max-width: 48em) {
  header .header-bottom .listen-now-container {
    justify-content: center;
    margin: auto;
  }
}
header .header-bottom .listen-now-container #listen-now {
  bottom: 0;
  width: 20rem;
  font-size: 2rem;
  font-family: "RequiemDisplay", serif;
  color: white;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  cursor: pointer;
  display: block;
  position: absolute;
}
@media (max-width: 48em) {
  header .header-bottom .listen-now-container #listen-now {
    margin: auto;
    position: relative;
  }
}
header .header-bottom .listen-now-container #listen-now:hover img {
  filter: brightness(1.1);
}
header .header-bottom .listen-now-container #listen-now:hover span {
  background-color: white;
  color: black;
}
header .header-bottom .listen-now-container #listen-now img {
  margin-top: 1rem;
  transition: all 600ms;
}
header .header-bottom .listen-now-container #listen-now span {
  font-size: 1.4rem;
  width: 100%;
  border: 1px solid white;
  padding: 1rem;
  display: block;
  margin-top: 2rem;
  transition: all 600ms;
}

body {
  color: white;
  margin: 0;
  letter-spacing: 0.5px;
  background-color: black;
}
body main .tour {
  text-align: center;
  padding-top: 18rem;
}
@media (max-width: 48em) {
  body main .tour {
    padding-top: 0;
  }
}
body main .tour h2 {
  font-size: 6rem;
  text-transform: uppercase;
}
@media (max-width: 48em) {
  body main .tour h2 {
    font-size: 3rem;
  }
}
body main .music {
  text-align: center;
  padding-top: 18rem;
}
@media (max-width: 48em) {
  body main .music {
    padding-top: 10rem;
  }
}
body main .music .album-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: auto;
  gap: 4rem;
  max-width: 90rem;
}
@media (max-width: 36em) {
  body main .music .album-list {
    flex-direction: column;
  }
}
body main .music .album-list .album {
  max-width: 33vw;
  text-align: center;
  margin: auto;
  margin-bottom: 3rem;
}
@media (max-width: 36em) {
  body main .music .album-list .album {
    max-width: 20.3rem;
  }
}
body main .music .album-list .album h3 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 2rem;
  color: #8C8C8C;
}
body main .music .album-list .album h3 span {
  font-size: 1.4rem;
}
body main .music .album-list .album a {
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  margin: auto;
  border: 1px solid white;
  max-width: 20.9rem;
  padding: 1rem;
  letter-spacing: 3px;
  display: block;
}
body main .music .album-list .album a:hover {
  background-color: white;
  color: black;
}
body main .music a {
  font-size: 1.4rem;
  color: white;
  display: inline-block;
  font-family: "RequiemDisplay", serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 1px solid transparent;
}
body main .music a:hover {
  border-bottom: 1px solid white;
}
body main .music h2 {
  font-size: 6rem;
  text-transform: uppercase;
}
@media (max-width: 48em) {
  body main .music h2 {
    font-size: 3rem;
  }
}
body main .video {
  height: 90vh;
  min-height: 68rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 36em) {
  body main .video {
    min-height: inherit;
    height: 60rem;
  }
}
body main .video h2 {
  font-size: 5.5rem;
  z-index: 1;
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 50%;
  width: 100%;
  display: block;
  text-align: center;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 3px;
}
@media (max-width: 62em) {
  body main .video h2 {
    font-size: 4.5rem;
  }
}
@media (max-width: 36em) {
  body main .video h2 {
    font-size: 5vw;
  }
}
@media (max-width: 62em) {
  body main .video h2 span {
    display: block;
  }
}
body main .video a {
  font-size: 1.4rem;
  color: white;
  display: block;
  font-family: "RequiemDisplay", serif;
  text-decoration: underline;
  bottom: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
body main .video a:hover {
  color: white;
  filter: brightness(1.5);
}
body main .video .video-bg {
  width: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  padding-bottom: 0;
}
@media (max-width: 36em) {
  body main .video .video-bg {
    right: initial;
    transform: translateX(-50%);
  }
}
body main .video .video-bg video {
  width: 100%;
}
@media (min-width: 100em) {
  body main .video .video-bg video {
    width: 100%;
  }
}
@media (max-width: 36em) {
  body main .video .video-bg video {
    height: 56rem;
    width: initial;
  }
}
body main .bio {
  min-height: 90vh;
  position: relative;
  padding-top: 18rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (max-width: 48em) {
  body main .bio {
    padding-top: 10rem;
  }
}
body main .bio h2 {
  font-size: 6rem;
  text-transform: uppercase;
}
@media (max-width: 48em) {
  body main .bio h2 {
    font-size: 3rem;
  }
}
body main .bio .text-block {
  max-width: 73rem;
  margin: 10rem auto;
}
@media (max-width: 48em) {
  body main .bio .text-block {
    margin: 4rem auto;
  }
}
body main .bio .text-block p {
  font-size: 2rem;
  color: #8C8C8C;
}
body main .bio img {
  width: 60vw;
  max-width: 100rem;
}
body main .news {
  min-height: 90vh;
  position: relative;
  padding-top: 18rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media (max-width: 48em) {
  body main .news {
    padding-top: 10rem;
    min-height: 56vh;
  }
}
body main .news h2 {
  font-size: 6rem;
  text-transform: uppercase;
}
@media (max-width: 48em) {
  body main .news h2 {
    font-size: 3rem;
  }
}
body main .news .form-container {
  max-width: 68rem;
  width: 66vw;
  margin-top: 12rem;
}
@media (max-width: 48em) {
  body main .news .form-container {
    margin-top: 5rem;
  }
}
body main .news .form-container input[type=email] {
  font-family: "RequiemDisplay", serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 3px;
  padding-bottom: 2rem;
  border: none;
  background-color: transparent;
  color: white;
  transition: all 400ms;
  border-bottom: 1px solid white;
  width: 100%;
  margin-bottom: 2rem;
}
body main .news .form-container input[type=email]::placeholder {
  font-family: "RequiemDisplay", serif;
  color: #8C8C8C;
}
body main .news .form-container input[type=submit] {
  background-color: transparent;
  border: 1px solid white;
  font-family: "RequiemDisplay", serif;
  font-size: 1.4rem;
  text-align: center;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  max-width: 20.9rem;
  width: 100%;
  padding: 1rem;
  cursor: pointer;
  transition: all 400ms;
  display: inline-block;
}
body main .news .form-container input[type=submit]:hover {
  background-color: white;
  color: black;
}
body main .news .form-container #default_mailing_list {
  display: none;
}
body main .signup {
  height: 14.5rem;
  color: white;
  display: flex;
  align-items: center;
  padding-top: 3rem;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 36em) {
  body main .signup {
    height: 10rem;
  }
}
body main .signup li {
  font-family: "RequiemDisplay", serif;
  font-size: 8rem;
  text-transform: uppercase;
  margin: 0;
  margin-right: 2rem;
}
@media (max-width: 36em) {
  body main .signup li {
    font-size: 5rem;
  }
}
body main .signup:hover {
  background-color: white;
  color: black;
  transition: all 400ms ease-in-out;
}
body main .cta-disclaimer {
  margin: auto;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
body main .cta-disclaimer span {
  margin-bottom: 0.4rem;
}
@media (max-width: 36em) {
  body main .cta-disclaimer span {
    display: inline;
  }
}
body main .cta-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
body main .cta-container a {
  color: white;
  transition: all 300ms;
}
body main .cta-container a:hover {
  filter: brightness(1.3);
}

footer {
  background-color: black;
  color: white;
  margin: auto;
  width: 100%;
  padding: 12rem 4.5rem 4.5rem 4.5rem;
}
footer ::-moz-selection {
  /* Code for Firefox */
  color: white;
  background: white;
}
footer ::selection {
  color: white;
  background: white;
}
@media (max-width: 48em) {
  footer {
    height: fit-content;
    padding: 3rem;
  }
}
footer .container {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 48em) {
  footer .container {
    flex-direction: column-reverse;
  }
  footer .container > a, footer .container button {
    font-size: 3rem;
  }
}
footer a, footer button {
  color: white;
  font-family: "HelveticaNeueLTStd", sans;
  text-transform: uppercase;
  font-size: 4vw;
  text-decoration: underline;
  background-color: transparent;
  border: none;
  padding-top: 1.4rem;
}
footer a:hover, footer button:hover {
  filter: brightness(1.4);
}
footer .rca {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 42rem;
}
footer .rca #rcalogo {
  font-size: 0;
  width: 4.4rem;
  height: 1.3rem;
  display: inline-block;
  position: relative;
}
@media (max-width: 75em) {
  footer .rca #rcalogo {
    margin: auto;
    margin-top: 1rem;
  }
}
@media (max-width: 48em) {
  footer .rca #rcalogo {
    margin-bottom: 1rem;
  }
}
footer .rca #rcalogo::after {
  content: url("../img/rca.svg");
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 75em) {
  footer .rca {
    text-align: center;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
  }
}
@media (max-width: 36em) {
  footer .rca {
    min-width: inherit;
    margin-bottom: 2rem;
  }
}
footer .disclaimer {
  text-align: left;
}
footer .disclaimer p, footer .disclaimer p * {
  font-size: 0.8rem;
  margin-bottom: 0;
  letter-spacing: 1px;
  font-family: "HelveticaNeueLTStd", sans;
}
footer .disclaimer a {
  text-decoration: none;
  font-size: 0.8rem;
}
@media (max-width: 75em) {
  footer .disclaimer {
    text-align: center;
  }
}
@media (max-width: 48em) {
  footer .social {
    margin-bottom: 4rem;
  }
}
footer .social a {
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
  padding-top: 0;
}

.btn {
  border: 1px solid white;
  padding: 0.5rem 4rem;
  text-align: center;
  transition: all 800ms;
  font-family: "RequiemDisplay", serif;
  font-weight: 400;
  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;
}

.social a {
  margin: 0 0.8rem;
  font-size: 1.6rem;
}
.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;
  }
}

.marquee {
  margin: 0 auto;
  height: 30px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}
.marquee:before, .marquee:after {
  position: absolute;
  top: 0;
  width: 50px;
  height: 30px;
  content: "";
  z-index: 1;
}

.marquee__content {
  width: 300% !important;
  display: flex;
  line-height: 30px;
  animation: marquee 30s linear infinite forwards;
}

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

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-66.6%);
  }
}
.video-modal,
.msj-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
}
.video-modal .modal-content,
.msj-modal .modal-content {
  margin: auto;
  width: 45vw;
  height: 58rem;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 48em) {
  .video-modal .modal-content,
.msj-modal .modal-content {
    width: 85vw;
    height: initial;
  }
}
.video-modal .modal-content h2,
.msj-modal .modal-content h2 {
  color: white;
  text-align: center;
  font-size: 11vw;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  top: -6rem;
  transform: translateX(-50%);
  margin: 0;
  z-index: 1;
  width: 100%;
}
@media (max-width: 48em) {
  .video-modal .modal-content h2,
.msj-modal .modal-content h2 {
    top: -4rem;
  }
}
@media (max-width: 36em) {
  .video-modal .modal-content h2,
.msj-modal .modal-content h2 {
    font-size: 18vw;
    top: -3rem;
  }
}

.video-modal .video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.video-modal .video-container::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.video-modal .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-modal .btn-close {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  font-family: "RequiemDisplay", serif;
  letter-spacing: 1px;
  color: white;
  font-size: 4rem;
}
.video-modal .btn-close a {
  font-family: "RequiemDisplay", serif;
  font-size: 4rem;
  color: white;
}

.msj-modal {
  background-color: black;
  z-index: 2;
}
.msj-modal h2 {
  height: 12px;
  font-family: "RequiemDisplay", serif;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
  font-size: 6rem;
  max-width: 60%;
  margin: auto;
  text-align: center;
}
@media (max-width: 48em) {
  .msj-modal h2 {
    font-size: 6vw;
  }
}
@media (max-width: 36em) {
  .msj-modal h2 {
    font-size: 10vw;
  }
}
.msj-modal .btn-close {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  font-family: "RequiemDisplay", serif;
  letter-spacing: 1px;
  color: white;
  font-size: 4rem;
}
.msj-modal .btn-close a {
  font-family: "RequiemDisplay", serif;
  font-size: 4rem;
  color: white;
}

.bit-widget.bit-layout-desktop .bit-details {
  flex-direction: column !important;
  align-content: flex-start !important;
  align-items: flex-start !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-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;
}

.bit-widget .bit-event,
.bit-widget.bit-layout-ipad .bit-event {
  padding: 0.5rem 1rem !important;
}

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

.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;
}

.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: white !important;
  border: 1px solid white !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: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#dates {
  display: flex;
  flex-direction: column;
}
@media (max-width: 75em) {
  #dates {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 48em) {
  #dates {
    grid-template-columns: 1fr;
    row-gap: 4rem;
  }
}
#dates .event {
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  justify-content: space-between;
  font-size: 1.4rem !important;
  line-height: 1.8rem !important;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 48em) {
  #dates .event {
    flex-direction: column;
    margin: auto;
    gap: 1rem;
  }
}
#dates .event .bit-details {
  display: flex;
  flex-direction: row;
  gap: 10rem;
}
@media (max-width: 48em) {
  #dates .event .bit-details {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
#dates .event .bit-details .area {
  font-size: 1.4rem;
  font-weight: 300;
  text-transform: uppercase;
}
#dates .event .bit-details .venue {
  font-size: 1.2rem;
}
#dates .event .bit-details .location {
  text-align: left;
}
@media (max-width: 48em) {
  #dates .event .bit-details .location {
    text-align: center;
  }
}
#dates .event .bit-details .date {
  text-align: center;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
  font-size: 2rem;
}
@media (max-width: 48em) {
  #dates .event .bit-details .date {
    margin-bottom: 0;
  }
}
#dates .event .tickets {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  justify-content: center;
  flex-direction: row;
  width: 20.9rem;
}
@media (max-width: 48em) {
  #dates .event .tickets {
    margin: auto;
  }
}
#dates .event .tickets a {
  font-size: 1.4rem;
  height: 4.1rem;
  width: 100%;
  border: 1px solid white;
  transition: 400ms all;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
}
#dates .event .tickets a:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
}
#dates .tour-more {
  font-size: 1.4rem;
  color: white;
  display: inline-block;
  font-family: "RequiemDisplay", serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 1px solid transparent;
}
#dates .tour-more:hover {
  border-bottom: 1px solid white;
}

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