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

/* Color Palette */

:root {
  --color-primary: #C1FF03;
  --color-primary-hover: #E7F9B1;
  --color-dark: #0a1b01;
  --color-white: #fff;
  --color-black: #050505;
  --color-gray: #232323;

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

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

  /* fonts-size */
  --size-menu: 16px;
  --size-running-line: 18px;
  --size-h1: 64px;
  --size-p1: 46px;
  --size-p2: 28px;
  --size-t1: 24px;
  --size-t2: 18px;
  --size-btn: 16px;

  /* line-height */
  --line-menu: 1.1;
  --line-running-line: 1.5;
  --line-h1: 1.1;
  --line-p1: 1.1;
  --line-p2: 1.1;
  --line-t1: 1.5;
  --line-t2: 1.5;
  --line-btn: 1;

  /* letter-spacing */
  --letter-menu: calc(1em / 8);
  --letter-running-line: calc(1em / 4);
  --letter-h1: 0;
  --letter-p1: 0;
  --letter-p2: 0;
  --letter-t1: calc(1em / 10);
  --letter-t2: calc(1em / 20);
  --letter-btn: 0;

  /* font-weight */
  --weight-menu: 500;
  --weight-running-line: 400;
  --weight-h1: 300;
  --weight-p1: 300;
  --weight-p2: 300;
  --weight-t1: 400;
  --weight-t2: 400;
  --weight-btn: 500;
}

/* 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;
  padding: 0;
}
.reveal-light, .hero {
  padding: 0;
}

body {
  width: 100%;
}

p{
  margin: 0;
}

/* Titles */
.h1{
  font-size: var(--size-h1);
  font-weight: var(--weight-h1);
  line-height: var(--line-h1);
  letter-spacing: var(--letter-h1);
  margin-bottom: 32px;
}
.t1{
  font-size: var(--size-t1);
  font-weight: var(--weight-t1);
  line-height: var(--line-t1);
  letter-spacing: var(--letter-t1);
}
.t2{
  font-size: var(--size-t2);
  font-weight: var(--weight-t2);
  line-height: var(--line-t2);
  letter-spacing: var(--letter-t2);
}
.btn_text{
  font-weight: var(--weight-btn);
  line-height: var(--line-btn);
  letter-spacing: var(--letter-btn);
  font-size: var(--size-btn);
  margin: 0;
}
.p1{
  font-size: var(--size-p1);
  font-weight: var(--weight-p1);
  line-height: var(--line-p1);
  letter-spacing: var(--letter-p1);
}
.p2{
  font-size: var(--size-p2);
  font-weight: var(--weight-p2);
  line-height: var(--line-p2);
  letter-spacing: var(--letter-p2);
}
.running{
  font-size: var(--size-running-line);
  font-weight: var(--weight-running-line);
  line-height: var(--line-running-line);
  letter-spacing: var(--letter-running-line);
}
video::-webkit-media-controls {
  display: none; 
}



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

h2 {
  font-size: 48px;
}

h3 {
  font-size: 42px;
}

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

p {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: calc(1em / 20);
  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);
}

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

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

header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 46px 0;
  z-index: 1000;
  background: var(--color-black);
}

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

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

header .nav li a,
.secret_menu .nav li a{
  position: relative;
  transition: all 0.3s;
  padding: 12px 24px;
  font-weight: var(--weight-menu);
  letter-spacing: var(--letter-menu);
  font-family: var(--font-title);
  transition: 0.2s all;
  font-size: var(--size-btn);
}

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

header .nav li a::before,
header .nav li a::after,
.secret_menu .nav li a::before,
.secret_menu .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,
.secret_menu .nav li.active a::before,
.secret_menu .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,
.secret_menu .nav li.active a::before,
.secret_menu .nav li a:hover::before {
  transform-origin: 0 50%;
  transform: scale3d(1, 1, 1);
}
header a.logo{
  display: flex;
  align-items: center;
  justify-content: start;
}

.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: auto;
  padding-top: 160px;
}

.w-50 {
  width: 50% !important;
}
.w-60{
  width: 60%;
}
.w-20{
  width: 20%;
}
.w-70{
  width: 70%;
}
.w-30{
  width: 30%;
}
.w-40{
  width: 40%;
}

