header{
    z-index: 10000;
    width: 70%;
    text-align: center;
    padding: 0 15%;
}
header .Titre{
    border-bottom: 3px solid #FF521B;
    text-align: center;
    height: 8em;
}
header .Titre h1{
    margin: 0;
    margin-top: 1em;
}
header .Titre h2{
    margin-top: 0;
    color: #ff521b;
}
header #nav{
    display: none;
}
header .ConteneurMenu{
    height: 60px;
}
header #menu{
    height: 3em;
    line-height: 3em;
    z-index: 10000;
}
header #menu ul{
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    padding: 0 2%;
}
header #menu ul, #menu li{
    float: none;
    margin: 0;
}
header #menu a{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    font-size: 1.4em;
    font-weight: 600;
    color: rgba(0,0,0,.6);
    position: relative;
}
header #menu a:hover{
    color: #FF521B;
}
header #menu a.Actif{
    color: #FF521B;
}
body.MenuReduit #menu{
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(255,181,0);
    padding: 0 15%;
    width: 70%;
}

@media screen and (max-width: 980px){
    header{
        width: 100%;
        padding: 0;
    }
    header .Titre {
        border-bottom: none;
        text-align: left;
        height: 60px;
        margin: 20px 0 0 40px;
        width: unset;
    }
    header .Titre h1 {
        margin: 5px 0 5px 0;
        font-size: 25px;
    }
    header .Titre h2 {
        font-size: 22px;
        margin: 5px 0 0 0;
    }

    header .NoirMenu{
        position: fixed;
        z-index: 10000;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(0,0,0,0.6);
        display: none;
    }
    header.MenuVisible .NoirMenu{
        display: block;
    }

    header .ConteneurMenu {
        position: fixed;
        width: 22em;
        top: 0;
        right: 0;
        z-index: 10000;
    }
    header .MiniMenu{
        height: 60px;
        width: 60px;
        padding: 10px 20px;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 10011;
    }
    header #menu{
        -moz-transform: translateX(22em);
        -webkit-transform: translateX(22em);
        -ms-transform: translateX(22em);
        transform: translateX(22em);
        -moz-transition: -moz-transform 0.5s ease;
        -webkit-transition: -webkit-transform 0.5s ease;
        -ms-transition: -ms-transform 0.5s ease;
        transition: transform 0.5s ease;
        -webkit-overflow-scrolling: touch;
        background: #fff;
        color: #848584;
        height: 100%;
        max-width: 80%;
        overflow-y: auto;
        position: fixed;
        right: 0;
        top: 0;
        width: 22em;
        z-index: 10010;
        padding-top: 80px;
    }
    header.MenuVisible #menu{
        -moz-transform: translateX(0);
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        -moz-transition: -moz-transform 0.5s ease;
        -webkit-transition: -webkit-transform 0.5s ease;
        -ms-transition: -ms-transform 0.5s ease;
        transition: transform 0.5s ease;
    }

    header #menu ul, #menu li {
        flex-direction: column;
    }
    header #menu ul > li {
        border-top: solid 1px rgba(0, 0, 0, 0.15);
        margin: 0.5em 0 0 0;
        padding: 0.5em 0 0 0;
    }
    header #menu ul > li:last-child {
        padding-bottom: 0.5em;
        border-bottom: solid 1px rgba(0, 0, 0, 0.15);
    }
    header #menu a {
        display: block;
        margin-left: 1em;
    }

    .MiniMenu ul.barres {
        width: 3em;
        height: 3em;
        margin: 0;
        padding: 0;
        list-style: none;
        top: 50%;
        left: 50%;
        -webkit-transition: -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1), color 1s cubic-bezier(0.23, 1, 0.32, 1);
        transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), color 1s cubic-bezier(0.23, 1, 0.32, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        color: #fff;
    }
    header .MiniMenu li.barre {
        width: 100%;
        height: 0.2em;
        background-color: var(--couleur1);
        position: absolute;
        top: 50%;
        /*margin-top: -0.75px;*/
        -webkit-transition: -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1), background-color 1s cubic-bezier(0.23, 1, 0.32, 1);
        transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1), background-color 1s cubic-bezier(0.23, 1, 0.32, 1);
    }
    header .MiniMenu li.barre:nth-child(2) {
        -webkit-transform: translateY(1em) translateZ(0);
        transform: translateY(1em) translateZ(0);
    }
    header li.barre:last-child {
        -webkit-transform: translateY(2em) translateZ(0);
        transform: translateY(2em) translateZ(0);
    }

    header.MenuVisible li.barre {
        -webkit-transform: rotate(45deg) translateZ(0);
        -moz-transform: rotate(45deg) translateZ(0);
        -o-transform: rotate(45deg) translateZ(0);
        transform: rotate(45deg) translateZ(0);
    }
    header.MenuVisible li.barre:nth-child(2) {
        opacity: 0;
    }
    header.MenuVisible li.barre:last-child {
        -webkit-transform: rotate(-45deg) translateZ(0);
        -moz-transform: rotate(-45deg) translateZ(0);
        -o-transform: rotate(-45deg) translateZ(0);
        transform: rotate(-45deg) translateZ(0);
    }

    #menu li>* {
        text-align: left;
    }
}
@media screen and (max-width: 370px){
    header .Titre h1 {
        font-size: 18px;
    }
    header .Titre h2 {
        font-size: 12px;
    }
}