/*
xs:     0 - 576px
sm:     576 - 768px
md:     768 - 992px
lg:     992 - 1200px
xl:     1200 - 1400px
xxl:    1400+
xxxl:   1600+
*/
@keyframes pulsing {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 5px 0px rgba(243, 234, 216, 0.7);
  }
  50% {
    box-shadow: 0 0 20px 10px rgba(243, 234, 216, 0.5);
  }
  100% {
    box-shadow: 0 0 5px 0px rgba(243, 234, 216, 0.7);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    top: -5rem;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes fadeInGrow {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes fadeInTop20 {
  0% {
    opacity: 0;
    top: -2rem;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    bottom: -5rem;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes grow {
  0% {
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes reveal {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes keyhole {
  0% {
    opacity: 0;
    mask-size: 200%;
  }
  2% {
    opacity: 1;
    mask-size: 400%;
  }
  100% {
    opacity: 1;
    mask-size: 12000%;
  }
}
@keyframes homeBgZoomIn {
  0% {
    background-size: 60%;
  }
  40% {
    background-size: 100%;
  }
  100% {
    background-size: 130%;
    @media (max-width: 36em) {
      background-size: 350%;
    }
  }
}
@keyframes asReveal {
  0% {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 0;
  }
  100% {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(1.2);
    opacity: 1;
  }
}
@keyframes asMoveUp {
  0% {
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(1.2);
    opacity: 1;
  }
  100% {
    top: 7%;
    left: 50%;
    transform: translateY(0) translateX(-50%) scale(1.2);
    opacity: 1;
  }
}
@keyframes asFadeOut {
  0% {
    top: 7%;
    left: 50%;
    transform: translateY(0) translateX(-50%) scale(1.2);
    opacity: 1;
  }
  100% {
    top: 7%;
    left: 50%;
    transform: translateY(0) translateX(-50%) scale(1.2);
    opacity: 0;
  }
}
@keyframes logoFadeInTop {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: all 300ms;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "CheltenhamStdBook", serif;
  overflow-x: hidden;
}

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

.clear:after {
  clear: both;
}

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

a {
  color: #582c09;
  text-decoration: none;
  transition: all 400ms;
  font-size: 1.6rem;
  font-family: "CheltenhamStdBook", serif;
}

a:focus {
  outline: 0;
}

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

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

button {
  transition: all 400ms;
  font-family: "CheltenhamStdBook", serif;
}

p, strong {
  font-size: 1.6rem;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: #fbf2e9;
  color: #582c09;
  text-shadow: none;
}

::-webkit-selection {
  background: #fbf2e9;
  color: #582c09;
  text-shadow: none;
}

::-moz-selection {
  background: #fbf2e9;
  color: #582c09;
  text-shadow: none;
}

::placeholder {
  color: #582c09;
}

::-moz-placeholder {
  color: #582c09;
}

::-webkit-input-placeholder {
  color: #582c09;
}

/*------------------------------------*\
    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: "HelveticaNeue55Roman";
  src: url("../assets/fonts/HelveticaNeue55Roman/roman.otf") format("opentype");
}
@font-face {
  font-family: "CheltenhamStdBook";
  src: url("../assets/fonts/Cheltenham/CheltenhamStdBook.otf") format("opentype");
}
@font-face {
  font-family: "CheltenhamStdBookCond";
  src: url("../assets/fonts/Cheltenham/CheltenhamStdBookCond.otf") format("opentype");
}
@font-face {
  font-family: "CheltenhamStdBookCondIt";
  src: url("../assets/fonts/Cheltenham/CheltenhamStdBookCondIt.otf") format("opentype");
}
@font-face {
  font-family: "CheltenhamStdBookIt";
  src: url("../assets/fonts/Cheltenham/CheltenhamStdBookIt.otf") format("opentype");
}
.is-uppercase {
  text-transform: uppercase;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Paddings */
.p-0 {
  padding: 0;
}

.py-1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-2 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.pt-11 {
  padding-top: 11rem;
}

.pt-12 {
  padding-top: 12rem;
}

.pt-8 {
  padding-top: 8rem;
}

@media (max-width: 48em) {
  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 1rem !important;
  }

  .pt-sm-2 {
    padding-top: 2rem !important;
  }

  .pt-sm-3 {
    padding-top: 3rem !important;
  }

  .pt-sm-4 {
    padding-top: 4rem !important;
  }

  .pt-sm-5 {
    padding-top: 5rem !important;
  }

  .pt-sm-6 {
    padding-top: 6rem;
  }
}
.pl-0 {
  padding-left: 0;
}

.pl-4 {
  padding-left: 4rem;
}

.pl-5 {
  padding-left: 5rem;
}

.pl-6 {
  padding-left: 6rem;
}

.pl-7 {
  padding-left: 7rem;
}

.pl-8 {
  padding-left: 8rem;
}

@media (max-width: 48em) {
  .pl-sm-0 {
    padding-left: 0;
  }

  .pl-sm-1 {
    padding-left: 1rem;
  }

  .pl-sm-2 {
    padding-left: 2rem;
  }

  .pl-sm-3 {
    padding-left: 3rem;
  }

  .pl-sm-4 {
    padding-left: 4rem;
  }

  .pl-sm-5 {
    padding-left: 5rem;
  }

  .pl-sm-6 {
    padding-left: 6rem;
  }
}
.pr-0 {
  padding-right: 0;
}

.pr-4 {
  padding-right: 4rem;
}

.pr-5 {
  padding-right: 5rem;
}

.pr-6 {
  padding-right: 6rem;
}

.pr-7 {
  padding-right: 7rem;
}

.pr-8 {
  padding-right: 8rem;
}

@media (max-width: 48em) {
  .pr-sm-0 {
    padding-right: 0;
  }

  .pr-sm-1 {
    padding-right: 1rem;
  }

  .pr-sm-2 {
    padding-right: 2rem;
  }

  .pr-sm-3 {
    padding-right: 3rem;
  }

  .pr-sm-4 {
    padding-right: 4rem;
  }
}
.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.pb-7 {
  padding-bottom: 7rem;
}

.pb-8 {
  padding-bottom: 8rem;
}

.pb-11 {
  padding-bottom: 11rem;
}

.pb-12 {
  padding-bottom: 12rem;
}

@media (max-width: 48em) {
  .pb-sm-0 {
    padding-bottom: 0;
  }

  .pb-sm-1 {
    padding-bottom: 1rem;
  }

  .pb-sm-2 {
    padding-bottom: 2rem;
  }

  .pb-sm-3 {
    padding-bottom: 3rem;
  }

  .pb-sm-4 {
    padding-bottom: 4rem;
  }

  .pb-sm-5 {
    padding-bottom: 5rem;
  }

  .pb-sm-6 {
    padding-bottom: 6rem;
  }
}
/* Margins */
.m-auto {
  margin: auto !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-10 {
  margin-top: 10rem;
}

@media (max-width: 36em) {
  .mt-xs-0 {
    margin-top: 0;
  }

  .mt-xs-1 {
    margin-top: 1rem;
  }

  .mt-xs-2 {
    margin-top: 2rem;
  }

  .mt-xs-3 {
    margin-top: 3rem;
  }

  .mt-xs-4 {
    margin-top: 4rem;
  }
}
.mr-0 {
  margin-right: 0 !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

@media (max-width: 36em) {
  .mb-xs-0 {
    margin-bottom: 0;
  }

  .mb-xs-1 {
    margin-bottom: 1rem;
  }

  .mb-xs-2 {
    margin-bottom: 2rem;
  }
}
.ml-0 {
  margin-left: 0 !important;
}

.ml-1 {
  margin-left: 1 !important;
}

.ml-2 {
  margin-left: 2 !important;
}

.ml-3 {
  margin-left: 3 !important;
}

body {
  color: #582c09;
  margin: 0;
  position: relative;
  font-family: "CheltenhamStdBook", serif;
  background-color: #fbf2e9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  min-height: 100svh;
  height: 100%;
  position: relative;
  cursor: url("../assets/img/key.png"), auto;
}
body .mask {
  -webkit-mask-image: url("../assets/img/keyhole-canvas.svg");
  mask-image: url("../assets/img/keyhole-canvas.svg");
  mask-repeat: no-repeat;
  mask-size: 18%;
  mask-position: 50% 50%;
  transition: all 2000ms;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 100%;
  height: 100vh;
  opacity: 0;
  animation: keyhole 8s linear forwards;
  pointer-events: none;
}
body .mask::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../assets/img/bg-lilypad.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  background-size: 30rem;
  background-position: top 50% center;
}
@media (min-width: 90em) {
  body .mask::after {
    background-size: 37rem;
  }
}
@media (max-width: 36em) {
  body .mask::after {
    background-size: 66%;
    background-position: top 25% center;
  }
}
body .as {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translatY(-50%) translateX(-50%);
  width: 10.1rem;
  opacity: 0;
  scale: 1;
  filter: drop-shadow(0px 0px 0.2rem #fbf2e9) drop-shadow(0px 0px 7px #fbf2e9);
  animation: asReveal 2000ms ease-in-out 200ms forwards, asMoveUp 3000ms ease-in-out 2200ms forwards, asFadeOut 2000ms ease-out 5000ms forwards;
}
@media (max-width: 75em) {
  body .as {
    display: none;
  }
}
body.open-modal::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1;
  transition: all 200ms;
  opacity: 1;
  background-color: rgba(88, 44, 9, 0.3);
}
body main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  z-index: 0;
}
body::before {
  transition: all 200ms;
}
body .d-only {
  display: flex !important;
  opacity: 1;
}
@media (max-width: 75em) {
  body .d-only {
    display: none !important;
    opacity: 0;
  }
}
body .m-only {
  display: none !important;
  opacity: 0;
}
@media (max-width: 75em) {
  body .m-only {
    display: flex !important;
    opacity: 1;
  }
}
@media (max-width: 75em) {
  body#home {
    overflow: initial;
  }
}
body#home main {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 6rem;
}
@media (max-width: 62em) {
  body#home main {
    flex-direction: column-reverse;
    gap: 0;
  }
}
body#home main .top-container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 120rem;
  padding: 0 4rem;
}
@media (max-width: 62em) {
  body#home main .top-container {
    flex-direction: column;
    gap: 5rem;
    align-items: center;
    padding: 0 2rem 5rem 2rem;
  }
}
@media (max-width: 36em) {
  body#home main .top-container {
    gap: 4rem;
    padding: 0 2rem 4rem 2rem;
  }
}
body#home main .left-container, body#home main .right-container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (min-width: 90em) {
  body#home main .left-container, body#home main .right-container {
    gap: 10rem;
  }
}
body#home main .right-container {
  justify-content: center;
}
body#home main .bottom-container {
  display: flex;
  flex-direction: column;
}
@media (max-width: 62em) {
  body#home main .bottom-container {
    flex-direction: column;
    gap: 9rem;
    align-items: center;
    padding: 50% 2rem 9rem 2rem;
  }
}
@media (max-width: 36em) {
  body#home main .bottom-container {
    padding: 85% 2rem 4rem 2rem;
  }
}
body#home main .unforgivable-container,
body#home main .mothership-container {
  max-width: 40.5rem;
  width: 100%;
  top: -5rem;
  flex-direction: column;
  align-items: center;
  display: flex;
  opacity: 0;
  animation: fadeInTop 1800ms ease-in-out 5500ms forwards;
  z-index: 0;
}
@media (max-width: 75em) {
  body#home main .unforgivable-container,
body#home main .mothership-container {
    animation: fadeInTop 1800ms ease-in-out 5500ms forwards;
  }
}
body#home main .unforgivable-container img.album-logo,
body#home main .mothership-container img.album-logo {
  width: 100%;
  max-width: 31rem;
}
body#home main .unforgivable-container h2,
body#home main .mothership-container h2 {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
body#home main .unforgivable-container p,
body#home main .mothership-container p {
  margin: 0 auto;
  font-size: 1.3rem;
}
body#home main .unforgivable-container .separator,
body#home main .mothership-container .separator {
  width: 22.5rem;
  height: 0.7rem;
  background-image: url("../assets/img/border-brown.png");
  background-repeat: repeat-x;
  margin: 0.6rem auto 1.5rem auto;
}
body#home main .unforgivable-container .cta-container,
body#home main .mothership-container .cta-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media (max-width: 48em) {
  body#home main .unforgivable-container .cta-container,
