@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

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

html{
       scroll-behavior: smooth;
       overflow-x: hidden;
}

body{
    background-color: #0F1928;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

/*show content on page scroll */
.hidden {
    opacity: 0;
    transform: none; 
    transition: opacity 1s ease-out;
}

.show {
    opacity: 1;
}

.hidden-left {
    opacity: 0;
    transform: translateX(-100px); 
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.hidden-right {
    opacity: 0;
    transform: translateX(100px); 
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.show {
    opacity: 1;
    transform: translateX(0);
}

/*google translate*/
.goog-te-gadget{
    font-size: 0;
}

.goog-te-combo{
    max-width: 100%;
    width: auto;
    display: block;
}

.goog-te-banner-frame{
    max-width: 100%;
    overflow: hidden;
}

.goog-te-gadget select{
    font-size: 1rem;
    padding: 0.5em 0;
    width: 80%;
}

.translate_container{
    display: flex;
    align-items: center;
}

/*Header styling*/
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 4em;
    background-color: #212529;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;  
    max-width: 100vw;
    z-index: 1000;
    overflow: hidden;
}

.header_nav:nth-of-type(2){
    display: flex;
    align-items: center;
    margin-right: 3em;
}

header .menu{
    display: none;
    background-color: #333;
    padding: 0.7em;
}

.mobile_menu{
    position: fixed;
    top: 0;
    margin-left: auto;
    right: 0;
    width: 60%;
    min-height: 100%;
    display: none;
    padding: 1em 1.3em;
}

.mobile_menu img{
    background-color: #333;
    padding: 1em;
}

.side_bar-links{
    margin-top: 5em;
}

.search_input{
    margin-top: 5em;
    margin-left: 1em;
}

.search_input input{
    padding: 15px 30px;
    background-color: transparent;
    border: 2px solid #333;
    border-radius: 5px;
    width: 100%;
    outline: none;
}
.mobile_menu ul li a{
    display: block;
    padding: 1em 0;
    font-size: 1rem;
    border-bottom: 1px solid #333;   
   
}

.header_logo{
    display: flex;
    align-items: center;
}

.header_logo img{
    width: 120px;
    height: 80px;
    object-fit: contain;
}

header ul li{
    list-style: none;
    display: inline;
}

header ul li a{
    text-decoration: none;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    margin-left: 1.5em;
}

/*General section styling*/
section{
    margin-top: 5em;
    padding: 1em 5em;
    overflow: hidden;
}

.container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

h2{
    font-family: 'Titillium Web', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
}

p{
    font-size: 1.2rem;
    margin-top: 1em;
    color: #ccc;
}

h4{
    font-size: 1.1rem;
    font-weight: 500;
    color: #ccc;
}


/*Hero section*/
.hero_section{
   margin-top: 4em;
   background: url("assets/blockchain_hero_bg.png");
   background-repeat: no-repeat;
   background-position: center;
   background-size: cover;
   width: 100%;
   height: 100%;
   padding: 2em 3em 8em 3em;
   
}

h1{
    font-family: 'Titillium Web', sans-serif;
    font-size: 4.5rem;
    font-weight: 500;
}

h1 span{
    color: orange;
}

.hero_left{
    margin-top: 8em;
    max-width: 800px;
    word-wrap: break-word;
    white-space: normal;

}

.hero_left p{
    margin-top: 1em;
    font-size: 1.2rem;
}

.hero_left button{
    margin-top: 3em;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    background-color: #9F2B68;
    color: #fff;
    cursor: pointer;
}

.hero_right{
    margin-top: 8em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 100px;
}

.hero_right_top p, .hero_right_bottom p{
    font-size: 1rem;
}

.hero_right_top, .hero_right_bottom{
    display: flex;
}

.hero_right_top div, .hero_right_bottom div{
    display: flex;
    align-items: center;
}

.hero_right_top div img, .hero_right_bottom div img{
    margin-top: 1em;
}

.hero_right_top{
    margin-left: 10em;
}

.hero_right_bottom {
    gap: 50px;
    margin-right: 10em;
}

/*about-section*/
.about_section .container{
    align-items: center;
}

.about_left{
    position: relative;
}

.about_left_relative{
    position: relative;
}

.about_left_absolute{
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
}

.about_right{
    max-width: 800px;
    white-space: normal;
    word-wrap: break-word;
}

/*services styling*/
.services{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 4em;
}

.services_right{
    position: relative;
}

.services_right_absolute{
    position: absolute;
    top: 40%;
    left: 45%;
    transform: translate(-50%, -50%);
}

/*token distribution*/
.token_section{
    padding:0 10em ;
}

.token_left{
    margin-top: 5em;
    max-width: 500px;
    white-space: normal;
    word-wrap: break-word;
}

/*mission*/
.mission_section{
    text-align: center;
}

.mission{
    margin-top: 5em;
    margin-left: 5em;
    cursor: pointer;
}

.mission_dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mission_dropdown h3{
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
}

.mission_statement{
    display: none;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.5s ease;
}

.mission_statement.show{
    display: block;
    max-height: 500px;
}

/*partners*/
.partners_section{
    text-align: center;
    padding: 0 4em;
    padding-bottom: 10em;
}

.partners{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 50px;
    margin-top: 3em;
    padding: 4em 0;
}

/*footer*/
footer{
    background: url("assets/footer_bg2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 4em;
}
.footer_top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid grey;
    padding-bottom: 4em;
}

.footer_top .subscribe_form input{
    padding: 8px 30px;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.footer_top .subscribe_cta button{
    padding: 10px 20px;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.footer_bottom{
    border-top: 1px solid grey;
    margin-top: 4em;
    display: flex;
    justify-content: space-between;
    padding-top: 3em;
}

.footer_bottom div h3{
    font-size: 1rem;
}

#back_to_top {
    position: fixed;
    bottom:2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: #0F1928;
    color: #fff;
    border: 1px solid black;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 3rem;
    max-height: 3rem;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

#back_to_top i{
    color: green;
}

/*media queries*/
@media screen and (max-width:1400px) {
    header ul li a{
        font-size: 0.8rem;
    }

    section{
        padding: 1em;
    }

    .hero_section{
        padding: 0 3em 7em 3em;         
    }

    h1{
        font-size: 3.5rem;
    }

    h2{
        font-size: 2rem;
    }

    p{
        font-size: 1rem;
    }

    h4{
        font-size: 1rem;
    }

    .hero_left p{
        font-size: 0.9rem;
    }

    .hero_right{
        gap: 10px;
    }
    
    .hero_right_top p, .hero_right_bottom p{
        font-size: 0.8rem;
    }
    
    .hero_right_top div img, .hero_right_bottom div img{
        margin-top: 1em;
    }
    
    .hero_right_top{
        margin-left: 7em;
    }
    
    .hero_right_bottom {
        gap: 50px;
        margin-right: 5em;
    }

    .about_left_absolute{
        left: 48%;
    }

    .services_right{
        margin-top: 5em;
    }

    .services_right_absolute{
        top: 50%;
        left: 48%;
    }

    .token_section{
        padding: 0 2em;
    }

    .token_section .container{
        align-items: center;
        gap: 30px;
    }

    .mission_section{
        padding: 3em;
    }

}

@media screen and (max-width:1200px) {
    h1{
        font-size: 3rem;
    }

    .rotating-circle{
        width: 500px;
        height: 400px;
        object-fit: contain;
    }

    .about_left_absolute{
        left: 50%;
    }

    .services_right_absolute{
        top: 30%;
        left: 50%;
    }

    .services_right_absolute img{
        width: 150px;
        height: 100px;
        object-fit: contain;
    }

    .token_right img{
        width: 500px;
        height: 400px;
        object-fit: contain;
    }

}

@media screen and (max-width:992px){
    header{
        padding: 1em 0;
    }

    .header_nav{
        display: none;
    }

    header .menu{
        display: block;
    }

    header .menu.right{
        margin-right: 0;
    }

    .header_nav:nth-of-type(2) ul li a{
        display: none;
    }

    .goog-te-gadget select{
        width: 100%;
        padding: 1em 0;
    }

    section{
        padding:0 5em;
    }

    section .container{
        display: flex !important;
        flex-direction: column !important; 
    }

    .hero_section{
        padding-left: 5em !important;
        padding-right: 5em !important;
    }

    .hero_section .container{
        gap: 5px;
    }

    .hero_right_top{
        margin-left: 5em;
    }
    
    .hero_right_bottom {
        margin-right: 4em;
    }

    .rotating-circle{
        width: 100%;
        height: 100%;
    }

    .services_right_absolute{
        top: 50%;
        left: 50%;
    }

    .services_right_absolute img{
        width: 100%;
        height: 100%;
    }

    .token_section{
        padding: 0;
    }

    .token_right img{
        width: 100%;
        height: 100%;
    }
}

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

    section{
        padding: 1em;
    }

    .partners{
        grid-template-columns: repeat(4, 1fr);
    }

}


@media screen and (max-width:576px){
    .goog-te-gadget select{
        padding: 0.5em 0;
    }

    section{
        padding: 1em;
    }

    .hero_section{
        padding: 0 1em 7em 1em !important;
    }

    .hero_right{
        align-items: center;
        margin-top: 2em;
    }

    .hero_right_top{
        margin-left: 0;
    }
    
    .hero_right_bottom {
        gap: 2px;
        margin-right: 0;
    }

    .header_logo{
        height: 60px;
    }

    .services_right_absolute img{
        width: 150px;
        height: 100px;
    }

    .mission_section{
        padding: 0;
    }

    .mission{
        margin-left: 1em;
    }

    .partners{
        grid-template-columns: repeat(2, 1fr);
    }

    .token_section{
        padding: 0 3em;
    }

    footer{
        display: flex;
        flex-direction: column;
        padding: 1em;
    }

    .footer_top{
        flex-direction: column;
        align-items: flex-start;
    }

}

@media screen and (max-width:480px){
    header{
        padding: 0;
    }

    .mobile_menu{
        width: 70%;
    }

    .hero_left, .about_right, .token_left{
        max-width: 100%;
    }  
    
   

}


@media screen and (max-width:380px){
    .hero_right img{
        width: 120px;
        height: 100px;
    }
    .hero_right_top{
        margin-left: 0.7em;
    }

    .hero_right_bottom{
        margin-left: 1em;
    }

   .hero_right_top p, .hero_right_bottom p{
    font-size: 0.7rem;
   }

    .mission_section{
        padding: 2em;
    }

    .mission{
        margin-left: 0;
    }

    .partners_section{
        padding: 2em;
    }

    .partners{
        column-gap: 30px;
    }
}

@media screen and (max-width:350px){
    header{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding:0.5em;
    }

    .header_logo{
        padding: 0;
    }

    header .menu.right{
        position: absolute;
        right: 1em;
        top: 1em;
    }

   
}




