/*
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 {
  --main-color: white;
  --main-color-30: hsla(0, 0%, 100%, 0.2);
  --grey-color: hsl(0, 0%, 55%);
  --bg-color: black;
  --bg-color-20: hsla(0, 0%, 0%, 0.2);
}

*,
*: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;
  height: 96vh;
  min-height: 80rem;
  position: relative;
}
@media (max-width: 62em) {
  header {
    grid-template-columns: 1fr;
    padding: 2rem 2.4rem 4rem 2.4rem;
    height: initial;
    background-position: bottom 0 left 20%;
    justify-content: center;
    gap: 1rem;
  }
}
header nav {
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 48em) {
  header nav {
    overflow-x: scroll;
    width: 100%;
  }
}
header nav ul {
  list-style: none;
  padding: 0 3rem;
  display: flex;
  flex-direction: row;
  gap: 6rem;
  margin: 2rem 0;
}
@media (max-width: 62em) {
  header nav ul {
    padding: 0 3rem 0 0;
    gap: 5rem;
  }
}
@media (max-width: 36em) {
  header nav ul {
    margin: 0;
    gap: 2.5rem;
  }
}
header nav ul li {
  line-height: 2rem;
}
header nav ul li a {
  font-family: "RequiemDisplay", serif;
  color: var(--main-color);
  line-height: 5rem;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid transparent;
  font-weight: 600;
}
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: 3rem;
  }
}
header nav #logo {
  max-width: 18rem;
}
@media (max-width: 48em) {
  header nav #logo {
    max-width: 17rem;
    margin-bottom: 2rem;
  }
}
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: 62em) {
  header .header-top {
    margin-bottom: 0;
  }
}
@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;
    margin-top: 40vh;
    gap: 2rem;
  }
}
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: var(--main-color);
}
@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-l-container,
header .header-bottom .listen-now-r-container {
  max-width: 28rem;
  width: 100%;
  display: flex;
  justify-content: end;
  position: relative;
}
@media (max-width: 48em) {
  header .header-bottom .listen-now-l-container,
header .header-bottom .listen-now-r-container {
    justify-content: center;
    margin: auto;
  }
}
header .header-bottom .listen-now-l-container a,
header .header-bottom .listen-now-r-container a {
  bottom: 0;
  width: 20rem;
  font-size: 1.7rem;
  font-family: "RequiemDisplay", serif;
  color: var(--main-color);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  cursor: pointer;
  display: block;
  position: absolute;
}
@media (max-width: 48em) {
  header .header-bottom .listen-now-l-container a,
header .header-bottom .listen-now-r-container a {
    margin: auto;
    position: relative;
  }
}
header .header-bottom .listen-now-l-container a:hover img,
header .header-bottom .listen-now-r-container a:hover img {
  filter: brightness(1.1);
}
header .header-bottom .listen-now-l-container a:hover span,
header .header-bottom .listen-now-r-container a:hover span {
  background-color: white;
  color: var(--bg-color);
}
header .header-bottom .listen-now-l-container a img,
header .header-bottom .listen-now-r-container a img {
  margin-top: 1rem;
  transition: all 600ms;
}
header .header-bottom .listen-now-l-container a span,
header .header-bottom .listen-now-r-container a span {
  font-size: 1.4rem;
  width: 100%;
  border: 1px solid white;
  padding: 1rem;
  display: block;
  margin-top: 2rem;
  transition: all 600ms;
}
header .header-bottom .listen-now-l-container {
  justify-content: flex-start;
}
header .stripped-link {
  position: absolute;
  width: 100%;
  max-width: 50rem;
  top: 50%;
  left: 50%;
  margin: auto;
  z-index: -1;
  aspect-ratio: 16/9;
  transition: all 400ms;
  background-image: url("../img/stripped_bg_d.jpg");
  background-size: cover;
  transform: translateX(-50%) translateY(-50%);
}
header .stripped-link:hover {
  box-shadow: 0rem 2rem 5rem black;
  transform: translateX(-50%) translateY(-50%) scale(1.04);
}
@media (max-width: 36em) {
  header .stripped-link {
    background-image: url("../img/stripped_bg_m.jpg");
    max-width: 20rem;
    position: initial;
    margin: auto;
    aspect-ratio: 9/10;
    transform: initial;
    top: initial;
    left: initial;
  }
}

body {
  color: var(--main-color);
  margin: 0;
  letter-spacing: 0.5px;
  background-color: var(--bg-color);
}
body.open-modal::before {
  content: "";
  background-color: var(--bg-color-20);
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1;
  transition: all 200ms;
  opacity: 1;
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  background-image: url("../img/main_bg.webp");
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  box-shadow: 0 -9rem 11rem black inset;
  z-index: -1;
  opacity: 0.8;
}
@media (max-width: 62em) {
  body::after {
    background-position: bottom 0 left 20%;
  }
}
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,
body main .stripped {
  text-align: center;
  padding-top: 15rem;
}
@media (max-width: 48em) {
  body main .music,
body main .stripped {
    padding-top: 10rem;
  }
}
body main .music .album-list,
body main .stripped .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,
body main .stripped .album-list {
    flex-direction: column;
  }
}
body main .music .album-list .album,
body main .stripped .album-list .album {
  max-width: 33vw;
  text-align: center;
  margin: auto;
  margin-bottom: 3rem;
}
@media (max-width: 36em) {
  body main .music .album-list .album,
body main .stripped .album-list .album {
    max-width: 20.3rem;
    margin-bottom: 0;
  }
}
body main .music .album-list .album h3,
body main .stripped .album-list .album h3 {
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: white;
}
body main .music .album-list .album h3 span,
body main .stripped .album-list .album h3 span {
  font-size: 1.4rem;
}
body main .music .album-list .album a,
body main .stripped .album-list .album a {
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  margin: auto;
  margin-top: 1rem;
  border: 1px solid white;
  max-width: 20.9rem;
  padding: 1rem;
  letter-spacing: 3px;
  display: block;
}
body main .music .album-list .album a:hover,
body main .stripped .album-list .album a:hover {
  background-color: white;
  color: black;
}
body main .music a,
body main .stripped a {
  font-size: 1.4rem;
  color: var(--main-color);
  display: inline-block;
  font-family: "RequiemDisplay", serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 1px solid transparent;
}
body main .music a:hover,
body main .stripped a:hover {
  border-bottom: 1px solid white;
}
body main .music h2,
body main .stripped h2 {
  font-size: 6rem;
  text-transform: uppercase;
}
@media (max-width: 48em) {
  body main .music h2,
body main .stripped h2 {
    font-size: 3rem;
  }
}
@media (max-width: 36em) {
  body main .music h2,
body main .stripped h2 {
    margin-top: 0;
  }
}
body main .tour {
  padding-top: 15rem;
}
@media (max-width: 48em) {
  body main .tour {
    padding-top: 10rem;
  }
}
@media (max-width: 36em) {
  body main .tour {
    min-height: inherit;
  }
}
body main .tour h2 {
  font-size: 6rem;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 48em) {
  body main .tour h2 {
    font-size: 3rem;
  }
}
body main .videos {
  min-height: 75rem;
  position: relative;
  overflow: hidden;
  padding-top: 15rem;
}
@media (max-width: 48em) {
  body main .videos {
    padding-top: 10rem;
  }
}
@media (max-width: 36em) {
  body main .videos {
    min-height: inherit;
  }
}
body main .videos h2 {
  font-size: 6rem;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 48em) {
  body main .videos h2 {
    font-size: 3rem;
  }
}
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;
  margin-top: 0;
}
@media (max-width: 48em) {
  body main .bio h2 {
    font-size: 3rem;
  }
}
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: var(--grey-color);
}
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: var(--main-color);
  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: var(--main-color);
  color: var(--bg-color);
  transition: all 400ms ease-in-out;
}
body main .stripped .content-list {
  max-width: 90rem;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 26rem 1fr;
  gap: 4rem;
}
@media (max-width: 48em) {
  body main .stripped .content-list {
    grid-template-columns: 1fr;
  }
}
body main .stripped .content-list .album,
body main .stripped .content-list .video {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 48em) {
  body main .stripped .content-list .album,
body main .stripped .content-list .video {
    margin: auto;
    max-width: 60rem;
  }
}
@media (max-width: 36em) {
  body main .stripped .content-list .album,
body main .stripped .content-list .video {
    max-width: 90%;
  }
}
body main .stripped .content-list .album .video-thumbnail,
body main .stripped .content-list .video .video-thumbnail {
  max-height: 26rem;
  overflow: hidden;
  display: flex;
  align-content: center;
  flex-direction: column;
  justify-content: center;
  aspect-ratio: 16/9;
  width: 100%;
}
@media (max-width: 48em) {
  body main .stripped .content-list .album .video-thumbnail,
body main .stripped .content-list .video .video-thumbnail {
    max-height: initial;
  }
}
body main .stripped .content-list .album h3,
body main .stripped .content-list .video h3 {
  font-size: 1.7rem;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: white;
}
body main .stripped .content-list .album h3 span,
body main .stripped .content-list .video h3 span {
  font-size: 1.4rem;
}
body main .stripped .content-list .album a,
body main .stripped .content-list .video a {
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  margin: auto;
  margin-top: 1rem;
  border: 1px solid white;
  max-width: 20.9rem;
  padding: 1rem;
  letter-spacing: 3px;
  display: block;
}
body main .stripped .content-list .album a:hover,
body main .stripped .content-list .video a:hover {
  background-color: white;
  color: black;
}
body main .stripped .content-list .album {
  display: flex;
  flex-direction: column;
}
@media (max-width: 36em) {
  body main .stripped .content-list .album a {
    width: 100%;
  }
}
@media (max-width: 48em) {
  body main .stripped .content-list .album {
    margin: auto;
    max-width: 26rem;
  }
}
@media (max-width: 36em) {
  body main .stripped .content-list .album {
    max-width: 20rem;
  }
}
body main .stripped img.stripped-poster {
  max-width: 90rem;
  width: 100%;
  margin-bottom: 4rem;
}
@media (max-width: 36em) {
  body main .stripped img.stripped-poster {
    display: none;
    margin-bottom: 3rem;
  }
}
body main .stripped .stripped-disclaimer {
  max-width: 60rem;
  width: 100%;
}
@media (max-width: 36em) {
  body main .stripped .stripped-disclaimer {
    max-width: 90%;
  }
}
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(--main-color);
  transition: all 300ms;
}
body main .cta-container a:hover {
  filter: brightness(1.3);
}
body main .text-block {
  max-width: 73rem;
  margin: 10rem 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;
}
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(--main-color-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(--main-color);
}
@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(--main-color);
  background: white;
}
footer ::selection {
  color: var(--main-color);
  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%);
  }
}
.modal {
  box-shadow: 0rem 0rem 6rem var(--bg-color);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1000;
  background-color: black;
  color: var(--bg-color);
  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: "RequiemDisplay", serif;
  letter-spacing: 1px;
}
.modal .btn-close a {
  color: var(--main-color);
}
.modal h2 {
  font-family: "RequiemDisplay", serif;
  letter-spacing: 1px;
  color: var(--main-color);
  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(--main-color);
}
@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("../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(--main-color);
  color: var(--bg-color);
  text-transform: uppercase;
  font-size: 2rem;
  cursor: pointer;
  padding: 2rem;
}
.stripped-modal .modal-cta a:hover {
  color: var(--main-color);
  background-color: var(--bg-color);
}

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

.slick-next,
.slick-prev {
  width: 58px;
  height: 21px;
  top: 50%;
}
@media (max-width: 36em) {
  .slick-next,
.slick-prev {
    width: 30px;
  }
}

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

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

.slick-prev {
  left: -60px;
}
@media (max-width: 36em) {
  .slick-prev {
    left: -35px;
  }
}

.slick-next {
  right: -60px;
}
@media (max-width: 36em) {
  .slick-next {
    right: -35px;
  }
}
.slick-next::before {
  transform: rotate(180deg);
}
.slick-next:hover::before {
  transform: rotate(180deg) scale(1.1);
}

.slick-slide img {
  border: none;
  margin: auto;
}

.slick-dots {
  bottom: -5.5rem;
}
.slick-dots li button {
  color: initial;
}
.slick-dots li button::before {
  color: var(--main-color);
  font-size: 3.5rem;
}
.slick-dots li.slick-active button::before {
  color: var(--main-color);
  opacity: 1;
}

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

.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;
  align-items: center;
}
@media (max-width: 48em) {
  #dates .event {
    flex-direction: column;
    margin: auto;
    gap: 1rem;
  }
}
#dates .event .bit-details {
  display: grid;
  gap: 7rem;
  grid-template-columns: 9rem 1fr;
}
@media (max-width: 48em) {
  #dates .event .bit-details {
    grid-template-columns: 1fr;
    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;
}
#dates .event .bit-details .location p {
  margin: 0;
}
@media (max-width: 48em) {
  #dates .event .bit-details .location {
    text-align: center;
  }
}
#dates .event .bit-details .date {
  text-align: left;
  text-transform: uppercase;
  font-size: 2rem;
}
@media (max-width: 48em) {
  #dates .event .bit-details .date {
    text-align: center;
    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: var(--main-color);
  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 */