body#home main .mothership-container .cta-container {
    flex-direction: column;
    align-items: center;
  }
}
body#home main .unforgivable-container .cta-container .btn,
body#home main .mothership-container .cta-container .btn {
  max-width: fit-content;
}
@media (max-width: 36em) {
  body#home main .unforgivable-container .cta-container .btn,
body#home main .mothership-container .cta-container .btn {
    min-width: 22rem;
  }
}
body#home main .unforgivable-container img.album-logo {
  width: 100%;
  max-width: 24rem;
}
body#home main .signup-container {
  position: relative;
  max-width: 33rem;
  width: 100%;
  top: -5rem;
  opacity: 0;
  animation: fadeInTop 1800ms ease-in-out 5500ms forwards;
}
@media (max-width: 75em) {
  body#home main .signup-container {
    animation: fadeInTop 1800ms ease-in-out 5500ms forwards;
  }
}
body#home main .pre-save-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 42rem;
  opacity: 0;
  bottom: -5rem;
  animation: fadeInBottom 1800ms ease-in-out 6000ms forwards;
  gap: 0.6rem;
}
@media (max-width: 75em) {
  body#home main .pre-save-container {
    animation: fadeInBottom 1800ms ease-in-out 6000ms forwards;
  }
}
@media (max-width: 36em) {
  body#home main .pre-save-container {
    max-width: 33rem;
  }
}
body#home main .pre-save-container h2 {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
body#home main .pre-save-container p {
  margin: 0 auto;
  font-size: 1.3rem;
}
body#home main .pre-save-container img.album-cover {
  animation: pulseGlow 5s infinite;
  max-width: 17rem;
  margin-bottom: 1rem;
}
body#home main .pre-save-container .separator {
  width: 22.5rem;
  height: 0.7rem;
  background-image: url("../assets/img/border-brown.png");
  background-repeat: repeat-x;
  margin: 0.5rem auto 0.9rem auto;
}
body#home main .pre-save-container .cta-container {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
@media (max-width: 62em) {
  body#home main .pre-save-container .cta-container {
    flex-direction: column;
  }
}
@media (max-width: 36em) {
  body#home main .pre-save-container .cta-container .btn {
    min-width: 22rem;
  }
}
body#home main .pre-save-container .cta-disclaimer p {
  font-size: 0.9rem;
  text-align: center;
  font-style: italic;
}
body#home main h1 {
  font-size: 18vw;
  font-family: "CheltenhamStdBook", serif;
  color: #fbf2e9;
  text-transform: uppercase;
  font-weight: 500;
  mix-blend-mode: screen;
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInGrow 1s ease forwards;
  margin: 0 auto;
  mix-blend-mode: color-dodge;
  position: absolute;
  color: #a3a3a3;
}
@media (max-width: 36em) {
  body#home main h1 {
    font-size: 32vw;
    text-align: center;
    line-height: 30vw;
  }
}
body#home main h1 span {
  position: absolute;
  font-size: 18vw;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: color;
  color: #fbf2e9;
}
@media (max-width: 36em) {
  body#home main h1 span {
    font-size: 32vw;
    text-align: center;
    line-height: 30vw;
  }
}
body#home main h1,
body#home main span.h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  font-size: 18vw;
  font-family: "CheltenhamStdBook", serif;
  color: #fbf2e9;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0;
  text-align: center;
  animation: fadeInGrow 1s ease forwards;
  -moz-animation: fadeInGrow 1s ease forwards;
  -webkit-animation: fadeInGrow 1s ease forwards;
  animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  margin: 0 auto;
}
@media (max-width: 36em) {
  body#home main h1,
body#home main span.h1 {
    font-size: 32vw;
    text-align: center;
    line-height: 30vw;
  }
}
body#home main h1 {
  color: #a3a3a3;
  mix-blend-mode: color-dodge;
}
body#home main span.h1 {
  color: #fbf2e9;
  mix-blend-mode: color;
}
body#tour .tour-alex {
  position: relative;
  top: -5rem;
  opacity: 0;
  animation: fadeInTop 1000ms ease 500ms forwards;
}
@media (max-width: 75em) {
  body#tour .tour-alex {
    max-width: 90%;
  }
}
body#tour .tour-container {
  padding-top: 5rem;
  max-width: 80rem;
  width: 100%;
}
body#merch .merch-container .merch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: url("../assets/img/key.png"), auto;
}
body#merch .merch-container .merch-item .merch-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  letter-spacing: 2px;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 1.3rem;
}
body#merch .merch-container .merch-item span.btn {
  transition: all 200ms;
  font-family: "CheltenhamStdBook", serif;
  font-size: 1.4rem;
  text-align: center;
  text-transform: uppercase;
  color: #582c09;
  background-color: #fbf2e9;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  padding: 0.8rem 2rem 0.3rem 2rem;
  height: 3rem;
  border: 1.5px solid #582c09;
  width: initial;
}
body#merch .merch-container .merch-item:hover span.btn {
  background-color: #582c09;
  color: #fbf2e9;
}
body#merch .merch-container .merch-item .thumbnail-container {
  max-width: 40rem;
  width: 100%;
  min-height: 40rem;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
}
@media (max-width: 36em) {
  body#merch .merch-container .merch-item .thumbnail-container {
    min-height: 30rem;
  }
}
body#merch .merch-container .merch-item .thumbnail-container img {
  width: 100%;
  height: 100%;
  position: absolute;
  transition: opacity 0.3s ease-in-out;
}
body#merch .merch-container .merch-item .back-image {
  opacity: 0;
}
body#merch .merch-container .merch-item .thumbnail-container:hover .back-image {
  opacity: 1;
}
body#merch .merch-container .merch-item .thumbnail-container:hover .front-image {
  opacity: 0;
}
body#music main {
  width: 100%;
  padding-top: 10rem;
  gap: 7rem;
}
body#music .music-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 128rem;
  width: 100%;
  gap: 9.8rem;
  overflow: hidden;
  padding: 1rem 0 0 0;
}
@media (max-width: 90em) {
  body#music .music-container {
    max-width: 90%;
  }
}
body#music .music-container .album-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  top: -5rem;
  opacity: 0;
  animation: fadeInTop 500ms ease-in-out 500ms forwards;
}
body#music .music-container .album-container .artwork img {
  max-height: 44rem;
  box-shadow: 0px 0px 14px #6e3c0238;
}
body#music .music-container .album-container .title {
  font-size: 1.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
