*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  outline: none;
  -webkit-touch-callout: none;
}
* {
  margin: 0;
  padding: 0;
}
:focus {
  outline: none;
}
::-moz-focus-inner {
  border: 0;
}
a {
  color: inherit;
  outline: none;
  text-decoration: none;
}
button {
  background: none;
  border: none;
  border-radius: none;
  color: inherit;
  font: inherit;
  outline: none;
  cursor: pointer;
}
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
}
ol,
ul {
  list-style: none;
}
:root {
  --color-error: #ff3737;
  --color-success: #22a910;
  --color-white: #efefef;
  --color-white-transparent: rgba(239, 239, 239, 0.5);
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-white-20: rgba(255, 255, 255, 0.2);
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-black: #000000;
  --color-black-10: rgba(11, 3, 16, 0.1);
  --color-black-20: rgba(11, 3, 16, 0.2);
  --color-black-50: rgba(11, 3, 16, 0.5);
  --color-black-80: rgba(11, 3, 16, 0.8);
  --color-yellow: #feda7e;
  --color-blue: #4254f4;
}
.template--no-select {
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.template--no-select:focus {
  outline: none;
}
.template--no-scroll {
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
  overscroll-behavior: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.template--no-scroll::-webkit-scrollbar,
.template--no-scroll::-webkit-scrollbar-track,
.template--no-scroll::-webkit-scrollbar-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
  background: transparent;
  display: none;
}
.template--hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.template--hide-scrollbar::-webkit-scrollbar,
.template--hide-scrollbar::-webkit-scrollbar-track,
.template--hide-scrollbar::-webkit-scrollbar-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
  background: transparent;
  display: none;
}
.template--fixed-full-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}
.template--is-active {
  display: none;
}
.template--is-active.is-active {
  display: block;
}
.template--container {
  padding: 2.225rem 4rem;
}
@media (max-width: 768px) {
  .template--container {
    padding: 1.25rem;
  }
}
@media (min-width: 2000px) {
  .template--container {
    padding: 2.225rem 10%;
  }
}
.template--grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  -moz-column-gap: clamp(1.4rem, 2vw, 5.4rem);
  column-gap: clamp(1.4rem, 2vw, 5.4rem);
}
@media (max-width: 768px) {
  .template--grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.blur-with-smooth-borders:before {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 5px;
}
.white20-rounded-border {
  border: 1px solid var(--color-white-20);
  border-radius: 5px;
}
.hero-button {
  position: relative;
}
.hero-button:before,
.hero-button:after {
  content: "";
  height: var(--bar-height);
  width: var(--bar-width);
  position: absolute;
  background: var(--bar-color);
  box-shadow: 0 0 10px var(--bar-color);
  border-radius: 100px;
  transform-origin: center;
}
.hero-button:before {
  top: var(--bar-before-top);
  left: var(--bar-before-left);
  transform: translate(var(--bar-before-x), var(--bar-before-y))
    scale3d(
      calc(var(--bar-ratio) * var(--bar-hover-ratio-x)),
      calc(var(--bar-ratio) * var(--bar-hover-ratio-y)),
      1
    );
}
.hero-button:after {
  bottom: var(--bar-after-bottom);
  right: var(--bar-after-right);
  transform: translate(var(--bar-after-x), var(--bar-after-y))
    scale3d(
      calc(var(--bar-ratio) * var(--bar-hover-ratio-x)),
      calc(var(--bar-ratio) * var(--bar-hover-ratio-y)),
      1
    );
}
.hero-button.disabled {
  opacity: 0.5;
}
.hero-button.disabled:before,
.hero-button.disabled:after {
  opacity: 0;
}
.inconsolata {
  font-family: Inconsolata, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.neue-text {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-transform: initial;
}
.big-buttons-text {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.05em;
}
html {
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  font-size: 16px;
}
@media (min-width: 2000px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 2500px) {
  html {
    font-size: 20px;
  }
}
html,
body {
  font-family: neue-haas-grotesk-display, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
}
button {
  text-transform: uppercase;
}
p {
  line-height: 1.4;
  letter-spacing: 0.02rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  p {
    font-size: 0.875rem;
  }
}
h1 {
  font-weight: 400;
  font-size: clamp(5rem, 6vw, 8rem);
}
@media (max-width: 768px) {
  h1 {
    font-size: 12vw;
  }
}
h2 {
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 3rem);
}
@media (max-width: 768px) {
  h2 {
    font-size: min(12vw, 2.75rem);
  }
}
h3 {
  font-weight: 400;
  font-size: 2.375rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.75rem;
  }
}
h4 {
  font-weight: 400;
}
h5 {
  font-weight: 400;
  font-size: 1.225rem;
}
@media (max-width: 768px) {
  h5 {
    font-size: 1.125rem;
  }
}
.text-xs {
  font-size: 0.625rem;
}
.text-sm {
  font-size: 0.775rem;
}
.text-base {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .text-base {
    font-size: 0.875rem;
  }
}
.text-md {
  font-size: 1.225rem;
}
@media (max-width: 768px) {
  .text-md {
    font-size: 1.125rem;
  }
}
.text-xl {
  font-size: 2.375rem;
}
@media (max-width: 768px) {
  .text-xl {
    font-size: 1.75rem;
  }
}
.text-2xl {
  font-size: clamp(2rem, 3vw, 3rem);
}
@media (max-width: 768px) {
  .text-2xl {
    font-size: min(12vw, 2.75rem);
  }
}
.text-3xl {
  font-size: clamp(5rem, 6vw, 8rem);
}
@media (max-width: 768px) {
  .text-3xl {
    font-size: 12vw;
  }
}
.text-4xl {
  font-size: clamp(6.3rem, 7.4vw, 12rem);
}
@media (max-width: 768px) {
  .text-4xl {
    font-size: 12vw;
  }
}
.text-5xl {
  font-size: clamp(8rem, 10vw, 14rem);
}
@media (max-width: 768px) {
  .text-5xl {
    font-size: 12vw;
  }
}
.dg.ac input,
.dg.ac select,
.dg.ac .property-name,
.dg.ac .close-button {
  font-family: SFMono-Regular, Jetbrains Mono, Menlo, Monaco, Consolas,
    Liberation Mono, Courier New, Lucida Console, monospace;
}
.dg .dg.main {
  margin-right: 0;
  margin-left: 10px;
}
.dg.main .property-name {
  padding-right: 5px;
}
.dg.main li.title {
  background-image: none;
  position: relative;
}
.dg.main li.title:before {
  position: absolute;
  content: "-";
  left: 5px;
}
.dg.main .closed li.title {
  background-image: none;
}
.dg.main .closed li.title:before {
  content: "+";
}
.dg.main .c .slider {
  position: relative;
  background: transparent;
}
.dg.main .c .slider:hover {
  background: transparent;
}
.dg.main .c .slider:hover .slider-fg {
  background: #0ff;
}
.dg.main .c .slider:before {
  position: absolute;
  content: "";
  display: block;
  top: 25%;
  height: 50%;
  width: 100%;
  background-color: #111;
}
.dg.main .c .slider-fg {
  background: #0cc;
  position: absolute;
  top: 25%;
  height: 50%;
}
.dg.main .cr.number {
  border-left: 3px solid #0ff;
}
.dg.main .cr.number input[type="text"] {
  color: #0ff;
}
html,
body {
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
  background-color: var(--color-black);
  color: var(--color-white);
}
html:focus,
body:focus {
  outline: none;
}
html.no-js body {
  display: none;
}
#canvas,
#ui {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
  background-color: transparent;
}
#canvas {
  pointer-events: auto;
  display: none;
}
.is-ready #canvas {
  display: block;
}
#ui {
  pointer-events: none;
}
.section {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  -moz-column-gap: clamp(1.4rem, 2vw, 5.4rem);
  column-gap: clamp(1.4rem, 2vw, 5.4rem);
}
@media (max-width: 768px) {
  .section {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.page {
  position: absolute;
  height: calc(var(--vh, 1vh) * 100);
  width: 100vw;
  left: 0;
  top: 0;
  padding: 2.225rem 4rem;
}
@media (max-width: 768px) {
  .page {
    padding: 1.25rem;
  }
}
@media (min-width: 2000px) {
  .page {
    padding: 2.225rem 10%;
  }
}
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 100;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#preloader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#preloader__logo__wrapper {
  position: relative;
  margin: 2rem 0;
}
#preloader__loading {
  position: relative;
  overflow: hidden;
}
#preloader__loading p {
  opacity: 0;
  font-size: 0.775rem;
}
#preloader__canvas {
  width: 260px;
  height: 260px;
}
@media (max-width: 768px) {
  #preloader__canvas {
    width: 180px;
    height: 180px;
  }
}
#preloader__logo {
  position: absolute;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  height: 120px;
  width: 120px;
  --percent-loaded-layer1: 0;
  --percent-loaded-layer2: 0;
  --percent-loaded-layer3: 0;
  --percent-loaded-layer4: 0;
  --percent-loaded-layer5: 0;
}
@media (max-width: 768px) {
  #preloader__logo {
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    width: 80px;
    height: 80px;
  }
}
#preloader__wait {
  position: relative;
  overflow: hidden;
}
#preloader__wait p {
  opacity: 0;
  font-size: 0.775rem;
}
#preloader__logo__layer1 {
  opacity: var(--percent-loaded-layer1);
}
#preloader__logo__layer2 {
  opacity: var(--percent-loaded-layer2);
}
#preloader__logo__layer3 {
  opacity: var(--percent-loaded-layer3);
}
#preloader__logo__layer4 {
  opacity: var(--percent-loaded-layer4);
}
#preloader__logo__layer5 {
  opacity: var(--percent-loaded-layer5);
}
#typography {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100vw;
  min-height: 100vh;
  display: none;
  background: black;
  padding: 3%;
  overflow: scroll;
}
#typography > * {
  line-height: 1 !important;
  white-space: nowrap;
}
#typography h1,
#typography h2,
#typography h3,
#typography h4,
#typography h5 {
  margin: 3rem 0 1.38rem;
  font-weight: 400;
}
#typography p {
  margin-bottom: 1rem;
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: auto;
  z-index: 60;
  padding: 2.225rem 4rem;
}
@media (max-width: 768px) {
  #header {
    padding: 1.25rem;
  }
}
@media (min-width: 2000px) {
  #header {
    padding: 2.225rem 10%;
  }
}
.nav {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  -moz-column-gap: clamp(1.4rem, 2vw, 5.4rem);
  column-gap: clamp(1.4rem, 2vw, 5.4rem);
}
@media (max-width: 768px) {
  .nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .nav {
    display: flex;
    gap: 0;
    justify-content: space-between;
  }
}
.nav--left {
  grid-column: span 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transform: translate(-6px);
}
@media (max-width: 768px) {
  .nav--left {
    transform: none;
  }
}
.nav--right {
  grid-column: 8 / span 5;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .nav--right {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.nav__buttons {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 20rem;
  height: 100%;
  border-radius: 5px;
  border: solid 1px var(--color-white-20);
}
.nav__buttons > * {
  height: 100%;
  font-size: 0.775rem;
}
.nav__buttons:before {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 5px;
}
#nav__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
#nav__logo:hover #nav__logo__icon {
  transform: scale3d(1.1, 1.1, 1.1) rotate(60deg);
}
#nav__logo:hover #nav__logo__well {
  color: var(--color-yellow);
}
@media (max-width: 768px) {
  #nav__logo {
    overflow: hidden;
  }
}
#nav__logo__icon {
  margin-left: -0.4rem;
  transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.53, 0, 0.17, 1.01);
}
@media (max-width: 768px) {
  #nav__logo__icon {
    display: none;
  }
}
#nav__logo__icon--mobile {
  display: none;
}
@media (max-width: 768px) {
  #nav__logo__icon--mobile {
    display: block;
  }
}
#nav__logo__well {
  transform-origin: left;
  transition: color 0.2s 0.05s cubic-bezier(0.53, 0, 0.17, 1.01);
}
@media (max-width: 768px) {
  #nav__logo__well {
    display: none;
  }
}
#nav__logo__well--mobile {
  display: none;
}
@media (max-width: 768px) {
  #nav__logo__well--mobile {
    display: block;
  }
}
#nav__buttons__menu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 36px;
  margin: 0.4rem;
  background: var(--color-white);
  border-radius: 5px;
}
#nav__buttons__menu:before {
  content: "";
  position: absolute;
  height: calc(100% + 0.8rem);
  width: 1px;
  left: -0.4rem;
  background: var(--color-white-20);
  transform: scale3d(1, var(--open-ratio), 1);
  transform-origin: bottom;
}
#nav__buttons__menu:after {
  display: inline-block;
  content: "";
  position: absolute;
  height: calc(100% + 0.8rem);
  width: calc(100% + 0.8rem);
  left: -0.4rem;
  top: -0.4rem;
  background: rgba(254, 218, 126, 0.1);
  transition: opacity cubic-bezier(0.41, 0, 0.02, 1) 0.7s;
  opacity: 0;
}
#nav__buttons__menu:hover:after {
  opacity: 1;
}
@media (max-width: 768px) {
  #nav__buttons__menu {
    gap: 3px;
    width: 50px;
    height: 30px;
    border-radius: 3px;
  }
}
#nav__buttons__menu span {
  position: absolute;
  display: inline-block;
  height: 2px;
  border-radius: 10px;
  width: 20px;
  background: var(--color-black);
}
@media (max-width: 768px) {
  #nav__buttons__menu span {
    width: 15px;
  }
}
#nav__buttons__connect-with-us {
  padding: 0 2rem;
  white-space: nowrap;
  transition: background cubic-bezier(0.41, 0, 0.02, 1) 0.7s;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.05em;
}
#nav__buttons__connect-with-us:hover {
  background: rgba(254, 218, 126, 0.1);
}
#nav__buttons__connect-with-us:hover #nav__buttons__connect-with-us__wrapper {
  color: var(--color-yellow);
}
#nav__buttons__connect-with-us:hover .nav__buttons__connect-with-us__text {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 500;
}
#nav__buttons__connect-with-us:hover
  .nav__buttons__connect-with-us__text:first-child {
  transform: translate3d(0, -100%, 0);
}
#nav__buttons__connect-with-us:hover
  .nav__buttons__connect-with-us__text:last-child {
  transform: translateZ(0);
}
#nav__buttons__connect-with-us__wrapper {
  position: relative;
  overflow: hidden;
  transition: color 0.25s ease-in-out;
}
.nav__buttons__connect-with-us__text {
  transition: transform 0.5s cubic-bezier(0.5, 0, 0, 1);
  display: inline-block;
}
.nav__buttons__connect-with-us__text:last-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(0, 100%, 0);
}
#nav__buttons__connect {
  display: inline-block;
}
#nav__buttons__menu__top-left {
  transform-origin: left top;
  top: 15px;
}
@media (max-width: 768px) {
  #nav__buttons__menu__top-left {
    top: 12px;
  }
}
#nav__buttons__menu__top-right {
  transform-origin: right top;
  top: 15px;
}
@media (max-width: 768px) {
  #nav__buttons__menu__top-right {
    top: 12px;
  }
}
#nav__buttons__menu__bottom-left {
  transform-origin: left bottom;
  top: 21px;
}
@media (max-width: 768px) {
  #nav__buttons__menu__bottom-left {
    top: 18px;
  }
}
#nav__buttons__menu__bottom-right {
  transform-origin: right bottom;
  top: 21px;
}
@media (max-width: 768px) {
  #nav__buttons__menu__bottom-right {
    top: 18px;
  }
}
#nav__buttons__menu__circle {
  width: 4px !important;
  height: 4px !important;
  border-radius: 100%;
}
#menu {
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 50;
}
#menu__top {
  position: relative;
  padding: 2.225rem 4rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  -moz-column-gap: clamp(1.4rem, 2vw, 5.4rem);
  column-gap: clamp(1.4rem, 2vw, 5.4rem);
}
@media (max-width: 768px) {
  #menu__top {
    padding: 1.25rem;
  }
}
@media (min-width: 2000px) {
  #menu__top {
    padding: 2.225rem 10%;
  }
}
@media (max-width: 768px) {
  #menu__top {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
#menu__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0310;
  transform-origin: top;
}
#menu__menu {
  margin-top: 8rem;
  margin-bottom: 2.5rem;
  grid-column: 1 / span 6;
}
#menu__menu .menu__item__button svg {
  height: 5rem;
  position: absolute;
  left: -3rem;
  top: calc(50% - 2.5rem);
}
@media (max-width: 768px) {
  #menu__menu .menu__item__button svg {
    visibility: hidden;
  }
}
#menu__menu .menu__item__text {
  line-height: 1;
  font-size: clamp(2rem, 3vw, 3rem);
}
@media (max-width: 1024px) {
  #menu__menu .menu__item__text {
    font-size: 3.4vw;
  }
}
@media (max-width: 768px) {
  #menu__menu .menu__item__text {
    font-size: min(12vw, 2.75rem);
  }
}
@media (max-width: 768px) {
  #menu__menu {
    margin-top: 3rem;
    grid-column: 1 / span 4;
    text-align: center;
  }
}
#menu__resources {
  margin-top: 8rem;
  margin-bottom: 2.5rem;
  grid-column: 7 / span 4;
}
@media (max-width: 768px) {
  #menu__resources {
    grid-column: 1 / span 4;
    text-align: center;
    margin-top: 0;
  }
}
#menu__resources .menu__item__button {
  align-items: center;
}
@media (max-width: 768px) {
  #menu__resources .menu__item__button {
    justify-content: center;
  }
}
#menu__resources .menu__item__button svg {
  transition: 0.3s cubic-bezier(0.53, 0, 0.52, 1);
}
@media (max-width: 768px) {
  #menu__resources .menu__item__button svg {
    position: absolute;
    left: 2rem;
  }
}
#menu__resources .menu__item__button .menu__item__text {
  color: var(--color-white);
}
#menu__resources .menu__item__button:hover svg {
  transform: translate3d(5px, 0, 0) scale3d(1.4, 1.4, 1.4) rotate(45deg);
}
#menu__resources .menu__item__button:hover .menu__item__text {
  color: var(--color-white);
}
#menu__resources .menu__item__text {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02rem;
  line-height: 1;
  margin-left: 1rem;
  transition: color 0.15s ease-in-out;
  color: var(--color-white) !important;
}

