* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: Dirtchunk;
    src: url(../fonts/dirtchunk-dirtchunk-regular-400.ttf);
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    cursor: default;
    font-family: Open Sans;
    color: #ffffff;
}
img{
    width: 100%;
}
p {
    color: #FFF;
    font-family: Urbanist;
    font-size: 1.18vw;
    font-style: normal;
    font-weight: 400;
    line-height: 143%;
}
.p-1{
    color: #FFF;
    font-family: Urbanist;
    font-size: 1.2vw;
    font-style: normal;
    font-weight: 500;
    line-height: 127%; /* 24.13px */
    opacity: 1;
    letter-spacing: 0.57px;
}
.p-2{
    color: #FFF;
    font-family: Urbanist;
    opacity: 1;
    font-size: 1.1vw;
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 21.25px */
    letter-spacing: -0.17px;
    display: flex;
    align-items: center;
    gap: .6vw;
}

h1 {
    font-family: Dirtchunk;
    font-size: 4.5vw;
    font-weight: 400;
    line-height: 69px;
    letter-spacing: 0em;
    color: rgba(250, 255, 2, 1);   
    transition: all 2s;
}
h2 {
    color: rgba(250, 255, 2, 1);
    font-family: Dirtchunk;
    font-size: 3.12vw;
    font-style: normal;
    font-weight: 600;
    line-height: 127%; /* 63.5px */
}

h3 {
    font-size: 1.8vw;
    line-height: 2.4vw;
    font-weight: 700;
    text-align: center;
}


a {
    text-decoration: none;
    cursor: pointer;
}

li {
    list-style: none;
    font-size: 1vw;
    line-height: 100%;
    color: #FFFFFF;
}

.btn {
    color: #000;
    font-family: Urbanist;
    font-size: 1.1vw;
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 21.25px */
    letter-spacing: -0.17px;
    border-radius: 1vw;
    padding: 1.2vw 3vw;
    background: linear-gradient(272deg, #FFC964 1.32%, #FFA467 43.97%, #FFF5C9 79.67%);
    transition: all .4s;
}
.btn span svg{
    width: .7vw;
    margin-left: .5vw;
    font-weight: 800;
}
.btn:hover {
    /* filter: brightness(150%); */
    filter: brightness(150%);
    transform: translateY(-0.4vw);
}

.btn1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .5vw;
    padding: .5vw 1.5vw;
    border-radius: 2vw;
    color: #fff;
    font-family: Urbanist;
    font-size: 1vw;
    font-weight: 600;
    letter-spacing: 0em;
    text-align: center;
    transition: all 1s;
}

.btn1:hover {
    transform: translateY(-0.4vw);
}

.btn1 img {
    width: .8vw;
}

.btn2 {
    color: #fff;
    font-family: Urbanist;
    font-size: 1.1vw;
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 21.25px */
    letter-spacing: -0.17px;
    border-radius: 1vw;
    padding: 1.2vw 3vw;
    background: #1F1F1F;
    transition: all .4s;
}
.btn2:hover {
    filter: invert(150%);
    transform: translateY(-0.4vw);
}
.btn4 {
    padding: 1vw 2.5vw;
    font-weight: 700;
}


body{
    overflow-x: hidden;
    background: #13161D;
}




/* -------------------------------------------Navbar Management------------------
-------------------- */

.header {
    padding: 1vw 4vw 10vw 4vw;
    position: relative;
    top: 0;
    width: 100%;
    animation: bounce 1s;
    animation-iteration-count: 1;
}

.header .navbar {
    border-radius: 2vw;
    padding: 1vw 2.5vw 1vw 1vw;
    width: 100%;
    height: auto;
    background: transparent;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
}
.header .social-icons{
    display: flex;
    align-items: center;
    gap: 1vw;
}
.header .social-icons a img{
    width: 3vw;
    transition: all .3s;
}
.header .social-icons a img:hover {
    transform: translateY(-10px);
}
.header .social-icons a:last-child img{
    width: 9vw;
}
.header .social-icons img:hover {
    filter:saturate(500%);
}

