@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

img, span {
  display: inline-block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

header {
  display: block;
  height: 8rem;
  position: fixed;
  z-index: 9999999;
  min-width: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(rgba(0, 0, 0, 0.9)));
  background-image: -o-linear-gradient(bottom, transparent, rgba(0, 0, 0, 0.9));
  background-image: linear-gradient(0deg, transparent, rgba(0, 0, 0, 0.9));
}
header::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
  -webkit-filter: blur(1rem);
          filter: blur(1rem);
}

.main_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(6vw, 4rem);
  height: 100%;
  -webkit-padding-start: 2rem;
          padding-inline-start: 2rem;
  -webkit-padding-end: 2rem;
          padding-inline-end: 2rem;
}

.nav_logo {
  height: 80%;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  -webkit-filter: saturate(200%) hue-rotate(-20deg);
          filter: saturate(200%) hue-rotate(-20deg);
}
.nav_logo > img {
  height: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.nav_logo:hover > img {
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}

.nav_item {
  font-size: 1.3rem;
  position: relative;
}
.nav_item > a {
  padding: 0.5em 0.8em;
  -webkit-transition: text-shadow 300ms ease;
  -o-transition: text-shadow 300ms ease;
  transition: text-shadow 300ms ease;
}
.nav_item > a:hover {
  text-shadow: 0 0 0.125rem #fff, 0 0 0.25rem #fff, 0 0 0.37rem #fff, 0 0 0.62rem #00f1ff, 0 0 2.81rem #00f1ff, 0 0 3.44rem #00f1ff;
}

.menu_toggle {
  width: 45px;
  height: 45px;
  margin-left: auto;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
  display: none;
  z-index: 9999999;
}
.menu_toggle .stripe {
  height: 3px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  -webkit-transition: top 150ms 150ms, opacity 150ms, -webkit-transform 150ms;
  transition: top 150ms 150ms, opacity 150ms, -webkit-transform 150ms;
  -o-transition: top 150ms 150ms, transform 150ms, opacity 150ms;
  transition: top 150ms 150ms, transform 150ms, opacity 150ms;
  transition: top 150ms 150ms, transform 150ms, opacity 150ms, -webkit-transform 150ms;
  opacity: 1;
}
.menu_toggle .stripe-1 {
  top: 7.5px;
}
.menu_toggle .stripe-2 {
  top: 20px;
}
.menu_toggle .stripe-3 {
  top: 32.5px;
}
.menu_toggle.open .stripe {
  -webkit-transition: top 150ms, opacity 150ms, -webkit-transform 150ms 150ms;
  transition: top 150ms, opacity 150ms, -webkit-transform 150ms 150ms;
  -o-transition: top 150ms, transform 150ms 150ms, opacity 150ms;
  transition: top 150ms, transform 150ms 150ms, opacity 150ms;
  transition: top 150ms, transform 150ms 150ms, opacity 150ms, -webkit-transform 150ms 150ms;
}
.menu_toggle.open .stripe-1 {
  top: 20px;
  -webkit-transform: rotateZ(45deg);
      -ms-transform: rotate(45deg);
          transform: rotateZ(45deg);
}
.menu_toggle.open .stripe-3 {
  top: 20px;
  -webkit-transform: rotateZ(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotateZ(-45deg);
}
.menu_toggle.open .stripe-2 {
  opacity: 0;
}

.mobile_nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(2rem) brightness(0.5);
          backdrop-filter: blur(2rem) brightness(0.5);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 200ms, visibility 200ms;
  -o-transition: opacity 200ms, visibility 200ms;
  transition: opacity 200ms, visibility 200ms;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.mobile_nav.open {
  opacity: 1;
  visibility: visible;
}
.mobile_nav .m_nav_item {
  font-size: 2rem;
}
.mobile_nav .m_nav_item > a {
  padding: 0.5em 0.8em;
  -webkit-transition: text-shadow 300ms ease;
  -o-transition: text-shadow 300ms ease;
  transition: text-shadow 300ms ease;
}
.mobile_nav .m_nav_item > a:hover {
  text-shadow: 0 0 0.125rem #fff, 0 0 0.25rem #fff, 0 0 0.37rem #fff, 0 0 0.62rem #00f1ff, 0 0 2.81rem #00f1ff, 0 0 3.44rem #00f1ff;
}

@media only screen and (max-width: 50rem) {
  .menu_toggle, .mobile_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .nav_item {
    display: none;
  }
}
@-webkit-keyframes bounce-to-left {
  0% {
    -webkit-transform: translateX(0rem);
            transform: translateX(0rem);
  }
  100% {
    -webkit-transform: translateX(-0.5rem);
            transform: translateX(-0.5rem);
  }
}
@keyframes bounce-to-left {
  0% {
    -webkit-transform: translateX(0rem);
            transform: translateX(0rem);
  }
  100% {
    -webkit-transform: translateX(-0.5rem);
            transform: translateX(-0.5rem);
  }
}
@-webkit-keyframes bounce-to-right {
  0% {
    -webkit-transform: translateX(0rem);
            transform: translateX(0rem);
  }
  100% {
    -webkit-transform: translateX(0.5rem);
            transform: translateX(0.5rem);
  }
}
@keyframes bounce-to-right {
  0% {
    -webkit-transform: translateX(0rem);
            transform: translateX(0rem);
  }
  100% {
    -webkit-transform: translateX(0.5rem);
            transform: translateX(0.5rem);
  }
}
#hero {
  -webkit-padding-before: 8rem;
          padding-block-start: 8rem;
  -webkit-padding-after: 8rem;
          padding-block-end: 8rem;
  display: -ms-grid;
  display: grid;
  place-content: center;
  place-items: center;
  width: 100%;
  max-width: 100rem;
}

.hero_title {
  text-align: center;
  font-size: clamp(2.2rem, 8vw, 6rem);
  position: relative;
}
.hero_title > span {
  text-shadow: 0 0 0.125rem #fff, 0 0 0.25rem #fff, 0 0 0.37rem #fff, 0 0 0.62rem #00f1ff, 0 0 2.81rem #00f1ff, 0 0 3.44rem #00f1ff, 0 0 4.37rem #00f1ff, 0 0 5rem #00f1ff;
}
.hero_title .hero_title_name {
  font-size: clamp(3.7rem, 10vw, 10rem);
  letter-spacing: 0.3em;
  margin-right: -0.2em;
  display: block;
}
.hero_title .no-shadow {
  position: absolute;
  top: 0;
  left: 0;
  text-shadow: none;
  -webkit-filter: blur(1px);
          filter: blur(1px);
}

.hero_socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-margin-before: 3rem;
          margin-block-start: 3rem;
}
.hero_socials > a {
  width: 3rem;
  border-radius: 50%;
  -webkit-transition: -webkit-box-shadow 300ms ease;
  transition: -webkit-box-shadow 300ms ease;
  -o-transition: box-shadow 300ms ease;
  transition: box-shadow 300ms ease;
  transition: box-shadow 300ms ease, -webkit-box-shadow 300ms ease;
}
.hero_socials > a:hover {
  -webkit-box-shadow: 0 0 0.125rem 0 #fff, 0 0 0.25rem 0 #fff, 0 0 0.37rem 0 #fff, 0 0 0.62rem 0 #00f1ff, 0 0 3rem 0 #00f1ff;
          box-shadow: 0 0 0.125rem 0 #fff, 0 0 0.25rem 0 #fff, 0 0 0.37rem 0 #fff, 0 0 0.62rem 0 #00f1ff, 0 0 3rem 0 #00f1ff;
}
.hero_socials > a > img {
  display: block;
  width: 100%;
}

