.section_recap{
  padding-top: 120px;
  padding-bottom: 5%;
  width: 100%;
  align-items: center;
  display: inline-flex;
  justify-content: space-evenly;
}
.recap_title{
  color: #0D2E51;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.recap_num{
  text-align: center;
  color: #555555;
  font-size: 40px;
  line-height: 60px;
  
}

/* Code CSS */
.stat_recap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.recap_image {
  width: auto;
  height: 150px;
  border-radius: 5px;
  margin-right: 20px;
}

.recap_content {
  display: flex;
  flex-direction: column;
}


.summary{
  width: 100%;
}

.summary_text_title{
  color: #555555;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

.summary_text{
  padding-top: 20px;
  color: #555555;
  font-size: 18px;
  line-height: 150%;
  text-align: justify;
}

#map {
  margin-top: 5%;
  margin-bottom: 5%;
  height: 50%; 
}


/* Ajout d'une media query pour les écrans de 800px de largeur ou moins */
@media (max-width: 800px) {
  .section_recap {
      flex-direction: column;
      align-items: center;
  }

  .stat_recap {
      width: 100%;
      margin-bottom: 20px;
      justify-content: center;
  }

  .recap_image {
      margin-bottom: 10px;
      height: auto;
      max-height: 150px;
      width: 100px; /* Réduire la taille de l'image pour mobile */
  }

  .recap_content {
      text-align: center;
  }
}
