@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
@font-face {
    font-family: 'raskhal';
    src: url('../font/raskhal.woff2') format('woff2'),
         url('../font/raskhal.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'lagoonitalic';
    src: url('../font/lagoonbeach-italic-webfont.woff2') format('woff2'),
         url('../font/lagoonbeach-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'lagoon';
    src: url('../font/lagoonbeach-webfont.woff2') format('woff2'),
         url('../font/lagoonbeach-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body{
    font-family: 'raskhal', Helvetica, sans-serif;
    text-shadow: 0px 0px 10px #000;
    color: #fff;
}
header{
  display: flex;
  justify-content: center;
}
header.mobile{
  display: none;
}
header nav{
  display: flex;
  position: fixed;
  justify-content: space-around;
  width: 60%;
  padding:10px 0;
  align-items: center;
  z-index: 2;
  background-color: #fdf400;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0 0 5px 0 rgb(0 0 0 / 65%);
}
header nav a{
  text-shadow: 0 0 0 transparent;
  font-family: 'lagoon';
  color: #000;
  font-size: 18px;
}
header nav a:hover,
header nav a.active{
  color: #45bddd;
}
a{
  text-decoration: none;
  transition: 0.2s;
}
h1,h2,h3,h4,h5,h6{
  margin: 0;
  padding: 0;
}
.animate{
    opacity: 0;
}
.text--center{
    text-align: center;
}
article{
    width: 100%;
    height: 100%;
}
.loop__section{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: solid 2px #fff;
    border-top: solid 2px #fff;
}

.section__content{
    width: 85vw;
    height: 75vh;
    border-radius: 25px;
    box-shadow: 0 0 40px 0 rgb(0 0 0 / 60%);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.section__content::before{
    content:'';
    z-index: 1;
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
}
.content__text{
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}
.section__col{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 20px;
}
.content__video{
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
}
.content__video video{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    min-height: 50%;
    min-width: 50%;
}
.section--1{
    background: #ff00cc;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #333399, #ff00cc);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #333399, #ff00cc); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.section--1 .section__content::before{
  background: #C6FFDD;
  background: -webkit-linear-gradient(90deg, #333399 10%, transparent 50%, #ff00cc 90%);
  background: linear-gradient(90deg, #333399 10%, transparent 50%, #ff00cc 90%);
}
.section--2{
  background: #C6FFDD;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #f7797d, #FBD786, #C6FFDD);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #f7797d, #FBD786, #C6FFDD); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.section--2 .section__content::before{
  background: #C6FFDD;
  background: -webkit-linear-gradient(90deg, #000 10%, transparent 50%, #C6FFDD 90%);
  background: linear-gradient(90deg, #000 10%, transparent 50%, #C6FFDD 90%);
}
.section--3{
  background: #12c2e9;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #f64f59, #c471ed, #12c2e9);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #f64f59, #c471ed, #12c2e9); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.section--3 .section__content::before{
  background: #12c2e9;
  background: -webkit-linear-gradient(90deg, #12c2e9 10%, transparent 50%, #12c2e9 90%);
  background: linear-gradient(90deg, #12c2e9 10%, transparent 50%, #12c2e9 90%);
}
.section--4{
  background: #03001e;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #fdeff9, #ec38bc, #7303c0, #03001e);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #fdeff9, #ec38bc, #7303c0, #03001e); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.section--4 .section__content::before{
  background: #12c2e9;
  background: -webkit-linear-gradient(0, #000 10%, transparent 50%, #03001e 90%);
  background: linear-gradient(0, #000 10%, transparent 50%, #03001e 90%);
}

.section--5{
  background: #2948ff;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #2948ff, #ec38bc, #ec38bc, #2948ff);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #2948ff, #ec38bc, #ec38bc, #2948ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.section--5 .section__content::before{
  background: #12c2e9;
  background: -webkit-linear-gradient(45deg, #2948ff 10%, transparent 50%, #ec38bc 90%);
  background: linear-gradient(45deg, #2948ff 10%, transparent 50%, #ec38bc 90%);
}
.section--6{
  background: #7F7FD5;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #91EAE4, #86A8E7, #7F7FD5);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #91EAE4, #86A8E7, #7F7FD5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}
.section--6 .section__content::before{
  background: #91EAE4;
  background: -webkit-linear-gradient(45deg, #91EAE4 10%, transparent 50%, #7F7FD5 90%);
  background: linear-gradient(45deg, #91EAE4 10%, transparent 50%, #7F7FD5 90%);
}
.section--7{
  background: #159957;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #155799, #159957);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #155799, #159957); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.section--7 .section__content::before{
  background: #155799;
  background: -webkit-linear-gradient(0, #000 10%, transparent 50%, #000 90%);
  background: linear-gradient(0, #000 10%, transparent 50%, #000 90%);
}
.section--8{
  background: #7F00FF;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #E100FF, #7F00FF);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #E100FF, #7F00FF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.section--8 .section__content::before{
  background: #155799;
  background: -webkit-linear-gradient(90deg, #E100FF 10%, transparent 50%, #7F00FF 90%);
  background: linear-gradient(90deg, #E100FF 10%, transparent 50%, #7F00FF 90%);
}


.section--1 .logo{
    color: #fdf400;
    text-decoration: none;
    font-size: 75px;
    text-align: center;
    line-height: 80px;
    text-shadow: 0px 0px 50px #fdf400;
}
.section--1 .logo span{
    font-size: 150px;
}
.section--1 h1{
    font-size: 50px;
}
.section--1 h2{
    font-size: 30px;
}
.section--1 h3{
    font-size: 20px;
}

.section--1 .buttons{
  margin: 0;
  padding: 0;
}
.section--1 .buttons li{
  list-style: none;
  display: inline;
}
.section--1 .buttons li a{
  color: #0f0f0f;
  font-size: 17px;
  padding: 10px 30px;
  border:Solid 1px #fdf400;
  background-color: #fdf400;
  text-shadow: none;
}

.section--1 .buttons li a i{
  font-size: 16px;
  margin-left: 5px;
}
.section--1 .buttons li a.buy{
  animation: buyButton 3s infinite;
  text-shadow: 0 0 0 transparent;
}
.section--1 .buttons li a:hover{
  background-color: #fdf400;
  color: #45bddd;
  text-shadow: none;
}
.section--1 .socials{
  display: inline-block;
  margin: 20px 0 0 0;
  font-size: 30px;
}
.section--1 .socials a{
  color: #fdf400;
}
.section--1 .socials a:hover{
  color: #45bddd;
}

.section--1 .text--yellow{
  color: #fdf400; 
  font-size: 20px;
  font-family: 'lagoon';
  margin:20px 0;
  padding:0 50px;
}


.standart__section h2{
  font-size: 100px;
  line-height: normal;
  flex:inherit;
  margin:0;
}
.standart__section p,
.standart__section li{
  font-size: 18px;
  font-family: 'lagoon';
  text-shadow: 0px 0px 3px #000;
}
.standart__section li{
  text-align: left;
}
.team__col h4{
  font-size: 30px;
}
.team__col img{
  width: 100%;
}
.team__col .socials{
  margin: 10px 0 0 0;
}
.team__col a{
  font-size: 20px;
  color: #fff;
}


.terminal{
  background-color: #000;
  border:solid 2px #fff;
  min-height: 500px;
  width: 300px;
  padding:20px 10px;
  overflow: hidden;
  line-height: 15px;
}
.terminal p{
  font-size: 14px;
  text-align: left;
  font-family: 'VT323', monospace;
}
.terminal pre{
  transform: scale(.8, .8);
  color: #fdf400;
}
.line{
  position: relative;
  width: 100%;
  display: inline-block;
  margin: 0 auto;
  border-right: 2px solid rgba(255,255,255,.75);
  font-size: 180%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(-50%);    
}
.color--grey{
  color: #ccc;
}
.color--green{
  color:#228B22;
}
.color--purple{
  color:#D26696;
}
.color--purple2{
  color: #AF7DFF;
}
.color--yellow{
  color: #F6D8A0;
}
.color--purple3{
  color: #788DD1;
}

/* Animation */
.animate--type{
animation: typewriter 4s steps(44) 1s 1 normal both,
           blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter{
from{width: 0;}
to{width: 24em;}
}
@keyframes blinkTextCursor{
from{border-right-color: rgba(255,255,255,.75);}
to{border-right-color: transparent;}
}

.nft__card{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}
.card__wrap{
  margin:50px 0;
  border-radius: 20px;
  border:Solid 10px #1d0d5f;
  box-shadow: 0 0 50px 0 #000;
  background-color: #09041f;
  width:350px;
  height: 500px;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  animation: cardFlip 20s infinite;
}
.card__text{
  height: 100%;
  font-size: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 0;
}

.card__title{
  font-family: 'lagoon';
}

.card__content img{
  width: 90%;
  height: auto;
}

.roadmap__col h3{
  font-size: 60px;
}
.roadmap__col h4{
  font-family: 'lagoon';
  text-align: left;
  border-bottom: solid 2px #fff;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.roadmap__col a{
  color: #fdf400;
}

.roadmap__list{
  margin: 0;
  padding:0;
}

.roadmap__list li{
  list-style: none;
}


.published__col img{
  width: 100%;
  height: auto;
}

.published__col a.passive img{
  opacity: .7;
}
  
.preload{
  width: 100%;
  height: 100%;
  background-color: #000;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.preload .bar{
  border:solid 2px #fdf400;
  background-color: #fdf400;
  width: 400px;
  height: 30px;
}
.preload strong{
  font-size: 50px;
  color: #fdf400;
  flex: inherit;
  margin:30px 0;
  padding:0;
}
.preload h2{
  margin:0;
  flex: inherit;
  padding:0;
}

.preload .bar__inner{
  width: 0;
  height: 100%;
  background-color:#45bddd;
  transition: 15s;
}
.preload .bar__inner.active{
  width: 100%;
  height: 100%;
}
.tokenomics__col h2,
.tokenomics__col h3,
.tokenomics__col h4,
.tokenomics__col h5{
  margin:0;
  padding:0;
}
.tokenomics__col h3,
.tokenomics__col h4,
.tokenomics__col h5{
  font-family: 'lagoon';
}
.tokenomics__col h2{
  font-size: 90px;
}
.tokenomics__col h3{
  font-size: 40px;
  margin:40px 0 0 0;
  font-family: 'raskhal';
}
.tokenomics__col h4{
  font-size: 25px;
}
.tokenomics__col h5{
  font-size: 70px;
}

.scroll--up{
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin:0 40px 40px 0;
  background-color: #fdf400;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: #0f0f0f;
  cursor: pointer;
  opacity: 0;
  animation: scrollUp 3s infinite;
}
.scroll--up:hover{
  color: #45bddd;
}
.scroll--up.active{
  opacity: 1;
}


@media (max-width: 767px) {
  .section--1 .logo{
    display: none;
  }
    .scroll--up{
      margin:0 20px 20px 0;
    }
    header{
      display: none;
    }
    header.mobile{
      display: flex;
      position: fixed;
      z-index: 3;
      width: 100%;
      text-align: center;
      background-color: #0f0f0f;
      justify-content: center;
      padding:0 20px;
      align-items: center;
      flex-direction: row;
    }
    header.mobile .nav{
      color: #fdf400;
      font-size: 25px;
      position: fixed;
      right: 0;
      margin-right: 30px;
      top:27px;
    }
    header.mobile .nav .close{
      display: none;
    }
    header.mobile.active .nav .close{
      display: block;
    }
    header.mobile.active .nav .open{
      display: none;
    }
    header.mobile  .logo{
      color: #fdf400;
      text-decoration: none;
      font-size: 50px;
      text-align: center;
      line-height: 80px;
      text-shadow: 0px 0px 50px #fdf400;
      text-align: center;
    }
    header.mobile  .logo span{
      margin-left: 20px;
    }
    header.mobile.active{
      height: 100%;
      flex-direction: column;
      justify-content: center;
    }
    header.mobile.active .logo{
      font-size: 80px;
      margin:0;
      padding:0;
      flex:inherit;
    }
    header.mobile nav{
      display: none;
      box-shadow: none;
    }
    header.mobile.active nav{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      position: static;
      background-color: transparent;
      margin-top: 50px;
    }
    header.mobile nav a{
      color: #fdf400;
      font-size: 30px;
      padding:5px 0;
    }

    header.mobile  .logo br{
      display: none;
    }

    .preload{
      padding: 0 20px;
    }
    .preload .bar{
      width: 100%;
    }
    .preload strong{
      font-size: 30px;
      color: #fdf400;
    }
    .loop__section{
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
    }
    .section__content{
        width: 100%;
        min-height: 100vh;
        height: auto;
        box-shadow: none;
        border-radius: 0;
    }
    .section__content .content__text{
      justify-content: flex-start;
      padding: 90px 0;
    }
    .content__video{
        left:0;
        top:0;
        width: 100%;
        height: 100%;
    }
    .content__video video{
        /* position: relative;
        width: auto;
        height: 100%;
        left:-140%; */
        right: 0;
        bottom: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: black;
        object-fit: cover;
    }
    .section--1 .buttons li{
      width: 90%;
      display: inline-block;
      margin:5px 0;
    }
    .section--1 .buttons li a{
      width: 100%;
      display: block;
      background-color: transparent;
      color: #fdf400;
      border:solid 2px #fdf400;
      text-shadow: 0px 0px 10px #000;
    }
    .section--1 h1{
      font-size: 30px;
      padding:0 20px;
      margin:50px 0 0 0;
    }
    .section--1 h2{
      font-size: 20px;
    }
    .section--1 h3{
      font-size: 13px;
      margin:20px 0 50px 0;
    }
    .roadmap__col h4{
      text-align: center;
      padding-bottom: 5px;
      margin-bottom: 10px;
    }
    .roadmap__col ul{
      margin-bottom: 20px;
    }
    .roadmap__col li{
      text-align: center;
    }
    .tokenomics__col h2{
      font-size: 60px;
    }
    .tokenomics__col h5{
      font-size: 35px;
    }
    .tokenomics__col h3{
      margin:30px 0;
    }
    .standart__section h2{
      font-size: 60px;
    }
    .published__col h2{
      font-size: 35px;
    }




  .section--1,
  .section--2,
  .section--3,
  .section--4,
  .section--5,
  .section--6,
  .section--7,
  .section--8{
   background-color: #000;
  }
  .section--1 .section__content::before{
    background: #C6FFDD;
    background: -webkit-linear-gradient(0, #000 10%, transparent 50%, #000 90%);
    background: linear-gradient(0, #000 10%, transparent 50%, #000 90%);
  }
  .section--2 .section__content::before{
    background: #000;
    background: -webkit-linear-gradient(0, #000 10%, transparent 50%, #000 90%);
    background: linear-gradient(0, #000 10%, transparent 50%, #000 90%);
  }
  .section--3 .section__content::before{
    background: #12c2e9;
    background: -webkit-linear-gradient(0, #12c2e9 10%, transparent 50%, transparent 90%);
    background: linear-gradient(0, #12c2e9 10%, transparent 50%, transparent 90%);
  }
  .section--4 .section__content::before{
    background: #12c2e9;
    background: -webkit-linear-gradient(0, #000 10%, transparent 50%, #03001e 90%);
    background: linear-gradient(0, #000 10%, transparent 50%, #03001e 90%);
  }
  .section--5 .section__content::before{
    background: #12c2e9;
    background: -webkit-linear-gradient(0, #2948ff 10%, transparent 50%, #ec38bc 90%);
    background: linear-gradient(0, #2948ff 10%, transparent 50%, #ec38bc 90%);
  }
  .section--6 .section__content::before{
    background: #000;
    background: -webkit-linear-gradient(0, #000 10%, transparent 50%, #7F7FD5 90%);
    background: linear-gradient(0, #000 10%, transparent 50%, #7F7FD5 90%);
  }
  .section--7 .section__content::before{
    background: #155799;
    background: -webkit-linear-gradient(0, #000 10%, transparent 50%, #000 90%);
    background: linear-gradient(0, #000 10%, transparent 50%, #000 90%);
  }
  .section--8 .section__content::before{
    background: #155799;
    background: -webkit-linear-gradient(90deg, #E100FF 10%, transparent 50%, #7F00FF 90%);
    background: linear-gradient(90deg, #E100FF 10%, transparent 50%, #7F00FF 90%);
  }
}

@keyframes buyButton {
  0%{
    background-color: #fdf400;
    color:#0f0f0f;
  }
  50%{
    background-color:#fdf400;
    color: #45bddd;
  }
  100%{
    background-color:#fdf400;
    color:#0f0f0f;
  }
}
@keyframes cardFlip {
  0%{
    transform: rotateY(45deg);
  }
  25%{
    transform: rotateY(-45deg);
  }
  50%{
    transform: rotateY(45deg);
  }
  75%{
    transform: rotateY(-45deg);
  }
  100%{
    transform: rotateY(45deg);
  }
}
@keyframes scrollUp {
  0%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-20px);
  }
  100%{
    transform: translateY(0);
  }
}


.glitch--effect {
  flex: 1;
  line-height: .75;
  margin: auto;
  color: #fff;
  text-align: center;
  transform: scaleX(var(--scale, 1));
  animation: glitch-p 11s infinite alternate;
}
.glitch--effect::before, .glitch--effect::after {
  --top: 0;
  --left: 0;
  --v-height: 30%;
  --n-tenth: calc(var(--f-size) * .1 * var(--top));
  --t-cut: calc(var(--n-tenth) / var(--f-size) * 100%);
  --b-cut: calc(var(--t-cut) + var(--v-height));
  content: attr(data-text);
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  transform: translateX(calc(var(--left) * 100%));
  filter: drop-shadow(0 0 transparent);
  text-shadow: calc(var(--left) * -3em) 0 0.02em lime, calc(var(--left) * -6em) 0 0.02em #ff00e1;
  background-color: var(--bg);
  clip-path: polygon(0% var(--t-cut), 100% var(--t-cut), 100% var(--b-cut), 0% var(--b-cut));
}
.glitch--effect::before {
  animation: glitch-b 1.7s infinite alternate-reverse;
}
.glitch--effect::after {
  animation: glitch-a 3.1s infinite alternate;
}

@keyframes glitch-p {
  17% {
    --scale: .87;
  }
  31% {
    --scale: 1.1;
  }
  37% {
    --scale: 1.3;
  }
  47% {
    --scale: .91;
  }
  87% {
    --scale: 1;
  }
}
@keyframes glitch-a {
  10%,30%,50%,70%,90% {
    --top: 0;
    --left: 0;
  }
  0% {
    --v-height: 15%;
  }
  20% {
    --left: .005;
  }
  40% {
    --left: .01;
    --v-height: 20%;
    --top: 3;
  }
  60% {
    --left: .03;
    --v-height: 25%;
    --top: 6;
  }
  80% {
    --left: .07;
    --v-height: 5%;
    --top: 8;
  }
  100% {
    --left: .083;
    --v-height: 30%;
    --top: 1;
  }
}
@keyframes glitch-b {
  10%,30%,50%,70%,90% {
    --top: 0;
    --left: 0;
  }
  0% {
    --v-height: 15%;
    --top: 10;
  }
  20% {
    --left: -.005;
  }
  40% {
    --left: -.01;
    --v-height: 17%;
    --top: 3;
  }
  60% {
    --left: -.03;
    --v-height: 35%;
    --top: 6;
  }
  80% {
    --left: -.07;
    --v-height: 5%;
    --top: 8;
  }
  100% {
    --left: -.083;
    --v-height: 30%;
    --top: 1;
  }
}