body#music .music-container .album-container .title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.7rem;
  background-image: url("../assets/img/border-brown.png");
  background-repeat: repeat-x;
  margin: 2rem auto;
  left: -100%;
}
@media (max-width: 48em) {
  body#music .music-container .album-container .title::before {
    display: none;
  }
}
body#music .music-container .album-container .title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.7rem;
  background-image: url("../assets/img/border-brown.png");
  background-repeat: repeat-x;
  margin: 2rem auto;
  right: -100%;
}
@media (max-width: 48em) {
  body#music .music-container .album-container .title::after {
    display: none;
  }
}
body#music .music-container .video-container {
  display: flex;
  width: 100%;
  top: -5rem;
  opacity: 0;
  animation: fadeInTop 500ms ease-in-out 900ms forwards;
}
body#music .music-container .video-container iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
body#rules h1 {
  font-size: 2.7rem;
}
body#rules h2 {
  font-size: 2.2rem;
}
body#rules h3 {
  font-size: 1.7rem;
}
body#rules p {
  line-height: 2.6cap;
}
body.internal::after {
  background-position: top center;
}
@media (max-width: 75em) {
  body.internal main {
    flex-direction: column;
    height: calc(100vh - 24rem);
    height: calc(100svh - 24rem);
  }
}
body.internal main h1 {
  font-size: 13rem;
  top: -8rem;
  color: #fbf2e9;
  mix-blend-mode: initial;
  opacity: 1;
  animation: none;
}
@media (min-width: 100em) {
  body.internal main h1 {
    font-size: 15rem;
  }
}
@media (max-width: 75em) {
  body.internal main h1 {
    top: 1rem;
    font-size: 12rem;
  }
}
@media (max-width: 62em) {
  body.internal main h1 {
    position: relative;
  }
}
@media (max-width: 36em) {
  body.internal main h1 {
    line-height: 11rem;
  }
}
body.internal main h2 {
  font-size: 9rem;
  font-family: "CheltenhamStdBook", serif;
  color: #fbf2e9;
  text-transform: uppercase;
  font-weight: 500;
  mix-blend-mode: screen;
  margin: 0 auto;
  mix-blend-mode: color-dodge;
  color: #a3a3a3;
}
@media (max-width: 36em) {
  body.internal main h2 {
    font-size: 6rem;
  }
}
body.internal#music main .music-slider-container {
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 2000ms;
  max-height: 32rem;
  display: flex;
  align-items: center;
}
body.internal#video main .video-slider-container {
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 2000ms;
  max-height: 42rem;
  display: flex;
  align-items: center;
}
body.internal#video main .video-slider-container .splide__list li {
  display: flex;
  justify-content: center;
}
body.internal#video main .video-slider-container .splide__list li a {
  display: flex;
  align-items: center;
  aspect-ratio: 16/9;
  overflow: hidden;
}
body.internal#video main .video-slider-container .splide__list li a:hover {
  filter: brightness(1.3) contrast(1.1);
}
body.internal#tour main section.tour-container {
  display: flex;
  align-items: flex-start;
  max-height: 40rem;
  overflow-x: scroll;
  max-width: 80rem;
  width: 100%;
}
body .ae-modal-overlay-closed,
body .ae-modal-closed {
  display: none;
}

