*, :after, :before {
  box-sizing: border-box;
}

:root {
  font-size: 18px;
  overflow-x: hidden;
}

body {
  --color-text: #e6ded5;
  --color-bg: #03312d;
  --color-link: #efb57b;
  --color-link-hover: #f7cb9f;
  color: var(--color-text);
  background-color: var(--color-bg);
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  font-family: thmanyahserifdisplayMedium, sans-serif;
  overflow-x: hidden;
}

@font-face {
  font-family: thmanyahserifdisplayBlack;
  src: url("thmanyahserifdisplay-Black.561cd2ed.otf");
}

@font-face {
  font-family: thmanyahserifdisplayBold;
  src: url("thmanyahserifdisplay-Bold.c4f9950c.otf");
}

@font-face {
  font-family: thmanyahserifdisplayLight;
  src: url("thmanyahserifdisplay-Light.5f23eb4a.otf");
}

@font-face {
  font-family: thmanyahserifdisplayMedium;
  src: url("thmanyahserifdisplay-Medium.53b88988.otf");
}

@font-face {
  font-family: thmanyahserifdisplayRegular;
  src: url("thmanyahserifdisplay-Regular.00e4d334.otf");
}

.thmanyahserifdisplayBlack {
  font-family: thmanyahserifdisplayBlack, sans-serif;
}

.thmanyahserifdisplayBold {
  font-family: thmanyahserifdisplayBold, sans-serif;
}

.thmanyahserifdisplayLight {
  font-family: thmanyahserifdisplayLight, sans-serif;
}

.thmanyahserifdisplayMedium {
  font-family: thmanyahserifdisplayMedium, sans-serif;
}

.thmanyahserifdisplayRegular {
  font-family: thmanyahserifdisplayRegular, sans-serif;
}

.js .loading:before, .js .loading:after {
  content: "";
  z-index: 1000;
  position: fixed;
}

.js .loading:before {
  background: var(--color-bg);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.js .loading:after {
  opacity: .4;
  background: var(--color-link);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  animation: .7s linear infinite alternate forwards loaderAnim;
  top: 50%;
  left: 50%;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(.5, .5, 1);
  }
}

a {
  color: var(--color-link);
  outline: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-link-hover);
  outline: none;
}

a:focus {
  background: #d3d3d3;
  outline: none;
}

a:focus:not(:focus-visible) {
  background: none;
}

a:focus-visible {
  background: none;
  outline: 2px solid red;
}

.frame {
  z-index: 1000;
  pointer-events: none;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: 1fr;
  grid-template-areas: "title"
                       "prev"
                       "sponsor"
                       "demos";
  align-content: space-between;
  width: 100%;
  padding: 1rem;
  display: grid;
  position: fixed;
  bottom: 0;
  left: 0;
}

.frame a, .frame button {
  pointer-events: auto;
}

