/* ==========================================================================
   General Styles
   ========================================================================== */

/* Color Palette */

:root {
  --color-primary: #c1ff00;
  --color-dark: #0a1b01;
  --color-white: #fff;
  --color-black: #000000;
  --color-gray: #494949;

  --color-messageError: #ffc4c4;
  --color-messageSuccess: #00fff5;
  --color-fieldError: #eb5757;

  --font-title: "Lexend", sans-serif;
  --font-text: "Source Code Pro", monospace;
}

/* Main */

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  font-family: var(--font-text);
  background: var(--color-black);
  color: var(--color-white);
  margin: 0;
}

.main {
  overflow-x: hidden;
}

body {
  width: 100%;
}

/* Titles */
h1,
h2,
h3,
h4 {
  margin-top: 0;
  font-weight: 500;
  font-family: var(--font-title);
}

h1 {
  font-size: 64px;
  margin-bottom: 20px;
}

h2 {
  font-size: 62px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1px;
  margin-top: 0px;
}

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

.loading {
  background: var(--color-black);
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  z-index: 99999;
}

.loading img {
  width: 100px;
  animation: pulse-small 1s linear infinite;
}

video {
  width: 100%;
  clip-path: inset(2px 2px);
}

.color-primary {
  color: var(--color-primary);
}

.big-type {
  font-size: 20px;
  line-height: 28px;
}

.small-type {
  font-size: 12px;
  line-height: 18px;
}

/***********************
        HEADER
***********************/

header {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  padding: 15px 0;
}

header .logo {
  float: left;
  width: 120px;
}

header .logo img {
  max-width: 200px;
  width: 160px;
  transition: 0.4 all;
}

header .nav {
  list-style: none;
  float: right;
  font-weight: 700;
  display: flex;
  align-items: center;
  margin-right: 20px;
}

header .nav li {
  display: inline-block;
  font-size: 16px;
}

header .nav li a {
  position: relative;
  transition: all 0.3s;
  padding: 16px 16px 12px 16px;
  font-weight: normal;
  letter-spacing: 1px;
  font-family: var(--font-title);
  transition: 0.2s all;
}

header .nav li a:hover {
  color: var(--color-primary);
}

header .nav li a::before,
header .nav li a::after {
  position: absolute;
  width: 100%;
  height: 2%;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

header .nav li.active a::before,
header .nav li a::before {
  content: "";
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
header .nav li.active a::before,
header .nav li a:hover::before {
  transform-origin: 0 50%;
  transform: scale3d(1, 1, 1);
}

.nav-socials a {
  font-size: 22px;
  transition: 0.3s all;
  margin: 0px 5px;
}

.nav-socials a:hover {
  color: var(--color-primary);
}

#nav-icon {
  display: none;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 22px;
  top: 30px;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 2;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-white);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0;
}

#nav-icon span:nth-child(2) {
  top: 12px;
}

#nav-icon span:nth-child(3) {
  top: 24px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2) {
  top: 18px;
  transform: rotate(-135deg);
}

.nav-logo {
  display: none !important;
}

section {
  height: 100vh;
}

.w-50 {
  width: 50% !important;
}

.show-mobile {
  display: none;
}

/***********************
        SECTION 1
***********************/

.hero {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background: var(--color-black);
  background-size: cover;
}

.hero .container {
  z-index: 2;
}

.hero-title {
  z-index: 1;
}

.hero-video {
  position: absolute;
  width: 55%;
  top: 15%;
  right: -5%;
  z-index: 2;
  max-width: 1050px;
}

.hero-text {
  height: 150px;
}

.banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  text-transform: uppercase;
  background: var(--color-primary);
  z-index: 99;
  transition: top 0.3s ease-in-out;
}

.banner-text {
  font-size: 17px;
  letter-spacing: 2px;
  text-align: center;
  justify-content: center;
}

.banner.sticky {
  display: block;
  top: 0;
  z-index: 999;
  height: 15px;
  padding: 5px;
}

.banner.sticky .banner-text {
  font-size: 12px;
}

.reveal {
  position: relative;
}

.reveal-light {
  position: absolute;
  overflow: hidden;
  top: 0;
  transform: translate(100%, 0px);
  z-index: 2;
}

.light {
  position: relative;
  color: var(--color-black);
  background: var(--color-white);
  background-size: cover;
}

.light a {
  color: var(--color-black);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: -5%;
  z-index: 1;
  width: 100%;
  height: 100vh;
}

.hero-bg video {
  width: 100%;
  height: 100%;
}

/***********************
        SECTION 2
***********************/

.second {
  background: url("/images/bg.svg") no-repeat;
  background-size: cover;
}