body > header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 5rem 0 5rem;
  position: relative;
  opacity: 0;
  top: -5rem;
  animation: fadeInTop 1000ms ease forwards;
  height: 21rem;
  z-index: 1;
}
@media (max-width: 75em) {
  body > header {
    height: 20rem;
    padding: 0 2rem 0 2rem;
  }
}
@media (max-width: 62em) {
  body > header {
    height: 14rem;
    padding: 0 2rem 0 2rem;
  }
}
body > header .logo {
  display: flex;
  position: absolute;
  max-width: 44rem;
  width: 100%;
  opacity: 0;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: logoFadeInTop 1800ms ease-in-out forwards;
  cursor: url("../assets/img/key.png"), auto;
}
@media (max-width: 75em) {
  body > header .logo {
    display: none;
  }
}
body > header .logo:hover {
  filter: brightness(1.2);
}
body > header .logo-m {
  display: none;
}
@media (max-width: 75em) {
  body > header .logo-m {
    display: flex;
    max-width: 8rem;
    width: 100%;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
body > header nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 75em) {
  body > header nav {
    position: fixed;
    opacity: 0;
    right: 0;
    min-height: 100vh;
    min-height: 100svh;
    top: 0;
    width: 100%;
    padding: 9rem 5rem 0 5rem;
    background-color: #fbf2e9;
    z-index: 10;
    gap: 6rem;
    pointer-events: none;
    z-index: 100;
  }
  body > header nav.open {
    right: 0;
    opacity: 1;
    pointer-events: initial;
    z-index: 100;
  }
}
body > header nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 6rem;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (max-width: 75em) {
  body > header nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
body > header nav ul li {
  display: flex;
  width: 5rem;
}
body > header nav ul li:first-of-type {
  display: none;
}
@media (max-width: 75em) {
  body > header nav ul li {
    text-align: center;
    justify-content: center;
  }
  body > header nav ul li:first-of-type {
    display: flex;
  }
}
body > header nav ul li a, body > header nav ul li button {
  font-family: "CheltenhamStdBook", serif;
  font-weight: 400;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #582c09;
  background-color: transparent;
  cursor: url("../assets/img/key.png"), auto;
}
@media (max-width: 75em) {
  body > header nav ul li a, body > header nav ul li button {
    font-size: 2rem;
    letter-spacing: 3px;
  }
}
body > header nav ul li a:hover, body > header nav ul li button:hover {
  color: #C0544E;
}
body > header nav ul li.active a {
  border-bottom: 1px solid #582c09;
}
@media (max-width: 75em) {
  body > header nav ul li {
    opacity: 0;
  }
  body > header nav.open ul li {
    transform: translateX(20px);
    animation: reveal 0.4s forwards;
    animation-delay: calc(var(--index) * 0.1s);
    counter-increment: menu-items;
  }
  body > header nav.open ul li:nth-child(n) {
    --index: calc(counter(menu-items) - 1);
  }
}
body > header .menu-toggle {
  position: absolute;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
@media (max-width: 75em) {
  body > header .menu-toggle {
    display: flex;
  }
}
body > header .menu-line {
  position: absolute;
  width: 40px;
  height: 4px;
  background: transparent;
  background-image: url("../assets/img/border-brown.png");
  background-position: center;
  transition: all 0.3s ease-in-out;
}
body > header .line1 {
  top: 7px;
}
body > header .line2 {
  top: 18px;
}
body > header .line3 {
  top: 29px;
}
body > header .menu-toggle.open .line1 {
  transform: rotate(45deg) translate(11px, 5px);
}
body > header .menu-toggle.open .line2 {
  opacity: 0;
}
body > header .menu-toggle.open .line3 {
  transform: rotate(-45deg) translate(11px, -5px);
}
@media (max-width: 75em) {
  body > header > .social {
    display: none;
  }
}
body#home > header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  opacity: 0;
  top: -5rem;
  animation: fadeInTop 1000ms ease 5000ms forwards;
}
@media (max-width: 75em) {
  body#home > header {
    animation: fadeInTop 1000ms ease 5000ms forwards;
  }
}
body#home > header .logo {
  position: absolute;
  max-width: 44rem;
  width: 100%;
  opacity: 0;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: logoFadeInTop 1800ms ease-in-out 5000ms forwards;
}