/* ---------hero-section-----------
------- */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 75.2vw;
    padding: 3vw 3vw;
    background: url(../images/hero-bg.png)no-repeat;
    background-size: cover;
    background-position: top center;
    margin-top: -10.5vw;
    position: relative;
    z-index: 3;
}
.hero-img-wrapper {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: -1.3vw;
}
.hero-img-wrapper img{
    width: 35%;
}
.hero-img-wrapper img:nth-child(2){
    width: 27%;
}
.hero-section .chart {
    display: flex;
    align-items: center;
    justify-content: end;
}
.hero-section .chart .chart-inner {
    width: 65%;
    display: flex;
    align-items: center;
    gap: 8vw;
    margin-top: 5vw;
    position: relative;
}
.chart-dec-1 {
    position: absolute;
    width: 12vw;
    right: 4vw;
    top: 3vw;
}
.chart-dec-2 {
    position: absolute;
    width: 1vw;
    left: -2vw;
    top: -2vw;
}
.hero-section .chart .chart-inner a img{
    width: 9vw;
}
/* -------------about-----
-------- */
.about{
    display: flex;
    justify-content: space-between;
    padding: 5vw 15vw;
    background: url(../images/about-bg.png)no-repeat,#1A1A1A;
    background-size: 50vw;
    background-position: 2% 40%;
    margin-top: -0.3vw;
}
.about .left {
    width: 46%;
    position: relative;
}
.about-img {
    position: absolute;
    width: 35%;
    top: 0%;
    left: 32.5%;
    animation: anime-1 3s linear infinite alternate;
}
.about-img-1 {
    position: absolute;
    width: 35%;
    top: 40%;
    left: 14%;
    animation: anime-2 3s infinite alternate;

}
.about-img-2 {
    position: absolute;
    width: 35%;
    top: 40%;
    left: 51%;
    animation: anime-3 3s infinite alternate;

}
.about .right {
    width: 46%;
}
.about .right a img{
    width: 12vw;
    margin-top: 2vw;
}
@keyframes anime-1 {
    0%{
        top: -12%;
    }
    100%{
        top: 0;
    }
}
@keyframes anime-2 {
    0%{
        top: 45%;
        left: 3%;
    }
    100%{
        top: 42%;
        left: 15%;
    }
}
@keyframes anime-3 {
    0%{
        top: 45%;
        left: 62%;
    }
    100%{
        top: 42%;
        left: 51%;
    }
}
/* -----------------------------------------------nft----------
----------------------- */

.nft {
    padding: 5vw 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FAFF02;
    margin-top: -0.4vw;
}
.nft h1{
    color:#000;
    margin-bottom: 2vw;
}
.slider {
    height: auto;
    width: 100%;
    margin: auto;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.slide-track {
    display: flex;
    width: calc(25vw * 18);
    animation: scroll 40s linear infinite reverse;
}

.slide-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translate(0);
    }
    100% {
        transform: translate(calc(-25vw * 9));
    }
}

.slide-track1 {
    display: flex;
    width: calc(25vw * 18);
    animation: scrolling 40s linear infinite forwards;
}

.slide-track1:hover {
    animation-play-state: paused;
}

@keyframes scrolling {
    0% {
        transform: translate(0);
    }
    100% {
        transform: translate(calc(-25vw * 9));
    }
}

.slide {
    height: 20vw;
    width: 20vw;
    display: flex;
    align-items: center;
    padding: 5px;
    perspective: 100px;
}

.slide img {
    width: 100%;
}