.amount-highlight {
  background: var(--color-primary);
  color: var(--color-black);
  font-size: 54px;
  display: flex;
  line-height: inherit;
  padding: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-top: 5vh;
  margin-bottom: 20px;
}

.brokers {
  /* mix-blend-mode: lighten; */
}

.brokers video {
  max-width: 650px;
}

.insight-text {
  position: relative;
}

.insight-text .coin-1 {
  position: absolute;
  right: 0;
  top: -150px;
  width: 200px;
  /* mix-blend-mode: lighten; */
}

.second .coin-3 {
  position: absolute;
  width: 150px;
  left: -12%;
  bottom: -18%;
  /* mix-blend-mode: lighten; */
}

.second .star-1 {
  position: absolute;
  left: 0%;
  top: 5%;
}

.second .star-2 {
  position: absolute;
  left: 40%;
  bottom: 6%;
}

.rotation-right {
  animation: rotation 4s linear infinite;
  animation-direction: reverse;
}

.rotation-left {
  animation: rotation 4s linear infinite;
}

.coin-1-sprite {
  width: 150px;
  height: 150px;
  background-image: url("/images/coin-1-sprite.jpg");
  background-repeat: no-repeat;
  animation: spriteAnimation 2s steps(59) infinite;
  transform: scale(0.5);
  border-radius: 50%;
}

@keyframes spriteAnimation {
  from {
    background-position: 0px;
  }
  to {
    background-position: -8850px;
  }
}

.coin-2-sprite {
  width: 250px;
  height: 250px;
  background-image: url("/images/coin-2-sprite.jpg");
  background-repeat: no-repeat;
  animation: spriteAnimation2 2s steps(55) infinite;
  transform: scale(0.5);
  border-radius: 50%;
}

@keyframes spriteAnimation2 {
  from {
    background-position: 0px;
  }
  to {
    background-position: -13750px;
  }
}

.coin-3-sprite {
  width: 200px;
  height: 200px;
  background-image: url("/images/coin-3-sprite.jpg");
  background-repeat: no-repeat;
  animation: spriteAnimation3 2s steps(54) infinite;
  transform: scale(0.5);
  border-radius: 50%;
}

@keyframes spriteAnimation3 {
  from {
    background-position: 0px;
  }
  to {
    background-position: -10800px;
  }
}

.highlight-text {
  background: var(--color-primary);
  padding: 20px;
  color: var(--color-black);
  position: relative;
}

.text-underline {
  text-decoration: underline;
}

/* .highlight-text:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-primary);
  z-index: -1;
  transform: skewX(-20deg);
  transform-origin: 0 0;
} */

.highlight-text:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 45px;
  background: var(--color-primary);
  z-index: -1;
  transform: skewX(-20deg);
  transform-origin: 0 0;
}

/***********************
        SECTION 3
***********************/

.third {
  background: url("/images/bg.svg") no-repeat;
  background-size: cover;
}

.benefits {
  height: 90vh;
  position: relative;
}

.benefit {
  width: 270px;
  height: 270px;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dotted var(--color-black);
  border-radius: 100%;
  cursor: pointer;
  transition: 0.3s all;
}

.benefit:hover {
  border-color: var(--color-white);
}

.benefit h3 {
  margin-bottom: 0px;
  padding: 0px 10px;
  color: var(--color-gray);
}

.benefit:hover h3 {
  color: var(--color-white);
}

.benefit.active h3 {
  color: var(--color-primary);
}

.benefit img {
  width: 80px;
  margin-bottom: 20px;
  transition: 0.4s all;
}

.benefit:hover img {
  margin-bottom: 10px;
}

/* .third.active .benefit h3 {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.third.active .benefit img {
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
} */

/* @keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
} */

.text-box {
  height: 100px;
}

