/* Titre de la page */
.titre-page {
  position: relative;
  width: 100%;
  height: 470px;
  background-color: var(--bs-primary);
}

.titre-page h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: white;
}

/* Listes */
.list li {
  margin: 15px auto;
}

/* Responsive - 576px */
@media screen and (max-width: 576px) {
  .titre-page {
    height: 350px;
    overflow: hidden;
  }
  .titre-page h2 {
    font-size: 50px !important;
  }
  .basique p,
  .basique li {
    font-size: 14px !important;
  }
  .list li {
    margin: 10px auto;
  }
}