.show-mobile {
  display: none;
}

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

.hero {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background: var(--color-black);
  background-size: cover;
  position: relative;
}
.hero-dots-left{
  position: absolute;
  height: auto;
  width: auto;
  left: -10%;
  top: 0;
  z-index: 1;
  mix-blend-mode: lighten;
}
.hero-mouse{
  position: absolute;
  bottom: 102px;
  left: 50%;
  display: flex;
  align-items: start;
  justify-content: center;
  border-radius: 24px;
  border: 2px solid #fff;
  height: 54px;
  width: 34px;
  z-index: 2;
  animation: mouse-scroll 2s linear infinite;
}
.hero-mouse span{
  position: absolute;
  top: 14px;
  height: 13px;
  width: 2px;
  background: var(--color-primary);
  border-radius: 5px;
}

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

.hero-title {
  z-index: 1;
}
.hero-text {
  max-width: 500px;
  padding: 0px 12px;
}
.hero-text.no-limit{
  max-width: 100%;
}
.banner{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 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;
  transition: .3s;
}
.banner_active{
  z-index: -10;
  opacity: 0;
}
.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: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  mix-blend-mode: lighten;
  transform: translate(-15%,4%) scale(.9);
}

.hero_tg{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 24px;
  padding: 0px 12px;
  margin-top: 68px;
}
.hero_tg_btn{
  background: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 11px 24px 11px 22px;
  box-shadow: 
  0px 2.77px 2.21px 0px rgba(193, 255, 0, 0.02),
  0px 6.65px 5.32px 0px rgba(193, 255, 0, 0.03),
  0px 12.52px 10.02px 0px rgba(193, 255, 0, 0.04),
  0px 22.34px 17.87px 0px rgba(193, 255, 0, 0.04),
  0px 41.78px 33.42px 0px rgba(193, 255, 0, 0.05),
  0px 100px 80px 0px rgba(193, 255, 0, 0.07);
  transition: .3s;
  height: 54px;
  box-sizing: border-box;
  width: 270px;
}
.hero_tg_btn_benefits{
  padding-left: 24px;
}
.hero_tg_btn:hover{
  background: var(--color-primary-hover);
  box-shadow: 
  0px 2.77px 2.21px 0px rgba(231, 249, 177, 0.02),
  0px 6.65px 5.32px 0px rgba(231, 249, 177, 0.03),
  0px 12.52px 10.02px 0px rgba(231, 249, 177, 0.04),
  0px 22.34px 17.87px 0px rgba(231, 249, 177, 0.04),
  0px 41.78px 33.42px 0px rgba(231, 249, 177, 0.05),
  0px 100px 80px 0px rgba(231, 249, 177, 0.07);
}
.hero_tg_btn p{
  margin: 0;
  color: var(--color-black);
}
.powerd_by{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 12px;
}
.powerd_by p{
  margin: 0;
  font-weight: var(--weight-btn);
  line-height: var(--line-btn);
  letter-spacing: var(--letter-btn);
  font-size: var(--size-btn);
}
.powerd_by img{
  filter: grayscale(1) brightness(0);
  -webkit-filter: grayscale(1) brightness(0);
}

/***********************
        SECTION 2
***********************/
.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 video {
  max-width: 650px;
}
#third .brokers img{
  position: relative;
  z-index: 5;
  width: 100%;
}
.insight-text {
  position: relative;
}

.insight-text .coin-1 {
  position: absolute;
  right: 0;
  top: -150px;
  width: 200px;
}

.benefits .coin-3 {
  position: absolute;
  width: 150px;
  left: -12%;
  bottom: -18%;
}

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

.benefits .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: 445px;
  background: var(--color-primary);
  z-index: -1;
  transform: skewX(-20deg);
  transform-origin: 0 0;
}

/***********************
        SECTION 3
***********************/
.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
***********************/

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

.benefit {
  width: 300px;
  height: 300px;
  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;
  row-gap: 20px;
  mix-blend-mode: lighten;
}

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

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

.benefit img {
  transition: 0.4s all;
}

.text-box {
  height: 100px;
}