.frame__title {
  grid-area: title;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.frame__title-main {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
}

.frame__title-back {
  align-items: flex-end;
  display: flex;
  position: relative;
}

.frame__title-back span {
  display: none;
}

.frame__title-back svg {
  fill: var(--color-link);
}

.frame__title-back:hover svg, .frame__title-back:focus svg {
  fill: var(--color-link-hover);
}

.frame__demos {
  grid-area: demos;
}

.frame__demos a {
  margin-left: 2rem;
  position: relative;
}

.grid {
  grid-template-columns: repeat(8, 1fr);
  width: 100%;
  display: grid;
  position: relative;
}

.grid__item {
  will-change: transform;
  grid-column: var(--c);
  grid-row: var(--r);
  position: relative;
}

.grid__item-img {
  aspect-ratio: 1;
  will-change: transform, opacity;
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: auto;
  position: relative;
}

.cover {
  pointer-events: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.cover img {
  max-width: 60%;
}

.cover__title {
  margin: 0;
  font-family: thmanyahserifdisplayMedium, sans-serif;
  font-size: 8vw;
  font-weight: 600;
}

.cover__title2 {
  margin: 0;
  font-family: thmanyahserifdisplayMedium, sans-serif;
  font-size: 5.3vw;
  font-weight: 600;
}

.cover__title2 sup {
  margin: 0;
  font-family: thmanyahserifdisplayMedium, sans-serif;
  font-size: 2vw;
  font-weight: 600;
}

.cover__subtitle {
  text-align: center;
  margin: 0;
  font-family: thmanyahserifdisplayBold, sans-serif;
  font-size: 6vw;
  font-weight: 400;
}

.cover__subtitle2 {
  text-align: center;
  margin: 0;
  font-family: thmanyahserifdisplayBold, sans-serif;
  font-size: 5vw;
  line-height: 1.2;
}

.footer {
  color: var(--color-text);
  z-index: 200;
  text-transform: none;
  background: #071c1a;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: thmanyahserifdisplayMedium, sans-serif;
  font-size: 4vh;
  line-height: 1.2;
  display: flex;
  position: relative;
}

.footer p {
  text-align: center;
  max-width: 40ch;
  font-size: smaller;
}

@media screen and (width >= 768px) {
  .frame {
    height: auto;
    position: fixed;
    top: 0;
    bottom: auto;
  }

  .cover img {
    max-width: 60%;
  }

  .cover__subtitle {
    font-size: 6vw;
  }

  .cover__title2 {
    font-size: 5.3vw;
  }

  .cover__subtitle2 {
    font-size: 4vw;
  }
}

@media screen and (width: 720px) {
  .cover img {
    max-width: 30%;
  }

  .cover__subtitle {
    font-size: 6vw;
  }

  .cover__title2 {
    font-size: 5.3vw;
  }

  .cover__subtitle2 {
    font-size: 4vw;
  }

  .frame {
    bottom: 15vw;
  }

  .footer p {
    font-size: 2.8rem;
  }
}

@media screen and (width >= 848px) {
  .frame {
    grid-template: "prev sponsor"
                   ". ." 1fr
                   "title demos"
                   / auto 1fr;
    height: 100vh;
  }

  .frame__demos {
    white-space: nowrap;
    justify-self: end;
    margin: 0 1rem;
  }

  .footer p {
    text-align: center;
    max-width: 40ch;
    margin-top: 1rem;
    font-size: 4vh;
  }
}

@media screen and (width <= 768px) {
  :root {
    font-size: 14px;
  }

  body {
    width: 100%;
    overflow-x: hidden;
  }

  main {
    flex-direction: column;
    width: 100%;
    display: flex;
    overflow-x: hidden;
  }

  .frame {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    display: flex;
  }

  .frame__title {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .frame__title-main {
    font-size: 1.4rem;
  }

  .frame__demos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: .5rem;
    display: flex;
  }

  .frame__demos a {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.2rem;
  }

  .grid {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    margin: 0 auto;
  }

  .cover {
    padding: 1rem;
  }

  .cover img {
    max-width: 85% !important;
  }

  .cover__subtitle {
    font-size: 12vw;
  }

  .cover__title2 {
    font-size: 8vw;
  }

  .cover__title2 sup {
    font-size: 3vw;
  }

  .footer {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding: 3rem 2rem;
    font-size: 4vh;
  }

  .footer p {
    max-width: 100%;
    margin: 1.5rem 0;
    padding: 0 .5rem;
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .cover__subtitle2 {
    font-size: 7vw;
  }
}

@media screen and (width <= 480px) {
  :root {
    font-size: 12px;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cover img {
    max-width: 25% !important;
  }

  .frame {
    padding: 1.25rem .75rem;
  }

  .frame__demos {
    gap: 1.75rem;
  }

  .frame__demos a {
    margin-left: 0;
    font-size: 1.2rem;
  }

  .footer {
    padding: 5rem 1.5rem 15rem;
  }

  .footer p {
    padding: 0 .5rem;
    font-size: 2.1rem;
  }
}

.frame__demos a {
  color: #e6ded5;
  margin-left: 2rem;
  font-size: 2rem;
}

.frame__demos a:hover {
  color: #f7cb9f;
  margin-left: 2rem;
  font-size: 2rem;
}
/*# sourceMappingURL=COMING SOON.d046a61c.css.map */