.btn {
  transition: all 200ms;
  font-family: "CheltenhamStdBook", serif;
  font-size: 1.4rem;
  text-align: center;
  text-transform: uppercase;
  color: #582c09;
  background-color: #fbf2e9;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  cursor: url("../assets/img/key.png"), auto;
  padding: 0.8rem 2rem 0.3rem 2rem;
  height: 3rem;
  width: 100%;
  min-width: fit-content;
  border: 1.5px solid #582c09;
}
.btn:hover {
  background-color: #582c09;
  color: #fbf2e9;
}
.btn svg path {
  transition: all 200ms;
}
.btn i {
  font-size: 2.4rem;
}

.social {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 1.6rem;
}
.social a {
  margin: 0 0 0 0.7rem;
  color: var(--clr-light);
  cursor: url("../assets/img/key.png"), auto;
}
.social a:hover {
  opacity: 0.8;
}
.social a.rca-icon img {
  fill: #582c09;
  width: 14px;
}
.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;
  }
}

.modal {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  min-height: 15rem;
  max-width: 32rem;
  width: 100%;
  z-index: 10;
  background-color: #fbf2e9;
  transition: all 300ms;
  gap: 1rem;
  padding: 2rem;
}
@media (max-width: 36em) {
  .modal {
    max-width: 90%;
  }
}
.modal p {
  font-size: 0.8rem;
  font-family: "HelveticaNeue55Roman", sans-serif;
  text-align: center;
}
.modal h2 {
  text-align: center;
  font-size: 2rem;
  line-height: 1.4cap;
  font-family: "CheltenhamStdBook", serif;
  color: #582c09;
  margin: 0;
  font-weight: 300;
}
.modal h3 {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4cap;
  font-family: "CheltenhamStdBook", serif;
  color: #582c09;
  margin: 0;
  font-weight: 300;
}
.modal.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-30%) translateX(-50%);
}
.modal .btn-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  letter-spacing: 0;
  max-width: 2rem;
  text-transform: uppercase;
  color: #582c09;
}
.modal .btn-close svg {
  width: 100%;
}
.modal form {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.modal form label {
  display: none;
}
.modal form .form-group {
  position: relative;
}
.modal form .form-group select {
  max-width: 100%;
  width: 100%;
  border: 1px solid #582c09;
  border-radius: 99px;
  padding: 0.5rem 1rem;
}
.modal form .form-group select#field_state {
  display: none;
}
.modal form .form-group::after {
  content: "";
  width: calc(100% - 8rem);
  height: 7px;
  background-image: url("../assets/img/border-brown.png");
  background-size: inherit;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.modal form .form-group.select-form-group label {
  display: block;
  font-size: 1.3rem;
}
.modal form .form-group.select-form-group::after {
  display: none;
}
.modal form .form-group.confirm-age label {
  display: flex;
  font-size: 1.4rem;
  align-items: center;
  gap: 1rem;
}
.modal form .form-group.confirm-age input {
  height: 2rem;
  width: 2rem;
  margin: 0;
}
.modal form .form-group.confirm-age .checkbox-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}
.modal form .form-group.confirm-age::after {
  display: none;
}
.modal form input {
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: #582c09;
  padding: 0.6rem 0;
  height: 3.3rem;
  font-family: "CheltenhamStdBook", serif;
  font-size: 1.3rem;
  width: 100%;
}
@media (max-width: 36em) {
  .modal form input {
    width: 100%;
  }
}
.modal form ::placeholder {
  color: #582c09;
  font-family: "CheltenhamStdBook", serif;
}
.modal form .sm-link {
  display: flex;
  font-size: 1.3rem;
  text-transform: capitalize;
  justify-content: center;
}
.modal#tour-modal {
  max-width: 70rem;
}
@media (max-width: 36em) {
  .modal#tour-modal {
    max-width: 90%;
  }
}
.modal#tour-modal p {
  font-size: 1.8rem;
  font-family: "CheltenhamStdBook", serif;
}
.modal#tour-modal .modal-content {
  max-height: 45rem;
  overflow-x: scroll;
}
@media (max-width: 36em) {
  .modal#tour-modal .modal-content {
    width: 100%;
  }
}

