/* Interaction menu mobile */
#menuMobile {
    display: none;
    position: absolute;
    right: -1px;
    width: 30px;
    height: 25px;
    height: 30px;
    margin: 5px 25px;
}

nav .ulMobile {
    overflow: hidden;
    transition: 0.5s;
    height: 0
}

#menuMobile:checked ~ .ulMobile {
    visibility: visible;
    height: 200px
}

.ulMobile li {
    transition: 0.1s;
}


.ulMobile li a {
    color: transparent;
    transition: 0.45s
}

#menuMobile:checked ~ .ulMobile li a {
    color: white
}

/* Logo Menu */

.logoMenu .line {
    width: 27px;
    height: 3px;
    background-color: white;
    display: block;
    margin: 6px 0;
    transition: all 0.3s ease-in-out;
    border-radius: 7px;
}

#logoMenu.opened .line:nth-child(2) {
    opacity: 0;
}

#logoMenu.opened .line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

#logoMenu.opened .line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}


/* Soulignement page active */
nav .pageActive {
    border-bottom: 1px solid white;
    animation: 0.4s linear underlineNav;
}

@keyframes underlineNav {
    from {
        border-bottom: 1px solid transparent;
    }

    to {
        border-bottom: 1px solid white;
    }
}
