:root {
  --black-blue: #000;
  --white: white;
  --white-blue: #82ffff;
  --blue: #0037d9;
  --grey: #ffffffb3;
}

.section-see {
  width: 100svw;
  height: 100svh;
  padding: 7vw 7svw;
  position: relative;
}

.section-see.color-black {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: #00011f;
  flex-flow: column;
  display: flex;
}

.section-see.section-height {
  height: auto;
  min-height: 100svh;
}

.section-see.section-height.color-black-section {
  background-color: #000;
}

.section-see.section-height.color-black-section.section-none-padding {
  padding-bottom: 0;
}

.section-see.color-blue {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  background-color: var(--black-blue);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
}

.body {
  background-color: var(--black-blue);
  font-family: Neuemontreal, Arial, sans-serif;
}

.container-text {
  grid-column-gap: 5svw;
  grid-row-gap: 5svw;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.left-div {
  width: 70%;
}

.right-div {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  align-items: flex-start;
  width: 25%;
  display: flex;
}

.heading-text {
  color: var(--white);
  mix-blend-mode: difference;
  font-size: min(5vw, 80px);
  line-height: 110%;
}

.heading-text.txt-twk {
  text-transform: uppercase;
  font-family: Twkeverettmono, Arial, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
}

.heading-text.txt-twk.txt-uppercase {
  text-transform: uppercase;
  font-style: normal;
}

.heading-text.txt-twk.color-black {
  color: var(--black-blue);
}

.heading-text.txt-twk.color-white {
  color: var(--white);
}

.heading-text.txt-black {
  color: var(--black-blue);
}

.wrapper {
  max-width: 100vw;
  overflow-x: hidden;
}

.small-text {
  color: #fff;
  font-family: Twkeverettmono, Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
}

.small-text.uppercase-txt {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 400;
}

.navbar-no-shadow {
  z-index: 10;
  width: 100%;
  font-family: Twkeverettmono, Arial, sans-serif;
  font-weight: 300;
  position: fixed;
  top: 0;
}

.navbar-no-shadow-container {
  z-index: 5;
  background-color: var(--black-blue);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 7svw;
}

.container-regular {
  width: 100%;
  min-height: 30px;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navbar-brand {
  height: 50px;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: var(--white);
  letter-spacing: .25px;
  text-transform: uppercase;
  margin-left: 10px;
  margin-right: 10px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--white-blue);
  font-style: italic;
  font-weight: 400;
}

.nav-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  background-color: var(--black-blue);
  color: var(--blue);
}

.button-primary:active {
  background-color: #43464d;
}

.video-see {
  filter: hue-rotate(-20deg);
  background-color: #000;
  position: absolute;
  inset: 0%;
}

.video-see-loop {
  width: 100%;
  height: 100%;
  display: none;
  transform: rotate(180deg);
}