body footer {
  border-top: 0;
  color: #582c09;
  width: 100%;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  opacity: 0;
  position: relative;
  bottom: -5rem;
  animation: fadeInBottom 1s ease forwards;
  padding: 0.5rem 4rem 2rem 4rem;
}
@media (max-width: 36em) {
  body footer {
    padding: 0.5rem 2rem 2rem 2rem;
  }
}
body footer .legal {
  display: flex;
  gap: 1rem;
  justify-items: center;
  align-items: center;
  justify-content: center;
  align-content: center;
}
body footer .legal .logos {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
body footer .legal .disclaimer {
  text-align: center;
  font-family: "CheltenhamStdBook", serif;
  font-size: 0.9rem;
  color: #582c09;
  width: 100%;
  padding: 0.7rem;
}
@media (max-width: 62em) {
  body footer .legal .disclaimer {
    text-align: center;
    padding: 0rem;
  }
}
body footer .legal .disclaimer p, body footer .legal .disclaimer a {
  font-size: 0.9rem;
  font-family: "CheltenhamStdBook", serif;
  color: #582c09;
  margin-bottom: 0;
}
body footer .legal .rca {
  display: flex;
  max-width: 7rem;
  width: 100%;
}
body footer .legal .rca img {
  width: 100%;
}
@media (max-width: 62em) {
  body footer .social {
    justify-content: center;
  }
}
body#home footer {
  animation: fadeInBottom 1s ease 5000ms forwards;
}
@media (max-width: 62em) {
  body#home footer {
    animation: fadeInBottom 1s ease 5000ms forwards;
  }
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.form-container form {
  display: flex;
  flex-direction: row;
  gap: 0.3rem;
  width: 100%;
}
.form-container form label {
  display: none;
}
.form-container form button {
  max-width: fit-content;
}
.form-container form .form-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  position: relative;
}
.form-container form .form-group::after {
  content: "";
  width: 100%;
  height: 7px;
  background-image: url("../assets/img/border-brown.png");
  background-size: contain;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
}
.form-container form .form-group input[type=email] {
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: #582c09;
  padding: 0.6rem 0;
  height: 3.3rem;
  font-family: "CheltenhamStdBook", serif;
  font-size: 1.3rem;
  width: 23.6rem;
}
@media (max-width: 36em) {
  .form-container form .form-group input[type=email] {
    width: 100%;
  }
}
.form-container form#apple_music_form .input-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  position: relative;
}
.form-container form#apple_music_form .input-group::after {
  content: "";
  width: calc(100% - 8rem);
  height: 7px;
  background-image: url("../assets/img/border-brown.png");
  background-size: contain;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
}
.form-container form#apple_music_form .input-group input[type=email] {
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: #582c09;
  padding: 0.6rem 0;
  height: 3.3rem;
  font-family: "CheltenhamStdBook", serif;
  font-size: 1.3rem;
  width: 23.6rem;
}
.form-container p {
  font-family: "CheltenhamStdBookIt", serif;
  font-size: 0.9rem;
  margin: 0 auto;
}
@media (max-width: 62em) {
  .form-container p {
    text-align: center;
  }
}
.form-container .input-group.checkbox-container .checkbox label {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1rem;
}
.form-container .input-group.checkbox-container .checkbox label span {
  font-size: 1.4rem;
}

