header {
  transform: translateY(-101%);
  animation: slideDown 1.5s 3s forwards;
}

@keyframes slideDown {
  0% {
    transform: translateY(-101%);
  }
  100% {
    transform: translateY(0%);
  }
}
#hero {
  width: 100%;
  height: 100vh;
}
#hero #sigil {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 400px;
  height: auto;
  max-height: 80%;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  animation: fadeIn 3s 1s forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#hero .bg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
#hero .bg#mobile {
  display: none;
}
@media (max-width: 768px) {
  #hero .bg#mobile {
    display: block;
  }
  #hero .bg#desktop {
    display: none;
  }
}

#promo {
  width: 100%;
  height: auto;
  padding: var(--m) var(--l);
  background-color: var(--beige);
}
@media (max-width: 768px) {
  #promo {
    padding: var(--m) var(--xs);
  }
}
#promo .image-container {
  position: relative;
  display: block;
  width: 90%;
  height: auto;
  margin: 0px auto;
}
#promo .image-container .background-images {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  --px: 0px;
}
#promo .image-container .background-images img {
  position: relative;
  z-index: 1;
  width: 50%;
  height: auto;
  object-fit: cover;
  object-position: center;
  transform: translateY(var(--px));
}
@media (max-width: 768px) {
  #promo .image-container .background-images {
    flex-direction: column;
  }
  #promo .image-container .background-images::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 30%;
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  }
  #promo .image-container .background-images img {
    width: 100%;
  }
}
#promo .image-container .title {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 700px;
  height: auto;
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0.8));
}
#promo .image-container .cta-container {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: calc(var(--m) * 1.5);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--s);
  width: 60%;
  max-width: 400px;
  height: auto;
}
#promo .image-container .cta-container .release {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  #promo .image-container .cta-container .release {
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.75));
  }
}
#promo .image-container .cta-container .image-button {
  width: 40%;
  max-width: 200px;
}

#videos #video-carousel {
  --carousel-width: 100%;
  --slide-container-width: 100%;
  --slide-width: 100%;
  --slide-height: auto;
  --slide-gap: 0px;
  --button-size: var(--xs);
  --button-gap: var(--s);
}
#videos #video-carousel .carousel-container {
  z-index: 1;
}
#videos #video-carousel .carousel-container .slide {
  max-height: 100vh;
}
#videos #video-carousel .carousel-container .slide .video-title {
  right: 10%;
}
@media (max-width: 768px) {
  #videos #video-carousel .carousel-container .slide .video-title {
    right: 8%;
  }
}
#videos #video-carousel .carousel-controls {
  width: calc((100% - var(--l) * 2) * 0.9);
  left: 50%;
  transform: translateX(-50%);
  padding: var(--s) 0px;
}
@media (max-width: 768px) {
  #videos #video-carousel .carousel-controls {
    width: calc((100% - var(--xs) * 2) * 0.9);
  }
}
#videos #video-carousel .carousel-controls .button-labels .label {
  color: var(--secondary);
}
@media (max-width: 768px) {
  #videos #video-carousel .carousel-controls .button-labels .label {
    font-size: 10px;
  }
}

#tour-dates {
  padding: var(--m) var(--l);
}
@media (max-width: 768px) {
  #tour-dates {
    padding: var(--m) var(--xs);
  }
}
#tour-dates .background-image {
  width: 90% !important;
  margin: 0px auto var(--l);
}/*# sourceMappingURL=home.css.map */