header {
    display: flex;
    margin: 0;
    background-color: #046b5b ;
    font-family: baloo;
    
}
.logo-header {

    display: flex;
    align-content: center;
    justify-content: center;
    max-width: 25vw;
    margin-right: 5vw;


}

.header-rows {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.top-row {
    background-color: #94d5eb;
    display: flex;
}

/* Drapeaux de langue*/
.langues {
    display: flex;
    justify-content: space-around;
    background-color: white;
    width: 10vw;
    max-width: 10vw;
}

/*Icones de réseaux sociaux*/
.reseaux {
    display: flex;
    background-color: #94d5eb;
    justify-content: space-around;
    width: 15vw;
    max-width: 15vw;
}

/*Barre de recherche*/
.searchbar {
    width: 25vw;
    max-width: 25vw;
    border: 1ww solid  #046b5b;
    border-radius: 2vw;
    background-color: #94d5eb;
    display: flex;
    justify-content: center;
    align-content: center;
}


/*menu de navigation*/
.navigation {
    display: flex;
    overflow: hidden;

}

.navigation a {
    
    float: left;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.navDrop {
    float: left;
    overflow: hidden;
}

.navDrop .navbar {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: inherit;
    
    margin: 0;
}

.navbar a:hover, .navDrop:hover .navbar, .navDrop:focus {
    background-color: #94d5eb;
    color: #046b5b;
}

/*boutons du menu*/
.navbar {
    border-radius: 0px;
    font-size: 1vw;
    width: 20vw;
    max-width: 19vw;

    background-color: #046b5b;
    color: #94d5eb ;
    justify-content: flex-end;
}


/*Contenu du menu de navigation*/
.contenuNav {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: #94d5eb;
    color: #046b5b;
}
.contenuNav a{
    float: none;
    text-decoration: none;
    display: block;
    text-align: center;
    color: #046b5b;
}


.show {
    display: block;
}