.btn_scroll {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  font-family: inherit;
  cursor: pointer;
  -webkit-margin-before: 5rem;
          margin-block-start: 5rem;
  -webkit-margin-after: -5rem;
          margin-block-end: -5rem;
  -webkit-transition: text-shadow 300ms ease;
  -o-transition: text-shadow 300ms ease;
  transition: text-shadow 300ms ease;
}
.btn_scroll:hover {
  text-shadow: 0 0 0.125rem #fff, 0 0 0.25rem #fff, 0 0 0.37rem #fff, 0 0 0.62rem #00f1ff, 0 0 2.81rem #00f1ff, 0 0 3.44rem #00f1ff;
}
.btn_scroll > span {
  display: inline-block;
  -webkit-padding-end: 1rem;
          padding-inline-end: 1rem;
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}
.btn_scroll > span.bounce-to-left {
  -webkit-animation: bounce-to-left 500ms ease alternate infinite;
          animation: bounce-to-left 500ms ease alternate infinite;
}
.btn_scroll > span.bounce-to-right {
  -webkit-animation: bounce-to-right 500ms ease alternate infinite;
          animation: bounce-to-right 500ms ease alternate infinite;
}

section {
  position: relative;
  min-height: 100vh;
  -webkit-padding-before: 4rem;
          padding-block-start: 4rem;
  -webkit-padding-after: 4rem;
          padding-block-end: 4rem;
  -webkit-padding-start: 2rem;
          padding-inline-start: 2rem;
  -webkit-padding-end: 2rem;
          padding-inline-end: 2rem;
  width: 100%;
  max-width: 80rem;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
}
section:not(#hero)::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-filter: blur(6rem);
          filter: blur(6rem);
}

