.custom-accordion .accordion {
  font-family: 'Outfit', sans-serif;
  /* margin: 2rem auto; */
  border: none;
   --bs-accordion-border-color: transparent;
  }
  
  .custom-accordion .accordion-item {
    border: none;
    margin: 0 0 1.5em;
}

/* Enlever la surbrillance bleu */
.custom-accordion .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.custom-accordion .accordion-button {
  background-color: #f7f7f7;
  color: #21407f;
  font-weight: 600;
  padding: 1rem 1.5rem;
  transition: background-color 0.2s ease;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 2%;
}

.custom-accordion .accordion-header{
  background-color: transparent;
  color: #21407f;
  margin-bottom: 0.5%;
}

.custom-accordion .accordion-body{
  margin-top: 2%;
  margin-bottom: 2%;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background-color: #21407f;
  color: white;
}

.custom-accordion .accordion-body {
  background-color: white;
  padding: 1.5rem;
  border-left: 3px solid #21407f;
}

/* Changer la couleur du chevron fermé */
.custom-accordion  .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(19%) sepia(30%) saturate(749%) hue-rotate(190deg) brightness(93%) contrast(91%);
}

/* Changer la couleur du chevron ouvert */
.custom-accordion  .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1); /* Blanc */
}