section#chiffres {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
@media screen and (max-width: 767px) {
  section#chiffres {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
section#chiffres div.chiffre {
  padding: 50px 30px;
  background: rgba(90, 99, 128, 0.5);
  border: 1px solid rgba(90, 99, 128, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
}
section#chiffres div.chiffre span {
  display: block;
  font-size: 54px;
  line-height: 56px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--e-global-color-primary);
  margin-bottom: 20px;
  text-align: center;
}
section#chiffres div.chiffre p {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 29px;
  color: white;
  margin-bottom: 0;
}