.section_title {
  text-align: center;
  font-size: clamp(2rem, 12vw, 4rem);
  -webkit-margin-after: 4rem;
          margin-block-end: 4rem;
  text-shadow: 0 0 0.125rem #fff, 0 0 0.25rem #fff, 0 0 0.37rem #fff, 0 0 0.62rem #00f1ff, 0 0 2.81rem #00f1ff, 0 0 3.44rem #00f1ff, 0 0 4.37rem #00f1ff, 0 0 5rem #00f1ff;
}

@media only screen and (max-width: 30rem) {
  section {
    -webkit-padding-start: 1rem;
            padding-inline-start: 1rem;
    -webkit-padding-end: 1rem;
            padding-inline-end: 1rem;
  }
}
#roadmap {
  margin-top: 6rem;
}

.roadmap_wrap {
  display: -ms-grid;
  display: grid;
  gap: 5rem;
}

.roadmap_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-backdrop-filter: blur(1rem) brightness(0.5);
          backdrop-filter: blur(1rem) brightness(0.5);
  padding: 3rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 0.62rem rgba(0, 241, 255, 0), 0 0 3rem 0 rgba(0, 241, 255, 0.7);
          box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 0.62rem rgba(0, 241, 255, 0), 0 0 3rem 0 rgba(0, 241, 255, 0.7);
  -webkit-transition: -webkit-box-shadow 300ms ease-out;
  transition: -webkit-box-shadow 300ms ease-out;
  -o-transition: box-shadow 300ms ease-out;
  transition: box-shadow 300ms ease-out;
  transition: box-shadow 300ms ease-out, -webkit-box-shadow 300ms ease-out;
}
.roadmap_item:last-child > .roadmap_content > div {
  font-size: 3rem;
  padding-left: 0;
  margin-top: -1rem;
}
.roadmap_item:last-child > .roadmap_content > div::before {
  content: none;
}
.roadmap_item:hover {
  -webkit-box-shadow: 0 0 0.125rem #fff, 0 0 0.25rem #fff, 0 0 0.37rem #fff, 0 0 0.62rem #00f1ff, 0 0 3rem #00f1ff;
          box-shadow: 0 0 0.125rem #fff, 0 0 0.25rem #fff, 0 0 0.37rem #fff, 0 0 0.62rem #00f1ff, 0 0 3rem #00f1ff;
}
.roadmap_item:hover .roadmap_title {
  text-shadow: 0 0 0.125rem rgba(255, 255, 255, 0.7), 0 0 0.25rem rgba(255, 255, 255, 0.7), 0 0 0.37rem rgba(255, 255, 255, 0.7), 0 0 0.62rem rgba(0, 241, 255, 0.7), 0 0 2.81rem rgba(0, 241, 255, 0.7), 0 0 3.44rem rgba(0, 241, 255, 0.7);
}

