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

:root{
    --main-color: rgb(17, 110, 45);
    --primary-color: rgb(194, 6, 241);
    --secondary-color: rgb(255, 196, 0);
}

a{
    text-decoration: none;
    color: inherit;
    display: inherit;
    padding: inherit;
    padding: inherit;
    width: 100%;
}

header{
    width: 100%;
    height: max-content;
    position: fixed;
    top: 0;
    z-index: 9999;
}
.header-inner{
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 20px 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.664);
    background-color: white;
    /*border-radius: 0 0 30px 30px;*/
}
.header-inner .logo{
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.header-inner nav{
    width: 70%;
    display: flex;
    justify-content: right;
}

.header-inner .logo img{
    width: 50px;
}
.header-inner .logo h1{
    width: max-content;
    font-size: 25px;
    font-weight: 800;
    margin: auto 0;
    margin-left: 10px;
}
#move{
    color: var(--primary-color);
}
#vert{
    color: var(--main-color);
}
#jaune{
    color: var(--secondary-color);
}
.header-inner nav ul{
    width: max-content;
    display: flex;
    list-style: none;
    gap: 10px;
}
.header-inner nav ul li{
    margin: auto 10px;
    font-size: 18px;
    text-transform: uppercase;
}

/* ---responsivite----- */
#btn_menu{
    background-color: transparent;
    font-size: 40px;
    color: rgb(82, 81, 81);
    cursor: pointer;
    width: max-content;
    height: max-content;
    display: flex;
    justify-content: right;
    margin: auto 0;
    display: none;
}
.redbtn{
    color: red !important;
}
.nav_mobile{
    display: flex !important;
    width: 50% !important;
    height: 100%;
    position:fixed;
    top: 0;
    left: 0;
    background-image: linear-gradient(rgba(17, 32, 17, 0.986),70%,rgba(74, 102, 74, 0.911));
    padding: 20px;
    padding-left: 40px;
    z-index: 9999;
    flex-direction: column;
    list-style: circle !important;
    padding-top: 10%;
    border-radius: 0 0px 50% 0;
    transform: translateX(-100%);
}

.nav_mobile li{
   font-size: 20px !important;
   color: white;
   margin: 10px 0 !important;
}

@media screen and (max-width: 1024px){
    .header-inner .logo img{
        width: 40px;
    }
    .header-inner .logo h1{
        font-size: 20px;
    }
}
@media screen and (max-width: 768px) {
    .header-inner{
        width: 100%;
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .header-inner .logo{
        width: 60%;
    }
    .header-inner #btn_menu{
        float: right;
    }
    nav ul{
        display: none !important;
    }
    #btn_menu{
        display: block;
    }
    .nav_mobile{
        width: 40% !important;
        transform: translateX(0px);
        /* transition: all 0.5s; */
        transform: all 2s;
        /* transition: nav 2s; */
    }

    @keyframes nav {
        from{
            /* width: 0%; */
        }
        to{
            width: 50%;
        }
    }
}
@media screen and (max-width: 425px) {
    .header-inner{
        width: 100%;
        padding: 0px 30px;
        border-radius: 0 0 25px 25px;
    }
    .header-inner .logo{
        width: 80% !important;
    }
    .header-inner .logo h1{
        font-size: 20px;
        line-height: 20px;
    }
    .header-inner #btn_menu{
        float: right;
        font-size: 30px;
    }
    nav ul{
        display: none !important;
    }
    #btn_menu{
        padding-right: 0;
    }
    .nav_mobile{
        width: 60% !important;
    }
}