@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;900&display=swap');

@font-face {
    font-family: "Nexus";
    src: url("./NexaRustSans-Trial-BlackShadow1.ttf") format("truetype");
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Merriweather', serif;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
.nexus{
    font-family: "Nexus";
}
body{
    position: relative;
    width: 100%;
    color: #fff;
    overflow-x: hidden;
    background-color: black;;
}

.vid{
    position: relative;
    width: 100%;
    height: 95vh;
    background-image: url('./backg2.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    z-index: 1;
}
nav {
    padding: 2rem;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}
nav a,
nav .nav-item{
    text-decoration: none !important;
    font-weight: bold;

}
nav button:focus{
    outline: none !important;
    border: none !important;
}
nav ul{
    color: #fff;
    padding: 0.5rem 1rem;
}
nav ul li{
    padding: 0.5rem;
    margin: 0.5rem;
    border: 2px solid #613204;
    transform: skewX(-15deg);
}
nav ul li a{
    color: #fff !important;
    font-size: 0.85rem;
    text-transform: uppercase;
}
nav ul li a:hover{
    color: #fff !important;
    transform: scale(1.2);
}
nav ul li:hover {
    background-color: #613204 !important;
    color: #fff !important;
}
nav .navbar-brand{
    width: 45%;
}
nav .navbar-collapse{
    margin-left: 15rem;
}
.container-fluid .nav-image {
    height: 40px;
    width: 50px;
    margin-top: 0.8rem;
}
.container-fluid .nav-image img{
    width: 80%;
    height: 80%;
    border-radius: 50%;
}

.hero{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 35%;
    min-height: 75vh;
}
.hero-text{
    width: 100%;
    padding-left: 10%;
}
.hero-text h1{
    font-size: 4rem;
    font-weight: bold;
}
.hero-text h1 span{
    font-family: "Nexus";
}
.hero-text p{
    font-size: 1.5rem;
}
.hero-text .buttons{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.hero-text .buttons a{
    background-color: #613204;
    transform: skewX(-15deg);
    margin: 0.5rem;
    box-shadow:  5px 10px 10px rgba(255,255,255,0.1);
    font-size: 1.2rem;
    padding: 0.8rem;
    color: #fff;
}
.hero-text .buttons a:hover{
    background-color: #000;
    transform: skewX(-15deg);
    color: #fff;
    border: 2px solid #e4a101;
    box-shadow: none;
}
.vid .element-shape{
    position: absolute;
    width: 100%;
    top: 84%;
}
.vid .element-shape svg{
    background-color: #613204 !important;
}


.tokenomics{
    position: relative;
    padding: 3rem;
    width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(38,19,1,1) 45%, rgb(41, 20, 2) 80%, rgba(0,0,0,1) 100%);
}
.tokenomics h4{
    text-align: center;
    font-size: 0.9rem;
    color: #e4a101;
    font-weight: bold;
    width: 100%;
}
.tokenomics h1{
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    font-family: "Nexus";
    width: 100%;
    margin-top: 1rem;
}
.tokenomics p{
    text-align: center;
    font-size: 1.5rem;
    padding: 2rem 4rem;
}
.tokenomic-details{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.tokenomics-box{
    width: 30%;
    margin: 0.5rem; 
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    border: 4px solid #613204;
    margin-bottom: 1.5rem;
    box-shadow: 8px 10px 10px rgba(0,0,0,0.85);
}
.tokenomics-box h3{
    font-size: 0.8rem;
    color: rgb(235, 158, 5);
    margin-bottom: 1rem;
}
.tokenomics-box h2{
    font-size: 2rem;
    font-weight: bold;
}
.first-h2{
    font-size: 1.2rem !important;
}


.about{
    position: relative;
    width: 100%;
    height: auto;
    background:black;
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%,  rgba(0,0,0,1) 100%);
}
.about-content{
    padding: 7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;

}
.about-img {
    height: 50%;
    width: 50%;
}
.about-img img{
    height: 100%;
    width: 100%;
    border-radius: 15px;
}
.about-text{
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-right: 5%;
}
.about h4{
    text-align: center;
    font-size: 0.9rem;
    color: rgb(235, 158, 5);
    font-weight: bold;
    width: 100%;
    margin-bottom: 1rem;
}
.about h1{
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    width: 100%;
    margin-top: 1rem;
}
.about h1 span{
    font-family: 'Nexus';
}
.about p{
    font-size: 1.4rem;
    padding: 1rem;
}
.about .about-text a{
    width: 30%;
    text-align: center;
    background-color: #613204;
    margin: 0.5rem;
    padding: 0.5rem;
    color: #fff;
    transform: skewX(-15deg);
}

.about a:hover{
    background: #000;
    color: #fff;
    border: 2px solid #e4a101;
}
.about .element-shape svg{
    background-color: rgb(41, 20, 2);
}

.features{
    padding: 3rem;
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(38,18,1,1) 60%, rgba(41,20,2,1) 100%);
}
.features h1{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #0f0f12;
    text-shadow: -2px 0 0 #434347, 2px 0 0 #434347, 0 2px 0 #434347, 0 -2px 0 #434347;
    mix-blend-mode: lighten;
}
.features h2{
    text-align: center;
    width: 100%;
    margin-top: 3%;
    font-size: 2rem;
    font-weight: bold;
}
.potential{
    position: relative;
    width: 100%;
    padding: 2rem 7rem ;
    display: flex;
    align-items: center;
    justify-content: center;
}
.potential-box{
    padding: 1.5rem;
    margin: 0.5rem;
    width: 80%;
    border-top-right-radius: 0px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 0px;
    background-color: #000;
    box-shadow:8px 10px 10px rgba(0,0,0,0.85);
}
.potential-box img{
    margin-bottom: 1rem;
    transform: scale(0.6);
}
.potential-box h3{
    font-size: 1.3rem;
    padding-left: 4%;
}
.potential-box p{
    text-align: left;
    font-size: 0.9rem;
}



.links ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
}
.links ul li{
    margin: 0.5rem;  
    font-size: 3rem;
    margin: 1.5rem;
}
.links ul li a i{
    color: orange;
}
.links ul li a i:hover{
    color: #fff;
}