.roadmap_title {
  -webkit-padding-end: 3rem;
          padding-inline-end: 3rem;
  font-size: clamp(0.5rem, 8vw, 1.5rem);
  height: 100%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  white-space: nowrap;
  -webkit-transition: text-shadow 300ms ease-out;
  -o-transition: text-shadow 300ms ease-out;
  transition: text-shadow 300ms ease-out;
  position: relative;
}
.roadmap_title::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(40%, rgba(255, 255, 255, 0.7)), color-stop(60%, rgba(255, 255, 255, 0.7)), to(transparent));
  background-image: -o-linear-gradient(bottom, transparent, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0.7) 60%, transparent);
  background-image: linear-gradient(0deg, transparent, rgba(255, 255, 255, 0.7) 40%, rgba(255, 255, 255, 0.7) 60%, transparent);
  right: 0;
  top: 0;
}

.roadmap_content {
  -webkit-padding-start: 3rem;
          padding-inline-start: 3rem;
  -webkit-padding-end: 3rem;
          padding-inline-end: 3rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -ms-grid;
  display: grid;
  gap: 2rem;
  font-size: 1rem;
}
.roadmap_content > div {
  padding-left: 2em;
  position: relative;
}
.roadmap_content > div:before {
  content: "👾";
  position: absolute;
  left: 0;
}
.roadmap_content > div.done {
  text-decoration: line-through;
}
.roadmap_content > div.done:before {
  content: "✅";
}

@media only screen and (max-width: 60rem) {
  .roadmap_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .roadmap_title {
    padding: 0;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
  .roadmap_title::after {
    content: none;
  }

  .roadmap_content {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    -webkit-padding-end: 0;
            padding-inline-end: 0;
  }
}
#about {
  margin-top: 6rem;
}

.about_row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  place-items: center;
  padding: 5rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 3rem 0 rgba(0, 241, 255, 0.7);
          box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 3rem 0 rgba(0, 241, 255, 0.7);
  -webkit-backdrop-filter: blur(1rem) brightness(0.5);
          backdrop-filter: blur(1rem) brightness(0.5);
  font-size: clamp(1rem, 5vw, 1.2rem);
}
.about_row > img {
  width: 90%;
  max-width: 23rem;
}
.about_row > img.right {
  margin-left: 5rem;
}
.about_row > img.left {
  margin-right: 5rem;
}
.about_row > span.divider {
  width: 100%;
  height: 2px;
  grid-column: 1/-1;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.7)), to(transparent));
  background-image: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.7), transparent);
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
}
.about_row > div {
  width: 100%;
  max-width: 55ch;
  text-align: justify;
}
.about_row > div > h1 {
  -webkit-margin-after: 2rem;
          margin-block-end: 2rem;
}
.about_row > .as_seen {
  grid-column: 1/-1;
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.about_row > .as_seen .as_seen_content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2rem 1fr 2rem 1fr 2rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.about_row > .as_seen .as_seen_content > a {
  width: 100%;
  max-width: 12rem;
}
.about_row > .as_seen .as_seen_content > a:hover > img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.about_row > .as_seen .as_seen_content img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 300ms ease-out;
  transition: -webkit-transform 300ms ease-out;
  -o-transition: transform 300ms ease-out;
  transition: transform 300ms ease-out;
  transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
}