.no-1 {
  top: 30%;
  left: 30%;
  background: linear-gradient(rgb(5, 5, 5) 0 0) padding-box,
  linear-gradient(to bottom, #C1FF00 -100%, rgba(193, 255, 0, 0)) border-box;
  transition: 0.4s all;
  opacity: 0;
}

.about.active .no-1 {
  top: 0%;
  left: 33%;
  opacity: 1;
}

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

.about.active .no-2 {
  top: 0%;
  right: 33%;
  opacity: 1;
}

.no-3 {
  top: calc(50% - 150px);
  left: 30%;
  background: linear-gradient(rgb(5, 5, 5) 0 0) padding-box,
  linear-gradient(to right, #C1FF00 -100%, rgba(193, 255, 0, 0)) border-box;
  transition: 0.4s all;
  opacity: 0;
}

.about.active .no-3 {
  top: 30%;
  left: 23%;
  opacity: 1;
}

.no-4 {
  top: calc(50% - 150px);
  right: 30%;
  background: linear-gradient(rgb(5, 5, 5) 0 0) padding-box,
  linear-gradient(to left, #C1FF00 -100%, rgba(193, 255, 0, 0)) border-box;
  transition: 0.4s all;
  opacity: 0;
}

.about.active .no-4 {
  top: 30%;
  right: 23%;
  opacity: 1;
}

.no-5 {
  bottom: 30%;
  left: 35%;
  background: linear-gradient(rgb(5, 5, 5) 0 0) padding-box,
  linear-gradient(to top, #C1FF00 -100%, rgba(193, 255, 0, 0)) border-box;
  transition: 0.4s all;
  opacity: 0;
}

.about.active .no-5 {
  bottom: 0%;
  left: 33%;
  opacity: 1;
}

.no-6 {
  bottom: 20%;
  right: 35%;
  background: linear-gradient(rgb(5, 5, 5) 0 0) padding-box,
  linear-gradient(to top, #C1FF00 -100%, rgba(193, 255, 0, 0)) border-box;
  transition: 0.4s all;
  opacity: 0;
}

.about.active .no-6 {
  bottom: 0%;
  right: 33%;
  opacity: 1;
}

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

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

.about .coin-1 {
  position: absolute;
  right: 10%;
  bottom: 5%;
  width: 200px;
  z-index: 9;
}

.about .coin-2 {
  position: absolute;
  right: 10%;
  top: 5%;
  width: 150px;
  z-index: 9;
}

.about .coin-3 {
  position: absolute;
  left: 10%;
  bottom: 5%;
  width: 100px;
  z-index: 9;
}

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

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

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

.about .star-4 {
  left: 10%;
  top: 70%;
  position: absolute;
}

.about .star-5 {
  left: 25%;
  top: 90%;
  position: absolute;
}

.about .star-6 {
  right: 10%;
  top: 70%;
  position: absolute;
}

.about .container{
  height: 760px;
  position: relative;
}

.benefit img{
  max-height: 56px;
}

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

.fifth {
  position: relative;
  mix-blend-mode: lighten;
}

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

.ecosystem video {
  padding: 5%;
  box-sizing: border-box;
}

.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;
}

.features h3 {
  margin-bottom: 20px;
}

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

.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;
}

.feature-header img {
  width: 24px;
  margin-right: 10px;
  filter: grayscale(1);
  opacity: 0.2;
  transition: 0.3s all;
}

.feature-header.active img {
  filter: none;
  opacity: 1;
}

@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;
  display: none;
  overflow: hidden;
  transition: all 0.3s ease;
  color: var(--color-primary);
}

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

.feature-images {
  height: 80vh;
  position: relative;
}

.feature-images img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.8s all;
  transform: scale(1.1);
  object-fit: contain;
}

.feature-images img.active {
  opacity: 1;
  transform: scale(1);
}

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

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

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

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

.sixth .subtitle {
  font-size: 24px;
}

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

.footer {
  width: 100%;
  z-index: 3;
  margin-top: 5vh;
}

.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);
}

.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;
}