.no-1 {
  top: 30%;
  left: 30%;
  background: linear-gradient(rgb(0, 0, 0) 0 0) padding-box,
    linear-gradient(to bottom, #c1ff00, #000000) border-box;
  transition: 0.4s all;
  opacity: 0;
}

.third.active .no-1 {
  top: 5%;
  left: 31%;
  opacity: 1;
}

.no-2 {
  top: 20%;
  right: 35%;
  background: linear-gradient(rgb(0, 0, 0) 0 0) padding-box,
    linear-gradient(to bottom, #c1ff00, #000000) border-box;
  transition: 0.4s all;
  opacity: 0;
}

.third.active .no-2 {
  top: 5%;
  right: 31%;
  opacity: 1;
}

.no-3 {
  top: calc(50% - 150px);
  left: 30%;
  background: linear-gradient(rgb(0, 0, 0) 0 0) padding-box,
    linear-gradient(to left, #000000, #c1ff00) border-box;
  transition: 0.4s all;
  opacity: 0;
}

.third.active .no-3 {
  top: calc(50% - 150px);
  left: 19%;
  opacity: 1;
}

.no-4 {
  top: calc(50% - 150px);
  right: 30%;
  background: linear-gradient(rgb(0, 0, 0) 0 0) padding-box,
    linear-gradient(to right, #000000, #c1ff00) border-box;
  transition: 0.4s all;
  opacity: 0;
}

.third.active .no-4 {
  top: calc(50% - 150px);
  right: 19%;
  opacity: 1;
}

.no-5 {
  bottom: 30%;
  left: 35%;
  background: linear-gradient(rgb(0, 0, 0) 0 0) padding-box,
    linear-gradient(to bottom, #000000, #c1ff00) border-box;
  transition: 0.4s all;
  opacity: 0;
}

.third.active .no-5 {
  bottom: 5%;
  left: 31%;
  opacity: 1;
}

.no-6 {
  bottom: 20%;
  right: 35%;
  background: linear-gradient(rgb(0, 0, 0) 0 0) padding-box,
    linear-gradient(to bottom, #000000, #c1ff00) border-box;
  transition: 0.4s all;
  opacity: 0;
}

.third.active .no-6 {
  bottom: 5%;
  right: 31%;
  opacity: 1;
}

.benefit-center {
  width: 350px;
  height: 200px;
  display: flex;
  position: absolute;
  top: calc(50% - 100px);
  left: calc(50% - 175px);
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.benefit-center h2 {
  margin-bottom: 20px;
}

.third .star-1 {
  left: 20%;
  top: 10%;
  position: absolute;
}

.third .star-2 {
  right: 30%;
  bottom: 10%;
  position: absolute;
}

.third .star-3 {
  right: 20%;
  top: 20%;
  position: absolute;
}

.third .star-4 {
  left: 20%;
  top: 80%;
  position: absolute;
}

.third .star-5 {
  right: 20%;
  bottom: 30%;
  position: absolute;
}

.third .star-6 {
  left: 10%;
  top: 50%;
  position: absolute;
}

.fade-in {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/***********************
        SECTION 4
***********************/

.fourth {
  background: url("/images/bg.svg") no-repeat;
  background-size: cover;
}

.fourth .w-40 {
  z-index: 9;
}

.fourth .w-40 img {
  width: 100%;
}

.network {
  height: 40vh;
}

.network-img {
  border-radius: 100%;
  animation: pulse-small 4s cubic-bezier(0.39, 0.575, 0.565, 1) infinite both;
}

.network-img video {
  border-radius: 100%;
}

.networks {
  display: flex;
  padding: 20px 15%;
  position: absolute;
  margin-left: -30%;
  bottom: 0;
}

.networks a {
  color: var(--color-black);
  font-size: 64px;
  margin-right: 20px;
  transition: 0.3s all;
}

.networks a:hover {
  transform: scale(0.9);
}

.networks:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-primary);
  z-index: -1;
  transform: skewX(-20deg);
  transform-origin: 0 0;
}

.chain-name {
  position: absolute;
  font-size: 16px;
  z-index: 2;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 10px;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  transition: opacity 0.3s, visibility 0.3s;
}

.chains:hover .chain-name {
  opacity: 1;
  visibility: visible;
}

.fourth .coin-1 {
  position: absolute;
  right: 10%;
  bottom: 5%;
  width: 200px;
  z-index: 9;
  /* mix-blend-mode: lighten; */
}

.fourth .coin-2 {
  position: absolute;
  right: 10%;
  top: 5%;
  width: 150px;
  z-index: 9;
  /* mix-blend-mode: lighten; */
}

.fourth .coin-3 {
  position: absolute;
  left: 10%;
  bottom: 5%;
  width: 100px;
  z-index: 9;
  /* mix-blend-mode: lighten; */
}

.fourth .star-1 {
  left: 20%;
  top: 10%;
  position: absolute;
}

.fourth .star-2 {
  right: 30%;
  bottom: 10%;
  position: absolute;
}

.fourth .star-3 {
  right: 10%;
  top: 30%;
  position: absolute;
}

.fourth .star-4 {
  left: 50%;
  top: 25%;
  position: absolute;
}

/***********************
        SECTION 5
***********************/

.fifth {
  background: url("/images/bg.svg") no-repeat;
  background-size: cover;
  position: relative;
}

.ecosystem h2 {
  position: absolute;
  top: 10%;
  left: 10%;
}

.ecosystem img {
  width: 100%;
}

.fifth::after {
  content: "";
  width: 100%;
  height: 20%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 45%,
    rgba(0, 0, 0, 0) 100%
  );
}

.fifth .star-1 {
  top: 10%;
  left: 30%;
}

.fifth .star-2 {
  bottom: 10%;
  right: 10%;
}

.fifth .star-3 {
  bottom: 10%;
  left: 10%;
}

.fifth .star-4 {
  top: 5%;
  right: 10%;
}

.feature {
  margin-bottom: 20px;
}

.feature-header {
  cursor: pointer;
  color: var(--color-gray);
  margin-bottom: 0px;
  position: relative;
  transition: 0.3s all;
}

.feature-header:hover {
  color: var(--color-white);
}

.feature-header.active {
  color: var(--color-white);
}

.feature-header:before {
  width: 0px;
}

.feature-header.active:before {
  content: "";
  width: 50px;
  height: 1px;
  background: var(--color-primary);
  position: absolute;
  display: block;
  left: -70px;
  top: 10px;
  animation: scale-up-hor-right 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@keyframes scale-up-hor-right {
  0% {
    -webkit-transform: scaleX(0.2);
    transform: scaleX(0.2);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
  }
}

.feature-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-content.active {
  opacity: 1;
  max-height: 500px;
  transition: all 0.3s ease;
  transform: translateY(20px);
}

.elp-desc {
  padding: 20px;
  border: 1px solid var(--color-gray);
}

.ve-container {
  padding: 5vh 0;
}

.ve-tokens {
  border-bottom: 1px solid var(--color-gray);
  cursor: pointer;
}

.ve-tokens img {
  transition: 0.3s all;
}

.ve-tokens:hover {
  border-color: var(--color-primary);
}

.ve-tokens:hover img {
  filter: drop-shadow(0px 0px 6px rgba(128, 255, 1, 0.5));
  animation: wobble-hor-bottom 0.8s both;
}

@keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-10px) rotate(-6deg);
    transform: translateX(-10px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(10px) rotate(6deg);
    transform: translateX(10px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-10px) rotate(-3.6deg);
    transform: translateX(-10px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
    transform: translateX(-6px) rotate(-1.2deg);
  }
}

.ve-tokens h4 {
  margin-bottom: 10px;
}

.ve-tokens p {
  padding-right: 20px;
}

.ve-tokens img {
  max-width: 100px;
  margin-right: 20px;
}

.ecosystem-details {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  z-index: 1;
}

.ecosystem-details .coin-1 {
  max-width: 100px;
  left: 10%;
  position: absolute;
  top: 10%;
}

.ecosystem-details .coin-2 {
  max-width: 150px;
  position: absolute;
  right: 10%;
  bottom: 10%;
}

/***********************
       FOOTER
***********************/

.footer {
  position: absolute;
  bottom: 0%;
  left: calc(50% - 750px);
  z-index: 9;
  max-width: 1500px;
}

.footer-logo {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo:hover:before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: var(--color-primary);
  z-index: 9;
  animation: scale-up-hor-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  filter: drop-shadow(0px 0px 5px #c1ff00);
}

@keyframes scale-up-hor-center {
  0% {
    -webkit-transform: scaleX(0.1);
    transform: scaleX(0.1);
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

.line-footer {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background: var(--color-gray);
}

.footer-logo a {
  width: 80px;
  height: 80px;
  position: absolute;
  color: var(--color-gray);
  transition: 0.2s all;
  font-size: 64px;
  background: var(--color-black);
  border-radius: 100%;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo a:hover {
  color: var(--color-primary);
  text-shadow: 0px 0px 30px var(--color-primary);
}

.ecosystem-container {
  margin-top: -10vh;
}

.socials {
  width: 100%;
  padding: 0 0 4vh 0;
  border-bottom: 1px solid var(--color-gray);
  border-left: 0;
  border-right: 0;
  justify-items: center;
}

.socials a {
  font-size: 42px;
  transition: 0.2s all;
  z-index: 9;
}

.socials a:hover {
  color: var(--color-primary);
  transform: scale(0.9);
  text-shadow: 0px 0px 30px var(--color-primary);
}

.socials .chain-name {
  top: -80%;
}

.copyright {
  display: flex;
  margin: 15px 0;
  width: 50%;
  justify-content: space-around;
  font-size: 12px;
}

.copyright a:hover {
  color: var(--color-primary);
}

.div {
  width: 1px;
  height: 20px;
  display: flex;
  background: var(--color-white);
}

.mobile-wip {
  position: fixed;

  align-items: center;
  justify-content: center;
  background: var(--color-white);
  color: var(--color-black);
  width: 100%;
  height: 100%;
  z-index: 99999999;
  display: none;
}
