/*
xs:     0 - 576px
sm:     576 - 768px
md:     768 - 992px
lg:     992 - 1200px
xl:     1200 - 1400px
xxl:    1400+
xxxl:   1600+
*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pulsing {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

.clear:after {
  clear: both;
}

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

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

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

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

::-webkit-selection {
  background: #f4f4f4;
  color: black;
  text-shadow: none;
}

::-moz-selection {
  background: #f4f4f4;
  color: black;
  text-shadow: none;
}

::placeholder {
  color: #f4f4f4;
}

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

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

/*------------------------------------*\
    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: "Nimbus";
  src: url("../assets/fonts/Nimbus/reg.ttf") format("truetype");
}
.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;
}

.keen-slider[data-keen-slider-moves] * {
  cursor: grabbing !important;
  pointer-events: unset !important;
}
.keen-slider[data-keen-slider-moves] * a {
  pointer-events: none !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  color: #f4f4f4;
  margin: 0;
  position: relative;
  font-family: "Nimbus", serif;
  background-color: black;
  background-repeat: no-repeat;
  background-position: bottom right;
  display: flex;
  flex-direction: column;
}
body.open-modal::before {
  content: "";
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: fixed;
  z-index: 1;
  transition: all 200ms;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}
body main {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 100vh;
  height: 100svh;
}
@media (max-width: 36em) {
  body main {
    justify-content: flex-start;
  }
}
body main .main-container {
  display: grid;
  grid-template-columns: 1fr 41rem 1fr;
  align-items: center;
  justify-items: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fadeIn 1500ms ease forwards;
  animation-delay: 1000ms;
}
@media (max-width: 62em) {
  body main .main-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 62em) {
  body main .main-container {
    display: flex;
    flex-direction: column;
    padding: 4rem 0;
  }
}
body main .main-container h1 {
  font-size: 2.4rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
body main .main-container .logo {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 62em) {
  body main .main-container .logo {
    height: calc(100vh - 36rem);
    height: calc(100svh - 36rem);
  }
}
body main .main-container .logo video {
  width: 100%;
  height: 100%;
}
@media (max-width: 62em) {
  body main .main-container .logo video {
    max-width: 100%;
    z-index: -1;
  }
}
body main .main-container #date {
  display: grid;
  grid-template-columns: 1fr 1rem 1fr 1rem 1fr;
  max-width: 12rem;
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 400;
  justify-items: center;
  align-items: center;
}
body main .main-container #date .slot {
  display: inline-block;
  border: none;
  text-align: center;
  overflow: hidden;
  width: 100%;
}
body main .cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1500ms ease forwards;
  animation-delay: 2000ms;
  position: absolute;
  bottom: 8rem;
}
@media (max-width: 36em) {
  body main .cta-container {
    bottom: 11rem;
    max-width: 86%;
  }
}
body main .cta-container .cta-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
body main .cta-container .cta-content a, body main .cta-container .cta-content button {
  border: none;
  color: #f4f4f4;
  font-family: "Nimbus", serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -1px;
  cursor: pointer;
  background-color: black;
  padding: 0.3rem 0.5rem 0.1rem 0.5rem;
}
body main .cta-container .cta-content a:hover, body main .cta-container .cta-content button:hover {
  background-color: #f4f4f4;
  color: black;
}
body main .cta-container p {
  color: #666666;
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-size: 0.8rem;
  max-width: 35rem;
  text-align: center;
  pointer-events: initial;
  transition: all 400ms;
}
body main .cta-container p.hidden {
  opacity: 0;
  pointer-events: 0;
}
@media (pointer: coarse) {
  body main .cta-container p.hidden {
    opacity: 1;
    pointer-events: initial;
  }
}
body main img.tragedy {
  position: absolute;
  right: 0;
  top: 0;
}
@media (max-width: 48em) {
  body main img.tragedy {
    max-width: 95%;
  }
}
body::before {
  transition: all 200ms;
}
body .d-only {
  display: block;
  opacity: 1;
}
@media (max-width: 62em) {
  body .d-only {
    display: none;
    opacity: 0;
  }
}
body .m-only {
  display: none;
  opacity: 0;
}
@media (max-width: 62em) {
  body .m-only {
    display: block;
    opacity: 1;
  }
}

body > header {
  min-height: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 36em) {
  body > header {
    min-height: 12rem;
  }
}
body > header .logo {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  right: 3rem;
}
@media (max-width: 48em) {
  body > header .logo {
    position: initial;
  }
}
@media (max-width: 36em) {
  body > header .logo {
    width: 5.5rem;
    height: 5.5rem;
  }
}

.btn {
  transition: all 200ms;
  font-family: "Nimbus", serif;
  text-align: center;
  text-transform: uppercase;
  color: black;
  background-color: black;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  cursor: pointer;
  padding: 1.3rem 4rem 0.5rem 4rem;
  width: 100%;
  max-width: 29.5rem;
}
.btn-lg {
  font-size: 2.2rem;
}
@media (max-width: 48em) {
  .btn-lg {
    font-size: 2rem;
    padding: 1.2rem 4rem 0.4rem 4rem;
    max-width: 29.5rem;
  }
}
.btn:hover {
  background-color: #f4f4f4;
}
.btn svg path {
  transition: all 200ms;
}
.btn i {
  font-size: 2.4rem;
}

.social {
  text-align: right;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1.2rem;
}
.social a {
  font-size: 1.2rem;
  color: #f4f4f4;
}
.social a:hover {
  opacity: 0.8;
}
.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: 29rem;
  width: 100%;
  z-index: 10;
  background-color: black;
  transition: all 300ms;
  padding: 2rem;
  gap: 1rem;
  border: 1px solid #666666;
}
@media (max-width: 36em) {
  .modal {
    max-width: 90%;
  }
}
.modal p {
  font-size: 1.5rem;
}
.modal h2 {
  text-align: center;
  font-size: 2.2rem;
  line-height: 2.4rem;
  color: #f4f4f4;
  margin: 0;
  font-weight: 300;
  letter-spacing: -0.7px;
  text-transform: uppercase;
}
.modal a {
  font-size: 2.2rem;
  margin-top: 1rem;
  text-transform: lowercase;
  color: #f4f4f4;
  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: #f4f4f4;
}
.modal .btn-close svg {
  width: 100%;
}
.modal .btn-close svg .top {
  transform-origin: center;
  fill: #f4f4f4;
  y: 44;
  transform: rotate(-45deg);
}
.modal .btn-close svg .bottom {
  transform-origin: center;
  fill: #f4f4f4;
  y: 44;
  transform: rotate(45deg);
}

footer {
  border-top: 0;
  color: #f4f4f4;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
  height: 10rem;
  padding-bottom: 1rem;
  position: absolute;
  bottom: 0;
}
@media (max-width: 48em) {
  footer {
    height: 13rem;
  }
}
@media (max-width: 36em) {
  footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
footer .rca {
  display: flex;
  justify-content: center;
  color: #f4f4f4;
  justify-content: flex-start;
}
footer .rca a {
  font-size: inherit;
}
footer .rca a img {
  height: 2rem;
}
footer .social {
  max-width: fit-content;
}
footer .social a {
  color: #f4f4f4;
}
footer .social a:hover {
  opacity: 0.6;
}
@media (max-width: 48em) {
  footer .social {
    justify-content: center;
  }
}
@media (max-width: 36em) {
  footer .social {
    justify-content: flex-start;
    margin-left: 0;
  }
}
footer .disclaimer {
  text-align: center;
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-size: 0.8rem;
  color: #666666;
  width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
footer .disclaimer p, footer .disclaimer a {
  font-size: 0.8rem;
  font-family: "HelveticaNeue55Roman", sans-serif;
  color: #666666;
  margin-bottom: 0;
}
footer .disclaimer a:hover {
  opacity: 0.6;
}

.form-container form {
  display: flex;
  flex-direction: row;
  gap: 0;
}
.form-container form label {
  display: none;
}
.form-container form input[type=email] {
  color: #f4f4f4;
  background-color: black;
  padding: 0.7rem 0 0.4rem 1rem;
  font-family: "Nimbus", serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  width: 100%;
  border: none;
  border-bottom: 1px solid #666666;
  border-radius: 0;
}
.form-container form button {
  border: none;
  color: #f4f4f4;
  font-family: "Nimbus", serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  cursor: pointer;
  background-color: black;
  padding: 0.8rem 1rem 0.4rem 1rem;
}
.form-container form button:hover {
  background-color: #f4f4f4;
  color: black;
}
.form-container form .input-group {
  display: flex;
  flex-direction: row;
}
.form-container p {
  color: #666666;
  font-family: "HelveticaNeue55Roman", sans-serif;
  font-size: 0.8rem;
  max-width: 35rem;
  text-align: center;
  pointer-events: initial;
  transition: all 400ms;
}
.form-container p.hidden {
  opacity: 0;
  pointer-events: 0;
}

::placeholder {
  color: var(--clr-main);
}

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