@charset "UTF-8";
header {
  z-index: 500;
}
.header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 0;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  transition: transform .3s ease, opacity .3s ease;
}
.header-logo {
  max-height: 150px;
}
.header-logo img {
  max-width: 100%;
  max-height: 150px;
  height: 150px;
  object-fit: contain;
  padding: 10px;
  transition: all .3s ease;
  background: #fff;
}
.header-gauche {
  display: flex;
  flex-wrap: nowrap;
}
.header-droite {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  background: none;
  align-items: center;
  height: 70px;
}
.onglet-droite {
  display: flex;
  flex-wrap: nowrap;
  padding: 20px;
  position: relative;
  background: none;
}
.onglet-langue {
  display: flex;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: center;
  align-content: center;
}
.header.header-secondaire, .header.header-secondaire .header-logo, .header.header-secondaire .header-logo img, .header.hidden .header-logo, .header.hidden .header-logo img {
  height: 70px;
  max-height: 70px;
}
.header.hidden {
  transform: translateY(-100%);
  opacity: 0;
}
.header.scrolled-up {
  transform: translateY(0);
  opacity: 1;
}
.onglet-langue button {
  font-size: 18px;
  display: flex;
  flex-wrap: nowrap;
  width: 60px;
  height: 70px;
  padding: 20px;
  background: none;
  position: relative;
  overflow: hidden;
  color: black;
  transition: color .4s ease;
  justify-content: center;
  align-items: center;
}
.onglet-langue button::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: -1;
  transition: top .4s ease-in-out;
}
.onglet-langue button:hover::before {
  top: 0;
}
.onglet-langue button:hover {
  color: black;
}
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000;
}
.dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: all .3s ease;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #FED100;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
}
.dropdown-content.show {
  display: block;
  opacity: 1;
  visibility: visible;
}
.dropdown-content a {
  color: black;
  padding: 20px;
  text-decoration: none;
  display: block;
  transition: all .3s ease;
  width: 60px;
}
.dropdown-content a:hover {
  background-color: #fff;
}
.loupe img {
  height: 30px;
}
.loupe button {
  display: flex;
  flex-wrap: nowrap;
  height: 70px;
  padding: 20px;
  background: none;
  position: relative;
  overflow: hidden;
  color: black;
  transition: color .4s ease;
  border: 0;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.loupe button::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: -1;
  transition: top .4s ease-in-out;
}
.loupe button:hover::before {
  top: 0;
}
.search-overlay {
  display: none;
  position: absolute;
  background-color: #fff;
  font-family: 'AMUMonumentGrotesk-Bold';
  font-size: 20px;
  line-height: 25px;
  top: 70px;
  right: 0;
  background: #7d42f3 !important;
  height: 430px;
  width: 100%;
  z-index: -1;
}
.search-overlay.active {
  display: block;
}
.search-box {
  height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 100px;
}
.search-input {
  outline: none;
  padding: 10px;
  font-family: 'AMUMonumentGrotesk-RegularItalic';
  background: none;
  text-align: center;
  width: 100%;
  max-width: 100%;
  border-bottom: .5px solid black;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  font-size: 16px;
  color: #fff;
}
.search-input::placeholder {
  color: #fff;
}
.search-overlay.scrolled {
  position: fixed;
  top: 70px;
  height: 70px;
}
.search-overlay.scrolled .search-box {
  height: 70px;
  padding: 0 20px;
}
@media only screen and (max-width:600px) {
  .header-logo img {
    height: 100px;
    max-height: 100px;
  }
  .search-overlay, .search-box {
    height: 230px;
  }
}
@media only screen and (max-width:400px) {
  .search-overlay .search-box {
    padding: 0 20px;
  }
  .header-logo img {
    height: 70px;
    max-height: 70px;
  }
  .header-logo {
    height: 70px;
    max-height: 70px;
  }
}