@media only screen and (max-width: 60rem) {
  .about_row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    padding: 3rem;
  }
  .about_row > div {
    text-align: start;
  }
  .about_row > img.right, .about_row > img.left {
    margin-left: 0;
    margin-right: 0;
  }
  .about_row > img.left {
    -ms-grid-row: 4;
    grid-row: 4;
  }
  .about_row > .as_seen .as_seen_content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 30rem) {
  .about_row > .as_seen .as_seen_content {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
  }
  20% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.bounce_letter:nth-child(1) {
  -webkit-animation-delay: 0ms;
          animation-delay: 0ms;
}

.bounce_letter:nth-child(2) {
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}

.bounce_letter:nth-child(3) {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}

.bounce_letter:nth-child(4) {
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}

.bounce_letter:nth-child(5) {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}

.bounce_letter:nth-child(6) {
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}

.bounce_letter:nth-child(7) {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}

:root {
  --gap: 2rem;
}

#team {
  margin-top: 6rem;
}

.team_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 3rem var(--gap);
  width: 100%;
}
.team_wrap > .team_member_large {
  border-radius: 1rem;
  -webkit-backdrop-filter: blur(1rem) brightness(0.5);
          backdrop-filter: blur(1rem) brightness(0.5);
  -webkit-box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 0.62rem rgba(0, 241, 255, 0), 0 0 3rem 0 rgba(0, 241, 255, 0.7);
          box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 0.62rem rgba(0, 241, 255, 0), 0 0 3rem 0 rgba(0, 241, 255, 0.7);
  -webkit-transition: -webkit-box-shadow 300ms ease-out;
  transition: -webkit-box-shadow 300ms ease-out;
  -o-transition: box-shadow 300ms ease-out;
  transition: box-shadow 300ms ease-out;
  transition: box-shadow 300ms ease-out, -webkit-box-shadow 300ms ease-out;
}
.team_wrap > .team_member_large:hover {
  -webkit-box-shadow: 0 0 0.125rem #fff, 0 0 0.25rem #fff, 0 0 0.37rem #fff, 0 0 0.62rem #00f1ff, 0 0 3rem #00f1ff;
          box-shadow: 0 0 0.125rem #fff, 0 0 0.25rem #fff, 0 0 0.37rem #fff, 0 0 0.62rem #00f1ff, 0 0 3rem #00f1ff;
}

.team_member_large {
  padding: 3rem;
  text-align: center;
  -ms-flex-preferred-size: calc(33% - var(--gap));
      flex-basis: calc(33% - var(--gap));
}
.team_member_large > img {
  width: 100%;
  max-width: 12rem;
  -webkit-transition: -webkit-transform 300ms ease-out;
  transition: -webkit-transform 300ms ease-out;
  -o-transition: transform 300ms ease-out;
  transition: transform 300ms ease-out;
  transition: transform 300ms ease-out, -webkit-transform 300ms ease-out;
}
.team_member_large h1 {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
  -webkit-margin-after: 0.7rem;
          margin-block-end: 0.7rem;
  font-size: 1.7rem;
}
.team_member_large h3 {
  color: lightgrey;
  font-weight: 300;
}
.team_member_large:hover > img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.team_member_large:hover .bounce_letter {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.team_subtitle {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  text-align: center;
  font-size: 2rem;
}

.team_mods {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  row-gap: 3rem;
  width: 100%;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 3rem 0 rgba(0, 241, 255, 0.7);
          box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 3rem 0 rgba(0, 241, 255, 0.7);
  -webkit-backdrop-filter: blur(1rem) brightness(0.5);
          backdrop-filter: blur(1rem) brightness(0.5);
  padding: 3rem 0;
  overflow: hidden;
}
.team_mods span.divider {
  width: calc(100% + 4rem);
  margin-left: -2rem;
  height: 2px;
  grid-column: 1/-1;
  background-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, 0.7)), to(transparent));
  background-image: -o-linear-gradient(left, transparent, rgba(255, 255, 255, 0.7), transparent);
  background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}
.team_mods span.divider.divider-on-3, .team_mods span.divider.divider-on-2 {
  display: none;
}

