.nav-toggle{
    /*background-color: orange;*/
    width: 30px;
    height: 30px;
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after{
    content: "";
    background-color: #F4FF00;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    transition: all.4s ease-in-out;
}

.nav-toggle-bar::before{
    top: -10px;
}

.nav-toggle-bar::after{
    top: 10px;
}

.menu-open .nav-toggle-bar {
    transform: rotate(135deg);
    background-color: #F4FF00;
}

.menu-open .nav-toggle-bar::before,
.menu-open .nav-toggle-bar::after {
    transform: rotate(90deg);
    background-color: #F4FF00;
    top: 0;
}

/*MENU*/

.menu{
    background-color: #034BA0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100vw);
    transition: all .4s;
    z-index: 1;
}

.menu-open .menu {
    transform: translateX(0);
}

/* Bug IOS
/* L'overflow doit être appliqué sur l'élément body ET html
/* pour faire disparaître le scroll sur Safari IOS
*/
.menu-open,
.menu-open {
    overflow: hidden;
}

.menu ul{
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 2.3rem;
    text-transform: uppercase;
}

.menu-li {
    margin-bottom: 30px;
    transform: translateX(30px);
    opacity: 0;
    transition: all .3s ease;
}

.menu a {
    color: #F4FF00
}
.menu-open .menu-li {
    transform: translateX(0);
    opacity: 1;
}
.menu-open .menu-li:nth-child(n+1) { transition-delay: .3s;}
.menu-open .menu-li:nth-child(n+2) { transition-delay: .35s;}
.menu-open .menu-li:nth-child(n+3) { transition-delay: .4s;}
.menu-open .menu-li:nth-child(n+4) { transition-delay: .45s;}
.menu-open .menu-li:nth-child(n+5) { transition-delay: .5s;}
.menu-open .menu-li:nth-child(n+6) { transition-delay: .55s;}
