.expertise-list-container {
  width: 100%;

  height: fit-content;

  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.expertise-list {
  width: 80%;
  height: fit-content;
  display: flex;
  justify-content: space-around;
  align-items: stretch; /* valeur par défaut */
  flex-wrap: wrap;

  gap: 1rem;
}

.bloc-expertise {
  width: 30%;
  min-width: 300px;
  border: 1px solid whitesmoke;
  display: flex;
  flex-direction: column;
  align-items: center;

  color: whitesmoke;
  text-decoration: none;
}

.block-expertise-image {
  width: 100%;

}

.block-expertise-containt {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.titre-block-expertise {
  font-size: 1.1rem;
  /* font-weight: bold; */
  text-transform: none;
  text-align: center;
 
margin: auto;
}

.subtitle-block-expertise {
  font-weight: bold;
  text-decoration: underline;
font-size: 20px;
}

.texte-expertise p {
    margin-top: 1rem;
}



/* version mobile */

@media (max-width: 862px) { 
.block-expertise-image {
  width: 100%;

 
}

}