.team_small {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-margin-start: 3rem;
          margin-inline-start: 3rem;
  -webkit-margin-end: 3rem;
          margin-inline-end: 3rem;
}
.team_small > div {
  font-size: 1.2rem;
  text-align: center;
  -webkit-padding-before: 2rem;
          padding-block-start: 2rem;
  -webkit-padding-after: 2rem;
          padding-block-end: 2rem;
  position: relative;
  white-space: nowrap;
}
.team_small > div > span {
  -webkit-transition: -webkit-transform 300ms;
  transition: -webkit-transform 300ms;
  -o-transition: transform 300ms;
  transition: transform 300ms;
  transition: transform 300ms, -webkit-transform 300ms;
}
.team_small > div:hover > span {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.team_small > div::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: calc(100% + 2rem);
  width: 2px;
}
.team_small > div.top-5::after {
  top: -2rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(255, 255, 255, 0.7)));
  background-image: -o-linear-gradient(top, transparent, rgba(255, 255, 255, 0.7));
  background-image: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7));
}
.team_small > div.bottom-5::after {
  background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(rgba(255, 255, 255, 0.7)));
  background-image: -o-linear-gradient(bottom, transparent, rgba(255, 255, 255, 0.7));
  background-image: linear-gradient(0deg, transparent, rgba(255, 255, 255, 0.7));
}

@media only screen and (min-width: 50rem) {
  .team_small > div:nth-of-type(5n)::after {
    content: none;
  }
}
@media only screen and (max-width: 60rem) {
  :root {
    --gap: 1rem;
  }
}
@media only screen and (max-width: 50rem) {
  .team_member_large {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    padding-bottom: 3rem;
  }

  .team_mods {
    row-gap: 0;
  }

  .team_subtitle {
    margin-bottom: 3rem;
  }

  .team_small {
    grid-template-columns: repeat(3, 1fr);
  }
  .team_small span.divider.divider-on-5 {
    display: none;
  }
  .team_small span.divider.divider-on-3 {
    display: inline-block;
  }
  .team_small > div.last-mod, .team_small > div.empty-mod {
    display: none;
  }
  .team_small > div.top-3::after {
    top: -2rem;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(255, 255, 255, 0.7)));
    background-image: -o-linear-gradient(top, transparent, rgba(255, 255, 255, 0.7));
    background-image: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7));
  }
  .team_small > div.mid-3::after {
    top: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    background-image: none;
  }
  .team_small > div.bottom-3::after {
    top: 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(rgba(255, 255, 255, 0.7)));
    background-image: -o-linear-gradient(bottom, transparent, rgba(255, 255, 255, 0.7));
    background-image: linear-gradient(0deg, transparent, rgba(255, 255, 255, 0.7));
  }
}
@media only screen and (max-width: 50rem) and (min-width: 35rem) {
  .team_small > div:nth-of-type(3n)::after, .team_small > div.last-3::after {
    content: none;
  }

  .team_member_large {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .team_member_large > div {
    -webkit-margin-start: 2rem;
            margin-inline-start: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .team_member_large > div > h1 {
    -webkit-margin-before: 0;
            margin-block-start: 0;
  }
}
@media only screen and (max-width: 35rem) {
  .team_small {
    grid-template-columns: repeat(2, 1fr);
  }
  .team_small span.divider.divider-on-5 {
    display: none;
  }
  .team_small span.divider.divider-on-3 {
    display: none;
  }
  .team_small span.divider.divider-on-2 {
    display: inline-block;
  }
  .team_small > div.last-mod {
    display: block;
  }
  .team_small > div.top-2::after {
    top: -2rem;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(255, 255, 255, 0.7)));
    background-image: -o-linear-gradient(top, transparent, rgba(255, 255, 255, 0.7));
    background-image: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7));
  }
  .team_small > div.mid-2::after {
    top: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    background-image: none;
  }
  .team_small > div.bottom-2::after {
    top: 0;
    background-image: -webkit-gradient(linear, left bottom, left top, from(transparent), to(rgba(255, 255, 255, 0.7)));
    background-image: -o-linear-gradient(bottom, transparent, rgba(255, 255, 255, 0.7));
    background-image: linear-gradient(0deg, transparent, rgba(255, 255, 255, 0.7));
  }
  .team_small > div:nth-of-type(2n)::after {
    content: none;
  }
}
@media only screen and (max-width: 25rem) {
  .team_member_large h1 {
    font-size: 1.5rem;
  }
  .team_member_large h3 {
    font-size: 1rem;
  }

  .team_subtitle {
    font-size: 1.8rem;
  }

  .team_small {
    -webkit-margin-start: 1rem;
            margin-inline-start: 1rem;
    -webkit-margin-end: 1rem;
            margin-inline-end: 1rem;
  }
  .team_small > div {
    font-size: 1rem;
  }
}
@-webkit-keyframes roll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@keyframes roll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.sneakpeek {
  position: absolute;
  z-index: -1;
  width: 107vw;
  -webkit-transform: scale(1.1) rotate(-10deg);
      -ms-transform: scale(1.1) rotate(-10deg);
          transform: scale(1.1) rotate(-10deg);
  overflow-x: hidden;
  opacity: 0.3;
  mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(10%, black), color-stop(90%, black), to(transparent));
  mask-image: linear-gradient(0deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(10%, black), color-stop(90%, black), to(transparent));
  -webkit-mask-image: linear-gradient(0deg, transparent, black 10%, black 90%, transparent);
}
.sneakpeek .roll_wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation-name: roll;
          animation-name: roll;
  -webkit-animation-duration: 10s;
          animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