.slide img:hover {
    transition: transform 1s;
}
/* -------------tokenomics-------
------ */
.tokenomics {
    text-align: center;
    padding: 5vw 10vw;
    background: #000;
    margin-top: -0.5vw;
}
.token-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    margin-top: 2vw;
}
.token-content .token-box {
    width: 20%;
    padding: 1vw 2vw;
    border: 2px solid rgba(250, 255, 255, .3);
}
.token-content .token-box:nth-child(1) {
    width: 24%;
    border: none;
    background: url(../images/token-box-bg-1.png)no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.token-content .token-box:nth-child(2) {
    width: 20%;
}
.token-content .token-box:nth-child(3) {
    width: 28%;
}
.token-content .token-box:nth-child(4){
    width: 24%;
    background: url(../images/token-box-bg-2.png)no-repeat;
    background-size: 100% 100%;
    background-position: center;
    border: none;
}
.token-content .token-box span {
    font-family: Urbanist;
    font-size: 1vw;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0em;
    text-align: left;
    opacity: .8;
}
.token-content .token-box h6{
    font-family: Urbanist;
    font-size: 1.4vw;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0em;
    text-align: left;
}
/* ----------------roadmap---------
---- */
.roadmap {
    text-align: center;
    padding: 3vw 0;
    padding-bottom: 15vw;
    background: url(../images/road-bg.png)no-repeat;
    background-size: 100% 100%;
    background-position: top center;
}
.road-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    margin-top: 4vw;
}
.road-content .road-box {
    width: 35%;
    padding: 3vw 5vw;
    background: url(../images/road-box-bg.png)no-repeat;
    background-size: 100% 100%;
    background-position: center;
    text-align: left;
}
.road-content .road-box:nth-child(2) {
    background: url(../images/road-box-bg-1.png)no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.road-content .road-box:nth-child(3) {
    background: url(../images/road-box-bg-2.png)no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.road-content .road-box:nth-child(4) {
    background: url(../images/road-box-bg-3.png)no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.road-content .road-box h5{
    font-family: Urbanist;
    font-size: 1.6vw;
    font-weight: 500;
    margin-bottom: 0.5vw;
    letter-spacing: 0.13em;
    color: rgba(250, 255, 2, 1);
}
.road-content .road-box ul {
    margin-left: 1vw;
}
.road-content .road-box ul li {
    list-style: disc;
    font-family: Urbanist;
    font-size: 1vw;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0em;

}
/* ---------------------join-us----
---- */
.join {
    padding: 4vw 8vw;
    text-align: center;
    margin-top: -5vw;
    position: relative;
}
.join-bg-1{
    position: absolute;
    width: 40vw;
    top: -22vw;
    left: 0;
    z-index: -1;
}
.join-bg-2{
    position: absolute;
    width: 40vw;
    top: -22vw;
    right: 0;
    z-index: -1;
}
.join-content {
    padding: 4vw 0;
    background: url(../images/join-bg.png)no-repeat;
    background-size: 100% 100%;
    background-position: center;
    position: relative;
}
.join-img-1{
    position: absolute;
    width: 35vw;
    bottom: 0.3vw;
    left: 0.3vw;
}
.join-img-2{
    position: absolute;
    width: 31vw;
    bottom: 0.3vw;
    right: 0.3vw;
}
.join-content a img{
    width: 10vw;
    margin-top: 1.5vw;
}
  /* ---------footer----
  --- */
  footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 2vw 4vw;
    padding: 2vw 2vw;
    border-bottom: 1px solid rgba(250, 255, 255, .1);
  }
  footer ul li a{
    color: #8D8D8D;
    font-family: Urbanist;
    font-size: 1.1vw;
    font-style: normal;
    font-weight: 400;
    line-height: 203%; /* 24.31px */
  }
  footer ul li a:hover{
    text-decoration: underline;
  }
  footer .logo img{
    width: 12vw;
    margin-bottom: 1vw;
  }
  footer .logo{
    width: 40%;
    padding-right: 8vw;
  }
  footer .company {
    width: 14%;
  }
  footer .Support {
    width: 14%;
  }
  footer .policy {
    width: 14%;
  }
  footer .contact {
    width: 14%;
  }
  footer .p-1{
    margin-bottom: 1.5vw;
  }
  /* ---------copyright----
  ----- */
  .copyright{
    padding: 0 0 2vw 0;
  }
  .copyright p{
    font-size: 1vw;
    opacity: 1;
    text-align: center;
    color: #F8E18F;
  }
/* --------------------------------website Responsive--------------
-------------------- */

/* ----------------------------@ 1280px--------
------- */

@media (max-width: 1280px) {

    /* -------------------------navbar 1280px--------------------------
    ----------------------- */
    
    .header {
        padding: 1vw 3vw 10vw 3vw;
        animation: none;
    }

    .header ,.navbar {
        border-radius: 0vw;
    }

    .center-menu {
        width: 58%;
    }



}

/* ----------------------------@ 980px--------
------- */

@media (max-width: 980px) {

    .btn3 {
        padding: 1vw 2.5vw;
        font-weight: 700;
        background: #361CDE;
    }
    
    .btn4 {
        padding: 1vw 3.5vw;
        font-weight: 700;
    }

    p {
        font-size: 1.5vw;
        line-height: 3vw;
    }
    .p-1{
        font-size: 1.8vw;
    }
    .p-2{
        font-size: 1.5vw;
    }

    h1 {
        font-size: 4.5vw;
        line-height: 6vw;
    }

    h2 {
        font-size: 3.5vw;
        line-height: 5vw;
    }

    h3 {
        font-size: 3vw;
        line-height: 4vw;
    }
    .p-1{
        font-size: 4vw;
    }
    .p-2{
        font-size: 3vw;
    }
    .slider-container .slider-content {
        width: 244.66px;
        height: 98.66px;
    }

    .btn {
        padding: 1vw 2vw;
        border-radius: 1vw;
        font-size: 1.3vw;
        text-align: center;
        transition: all 1s;
    }
    .btn2{
        font-size: 1.3vw;
    }
    .btn:hover {
        border: 1px solid #ffffff;
        transform: translateY(-0.4vw);
    }
    
    .btn1 {
        padding: 2vw;
        border-radius: 4vw;
        font-size: 3vw;
        font-weight: 600;
        text-align: center;
        transition: all 1s;
    }
    
    .btn1 img {
        width: 1.5vw;
    }

    /* .header {
        padding-bottom: 1vw;
    } */

.header .navbar {
    padding: 1vw 2.5vw;
}

.header .social-icons img{
    width: 5vw;
}


  .dp {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
    padding: 1vw 3vw 2vw 3vw;
    border-radius: 1vw;
    position: absolute;
    top: 47vw;
    left: 38%;
    z-index: 1000;
    transition: 1s;
    display: none;
  }

  .dp a {
    font-family: Urbanist;
    color: #ffffff;
    font-size: 3vw;
    line-height: 4.2vw;
    background-size: 200% 100%;
    background-position: 100% 0%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    transition: all 2s;
  }

  .dp a:hover {
    background-position: 0 0;
  }

  .dp::before {
    content: '';
    width: 2vw;
    height: 2vw;
    transform: rotate(45deg);
    position: relative;
    top: -2vw;
}

  .dp.active {
    display: flex;
    animation: fadeInDown 1s;
  }
  .mission-wrap .container-2 div {
    max-height: 29vw;
  }
  .mission-wrap .container-1 .left .sub-left h5 {
    font-size: 2vw;
  }
  .star-2 {
    top: 23vw;
  }
  .star-4 {
    top: 4vw;
  }
  .crypto-service {
    font-size: 1.2vw;
    padding: .6vw 1.3vw;
  }
}

/* ----------------------------@ 768px--------
------- */
@media (max-width:768px) {
    .faq-wrap {
        display: flex;
        flex-direction: column;
        gap: 3vw;
    }
    .panel p{
        margin-top: 1vw;
    }
}
/* ----------------------------@ 600px--------
------- */

@media (max-width: 600px) {

    h1 {
        font-size: 8vw;
        line-height: 9vw;
        text-align: center;
    }

    h2 {
        font-size: 5.5vw;
        line-height: 7vw;
        text-align: center;
    }

    h3 {
        font-size: 3.5vw;
        line-height: 5vw;
        text-align: center;
    }

    p {
        font-size: 3.5vw;
        line-height: 5vw;
        text-align: center;
    }
    .p-1{
        font-size: 6vw;
    }

    .slider-container .slider-content {
        width: 91px;
        height: 37px;
    }

    .btn1 {
        border-radius: 1vw;
        padding: .5vw 3vw;
    }

    .btn {
        padding: 2.7vw 5vw;
        border-radius: 1vw;
        font-size: 4vw;
        line-height: 1.2vw;
        /* or 274% */
        transition: all 1s;
    }
    .btn:hover{
        filter: brightness(150%);
    }

    .header .navbar .left-side-menu {
        width: 50%;
    }
    .header .social-icons {
        gap: 2vw;
    }
    .header .social-icons a img{
        width: 8vw;
    }
    .header .social-icons a:last-child img {
        width: 23vw;
    } 
    
      .btn span svg {
        width: 3.2vw;
      }
      .btn2{
        padding: 2.7vw 5vw;
        font-size: 3vw;
        line-height: 2.6vw;
        border-radius: 1vw;
      }

      
/* ---------hero-section-----------
------- */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 5vw 4vw;
    height: 127vw;
    background-size: 100% 55%;
    background-position: 50% 23%;
    margin-top: -9.5vw;
    position: relative;
    z-index: 3;
}
.hero-section .chart .chart-inner{
    width: 100%;
    flex-direction: column;
    margin-top: 5vw;
}
.hero-section .chart .chart-inner p{
    padding: 0 7vw;
}
.chart-dec-2 {
    display: none;
}
.chart-dec-1 {
    position: absolute;
    width: 27vw;
    right: 44vw;
    top: 29vw;
}
.hero-section .chart .chart-inner a img {
    width: 20vw;
}
/* ------------about-------
---- */
.about {
    flex-direction: column-reverse;
    margin-top: -0.8vw;
    padding: 10vw 5vw;
    gap: 10vw;
}
.about h1 {
    margin-bottom: 4vw;
}
.about .right {
    width: 100%;
    text-align: center;
}
.about .left {
    width: 100%;
    text-align: center;
    height: 84vw;
}
.about .right a img {
    width: 30vw;
    margin-top: 5vw;
}
/* -------------nft------
---- */
.nft{
    margin-top: -0.8vw;
    padding: 10vw 0;
}
.nft h1{
    margin-bottom: 5vw;
}
.slide {
    width: 40vw;
    height: 40vw;
}
.slide-track {
    width: calc(45vw* 18);
}


/* -------------tokenomics-------
------ */
.tokenomics {
    text-align: center;
    padding: 5vw 10vw;
    background: #000;
    margin-top: -0.5vw;
}
.tokenomics h1{
    margin-bottom: 8vw;
}
.token-content{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    gap: 5vw;
    margin-top: 2vw;
}
.token-content .token-box {
    width: 80%;
    padding: 5vw 2vw;
    border: 2px solid rgba(250, 255, 255, .3);
    text-align: center;
}
.token-content .token-box:nth-child(1) {
    width: 80%;
    border: none;
    background: url(../images/token-box-bg-1.png)no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.token-content .token-box:nth-child(2) {
    width: 80%;
}
.token-content .token-box:nth-child(3) {
    width: 80%;
}
.token-content .token-box:nth-child(4){
    width: 80%;
    background: url(../images/token-box-bg-2.png)no-repeat;
    background-size: 100% 100%;
    background-position: center;
    border: none;
}
.token-content .token-box span {
    font-family: Urbanist;
    font-size: 3vw;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0em;
    text-align: left;
    opacity: .8;
}
.token-content .token-box h6{
    font-family: Urbanist;
    font-size: 5.4vw;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 0em;
    text-align: center;
}


/* ----------------roadmap---------
---- */
.roadmap {
    text-align: center;
    padding: 3vw 0;
    padding-bottom: 15vw;
    background: url(../images/road-bg.png)no-repeat;
    background-size: 123% 100%;
    background-position: top center;
}
.road-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    margin-top: 4vw;
}
.road-content .road-box {
    width: 65%;
    padding: 3vw 8vw;
    background: url(../images/road-box-bg.png)no-repeat;
    background-size: 100% 100%;
    background-position: center;
    text-align: left;
}
.road-content .road-box:nth-child(2) {
    background: url(../images/road-box-bg-1.png)no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.road-content .road-box:nth-child(3) {
    background: url(../images/road-box-bg-2.png)no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.road-content .road-box:nth-child(4) {
    background: url(../images/road-box-bg-3.png)no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.road-content .road-box h5{
    font-family: Urbanist;
    font-size: 5.6vw;
    font-weight: 500;
    margin-bottom: 0.5vw;
    letter-spacing: 0.13em;
    color: rgba(250, 255, 2, 1);
}
.road-content .road-box ul {
    margin-left: 1vw;
}
.road-content .road-box ul li {
    list-style: disc;
    font-family: Urbanist;
    font-size: 3vw;
    font-weight: 400;
    line-height: 160%;
    letter-spacing: 0em;

}
/* ------------join------
----- */
.join {
    padding: 10vw 8vw;
}
.join-img-1{
    width: 30vw;
}
.join-img-2 {
    width: 24vw;
}
.join-content a img {
    width: 20vw;
}
  /* ---------footer----
  --- */
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2vw 6vw;
    gap: 8vw;
  }
  footer h2{
    font-size: 7vw;
    margin-bottom: 2vw;
  }
  footer ul li {
    text-align: center;
  }
  footer ul li a{
    color: #8D8D8D;
    font-family: Urbanist;
    font-size: 3.5vw;
    font-style: normal;
    font-weight: 400;
    line-height: 203%; /* 24.31px */
  }
  footer ul li a:hover{
    text-decoration: underline;
  }
  footer .logo img{
    width: 35vw;
    margin-bottom: 1vw;
  }
  footer .logo{
    width: 100%;
    padding-right: 2vw;
    text-align: center;
  }
  footer .company {
    width: 100%;
    text-align: center;
  }
  footer .Support {
    width: 100%;
  }
  footer .policy {
    width: 100%;
  }
  footer .contact {
    width: 100%;
  }
  footer .p-1{
    margin-bottom: 1.5vw;
  }
  /* ---------copyright----
  ----- */
  .copyright{
    padding: 4vw 0;
  }
  .copyright p{
    font-size: 3.5vw;
    opacity: 1;
    text-align: center;
    color: #F8E18F;
    letter-spacing: .5px;
  }
}