/* Styles pour le menu */
#header-menu {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid #fff;
  color: #fff;
  height: 80px;
}

.menu-left {
  font-weight: 600;
  font-size: 20px;
}
.menu-left a {
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.menu-left strong {
  font-weight: 700;
}

.menu-center {
  position: relative;
  width: 50%;
}
.menu-center .burger-button {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transform: scale(0.7);
}
.menu-center .burger-button span {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}
.menu-center .burger-button.open span:nth-child(1) {
  transform: rotate(45deg) translateY(-2px);
}
.menu-center .burger-button.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}
.menu-center .burger-button.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(3px);
}
.menu-center .menu-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 60px;
  background-color: rgba(41, 29, 55, 0.9);
  padding: 10px 15px 10px 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 1px;
  min-width: 155px;
  min-height: 155px;
  font-size: 13px;
  line-height: 25px;
}
.menu-center .menu-dropdown.open {
  display: flex;
}
.menu-center .menu-dropdown > li {
  list-style: none;
}
.menu-center .menu-dropdown > li a {
  text-decoration: none;
  color: #fff;
  text-align: left;
  display: block;
}
.menu-center .menu-dropdown > li li a {
  display: inline;
}
.menu-center .menu-dropdown > li div {
  margin-top: 10px;
  border-top: 1px solid #fff;
  padding-top: 10px;
}
.menu-center .menu-dropdown li ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-center .menu-dropdown li ul li {
  list-style: none;
}
.menu-center .menu-dropdown li ul li .lune {
  width: 15px;
  height: 15px;
}
.menu-center .menu-normal {
  display: flex;
  justify-content: space-between;
  list-style: none;
  width: 100%;
}
.menu-center .menu-normal li {
  margin: 0 10px;
}
.menu-center .menu-normal li a {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .menu-center {
    display: flex;
    justify-content: center;
  }
  .menu-center .burger-button {
    display: flex;
  }
  .menu-center .menu-normal {
    display: none;
  }
}
.menu-right img {
  height: 32px;
}
@media screen and (max-width: 480px) {
  .menu-right img {
    height: 25px;
  }
}

/* Nav Indicator */
.nav-indicator {
  position: absolute;
  bottom: -2px;
  height: 4px;
  width: 30px;
  background-color: #fff;
  transition: width 0.3s, left 0.3s;
}
@media (max-width: 768px) {
  .nav-indicator {
    display: none;
  }
}

/**** second nav ****/
#second-nav {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  background-color: rgba(41, 29, 55, 0.4);
  padding: 12px;
  color: #fff;
  z-index: 30;
}
@media (max-width: 768px) {
  #second-nav {
    display: none;
  }
}
#second-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
#second-nav ul > li.language-selector {
  margin-bottom: 45px;
}
#second-nav #current-lang {
  text-align: center;
}
#second-nav #current-lang #arrow-lang {
  padding-top: 3px;
  padding-left: 5px;
}
#second-nav #current-lang #arrow-lang img {
  width: 7px;
}
#second-nav li {
  margin: 0;
  position: relative;
}
#second-nav li a,
#second-nav li img.lune {
  display: block;
  text-decoration: none;
  color: #fff;
}
#second-nav li img {
  width: 20px;
  cursor: pointer;
}
#second-nav li img:hover {
  filter: invert(0.5);
}
#second-nav #language-selector {
  width: 100%;
  margin-bottom: 30px;
}
#second-nav #language-selector .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0;
  list-style: none;
  z-index: 200;
}
#second-nav #language-selector .dropdown li {
  margin: 0;
}
#second-nav #language-selector .dropdown li a {
  display: block;
  padding: 5px 0;
}
#second-nav #language-selector:hover .dropdown {
  display: block;
}
#second-nav .arrow {
  font-size: 10px;
  margin-left: 5px;
}/*# sourceMappingURL=menu.css.map */