/* Pied de page : rendre le menu horizontal et centré */
#pageFooter .menu,
#pageFooter .menu ul {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  flex-wrap: wrap; /* permet de passer à la ligne si trop long */
  list-style: none !important;
  margin: 0;
  padding: 0;
}

#pageFooter .menu li {
  display: inline-flex !important;
  margin: 0 12px; /* espace entre les liens */
}

#pageFooter .menu a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

#pageFooter .menu a:hover {
  opacity: 0.7;
}