/*
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 fadeInOut {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    top: -5rem;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@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 header-zoom {
  to {
    background-size: 160%;
  }
}
*,
*: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: "LevatoProLight", sans-serif;
  overflow-x: hidden;
}

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

.clear:after {
  clear: both;
}

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

a {
  color: #000000;
  text-decoration: none;
  transition: all 400ms;
  font-size: 1.6rem;
  font-family: "LevatoProLight", sans-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: "LevatoProLight", sans-serif;
}

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

/*------------------------------------*\
    MISC
\*------------------------------------*/
::selection {
  background: #e8e8e8;
  color: #000000;
  text-shadow: none;
}

::-webkit-selection {
  background: #e8e8e8;
  color: #000000;
  text-shadow: none;
}

::-moz-selection {
  background: #e8e8e8;
  color: #000000;
  text-shadow: none;
}

::placeholder {
  color: #000000;
}

::-moz-placeholder {
  color: #000000;
}

::-webkit-input-placeholder {
  color: #000000;
}

/*------------------------------------*\
    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: "LevatoProLight";
  src: url("../assets/fonts/LevatoPro/LevatoPro-Light.otf") format("opentype");
}
@font-face {
  font-family: "LevatoProRegular";
  src: url("../assets/fonts/LevatoPro/LevatoPro-Regular.otf") format("opentype");
}
@font-face {
  font-family: "LevatoProMedium";
  src: url("../assets/fonts/LevatoPro/LevatoPro-Medium.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;
  width: 100%;
}

.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: #000000;
  margin: 0;
  position: relative;
  font-family: "LevatoProLight", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  min-height: 100svh;
  height: 100%;
  background-color: #E5E5E5;
}
@media (max-width: 75em) {
  body {
    gap: 3rem;
  }
}
body main {
  width: 100%;
  height: calc(100vh - 9rem);
  height: calc(100svh - 9rem);
  padding: 3rem 3rem 0 3rem;
}
body .video-container {
  position: relative;
  max-width: calc(100vw - 6rem);
  height: 100%;
  width: 100%;
  border-radius: 2rem;
  background-color: #DABEDB;
  display: flex;
  justify-content: center;
  align-content: center;
  overflow: hidden;
  opacity: 1;
  pointer-events: initial;
}
body .video-container.hidden {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 36em) {
  body .video-container {
    overflow: hidden;
    align-items: initial;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
body .video-container #toggle-sound {
  position: absolute;
  width: 5rem;
  height: 5rem;
  top: 4rem;
  right: 4rem;
  background-color: transparent;
  border: none;
  z-index: 10;
  cursor: pointer;
  background-image: url("../assets/img/icons/sound-on.svg");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  background-color: #000000;
  border-radius: 99px;
}
body .video-container #toggle-sound.unmute {
  background-image: url("../assets/img/icons/sound-off.svg");
}
@media (max-width: 36em) {
  body .video-container #toggle-sound {
    top: 2rem;
    right: 2rem;
  }
}
body .video-container .link {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10;
}
@media (max-width: 36em) {
  body .video-container .link {
    max-width: 7rem;
  }
}
body .video-container .link.photos-link {
  left: 2%;
  top: 80%;
}
@media (max-width: 36em) {
  body .video-container .link.photos-link {
    left: 8%;
  }
}
body .video-container .link.videos-link {
  left: 87%;
  top: 50%;
}
@media (max-width: 36em) {
  body .video-container .link.videos-link {
    left: 78%;
    top: 83%;
  }
}
body .video-container .link.audios-link {
  left: 89%;
  top: 70%;
}
@media (max-width: 36em) {
  body .video-container .link.audios-link {
    left: 55%;
    top: 88%;
  }
}
body .video-container .link:hover img {
  filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.65));
}
body .video-container .link span {
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  text-align: center;
  margin: 0 auto;
  filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.65));
}
body .video-container video {
  min-width: initial;
  max-height: 100%;
  object-fit: cover;
}
@media (max-width: 36em) {
  body .video-container video {
    min-height: 100%;
    max-width: 100%;
    width: fit-content;
    position: absolute;
  }
}
body.open-modal::before {
  content: "";
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 1;
  transition: all 200ms;
  opacity: 1;
  background-color: rgba(232, 232, 232, 0.6);
}
body::before {
  transition: all 200ms;
}
body .d-only {
  display: flex !important;
  opacity: 1;
}
@media (max-width: 62em) {
  body .d-only {
    display: none !important;
    opacity: 0;
  }
}
body .m-only {
  display: none !important;
  opacity: 0;
}
@media (max-width: 62em) {
  body .m-only {
    display: flex !important;
    opacity: 1;
  }
}
body .ae-modal-overlay-closed,
body .ae-modal-closed {
  display: none;
}

body > header {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: 100svh;
  padding: 7.4rem;
}
@media (max-width: 36em) {
  body > header {
    padding: 2.4rem;
    justify-content: flex-start;
  }
}
body > header nav {
  margin: 0 0 0 auto;
  z-index: 100;
}
body > header nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 4rem;
  margin: 0;
}
body > header nav ul li a {
  font-size: 3rem;
  position: relative;
}
body > header nav ul li a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: transparent;
  position: absolute;
  left: -15px;
  top: 50%;
  transition: all 0.3s;
  transform: translateX(-50%);
}
body > header nav ul li a:hover::before {
  background-color: #000000;
}
body > header h1 {
  position: absolute;
  width: 100%;
  max-width: calc(100% - 16rem);
  opacity: 0;
  top: -5rem;
  animation: fadeInTop 1s ease forwards;
  transform: translateY(17.4rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 36em) {
  body > header h1 {
    max-width: calc(100% - 6rem);
  }
}
body > header h1 img {
  width: 80%;
}
body > header h2 {
  font-weight: 100;
  line-height: 1cap;
}
body > header .header-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 3.6rem;
  height: 100%;
}
@media (max-width: 62em) {
  body > header .header-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 2rem;
    height: 100%;
  }
}
@media (max-width: 36em) {
  body > header .header-grid {
    height: 90svh;
    justify-items: center;
    align-items: center;
  }
}
body > header .header-grid > div {
  overflow: hidden;
}
body > header .header-grid img {
  opacity: 0.2;
  animation: fadeInOut 10s infinite;
  height: fit-content;
}
@media (max-width: 36em) {
  body > header .header-grid img {
    height: initial;
  }
}
body > header .cta-container {
  position: absolute;
  bottom: -5rem;
  opacity: 0;
  font-size: 3.6rem;
  font-weight: 100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeInBottom 1s ease forwards;
  animation-delay: 200ms;
  transform: translateY(calc(7rem - 100%)) translateX(-50%);
  left: calc(70% - 8.4rem);
}
@media (max-width: 36em) {
  body > header .cta-container {
    transform: translateY(-20%) translateX(-35%);
    max-width: 16rem;
    left: initial;
    right: 0;
    gap: 1rem;
  }
}
body > header .cta-container h2 {
  font-size: 3.6rem;
  text-align: center;
}
@media (max-width: 36em) {
  body > header .cta-container h2 {
    font-size: 2.4rem;
    margin: 0 auto;
  }
}
body > header .cta-container a {
  font-size: 3.6rem;
  background-color: #D9D9D9;
  border-radius: 10px;
  padding: 0.7rem 5rem;
}
@media (max-width: 36em) {
  body > header .cta-container a {
    font-size: 2.4rem;
    padding: 0.4rem 3rem;
  }
}
body > header .cta-container a:hover {
  background-color: rgba(217, 217, 217, 0.329);
}
body > header .main-container {
  display: flex;
  justify-content: center;
  max-width: 72rem;
  width: 100%;
  height: 100%;
}
@media (max-width: 36em) {
  body > header .main-container {
    padding: 0;
  }
}
body > header .main-container .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  opacity: 0;
  animation: fadeInBottom 1s ease forwards;
  animation-delay: 1.5s;
  position: relative;
}
body > header .main-container .main-content .alterego {
  max-width: 55rem;
}
@media (max-width: 36em) {
  body > header .main-container .main-content .alterego {
    max-width: 90%;
  }
}
body > header .main-container .main-content h2 {
  font-size: 3rem;
}
@media (max-width: 36em) {
  body > header .main-container .main-content h2 {
    font-size: 2.8rem;
  }
}
body > header .main-container .main-content a,
body > header .main-container .main-content button {
  font-size: 2.2rem;
  color: #000000;
  font-family: "LevatoProLight", sans-serif;
  line-height: 1.9rem;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #000000;
  padding: 0;
  cursor: pointer;
  text-transform: lowercase;
  text-decoration: none;
}
@media (max-width: 36em) {
  body > header .main-container .main-content a,
body > header .main-container .main-content button {
    font-size: 2rem;
  }
}
body > header .main-container .main-content a:hover,
body > header .main-container .main-content button:hover {
  border-bottom: 1px solid transparent;
}
@media (max-width: 36em) {
  body > header .main-container .main-content {
    position: relative;
    width: 100%;
  }
}
body > header .main-container .main-content .main-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100% - 30rem);
}
body > header .main-container .main-content .main-title .mf-logo {
  max-height: 15.6rem;
  width: 100%;
  max-width: 70rem;
  position: relative;
}
@media (max-width: 48em) {
  body > header .main-container .main-content .main-title .mf-logo {
    max-width: 90%;
  }
}
body > header .main-container .main-content .main-title .release-date {
  max-height: 4.4rem;
  width: 100%;
  max-width: 12.6rem;
  position: relative;
  top: -2rem;
}
@media (max-width: 48em) {
  body > header .main-container .main-content .main-title .release-date {
    top: 0;
  }
}
body > header .main-container .main-content .countdown {
  font-size: 3rem;
  color: white;
  font-family: "LevatoProLight", sans-serif;
  line-height: 3rem;
  margin-top: 3rem;
  display: flex;
  flex-direction: row;
}
@media (max-width: 62em) {
  body > header .main-container .main-content .countdown {
    margin-top: 1rem;
  }
}
body > header .main-container .main-content .form-container .signup-disclaimer {
  display: flex;
  align-items: center;
}
body > header .main-container .main-content .form-container .signup-disclaimer p {
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-size: 0.8rem;
  margin: 0;
}
body > header .main-container .main-content .cta-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  width: 100%;
  justify-content: space-evenly;
  margin-top: 1rem;
}
@media (max-width: 62em) {
  body > header .main-container .main-content .cta-container {
    margin-top: 0.5rem;
    flex-direction: column;
    gap: 1.5rem;
  }
}
body > header .main-container .main-content .cta-container a, body > header .main-container .main-content .cta-container button {
  font-size: 1.7rem;
  color: #000000;
  font-family: "LevatoProLight", sans-serif;
  line-height: 1.4rem;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #000000;
  padding: 0;
  cursor: pointer;
  text-transform: lowercase;
  text-decoration: none;
  width: fit-content;
}
@media (max-width: 36em) {
  body > header .main-container .main-content .cta-container a, body > header .main-container .main-content .cta-container button {
    font-size: 1.5rem;
  }
}
body > header .main-container .main-content .cta-container a:hover, body > header .main-container .main-content .cta-container button:hover {
  border-bottom: 1px solid transparent;
}
body > header .main-container .main-content .cta-disclaimer {
  font-size: 0.9rem;
  font-family: "HelveticaNeue55Roman", sans-serif;
  text-align: center;
  max-width: 50rem;
}
@media (max-width: 36em) {
  body > header .main-container .main-content .cta-disclaimer {
    max-width: 90%;
  }
}

.btn {
  transition: all 200ms;
  font-family: "LevatoProLight", sans-serif;
  text-align: center;
  text-transform: uppercase;
  color: #e8e8e8;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  cursor: pointer;
  padding: 0.8rem 4rem 0.8rem 4rem;
  width: 100%;
  max-width: 29.5rem;
}
.btn-lg {
  font-size: 2.2rem;
}
@media (max-width: 48em) {
  .btn-lg {
    font-size: 2rem;
    padding: 0.4rem 4rem 0.4rem 4rem;
    max-width: 29.5rem;
  }
}
.btn:hover {
  background-color: #000000;
}
.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: 2rem;
  flex-wrap: wrap;
  max-width: 28rem;
}
.social a {
  font-size: 1.8rem;
  color: #c1a459;
}
.social a:hover {
  opacity: 0.8;
}
.social a.rca-icon img, .social a.rca-icon svg {
  fill: white;
  width: 18px;
}
.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: 50rem;
  width: 100%;
  z-index: 10;
  background-color: #e8e8e8;
  transition: all 300ms;
  gap: 2rem;
  padding: 6rem;
  border: 1px solid #212121;
}
@media (max-width: 36em) {
  .modal {
    max-width: 90%;
    padding: 4rem 1.5rem 1.5rem 1.5rem;
  }
}
.modal .modal-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  width: 100%;
}
.modal .modal-content h2 {
  font-family: "LevatoProLight", sans-serif;
  font-size: 2.6rem;
  display: flex;
  justify-content: center;
  text-align: center;
}
.modal .form-container {
  width: 100%;
}
.modal .form-container form {
  display: flex;
  justify-content: center;
}
.modal .form-container form .input-group {
  display: flex;
  grid-template-columns: 1fr 10rem;
}
.modal .form-container form .input-group input[type=email] {
  color: #000000;
  font-family: "LevatoProLight", sans-serif;
  font-size: 2rem;
  border: 1px solid #000000;
  border-right: 0;
  background-color: transparent;
  padding: 1rem 2rem 0.4rem 2rem;
  max-width: 100%;
  width: 100%;
}
.modal .form-container form .input-group ::placeholder {
  color: #000000;
}
.modal .form-container form button {
  border-color: #000000;
  color: #000000;
  font-family: "LevatoProLight", sans-serif;
  font-size: 2rem;
  padding: 1rem 2rem 0.4rem 2rem;
}
.modal .form-container form button:hover {
  background-color: #000000;
  color: black;
}
.modal p {
  color: #000000;
  font-size: 0.9rem;
  max-width: 38.9rem;
}
.modal h2 {
  text-align: left;
  font-size: 3.7rem;
  line-height: 3.2rem;
  font-family: "LevatoProLight", sans-serif;
  color: #000000;
  margin: 0;
  font-weight: 700;
}
@media (max-width: 62em) {
  .modal h2 {
    font-size: 2rem;
  }
}
.modal a {
  font-size: 2.2rem;
  margin-top: 1rem;
  text-transform: lowercase;
  color: white;
  display: block;
  text-decoration: underline;
}
.modal.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-30%) translateX(-50%);
}
.modal .btn-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--main-font);
  letter-spacing: 0;
  max-width: 2rem;
  text-transform: uppercase;
  cursor: pointer;
  color: #000000;
}
.modal .btn-close svg {
  width: 100%;
}
.modal.watch-modal {
  padding: 0;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.modal.watch-modal .youtube-embed-container {
  width: 100%;
  height: 100%;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.modal.watch-modal .youtube-embed-container iframe {
  aspect-ratio: 16/10;
  height: 100%;
  width: 100%;
}
.modal.watch-modal .btn-close {
  z-index: 10;
  pointer-events: initial;
}
.modal.notice-modal {
  padding: 6rem 6rem 3rem 6rem;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #000000;
  width: 100%;
  font-size: 0.8rem;
  border: none;
  opacity: 0;
  position: relative;
  bottom: -5rem;
  animation: fadeInBottom 1s ease forwards;
  animation-delay: 1s;
  padding: 0 4rem 2rem 4rem;
}
@media (max-width: 36em) {
  footer {
    gap: 3rem;
  }
}
footer .top-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5%;
}
@media (max-width: 75em) {
  footer .top-content {
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }
}
footer .top-content .alterego-logo {
  max-width: 22.5rem;
  width: 100%;
}
footer .top-content a.born-again-logo {
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .top-content a.born-again-logo:hover {
  border: none;
  filter: brightness(1.2);
}
footer .top-content a.born-again-logo img {
  max-width: 24.8rem;
}
footer .top-content h2 {
  font-size: 2.5rem;
  font-family: "LevatoProLight", sans-serif;
  font-weight: 400;
  text-align: center;
  margin: 0;
}
@media (max-width: 75em) {
  footer .top-content h2 {
    font-size: 3rem;
  }
}
footer .top-content span,
footer .top-content a,
footer .top-content button {
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: lowercase;
  padding: 0;
  border: none;
  background-color: transparent;
}
@media (max-width: 75em) {
  footer .top-content span {
    font-size: 1.8rem;
  }
}
footer .top-content a,
footer .top-content button {
  max-width: fit-content;
  background-color: transparent;
}
footer .top-content a:hover,
footer .top-content button:hover {
  background-color: transparent;
  border-bottom: 1px solid transparent;
}
@media (max-width: 75em) {
  footer .top-content a,
footer .top-content button {
    font-size: 1.5rem;
    margin: 0.3rem auto;
  }
}
footer .bottom-content {
  display: grid;
  grid-template-areas: "legal signup social";
  flex-direction: row;
  justify-content: space-between;
  grid-template-columns: 1.3fr 2fr 25rem;
  gap: 1rem;
}
@media (max-width: 75em) {
  footer .bottom-content {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 1rem 1rem 1rem;
    align-items: center;
    gap: 2rem;
  }
}
footer .legal {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 56rem;
  width: 100%;
  grid-area: legal;
  align-items: flex-start;
}
@media (max-width: 75em) {
  footer .legal {
    flex-direction: column;
    margin: auto;
    align-items: center;
  }
}
footer .legal .disclaimer {
  text-align: left;
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-size: 0.8rem;
  color: #000000;
  width: 100%;
  max-width: 50rem;
}
@media (max-width: 75em) {
  footer .legal .disclaimer {
    text-align: center;
  }
}
footer .legal .disclaimer p, footer .legal .disclaimer a {
  font-size: 0.8rem;
  font-family: "HelveticaNeue55Roman", sans-serif;
  color: #000000;
  margin-bottom: 0;
}
footer .legal .logos {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}
@media (max-width: 62em) {
  footer .legal .logos {
    width: 100%;
    justify-content: center;
  }
}
footer .legal .rca {
  max-width: 4.2rem;
  width: 100%;
  display: flex;
}
@media (max-width: 62em) {
  footer .legal .rca {
    max-width: 5rem;
  }
}
footer .legal .lloud {
  max-width: 4.2rem;
  width: 100%;
}
@media (max-width: 62em) {
  footer .legal .lloud {
    max-width: 5rem;
  }
}
footer .form-container {
  display: flex;
  flex-direction: row;
  grid-area: signup;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 75em) {
  footer .form-container {
    flex-direction: column;
    align-items: center;
  }
}
footer .form-container .signup-disclaimer {
  display: flex;
  align-items: center;
  max-width: 50rem;
}
@media (max-width: 75em) {
  footer .form-container .signup-disclaimer {
    text-align: center;
  }
}
footer .form-container .signup-disclaimer p {
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-size: 0.8rem;
  margin: 0;
}
footer .social {
  grid-area: social;
}
footer .social a {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .social a img, footer .social a svg {
  max-width: 1.8rem;
  max-height: 1.8rem;
}
@media (max-width: 75em) {
  footer .social {
    justify-content: center;
  }
}

.form-container form {
  max-width: 59rem;
  width: 100%;
  gap: 2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.form-container form#lloud-sign-up {
  max-width: 32rem;
}
.form-container form#lloud-sign-up button {
  height: 3rem;
}
.form-container form label {
  display: none;
}
.form-container form .form-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
.form-container form .form-group input[type=email] {
  border: none;
  border-bottom: 2px solid #000000;
  border-radius: 0;
  background-color: transparent;
  color: #000000;
  padding: 0.9rem 0;
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-size: 1rem;
  width: 100%;
}
.form-container form .form-group input[type=email]::placeholder {
  text-transform: uppercase;
}
.form-container form .input-group.hidden {
  position: absolute;
}
.form-container form button {
  background-color: transparent;
  border: 2px solid #000000;
  color: #000000;
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
  width: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  padding: 1rem 1rem 0.7rem 1rem;
}
.form-container form button:hover {
  background-color: #000000;
  color: #e8e8e8;
}
.form-container form ::placeholder {
  color: #000000;
}

#password-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: "LevatoProLight", sans-serif;
  color: black;
  flex-direction: column;
  font-size: 1.8rem;
}
#password-overlay h2 {
  margin-bottom: 0.5rem;
}
#password-overlay input {
  height: 43px;
  width: 270px;
  padding: 0.5rem;
  margin-top: 1rem;
  font-size: 3rem;
  border: 2px solid #000;
  background-color: transparent;
  border-radius: 10px;
  text-align: center;
}
#password-overlay button {
  font-family: "LevatoProLight", sans-serif;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 2rem;
  cursor: pointer;
  border: none;
  background: transparent;
  text-decoration: underline;
  color: #000000;
}
#password-overlay .error {
  color: red;
  margin-top: 0.5rem;
}
#password-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

section#tour #dates {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  max-width: 90rem;
  margin: auto;
}
@media (max-width: 75em) {
  section#tour #dates {
    align-items: center;
    gap: 6rem;
  }
}
section#tour .event {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  font-size: 2.4rem;
  justify-content: space-between;
}
@media (max-width: 75em) {
  section#tour .event {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
section#tour .event .bit-details {
  display: flex;
  flex-direction: row;
  gap: 4rem;
}
@media (max-width: 75em) {
  section#tour .event .bit-details {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
section#tour .event .bit-details .location {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  text-transform: lowercase;
}
@media (max-width: 75em) {
  section#tour .event .bit-details .location {
    flex-direction: column;
    align-items: center;
  }
}
section#tour .event .bit-details .location .city {
  font-weight: 100;
  text-transform: lowercase;
}
section#tour .event .tickets a {
  font-size: 2.4rem;
  background-color: #e8e8e8;
  padding: 0.5rem 2rem;
  border-radius: 5px;
  text-transform: lowercase;
}
section#tour .event .tickets a:hover {
  background-color: rgba(232, 232, 232, 0.6);
}

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