@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&display=swap');
body{
    padding: 0;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: black;
    color: #fff;
    background-image: url(../img/bg-site.png);
}
canvas#c2,
canvas#c3 {
    position: absolute;
    z-index: 9;
}

canvas#c2 {
    width: 33vw;
    height: 28vw;
}

canvas#c3 {
    width: 100%;
    height: 100%;
}
section{
  padding: 100px 0px;
}
.btn_theme{
  background-color: #0342e7;
  color: white;
  text-decoration: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 40px;
  border-radius: 50%;
  z-index: 1;
  height: 200px;
  width: 200px;
  padding-top: 80px;
}
.btn_theme:hover{
  background-color: #16a9fe;
}
.main_header{
    position: relative;
    z-index: 1;
    position: fixed;
}
.main_header .menu_overlay .menu_logo{
    background: radial-gradient( 60.45% 76.17% at -5.8% 40.18%, #16a9fe 0%, rgba(22, 169, 254, 0) 100% ), radial-gradient(101.15% 101.15% at 50% 101.15%, #0342e7 0%, #cb24ff 53.65%);
    padding: 20px;
}
.menu_overlay{
    position: absolute;
    left: 0;
    top: 0;
    width: 77px;
    height: 100vh;
    background-color: black;
}
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: #000428; 
    /* background: -webkit-linear-gradient(to right, #004e92, #000428); 
    background: linear-gradient(to right, #004e92, #000428); */
    background-color: white;
    z-index: 100;
    color: #000428 !important;
    transition: all 0.5s ease;
  }
  .sidebar.close {
    width: 78px;
    z-index: -1;
  }
  .sidebar .logo-details {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .sidebar .logo-details i {
    font-size: 30px;
    color: black;
    height: 50px;
    min-width: 78px;
    text-align: center;
    line-height: 50px;
  }
  .sidebar .logo-details .logo_name {
    font-size: 22px;
    color: black;
    font-weight: 600;
    transition: 0.3s ease;
    transition-delay: 0.1s;
  }
  .sidebar.close .logo-details .logo_name {
    transition-delay: 0s;
    opacity: 0;
    pointer-events: none;
  }
  .sidebar .nav-links {
    height: 100%;
    padding: 0 0 150px 0;
    overflow: auto;
  }
  .sidebar.close .nav-links {
    overflow: visible;
  }
  .sidebar .nav-links::-webkit-scrollbar {
    display: none;
  }
  .sidebar .nav-links li {
    position: relative;
    list-style: none;
    transition: all 0.4s ease;
  }
  .sidebar .nav-links li:hover {
    background: #1d1b31;
  }
  .sidebar .nav-links li .icon-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar.close .nav-links li .icon-link {
    display: block;
  }
  .sidebar .nav-links li i {
    height: 50px;
    min-width: 78px;
    text-align: center;
    line-height: 50px;
    color: #101010;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .sidebar .nav-links li.showMenu i.arrow {
    transform: rotate(-180deg);
  }
  .sidebar.close .nav-links i.arrow {
    display: none;
  }
  .sidebar .nav-links li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: black;
  }
  .sidebar .nav-links li a .link_name {
    font-size: 18px;
    font-weight: 400;
    color: black;
    transition: all 0.4s ease;
  }
  .sidebar.close .nav-links li a .link_name {
    opacity: 0;
    pointer-events: none;
  }
  .sidebar .nav-links li .sub-menu {
    padding: 6px 6px 14px 80px;
    margin-top: -10px;
    background-color: #1d1b31;
    display: none;
  }
  .sidebar .nav-links li.showMenu .sub-menu {
    display: block;
  }
  .sidebar .nav-links li .sub-menu a {
    color: #fff;
    font-size: 15px;
    padding: 5px 0;
    white-space: nowrap;
    opacity: 0.6;
    transition: all 0.3s ease;
  }
  .sidebar .nav-links li .sub-menu a:hover {
    opacity: 1;
  }
  .sidebar.close .nav-links li .sub-menu {
    position: absolute;
    left: 100%;
    top: -10px;
    margin-top: 0;
    padding: 10px 20px;
    border-radius: 0 6px 6px 0;
    opacity: 0;
    display: block;
    pointer-events: none;
    transition: 0s;
  }
  .sidebar.close .nav-links li:hover .sub-menu {
    top: 0;
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
  }
  .sidebar .nav-links li .sub-menu .link_name {
    display: none;
  }
  .sidebar.close .nav-links li .sub-menu .link_name {
    font-size: 18px;
    opacity: 1;
    display: block;
  }
  .sidebar .nav-links li .sub-menu.blank {
    opacity: 1;
    pointer-events: auto;
    padding: 3px 20px 6px 16px;
    opacity: 0;
    pointer-events: none;
  }
  .sidebar .nav-links li:hover .sub-menu.blank {
    top: 50%;
    transform: translateY(-50%);
  }
  .sidebar .profile-details {
    position: fixed;
    bottom: 0;
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 12px 0;
    transition: all 0.5s ease;
  }
  .sidebar.close .profile-details {
    background: none;
  }
  .sidebar.close .profile-details {
    width: 78px;
  }
  .sidebar .profile-details .profile-content {
    display: flex;
    align-items: center;
  }
  .sidebar .profile-details img {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 14px 0 12px;
    background-color: #fff;
    transition: all 0.5s ease;
  }
  .sidebar.close .profile-details img {
    padding: 10px;
  }
  .sidebar .profile-details .profile_name,
  .sidebar .profile-details .job {
    color: black;
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
  }
  .sidebar.close .profile-details i,
  .sidebar.close .profile-details .profile_name,
  .sidebar.close .profile-details .job {
    display: none;
  }
  .sidebar .profile-details .job {
    font-size: 12px;
  }