.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;
  flex-wrap: wrap;
  padding-bottom: 50px;
}
.copyright p.date_copyright{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

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

.footer-details {
  position: absolute;
  width: 100%;
  height: 100vh;
}

.footer-details .coin-1 {
  position: absolute;
  top: 10%;
  left: 0%;
}

.footer-details .coin-2 {
  position: absolute;
  bottom: 20%;
  right: 2%;
}

.footer-details .star-1 {
  position: absolute;
  top: 10%;
  right: 30%;
}

.footer-details .star-2 {
  position: absolute;
  bottom: 10%;
  left: 30%;
}

.footer-details .star-3 {
  position: absolute;
  top: 10%;
  left: 30%;
}

.footer-details .star-4 {
  position: absolute;
  bottom: 20%;
  right: 20%;
}

.referral-icons {
  width: 100%;
  display: grid;
  grid-template-columns: 19% 19% 19% 19% 19%;
  justify-content: space-around;
}

.referral-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}

.referral-item img {
  width: 100%;
  max-width: 80px;
  margin-bottom: 15px;
}

.referral-item::after {
  content: url("/images/arrow.svg");
  display: flex;
  width: 20px;
  height: 20px;
  position: absolute;
  right: -10%;
  top: calc(50% - 10px);
}

.referral-item:last-child:after {
  display: none;
}

.referral-item h5 {
  margin: 0px;
  font-size: 20px;
  font-weight: normal;
}

.referral h4 {
  font-size: 38px;
}

.ref-detail {
  font-size: 14px;
  color: var(--color-primary);
  margin: 0px;
}

.subtitle {
  color: var(--color-primary);
  font-size: 38px;
  margin-bottom: 20px;
  font-family: var(--font-title);
}

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

.sixth h2 {
  margin-bottom: 20px;
}

.ref-img {
  width: 100%;
  margin-top: 30px;
}

.terms {
  padding: 15vh 0 0 0;
  flex-direction: column;
}

.terms h3 {
  font-size: 28px;
}

.terms .footer {
  position: relative;
  left: 0;
}





/* yan_dev */
header .logo img{
  height: 36px;
}
.social_icons_header{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 44px;
}
.social_icons_header::after,
.social_icons_header::before{
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  background-image: url('/images/border-social-header.svg');
}
.social_icons_header::after{
  margin-left: 8px;
}
.social_icons_header::before{
  margin-right: 8px;
}
.social_icons_header a{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
}
header .nav{
  margin: 0;
}
header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .container .d-flex{
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 56px;
}
.btn_menu{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 24px;
  background: var(--color-primary);
  transition: .3s;
  max-height: 42px;
}
.btn_menu:hover{
  background: var(--color-primary-hover);
}
.btn_menu img{
  height: 32px;
  width: 32px;
}
.btn_menu p{
  color: #000000;
}
a.social{
  position: relative;
}
a.social img{
  filter: grayscale(1) brightness(1000);
  -webkit-filter: grayscale(1) brightness(1000);
}
a.social span{
  position: absolute;
  padding: 6px 8px;
  border: 1px solid var(--color-primary);
  border-radius: 4px 4px 4px 0px;
  background: var(--color-gray);
  bottom: 39px;
  left: 0;
  z-index: 10;
  opacity: 0;
  transition: .3s;
}
a.social span.btn_text{
  color: #fff;
}
a.social:hover span{
  opacity: 1;
}
a.social:hover img{
  filter: grayscale(0) brightness(1);
  -webkit-filter: grayscale(0) brightness(1);
}
.social_hero{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
  margin-top: 81px;
  margin-bottom: 32px;
}
.social_hero a.social img{
  filter: grayscale(1) brightness(0);
  -webkit-filter: grayscale(1) brightness(0);
}
.hero-video video{
  transform: scale(1.1);
}

.modal_bg{
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.8);
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: .3s;
}
.modal{
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 32px;
  padding: 100px;
}
.modal p{
  max-width: 521px;
  margin: 0;
  color: #000000;
}
.modal h2{
  max-width: 672px;
  margin: 0;
  color: #000000;
}
.modal_text{
  padding: 0px 12px;
}
.modal_btn{
  padding: 13px 24px;
  background: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: .3s;
  box-sizing: border-box;
}
.modal_btn p{
  color: #fff;
}
.modal_btn img{
  filter: grayscale(1) brightness(1000);
  -webkit-filter: grayscale(1) brightness(1000);
}
.modal_active{
  z-index: 100000;
  opacity: 1;
}
.modal_triger{
  cursor: pointer;
}
.modal_btn:hover{
  background: #434343;
}

