
:root{
    --color-default:#000000;
    --color-primary:#EEE427;
    --color-second:#071268;
}


/* 
=========================
    Général
=========================
*/

body::-webkit-scrollbar{ 
    width: 0 !important 
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    text-decoration: none;
    list-style: none;

}


html{
    scroll-behavior: smooth;
}


a{
    text-decoration: none;
    color: var(--color-default);
}

a:focus{
    outline:none;
}

header{
    width: 100%;
    height: 100vh;
}

svg .cls-1 {
    fill: #ffffff;
}

svg .cls-2 {
    fill: #fff;
}


/*----------------============= back to top ============--------------- */


#myBtn{
    opacity: 0;
    position: fixed; 
    bottom: 30px; 
    right: 50px; 
    z-index: 50; 
    padding: 5px;
    transition: ease all .3s;
    cursor: pointer;
}


#myBtn .cls-1 {
    fill: #22441863;
    transition: ease all .3s;
}


#myBtn .cls-2 {
    fill: #f5f5f5;
    transition: ease all .3s;
}


#myBtn:hover .cls-1 {
    fill: var(--color-other);
}


#myBtn:hover .cls-2 {
    fill:  #ffffff;
}


body{
    background: rgb(251,252,171);
    background: linear-gradient(90deg, rgba(251,252,171,1) 0%, rgba(251,252,171,1) 35%, rgba(252,251,113,1) 100%);
}


/*--------------------------------- navigation ----------------------------------- */


#navigation{
    width: 100%;
    position: fixed;
    margin-top: 0;
    background-color: #071268;
    z-index: 100;
    padding: 3px 15px;
    box-shadow: #2123261a 0px 10px 10px -10px;
}


.navbar{
    display: flex;
    width: 85%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}


.logo{
    width: 10%;
    padding: 5px;
}


.logo img{
    width: 100%;
}



/*------------------- Toggle ------------------*/



.btnOpen .cls-1{
    fill:#3C431A;
}


.btnClose .cls-1{
    fill:#3C431A;
}



/* click menu */


.toggle{
    position: absolute;
    background: rgba(253, 253, 253, 0.953);
    display: none;
    width: 40px;
    right: 35px;
    top: 15px;
    z-index: 100;
    cursor: pointer;
    text-align: center;
    border-radius: 3px;
}


.toggle svg{
    position: relative;
    top: 2px;
    left: -11px;
}


.toggle .btnOpen{
    display: block;
    width: 30px;
    position: relative;
    left: 1px;
    animation: menuA 0.5s forwards;
    
}

.toggle .btnClose{
    display:none;
    width: 25px;
    position: relative;
    left: 4px;
    animation: menuB 0.5s forwards;
}


.open .btnOpen{
    display: none;
}


.open .btnClose{
    display: block;
}


.open .menuNavbar-accueil{
    transform: translateY(0);
    animation: fade 0.5s forwards;
}


.open .menuNavbar{
    transform: translateY(0);
    animation: fade 0.5s forwards;
}



@keyframes menuB{
    from{
        opacity: 0;
        transform: rotate(-20deg);
    }
    to{
        opacity: 1;
        transform: rotate(0deg);
    }
}



@keyframes menuA{
    from{
        opacity: 0;
        transform: rotate(20deg);
    }
    to{
        opacity: 1;
        transform: rotate(0deg);
    }
}



/* ----------------------- Main ------------------------ */



.main_accueil{
    max-width: 100%;
}


.main_accueil .header{
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding-top: 220px;
}

.main_accueil .paragraphe_header{
    width: 40%;
    position: relative;
    top: 70px;
}

.titlle_ligdi{
    font-size: 50px;
    font-weight: 800;
    color: #071268;
    font-family: Arial, poppins, sans-serif;
    line-height: 1.2;
    margin-bottom: 20px;
}


.description_ligdi{
    font-size: 18px;
    line-height: 1.3;
}


.bloc_dowloader{
    padding: 30px 0;
}

.bloc_dowloader h1{
    font-size: 80px;
}

.bloc_dowloader p{
    font-size: 30px;
}

.image_icone_platforme{
    width: 50%;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

.image_icone_platforme img{
    width: 95%;
}


.bloc_image{
    width: 60%;
}

.bloc_image img{
    width: 100%;
}

.slogan{
    font-size: 35px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    text-align: center;
    padding-top: 45px;
    letter-spacing: -1px;
    font-style: oblique;
}



/*MEDIA*/



/* 
===================
1600px
===================
*/


@media(max-width:1600px){



}



/* 
===================
1200px
===================
*/

@media(max-width:1400px){
    
    #myBtn{
        bottom: 20px; 
        right: 40px; 
        padding: 3px;
    }

    /*-------------------------- navigation --------------------------- */


    #navigation{
        padding: 10px 0;
    }

    .navbar{
        width:85%;
    }

    .logo{
        width: 13%;
        top: 3px;
    }


    
    /* ----------------------- Main ------------------------ */



    .main_accueil .header{
        padding-top: 180px;
    }

    .main_accueil .paragraphe_header{
        width: 40%;
        top: 70px;
    }

    .titlle_ligdi{
        font-size: 45px;
        margin-bottom: 10px;
    }


    .description_ligdi{
        font-size: 18px;
        line-height: 1.1;
    }


    .bloc_dowloader{
        padding: 15px 0;
    }

    .bloc_dowloader h1{
        font-size: 40px;
    }

    .bloc_dowloader p{
        font-size: 25px;
    }

    .image_icone_platforme{
        width: 80%;
        padding-top: 10px;
    }

    .bloc_image{
        width: 60%;
        position: relative;
        top: 60px;
        left: 50px;
    }

    .bloc_image img{
        width: 90%;
    }

    .slogan{
        font-size: 30px;
        padding-top: 100px;
    }



}



