.nav {
    padding: 20px 0px;
    display: block;
}

    .nav ul {
        text-align: left;
        padding-left: 0;
    }



    .nav a {
        text-decoration: none;
        display: inline-block;
    }

        .nav a, .nav a:hover {
            display: inline-block;
        }

    .nav > ul > li a:after {
        display: block;
        width: 0%;
        position: absolute;
        bottom: 0;
        left: 0;
        height: 1px;
        content: "";
        background-color: white;
        transition: 0.2s all ease-out;
    }

    .nav > ul > li a:hover:after,
    .nav-active > ul > a:after {
        width: 100%;
    }

    /*
    .nav ul .nav-submenu > a:after {
        content: "\e931";
        margin-left: 8px;
    }*/

    .nav ul ul a {
        color: #fff;
        line-height: 30px;
        background-color: #222;
    }

        .nav ul ul a:hover {
            background-color: #575757;
        }

/*---------- Menu si Burger Activé ---------*/

.navBurgerBtn {
    position: relative;
    cursor: pointer;
    height: 70px;
    width: 70px;
    margin: 45px 0 0 45px;
    display: block;
    background-color: white;
    position: fixed;
    left: 0;
    top: 0px;
    z-index: 10001;
}

    .navBurgerBtn > span {
        display: block;
        position: absolute;
        height: 3px;
        background: #212121;
        border-radius: 6px;
        opacity: 1;
        transform: rotate(0deg);
        transition: 0.3s all ease-out;
        margin-right: auto;
        margin-left: auto;
        left: 20px;
    }



        .navBurgerBtn > span:nth-child(1) {
            top: 27px;
            width: 32px;
        }

        .navBurgerBtn > span:nth-child(2) {
            top: 37px;
            width: 20px;
        }

        .navBurgerBtn > span:nth-child(3) {
            top: 47px;
            width: 32px;
        }

    .navBurgerBtn:hover > span:nth-child(2) {
        width: 32px;
    }


    .navBurgerBtn.open > span:nth-child(1) {
        top: 34px;
        transform: rotate(135deg);
    }

    .navBurgerBtn.open > span:nth-child(3) {
        top: 34px;
        transform: rotate(-135deg);
    }

    .navBurgerBtn.open > span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

.navBurger {
    position: fixed;
    top: 0px;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 50px 50px 50px 15%;
    background-color: #003d5c;
    transition: 0.3s all ease-out;
    transform: translateX(-100%);
    z-index: 10000;
}

    .navBurger img {
        position: absolute;
        width: 33%;
        bottom: 0;
        right: 20%;
        opacity: 0.8;
    }




.navBurgerOpen {
    transform: translateX(0%);
}

.navBurger > ul > li {
    display: block;
}

.navBurger ul ul {
    position: relative;
}

    .navBurger ul ul ul {
        left: 0%;
    }

@media only screen and (max-width: 960px) {
    body {
        padding-top: 42px;
    }

    .nav-button {
        display: block;
        position: fixed;
        top: 0;
        width: 100%;
        height: 42px;
        line-height: 42px;
        overflow: hidden;
        z-index: 500;
        cursor: pointer;
        text-align: left;
        font-size: 20px;
        color: #fff;
        background: white;
        text-decoration: none;
    }

        .nav-button > span {
            display: block;
            position: absolute;
            height: 1px;
            width: 20px;
            background: #376293;
            border-radius: 6px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: 0.3s all ease-out;
            margin-right: auto;
            margin-left: auto;
            left: 12px;
        }

            .nav-button > span:nth-child(1) {
                top: 12px;
            }

            .nav-button > span:nth-child(2) {
                top: 19px;
                width: 12px;
            }

            .nav-button > span:nth-child(3) {
                top: 26px;
            }

        .nav-button.open > span:nth-child(1) {
            top: 19px;
            transform: rotate(135deg);
        }

        .nav-button.open > span:nth-child(3) {
            top: 19px;
            transform: rotate(-135deg);
        }

        .nav-button.open > span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

    .nav {
        margin-top: 42px;
        padding: 0px;
        display: none;
    }

        .nav ul ul {
            width: 100%;
        }

        .nav a {
            line-height: 50px;
            background-color: #003d5c;
            padding: 0px;
        }



            .nav a:hover {
                background-color: #274a71;
            }

    .navBurgerBtn {
        display: none;
    }

    .navBurger {
        top: 0px;
        height: auto;
        background-color: rgba(239, 239, 239, 0.00);
        padding: 0px;
        transform: none;
        transition: none;
    }

    .navBurgerOpen {
        transform: none;
    }
}