/* news */
.news_header{
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
}
.news_header p.number_news span,
.news_header p.number_news{
  font-size: 190px;
  line-height: 220px;
  font-family: 'Lexend';
  font-weight: 200;
  margin: 0;
}
.news_header p.number_news span{
  width: auto;
  display: inline-block;
}
.news_header_number{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 32px;
  position: relative;
  width: 70%;
}
#news{
  padding-top: 160px;
  height: auto;
}
.news_header_number .coin-3-sprite{
  position: absolute;
  bottom: -100px;
  right: 0px;
  transform: rotate(200deg) scale(0.8);
  mix-blend-mode: lighten;
}
.btn_tg{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  cursor: pointer;
}
.btn_tg img{
  filter: grayscale(1) brightness(1000);
}
.btn_tg p{
  transition: .3s;
}
.btn_tg:hover p{
  color: var(--color-primary-hover);
}
.news_header_text{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 32px
}
.news_header_text p{
  max-width: 380px;
}
.news_header_text h2{
  margin: 0;
}
.news_body h4.news_body_subtitle{
  color: #969696;
}
.news_row{
  display: flex;
  align-items: stretch;
  justify-content: start;
  width: 100%;
  gap: 24px;
}
.news_div{
  border-radius: 4px 32px 4px 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  row-gap: 16px;
  border: 2px solid var(--color-gray);
  background: var(--color-black);
  height: auto;
  min-height: 313px;
  width: 32%;
  transform: scale(0.4);
  flex-grow: 1;
  position: relative;
  box-sizing: border-box;
}
.news_div p, .news_div h3{
  margin: 0;
}
.news_div p{
  max-width: 410px;
}
.news_div:nth-child(2),
.news_div:nth-child(3){
  border-radius: 4px;
  background: var(--color-gray);
}
.benefits-half .news_div{
  border-radius: 0px;
  height: auto;
  width: 100%;
  border-radius: 4px;
  background: linear-gradient(20.27deg, #FFFFFF 3.52%, #C1FF00 96.56%);
}
.first-half{
  display: flex;
  width: 63%;
  flex-wrap: wrap;
  flex-grow: 1;
  gap: 24px;
}
.benefits-half{
  width: 37%;
  overflow: hidden;
  display: flex;
  flex-grow: 1;
}
.benefits-half .news_div p,
.benefits-half .news_div h3{
  color: var(--color-black);
  max-width: 100%;
}
.news_div img.arrow_news{
  position: absolute;
  top: 32px;
  right: 32px;
}
.news_div a{
  color: var(--color-primary);
  text-decoration: underline;
}
.social_news{
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
}
.benefits-half .news_div a{
  color: #000000;
}
.news_div{
  position: relative;
}
.news_div:first-child img.icon-electra{
  position: absolute;
  bottom: 0%;
  right: 0%;
  z-index: -1;
}
.news_div:nth-child(2) img.icon-electra{
  position: absolute;
  bottom: 0%;
  left: 0%;
  z-index: -1;
  opacity: .05;
}
.news_div:nth-child(3) img.icon-electra{
  position: absolute;
  top: 0%;
  right: 0%;
  z-index: -1;
}
.news_div:nth-child(4) img.icon-electra{
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: -1;
}



/* stars */
.about .star-1 img, .about .star-2 img,
.about .star-3 img, .about .star-4 img, 
.about .star-5 img, .about .star-6 img,
.about .star-7 img, .about .star-8 img, 
.about .star-9 img, .about .star-10 img,
.about .star-11 img, .about .star-12 img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about .star-1{
  top: 15%;
  left: 20%;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .star-2{
  top: 4%;
  left: 15%;
  height: 12px;
  width: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .star-3{
  top: 11%;
  left: 6%;
  height: 7px;
  width: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .star-4{
  top: auto;
  bottom: 23%;
  left: 22%;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .star-5{
  top: auto;
  bottom: 18%;
  left: 15%;
  height: 12px;
  width: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .star-6{
  top: auto;
  bottom: 7%;
  left: 19%;
  height: 7px;
  width: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .star-7{
  top: 23%;
  right: 22%;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.about .star-8{
  top: 18%;
  right: 15%;
  height: 12px;
  width: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.about .star-9{
  top: 7%;
  right: 19%;
  height: 7px;
  width: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.about .star-10{
  bottom: 15%;
  right: 20%;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.about .star-11{
  bottom: 4%;
  right: 15%;
  height: 12px;
  width: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.about .star-12{
  bottom: 11%;
  right: 6%;
  height: 7px;
  width: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.benefits{
  mix-blend-mode: lighten;
}
.benefits .container{
  position: relative;
}
.benefits .coin-1{
  top: auto;
  bottom: 34%;
  left: 60%;
  position: absolute;
  width: 80px;
  mix-blend-mode: lighten;
  z-index: 3;
}
.benefits h2 span{
  background: var(--color-primary);
  color: var(--color-black);
  padding: 0px 10px 0px 6px;
}
.benefits h2{
  margin: 0;
}
.benefits .w-40{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 56px;
}
.highlight-text:after{
  display: block;
  left: -405px;
  z-index: -1;
}
.highlight-text.t1{
  text-transform: uppercase;
  margin-left: -10%;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

/* trade_across */
#trade_across{
  height: 740px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  overflow: visible;
  z-index: 3;
}
/* .trade_across_img{
  display: flex;
  align-items: center;
  justify-content: center;
}
.trade_across_img img{
  border-radius: 50%;
}
.trade_across_img img:first-child{
  margin-right: -40px;
}
.trade_across_img img:last-child{
  margin-left: -40px;
}
.trade_across_img img:nth-child(2){
  position: relative;
  z-index: 10;
  box-shadow: 0px 8.11px 6.49px 0px rgba(0, 0, 0, 0.02),
  0px 36.7px 29.36px 0px rgba(0, 0, 0, 0.04),
  0px 65.46px 52.37px 0px rgba(0, 0, 0, 0.04),
  0px 122.44px 97.95px 0px rgba(0, 0, 0, 0.05),
  0px 293.06px 234.45px 0px rgba(0, 0, 0, 0.07);

} */
.trade_across_bg{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 40%;
}
.trade_across_bg img:first-child{
  left: -30px;
  position: absolute;
}
.trade_across_bg img:last-child{
  right: -30px;
  position: absolute;
  padding-top: 120px;
}
.trade_across_bg::before{
  content: "";
  width: 100%;
  height: 100%;
  display: block;
}
#trade_across .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 64px;
}
#trade_across p{
  text-align: center;
  max-width: 510px;
}
.trade_across{
  height: 300px;
  width: 300px;
  display: block;
  border-radius: 50%;
  filter: blur(300px);
  -webkit-filter: blur(300px);
  position: absolute;
  background: var(--color-primary);
}


/* third */
#third{
  mix-blend-mode: lighten;
  position: relative;
}
#third .w-50 p, #third .w-50 h2{
  max-width: 590px;
}
#third .w-50 p a{
  color: var(--color-primary);
  text-decoration: underline;
}
#third .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#third .star-1 img,
#third .star-2 img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#third .star-1{
  position: absolute;
  left: auto;
  top: 20%;
  right: 5%;
  height: 16px;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#third .star-2{
  position: absolute;
  left: auto;
  top: 80%;
  right: 95%;
  height: 9px;
  width: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* quick_start */
.quick_start_row{
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 32px;
  flex-wrap: wrap;
}
.quick_start_div{
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  padding: 32px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(5, 5, 5, 0.2);
  width: 24%;
  flex-grow: 1;
  height: 550px;
  border-radius: 4px;
  transition: .3s;
}
.quick_start_text{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 16px;
}
.quick_start_text h4, .quick_start_text p{
  margin: 0;
}
.quick_start_div img{
  position: absolute;
  bottom: 0px;
  right: 32px;
  transition: .3s;
  /* max-width: calc(100% - 64px); */
}
.quick_start_div:nth-child(3n){
  background: var(--color-primary);
  border: 0px solid rgba(255, 255, 255, 0.3);
}
.quick_start_div:nth-child(3n) h4, 
.quick_start_div:nth-child(3n) p{
  color: var(--color-black);
}
.quick_start_div:nth-child(2),
.quick_start_div:nth-child(4){
  background: var(--color-gray);
  border: 0px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 10;
}
.quick_start_div:nth-child(2){
  position: relative;
  z-index: 10;
}
/* .quick_start_div:first-child:hover,
.quick_start_div:last-child:hover{
  transform: rotate(6deg);
}
.quick_start_div:nth-child(3):hover,
.quick_start_div:nth-child(4):hover{
  transform: rotate(-4deg);
}
.quick_start_div:first-child:hover img.mouse{
  transform: rotate(-20deg);
}
.quick_start_div:nth-child(4):hover img.eye{
  transform: rotate(20deg);
}
.quick_start_div:nth-child(2):hover{
  transform: rotate(-10deg);
}
.quick_start_div:nth-child(5):hover{
  transform: rotate(6deg);
} */

/* ecosystem */
.features h3, .features p{
  max-width: 610px;
}
.feature-header.active:before{
  left: -120px;
}
.features h3{
  margin: 0;
  margin-bottom: -4px;
}
.features{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 26px;
}
.feature-header img{
  margin: 0;
}
.feature-header{
  gap: 15px;
}
.milestones_conten{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
}
.milestones_conten p{
  max-width: 300px;
  text-align: center;
  color: var(--color-gray);
}
.milestones_conten span.active{
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.milestones_conten span{
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
  border: 1px solid var(--color-gray);
}
.milestones_conten_span{
  height: 52px;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.milestones_conten span.active::before{
  height: 36px;
  width: 36px;
  display: block;
  background: var(--color-primary);
  opacity: 0.5;
  content: "";
  border-radius: 50%;
  position: absolute;
  z-index: 2;
}
.milestones_conten span.active::after{
  height: 52px;
  width: 52px;
  display: block;
  background: var(--color-primary);
  opacity: 0.1;
  content: "";
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  animation: milestones_circle 2s linear infinite;
}
#milestones h2{
  width: 100%;
  text-align: center;
  margin-bottom: 90px;
}
.milestones_div{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  row-gap: 60px;
  padding: 0px 80px;
  height: 470px;
  position: relative;
  width: 26%;
  flex-grow: 1;
}
.milestones_conten.active p{
  color: #fff;
}
.milestones_div:first-child:after,
.milestones_div:last-child:after{
  content: "";
  height: 100%;
  width: 1px;
  display: block;
  background-image: url('../images/milestones/border-left.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
  position: absolute;
  left: 0;
  top: 0;
}
.milestones_div:first-child::before,
.milestones_div:last-child:before{
  content: "";
  height: 100%;
  width: 1px;
  display: block;
  background-image: url('../images/milestones/border-right.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 3;
  position: absolute;
  right: 0;
  top: 0;
}
.milestones_row{
  display: flex;
  align-items: start;
  justify-content: start;
}
.footer_icons{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 58px 205px 81px 205px;
  border-bottom: 1px solid var(--color-gray);
  box-sizing: border-box;
  margin-bottom: 50px;
}
.copyright{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin-bottom: 50px;
}
.copyright a span{
  color: var(--color-primary);
}
.marquee{
  animation: scroll 20s linear infinite;
}
.banner_row{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.item{
  display: flex;
  align-items: center;
  justify-content: center;
}
.items-wrap {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 48px;
  padding: 10px 0px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.items-wrap:before,
.items-wrap:after {
  content: "";
  height: 100%;
  top: 0;
  width: 10%;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.items {
  flex-shrink: 0;
  display: flex;
  gap: 48px;
  counter-reset: item;
  justify-content: space-around;
  min-width: 100%;
}
.marquee {
  animation: scroll 20s linear infinite;
}
.reverce {
  animation-direction: reverse;
}
.items p{
  font-family: 'Lexend';
}
.items img{
  height: 32px;
  width: 32px;
}
.brokers .coin-1{
  position: absolute;
  z-index: 10;
}
#benefits .w-50{
  position: relative;
  z-index: 10;
}
#benefits .btn_tg{
  align-items: center;
  justify-content: end;
  width: 100%;
}


/* 10.09.24 */
#benefits .coin-1-sprite{
  transform: scale(0.6);
}
#benefits .coin-1{
  position: absolute;
  bottom: 10px;
  right: 45%;
  left: auto;
}
.milestones_conten p{
  color: #969696;
}
.milestones_conten span{
  border: 1px solid #969696;
}
#milestones h2{
  margin-bottom: 68px;
}
.benefit h4{
  font-family: 'Lexend';
  padding: 0px 20px;
}
#trade_across p{
  max-width: 400px;
}
.body_overflow{
  overflow: hidden;
}

.bg_circle_menu{
  position: absolute;
  top: 0;
  right: 0%;
  z-index: 1;
  overflow: hidden;
  height: 100%;
  width: auto;
  mix-blend-mode: lighten;
}
#error{
  height: auto;
}
#error .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  row-gap: 33px;
  max-width: 440px;
  height: calc(100vh - 160px);
  position: relative;
}
#error .container img{
  margin-top: 11px;
  height: auto;
  width: 100%;
  position: absolute;
  bottom: 0;
}
#error .container a.logo img{
  height: 28px;
  width: auto;
  position: relative;
  bottom: auto;
  margin: 0;
}
#error .container h1{
  margin: 0;
}
#error .container p.t1{
  max-width: 500px;
  text-align: center;
}
header .hero_tg_btn{
  box-shadow: 0 0 0;
}

/* bulls */
#bulls{
  position: relative;
  height: auto;
  padding-bottom: 145px;
}
#bulls .container{
  position: relative;
  z-index: 3;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bulls_bg{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#bulls .w-60 img{
  width: 80%;
  height: auto;
  transform: rotate(-45deg);
  margin-top: -240px;
}
#bulls .w-60{
  margin-right: -300px;
}
#bulls .w-40{
  max-width: 607px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  row-gap: 40px;
  background: var(--color-black);
}
.bulls_text{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 16px;
}
.line_circle{
  position: absolute;
  top: 660px;
  left: 0;
  z-index: 2;
}
.bulls_text h2,
.bulls_text h3{
  margin: 0;
}
#bulls .w-100{
  display: flex;
  align-items: center;
  justify-content: center;
}
.bulls_bot{
  max-width: 572px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 32px 52px;
  gap: 80px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  box-sizing: border-box;
  background: var(--color-black);
  position: relative;
}
.bulls_tg{
  position: absolute;
  z-index: 10;
  right: -53px;
  bottom: -50px;
}
#bulls .bulls_bit{
  position: absolute;
  z-index: 10;
  left: -70px;
  top: -70px;
}


