@font-face {
  font-family: "+43BADERSANS";
  src: url("../fonts/+43BADERSANS.woff2") format("woff2"), url("../fonts/+43BADERSANS.woff") format("woff");
}
html {
  font-size: 10px;
}

.fs-0 {
  font-size: 1rem;
}

.fs-1 {
  font-size: 1.15rem;
}

.fs-2 {
  font-size: 2.5rem;
}

.py-0 {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.px-0 {
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}

.pb-0 {
  padding-bottom: 0.9rem;
}

.mt-0 {
  margin-top: 0.9rem;
}

.mb-0 {
  margin-bottom: 0.9rem;
}

.gx-0 {
  -moz-column-gap: 0.9rem;
       column-gap: 0.9rem;
}

.gy-0 {
  row-gap: 0.9rem;
}

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

.px-1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

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

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

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

.gx-1 {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gy-1 {
  row-gap: 1rem;
}

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

.px-2 {
  padding-left: 2.2rem;
  padding-right: 2.2rem;
}

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

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

.mb-2 {
  margin-bottom: 2.2rem;
}

.gx-2 {
  -moz-column-gap: 2.2rem;
       column-gap: 2.2rem;
}

.gy-2 {
  row-gap: 2.2rem;
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

body {
  font-family: "+43BADERSANS", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 400;
  background-color: rgb(255, 255, 255);
  color: rgb(255, 255, 255);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  font-feature-settings: "ss02" 1;
}

body::-webkit-scrollbar {
  display: none;
}

*::-webkit-scrollbar {
  display: none;
}

img, video {
  display: block;
  -webkit-user-drag: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

video::-webkit-media-controls {
  display: none !important;
}

#detach-button-host {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

a {
  color: rgb(255, 255, 255);
  text-decoration: none;
}

button {
  font-family: "+43BADERSANS", sans-serif;
  font-weight: 400;
  color: rgb(255, 255, 255);
  -webkit-text-fill-color: rgb(255, 255, 255);
  background: none;
  border: none;
  cursor: pointer;
}

.lh-1 {
  line-height: 0.8;
}

.lh-2 {
  line-height: 1.6;
}

.center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-space-4 > :not(:last-child)::after {
  content: "    ";
  white-space: pre;
}

.flex-space-2 > :not(:last-child)::after {
  content: "  ";
  white-space: pre;
}

.column {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.uppercase {
  text-transform: uppercase;
}

.pre {
  white-space: pre;
}

.z-1 {
  position: relative;
  z-index: 1;
}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  top: 0;
  z-index: 0;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(13px);
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.1s;
}
@media (max-width: 768px) {
  .overlay .fs-2 {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .overlay .fs-2 {
    font-size: 1.5rem;
  }
}

.overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}

.overlay .overlay-content {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0s;
}

.overlay.is-open .overlay-content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.15s;
}

.home-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.home-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}

.colon {
  animation: blink 2s infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .home-section video {
    transform: scale(1.05);
  }
}/*# sourceMappingURL=main.css.map */