@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;700&display=swap');
:root{
    --primary-color : #FFFFFF;
    /* --primary-color : #000000; */
    --secondary-color : #0075EB;
    --text-color : #000000;
    /* --text-color : #FFFFFF; */
    --btn-color : #CFF800;
    --btn-hover-color : #A7C902;
    --roadmap-color : #DFEEFF;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body{
    background-color: var(--primary-color);
    transition: all 0.5s linear;
}

body.dark{
    --primary-color : #000000;
    --text-color : #FFFFFF;
}

.navbar{
    width: 100%;
    height: 64px;
    padding: 0 5rem;
    position: fixed;
    overflow: hidden;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.23);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.1px);
    -webkit-backdrop-filter: blur(8.1px);
}

.nav-brading a{
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.nav-links ul{
    display: flex;
    list-style: none;
}

.nav-links ul li{
    margin: 0 0 0 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links ul li a{
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links ul li a:hover{
    color: var(--secondary-color);
}


.menu-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}
.menu-btn button{
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    user-select: none;
}

.manu-bar{
    position: fixed;
    z-index: 98;
    width: 100%;
    height: 0;
    justify-content: center;
    align-items: center;
    padding: 64px 0 0 0;
    overflow: hidden;
    display: none;
    transition: all 0.5s ease-in-out;

    background: rgba(255, 255, 255, 0.23);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.1px);
    -webkit-backdrop-filter: blur(8.1px);
}

.manu-bar ul{
    list-style: none;
    flex-direction: column;
    display: none;
    padding-bottom: 2rem;
}

.manu-bar ul li{
    margin: 1rem 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.manu-bar li a{
    color: var(--text-color);
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.manu-barul li a:hover{
    color: var(--secondary-color);
}

.manu-active{
    height: 280px;
}

.manu-active ul{
    display: flex;
}

.checkbox {
	opacity: 0;
	position: absolute;
}

.label {
	background-color: #111;
	border-radius: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px;
	position: relative;
	height: 20px;
	width: 40px;
	transform: scale(1.5);
}

.label .ball {
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	top: 2px;
	left: 2px;
	height: 16px;
	width: 16px;
	transform: translateX(0px);
	transition: transform 0.2s linear;
}

.checkbox:checked + .label .ball {
	transform: translateX(20px);
}


.fa-moon {
    font-size: 0.7rem;
	color: #FFFFFF;
}

.fa-sun {
    font-size: 0.7rem;
	color: #FFFFFF;
}


.primary-btn{
    font-size: 1.2rem;
    font-weight: 400;
    color: #000000;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    padding: 9px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
    width: 240px;
    height: 48px;
    background-color: var(--btn-color);
    transition: all 0.2s ease;
}

.primary-btn:hover{
    background-color: var(--btn-hover-color);
}

.blue-btn{
    font-size: 1.2rem;
    font-weight: 400;
    color: #FFFFFF;
    padding: 9px 0;
    text-decoration: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    text-align: center;
    display: block;
    border-radius: 5px;
    width: 240px;
    height: 48px;
    background-color: var(--secondary-color);
    transition: all 0.2s ease;
}


.blue-btn:hover{
    background-color: #0060EB;
}
.hero-section{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 10px;
}

@keyframes imgMove-1{
    0%{
        transform: translateY(0) rotate(20deg) ;
        -webkit-transform: translateY(0) rotate(20deg) ;
        -moz-transform: translateY(0) rotate(20deg) ;
        -o-transform: translateY(0) rotate(20deg) ; 
    }

    50%{
        transform: translateY(-30px) rotate(20deg) ;
        -webkit-transform: translateY(-30px) rotate(20deg) ;
        -moz-transform: translateY(-30px) rotate(20deg) ;
        -o-transform: translateY(-30px) rotate(20deg) ;
    }

    100%{
        transform: translateY(0) rotate(20deg) ;
        -webkit-transform: translateY(0) rotate(20deg) ;
        -moz-transform: translateY(0) rotate(20deg) ;
        -o-transform: translateY(0) rotate(20deg) ; 
    }
}

@keyframes imgMove-2{
    0%{
        transform: translateY(0) rotate(-20deg) ;
        -webkit-transform: translateY(0) rotate(-20deg) ;
        -moz-transform: translateY(0) rotate(-20deg) ;
        -o-transform: translateY(0) rotate(-20deg) ;
    }

    50%{
        transform: translateY(30px) rotate(-20deg) ;
        -webkit-transform: translateY(30px) rotate(-20deg) ;
        -moz-transform: translateY(30px) rotate(-20deg) ;
        -o-transform: translateY(30px) rotate(-20deg) ;
    }

    100%{
        transform: translateY(0) rotate(-20deg) ;
        -webkit-transform: translateY(0) rotate(-20deg) ;
        -moz-transform: translateY(0) rotate(-20deg) ;
        -o-transform: translateY(0) rotate(-20deg) ;
    }
}

@keyframes textMove{
    0%{
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
    }

    50%{
        transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -o-transform: translateY(-30px);
    }

    100%{
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

.hero-section img{
    position: absolute;
    z-index: 0;
    width: 240px;
}

.hero-section img:nth-child(1){
    top: -5rem;
    right: 0;
    transform: rotate(20deg);
}

.hero-section img:nth-child(2){
    bottom: -3rem;
    right: 1;
    left: 1;
    animation: imgMove-1 4s infinite;
}

.hero-section img:nth-child(3){
    bottom: -5rem;
    left: -3rem;
    transform: rotate(-20deg);
}

.hero-section img:nth-child(4){
    bottom: 1;
    top: 1;
    left: 2rem;
    animation: imgMove-2 4s infinite;
}

.hero-section img:nth-child(5){
    top: -1rem;
    right: 1;
    left: 1;
    animation: imgMove-1 4s infinite;
}

.hero-section img:nth-child(6){
    bottom: 1;
    top: 1;
    right: 2rem;
    animation: imgMove-2 4s infinite;
}

.hero-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    animation: textMove 4s infinite;
}

.hero-text span:nth-child(1){
    font-size: 5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    position: relative;
    color: var(--text-color);
}

.hero-text span:nth-child(2){
    font-size: 2rem;
    padding: 0 20rem;
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    position: relative;
    text-align: center;
    color: var(--text-color);
}


.about-section{
    width: 100%;
    height: 100vh;
    padding: 0 5rem;
    background-color: var(--secondary-color);
    display: flex;
}

.about-text{
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2rem 2rem 0;
}

.about-text span{
    font-size: 4rem;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: bold;
}

.about-text p{
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #FFFFFF;
    text-align: justify;
}

.about-img{
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img img{
    width: 60%;
    animation: textMove 4s infinite;
}

.nft-showcase{
    width: 100%;
    height: 90vh;
    overflow: hidden;

}
.row{
    padding: 0.2rem;
    width: auto;
    height: 30vh;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    animation: rowmove-1 40s infinite;
}

.row:nth-child(2){
    flex-direction: row-reverse;
    animation: rowmove-2 40s infinite;
}

@keyframes rowmove-1{
    0%{
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
    }

    50%{
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }

    100%{
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

@keyframes rowmove-2{
    0%{
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
    }

    50%{
        transform: translateX(100%);
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -o-transform: translateX(100%);
    }

    100%{
        transform: translateX(0);
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

.roadmap{
    width: 100%;
    height: auto;
    padding: 5rem 5rem;
    display: flex;
    justify-content: center;
    flex-direction: row;
    background-color: var(--roadmap-color);
}

.roadmap-img{
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.roadmap-img img{
    width: 80%;
    animation: textMove 4s infinite;
}

.roadmap-text span{
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.roadmap-text p{
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    text-align: justify;
}

.roadmap-cards{
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
}

.card{
    width: 100%;
    height: auto;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 5px;
    background-color: #FFFFFF;    
}

.card span{
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.card p{
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    text-align: justify;
}

.rarity{
    width: 100%;
    height: 100vh;
    padding: 0 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rarity-text{
    flex-basis: 50%;
}

.rarity-text span{
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-color);
}

.rarity-text p{
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    text-align: justify;
    color: var(--text-color);
}

.rarity-container{
    margin: 2rem 0;
    width: 50%;
}

.rarity-card{
    display: flex;
    justify-content: space-between;
    border-radius: 5px;
    padding: 0 1rem;
    margin: 1rem 0;
    line-height: 4rem;
}

.rarity-card span:nth-child(1){
    font-size: 1.5rem;
    font-weight: 600;
}

.rarity-card span:nth-child(2){
    font-size: 1.5rem;
    font-weight: 300;
}

.rarity-card:nth-child(1){
    background-color: rgba(207, 248, 0, 0.2);
}

.rarity-card:nth-child(2){
    background-color: rgba(207, 248, 0, 0.4);
}

.rarity-card:nth-child(3){
    background-color: rgba(207, 248, 0, 0.6);
}

.rarity-card:nth-child(4){
    background-color: rgba(207, 248, 0, 0.8);
}

.rarity-card:nth-child(5){
    background-color: rgba(207, 248, 0, 1);
}
.rarity-img{
    flex-basis: 50%;
}

.rarity-img img{
    width: 100%;
}

.creator{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 5rem 5rem;
    background-color: var(--secondary-color);
    color: #FFFFFF;
}

.creator-img{
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.creator-img img{
    width: 80%;
    animation: textMove 4s infinite;
}

.creator-text{
    flex-basis: 50%;
}

.creator-text span{
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.creator-text p{
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    margin: 1rem 0;
    text-align: justify;
}

.creator-text p a{
    color: var(--btn-color);
}

.faq{
    width: 100%;
    height: auto;
    padding: 5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.faq h4{
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-color);
}

.faq span{
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.faq-container{
    width: 60%;
    margin: 3rem 0;
}

.faq-card{
    margin: 1rem 0;
    padding:1rem;
    width: 100%;
    border-radius: 5px;
    background-color: var(--roadmap-color);
    overflow: hidden;
    height: 64px;
    cursor: pointer;
    transition: all 0.7s ease;
}

.faq-card-active{
    height: 170px;
}

.faq-card span i{
    transition: all 0.5s ease;
}
.faq-card-active span i{
    transform: rotate(180deg);
}


.faq-card span{
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.faq-card p{
    padding-top: 1rem;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    text-align: justify;
}

.ad{
    width: 100%;
    height: 50vh;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background-color: var(--btn-color);
    overflow: hidden;
}

.ad-text{
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ad-text span{
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;   
}

.ad-text p{
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    margin: 1rem 0;
    text-align: justify;
}

.ad-img{
    flex-basis: 50%;
}

.ad-img img{
    width: 100%;
}

.footer{
    width: 100%;
    height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer span{
    font-size: 2.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;   
    color: var(--text-color);
}

.footer p{
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    margin: 1rem 0;
    text-align: justify;
    color: var(--text-color);
}


.footer p a{
    color: var(--btn-color);
}

.footer span a{
    margin: 0 1rem;
    color: var(--btn-color);
}

@media only screen and (max-width: 800px) {

    .navbar{
        padding: 0 2rem;
    }

    .nav-links{
        display: none;
    }

    .menu-btn{
        display: block;
    }

    .manu-bar{
        display: block;
    }

    .hero-section img:nth-child(1){
        display: none;
    }

    .hero-section img:nth-child(2){
        transform: rotate(20deg);
    }
    
    .hero-section img:nth-child(3){
        display: none;
    }

    .hero-section img:nth-child(4){
        left: -6rem;
        width: 144px;
    }

    .hero-section img:nth-child(5){
        top: -6rem;
    }

    .hero-section img:nth-child(6){
        right: -3rem;
        width: 144px;
    }

    .hero-text span:nth-child(1){
        font-size: 2.5rem;
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
    }

    .hero-text span:nth-child(2){
        font-size: 2rem;
        padding: 0 2rem;
        margin-bottom: 2rem;
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        position: relative;
        text-align: center;
        color: var(--text-color);
    }

    .about-section{
        height: auto;
        flex-direction: column-reverse;
        padding: 5rem 2rem;
        text-align: center;
    }

    .about-text{
        padding: 0;
    }
    .about-text span{
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .roadmap{
        height: auto;
        padding: 5rem 2rem;
        flex-direction: column;
    }

    .roadmap-img{
        display: none;
    }

    .roadmap-text{
        text-align: center;
    }

    .card span{
        font-size: 1.5rem;
    }

    .rarity{
        height: auto;
        padding: 5rem 2rem;
        flex-direction: column-reverse;
    }

    .rarity-text{
        margin: 2rem 0;
        text-align: center;
    }

    .rarity-text p{
        margin: 2rem 0;
    }
    .rarity-container{
        width: 100%;
    }

    .creator{
        height: auto;
        padding: 5rem 2rem;
        flex-direction: column;
        text-align: center;
    }

    .creator-text span{
        font-size: 2rem;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
    }

    .creator-text a{
        margin: auto;
    }

    .faq{
        height: auto;
        padding: 5rem 2rem;    
    }

    .faq-card{
        height: 54px;
    }

    .faq h4{
        font-size: 2rem;
        text-align: center

    }

    .faq-container{
        width: 100%;
    }

    .faq-card p{
        font-size: 1rem;
    }

    .faq-card-active{
        height: 230px
    }

    .ad{
        padding: 5rem 2rem;
        height: auto;
        flex-direction: column-reverse;
    }

    .ad-img{
        margin-bottom: 2rem;
    }

    .ad-text span{
        margin: 1rem 0;
    }


    .ad-text p{
        margin: 2rem 0;
    }

    .footer{
        height: auto;
        padding: 5rem 2rem;
    }
}
