body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5%;
    margin-right: 5%;

}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.first {
    width: 100px;
    height: 40px;
}

.headerTitle {
    margin-top: 20px;
    margin-left: 10px;
    font-size: medium;
    font-style: italic;
    color: blue;
}

#wrap {
    width: 100%;
    height: 50px;
    z-index: 99;
    position: relative;
    background-color: #444444;
    margin-bottom: 15px;
}

#wrap .menu-hamburger {
    display: none;
}

.navbar {
    height: 50px;
    padding: 0;
    margin: 0;
    position: absolute;
}

.navbar li {
    height: auto;
    width: 135.8px;
    float: left;
    text-align: center;
    list-style: none;
    font: normal bold 13px/1em Arial, Verdana, Helvetica;
    padding: 0;
    margin: 0;
    background-color: #444444;
}

.navbar a {
    padding: 18px 0;
    border-left: 1px solid #ccc9c9;
    text-decoration: none;
    color: white;
    display: block;
}

.navbar li:hover {
    background-color: #444444;
}

.navbar a:hover {
    background-color: #444444;
}

.navbar li ul {
    display: none;
    height: auto;
    margin: 0;
    padding: 0;
}

.navbar li:hover ul {
    display: block;
}

.navbar li ul li {
    background-color: #444444;
}

.navbar li ul li a {
    border-left: 1px solid #444444;
    border-right: 1px solid #444444;
    border-top: 1px solid #c9d4d8;
    border-bottom: 1px solid #444444;
}

.navbar li ul li a:hover {
    background-color: #a3a1a1;
}






@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .headerTitle {
        display: none;
    }

    #wrap {

        background-color: yellowgreen;
        height: 0px;
        top: 0;
        float: right;
        
    }

    /* test cals lig */


    #wrap .menu-hamburger {
        display: block;
        position: absolute;
        top: -45px;
        left: 5px;
        width: 30px;
    }

    .active #wrap .menu-hamburger {
        content:"\2715";
    }

    .first {
        margin-left: 100px; /* déplacer le logo sur droite */
        justify-content: right;
    }

    .navbar {
        position: absolute;
        padding-left: 3px;
        display: flex;
        flex-direction: column;
        margin-left: -100%;
        transition: all 0.5s ease;
        border-radius: 5px;
    }

    .navbar li ul {
        width: 220px;
        color: black;
        background-color: yellowgreen;
        height: 30px;
    }

    .navbar li {
        display: flex;
        text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        width: 150px;
        height: 35px;
    }

    .navbar.mobile-menu {
        margin-left: 0px;
        margin-top: 10px;
    }

    .navbar a {
        padding: 4px 0px;
        color: black;
        border-left: 0;
        width: 150px;
        text-align: left;
        padding-left: 10px;
        background-color: yellowgreen;
    }

    .navbar a:hover {
        background-color: #20706f;
        color: white;
    }

    .navbar li:hover {
        background-color: #20706f;
    }

    .navbar li:hover ul {
       margin-left: 70px;
       border: 0;
    }

    .navbar li ul li a {
        border: 0;
    }
   
    

}