.special_nft .heading{
  border-top: 2px solid white;
  padding: 40px 0px;
}
.special_nft .heading h2{
  font-size: 38px;
}
.special_nft .heading span{
  background: radial-gradient( 60.45% 76.17% at -5.8% 40.18%, #16a9fe 0, rgba(22, 169, 254, 0) 100% ), radial-gradient(101.15% 101.15% at 50% 101.15%, #0342e7 0, #cb24ff 53.65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-circle:before {
  position: absolute;
  width: 450px;
  height: 450px;
  -webkit-animation: rotate-1 10s linear infinite reverse;
  animation: rotate-1 10s linear infinite reverse;
  /* content: url(../img/gradient-circle.svg); */
  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;
  left: 50%;
  top: 50%;
}

.about-circle:after {
  position: absolute;
  width: 521px;
  height: 521px;
  -webkit-animation: rotate-2 15s linear infinite reverse;
  animation: rotate-2 15s linear infinite reverse;
  /* content: url(../img/text-circle.svg); */
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  left: 50%;
  top: 50%;
}


.about {
  padding: 100px 0 218px;
  color: #fff;
  max-height: 970px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  overflow: hidden;
}

.about-inner {
  position: relative;
}

.about hr {
  border: 1px solid #fff;
  margin-top: 0;
  margin-bottom: 49px;
}

.about-text {
  font-size: 36px;
  font-family: Barlow-Medium, sans-serif;
  max-width: 920px;
  margin: 0;
}

.about-text span {
  background: radial-gradient( 60.45% 76.17% at -5.8% 40.18%, #06898d 0, rgba(22, 169, 254, 0) 100% ), radial-gradient(101.15% 101.15% at 50% 101.15%, #059ea3 0, #00f8ff 53.65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-blocktext {
  font-family: Barlow-Light, sans-serif;
  font-size: 24px;
  line-height: 34px;
  position: relative;
  max-width: 405px;
  margin: 153px 0 0 190px;
}

.about-blocktext:after,
.about-blocktext:before {
  content: "";
  border: 1px solid #fff;
  width: 60px;
  height: 60px;
  position: absolute;
}

.about-blocktext:before {
  top: -51px;
  left: 100%;
  border-left: 0;
  border-bottom: 0;
}

.about-blocktext:after {
  right: 100%;
  top: 100%;
  border-top: 0;
  border-right: 0;
}

.about-circle {
  position: absolute;
  z-index: -1;
  top: 344px;
  right: 184px;
  max-width: 233px;
  width: 100%;
}

.about-circle img {
  width: 100%;
}

.about-circle:after,
.about-circle:before {
  position: absolute;
  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;
  left: 50%;
  top: 50%;
}

.about-circle:before {
  width: 450px;
  height: 450px;
  -webkit-animation: rotate-1 10s linear infinite reverse;
  animation: rotate-1 10s linear infinite reverse;
  /* content: url(../img/gradient-circle.svg); */
}

.about-circle:after {
  width: 521px;
  height: 521px;
  -webkit-animation: rotate-2 15s linear infinite reverse;
  animation: rotate-2 15s linear infinite reverse;
  /* content: url(../img/text-circle.svg); */
}
.special_nft .content{
  margin-top: 200px;
}
.special_nft .content p{
  position: relative;
  font-size: 22px;
  padding: 0px 100px;
  font-weight: 100;
  color: #fff;
}
.special_nft .content p:before {
  content: "";
  border: 1px solid #fff;
  width: 60px;
  height: 60px;
  position: absolute;
  top: -51px;
  left: 85%;
  border-left: 0;
  border-bottom: 0;
}
.special_nft .content p::after {
  content: "";
  border: 1px solid #fff;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 85%;
  top: 100%;
  border-top: 0;
  border-right: 0;
}
.special_nft .about-circle img{
  width: 40%;
}

@keyframes rotate-2 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0);
    transform: translate(-50%, -50%) rotateZ(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(-360deg);
    transform: translate(-50%, -50%) rotateZ(-360deg);
  }
}
@keyframes about-subtract {
  0% {
    -webkit-transform: translate(-50%, -50%) rotateZ(0);
    transform: translate(-50%, -50%) rotateZ(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotateZ(360deg);
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@keyframes purple-triangle {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

25% {
    -webkit-transform: translate(0, -75px);
    transform: translate(0, -75px);
}
50% {
    -webkit-transform: translate(-35px, -75px);
    transform: translate(-35px, -75px);
}
100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

}
@keyframes white-triangle {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
33% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}
66% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
}
}

  @keyframes blue-triangle {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
  
  33% {
      -webkit-transform: translateX(50px);
      transform: translateX(50px);
  }
  66% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
  100% {
      -webkit-transform: translateX(-50px);
      transform: translateX(-50px);
  }
  }

  @media (max-width: 420px) {
    .sidebar.close .nav-links li .sub-menu {
      display: none;
    }
  }



  /* #pinContainer {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
  }
  
  #slideContainer {
    width: 400%;
    height: 100vh;
  }
  
  .panel {
    height: 100vh;
    width: 25%;
    float: left;
    text-align: center;
  }
  .one {
    background-color: #5a2c74;
    color: white;
  }
  .one button {
    display: block;
    margin: 0 auto;
  }
  
  .two {
    background-color: #ab6eb6;
    color: white;
  }
  
  .three {
    background-color: #dd6f96;
    color: white;
    position: relative;
  }
  
  .four {
    background-color: #4cb2a5;
    color: #fff;
  }
  
  .horizontal-line {
    border-top: 4px solid #fff;
    height: 4px;
    width: 0px;
    position: absolute;
  } */


  body .wrapper .process {
    padding: 0 0 6.771vw
  }
  
  body .wrapper .process .process-container .process-parent {
    height: 364.583vw;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
  
  body .wrapper .process .process-container .process-parent .process-parent__sticky {
    height: 100vh;
    width: 100%;
    position: -webkit-sticky;
    position: sticky;
    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;
    gap: 5.729vw;
    top: 0;
    color: #fff
  }
  
body .wrapper .about .about__container .about__flex .about-circle {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 7.031vw 0 0;
}
.about-circle:before {
  border-radius: 50%;
  content: "";
  width: 19.792vw;
  height: 19.792vw;
  background-image: url(../img/about-subtract.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: rotate(0) translate(-50%,-50%);
  transform: rotate(0) translate(-50%,-50%);
  -webkit-animation: 16s about-subtract linear infinite;
  animation: 16s about-subtract linear infinite;
}
.about-circle:after {
  border-radius: 50%;
  content: "";
  width: 24.479vw;
  height: 24.479vw;
  background-image: url(../img/about-circle-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: rotate(0) translate(-50%,-50%);
  transform: rotate(0) translate(-50%,-50%);
  animation: 16s about-subtract linear infinite reverse;
}
  .process_sec h2{
    font-size: 60px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .process-parent {
    height: 6000px;
    position: relative;
  }
  
  .process-parent__sticky {
    padding: 160px 0 150px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    color: #fff;
  }
  
  .process-parent__flex {
    margin-top: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  
  .process-parent__pre {
    display: inline-block;
    vertical-align: bottom;
    padding: 45px 0;
    width: 60px;
    position: relative;
  }
  
  .process-parent__pre hr {
    border: 1px solid #fff;
    margin: 0;
  }
  
  .process-parent__pre span {
    font-family: AGPM, sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .process-parent__grid {
    vertical-align: bottom;
    margin-top: 85px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-align: center;
    position: relative;
  }
  
  .process-parent__item {
    min-height: 450px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    margin-left: -160px;
    -webkit-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
  }
  
  .process-parent__item.view {
    visibility: visible;
    margin-left: 0;
    opacity: 1;
  }
  
  .process-parent__item.active span {
    color: #cb24ff;
  }
  
  .process-parent__item.active .process-item__info {
    visibility: visible;
    opacity: 1;
  }
  
  .process-parent__item:not(.active) button:hover img:nth-child(1) {
    opacity: 0;
  }
  
  .process-parent__item:not(.active) button:hover img:nth-child(2) {
    opacity: 1;
  }
  
  .process-parent__item:not(.active) button:hover img:nth-child(1) {
    opacity: 1;
  }
  
  .process-parent__item.active button img:nth-child(1) {
    opacity: 0;
  }
  
  .process-parent__item.active button img:nth-child(2) {
    opacity: 0;
  }
  
  .process-parent__item.active button img:nth-child(3) {
    opacity: 1;
  }
  
  .process-parent__item.active .process-item__bottom:before {
    background-image: url(../img/line-active.svg);
  }
  
  .process-parent__grid-mobile {
    display: none;
    position: relative;
    padding-top: 133px;
    overflow-x: hidden;
  }
  
  .process-parent__grid-mobile .process-parent__slider {
    margin-bottom: 0;
  }
  
  .process-parent__grid-mobile .process-slider__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 456px;
    position: relative;
    max-width: 600px;
  }
  
  .process-parent__grid-mobile .process-slider__item:last-child {
    background: url(../img/arrow.svg) right calc(100% - 39px) no-repeat;
  }
  
  .process-parent__grid-mobile .process-slider__item:last-child hr {
    width: calc(100% - 4px);
  }
  
  .process-parent__grid-mobile .process-slider__item hr {
    border: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 50px;
    margin: 0;
  }
  
  .process-parent__grid-mobile .process-item__before {
    font-family: AGPM, sans-serif;
    font-size: 12px;
    height: 100px;
    width: 80px;
    -ms-flex-item-align: end;
    align-self: flex-end;
    text-transform: uppercase;
  }
  
  .process-parent__grid-mobile .process-item__block {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .process-parent__grid-mobile .process-item__block button {
    background: 0 0;
    display: inline-block;
    width: 130px;
    height: 130px;
    border: 0;
    padding: 0;
    cursor: pointer;
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
    margin: auto 15px;
  }
  
  .process-parent__grid-mobile .process-item__block button.button-1 {
    margin-top: 3px;
  }
  
  .process-parent__grid-mobile .process-item__block button.button-2 {
    margin-bottom: 30px;
  }
  
  .process-parent__grid-mobile .process-item__block button.button-6 {
    margin-top: 4px;
  }
  
  .process-parent__grid-mobile .process-item__block button img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .process-parent__grid-mobile .process-item__block .process-block__bottom {
    height: 100px;
    position: relative;
    z-index: 1;
  }
  
  .process-parent__grid-mobile .process-item__block .process-block__bottom span {
    font-family: AGPM, sans-serif;
    font-size: 14px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(calc(-50% - 30px));
    transform: translateX(calc(-50% - 30px));
    color: #cb24ff;
  }
  
  .process-parent__grid-mobile
    .process-item__block
    .process-block__bottom:before {
    content: "";
    background: url(../img/line-active.svg) center center no-repeat #000;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 11px;
    height: 100%;
  }
  
  .process-parent__grid-mobile .process-item__info {
    position: relative;
    opacity: 1;
    visibility: visible;
    padding-bottom: 50px;
    margin-bottom: auto;
    right: auto;
    -webkit-transform: none;
    transform: none;
  }
  
  .process-parent__grid-mobile .process-item__info:before {
    content: "";
    border: 1px solid transparent;
    border-top-color: #fff;
    border-right-color: #fff;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  
  .process-parent__grid-mobile .hr {
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    bottom: 50px;
  }
  
  .process-parent__grid-mobile .hr:before {
    content: url(../img/arrow.svg);
    position: absolute;
    right: -4px;
    top: 50%;
    -webkit-transform: translateY(-43%);
    transform: translateY(-43%);
  }
  
  .process-item__info {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
    opacity: 0;
    visibility: hidden;
    text-align: left;
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    height: 100%;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  
  .process-item__info::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid transparent;
    border-right-color: #fff;
    border-top-color: #fff;
    top: 0;
    right: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  
  .process-item__info h3 {
    font-family: AGPB, sans-serif;
    line-height: 34px;
    margin-bottom: 15px;
    font-size: 34px;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
  }
  
  .process-item__info p {
    font-family: Barlow-Light;
    line-height: 30px;
    margin: 15px 0 0;
    font-size: 20px;
    font-weight: 300;
  }
  
  .process-item__info button {
    pointer-events: none;
    padding: 0;
    margin: auto 0 31px -1px;
    background: 0;
    border: 0;
  }
  
  .process-item__info button img {
    opacity: 1 !important;
  }
  
  .process-item__button {
    background: 0 0;
    display: inline-block;
    width: 130px;
    height: 130px;
    border: 0;
    padding: 0;
    cursor: pointer;
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
    margin: auto 15px;
  }
  
  .process-item__button img {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .process-item__button img:nth-child(1) {
    opacity: 1;
  }
  
  .process-item__button.button-1 {
    margin-top: 50px;
  }
  
  .process-item__button.button-2 {
    margin-bottom: 30px;
  }
  
  .process-item__button.button-6 {
    margin-top: 0;
  }
  
  .process-item__bottom {
    position: relative;
    padding: 45px 0;
  }
  
  .process-item__bottom:before {
    content: "";
    background: #000 url(../img/line.svg) center center no-repeat;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 11px;
    height: 100%;
  }
  
  .process-item__bottom hr {
    border: 1px solid #fff;
    margin: 0;
  }
  
  .process-item__bottom span {
    font-family: AGPM, sans-serif;
    font-size: 16px;
    position: absolute;
    top: 0;
    right: calc(50% + 11px + 5px);
  }
  

  /* features_sec*/
.features {
  padding: 160px 0 160px;
  color: #fff;
}

/* .features .container {
  max-width: 1550px;
} */
.features h2{
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
}

.features-inner {
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 86px;
}

.features-accordeon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  row-gap: 40px;
  counter-reset: features;
  max-width: 100%;
}

.features-accordeon__item {
  max-width: 366px;
  width: 100%;
  border-bottom: 1px solid #3a3a3a;
  padding-bottom: 0;
  -webkit-transition: border-bottom 0.2s ease-out, padding-bottom 0.2s ease-out;
  transition: border-bottom 0.2s ease-out, padding-bottom 0.2s ease-out;
  margin-bottom: 40px;
}
.features-accordeon__item:hover {
  border-bottom-color: #fff;
  padding-bottom: 16px;
}
.features-accordeon__item:hover p {
  opacity: 1;
  max-height: 100%;
}
.features-accordeon__item:hover summary {
  padding-bottom: 0;
  color: #00f8ff ;
}
.features-accordeon__item:hover summary:after {
  color: #fff;
}

.features-accordeon__item summary {
  font-family: AGPM, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 34px;
  padding-bottom: 18px;
  color: #fff;
  list-style: none;
  text-transform: uppercase;
  -webkit-transition: padding-bottom 0.2s ease-out, color 0.2s ease-out;
  transition: padding-bottom 0.2s ease-out, color 0.2s ease-out;
}

.features-accordeon__item summary::-webkit-details-marker {
  display: none;
}

.features-accordeon__item summary:after {
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
  margin-left: 7px;
  display: inline-block;
  font-size: 12px;
  font-family: AGPM, sans-serif;
  font-weight: 500;
  vertical-align: top;
  color: #616161;
  line-height: 20px;
  content: "0" counter(features);
  counter-increment: features;
}

.features-accordeon__item p {
  font-family: Barlow-Light, sans-serif;
  font-size: 18px;
  line-height: 26px;
  opacity: 0;
  -webkit-transition: 0.2s ease-out, max-height 0.2s ease-out;
  transition: 0.2s ease-out, max-height 0.2s ease-out;
  max-height: 0;
  margin: 0;
  overflow: hidden;
}


.features-scroller {
  position: relative;
  margin-top: -153px;
  max-width: 440px;
  margin-right: var(--featOffset);
  background: radial-gradient(
      60.45% 76.17% at -5.8% 40.18%,
      #16a9fe 0,
      rgba(22, 169, 254, 0) 100%
    ),
    radial-gradient(101.15% 101.15% at 50% 101.15%, #0342e7 0, #cb24ff 53.65%),
    url("style.css");
}

.features-scroller__images {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 665px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.features-scroller__images img {
  -webkit-transform: translateX(150%);
  transform: translateX(150%);
  opacity: 0;
  visibility: hidden;
  max-width: 548px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}

.features-scroller__images img.active {
  position: static;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-108px);
  transform: translateX(-108px);
}

.features-scroller__images img.prev-img {
  position: static;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.features-scroller__images img.next-img {
  position: static;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
}

.features-scroller__info {
  position: absolute;
  z-index: 11;
  max-width: 361px;
  width: 100%;
  top: 0;
  right: 0;
}
.main-heading{
  font-size: 50px;
  font-weight: 800;
  text-transform: uppercase;
}
.features-scroller__info div {
  opacity: 0;
  visibility: hidden;
  padding-top: 74px;
  position: absolute;
  left: -40px;
  top: 0;
  width: 100%;
  -webkit-transform: translateX(var(--featOffset));
  transform: translateX(var(--featOffset));
}


.features-scroller__info div:before {
  content: "";
  width: 58px;
  height: 58px;
  display: inline-block;
  border: 1px solid #fff;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.features-scroller__info div.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
  transition: 0.2s;
}

.features-scroller__info div h3 {
  font-family: AGPB, sans-serif;
  font-size: 24px;
  line-height: 34px;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

.features-scroller__info div p {
  font-family: Barlow-Regular, sans-serif;
  font-size: 20px;
  line-height: 30px;
  margin: 0;
}

.features-slider {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.features-slider__btns {
  position: absolute;
  right: calc(var(--featOffset) * -1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  right: -153px;
  bottom: 0;
}

.features-slider__btn {
  bottom: 0;
  cursor: pointer;
  width: 54px;
  height: 54px;
  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;
  position: relative;
  border: 1px solid #fff;
  overflow: hidden;
  border-radius: 50%;
  -webkit-transition: border 0.2s ease-out;
  transition: border 0.2s ease-out;
}

.features-slider__btn:after {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #00f8ff;
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  border-radius: 50%;
}

.features-slider__btn:hover {
  border-color: #00f8ff;
}

.features-slider__btn img {
  position: relative;
  z-index: 1;
}

.features-slider__pagination {
  position: absolute;
  bottom: -17px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  gap: 7px;
}

.features-slider__pagination div {
  margin: 0 !important;
  border-radius: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #3a3a3a;
  opacity: 1;
}

.features-slider__pagination div.swiper-pagination-bullet-active {
  background: radial-gradient(
      60.45% 76.17% at -5.8% 40.18%,
      #16a9fe 0,
      rgba(22, 169, 254, 0) 100%
    ),
    radial-gradient(101.15% 101.15% at 50% 101.15%, #0342e7 0, #cb24ff 53.65%);
}

.features-slider__prev img {
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

.features-slider__prev:after {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.features-slider__prev:hover:after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.features-slider__next {
  right: 0;
}

.features-slider__next:after {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.features-slider__next:hover:after {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.features-slider__item {
  overflow: hidden;
  position: relative;
}

.features-slider__item:before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url(../img/slide-bg.png);
}

.features-slider__item img {
  position: relative;
  left: -108px;
}

/* vision */

.vision {
  padding: 0 0 10px;
  height: 7000px;
  color: #fff;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: relative;
}
.vision h2{
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
}

.vision-slider {
  top: 0;
  left: 0;
  height: calc(100% + 278px);
  width: 100%;
  display: none;
  position: absolute;
  z-index: 5;
}

.vision-slider__item {
  height: 100%;
}

.vision-sticky {
  padding-bottom: 148px;
  padding-top: 160px;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.vision-sticky::after {
  position: absolute;
  top: 350px;
  right: 0;
  content: "";
  display: block;
  width: 705px;
  height: 610px;
  opacity: 0.6;
  background: url(../img/shadow_gif.svg) center/cover no-repeat,
    url(../img/black-hole.gif) center/cover no-repeat;
  z-index: -1;
}

.vision-main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.vision-main__face {
  /* margin-top: -169px; */
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 520px;
}

.vision-main__face img {
  width: 100%;
  -webkit-transition: 0.5s ease-in;
  transition: 0.5s ease-in;
  opacity: 0;
  visibility: hidden;
}

.vision-main__face img.active {
  left: 0;
  top: 0;
  position: absolute;
  opacity: 1;
  visibility: visible;
}
.vision-main__face img.noactive{
  visibility: hidden;
}

.vision-main__center {
  position: relative;
  max-width: 478px;
  display: inline-block;
  vertical-align: middle;
}

.vision-main__planet {
  position: relative;
  width: 288px;
}

.vision-main__planet img {
  -webkit-transition: 0.8s ease-in;
  transition: 0.8s ease-in;
  -webkit-transform: var(--keyPosition) scale(0);
  transform: var(--keyPosition) scale(0);
  width: 100%;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}

.vision-main__planet img.active {
  -webkit-animation: planet 0.8s ease-in-out 0.6s;
  animation: planet 0.8s ease-in-out 0.6s;
  position: static;
  -webkit-transition: 0.8s ease-in-out 0.6s;
  transition: 0.8s ease-in-out 0.6s;
  -webkit-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
  opacity: 1;
}

.vision-main__text {
  position: absolute;
  top: 170px;
}

.vision-main__text div {
  overflow: hidden;
  width: 477px;
  position: absolute;
  top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.1s ease-in 0.3s, visibility 0.1s ease-in 0.3s;
  transition: opacity 0.1s ease-in 0.3s, visibility 0.1s ease-in 0.3s;
}

.vision-main__text div.active {
  -webkit-transition: opacity 1s ease-in 0.6s;
  transition: opacity 1s ease-in 0.6s;
  position: static;
  opacity: 1;
  visibility: visible;
}

.vision-main__text div.active h3 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.vision-main__text div.active p {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.vision-main__text h3 {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
  font-family: AGPB, sans-serif;
  margin: 0;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 55px;
}

.vision-main__text p {
  -webkit-transform: translateY(-200%);
  transform: translateY(-200%);
  -webkit-transition: -webkit-transform 0.5s ease-in 0.15s;
  transition: -webkit-transform 0.5s ease-in 0.15s;
  transition: transform 0.5s ease-in 0.15s;
  transition: transform 0.5s ease-in 0.15s, -webkit-transform 0.5s ease-in 0.15s;
  font-family: Barlow-Light, sans-serif;
  margin: 30px 0 0 0;
  padding: 58px;
  font-size: 20px;
  line-height: 30px;
  position: relative;
}

.vision-main__text p:after,
.vision-main__text p:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 58px;
  height: 58px;
  border: 1px solid transparent;
}

.vision-main__text p:before {
  border-top-color: #fff;
  border-right-color: #fff;
  top: 0;
  right: 0;
}

.vision-main__text p:after {
  border-left-color: #fff;
  border-bottom-color: #fff;
  bottom: 0;
  left: 0;
}

.vision-main__triangle {
  width: 200px;
  height: 170px;
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-right: 10px;
}

.vision-main__triangle .vision-triangle {
  width: 0%;
  height: 1px;
  background-color: #fff;
  -webkit-transform-origin: left;
  transform-origin: left;
  position: relative;
}

.vision-main__triangle .vision-triangle-3:before {
  opacity: 0;
  content: url(../img/arrow\ \(1\).svg);
  position: absolute;
  display: inline-block;
  top: 50%;
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
  left: 0;
}

.vision-main__triangle.active {
  opacity: 1;
}

.vision-main__triangle.active .vision-triangle {
  width: 100%;
}

.vision-main__triangle.active .vision-triangle-1 {
  -webkit-transition: width 0.4s ease-in;
  transition: width 0.4s ease-in;
}

.vision-main__triangle.active .vision-triangle-1:before {
  -webkit-transform: translateY(-30%) rotateZ(120deg);
  transform: translateY(-30%) rotateZ(120deg);
  -webkit-animation: opacity 20ms linear 0.42s forwards;
  animation: opacity 20ms linear 0.42s forwards;
  -webkit-transition: left 0.3s ease-in-out, opacity 0.1s ease-in,
    -webkit-transform 50ms linear 0.4s;
  transition: left 0.3s ease-in-out, opacity 0.1s ease-in,
    -webkit-transform 50ms linear 0.4s;
  transition: left 0.3s ease-in-out, opacity 0.1s ease-in,
    transform 50ms linear 0.4s;
  transition: left 0.3s ease-in-out, opacity 0.1s ease-in,
    transform 50ms linear 0.4s, -webkit-transform 50ms linear 0.4s;
}

.vision-main__triangle.active .vision-triangle-2 {
  -webkit-transform: rotateZ(-60deg) rotateY(-180deg) translate(-100px, 172px);
  transform: rotateZ(-60deg) rotateY(-180deg) translate(-100px, 172px);
  -webkit-transition: width 0.4s ease-in 0.45s;
  transition: width 0.4s ease-in 0.45s;
}

.vision-main__triangle.active .vision-triangle-2:before {
  -webkit-transform: rotateZ(-120deg) translate(100%, 55%);
  transform: rotateZ(-120deg) translate(100%, 55%);
  -webkit-animation: opacity 20ms linear 0.87s forwards;
  animation: opacity 20ms linear 0.87s forwards;
  -webkit-transition: left 0.3s ease-in-out 0.45s, opacity 0.1s ease-in 0.45s,
    -webkit-transform 50ms linear 0.85s;
  transition: left 0.3s ease-in-out 0.45s, opacity 0.1s ease-in 0.45s,
    -webkit-transform 50ms linear 0.85s;
  transition: left 0.3s ease-in-out 0.45s, opacity 0.1s ease-in 0.45s,
    transform 50ms linear 0.85s;
  transition: left 0.3s ease-in-out 0.45s, opacity 0.1s ease-in 0.45s,
    transform 50ms linear 0.85s, -webkit-transform 50ms linear 0.85s;
}

.vision-main__triangle.active .vision-triangle-3 {
  width: 93%;
  -webkit-transform: rotateY(180deg) rotateZ(-60deg) translate(-100px, -173px);
  transform: rotateY(180deg) rotateZ(-60deg) translate(-100px, -173px);
  -webkit-transition: width 0.4s ease-in 0.85s;
  transition: width 0.4s ease-in 0.85s;
}

.vision-main__triangle.active .vision-triangle-3:before {
  transition: left 0.2s ease-in 0.75s, opacity 0.1s ease-in 0.85s,
    transform 50ms linear 1.3s, -webkit-transform 50ms linear 1.3s;
}

.vision-main__triangle.active .vision-triangle:before {
  opacity: 1;
  left: 93%;
}

.vision-main__triangle.active span {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  opacity: 1;
}

.vision-main__triangle span {
  font-family: AGPR, sans-serif;
  color: #10aee9;
  font-size: 28px;
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.vision-swipe-anime {
  display: none;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 150px;
  z-index: 10;
  margin: 0 auto;
  width: 94px;
  height: 38px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.vision-swipe-anime #hand {
  width: 38px;
  height: 38px;
  -webkit-animation: vision-swipe-anime 2s linear infinite;
  animation: vision-swipe-anime 2s linear infinite;
}

.vision-swipe-anime .right-arrow {
  width: 7px;
  height: 14px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* tokenomics */
.tokenomics h2{
  font-size: 60px;
  font-weight: 800;
  text-transform: uppercase;
}
.tokenomics-accordeon {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  counter-reset: tokenomics-accordeon;
  gap: 40px;
  min-height: 500px;
}

.tokenomics-accordeon__item {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  background: url(../img/acc-item-bg.png);
  background-repeat: repeat-y;
  width: calc((100% - 40px) / 2);
  position: relative;
}

.tokenomics-accordeon__item:after,
.tokenomics-accordeon__item:before {
  content: "";
  display: inline-block;
  width: 64px;
  height: 64px;
  border: 1px solid #3a3a3a;
  position: absolute;
  -webkit-transition: border 0.3s ease-out;
  transition: border 0.3s ease-out;
}

.tokenomics-accordeon__item:before {
  border-right: 0;
  border-bottom: 0;
  left: 0;
  top: 0;
}

.tokenomics-accordeon__item:after {
  border-top: 0;
  border-left: 0;
  right: 0;
  bottom: 0;
}

.tokenomics-accordeon__item summary {
  text-transform: uppercase;
  padding: 15px 20px 15px 30px;
  color: #fff;
  position: relative;
  font-family: AGPB, sans-serif;
  font-size: 18px;
  line-height: 34px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.tokenomics-accordeon__item summary:after {
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
  color: #616161;
  font-family: AGPM, sans-serif;
  font-size: 14px;
  content: "0" counter(tokenomics-accordeon);
  counter-increment: tokenomics-accordeon;
  position: absolute;
  bottom: 15px;
  right: 20px;
}

.tokenomics-accordeon__item div {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
}

.tokenomics-accordeon__item p {
  padding: 0 40px 33px;
  font-family: Barlow-Regular, sans-serif;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  margin-top: -80px;
}

.tokenomics-infographics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tokenomics-infographics__item {
  width: 100%;
  padding: 22px 10px 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* max-width: 98px; */
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  position: relative;
  text-align: center;
  min-height: 182px;
  gap: 7px;
}

.tokenomics-infographics__item:before {
  content: url(../img/line\ \(1\).svg);
  position: absolute;
  left: 0;
  top: 0;
}

.tokenomics-infographics__item:last-child:after {
  content: url(../img/line\ \(1\).svg);
  position: absolute;
  top: 0;
  right: 0;
}

.tokenomics-infographics__item .tokenomics-item__circle {
  height: 24px;
  width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  animation: tokenomics-0 4.5s linear infinite alternate-reverse both;
}

.tokenomics-infographics__item .tokenomics-item__circle span {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: tokenomics-1 4.5s linear infinite alternate both;
  animation: tokenomics-1 4.5s linear infinite alternate both;
  display: inline-block;
}

.tokenomics-infographics__item:nth-child(1) .tokenomics-item__circle,
.tokenomics-infographics__item:nth-child(12) .tokenomics-item__circle,
.tokenomics-infographics__item:nth-child(2) .tokenomics-item__circle,
.tokenomics-infographics__item:nth-child(4) .tokenomics-item__circle,
.tokenomics-infographics__item:nth-child(5) .tokenomics-item__circle,
.tokenomics-infographics__item:nth-child(9) .tokenomics-item__circle {
  -webkit-animation: tokenomics-0 4.5s linear infinite alternate both;
  animation: tokenomics-0 4.5s linear infinite alternate both;
}

.tokenomics-infographics__item:nth-child(1) .tokenomics-item__circle span,
.tokenomics-infographics__item:nth-child(12) .tokenomics-item__circle span,
.tokenomics-infographics__item:nth-child(2) .tokenomics-item__circle span,
.tokenomics-infographics__item:nth-child(4) .tokenomics-item__circle span,
.tokenomics-infographics__item:nth-child(5) .tokenomics-item__circle span,
.tokenomics-infographics__item:nth-child(9) .tokenomics-item__circle span {
  -webkit-animation: tokenomics-2 4.5s linear infinite alternate both;
  animation: tokenomics-2 4.5s linear infinite alternate both;
}

.tokenomics-infographics__item:nth-child(1) .tokenomics-item__circle span,
.tokenomics-infographics__item:nth-child(2) .tokenomics-item__circle span {
  width: 40%;
  height: 40%;
}

.tokenomics-infographics__item:nth-child(1) .tokenomics-item__circle span,
.tokenomics-infographics__item:nth-child(2) .tokenomics-item__circle span,
.tokenomics-infographics__item:nth-child(5) .tokenomics-item__circle span {
  width: 40%;
  height: 40%;
}

.tokenomics-infographics__item:nth-child(3) .tokenomics-item__circle span,
.tokenomics-infographics__item:nth-child(4) .tokenomics-item__circle span {
  width: 50%;
  height: 50%;
}

.tokenomics-infographics__item:nth-child(7) .tokenomics-item__circle span,
.tokenomics-infographics__item:nth-child(8) .tokenomics-item__circle span {
  width: 60%;
  height: 60%;
}

.tokenomics-infographics__item:nth-child(12) .tokenomics-item__circle span,
.tokenomics-infographics__item:nth-child(9) .tokenomics-item__circle span {
  width: 75%;
  height: 75%;
}

.tokenomics-infographics__item:nth-child(10) .tokenomics-item__circle span,
.tokenomics-infographics__item:nth-child(6) .tokenomics-item__circle span {
  width: 90%;
  height: 90%;
}

.tokenomics-infographics__item b {
  font-family: Barlow-Medium, sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #cb24ff;
}

.tokenomics-infographics__item .tokenomics-item__info {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tokenomics-infographics__item .tokenomics-item__info span {
  min-height: 66px;
  display: inline-block;
  margin-top: 2px;
  font-family: Barlow-Medium, sans-serif;
  font-size: 16px;
  line-height: 22px;
}
.tokenomics-accordeon__item:hover {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  background: #0342e7;
}
.tokenomics-accordeon__item:hover summary {
  font-size: 24px;
  padding: 34px 20px 0 40px;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}
.tokenomics-accordeon__item:hover summary:after {
  color: #fff;
  -webkit-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.tokenomics-accordeon__item:hover div {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  margin-top: 10px;
  max-height: 100%;
}
.tokenomics-accordeon__item:hover p {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  margin-top: 0;
}
.tokenomics-accordeon__item:hover:after,
.tokenomics-accordeon__item:hover:before {
  border-width: 2px;
  border-color: #fff;
  -webkit-transition: border 0.3s ease-out;
  transition: border 0.3s ease-out;
}

/*media-about */

.media-about {
  margin-top: 100px;
  color: #fff;
  background: radial-gradient(
      60.45% 76.17% at -5.8% 40.18%,
      #00f8ff 0%,
      rgba(22, 169, 254, 0) 100%
    ),
    radial-gradient(101.15% 101.15% at 50% 101.15%, #00f8ff 0%, #00f8ff 53.65%);
    padding: 10px 0px;
}

.media-about h3 {
  font-family: AGPB, sans-serif;
  font-style: normal;
  font-size: 18px;
  line-height: 34px;
  text-transform: uppercase;
  position: absolute;
  margin-top: -70px;
}
.media-about h3::after {
  display: block;
  content: "";
  height: 34px;
  width: 1px;
  /* background:white; */
  border-left: dashed 1px white;
  z-index: -1;
}
.media-about-slider {
  position: relative;
  height: 155px;
  width: 100%;
}
.media-about-slide-min {
  margin-top: 40px;
  width: 160px;
  height: 75px;
  background: white;
  transition: 0.2s;
}

.media-about-slide-min img {
  width: 100%;
  margin: 0 auto;
  /* z-index: 10 ; */
}
.media-about-slide-min:hover {
  cursor: pointer;
  transform: scale(1.15);
}
/* */

.footer {
  padding: 140px 0 0 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer .after {
  position: absolute;
  z-index: -1;
  bottom: -5px;
  max-height:100%;
  right: -430px;
}

.footer-inner {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 128px;
}

.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  /* justify-content: space-between; */
  align-items: center;
  max-width: 1139px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.footer-contact__item {
  padding: 51px 0 0 61px;
  max-width: 480px;
  position: relative;
}

.footer-contact__item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-right: 0;
  border-bottom: 0;
}

.footer-contact__item h3 {
  font-family: AGPB, sans-serif;
  font-size: 30px;
  line-height: 42px;
  margin: 0 0 17px;
  text-transform: uppercase;
}

.footer-contact__item h3 br {
  display: none;
}

.footer-contact__item p {
  font-family: Barlow-Light, sans-serif;
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 21px;
  padding-right: 40px;
}

.footer-contact__item a {
  margin-top: auto;
  display: inline-block;
  padding-left: 45px;
  color: rgb(0 248 255);
  font-family: Barlow-Light, sans-serif;
  font-size: 24px;
  text-decoration: none;
  background: url(../img/menu/letter.svg) left center/34px 23px no-repeat;
}

.footer-contact__item a span {
  line-height: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(203, 36, 255, 0.2);
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.footer-contact__item a:hover span {
  border-bottom: 1px solid #cb24ff;
}

.footer-subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 920px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  width: 100%;
}

.footer-subscribe__linkblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.footer-subscribe__linkblock span {
  color: #616161;
  font-family: Barlow-Regular, sans-serif;
  font-size: 18px;
  line-height: 26px;
  max-width: 150px;
}

.footer-subscribe__link {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-family: AGPB, sans-serif;
  font-size: 16px;
  position: relative;
  -webkit-transition: background 0.2s ease-in, border 0.2s ease-in,
    -webkit-transform 0.2s ease-in;
  transition: background 0.2s ease-in, border 0.2s ease-in,
    -webkit-transform 0.2s ease-in;
  -webkit-transition: background 0.2s ease-in, border 0.2s ease-in,
    -webkit-transform 0.2s ease-in;
  transition: background 0.2s ease-in, border 0.2s ease-in,
    -webkit-transform 0.2s ease-in;
  transition: background 0.2s ease-in, transform 0.2s ease-in,
    border 0.2s ease-in;
  transition: background 0.2s ease-in, transform 0.2s ease-in,
    border 0.2s ease-in, -webkit-transform 0.2s ease-in;
    font-weight: 700;
}

.footer-subscribe__link:before {
  content: url(../img/arrow\ \(4\).svg);
  top: 48px;
  left: 10px;
  position: absolute;
}

.footer-subscribe__link svg {
  position: absolute;
  padding: 9px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  bottom: 25px;
  background: #fff;
  border-radius: 50%;
}

.footer-subscribe__link svg path {
  -webkit-transition: fill 0.2s ease-in;
  transition: fill 0.2s ease-in;
}

.footer-subscribe__link:hover {
  border-color: #00f8ff;
  -webkit-transform: scale(0.91);
  transform: scale(0.91);
  background: #00f8ff;
  color: white;
}

.footer-subscribe__link:hover svg path {
  fill: #00f8ff;
}

.footer-subscribe__block {
  width: 440px;
  padding: 36px 40px 45px 40px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: url(../img/bg-site.png) 440px 310px, radial-gradient( 60.45% 76.17% at -5.8% 40.18%, #d11ded 0, rgba(22, 169, 254, 0) 100% ), radial-gradient(101.15% 101.15% at 50% 101.15%, #0d6497 0, #11b5f1 53.65%);
  margin-right: -32px;
}

.footer-subscribe__block strong {
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-subscribe__block b {
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}

.footer-subscribe__block p {
  margin: 20px 0 30px;
  font-size: 20px;
  line-height: 30px;
}

.footer-subscribe__block form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer-subscribe__block input {
  font-size: 18px;
  font-family: Barlow-Medium, sans-serif;
  font-weight: 500;
  color: #fff;
  background: 0 0;
  border: 0;
  border-bottom: 1px solid #fff;
  padding: 0 11px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 290px;
}

.footer-subscribe__block input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-subscribe__block input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-subscribe__block input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-subscribe__block input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-subscribe__block input:focus {
  outline: 0;
  border-bottom-color: orange;
}

.footer-subscribe__block button {
  border: 0;
  width: 50px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform 0.15s linear;
  transition: -webkit-transform 0.15s linear;
  transition: transform 0.15s linear;
  transition: transform 0.15s linear, -webkit-transform 0.15s linear;
}

.footer-subscribe__block button:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

@-webkit-keyframes planet {
  0% {
    -webkit-transform: var(--keyPosition) scale(0);
    transform: var(--keyPosition) scale(0);
  }
  60% {
    -webkit-transform: translate(-150%, -100%);
    transform: translate(-150%, -100%);
  }
  100% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }
}

@keyframes planet {
  0% {
    -webkit-transform: var(--keyPosition) scale(0);
    transform: var(--keyPosition) scale(0);
  }
  60% {
    -webkit-transform: translate(-150%, -100%);
    transform: translate(-150%, -100%);
  }
  100% {
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }
}
@-webkit-keyframes tokenomics-0 {
  from {
    margin-top: 0;
  }
  40% {
    margin-top: 0;
  }
  60% {
    margin-top: 60px;
  }
  to {
    margin-top: 60px;
  }
}

@keyframes tokenomics-0 {
  from {
    margin-top: 0;
  }
  40% {
    margin-top: 0;
  }
  60% {
    margin-top: 60px;
  }
  to {
    margin-top: 60px;
  }
}

@-webkit-keyframes tokenomics-1 {
  from {
    border: 1px solid transparent;
    background-color: #3a3a3a;
  }
  40% {
    border: 1px solid transparent;
    background-color: #3a3a3a;
  }
  60% {
    -webkit-filter: blur(1.5px);
    filter: blur(1.5px);
    border: 1px solid #cb24ff;
    background-color: transparent;
  }
  to {
    -webkit-filter: blur(1.5px);
    filter: blur(1.5px);
    border: 1px solid #cb24ff;
    background-color: transparent;
  }
}

@keyframes tokenomics-1 {
  from {
    border: 1px solid transparent;
    background-color: #3a3a3a;
  }
  40% {
    border: 1px solid transparent;
    background-color: #3a3a3a;
  }
  60% {
    -webkit-filter: blur(1.5px);
    filter: blur(1.5px);
    border: 1px solid #cb24ff;
    background-color: transparent;
  }
  to {
    -webkit-filter: blur(1.5px);
    filter: blur(1.5px);
    border: 1px solid #cb24ff;
    background-color: transparent;
  }
}

@-webkit-keyframes tokenomics-2 {
  from {
    -webkit-filter: blur(1.5px);
    filter: blur(1.5px);
    border: 1px solid #cb24ff;
    background-color: transparent;
  }
  40% {
    -webkit-filter: blur(1.5px);
    filter: blur(1.5px);
    border: 1px solid #cb24ff;
    background-color: transparent;
  }
  60% {
    border: 1px solid transparent;
    background-color: #3a3a3a;
  }
  to {
    border: 1px solid transparent;
    background-color: #3a3a3a;
  }
}

@keyframes tokenomics-2 {
  from {
    -webkit-filter: blur(1.5px);
    filter: blur(1.5px);
    border: 1px solid #cb24ff;
    background-color: transparent;
  }
  40% {
    -webkit-filter: blur(1.5px);
    filter: blur(1.5px);
    border: 1px solid #cb24ff;
    background-color: transparent;
  }
  60% {
    border: 1px solid transparent;
    background-color: #3a3a3a;
  }
  to {
    border: 1px solid transparent;
    background-color: #3a3a3a;
  }
}

@-webkit-keyframes main-button-1 {
  0% {
    top: -41px;
    left: -64px;
  }
  33% {
    top: 36px;
    left: 36px;
  }
  66% {
    top: -39px;
    left: -80px;
  }
  100% {
    top: -41px;
    left: -64px;
  }
}

@keyframes main-button-1 {
  0% {
    top: -41px;
    left: -64px;
  }
  33% {
    top: 36px;
    left: 36px;
  }
  66% {
    top: -39px;
    left: -80px;
  }
  100% {
    top: -41px;
    left: -64px;
  }
}

@-webkit-keyframes main-button-2 {
  0% {
    top: 30px;
    left: -17px;
  }
  33% {
    top: 11px;
    left: 68px;
  }
  66% {
    top: 61px;
    left: 34px;
  }
  100% {
    top: 30px;
    left: -17px;
  }
}

@keyframes main-button-2 {
  0% {
    top: 30px;
    left: -17px;
  }
  33% {
    top: 11px;
    left: 68px;
  }
  66% {
    top: 61px;
    left: 34px;
  }
  100% {
    top: 30px;
    left: -17px;
  }
}








ol,
ul {
  padding: 0;
  list-style: none;
}

.header-inner {
  z-index: 99;
  top: 0;
  left: 0;
  background: #000 url(../img/bg-site.png);
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 70px;
  height: 100vh;
  position: fixed;
  color: #fff;
}

.header-inner__name {
  width: 412px;
  display: none;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: #fff;
}

.header-inner__name strong {
  font-weight: 500;
  font-family: AGPM, sans-serif;
  font-size: 22px;
}

.header-inner__name strong.active {
  color: #000;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.header-inner__name span {
  font-family: Barlow-Regular, sans-serif;
  font-size: 16px;
  color: #616161;
  display: inline-block;
  margin-bottom: 3px;
}

.header-logo {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
  position: relative;
  cursor: pointer;
  border: 1px solid #3a3a3a;
    border-left: 0;
}

.header-logo img {
  position: relative;
  z-index: 2;
  Height: 50PX;
}

.header-logo:before {
  content: url(../img/menu/logo-bg-gradient.svg);
  position: absolute;
  top: -50px;
  left: -70px;
}

.header-logo:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0;
  background: url(../img/logo-bg.png);
  z-index: 1;
}

.header-name {
  width: 412px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  top: 20px;
  left: 92px;
  color: #fff;
  position: absolute;
  z-index: 100;
}
.header-name img{
  height: 45px;
}

.header-name strong {
  font-weight: 000;
  font-family: AGPM, sans-serif;
  font-size: 24px;
  -webkit-transition: color 0.2s ease-in;
  transition: color 0.2s ease-in;
}

.header-name.active {
  position: fixed;
}

.header-name.active strong {
  color: #000;
}

.header-name span {
  font-family: Barlow-Regular, sans-serif;
  font-size: 16px;
  color: #616161;
  display: inline-block;
  margin-bottom: 3px;
}

.header-button {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background: 0;
  border: 1px solid #3a3a3a;
  border-left: 0;
  border-top: 0;
  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;
  cursor: pointer;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
  gap: 6px;
  overflow: hidden;
  position: relative;
}

.header-button:after {
  content: "";
  display: inline-block;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  height: 100%;
  width: 0%;
  background-color: #fff;
  background: #00f8ff;
  left: 0;
  top: 0;
  -webkit-transition: width 0s linear 0.3s, -webkit-transform 0.3s ease-out;
  transition: width 0s linear 0.3s, -webkit-transform 0.3s ease-out;
  transition: width 0s linear 0.3s, transform 0.3s ease-out;
  transition: width 0s linear 0.3s, transform 0.3s ease-out,
    -webkit-transform 0.3s ease-out;
  transition: width 0s linear 0.3s, transform 0.3s ease-out,
    -webkit-transform 0.3s ease-out;
  position: absolute;
  z-index: -1;
}

.header-button:hover {
  border-color: #00f8ff;
  gap: 4px;
}

.header-button:hover:after {
  -webkit-transition: width 0s linear, -webkit-transform 0.3s ease-out;
  transition: width 0s linear, -webkit-transform 0.3s ease-out;
  transition: width 0s linear, transform 0.3s ease-out;
  transition: width 0s linear, transform 0.3s ease-out,
    -webkit-transform 0.3s ease-out;
  transition: width 0s linear, transform 0.3s ease-out,
    -webkit-transform 0.3s ease-out;
  width: 100%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.header-button.active {
  border-right-color: #00f8ff;
  border-bottom-color: #00f8ff;
}

.header-button.active:after {
  width: 100%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.header-button.active span {
  -webkit-transition: -webkit-transform 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  margin: 0;
  position: absolute;
  height: 30px;
}

.header-button.active span:first-child {
  -webkit-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}

.header-button.active span:last-child {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.header-button span {
  -webkit-transition: -webkit-transform 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
  -webkit-transform-origin: center;
  transform-origin: center;
  width: 2px;
  height: 40px;
  display: block;
  background-color: #fff;
}

.header-list {
  margin: 0;
  padding: 30px 0;
  text-align: center;
  border-right: 1px solid #3a3a3a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.header-list__item {
  display: block;
}

.header-list__item img {
  -webkit-filter: saturate(0) brightness(0) invert(1);
  filter: saturate(0) brightness(0) invert(1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header-list__item:hover img {
  -webkit-filter: none;
  filter: none;
}

.header-content {
  position: fixed;
  z-index: 98;
  height: 100vh;
  overflow-y: auto;
  -webkit-transform: translateX(-150%);
  transform: translateX(-150%);
  -webkit-transition: 1s ease-out;
  transition: 1s ease-out;
  width: 100vw;
  left: 0;
  top: 0;
  background-color: #fff;
  padding-left: 70px;
  overflow: auto;
}

.header-content.active {
  -webkit-transform: translate(0);
  transform: translate(0);
}

.header-content__wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  min-height: 970px;
  padding: 70px 40px 236px;
}

.header-content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0;
  max-width: 1457px;
}

.header-content__nav {
  margin-top: 44px;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  counter-reset: section;
  gap: 40px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 380px;
}

.header-content__nav a {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  color: #000;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  font-size: 42px;
  font-family: Barlow-Regular, sans-serif;
  position: relative;
  padding-left: 41px;
}

.header-content__nav a:before {
  position: absolute;
  padding-top: 10px;
  padding-bottom: 4px;
  display: inline-block;
  width: 41px;
  font-size: 16px;
  font-family: "PF Din Display Pro", sans-serif;
  font-weight: 300;
  content: "0" counter(section);
  counter-increment: section;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  top: 0;
  left: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.header-content__nav a:hover {
  font-family: Barlow-Medium, sans-serif;
  color: #f061ce;
}

.header-content__nav a:hover:before {
  top: 100%;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  color: #f061ce;
  font-family: "PF Din Display Pro", sans-serif;
  font-weight: 400;
}

.header-contact {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 825px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-contact__item {
  padding: 52px 0 24px 60px;
  position: relative;
  max-width: 341px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #000;
}

.header-contact__item:before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  left: 0;
  top: 0;
}

.header-contact__item strong {
  font-family: AGPB, sans-serif;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
}

.header-contact__item p {
  font-family: Barlow-Regular, sans-serif;
  font-size: 20px;
  line-height: 30px;
  margin: 20px 0 12px;
}
.header-list .header-list__item a{
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.header-list .header-list__item a:hover{
  color: #00f8ff;
}

.header-contact__item a {
  margin-top: auto;
  display: inline-block;
  padding-left: 36px;
  color: #00f8ff;
  font-family: Barlow-Medium, sans-serif;
  font-size: 20px;
  text-decoration: none;
  background: url(../img/menu/letter.svg) left center no-repeat;
}

.header-contact__item a span {
  line-height: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #00f8ff;
  -webkit-transition: 0.2s ease-in;
  transition: 0.2s ease-in;
}

.header-contact__item a:hover span {
  border-bottom: 1px solid #00f8ff;
}

.header-subscribe {
  position: absolute;
  right: 200px;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.header-subscribe__plane {
  position: absolute;
  left: -34px;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.header-subscribe__block {
  width: 440px;
  padding: 36px 40px 45px 40px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
 
  background: url(../img/bg-site.png) 440px 310px, radial-gradient( 60.45% 76.17% at -5.8% 40.18%, #d11ded 0, rgba(22, 169, 254, 0) 100% ), radial-gradient(101.15% 101.15% at 50% 101.15%, #0d6497 0, #11b5f1 53.65%);

}

.header-subscribe__block strong {
  font-family: AGPM, sans-serif;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
}

.header-subscribe__block b {
  font-family: AGPM, sans-serif;
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
}

.header-subscribe__block p {
  margin: 20px 0 30px;
  font-family: Barlow-Regular, sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.header-subscribe__block form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-subscribe__block input {
  font-size: 18px;
  font-family: Barlow-Medium, sans-serif;
  font-weight: 500;
  color: #fff;
  background: 0;
  border: 0;
  border-bottom: 1px solid #fff;
  padding: 0 11px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 290px;
}

.header-subscribe__block input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.header-subscribe__block input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.header-subscribe__block input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.header-subscribe__block input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.header-subscribe__block input:focus {
  outline: 0;
  border-bottom-color: orange;
}

.header-subscribe__block button {
  border: 0;
  width: 50px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform 0.15s linear;
  transition: -webkit-transform 0.15s linear;
  transition: transform 0.15s linear;
  transition: transform 0.15s linear, -webkit-transform 0.15s linear;
}

.header-subscribe__block button:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}





.main {
  padding: 257px 0 150px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.main-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 1200px;
  overflow-x: hidden;
  z-index: -1;
}

.main-back.active .main-back__head {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 1.2s ease-in 3.9s;
  transition: -webkit-transform 1.2s ease-in 3.9s;
  transition: transform 1.2s ease-in 3.9s;
  transition: transform 1.2s ease-in 3.9s, -webkit-transform 1.2s ease-in 3.9s;
}

.main-back.active .main-back__head img:last-child {
  -webkit-animation: main-head 4s linear 5.1s infinite alternate;
  animation: main-head 4s linear 5.1s infinite alternate;
}

.main-back.active .main-back__triangle img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.main-back.active .white-triangle > img {
  opacity: 1;
  -webkit-transition: opacity 0s linear 3.9s, -webkit-transform 1.2s linear 3.9s;
  transition: opacity 0s linear 3.9s, -webkit-transform 1.2s linear 3.9s;
  transition: opacity 0s linear 3.9s, transform 1.2s linear 3.9s;
  transition: opacity 0s linear 3.9s, transform 1.2s linear 3.9s,
    -webkit-transform 1.2s linear 3.9s;
  transition: opacity 0s linear 3.9s, transform 1.2s linear 3.9s,
    -webkit-transform 1.2s linear 3.9s;
  -webkit-animation: white-triangle 8s linear 5.1s infinite alternate;
  animation: white-triangle 8s linear 5.1s infinite alternate;
}

.main-back.active .blue-triangle > img {
  opacity: 1;
  -webkit-transition: opacity 0s linear 2.7s, -webkit-transform 1.2s linear 2.7s;
  transition: opacity 0s linear 2.7s, -webkit-transform 1.2s linear 2.7s;
  transition: opacity 0s linear 2.7s, transform 1.2s linear 2.7s;
  transition: opacity 0s linear 2.7s, transform 1.2s linear 2.7s,
    -webkit-transform 1.2s linear 2.7s;
  transition: opacity 0s linear 2.7s, transform 1.2s linear 2.7s,
    -webkit-transform 1.2s linear 2.7s;
  -webkit-animation: blue-triangle 8s linear 5.1s infinite alternate;
  animation: blue-triangle 8s linear 5.1s infinite alternate;
}

.main-back.active .purple-triangle > img {
  opacity: 1;
  -webkit-transition: opacity 0s linear 1.5s,
    -webkit-transform 1.2s ease-out 1.5s;
  transition: opacity 0s linear 1.5s, -webkit-transform 1.2s ease-out 1.5s;
  -webkit-transition: opacity 0s linear 1.5s,
    -webkit-transform 1.2s ease-out 1.5s;
  transition: opacity 0s linear 1.5s, transform 1.2s ease-out 1.5s;
  transition: opacity 0s linear 1.5s, transform 1.2s ease-out 1.5s,
    -webkit-transform 1.2s ease-out 1.5s;
  transition: opacity 0s linear 1.5s, transform 1.2s ease-out 1.5s,
    -webkit-transform 1.2s ease-out 1.5s;
  -webkit-animation: purple-triangle 8s linear 5.1s infinite;
  animation: purple-triangle 8s linear 5.1s infinite;
}

.main-back.active .blue-triangle:before {
  opacity: 1;
  -webkit-transition: opacity 1.2s linear 2.7s;
  transition: opacity 1.2s linear 2.7s;
}

.main-back.active .purple-triangle:before {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 1.2s ease-out 1.5s;
  transition: -webkit-transform 1.2s ease-out 1.5s;
  transition: transform 1.2s ease-out 1.5s;
  transition: transform 1.2s ease-out 1.5s, -webkit-transform 1.2s ease-out 1.5s;
}

.main-back.active .main-back__block {
  opacity: 1;
}

.main-back.active .main-back__block:before {
  opacity: 1;
  -webkit-transition: opacity 1.2s ease-out 1.5s;
  transition: opacity 1.2s ease-out 1.5s;
}

.main-back__head {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  right: -68px;
  top: 218px;
  position: absolute;
  max-width: 555px;
  width: 100%;
}

.main-back__head img {
  width: 100%;
  position: absolute;
  top: 120px;
  opacity: 1;
}

.main-back__head img:last-child {
  opacity: 0;
}

.main-back__head.active img {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.main-back__block {
  -webkit-transition: opacity 0.4s ease-in 0.2s;
  transition: opacity 0.4s ease-in 0.2s;
  opacity: 0;
  position: absolute;
  right: -131px;
  top: -296px;
  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;
}

.main-back__block:before {
  content: url(../img/anim-bg-1.png);
  position: absolute;
  left: -600px;
  top: 290px;
  opacity: 0;
}

.main-back__triangle {
  position: absolute;
  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;
}

.main-back__triangle.white-triangle {
  position: relative;
}

.main-back__triangle.white-triangle img {
  opacity: 0;
  max-width: none;
}

.main-back__triangle.white-triangle > img {
  -webkit-transform: scale(0.53) translateY(0);
  transform: scale(0.53) translateY(0);
}

.main-back__triangle .blue-triangle > img {
  -webkit-transform: scale(0.73);
  transform: scale(0.73);
}

.main-back__triangle .purple-triangle > img {
  -webkit-transform: scale(0.63);
  transform: scale(0.63);
}

.main-back__triangle.blue-triangle:before {
  content: url(../img/smoke.svg);
  position: absolute;
  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;
  width: 1147px;
  height: 1063px;
  top: -150px;
  left: -240px;
  opacity: 0;
  -webkit-animation: main-smoke 10s linear 0.3s infinite alternate;
  animation: main-smoke 10s linear 0.3s infinite alternate;
}

.main-back__triangle.purple-triangle:before {
  -webkit-transform: scale(0);
  transform: scale(0);
  content: url(../img/purple-triangle-bg.svg);
  width: 249px;
  height: 486px;
  position: absolute;
  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;
  top: -226px;
}

.main-info {
  position: relative;
  z-index: 2;
  color: #fff;
  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-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  max-width: 690px;
}

.main-info__text {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-transform: uppercase;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.main-info__text span {
  font-family: AGPM, sans-serif;
  font-size: 38px;
  display: inline-block;
  position: relative;
}

.main-info__text span:before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  position: absolute;
  border: 1px solid #fff;
}

.main-info__text span.main-first-span:before {
  border-left: 0;
  border-bottom: 0;
  left: 100%;
  top: -48px;
}

.main-info__text span.main-second-span {
  margin-left: 156px;
}

.main-info__text span.main-second-span:before {
  border-top: 0;
  border-right: 0;
  left: -101px;
  bottom: 9px;
}

.main-info__text strong {
  font-family: AGPB, sans-serif;
  font-size: 90px;
  font-weight: 700;
}

.main-info__text b {
  font-weight: 500;
  font-size: 55px;
  font-family: AGPM, sans-serif;
  margin-bottom: 26px;
  display: inline-block;
  background: radial-gradient(
      60.45% 76.17% at -5.8% 40.18%,
      #16a9fe 0,
      rgba(22, 169, 254, 0) 100%
    ),
    radial-gradient(101.15% 101.15% at 50% 101.15%, #0342e7 0, #cb24ff 53.65%)
      #fff;
  background-repeat: no-repeat;
  background-position: -640px;
  -webkit-animation: nft-gradient-text 10s ease-in 4s infinite;
  animation: nft-gradient-text 10s ease-in 4s infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-info__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-info__bottom p {
  margin: 0;
  line-height: 34px;
  font-size: 24px;
  font-family: Barlow-Light, sans-serif;
  max-width: 280px;
}

.main-info__bottom button {
  background-color: #00f8ff;
  font-family: AGPB, sans-serif;
  font-size: 16px;
  width: 200px;
  height: 200px;
  position: relative;
  border: 0;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.main-info__bottom button:after,
.main-info__bottom button:before {
  position: absolute;
  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;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.main-info__bottom button:before {
  content: url(../img/btn-bg-1.svg);
  width: 311px;
  height: 191px;
  left: -64px;
  top: -41px;
  -webkit-animation: main-button-1 4s linear infinite;
  animation: main-button-1 4s linear infinite;
}

/* .main-info__bottom button:after {
  content: url(../img/btn-bg-2.svg);
  width: 139px;
  height: 139px;
  top: 30px;
  left: -17px;
  -webkit-animation: main-button-2 4s linear infinite;
  animation: main-button-2 4s linear infinite;
} */

.main-info__bottom button:hover {
  -webkit-transform: scale(0.91);
  transform: scale(0.91);
}

.main-info__bottom button:hover:before {
  -webkit-animation-play-state: pause;
  animation-play-state: pause;
  opacity: 0;
}

.main-info__bottom button:hover:after {
  -webkit-animation-play-state: pause;
  animation-play-state: pause;
  opacity: 0;
}

.main-info__bottom button span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-family: AGPB, sans-serif;
}

.main-info__bottom button img {
  position: absolute;
  bottom: 38px;
  z-index: 1;
}


::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #101010;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #00f8ff;
}