.sneakpeek .roll_wrap_2 {
  animation-direction: reverse;
}
.sneakpeek .roll_wrap > div {
  -ms-flex-preferred-size: 10%;
      flex-basis: 10%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  min-width: 5rem;
  max-width: 20rem;
}
.sneakpeek .roll_wrap img {
  width: 100%;
}

.link_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(1rem, 6vw, 2rem);
  gap: 2.5em;
}
.link_wrap > a {
  border-radius: 50%;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 30rem;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 0.62rem rgba(0, 241, 255, 0), 0 0 3rem 0 rgba(0, 241, 255, 0.7);
          box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 0.62rem rgba(0, 241, 255, 0), 0 0 3rem 0 rgba(0, 241, 255, 0.7);
  -webkit-transition: -webkit-box-shadow 300ms ease-out;
  transition: -webkit-box-shadow 300ms ease-out;
  -o-transition: box-shadow 300ms ease-out;
  transition: box-shadow 300ms ease-out;
  transition: box-shadow 300ms ease-out, -webkit-box-shadow 300ms ease-out;
}
.link_wrap > a:hover {
  -webkit-box-shadow: 0 0 0.125rem #fff, 0 0 0.25rem #fff, 0 0 0.37rem #fff, 0 0 0.62rem #00f1ff, 0 0 3rem #00f1ff;
          box-shadow: 0 0 0.125rem #fff, 0 0 0.25rem #fff, 0 0 0.37rem #fff, 0 0 0.62rem #00f1ff, 0 0 3rem #00f1ff;
}
.link_wrap img {
  width: 100%;
}
.link_wrap .link_title {
  position: absolute;
  top: 65%;
  left: 50%;
  width: 120%;
  -webkit-transform: rotate(-5deg) translateX(-50%);
      -ms-transform: rotate(-5deg) translateX(-50%);
          transform: rotate(-5deg) translateX(-50%);
  padding: 0.7em;
  background-color: #222;
  font-size: inherit;
  color: #fff;
  text-align: center;
  -webkit-margin-start: 0.4em;
          margin-inline-start: 0.4em;
  font-weight: 800;
}

dialog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100vh;
  min-width: 100%;
  z-index: 99999999;
  border: none;
  -o-border-image: none;
     border-image: none;
  color: #fff;
  margin: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: visible;
  opacity: 1;
  -webkit-transition: visibility 500ms, opacity 500ms;
  -o-transition: visibility 500ms, opacity 500ms;
  transition: visibility 500ms, opacity 500ms;
}

