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

:root {
  --clr-main: white;
  --clr-main-30: hsla(0, 0%, 100%, 0.3);
  --clr-main-20: hsla(0, 0%, 100%, 0.2);
  --clr-main-10: hsla(0, 0%, 100%, 0.1);
  --clr-gold: #AC9865;
  --clr-grey: hsl(0, 0%, 55%);
  --clr-bg: black;
  --clr-bg-20: hsla(0, 0%, 0%, 0.2);
}

:root {
  --fnt-main: "RequiemDisplay",serif;
  --fnt-small: "HelveticaNeueLTStd",sans;
  --fnt-base-weight: 400;
  --fnt-bold-weight: 1000;
  --fnt-base-size: 1.6rem;
}

*,
*: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(--fnt-main);
  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(--fnt-main);
  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: var(--fnt-base-size);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fnt-main);
  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 {
  width: 100%;
  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: 1036px;
}

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

.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 {
  padding: 4.5rem;
  height: 96vh;
  height: 96svh;
  min-height: 74rem;
  position: relative;
}
@media (max-width: 62em) {
  header {
    overflow-y: hidden;
    padding: 2rem;
    height: 76vh;
    height: 76svh;
    min-height: initial;
  }
}
@media (max-width: 62em) {
  header {
    height: 100vh;
    height: 100svh;
  }
}
header .main-nav {
  display: flex;
  flex-direction: row;
  position: relative;
}
@media (max-width: 62em) {
  header .main-nav {
    display: grid;
    grid-template-areas: "logo toggle" "social social";
    grid-template-columns: 1fr 2.4rem;
    grid-template-rows: 3.6rem 3.6rem;
    row-gap: 2.2rem;
    z-index: 10;
    overflow: hidden;
    height: 100%;
  }
}
header .main-nav #logo {
  max-width: 22rem;
  z-index: 30;
  grid-area: logo;
}
header .main-nav nav {
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  transition: opacity 300ms;
}
@media (max-width: 62em) {
  header .main-nav nav {
    background-color: var(--clr-bg);
    position: fixed;
    opacity: 0;
    right: -100%;
    min-height: calc(100vh - 4rem);
    min-height: calc(100svh - 4rem);
    top: 0;
    width: 100%;
    padding: 14rem 5rem 0 5rem;
    z-index: 10;
  }
  header .main-nav nav.open {
    right: 0;
    opacity: 1;
  }
}
@media (max-width: 36em) {
  header .main-nav nav {
    padding: 8rem 5rem 5rem 5rem;
  }
}
header .main-nav nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 12%;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 62em) {
  header .main-nav nav ul {
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 24rem);
  }
}
header .main-nav nav ul li a {
  font-family: var(--fnt-main);
  color: var(--clr-main);
  line-height: 2rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid transparent;
  font-weight: 500;
}
header .main-nav nav ul li a:hover {
  border-bottom: 1px solid var(--clr-main);
}
header .main-nav button.toggle-menu {
  display: none;
  background-color: transparent;
  border: none;
  color: white;
  z-index: 100;
  grid-area: toggle;
}
@media (max-width: 62em) {
  header .main-nav button.toggle-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 3rem;
    margin: 0;
    width: 100%;
    padding: 0;
  }
}
header .main-nav button.toggle-menu .line {
  transition: 500ms;
  transform-origin: center;
  fill: white;
}
header .main-nav button.toggle-menu.active .top {
  y: 50;
  transform: rotate(-45deg);
}
header .main-nav button.toggle-menu.active .bottom {
  y: 50;
  transform: rotate(45deg);
}
header .main-nav button.toggle-menu.active .middle {
  opacity: 0;
}
header .main-nav .social {
  display: flex;
  align-items: center;
  grid-area: social;
}
@media (max-width: 62em) {
  header .main-nav .social {
    justify-content: space-between;
  }
  header .main-nav .social a {
    font-size: 3rem;
    margin: 0;
  }
}
header .artwork-container {
  max-height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  max-width: 90rem;
}
header .artwork-container img {
  max-height: 100%;
  pointer-events: none;
  z-index: -10;
}
@media (max-width: 36em) {
  header .artwork-container img {
    max-width: 120%;
    max-height: 120%;
  }
}
header .video-container {
  max-height: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  overflow: hidden;
}
@media (max-width: 62em) {
  header .video-container {
    position: absolute;
  }
}
@media (max-width: 36em) {
  header .video-container {
    width: 100%;
  }
}
header .video-container video {
  max-width: 100%;
  max-height: 100%;
  pointer-events: none;
  z-index: -10;
}
@media (max-width: 36em) {
  header .video-container video {
    max-width: 120%;
    max-height: 120%;
  }
}

