#menuToggle
{
  background-color: white;
  display: block;
  position: fixed;
  top: 20px;
  left: 5vw;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #FFD041;
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0; 
  z-index: 2; 
  -webkit-touch-callout: none;
}

#menuToggle span
{
  display: block;
  width: 33px;
  height: 2px;
  margin-bottom: 7px;
  position: relative;
  background: black;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: white;
}

#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

#menu
{
  position: absolute;
  width: 300px;
  height: 100vh;
  margin: -100px 0 0 -5vw;
  padding: 5vw;
  padding-top: 125px;
  background: black;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  color: white;
  font-size: 20px;
}

.menu_bouton_jaune
{
  font-family: 'police';
  font-size: 12px;
  background-color: #FFD041;
  color: black;
  padding: 10px 15px 10px 15px;
  margin: 0 0 10px 0;
  border-radius: 25px;
  display: inline-flex;
}

.menu_bouton_jaune:hover
{
  background-color: white;
  color: black;
}

.menu_bouton_blanc
{
  font-family: 'police';
  font-size: 12px;
  background-color: white;
  color: black;
  padding: 10px 15px 10px 15px;
  margin: 0 0 10px 0;
  border-radius: 25px;
  display: inline-flex;
}

.menu_bouton_blanc:hover
{
  background-color: #FFD041;
}

#menuToggle input:checked ~ ul
{
  transform: none;
}

.menu_logo
{
  height: 50px;
}

.menu_bouton
{
  font-size: 12px;
  background-color: white;
  color: black; 
  padding: 10px 15px 10px 15px;
  border-radius: 25px;
  display: inline;
}

/** MENU BUREAU **/

.header_cadre
{
  width: 80vw;
  margin: 0 10vw 45px 10vw;
  padding: 30px 0 15px 0;
  text-align: center;
  border-style: dotted;
  border-color: #E1E1E1;
  border-width: 0 0 1px 0;
}

.header_logo
{
  height: 88px;
}

.header_recherche
{
  width: 50vw;
  height: 25px;
  font-size: 14px;
  padding: 25px;
  border-style: none;
  border-radius: 25px;
  background-color: #F3F3F3;
  color: black;
}

.header_liens,
.header_liens a
{
  font-size: 18px;
  padding: 0 15px 0 15px;
  margin: 30px 0 0 0;
  display: inline;
  color: #a7dbdb;
  font-family: 'police';
  text-transform: uppercase;
}

.header_liens:hover a
{
  color: #FFD041;
}

/** MENU MOBILE **/

@media (max-width:767px)
{

.background_menu
{
  width: 60px;
  height: 60px;
  background-color: white;
  position: fixed;
  z-index: 1;
}

#menuToggle
{
  display: block;
  position: fixed;
  top: 20px;
  left: 3vw;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
}

.menu_logo
{
  height: 30px;
}

.header_cadre
{
  width: 94vw;
  height: 65px;
  padding: 15px 0 60px 0;
  margin: 0 3vw 45px 3vw;
}

.header_logo
{
  height: 45px;
}

.header_recherche
{
  width: 75vw;
}

.header_liens
{
  display: none;
}



}