div.header {
background:black;
width:100%;
display: grid;
grid-template-columns: repeat(3, 1fr);
margin: -4px 0 0 0;
}

div.menu {
 font-family: helvetica, arial, sans;
 justify-self: start;
}

div.menu-icon {
 font-family: helvetica, arial, sans;
 justify-self: center;
}

div.form_recherche {
 margin-right: 30px;
 margin-top: 7px;
 justify-self: end;
}

.formulaire_recherche { 
display: inline; 
}

ul.menu {
  background-color: #000;
  color: #EED236;
  margin: 0;
  display: inline;
}

li.menu {
  float: left;
}

ul.menu-icon {
  background-color: #000;
  color: #EED236;
  margin: 0;
  padding: 0;
}

li.menu-icon {
  float: left;
}


li.menu.dropdown a, .dropbtn {
  display: inline-block;
  color: #EED236;
  text-align: center;
  padding: 10px 14px;
  text-decoration: none;
}

li.menu.dropdown-svg a, .dropbtn-svg {
  display: inline-block;
  color: #EED236;
  text-align: center;
  text-decoration: none;
  padding: 6px 7px 3px 7px;
}

li.menu a:hover, .dropdown:hover .dropbtn {
 background-color: #EED236;
 color: #000;
}

li.dropdown {
  display: inline-block;
}

li.menu a:hover, .dropdown-svg:hover .dropbtn-svg {
 background-color: #EED236;
 color: #000;
}

li.dropdown-svg {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: #fff;
  padding: 5px 10px;
  text-decoration: none;
  display: block;
  text-align: left;
  margin: 0 0 0 -14px;
  font-size: 10px;
}

.dropdown-content a.dark {
  background: #545553;
}

.dropdown-content a.light {
  background: #404040;
}

.dropdown-content a:hover {
  background: #EED236;
  color: #000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-svg:hover .dropdown-content {
  display: block;
}

.dropdown-content-2c {
  columns: 2;
}

