/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    background: #171928;
    width: 100%;
    overflow-x: hidden;
}

ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

header{
    width: 100%;
    position: absolute;
    z-index: 2222;
}
.menu-header{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 30px 0;
}
.navbar-list li a{
    text-decoration: none;
    color: #fff;
}
.navbar-list li a.active {
    color: #208d98;
    border-radius: 5px;
}
.social-icons{
    display: flex;
    gap: 20px;
}
.social-icons img{
    width: 40px;
}
/* .logo{
    width: 100%;
} */
.logo img{
    width: 100px;
}
nav{
    width: 100%;
}
.navbar-list{
    display: flex;
    color: #fff;
    justify-content: center;
    gap: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.navbar-list li{
    font-size: 17px;
}

#header2 {
    left: 0;
    width: 100%;
    z-index: 333;
    top: 0%;
    transition: all .3s ease;
}
.nav-link:focus, .nav-link:hover{
    color: #4dfde0 !important;
}
.nav-link{
    color: #fff !important;
}
.navbar-list.active {
    padding: 100px 20px !important;
    left: 0;
}
.for-mobile{
    display: none;
}
.toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #4dfde0;
    border-radius: 2px;
    transition: 0.3s;
}

.banner-hero{
    width: 100%;
}
.banner-img{
    position: relative;
    top: 30px;
    margin: 0 auto;
    max-width: 800px;
    z-index:10;
}
.banner-img img{
    width: 100%;
}
.banner-content{
    text-align: -webkit-center;
    width: 100%;
    z-index: 222;
    position: relative;
    top: -60px;
    color: #fff;
    font-family: "Roboto", serif;
}
.banner-content h1{
    font-size: 40px;
    width:  60%;
}
.bg-text{
    background: linear-gradient(to left, #4dfde0 0%, #eb5cff 50%, #457aeb 100%);
    -webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
    animation-name: animationgradienttitle-2;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-duration: 5s;
}

.button{
    margin-top:45px;
}
.button a{
    padding: 15px 40px;
    text-decoration: none;
    font-size: 20px;
    border-radius: 7px;
    color: #000;
    gap: 20px;
}
.button a:first-child{
    background: #4dfde0;
    margin-right: 40px;
}

.gradient-border {
    padding: 10px 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff !important;
    background: transparent;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 8px;
    padding: 2px; /* Border thickness */
    background: linear-gradient(45deg, #a046c0, #3bfad7, #a046c0, #3bfad7);
    background-size: 200% 200%; /* Larger size for smooth animation */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: background-position 0.4s ease;
    
}

.gradient-border:hover::before {
    animation: move-gradient 2s linear infinite;
}

@keyframes move-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.button i{
    margin-left: 13px;
}

.cards{
    width: 100%;
    position: relative;
    margin-top: 100px;
    text-align: -webkit-center;
}
.text{
    position: absolute;
    font-size: 55px;
    font-weight: 900;
    color: #292d4c;
    font-family: roboto;
    z-index: -2222;
    transform: scale(4, 3);
    right: 48%;
}
.card-content{
    position: relative;
    top: 30px;
    font-family: roboto;
    width: 50%;
}
.cards h2{
    color: #fff;
    font-size: 40px;
    margin-top: 30px;
    width: 60%;
    font-family: 'Roboto';
}
.cards p{
    color: #bcbcbc;
    font-size: 18px;
    line-height: 26px;
    margin-top: 10px;
}

.row-card{
    margin-top: 30px;
    width: 100%;
    display: flex;
    gap: 35px;
}

.two-div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 8px;
    padding: 2px; /* Border thickness */
    background: linear-gradient(45deg, #a046c0, #3bfad7, #a046c0, #3bfad7);
    background-size: 200% 200%; /* Larger size for smooth animation */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: background-position 0.4s ease;
}

.two-div:hover::before {
    animation: move-gradient 2s linear infinite;
}

@keyframes move-gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.card-section{
    width: 100%;
    margin-top: 100px;
}
.first-card {
    width: 33.33%;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    padding: 20px 20px;
    box-shadow: 1px 0px 19px rgb(245 245 245), 0 3px 3px rgba(0, 0, 0, 0);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border-radius: 8px;
}
.img{
    width: 100%;
    text-align: center;
}
.img img{
    width: 80px;
}
.inner-para{
    color: #fff;
}
.inner-para p{
    font-size: 20px;
    font-family: 'Roboto';
    line-height: 27px;
}
.first-card::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 8px;
    padding: 2px; /* Border thickness */
    background: linear-gradient(45deg, #a046c0, #3bfad7, #a046c0, #3bfad7);
    background-size: 200% 200%; /* Larger size for smooth animation */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: background-position 0.4s ease;
}
.first-card:hover::after {
    animation: move-gradient-2 2s linear infinite;
}

@keyframes move-gradient-2 {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.bg-shape{
    width: 100%;
    margin-top: 80px;
}
.three-bg-row{
    width: 100%;
    display: flex;
    align-items: center;
}
.one-bg{
    width: 20%;
}
.one-bg img{
    width: 100%;
}
.two-bg{
    width: 60%;
    color: #fff;
    text-align: center;
    font-family: roboto;
}
.two-bg h2{
    background: linear-gradient(to left, #4dfde0 0%, #eb5cff 50%, #457aeb 100%);
    background-size: 1600px 200px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-duration: 3s;
    font-size: 35px;
    animation-name: animationgradienttitle;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}
@keyframes animationgradienttitle {
    0% {
        background-position: 0 1600px;
    }
    100% {
        background-position: 1600px 0;
    }
  }
@keyframes animationgradienttitle-2 {
    0% {
        background-position: 0 1200px;
    }
    100% {
        background-position: 1200px 0;
    }
  }
.two-bg p{
    font-size: 17px;
    margin-top: 25px;
    line-height: 26px;
}
.three-bg{
    width: 20%;
}
.three-bg img{
    width: 100%;
}

.token-section{
    width: 100%;
    margin-top: 30px;
}
.token-div{
    width: 100%;
    display: flex;
    background: #eb5cff;
    padding: 60px 50px;
    color: #fff;
    border-radius: 8px;
    position: relative;
}
.left-token{
    width: 50%;
}
.left-token h2{
    font-size: 70px;
    font-family: roboto;
}
.token-list{
    padding-left: 130px;
    margin-top: 40px;
    position: relative;
}
.token-list::after{
    content: "";
    position: absolute;
    bottom: -85px;
    height: 100px;
    border: 1px solid #fff;
    transform: rotateZ(-45deg);
    left: 95px;
}
.token-list::before{
    content: "";
    position: absolute;
    height: 100%;
    left: 60px;
    border: 1px solid #fff;
}
.token-list li{
    line-height: 40px;
    margin-bottom: 23px;
}
.token-list span{
    font-size: 21px;
    font-family: roboto;
}
.token-list p{
    font-size: 35px;
    font-family: roboto;
    font-weight: 600;
}
.right-token{
    border: 1px solid #fff;
    border-radius: 8px;
    width: 50%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.right-token img{
    position: relative;
    top: 40px;
}
.right-token::before{
    content: "$PLS";
    position: absolute;
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    color: transparent;
    font-family: 'Roboto';
    top: 40px;
    letter-spacing: 5px;
    font-size: calc(80px + (140*(40vw - 320px))/5000);
}
.coin-2{
    position: absolute;
    right: -13%;
    bottom: -100px;
}
.coin-2 img{
    width: 300px;
}

.description-section{
    width: 100%;
    margin-top: 7%;
}
.description-row{
    width: 100%;
    display: flex;
}
.left-desc{
    width: 50%;
    color: #fff;
    font-family: 'Roboto';
}
.left-desc p{
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 36px;
}
.right-desc{
    color: #fff;
    width: 50%;
    font-family: 'Roboto';
    align-items: center;
    display: flex;
    justify-content: end;
}
.right-desc h3{
    font-size: 30px;
    text-align: center;
    margin-top: 59px;
    font-weight: 700;
    margin-right: -57px;
    color: #e655ff;
}
.right-desc img{
    width: 180px;
}
.icon{
    gap: 20px;
    display: flex;
}
.icon img{
    width: 40px;
}

footer{
    text-align: center;
    width: 100%;
    color: #fff;
    font-family: 'Roboto';
    line-height: 50px;
}
.footer-mail a{
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    background: linear-gradient(to left, #4dfde0 0%, #eb5cff 50%, #457aeb 100%);
    -webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
    animation-duration: 3s;
    animation-play-state: running;
    font-size: 35px;
    animation-name: animationgradienttitle;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
}
.footer-list{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer-list li{
    font-size: 19px;
}
.footer-mail{
    margin: 30px 0;
}
.copyright{
    font-size: 17px;
    margin-top: 30px;
}


.left-banner{
    position: absolute;
    left: 0;
    top: 40%;
    z-index: 0;
}
.left-banner img{
   width: 1000px;
}
.right-banner{
    position: absolute;
    right: -21px;
    top: 17%;
    z-index: 0;
}
.right-banner img{
    width: 1070px;
}

.ca-section{
    width: 100%;
    margin-top: 50px;
    text-align: center;
    font-family: roboto;
    line-height: 24px;
    margin-bottom: 23px;
}
.ca-section h2{
    color: #e655ff;
    font-size: 45px;
    line-height: 75px;
    font-weight: 600;
}
.ca-section p{
    font-size: 26px;
    color: #ffff;

}