body {
  color: var(--clr-main);
  margin: 0;
  letter-spacing: 0.5px;
  background-color: var(--clr-bg);
}
body.open-modal::before {
  content: "";
  background-color: var(--clr-bg-20);
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1;
  transition: all 200ms;
  opacity: 1;
}
body main section {
  text-align: center;
}
body main section h2 {
  font-size: 4.8rem;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 62em) {
  body main section h2 {
    font-size: 4rem;
  }
}
body main .youtube-section {
  padding-top: 10rem;
}
body main .youtube-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main .youtube-section .iframe-container {
  aspect-ratio: 16/9;
  max-width: 80rem;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
}
body main #tour {
  padding-top: 10rem;
}
body main #tour .slider-container {
  max-width: 82.4rem;
}
body main #music {
  padding-top: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main #music .container {
  display: flex;
  flex-direction: column;
}
body main #music .container a.btn {
  margin: auto;
  margin-top: 3rem;
}
body main #video {
  padding-top: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main #video .container {
  display: flex;
  flex-direction: column;
}
body main #video .container a.btn {
  margin: auto;
  margin-top: 3rem;
}
body main #new-album .spotify-player {
  max-width: 60rem;
  margin: auto;
}
body main #press,
body main #merch {
  min-height: 90vh;
  position: relative;
  padding-top: 10rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 36em) {
  body main #press,
body main #merch {
    min-height: initial;
  }
}
body main #press .container,
body main #merch .container {
  display: flex;
  flex-direction: column;
}
body main #press .container a.btn,
body main #merch .container a.btn {
  margin: auto;
  margin-top: 3rem;
}
body main #press .container .items-grid,
body main #merch .container .items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 4rem;
}
@media (max-width: 48em) {
  body main #press .container .items-grid,
body main #merch .container .items-grid {
    display: flex;
    gap: 0;
  }
}
body main #press .container .items-grid a.article,
body main #merch .container .items-grid a.article {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body main #press .container .items-grid a.article h3,
body main #merch .container .items-grid a.article h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
}
@media (max-width: 48em) {
  body main #press .container .items-grid a.article h3,
body main #merch .container .items-grid a.article h3 {
    font-size: 1.6rem;
  }
}
body main #press .container .items-grid a.article .press-thumbnail,
body main #merch .container .items-grid a.article .press-thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background-color: var(--clr-main-10);
  width: 100%;
}
body main #press .container .items-grid a.article .press-thumbnail img,
body main #merch .container .items-grid a.article .press-thumbnail img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body main #press .container .items-grid a.article .merch-thumbnail,
body main #merch .container .items-grid a.article .merch-thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background-color: var(--clr-main);
  width: 100%;
}
@media (max-width: 48em) {
  body main #press .container .items-grid a.article .merch-thumbnail,
body main #merch .container .items-grid a.article .merch-thumbnail {
    aspect-ratio: 1;
  }
}
body main #press .container .items-grid a.article .merch-thumbnail img,
body main #merch .container .items-grid a.article .merch-thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 90%;
}
@media (max-width: 48em) {
  body main #press .container .items-grid a.article .merch-thumbnail img,
body main #merch .container .items-grid a.article .merch-thumbnail img {
    max-height: 100%;
  }
}
body main #press .container .items-grid a.article span,
body main #merch .container .items-grid a.article span {
  margin-top: 2rem;
  padding: 1.6rem;
  border: none;
  border-bottom: 1px solid transparent;
  transition: all 200ms;
  text-transform: uppercase;
}
body main #press .container .items-grid a.article:hover span,
body main #merch .container .items-grid a.article:hover span {
  border-bottom: 1px solid var(--clr-main);
}
body main #bio {
  min-height: 90vh;
  position: relative;
  padding-top: 10rem;
  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;
  margin-top: 0;
}
@media (max-width: 48em) {
  body main #bio h2 {
    font-size: 3rem;
  }
}
body main #bio .section-cover {
  aspect-ratio: 16/9;
  background-image: url("../assets/img/bio.jpeg");
  background-size: cover;
}
body main #bio img {
  width: 60vw;
  max-width: 100rem;
}
body main #news {
  text-align: center;
  padding-top: 10rem;
}
body main #news h2 {
  font-size: 6rem;
  text-transform: uppercase;
  margin-top: 0;
}
@media (max-width: 48em) {
  body main #news h2 {
    font-size: 3rem;
  }
}
body main #news .form-container {
  max-width: 68rem;
  width: 66vw;
  margin: 5.6rem auto 0 auto;
}
body main #news .form-container form {
  display: flex;
  flex-direction: column;
}
body main #news .form-container form input[type=email] {
  font-family: var(--fnt-main);
  font-size: 1.8rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 3px;
  padding-bottom: 1rem;
  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 form input[type=email]::placeholder {
  font-family: var(--fnt-main);
  color: var(--clr-grey);
}
body main #news .form-container form input[type=submit] {
  background-color: transparent;
  border: 1px solid transparent;
  font-family: var(--fnt-main);
  font-size: 1.4rem;
  text-align: center;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  max-width: 20.9rem;
  width: fit-content;
  padding: 1rem;
  cursor: pointer;
  transition: all 400ms;
  display: flex;
  margin: auto;
  text-align: center;
  justify-content: center;
}
body main #news .form-container form input[type=submit]:hover {
  border-bottom: 1px solid var(--clr-main);
}
body main #news .form-container form #default_mailing_list {
  display: none;
}
body main .signup {
  height: 14.5rem;
  color: var(--clr-main);
  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: var(--fnt-main);
  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: var(--clr-main);
  color: var(--clr-bg);
  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: var(--clr-main);
  transition: all 300ms;
}
body main .cta-container a:hover {
  filter: brightness(1.3);
}
body main .text-block {
  max-width: 110rem;
  margin: 6rem auto;
}
@media (max-width: 36em) {
  body main .text-block {
    max-width: 90%;
  }
}
body main .text-block__sm {
  max-width: 53rem;
}
@media (max-width: 36em) {
  body main .text-block__sm {
    max-width: 90%;
  }
}
@media (max-width: 48em) {
  body main .text-block {
    margin: 4rem auto;
  }
}
body main .text-block p {
  font-size: 1.8rem;
  color: white;
}
@media (max-width: 36em) {
  body main .text-block p {
    font-size: 1.6rem;
  }
}
body main .text-block h3 {
  font-size: 2.6rem;
  text-transform: uppercase;
}
@media (max-width: 36em) {
  body main .text-block h3 {
    font-size: 1.7rem;
  }
}
body main .text-block ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
body main .text-block ul li a {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--clr-main-30);
}
@media (max-width: 36em) {
  body main .text-block ul li a {
    text-decoration: underline;
    border-bottom: none;
  }
}
body main .text-block ul li a:hover {
  border-bottom: 1px solid var(--clr-main);
}
@media (max-width: 36em) {
  body main .text-block ul li a:hover {
    text-decoration: underline;
    border-bottom: none;
  }
}

