.section_chiffres_cles, .section_chiffres_cles_quatre {
  display: grid;
 grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  text-align: center;
  margin-top: 50px;
}
.icone_chiffre_cle * {
  max-width: 65px;
  max-height: 65px;
  width: 100%;
  fill: #804eff;
}
.section_chiffres_cles_quatre .icone_chiffre_cle * {
  max-width: 40px;
  max-height: 40px;
  width: 100%;
}
.titre_chiffre_cle {
    color: #804EFF;
    font-family: "Gwen Text";
    line-height: 1.2em;
}
.section_chiffres_cles .titre_chiffre_cle {
    font-size: calc(65px + 0.6vw);
}
.section_chiffres_cles_quatre .titre_chiffre_cle {
    font-size: 40px;
}
.section_chiffres_cles_quatre .texte_chiffre_cle {
  font-size: 15px;
}
.texte_chiffre_cle {
  text-transform: uppercase;
  margin: auto;
  padding-top: 10px;
  line-height: 1.4em;
}
@media screen and (max-width: 980px) {
  .section_chiffres_cles .titre_chiffre_cle {
    font-size: calc(50px + 0.6vw);
  }
  .texte_chiffre_cle {
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
.section_chiffres_cles, .section_chiffres_cles_quatre {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px auto 30px;
  }
}
@media screen and (max-width: 480px) {
   .section_chiffres_cles .titre_chiffre_cle {
    font-size: 40px;
  }
   .texte_chiffre_cle {
    font-size: 16px;
  }
}