header{
    position: fixed;
    left: 0;
    top: 0;
    line-height: 80px;
    height: 8vh;
    transition: background-color 0s;
    z-index: 10010;
    color: #fff;
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
}
header #Logo{
    display: flex;
}
header #Logo a{
    display: flex;
}
header #ImgLogo{
    height: 7.5vh;
    margin-top: 0.25vh;
    margin-left: 0.25vh;
}
header #LogoTitre{
    margin-left: 20px;
    color: #c5a48c;
    font-size: 40px;
    font-family: "Kaushan Script";
}
header .MenuDroit {
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 1vw;
    margin-left: auto;
}
header #DeroulerMenu{
    cursor: pointer;
}
header #IconeMenu {
    font-size: 4vh;
    color: #c5a48c;
    vertical-align: middle;
}
header #menu {
    -moz-transform: translateX(25em);
    -webkit-transform: translateX(25em);
    -ms-transform: translateX(21em);
    transform: translateX(25em);
    -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%;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10010;
    width: 25em;
    max-width: 80%;
    font-family: system-ui;
}
body.MenuVisible header #menu {
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
header .croix{
    width: 2em;
    height: 4em;
    position: relative;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    margin-left: auto;
}
header .croix:before, .croix:after {
    position: absolute;
    content: ' ';
    height: 2em;
    width: 1px;
    background-color: #999;
    margin-top: 0.4em;
}
header .croix:before {
    transform: rotate(45deg);
}
header .croix:after {
    transform: rotate(-45deg);
}
header .croix:hover:before, .croix:hover:after {
    background-color: #555;
}
header #menu ul {
    list-style: none;
    padding: 0;
    margin: 1em 2em;
    color: #EEE;
}
header #menu ul > li:first-child {
    border-top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
header #menu ul > li:nth-child(2) {
    border-top: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
header #menu ul > li {
    border-top: solid 1px rgba(0, 0, 0, 0.15);
    margin: 2.5vh 0 0 0;
    padding: 2.5vh 0 0 0;
}
header #menu ul > li a {
    border: 0;
    color: #332c29;
    display: block;
    font-size: 1em;
    letter-spacing: 0.3em;
    outline: 0;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 3vh;
}
header #menu ul > li a:hover {
    color: #333;
}


@media screen and (max-width: 980px){
    header {
        line-height: 50px;
        height: 50px;
    }
    header #Logo {
        margin-left: 10px;
    }
    header #ImgLogo {
        height: 45px;
        margin-top: 5px;
    }
    header .MenuDroit {
        margin-right: 20px;
    }

}