footer {
  color: white;
  margin: auto;
  width: 100%;
  padding: 12rem 4.5rem 4.5rem 4.5rem;
}
footer ::-moz-selection {
  /* Code for Firefox */
  color: var(--clr-main);
  background: white;
}
footer ::selection {
  color: var(--clr-main);
  background: white;
}
@media (max-width: 48em) {
  footer {
    height: fit-content;
    padding: 3rem;
  }
}
@media (max-width: 36em) {
  footer {
    padding: 2rem;
  }
}
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;
    padding: 0;
  }
  footer .container > a, footer .container button {
    font-size: 3rem;
  }
}
footer a, footer button {
  color: white;
  font-family: var(--fnt-small);
  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 .label-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 42rem;
  gap: 0.6rem;
}
footer .label-info #logo-5020 {
  font-size: 0;
  width: 8rem;
  height: 2.3rem;
  display: inline-block;
  position: relative;
  padding-top: 0;
  filter: invert(1);
}
footer .label-info #logo-5020:hover {
  opacity: 0.7;
}
@media (max-width: 75em) {
  footer .label-info #logo-5020 {
    margin: auto;
    margin-left: 0;
    margin-top: 1rem;
  }
}
@media (max-width: 48em) {
  footer .label-info #logo-5020 {
    margin-bottom: 0.3rem;
  }
}
@media (max-width: 75em) {
  footer .label-info {
    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 .label-info {
    min-width: inherit;
  }
}
footer .disclaimer {
  text-align: left;
}
footer .disclaimer p, footer .disclaimer p * {
  font-size: 0.8rem;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: 0;
  font-family: var(--fnt-small);
}
footer .disclaimer a {
  text-decoration: none;
  font-size: 0.8rem;
}
@media (max-width: 48em) {
  footer .social {
    margin-bottom: 4rem;
  }
}
footer .social a {
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  padding-top: 0;
}

.btn {
  border: 1px solid var(--clr-main);
  padding: 1.6rem;
  text-align: center;
  transition: all 300ms;
  font-family: var(--fnt-main);
  font-weight: var(--fnt-base-weight);
  font-size: 1.6rem;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  max-width: 30rem;
}
.btn:hover {
  border-color: var(--clr-bg);
  border-bottom: 1px solid var(--clr-main);
}

.social a {
  margin: 0 0.8rem;
  font-size: 1.8rem;
}
.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%);
  }
}
.modal {
  box-shadow: 0rem 0rem 6rem var(--clr-bg);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1000;
  background-color: black;
  color: var(--clr-bg);
  text-align: center;
  border-radius: 0;
  padding: 0 2rem;
}
.modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.modal .btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--fnt-main);
  letter-spacing: 1px;
}
.modal .btn-close a {
  color: var(--main-color);
}
.modal h2 {
  font-family: var(--fnt-main);
  letter-spacing: 1px;
  color: var(--clr-main);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
  font-size: 2rem;
}
.modal.msj-modal {
  width: 30rem;
  height: 14rem;
}