/* new_addon */
li a.color{
  color: var(--color-primary);
}
.powerd_by_opacity{
  opacity: 0;
}
.t1_bulls_bot_last{
  margin-top: -30px;
}
.quick_start_div:nth-child(4){
  display: flex;
  align-items: center;
  justify-content: start;
}
.quick_start_div img{
  width: 100%;
  bottom: 0;
}
.quick_start_div img.wallet{
  left: 0%;
  bottom: -48px;
}
.quick_start_div img.bars{
  right: auto;
  left: 32px;
  bottom: 0;
}
.quick_start_div img.money{
  left: 48px;
  bottom: -48px;
  width: 94%;
}
.quick_start_div img.rocket{
  left: auto;
  right: -20px;
  width: 86%;
  bottom: 0px;
}
.quick_start_div img.megafon{
  width: 70%;
  right: auto;
}
.quick_start_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
.btn_benefits_row{
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
}
.quick_start_text a{
  text-decoration: underline;
  position: relative;
  z-index: 10;
  color: var(--color-black);
}






#news, #about, #benefits, #third, 
#quick_start, #fifth, #milestones{
  padding: 160px 0px;
}

.burger, .secret_menu, .table_div,
#third .w-50 h2 br, .mobile_overflow,
.news_header_number.mobile, .icon-electra.mobile,
.mouse_mobile{
  display: none;
}