@media (max-width: 768px) {
  #menu__resources .menu__item__text {
    font-size: 2.5rem;
  }
}

.menu__subtitle {
  opacity: 0.5;
  margin-bottom: 3rem;
}
.menu__subtitle .menu__subtitle__text {
  font-size: 0.775rem;
  font-family: Inconsolata, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
@media (max-width: 768px) {
  .menu__subtitle {
    margin-bottom: 2rem;
  }
}
.menu__item:not(:first-child) {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .menu__item {
    margin-left: auto;
    margin-right: auto;
  }
}
.menu__item__button {
  display: flex;
  position: relative;
}
@media (max-width: 768px) {
  .menu__item__button {
    margin: auto;
    max-width: min(57vw, 13rem);
  }
}
@media (max-width: 768px) {
  #menu__item__about {
    margin: auto;
    max-width: min(74vw, 20rem);
  }
}
.menu__item__number {
  color: var(--color-yellow);
  letter-spacing: 0.065rem;
  margin-left: 1rem;
  margin-top: 0.2rem;
  font-size: 0.625rem;
}
@media (max-width: 768px) {
  .menu__item__number {
    position: absolute;
    right: -2rem;
    margin-left: 0;
  }
}
#menu__footer__divider {
  position: absolute;
  left: 0;
  bottom: 5.5rem;
  background: var(--color-white);
  opacity: 0.1;
  height: 1px;
  width: 100%;
  transform-origin: left;
}
@media (max-width: 768px) {
  #menu__footer__divider {
    bottom: 3rem;
  }
}
#menu__footer {
  grid-column: 1 / span 12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  z-index: 1;
}
@media (max-width: 768px) {
  #menu__footer {
    grid-column: 1 / span 4;
  }
}
.menu__footer_items {
  display: flex;
  gap: 1.5rem;
  font-family: Inconsolata, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.menu__footer_item :hover {
  color: var(--color-white);
}
.menu__footer__button {
  font-size: 0.775rem;
  font-family: Inconsolata, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  transition: color 0.3s ease-in-out;
  color: var(--color-white-50);
}
.menu__footer__copyright__text {
  font-family: Inconsolata, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.775rem;
}
#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: auto;
  z-index: 50;
  padding: 2.225rem 4rem;
  font-family: Inconsolata, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.775rem;
}
@media (max-width: 768px) {
  #footer {
    padding: 1.25rem;
  }
}
@media (min-width: 2000px) {
  #footer {
    padding: 2.225rem 10%;
  }
}
@media (max-width: 768px) {
  #footer {
    font-size: 0.625rem;
  }
}
#footer * {
  font-family: Inconsolata, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.775rem;
}
@media (max-width: 768px) {
  #footer * {
    font-size: 0.625rem;
  }
}
#footer__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  overflow: hidden;
  align-items: flex-end;
  height: 56px;
}
@media (max-width: 768px) {
  #footer__container {
    height: 40px;
  }
}
#footer__view__button {
  position: absolute;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: 0.5rem;
  color: var(--color-white-50);
  cursor: default;
  border: 1px solid var(--color-white-20);
  border-radius: 5px;
}
#footer__buttons {
  display: flex;
  gap: 1rem;
  height: 100%;
}
@media (max-width: 768px) {
  #footer__buttons {
    gap: 1vw;
  }
}
.footer__links {
  display: flex;
  align-items: center;
  height: 100%;
  border: 1px solid var(--color-white-20);
  border-radius: 5px;
}
.footer__button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 1.4rem;
  height: 100%;
}
@media (max-width: 768px) {
  .footer__button {
    gap: 0.25rem;
    padding: 0 2vw;
  }
}
.footer__button a {
  width: 24px;
  height: 24px;
}
.footer__button:before {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 5px;
}
#footer__button__socials {
  border-left: 1px solid var(--color-white-20);
}
#footer__button__socials a,
#footer__button__socials button {
  display: flex;
  transition: color 0.25s ease-in-out;
}
#footer__button__socials a:hover,
#footer__button__socials button:hover {
  color: var(--color-yellow);
}
.button__text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.button__text span {
  color: var(--color-white-50);
}
#footer__ellipse__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 1.4rem;
  border: 1px solid var(--color-white-20);
  border-radius: 5px;
  transition: color 0.25s ease-in-out;
}
#footer__ellipse__button:before {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 5px;
}
@media (max-width: 768px) {
  #footer__ellipse__button {
    padding: 0 1rem;
  }
}
#footer__ellipse__button:hover {
  color: var(--color-yellow);
}
@media (max-width: 768px) {
  .footer__ellipse__icon {
    display: none;
  }
}
.footer__ellipse__icon--mobile {
  display: none;
}
@media (max-width: 768px) {
  .footer__ellipse__icon--mobile {
    display: block;
  }
}
.footer__stats {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1px;
  border: 1px solid var(--color-white-20);
  border-radius: 5px;
}
.footer__net {
  border-right: solid 1px var(--color-white-20);
}
.footer__net-label {
  text-align: center;
  width: 100px;
  white-space: nowrap;
}
@media (max-width: 1600px) {
  .footer__net-label {
    width: 60px;
  }
}
@media (max-width: 768px) {
  .footer__net-label {
    width: auto;
  }
}
.footer__net-label :first-child {
  color: var(--color-white-50);
}
.footer__net-graph {
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .footer__net-graph {
    display: none;
  }
}
.footer__net-graph-wave {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0;
  transform: translateY(-50%);
}
.footer__confidence :first-child {
  color: var(--color-white-50);
}
.footer__confidence-bar {
  position: relative;
  width: 8rem;
  min-width: 80px;
  height: 1px;
  overflow: hidden;
  background-color: var(--color-white-20);
}
@media (max-width: 1024px) {
  .footer__confidence-bar {
    display: none;
  }
}
.footer__confidence-bar-fill {
  position: absolute;
  inset: 0;
  background-color: var(--color-yellow);
  transform: translate(-22%);
}
#footer__net-type {
  color: var(--color-yellow);
}
@media (max-width: 768px) {
  #footer__button__follow {
    display: none;
  }
}
#footer__net__tooltip {
  position: absolute;
  width: 80%;
  max-width: 320px;
  top: -50%;
  left: 50%;
  padding: 20px 24px;
  transform: translate(-50%, -100%);
  border-radius: 5px;
  z-index: 2;
  background: #30334b;
  font-family: neue-haas-grotesk-display, sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.02em;
  text-transform: initial;
  font-size: 0.775rem;
}
@media (max-width: 768px) {
  #footer__net__tooltip {
    width: calc(100vw - 2.5rem);
    max-width: none;
    left: 0;
    transform: translateY(-100%);
  }
}
#footer__net__tooltip span {
  font-family: neue-haas-grotesk-text, sans-serif;
  font-weight: 500;
  text-transform: none;
}
#footer__net__tooltip:before {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translate(-50%, 40%) rotate(45deg);
  background: #30334b;
  z-index: 1;
}
@media (max-width: 768px) {
  #footer__net__tooltip:before {
    left: 20%;
  }
}
#blur_overlay {
  position: absolute;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  position: fixed;
  inset: 0;
  z-index: 65;
  pointer-events: all;
}
@media (max-width: 768px) {
  #footer__view__icon {
    display: none;
  }
}
#footer__view__icon--mobile {
  display: none;
}
@media (max-width: 768px) {
  #footer__view__icon--mobile {
    display: block;
  }
}
#contact {
  position: absolute;
  inset: 0;
  opacity: 0;
  align-items: center;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 60;
  color: var(--color-black);
  padding: 2.225rem 4rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  -moz-column-gap: clamp(1.4rem, 2vw, 5.4rem);
  column-gap: clamp(1.4rem, 2vw, 5.4rem);
}
@media (max-width: 768px) {
  #contact {
    padding: 1.25rem;
  }
}
@media (min-width: 2000px) {
  #contact {
    padding: 2.225rem 10%;
  }
}
@media (max-width: 768px) {
  #contact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  #contact {
    overflow-y: auto;
    padding: 0;
  }
}
#contact__container {
  position: relative;
  grid-column: 2 / span 10;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: clamp(1.4rem, 2vw, 5.4rem);
  background: #edf2fb;
  border-radius: 5px;
  height: 100%;
  box-sizing: border-box;
  padding: 4rem;
  max-height: 1200px;
}
@media (max-width: 768px) {
  #contact__container {
    height: auto;
    padding: 2rem;
    grid-column: 1 / span 4;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-radius: 0;
    max-height: none;
  }
}
#contact__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  width: 100%;
  left: 0;
  padding: 1rem;
}
@media (max-width: 768px) {
  #contact__header {
    padding: 1rem 2rem;
    border-bottom: solid 1px var(--color-black-10);
  }
}
#contact__header__logo {
  visibility: hidden;
}
@media (max-width: 768px) {
  #contact__header__logo {
    visibility: visible;
  }
}
#contact__header__button {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid var(--color-black-10);
  font-family: neue-haas-grotesk-text, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.05em;
}
#contact__header__button:before {
  content: "";
  position: absolute;
  height: calc(100% + 0.8rem);
  width: 1px;
  left: -0.4rem;
  background: var(--color-white-20);
  transform: scale3d(1, var(--open-ratio), 1);
  transform-origin: bottom;
}
#contact__header__button span {
  position: absolute;
  display: inline-block;
  height: 2px;
  width: 20px;
  background: var(--color-black);
}
#contact__header__button__top-left {
  transform-origin: left top;
  top: 15px;
  transform: translate3d(2px, -5px, 0) rotate(45deg) scale3d(0.3, 1, 1);
}
@media (max-width: 768px) {
  #contact__header__button__top-left {
    top: 16px;
  }
}
#contact__header__button__top-right {
  transform-origin: right top;
  top: 15px;
  transform: translate3d(-2px, -5px, 0) rotate(-45deg) scale3d(0.3, 1, 1);
}
@media (max-width: 768px) {
  #contact__header__button__top-right {
    top: 16px;
  }
}
#contact__header__button__bottom-left {
  transform-origin: left bottom;
  top: 21px;
  transform: translate3d(2px, 6px, 0) rotate(-45deg) scale3d(0.3, 1, 1);
}
@media (max-width: 768px) {
  #contact__header__button__bottom-left {
    top: 20px;
  }
}
#contact__header__button__bottom-right {
  transform-origin: right bottom;
  top: 21px;
  transform: translate3d(-2px, 6px, 0) rotate(45deg) scale3d(0.3, 1, 1);
}
@media (max-width: 768px) {
  #contact__header__button__bottom-right {
    top: 20px;
  }
}
#contact__header__button__circle {
  width: 4px !important;
  height: 4px !important;
  border-radius: 100%;
  transform: scaleZ(1);
}
.contact__texts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-column: 1 / span 4;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .contact__texts {
    grid-column: 1 / span 10;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .contact__texts {
    grid-column: 1 / span 4;
    margin-top: 10rem;
  }
}
.contact__subtitle {
  opacity: 0.5;
  letter-spacing: 0.1rem;
  margin-bottom: 3rem;
  font-size: 0.625rem;
}
.contact__title {
  margin-bottom: 3rem;
}
@media (max-width: 1280px) {
  .contact__title {
    font-size: 2.93vw;
  }
}
@media (max-width: 1024px) {
  .contact__title {
    font-size: 4vw;
  }
}
@media (max-width: 768px) {
  .contact__title {
    font-size: 6vw;
  }
}
.contact__title__line {
  display: block;
}
.contact__title__line:last-child {
  color: var(--color-blue);
}
.contact__description {
  text-transform: none;
  width: 80%;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .contact__description {
    font-size: 0.875rem;
  }
}
#contact__form__wrapper {
  display: flex;
  flex-flow: column;
  grid-column: 5 / span 6;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  #contact__form__wrapper {
    grid-column: 1 / span 10;
  }
}
@media (max-width: 768px) {
  #contact__form__wrapper {
    grid-column: 1 / span 4;
    margin-top: 0;
  }
}
#contact__form__title {
  font-family: Inconsolata, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.775rem;
  margin-bottom: 3rem;
  color: var(--color-black-50);
}
#contact__form__inputs-wrapper {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-content: flex-start;
  gap: clamp(1.4rem, 2vw, 5.4rem);
}
@media (max-width: 1024px) {
  #contact__form__inputs-wrapper {
    align-content: flex-end;
  }
}
#contact__form {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 100%;
}
#contact__form label {
  letter-spacing: 0.05rem;
  font-weight: 500;
  opacity: 0.2;
  text-transform: none;
  visibility: hidden;
  font-size: 0.625rem;
}
#contact__form input[type="text"],
#contact__form input[type="email"],
#contact__form input[type="tel"] {
  height: 3.5rem;
  background: transparent;
  color: var(--color-black);
  border-bottom: 1px solid var(--color) !important;
  font-family: neue-haas-grotesk-text, sans-serif;
  letter-spacing: 0.02rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  #contact__form input[type="text"],
  #contact__form input[type="email"],
  #contact__form input[type="tel"] {
    font-size: 0.875rem;
  }
}
#contact__form input:-webkit-autofill,
#contact__form input:-webkit-autofill:focus {
  -webkit-transition: background-color 600000s 0s, color 600000s 0s;
  transition: background-color 600000s 0s, color 600000s 0s;
}
#contact__form select {
  height: 3.5rem;
  background: transparent;
  color: var(--color-black);
  border: none;
  border-bottom: 1px solid var(--color) !important;
  font-family: neue-haas-grotesk-text, sans-serif;
  letter-spacing: 0.02rem;
  opacity: 0.6;
  font-size: 1rem;
}
#contact__form select option:disabled {
  color: var(--color-black);
}
@media (max-width: 768px) {
  #contact__form select {
    font-size: 0.875rem;
  }
}
#contact__form textarea {
  padding: 20px 0 0;
  background: transparent;
  color: var(--color-black);
  resize: none;
  grid-column: span 6 / span 6;
  border-bottom: 1px solid var(--color) !important;
  font-family: neue-haas-grotesk-text, sans-serif;
  letter-spacing: 0.02rem;
  font-size: 1rem;
}
@media (max-width: 768px) {
  #contact__form textarea {
    font-size: 0.875rem;
  }
}
.contact__form__input {
  display: flex;
  flex-direction: column;
  grid-column: span 3 / span 3;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .contact__form__input {
    grid-column: span 6 / span 6;
  }
}
#contact__form__callback {
  position: relative;
  min-width: 50%;
}
#contact__form__error,
#contact__form__success {
  position: absolute;
  top: 0;
  left: 0;
  text-transform: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  grid-column: 1 / span 3;
}
#contact__form__error.--is-active,
#contact__form__success.--is-active {
  opacity: 1;
}
#contact__form__error {
  color: var(--color-error);
}
#contact__form__success {
  color: var(--color-success);
}
#contact__form__button {
  padding: 15px 70px;
  border-radius: 5px;
  letter-spacing: 0.05rem;
  background: var(--color-black-10);
  color: var(--color-black);
  font-weight: 500;
  transition: opacity 0.3s ease-in-out;
  font-size: 0.775rem;
}
#contact__form__button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
#contact__form__bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
}
#home {
  opacity: 0;
  align-content: center;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  -moz-column-gap: clamp(1.4rem, 2vw, 5.4rem);
  column-gap: clamp(1.4rem, 2vw, 5.4rem);
}
@media (max-width: 768px) {
  #home {
    padding-bottom: 20vh;
  }
}
@media (max-width: 768px) {
  #home {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
#home.--hidden .home__button {
  pointer-events: none;
}
@media (max-width: 768px) {
  #home {
    align-content: flex-end;
  }
}
.home__title {
  grid-column: 1 / span 7;
  font-weight: 300;
  line-height: 1;
}
@media (max-width: 1280px) {
  .home__title {
    grid-column: 1 / span 9;
  }
}
@media (max-width: 1024px) {
  .home__title {
    grid-column: 1 / span 10;
  }
}
@media (max-width: 768px) {
  .home__title {
    grid-column: 1 / span 4;
  }
}
.home__description__wrapper {
  position: relative;
  grid-column: 1 / span 5;
  margin: 3rem 0;
}
@media (max-width: 1280px) {
  .home__description__wrapper {
    grid-column: 1 / span 8;
  }
}
@media (max-width: 768px) {
  .home__description__wrapper {
    grid-column: 1 / span 4;
    max-width: 30rem;
  }
}
@media (min-width: 2000px) {
  .home__description__wrapper {
    max-width: 40rem;
  }
}
.home__description {
  position: relative;
  text-transform: none;
  padding-left: 3rem;
  line-height: 1.4;
  font-size: 1.225rem;
  font-family: neue-haas-grotesk-text, sans-serif;
}
@media (max-width: 768px) {
  .home__description {
    font-size: 1.125rem;
  }
}
@media (max-width: 1280px) {
  .home__description {
    grid-column: 1 / span 8;
  }
}
@media (max-width: 768px) {
  .home__description {
    grid-column: 1 / span 4;
    max-width: 30rem;
  }
}
@media (min-width: 2000px) {
  .home__description {
    max-width: 40rem;
  }
}
.home__description__decoration {
  position: absolute;
  height: 100%;
  width: 2px;
  background: var(--color-white);
  left: 0;
  grid-column: 1 / 6;
}
.home__button {
  grid-column: 1 / 6;
  height: 4.2rem;
  width: 17.3rem;
  border-radius: 5px;
  background: var(--color-white-10);
  place-self: start;
  pointer-events: auto;
  transition: background cubic-bezier(0.41, 0, 0.02, 1) 0.7s;
  font-family: neue-haas-grotesk-text, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.05em;
}
.home__button:hover {
  background: rgba(254, 218, 126, 0.1);
}
@media (max-width: 768px) {
  .home__button {
    grid-column: 1 / 4;
  }
}
.home__button__text {
  font-size: 0.775rem;
}
#about__container {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  -moz-column-gap: clamp(1.4rem, 2vw, 5.4rem);
  column-gap: clamp(1.4rem, 2vw, 5.4rem);
}
@media (max-width: 1024px) {
  #about__container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
#hero__title__line {
  position: absolute;
  bottom: -5vh;
  left: 0;
  width: 100vw;
  height: 1px;
  background: var(--color-white-20);
  left: -4rem;
}
@media (max-width: 768px) {
  #hero__title__line {
    left: -1.25rem;
  }
}
@media (min-width: 2000px) {
  #hero__title__line {
    left: -10%;
  }
}
#hero__section {
  align-content: center;
}
@media (max-width: 768px) {
  #hero__section {
    align-content: flex-start;
  }
}
#hero__title {
  padding-top: calc(var(--vh, 1vh) * 15);
  grid-column: 1 / span 12;
  position: relative;
  font-size: clamp(6.3rem, 7.4vw, 12rem);
}
@media (max-width: 768px) {
  #hero__title {
    font-size: 12vw;
  }
}
@media (max-width: 1024px) {
  #hero__title {
    padding-top: calc(var(--vh, 1vh) * 15);
    grid-column: 1 / span 4;
  }
}
#hero__title__text > span > span {
  white-space: nowrap;
  padding-right: 1rem;
}
#hero__arrow__container {
  grid-column: 1 / span 12;
  margin-top: calc(var(--vh, 1vh) * 13);
  place-self: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  #hero__arrow__container {
    margin-top: calc(var(--vh, 1vh) * 10);
    grid-column: 1 / span 4;
  }
}
#hero__arrow__container svg {
  height: max(3vw, 3rem);
  transform: translate3d(0, 110%, 0);
}
#hero__description {
  grid-column: 3 / span 8;
  text-transform: none;
  margin-top: calc(var(--vh, 1vh) * 7);
  font-size: clamp(2rem, 3rem, 4rem);
  line-height: 1.1;
}
@media (max-width: 1024px) {
  #hero__description {
    grid-column: 1 / span 4;
    margin-top: calc(var(--vh, 1vh) * 5);
    font-size: min(8vw, 2.75rem);
  }
}
#hero__description .--blue {
  color: var(--color-blue);
}
#hero__subdescription {
  position: relative;
  grid-column: 3 / span 5;
  padding-left: 3rem;
  text-transform: none;
  margin-top: 3rem;
  margin-bottom: calc(var(--vh, 1vh) * 10);
  font-size: 1.225rem;
  font-family: neue-haas-grotesk-text, sans-serif;
}
@media (max-width: 768px) {
  #hero__subdescription {
    font-size: 1.125rem;
  }
}
@media (max-width: 1024px) {
  #hero__subdescription {
    grid-column: 1 / span 4;
  }
}
#hero__subdescription__decoration {
  position: absolute;
  width: 2px;
  background: var(--color-white);
  height: 100%;
  left: 0;
}
#crypto__left {
  grid-column: 1 / span 5;
  min-height: calc(var(--vh, 1vh) * 70) !important;
}
@media (max-width: 1024px) {
  #crypto__left {
    min-height: calc(var(--vh, 1vh) * 70) !important;
  }
}
@media (max-width: 768px) {
  #crypto__left {
    min-height: calc(var(--vh, 1vh) * 70) !important;
  }
}
#crypto__right {
  grid-column: 6 / span 7;
}
#team__left {
  grid-column: 1 / span 6;
}
@media (max-width: 1024px) {
  #team__left {
    order: 3;
  }
}
#team__right {
  grid-column: 7 / span 6;
  min-height: calc(var(--vh, 1vh) * 70) !important;
}
@media (max-width: 1024px) {
  #team__right {
    min-height: calc(var(--vh, 1vh) * 70) !important;
  }
}
@media (max-width: 768px) {
  #team__right {
    min-height: calc(var(--vh, 1vh) * 70) !important;
  }
}
#crypto__left,
#crypto__right,
#team__left,
#team__right {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: calc(var(--vh, 1vh) * 50);
  padding: 5rem 2rem;
}
@media (max-height: 2000px) {
  #crypto__left,
  #crypto__right,
  #team__left,
  #team__right {
    min-height: calc(var(--vh, 1vh) * 40);
  }
}
@media (max-height: 1280px) {
  #crypto__left,
  #crypto__right,
  #team__left,
  #team__right {
    min-height: calc(var(--vh, 1vh) * 60);
  }
}
@media (max-width: 1024px) {
  #crypto__left,
  #crypto__right,
  #team__left,
  #team__right {
    grid-column: 1 / span 4;
    min-height: calc(var(--vh, 1vh) * 20);
  }
}
#crypto__left__svg {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1024px) {
  #crypto__left__svg {
    width: 60%;
  }
}
#crypto__left__svg g {
  transform-origin: center center;
}
#crypto__right__header,
#team__left__header {
  opacity: 0.5;
  height: 100%;
  font-family: Inconsolata, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.775rem;
}
@media (max-width: 1024px) {
  #crypto__right__header,
  #team__left__header {
    margin-bottom: 2rem;
  }
}
#crypto__right__paragraph,
#team__left__paragraph {
  text-transform: none;
  max-width: 40rem;
  font-family: neue-haas-grotesk-text, sans-serif;
}
.team__circle {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  position: absolute;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
}
@media (max-width: 1024px) {
  .team__circle {
    width: 80px;
    height: 80px;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
  }
}
.team__circle p {
  text-align: center;
  font-family: Inconsolata, sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-size: 0.5rem;
}
.team__circle--yellow {
  border: 1px solid #feda7e;
}
.team__circle--blue {
  background: rgba(66, 84, 244, 0.25);
}
.team__ball {
  display: inline-block;
  position: absolute;
  top: calc(50% - 3px);
  left: calc(50% - 3px);
  height: 6px;
  width: 6px;
  border-radius: 100%;
}
.team__ball--yellow {
  background: #feda7e;
}
.team__ball--blue {
  background: #4254f4;
}
#team__right__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}
#crypto__right__decoration__left,
#team__right__decoration__left {
  display: inline-block;
  position: absolute;
  height: 100%;
  width: 1px;
  left: 0;
  top: 0;
  background: var(--color-white-20);
}
@media (max-width: 1024px) {
  #crypto__right__decoration__left,
  #team__right__decoration__left {
    visibility: hidden;
  }
}
#crypto__left__decoration__top,
#team__left__decoration__top {
  display: inline-block;
  position: absolute;
  height: 1px;
  width: calc(100% + clamp(1.4rem, 2vw, 5.4rem) + 4rem);
  top: 0;
  background: var(--color-white-20);
  left: -4rem;
}
@media (max-width: 1024px) {
  #crypto__left__decoration__top,
  #team__left__decoration__top {
    width: 100vw;
  }
}
@media (max-width: 768px) {
  #crypto__left__decoration__top,
  #team__left__decoration__top {
    left: -1.25rem;
  }
}
@media (min-width: 2000px) {
  #crypto__left__decoration__top,
  #team__left__decoration__top {
    width: calc(100% + clamp(1.4rem, 2vw, 5.4rem) + 10vw);
    left: -10vw;
  }
}
#crypto__right__decoration__top,
#team__right__decoration__top {
  display: inline-block;
  position: absolute;
  height: 1px;
  top: 0;
  left: 0;
  background: var(--color-white-20);
  width: calc(100% + clamp(1.4rem, 2vw, 5.4rem) + 4rem);
}
@media (max-width: 1024px) {
  #crypto__right__decoration__top,
  #team__right__decoration__top {
    width: 100vw;
    left: -4rem;
  }
}
@media (max-width: 768px) {
  #crypto__right__decoration__top,
  #team__right__decoration__top {
    left: -1.25rem;
  }
}
@media (min-width: 2000px) {
  #crypto__right__decoration__top,
  #team__right__decoration__top {
    width: calc(100% + clamp(1.4rem, 2vw, 5.4rem) + 20vw);
  }
}
#team__left__decoration__bottom {
  display: inline-block;
  position: absolute;
  height: 1px;
  bottom: 0;
  background: var(--color-white-20);
  left: -4rem;
  width: calc(100% + clamp(1.4rem, 2vw, 5.4rem) + 4rem);
}
@media (max-width: 1024px) {
  #team__left__decoration__bottom {
    width: 100vw;
    left: -4rem;
  }
}
@media (max-width: 768px) {
  #team__left__decoration__bottom {
    left: -1.25rem;
  }
}
@media (min-width: 2000px) {
  #team__left__decoration__bottom {
    width: calc(100% + clamp(1.4rem, 2vw, 5.4rem) + 10vw);
    left: -10vw;
  }
}
#team__right__decoration__bottom {
  display: inline-block;
  position: absolute;
  height: 1px;
  left: 0;
  bottom: 0;
  background: var(--color-white-20);
  width: calc(100% + clamp(1.4rem, 2vw, 5.4rem) + 4rem);
}
@media (max-width: 1024px) {
  #team__right__decoration__bottom {
    left: -4rem;
    width: 100vw;
  }
}
@media (max-width: 768px) {
  #team__right__decoration__bottom {
    left: -1.25rem;
  }
}
@media (min-width: 2000px) {
  #team__right__decoration__bottom {
    width: calc(100% + clamp(1.4rem, 2vw, 5.4rem) + 20vw);
  }
}
#team__right__logo__layer1 {
  opacity: var(--opacity-layer1);
}
#team__right__logo__layer2 {
  opacity: var(--opacity-layer2);
}
#team__right__logo__layer3 {
  opacity: var(--opacity-layer3);
}
#team__right__logo__layer4 {
  opacity: var(--opacity-layer4);
}
#team__right__logo__layer5 {
  opacity: var(--opacity-layer5);
}
.not-supported--content {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
html #not-supported-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
  display: none;
}
html.not-supported #canvas,
html.not-supported #ui {
  display: none;
}
html.not-supported body,
html.not-supported #not-supported-container {
  display: block;
}
html.not-supported--device .not-supported--content#ns-device,
html.not-supported--browser .not-supported--content#ns-browser,
html.not-supported--webgl .not-supported--content#ns-webgl,
html.not-supported--orientation .not-supported--content#ns-orientation {
  padding: 10px;
  border: 1px solid var(--color-error);
  display: block;
  z-index: 99999;
}