.home-div {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.home-div.felx-center {
  justify-content: flex-start;
  align-items: center;
}

.start-containter {
  width: 55%;
  padding-top: 3vw;
  position: absolute;
  left: 45%;
}

.btn-start-div {
  padding-top: 50px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.btn-arrow {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  cursor: pointer;
  z-index: 1;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 30px;
  display: grid;
}

.arrow {
  background-color: var(--white);
  color: var(--blue);
  text-align: center;
  width: 40px;
  height: 40px;
  font-family: Twkeverettmono, Arial, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 50px;
}

.arrow-txt {
  color: var(--black-blue);
  font-size: 30px;
  font-weight: 300;
  line-height: 40px;
}

.btn-txt {
  color: var(--white);
  text-transform: uppercase;
  font-family: Twkeverettmono, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.description-see {
  border-top: 1px solid #fff6;
  border-bottom: 1px solid #fff6;
  justify-content: space-between;
  align-items: center;
  width: 100svw;
  height: 100svh;
  margin-top: 7vw;
  margin-left: -7svw;
  display: flex;
}

.letter-animation-container {
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  bottom: 0;
}

.letter-animation-container.flex-right {
  justify-content: flex-end;
  align-items: flex-end;
}

.letter-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.btn-line-hover {
  background-color: var(--white);
  mix-blend-mode: difference;
  z-index: 1;
  width: 100%;
  height: 40px;
  position: absolute;
  left: -100%;
}

.footer-dark {
  background-color: var(--black-blue);
  color: var(--white);
  border-bottom: 1px solid #e4ebf3;
  padding: 7vw 7svw 15px;
  font-family: Twkeverettmono, Arial, sans-serif;
  font-weight: 400;
  position: relative;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-brand {
  width: 300px;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Neuemontreal, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}

.footer-link {
  color: var(--white);
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--white-blue);
  font-style: italic;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
}

.image, .image-2, .image-3 {
  filter: invert();
}

.description-3 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  grid-template-rows: 1fr min-content min-content;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  justify-content: center;
  place-items: flex-start center;
  width: 100%;
  height: 100%;
  padding: 5%;
  display: flex;
  position: relative;
  top: 0;
  left: 0;
}

.description-3.description-border {
  border-left: 1px solid #fff6;
  border-right: 1px solid #fff6;
}

.description-3.description-border.flex-center {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5%;
  display: flex;
}

.description-3.felx-up {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 5%;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.description-3.felx-down {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 5%;
  display: flex;
}

.small-square {
  background-color: var(--white);
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  right: -5px;
}

.image-svg {
  opacity: .6;
  width: 100%;
  height: 50%;
  margin-bottom: 5vh;
}

.image-svg.ai-bot-svg {
  background-image: url('../images/AI-BOT2-svg-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.image-svg.predictive-svg {
  background-image: url('../images/PLATE-svg-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.image-svg.discovery-svg {
  background-image: url('../images/DISCOVERY-svg-1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.txt-description {
  color: var(--grey);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}

.cubic-svg {
  width: 40vw;
  height: 40vw;
  display: none;
  position: absolute;
}

.cubic-svg-animation {
  width: 100%;
  height: 100%;
  position: static;
}

.container-big-txt {
  width: 100%;
}

.big-txt {
  color: var(--white);
  letter-spacing: -.5vw;
  text-transform: none;
  font-family: Twkeverettmono, Arial, sans-serif;
  font-size: 8vw;
  font-weight: 400;
  line-height: 120%;
}

.into-big-txt {
  width: 50%;
}

.how-it-works-wrap {
  z-index: 1;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.how-it-works-wrap.left-wrap {
  justify-content: flex-start;
  align-items: flex-start;
}

.content-how-it-works {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 350px;
  display: flex;
}

.seeing-eye-3d {
  width: 100%;
}

.spline-container {
  width: 100%;
  height: 100svh;
  position: absolute;
  inset: 50% 0% 0%;
  transform: translate(0, -50%);
}

.join-svg {
  opacity: 1;
  background-image: url('../images/Seeing-eye.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}

.join-svg-wrap {
  width: 30vw;
  height: 30vw;
}

.join-svg-wrap.deskop-version {
  display: block;
}

.join-svg-wrap.mobile-version {
  display: none;
}

.big-seeingeye {
  opacity: .15;
  color: var(--white);
  letter-spacing: -20px;
  text-transform: uppercase;
  justify-content: flex-start;
  align-items: flex-end;
  height: 80vh;
  font-family: Twkeverettmono, Arial, sans-serif;
  font-size: 25vw;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(30%);
}

.lock-telegram {
  background-image: url('../images/Lock-svg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  margin-left: -10px;
}

.list-item {
  display: flex;
}

.photo-3d {
  display: none;
}

.image-4 {
  width: 100%;
  height: 100%;
}

.fuck-you {
  background-color: var(--black-blue);
  z-index: 2;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
}

.fuck-you-txt {
  color: var(--white);
  text-transform: uppercase;
  font-family: Twkeverettmono, Arial, sans-serif;
  font-size: 5vw;
  font-weight: 500;
  line-height: 100%;
}

@media screen and (max-width: 991px) {
  .section-see {
    margin-bottom: 10vh;
  }

  .container-text {
    flex-flow: column;
  }

  .right-div {
    width: 100%;
  }

  .heading-text {
    font-size: 7vw;
  }

  .heading-text.txt-twk.color-white {
    font-size: 20px;
  }

  .heading-text.gsap-animation {
    margin-bottom: 10vh;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu {
    background-color: #000;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button {
    color: var(--white);
    background-color: #0000;
    padding: 12px;
    font-weight: 300;
  }

  .menu-button.w--open {
    color: var(--white-blue);
    background-color: #a6b1bf00;
  }

  .home-div {
    justify-content: flex-start;
    align-items: center;
  }

  .start-containter {
    z-index: 1;
    width: 90%;
    left: 0%;
  }

  .letter-animation-container {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .letter-container {
    width: 100%;
  }

  .container {
    max-width: 728px;
  }

  .footer-brand {
    width: 200px;
    margin-right: 20px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .txt-description {
    font-size: 18px;
  }

  .seeing-eye-3d {
    width: 120%;
    position: relative;
    left: -10%;
  }

  .join-svg {
    opacity: .39;
  }

  .join-svg-wrap {
    width: 60vw;
    height: 60vw;
    position: absolute;
    left: 50%;
  }

  .join-svg-wrap.deskop-version {
    transform: translateX(-50%);
  }

  .big-seeingeye {
    font-size: 40vw;
  }

  .solana-3d {
    opacity: .6;
    width: 100%;
  }

  .icon {
    font-size: 50px;
    line-height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .left-div {
    width: 100%;
  }

  .heading-text {
    font-size: 10vw;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .description-see {
    border-bottom-style: solid;
    flex-flow: column;
    height: auto;
  }

  .letter-container {
    width: 100%;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

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

  .footer-link:hover {
    color: #1a1b1fbf;
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .description-3 {
    padding-top: 10vh;
    padding-bottom: 10vh;
  }

  .description-3.description-border {
    border-left-style: none;
    border-right-style: none;
  }

  .small-square {
    display: none;
  }

  .image-svg {
    height: 30vh;
  }

  .big-txt {
    font-size: 12vw;
  }

  .into-big-txt {
    width: 80%;
  }

  .seeing-eye-3d {
    width: 150%;
    display: none;
    top: 15%;
    left: -25%;
    transform: rotate(90deg);
  }

  .spline-container {
    display: none;
  }

  .join-svg {
    animation: none;
  }

  .join-svg-wrap {
    width: 70vw;
    height: 70vw;
  }

  .big-seeingeye {
    height: auto;
    font-size: 50vw;
    display: none;
  }

  .list-item {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    justify-content: flex-start;
    align-items: center;
  }

  .solana-3d {
    opacity: .4;
  }

  .photo-3d {
    background-image: url('../images/');
    background-position: 50%;
    background-size: cover;
    display: block;
    position: absolute;
    inset: 0%;
  }
}

@media screen and (max-width: 479px) {
  .heading-text.txt-twk {
    font-size: 4vw;
  }

  .navbar-no-shadow-container {
    padding-bottom: 0;
  }

  .nav-menu {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .letter-container {
    width: 100%;
  }

  .container {
    max-width: none;
  }

  .seeing-eye-3d {
    width: 100%;
    left: 0%;
    transform: none;
  }

  .join-svg-wrap.deskop-version {
    display: none;
  }

  .join-svg-wrap.mobile-version {
    width: 100vw;
    height: 100vw;
    display: block;
    transform: translateX(-50%);
  }

  .solana-3d {
    display: none;
  }
}


@font-face {
  font-family: 'Neuemontreal';
  src: url('../fonts/NeueMontreal-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neuemontreal';
  src: url('../fonts/NeueMontreal-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neuemontreal';
  src: url('../fonts/NeueMontreal-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neuemontreal';
  src: url('../fonts/NeueMontreal-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Neuemontreal';
  src: url('../fonts/NeueMontreal-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Twkeverettmono';
  src: url('../fonts/TWKEverettMono-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Twkeverettmono';
  src: url('../fonts/TWKEverettMono-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Twkeverettmono';
  src: url('../fonts/TWKEverettMono-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Twkeverettmono';
  src: url('../fonts/TWKEverettMono-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}