.entete__contenu__navigation__menuMobile:hover{
  cursor: pointer;
}

.entete__contenu__barreNav{
  width: 100%;
  height: 88px;
  background: #000000 0% 0% no-repeat padding-box; 
}

.entete__contenu__navigation{
	height: 88px;
	display: flex; 
	justify-content: space-between; 
	align-items: center;
}

/*************/
/** SideNav **/
/*************/

.sidenavBkg{
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;

}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: #2E2E33;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  opacity: 100%;
}

.sidenav a {
  padding: 18px 8px 18px 32px;
  text-decoration: none;
  font-size:  18px;
  color: #818181;
  display: block;
  transition: 0.3s;
  border-bottom: 1px solid #707070;
  margin-left: 10px;
}

.actif {
  color: #FFB706 !important;
}

.sidenav a:hover {
  color: #FFB706 !important;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 36px;
  margin-right: 50px;
  border-bottom: none;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}