/* REVIEW: media querries */
header#mobile{
  display: none;
}
/* REVIEW: // media querries */
header{
  /*border-bottom: 3px solid black;*/
  padding: var(--margin_entre_divisions);
  box-shadow: 0px 1px 2px -1px var(--bleu_profond),0px 2px 2.5px 0px var(--bleu_profond),0px 1px 2px 0px var(--bleu_profond);
  width: 100%;
}
header section{
  margin: auto;
  max-width: 1300px;
  width: 90vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header section div.nom{
  width: 30%;
  max-height: 200px;
}
header section div.nom a{
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}
header section div.nom a h1{
  color: var(--bleu_lmdc);
  text-decoration: none;
  display: inline-block;
  position: relative;
  font-size: var(--taille_titre_h1);
}
header section div.nom a h1:hover{
  text-decoration: none;
}
header section div.nom a h1:after{
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: var(--taille_standard);
  left: 50%;
  position: absolute;
  background: var(--bleu_lmdc);
  transition: width 0.2s ease 0s, left 0.2s ease 0s;
  width: 0;
}
header section div.nom a h1:hover:after{
  width: 100%;
  left: 0;
}
header section div.nom a img{
  max-height: 60px;
}
header section nav{
  width: 60%;
}
header section nav ul{
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items:center;
  margin: 0;
}
header section nav ul li.actif{
    display: none;
}
header section nav ul li.connexion a{
  font-weight:normal;
  font-size:var(--taille_texte);
  text-decoration:none;
  color:var(--texte_principal_inverse) !important;
  background: var(--bleu_lmdc);
  display:inline-block;
  padding:var(--padding_boutton);
  transition:background 0.2s;
  border-radius:var(--taille_radius);
  color:var(--texte_principal_inverse);
}
header section nav ul li.connexion a:hover {
  background: var(--gris);
}
/* REVIEW: photo de profile */ /* REVIEW: A REFAIRE */
div.menu_profil{
    width: 100px;
    border: var(--taille_standard) solid var(--texte_principal);
    border-radius: var(--taille_radius);
    padding:0;
    position: relative;
}
div.profil{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.photo_profil img{
    width: 50px;
    height: 50px;
    border-radius: 25px;
}
.menu_profil button{
    background-color: transparent;
    margin:0;
    border: none;
    width: 100%;
}

.naviguation {
  position: relative;
  overflow: hidden;
  z-index: 1;
  left: 40px;
  top:70px;
  width: 100%;
  opacity: 0;
  transform-origin: 50% 0%;
  transform: rotateX(-90deg);
  visibility: hidden;

  transition: 0.4s;
}

.menu_profil.open ul {
  opacity: 1;
  transform: rotateX(0);
  visibility: visible;
}

.menu_profil ul {
  position: absolute;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  width: 200px;
  margin: 0;
}

.menu_profil ul li{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 200px;
    color:white;
    margin: 0;
}
.menu_profil ul a{
    background: var(--bleu_lmdc);
}
.menu_profil ul li:hover{
    color: var(--bleu_profond);
}
.menu_profil ul a:last-child{
    border-radius: 0 0 20px 20px;
}

.menu_profil.open ul {
  translate: -50%;
}
/* REVIEW: // photo de profile */