.roadmap{
    position: relative;
    padding: 3rem;
    width: 100%;
}
.roadmap h4{
    text-align: center;
    font-size: 0.9rem;
    color: rgb(235, 158, 5);
    font-weight: bold;
    width: 100%;
}
.roadmap h1{
    width: 100%;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: bold;
}
.roadmap-details{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.roadmap-details .roadmap-box{
    position: relative;
    background-color: #613204;
    border: 3px solid #fff;
    width: 30%;
    margin: 0.5rem;
    height: auto;
    padding: 1rem;
    color: #fff;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    box-shadow: 5px 15px 15px rgba(0,0.0,0.8);
}
.roadmap-box ul{
    margin-top: 3rem;
}
.roadmap-box ul li{
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
.roadmap-box .roadmap-head{
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: orange;
    border: 2.5px solid black;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
}
.roadmap-box h2{
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: bold;
    font-style: italic;
    font-family: 'Merriweather', serif;
}

.community{
    position: relative;
    width: 100%;
    padding: 3rem;
}
.community h1{
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 2rem;
}
.community h1 span{
    font-family: 'Nexus';
}
.community .buttons{
    display: flex;
    align-items: center;
    justify-content: center;
}
.community .buttons a{
    background-color: #613204;
    transform: skewX(-15deg);
    margin: 0.5rem;
    box-shadow:  5px 10px 10px rgba(255,255,255,0.1);
    font-size: 1.2rem;
    padding: 0.8rem;
    color: #fff;
}
.community .buttons a:hover{
    background-color: #000;
    transform: skewX(-15deg);
    color: #fff;
    border: 2px solid #e4a101;
    box-shadow: none;
}

.back-cover{
    z-index: 22;
}

.foot{
    position: relative;
    width: 100%;
    padding: 3rem;
    padding-bottom: 0rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.foot-line{
    width: 100%;
    height: 2px;
    border: 1px solid rgba(255, 255, 255, 0.696);
    margin-bottom: 0.6rem;
}
.copyright{
    width: 100%;
    text-align: center;
}
.copyright span{
    margin-top: 1rem;
}
@media(max-width:1130px){
    .buy-details .buy-box{
        height: 35rem;
    }
}
@media(max-width:1100px){
    .buy-details .buy-box{
        height: 40rem;
    }
}
@media(max-width:992px){
    nav .navbar-collapse{
        margin-left: 0rem;
    }
    nav .navbar-brand{
        font-size: 0.5rem;
    }

    .hero{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 95%;
        padding: 3rem;
    }
    .hero-text{
        width: 100%;
        padding-left: 0%;
    }
    .hero-text h1{
        font-size: 2rem;
    }
    .hero-text p{
        font-size: 1.2rem;
    }
    .hero-text .buttons{
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .hero-text .buttons a{
        font-size: 1.2rem;
        padding: 0.6rem;
    }
     .element-shape{
        display: none;
    }
    
    .about{
        position: relative;
        width: 100%;
    }
    .about-content{
        padding: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .about-img {
        height: 50%;
        width: 70%;
    }
    .about-text{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-right: 0%;
    }
    .about h4{
        text-align: center;
        font-size: 0.7rem;
        width: 100%;
    }
    .about h1{
        text-align: center;
        font-size: 2rem;
    }
    .about p{
        text-align: center;
        font-size: 1.2rem;
        padding: 1rem;
    }
    .about .about-text a{
        width: 90%;
        margin: 0.5rem;
        padding: 0.5rem;
    }

    .community{
        position: relative;
        width: 100%;
        padding: 1rem;
    }
    .community h1{
        text-align: center;
        font-size: 2rem;
    }
    .community .buttons{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .community .buttons a{
        box-shadow:  5px 10px 10px rgba(255,255,255,0.1);
        font-size: 1rem;
        padding: 0.6rem;
    }
    
    .roadmap{
        position: relative;
        padding: 1rem;
        width: 100%;
    }
    .roadmap h4{
        text-align: center;
        font-size: 0.7rem;
    }
    .roadmap h1{
        width: 100%;
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    .roadmap-details{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .roadmap-details .roadmap-box{
        width: 90%;
        margin: 0.5rem;
        height: auto;
        padding: 1rem;
        margin-bottom: 4rem;
    }
    .roadmap-box ul{
        margin-top: 3rem;
    }
    .roadmap-box ul li{
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }
    .roadmap-box .roadmap-head{
        position: absolute;
        top: -10%;
        left: 50%;
        transform: translateX(-50%);
        width: 4.5rem;
        height: 4.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .roadmap-box h2{
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 1rem;
        font-weight: bold;
        font-style: italic;
    }
    
    .tokenomics{
        position: relative;
        padding: 1rem;
        width: 100%;
    }
    .tokenomics h4{
        text-align: center;
        font-size: 0.6rem;
    }
    .tokenomics h1{
        text-align: center;
        font-size: 1.5rem;
    }
    .tokenomics p{
        text-align: center;
        font-size: 1rem;
        padding: 1rem 2rem;
    }
    
    .tokenomic-details{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    .tokenomics-box{
        width: 90%;
        margin: 0.5rem; 
        border-radius: 1rem;
        padding: 1.5rem;
        text-align: center;
        position: relative;
    }
    .tokenomics-box h3{
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }
    .tokenomics-box h2{
        font-size: 2rem;
        font-weight: bold;
    }
    
    .back-cover{
        background-repeat: no-repeat;
        position: relative;
        z-index: 22;
    }
    

    .foot{
        padding: 1rem;
    }
    .foot p{
        font-size: 0.8rem;
    }

    .potential{
        position: relative;
        width: 100%;
        padding: 1rem ;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .potential-box{
        padding: 0.5rem;
        margin: 0.5rem;
        width: 90%;
    }
    .potential-box img{
        margin-bottom: 1rem;
        transform: scale(0.2);
    }
    .potential-box h3,
    .potential-box p{
        font-size: 0.8rem;
    }

    
}

@media(max-width:505px){
    
    .hero{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 95%;
        padding: 1rem;
    }
    .hero-text{
        width: 100%;
        padding-left: 0%;
    }
    .hero-text h1{
        font-size: 1.5;
    }
    .hero-text p{
        font-size: 1rem;
    }
    .hero-text .buttons{
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    .hero-text .buttons a{
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    .about{
        position: relative;
        width: 100%;
    }
    .about-content{
        padding: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .about-img {
        height: 50%;
        width: 70%;
    }
    .about-text{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .about h4{
        text-align: center;
        font-size: 0.5rem;
        width: 100%;
    }
    .about h1{
        text-align: center;
        font-size: 1.5rem;
    }
    .about p{
        text-align: center;
        font-size: 1rem;
        padding: 1rem;
    }
    .about .about-text a{
        width: 90%;
        margin: 0.5rem;
        padding: 0.5rem;
    }

    .community{
        position: relative;
        width: 100%;
        padding: 1rem;
    }
    .community h1{
        text-align: center;
        font-size: 2rem;
    }
    .community .buttons{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .community .buttons a{
        box-shadow:  5px 10px 10px rgba(255,255,255,0.1);
        font-size: 1rem;
        padding: 0.6rem;
    }
}