dialog:not([open]) {
  visibility: hidden;
  opacity: 0;
}

.dialog_body {
  -webkit-backdrop-filter: blur(1rem) brightness(0.5);
          backdrop-filter: blur(1rem) brightness(0.5);
  -webkit-box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 3rem 0 rgba(0, 241, 255, 0.7);
          box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 3rem 0 rgba(0, 241, 255, 0.7);
  border-radius: 1rem;
  width: 100%;
  max-width: 700px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 2rem 2rem;
}

.dialog_thank {
  display: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.dialog_img {
  width: 10rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.dialog_img > img {
  width: 100%;
  height: 100%;
}

.dialog_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.dialog_title {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  text-align: center;
}

.dialog_text {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  text-align: center;
}

.dialog_close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  padding: 0;
  aspect-ratio: 1/1;
  width: 2rem;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.dialog_input {
  background-color: white;
  border-radius: 5rem;
  border: none;
  padding: 0.7rem 1.2rem;
  font-size: 1.2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  -webkit-transition: -webkit-box-shadow 300ms;
  transition: -webkit-box-shadow 300ms;
  -o-transition: box-shadow 300ms;
  transition: box-shadow 300ms;
  transition: box-shadow 300ms, -webkit-box-shadow 300ms;
}
.dialog_input::-webkit-input-placeholder {
  font-family: inherit;
  color: rgba(0, 0, 0, 0.2);
}
.dialog_input::-moz-placeholder {
  font-family: inherit;
  color: rgba(0, 0, 0, 0.2);
}
.dialog_input:-ms-input-placeholder {
  font-family: inherit;
  color: rgba(0, 0, 0, 0.2);
}
.dialog_input::-ms-input-placeholder {
  font-family: inherit;
  color: rgba(0, 0, 0, 0.2);
}
.dialog_input::placeholder {
  font-family: inherit;
  color: rgba(0, 0, 0, 0.2);
}
.dialog_input:focus-visible {
  outline: none;
  -webkit-box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 0.62rem rgba(0, 241, 255, 0.7);
          box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 0.62rem rgba(0, 241, 255, 0.7);
}

.dialog_submit {
  border: none;
  border-radius: 5rem;
  background-color: white;
  color: #000;
  padding: 0.7rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: inherit;
  -webkit-transition: -webkit-box-shadow 300ms;
  transition: -webkit-box-shadow 300ms;
  -o-transition: box-shadow 300ms;
  transition: box-shadow 300ms;
  transition: box-shadow 300ms, -webkit-box-shadow 300ms;
  cursor: pointer;
}
.dialog_submit:hover, .dialog_submit:focus-visible {
  outline: none;
  -webkit-box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 0.62rem rgba(0, 241, 255, 0.7);
          box-shadow: 0 0 0.125rem 0 rgba(255, 255, 255, 0.7), 0 0 0.25rem 0 rgba(255, 255, 255, 0.7), 0 0 0.37rem 0 rgba(255, 255, 255, 0.7), 0 0 0.62rem rgba(0, 241, 255, 0.7);
}

@media only screen and (max-width: 30rem) {
  .dialog_input {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }

  .dialog_submit {
    width: 100%;
    padding: 0.5rem 1.2rem;
  }
}
@media only screen and (max-width: 45rem) {
  .dialog_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .dialog_img {
    width: 70%;
    max-width: 15rem;
  }
}
::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background: #01101b;
}

::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9cfaff;
}

body {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background-color: #01101b;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100vh;
  background-image: url("./images/bg.jpg");
  background-color: #01101b;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -10;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 1rem;
}
footer .footer_socials {
  margin-bottom: 10px;
}
footer .footer_socials a {
  margin: 0 5px;
}
footer .footer_socials a img {
  width: 3rem;
}