/* conteneur */
.elles-mm {
  width: 100%;
  background: #044b99;
  color: #fff;
  font-family: "Barlow bd it", sans-serif;
}

/* barre supérieure */
.elles-mm__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  position: relative;
  z-index: 10000; /* au-dessus du panneau */
}

.elles-mm__logo-img {
  width: 100px;
  display: block;
}
.elles-mm__logo-text {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
}

/* bouton burger/croix */
/* bouton burger/croix */
.elles-mm__toggle {
  position: relative;
  width: 40px;   /* plus large */
  height: 40px;  /* plus haut */
  background: transparent;
  border: 0;
  cursor: pointer;
}

.elles-mm__icon,
.elles-mm__icon::before,
.elles-mm__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 24px;      /* largeur fixe, identique pour toutes les barres */
  height: 2px;      /* épaisseur */
  background: #fff;
  transform: translateX(-50%);
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}

.elles-mm__icon {
  top: 50%;
}

.elles-mm__icon::before {
  top: -8px;
}

.elles-mm__icon::after {
  top: 8px;
}

.elles-mm--open .elles-mm__icon {
  background: transparent;
}

.elles-mm--open .elles-mm__icon::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.elles-mm--open .elles-mm__icon::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}



/* panneau plein écran */
.elles-mm__panel {
  position: fixed;
  top: 120px; /* hauteur approx. de la barre (ajuste si besoin) */
  left: 0;
  right: 0;
  bottom: 0;
  background: #044b99;
  display: none;
  z-index: 9999;
  padding: 40px 24px;
}
.elles-mm--open .elles-mm__panel {
  display: flex;
}
.elles-mm__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.elles-mm__list > li {
  margin: 0 0 24px;
  text-align: center;
}
.elles-mm__list a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 1.2;
  display: inline-block;
}

.elles-mm__list{
    list-style-type: none !important;
}
    
