nav{
    margin: 0;
    font-family: 'Roboto';
    font-size: 16px;
    text-transform: uppercase;
    background-color: rgba(24,195,12,0.75);
}

#iconeMenu{
    display: none;
}

#menu{
    display: flex;
    list-style-type: none;
    margin: 0;
    justify-content: center;
}

#menu li{
    padding: 10px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s linear;
}

#menu li:hover>a{
    color: black;
    transition: all 0.2s linear;
}

.sous-menu{
    padding: 0;
    margin: 0;
    text-align: center;
    list-style: none;
    position: absolute;
    z-index: 100;
    max-height: 0;
    right: 0;
    overflow: hidden;
    transition: max-height 0.5s;
    background-color: rgba(24,195,12,0.75);
}

#menu a{
    text-decoration: none;
    color: white;
}

#menu li:hover .sous-menu{
    max-height: 15em;
    transition: max-height 0.5s;
}

@media (max-width: 600px){
    
    #menu{
        display: none;
        position: absolute;
        top: 50px;
        left: 0;
        padding: 0;
        background-color: #4BB748;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
    }
    
    #iconeMenu{
        display: block;
        width: 50px;
        position: absolute;
        top: 0;
        left: 0;
        margin: 0;
    }
    
    .sous-menu{
        background-color: #4BB748;
        width: 100%;
    }
}