/* 
===================
1024px
===================
*/

@media(max-width:1024px){
    
    #myBtn{
        bottom: 20px; 
        right: 40px; 
        padding: 1px;
    }

    /*-------------------------- navigation --------------------------- */


    #navigation{
        padding: 10px 0;
    }

    .navbar{
        width:85%;
    }

    .logo{
        width: 13%;
        top: 3px;
    }

    /*-------------------- click menu -------------------*/


    .toggle{
        display: block;
        top: 25px;
        width: 60px;
        height: 40px;
        padding: 5px 5px;
    }


    .toggle svg{
        top: 12px;
        left: -12px;
    }
    
    
    .toggle .btnOpen{
        width: 100px;
        left: -12px;
    }
    
    .toggle .btnClose{
        width: 100px;
        left: -12px;
    }


    /*-------------------- Main -------------------*/

    
    .main_accueil .header{
        padding-top: 210px;
    }

    .main_accueil .paragraphe_header{
        width: 50%;
        top: 70px;
    }

    .titlle_ligdi{
        font-size: 30px;
    }


    .description_ligdi{
        font-size: 16px;
    }


    .bloc_dowloader h1{
        font-size: 30px;
    }

    .bloc_dowloader p{
        font-size: 20px;
    }

    .image_icone_platforme{
        width: 80%;
        padding-top: 10px;
    }

    .bloc_image{
        width: 60%;
        position: relative;
        top: 60px;
        left: 50px;
    }

    .bloc_image img{
        width: 90%;
    }

    .slogan{
        font-size: 30px;
        padding-top: 100px;
    }


}




/* 
===================
920px
===================
*/

@media(max-width:950px){
    
 
    #myBtn{
        bottom: 10px; 
        right: 20px; 
        padding: 1px;
    }


    /*-------------------------- navigation --------------------------- */


    #navigation{
        padding: 6px 0;
    }

    .navbar{
        width:85%;

    }

    .logo{
        width: 20%;
        top: 3px;
    }



    /*-------------------- click menu -------------------*/


    .toggle{
        width: 50px;
        right: 35px;
        top: 35px;
        padding: 0;
    }

    .main_accueil .header{
        padding-top: 60px;
    }


    .titlle_ligdi{
        font-size: 20px;
    }


    .description_ligdi{
        font-size: 13px;
    }


    .bloc_dowloader h1{
        font-size: 20px;
    }

    .bloc_dowloader p{
        font-size: 15px;
    }

    .image_icone_platforme{
        width: 70%;
    }

    .bloc_image{
        top: 80px;
    }

    .bloc_image img{
        width: 80%;
    }

    .slogan{
        font-size: 20px;
        padding-top: 70px;
        margin-bottom: 50px;
    }

}




/* 
===================
768px
===================
*/



@media(max-width:768px){
    
 
    #myBtn{
        bottom: 10px; 
        right: 20px; 
        padding: 1px;
    }


    /*-------------------------- navigation --------------------------- */


    #navigation{
        padding: 10px 0;
    }

    .navbar{
        width:85%;

    }

    .logo{
        width: 15%;
        top: 3px;
    }


    .main_accueil .header{
        display: block;
        text-align: center;
    }

    
    .main_accueil .paragraphe_header{
        width: 100%;
        top: 70px;
    }

    .titlle_ligdi{
        font-size: 40px;
        margin-bottom: 20px;
    }


    .description_ligdi{
        font-size: 20px;
        line-height: 1.3;
    }


    .bloc_dowloader{
        padding: 30px 0;
    }

    .bloc_dowloader h1{
        font-size: 60px;
    }

    .bloc_dowloader p{
        font-size: 20px;
    }

    .image_icone_platforme{
        width: 70%;
        padding-top: 20px;
        margin: 0 auto;
    }

    .bloc_image{
        width: 100%;
        top: 100px;
        left: 0;
    }

    .bloc_image img{
        width: 80%;
    }

    .slogan{
        font-size: 30px;
        padding-top: 150px;
        margin-bottom: 60px;
    }


}



/* 
===================
540px
===================
*/



@media(max-width:540px){
    

    .toggle{
        width: 50px;
        right:15px;
        top: 15px;
    }

    .logo{
        width: 25%;
        padding: 0;
    }
 
    .titlle_ligdi{
        font-size: 25px;
        margin-bottom: 20px;
    }


    .description_ligdi{
        font-size: 16px;
    }


    .bloc_dowloader{
        padding: 20px 0;
    }

    .bloc_dowloader h1{
        font-size: 30px;
    }

    .bloc_dowloader p{
        font-size: 20px;
    }

    .image_icone_platforme{
        width: 80%;
    }

    .bloc_image img{
        width: 100%;
    }

    .slogan{
        font-size: 20px;
        padding-top: 150px;
        margin-bottom: 20px;
    }


}