.stripped-modal {
  width: 100%;
  max-width: 60rem;
  padding: 0;
  background-color: var(--clr-main);
}
@media (max-width: 62em) {
  .stripped-modal {
    max-width: 45rem;
  }
}
@media (max-width: 36em) {
  .stripped-modal {
    max-width: 90%;
  }
}
.stripped-modal .modal-header {
  background-image: url("../assets/img/stripped_bg_d.jpg");
  background-size: cover;
  aspect-ratio: 16/9;
}
.stripped-modal .modal-cta {
  display: flex;
  flex-direction: column;
}
.stripped-modal .modal-cta a {
  background-color: var(--clr-main);
  color: var(--clr-bg);
  text-transform: uppercase;
  font-size: 2rem;
  cursor: pointer;
  padding: 2rem;
}
.stripped-modal .modal-cta a:hover {
  color: var(--clr-main);
  background-color: var(--clr-bg);
}

.slider-container {
  padding-bottom: 6rem;
}

.splide__pagination {
  bottom: -3.5rem;
  gap: 1rem;
}

.splide__pagination__page.is-active {
  transform: initial;
}

#music-slider .splide__slide,
#video-slider .splide__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#music-slider .splide__slide h3,
#video-slider .splide__slide h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
}
#music-slider .splide__slide a.btn,
#video-slider .splide__slide a.btn {
  margin-top: 2rem;
  padding: 1.6rem;
  border: none;
  border-bottom: 1px solid transparent;
}
#music-slider .splide__slide a.btn:hover,
#video-slider .splide__slide a.btn:hover {
  border-bottom: 1px solid var(--clr-main);
}
#music-slider .splide__arrows .splide__arrow,
#video-slider .splide__arrows .splide__arrow {
  background-color: transparent;
}
#music-slider .splide__arrows .splide__arrow--prev,
#video-slider .splide__arrows .splide__arrow--prev {
  left: -4rem;
}
#music-slider .splide__arrows .splide__arrow--next,
#video-slider .splide__arrows .splide__arrow--next {
  right: -4rem;
}
#music-slider .splide__arrows .splide__arrow svg,
#video-slider .splide__arrows .splide__arrow svg {
  fill: var(--clr-main);
}