::placeholder {
  color: #582c09;
}

.splide__arrows.sleepy-slider button {
  background-color: transparent;
  background-repeat: no-repeat;
  width: 7rem;
  border-radius: 0;
}
.splide__arrows.sleepy-slider button:hover {
  scale: 1.2;
}
.splide__arrows.sleepy-slider button svg {
  display: none;
}
.splide__arrows.sleepy-slider button.splide__arrow--prev {
  left: -2rem;
  background-image: url("../assets/img/arrow-left.svg");
  opacity: 1;
}
@media (max-width: 36em) {
  .splide__arrows.sleepy-slider button.splide__arrow--prev {
    left: -3rem;
  }
}
.splide__arrows.sleepy-slider button.splide__arrow--next {
  right: -2rem;
  background-image: url("../assets/img/arrow-right.svg");
  opacity: 1;
}
@media (max-width: 36em) {
  .splide__arrows.sleepy-slider button.splide__arrow--next {
    right: -3rem;
  }
}

body .sleepy {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 36em) {
  body .sleepy {
    overflow: hidden;
  }
}
body .sleepy .face {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image: url("../assets/img/face/face.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  position: absolute;
}
@media (max-width: 36em) {
  body .sleepy .face {
    width: 50rem;
    height: 67rem;
    top: initial;
    bottom: 0;
    transform: translateX(-50%);
    background-position: bottom;
    left: 24rem;
  }
}
body .sleepy .eye {
  position: absolute;
  background-size: cover;
  background-position: center;
  transform: translate(-50%, -50%);
  z-index: -4;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .sleepy .eye.left-eye {
  width: 12%;
  height: 9%;
  left: 32%;
  top: 50%;
  background-image: url("../assets/img/face/left-eye@2x.webp");
}
@media (max-width: 36em) {
  body .sleepy .eye.left-eye {
    width: 7rem;
    height: 3.4rem;
    left: 14.2rem;
    top: initial;
    bottom: 29.8rem;
  }
}
body .sleepy .eye.right-eye {
  width: 12%;
  height: 9%;
  left: 56%;
  top: 50%;
  background-image: url("../assets/img/face/right-eye@2x.webp");
}
@media (max-width: 36em) {
  body .sleepy .eye.right-eye {
    width: 7rem;
    height: 3.4rem;
    left: 27.2rem;
    top: initial;
    bottom: 29.8rem;
  }
}
body .sleepy .eye .pupil {
  position: absolute;
  background-size: cover;
  background-position: center;
  transform: translate(-50%, -50%);
  z-index: -3;
  display: flex;
}
body .sleepy .eye .pupil.left-pupil {
  width: 6.8rem;
  height: 6.8rem;
  background-image: url("../assets/img/face/left-pupil@2x.webp");
}
@media (min-width: 100em) {
  body .sleepy .eye .pupil.left-pupil {
    width: 8.6rem;
    height: 8.6rem;
  }
}
@media (max-width: 48em) {
  body .sleepy .eye .pupil.left-pupil {
    left: 44%;
    top: 29%;
  }
}
@media (max-width: 36em) {
  body .sleepy .eye .pupil.left-pupil {
    width: 3.2rem;
    height: 3.2rem;
  }
}
body .sleepy .eye .pupil.right-pupil {
  width: 6.6rem;
  height: 6.6rem;
  background-image: url("../assets/img/face/right-pupil@2x.webp");
}
@media (min-width: 100em) {
  body .sleepy .eye .pupil.right-pupil {
    width: 8.2rem;
    height: 8.2rem;
  }
}
@media (max-width: 48em) {
  body .sleepy .eye .pupil.right-pupil {
    left: 57%;
    top: 29%;
  }
}
@media (max-width: 36em) {
  body .sleepy .eye .pupil.right-pupil {
    width: 3rem;
    height: 3rem;
  }
}
body .sleepy .bright {
  position: absolute;
  background-size: cover;
  background-position: center;
  transform: translate(-50%, -50%);
  z-index: -2;
}
body .sleepy .bright.left-bright {
  width: 2.5%;
  height: 1.22%;
  left: 32%;
  top: 49%;
  background-image: url("../assets/img/face/left-bright@2x.webp");
}
@media (max-width: 36em) {
  body .sleepy .bright.left-bright {
    width: 1.5rem;
    height: 0.4rem;
    top: initial;
    bottom: 33.3rem;
    left: 13.7rem;
  }
}
body .sleepy .bright.right-bright {
  width: 2.5%;
  height: 1.2%;
  left: 56%;
  top: 48.7%;
  background-image: url("../assets/img/face/right-bright@2x.webp");
}
@media (max-width: 36em) {
  body .sleepy .bright.right-bright {
    width: 1.6rem;
    height: 0.4rem;
    top: initial;
    bottom: 33.4rem;
    left: 27.7rem;
  }
}
@media (max-width: 36em) {
  body.internal .sleepy {
    overflow: hidden;
  }
}
body.internal .sleepy .face {
  background-position: bottom;
  background-image: url("../assets/img/face/face-internal.webp");
  width: 140rem;
  display: flex;
  background-size: cover;
}
@media (max-width: 36em) {
  body.internal .sleepy .face {
    background-image: url("../assets/img/face/face-internal-m.webp");
    width: 50rem;
    height: 50rem;
    top: initial;
    bottom: 0;
    transform: translateX(-50%);
    left: 50%;
  }
}
body.internal .sleepy .eye.left-eye {
  top: initial;
  bottom: 8.6rem;
  width: 19rem;
  height: 8rem;
  left: 50%;
  transform: translateX(-36rem);
}
@media (max-width: 36em) {
  body.internal .sleepy .eye.left-eye {
    width: 8rem;
    height: 3.4rem;
    transform: translateX(-14.5rem);
    bottom: 11.9rem;
  }
}
body.internal .sleepy .eye.right-eye {
  top: initial;
  bottom: 8.8rem;
  width: 19rem;
  height: 8rem;
  left: 50%;
  transform: translateX(0);
}
@media (max-width: 36em) {
  body.internal .sleepy .eye.right-eye {
    width: 7.6rem;
    height: 3.4rem;
    left: 50%;
    transform: translateX(0);
    bottom: 12.1rem;
  }
}
body.internal .sleepy .eye .pupil {
  z-index: -3;
}
body.internal .sleepy .eye .pupil.left-pupil {
  width: 6.6rem;
  height: 6.6rem;
}
@media (max-width: 36em) {
  body.internal .sleepy .eye .pupil.left-pupil {
    width: 3.2rem;
    height: 3.2rem;
  }
}
body.internal .sleepy .eye .pupil.right-pupil {
  width: 6.6rem;
  height: 6.6rem;
}
@media (max-width: 36em) {
  body.internal .sleepy .eye .pupil.right-pupil {
    width: 3.2rem;
    height: 3.2rem;
  }
}
body.internal .sleepy .bright.left-bright {
  top: initial;
  width: 4.2rem;
  height: 1.5rem;
  bottom: 13.5rem;
  left: 50%;
  transform: translateX(-27rem);
}
@media (max-width: 36em) {
  body.internal .sleepy .bright.left-bright {
    width: 2rem;
    height: 0.5rem;
    top: initial;
    bottom: 13.7rem;
    left: 50%;
    transform: translateX(-7rem);
  }
}
body.internal .sleepy .bright.right-bright {
  top: initial;
  width: 3.6rem;
  height: 1.5rem;
  bottom: 13.2rem;
  left: calc(50% + 9.4rem);
}
@media (max-width: 36em) {
  body.internal .sleepy .bright.right-bright {
    width: 2rem;
    height: 0.5rem;
    top: initial;
    bottom: 13.9rem;
    left: 50%;
    transform: translateX(8.3rem);
  }
}

.dates {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 4rem;
  padding: 0;
}
.dates p.no-events {
  font-size: 1.3rem;
  text-transform: uppercase;
}
.dates .event {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 14rem;
  width: 100%;
}
@media (max-width: 62em) {
  .dates .event {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.dates .event .bit-details {
  font-size: 2.2rem;
  font-family: "CheltenhamStdBook", serif;
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1rem;
  color: #582c09;
}
@media (max-width: 62em) {
  .dates .event .bit-details {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: center;
  }
}
.dates .event .bit-details .location {
  display: grid;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-family: "CheltenhamStdBook", serif;
  font-size: 2rem;
}
@media (max-width: 62em) {
  .dates .event .bit-details .location {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 1.8rem;
  }
}
.dates .event .bit-details .location .venue {
  font-family: "CheltenhamStdBookCondIt", serif;
  text-align: center;
  display: flex;
  justify-content: center;
}
.dates .event .bit-details .date {
  font-size: 2rem;
  font-family: "CheltenhamStdBookCond", serif;
  text-transform: uppercase;
}
.dates .event .tickets {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: flex-end;
}
@media (max-width: 36em) {
  .dates .event .tickets {
    flex-direction: column;
  }
}
.dates .event .tickets a {
  transition: all 200ms;
  font-family: "CheltenhamStdBook", serif;
  font-size: 1.4rem;
  text-align: center;
  text-transform: uppercase;
  color: #582c09;
  background-color: #fbf2e9;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 99px;
  cursor: pointer;
  padding: 0.8rem 2rem 0.3rem 2rem;
  height: 3rem;
  width: 100%;
  max-width: fit-content;
  border: 1.5px solid #582c09;
}
.dates .event .tickets a:hover {
  background-color: #582c09;
  color: #fbf2e9;
}
.dates .tour-more-wrap {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 36em) {
  .dates .tour-more-wrap {
    justify-content: flex-start;
  }
}

.seated-event-link,
.seated-event-link:visited,
.seated-event-link1,
.seated-event-link1:visited,
.seated-event-link2,
.seated-event-link2:visited,
.seated-event-link3,
.seated-event-link3:visited,
.seated-follow-link {
  font-size: 1.4rem !important;
  color: #582c09 !important;
  background-color: transparent !important;
  border: 1.5px solid #582c09 !important;
  margin: 0 !important;
  text-decoration: underline !important;
  min-width: initial !important;
  padding: 7px 15px 3px 15px !important;
  text-decoration: none !important;
  border-radius: 99px !important;
}
.seated-event-link:hover,
.seated-event-link:visited:hover,
.seated-event-link1:hover,
.seated-event-link1:visited:hover,
.seated-event-link2:hover,
.seated-event-link2:visited:hover,
.seated-event-link3:hover,
.seated-event-link3:visited:hover,
.seated-follow-link:hover {
  background-color: #582c09 !important;
  color: #fbf2e9 !important;
}

.seated-event-date-cell {
  font-size: 1.6rem;
}

.seated-event-venue-cell {
  font-size: 1.6rem;
  font-style: italic;
}

.seated-follow-link {
  margin-top: 1rem !important;
}

@media (max-width: 48em) {
  .seated-event-link {
    max-width: fit-content !important;
    margin: auto !important;
  }
}

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