#video-slider .video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  width: 100%;
}
#video-slider .video-thumbnail img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-list {
  display: flex;
  flex-direction: row;
}
@media (max-width: 36em) {
  .video-list {
    margin: auto;
  }
}
.video-list .video {
  text-align: center;
  min-height: 27rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0 2rem;
}
@media (max-width: 36em) {
  .video-list .video {
    min-height: 21rem;
    margin: 0 1rem;
  }
}
.video-list .video .video-thumbnail {
  max-height: 24.5rem;
  overflow: hidden;
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 36em) {
  .video-list .video .video-thumbnail {
    max-height: 18.3rem;
  }
}
.video-list .video h3 {
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: white;
}
.video-list .video h3 span {
  font-size: 1.4rem;
}
.video-list .video a {
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid white;
  max-width: 20.9rem;
  padding: 1rem;
  letter-spacing: 3px;
  display: block;
  margin: auto;
  margin-top: 1rem;
}
.video-list .video a:hover {
  background-color: white;
  color: black;
}

#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: 2.5rem;
  }
}
#dates .event {
  padding: 2.5rem 0;
  display: flex;
  flex-direction: row;
  text-decoration: none;
  justify-content: space-between;
  font-size: 1.4rem !important;
  text-align: center;
  align-items: center;
  border-bottom: 1px solid var(--clr-main);
  width: 100%;
}
@media (max-width: 48em) {
  #dates .event {
    flex-direction: column;
    margin: auto;
    gap: 1rem;
    padding: 1.5rem 0;
  }
}
#dates .event .bit-details {
  display: grid;
  grid-template-columns: 16rem 1fr 16rem;
  width: 100%;
}
@media (max-width: 48em) {
  #dates .event .bit-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
#dates .event .bit-details .area {
  font-size: 1.6rem;
  font-weight: 300;
  text-transform: uppercase;
}
#dates .event .bit-details .venue {
  font-size: 1.4rem;
}
#dates .event .bit-details .location {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 48em) {
  #dates .event .bit-details .location {
    text-align: center;
    gap: 1rem;
  }
}
#dates .event .bit-details .location p {
  margin: 0;
}
#dates .event .bit-details .date {
  text-align: left;
  text-transform: uppercase;
  font-size: 3.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
@media (max-width: 48em) {
  #dates .event .bit-details .date {
    text-align: center;
    margin-bottom: 0;
    justify-content: center;
  }
}
#dates .event .tickets {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  flex-direction: row;
}
@media (max-width: 62em) {
  #dates .event .tickets {
    justify-content: center;
  }
}
#dates .event .tickets a {
  font-size: 1.6rem;
  transition: 400ms all;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  padding: 2rem 1.6rem;
  border: none;
  border-bottom: 1px solid transparent;
}
#dates .event .tickets a:hover {
  border-bottom: 1px solid var(--clr-main);
}
#dates .event .tickets a.soon {
  opacity: 0.7;
  pointer-events: none;
}
#dates .tour-more-wrap {
  padding-top: 4rem;
}
#dates .tour-more-wrap .tour-more {
  font-size: 1.4rem;
  color: var(--clr-main);
  display: inline-block;
  font-family: var(--fnt-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--clr-main);
  padding: 1.6rem;
}
#dates .tour-more-wrap .tour-more:hover {
  border-color: var(--clr-bg);
  border-bottom: 1px solid var(--clr-main);
}

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