@charset "UTF-8";
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* VARIABLES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* Couleurs */
/* ----------------------------------------------------- */
/* Spécifiques au site */
/* ----------------------------------------------------- */
/* gris moyen fonce */
/* gris moyen */
/* gris clair */
/* Nuances de gris */
/* ----------------------------------------------------- */
/* Correspondances couleurs -> texte */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONTS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONT-SIZES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* TRANSITIONS */
/* ----------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* BOX SHADOW */
/* ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------- */
/* BASES PADDING & MARGIN */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* BORDER RADIUS */
/* ----------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* SCREENS */
/* ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------- */
/* ADMIN */
/* ----------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* PATHS */
/* ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* MIXIN.SCSS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONT FACE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* KEYFRAMES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CENTRE UNE IMAGE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CENTRE UN ELEMENT */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CENTRE UN BACKGROUND QUAND ON LE MET EN INLINE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* TRIANGLES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* Display flex */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* Object Fit */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONCTIONS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CONVERSION PX -> EM */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CONVERSION PX -> REM */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CONVERSION PX -> % */
/* ----------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* TRACKING INDESIGN -> LETTER SPACING CSS */
/* ---------------------------------------------------------------------------------------------------------- */
.keyfigures__data {
  margin-top: var(--paddingBase);
  max-width: none;
}

.keyfigure {
  padding: 0;
  margin: 0 0 2rem 0;
  position: relative;
}
.keyfigure:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  width: 80%;
  height: 0;
  padding-top: 80%;
  border-radius: 100rem;
  background-color: #F1F1F1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.keyfigure__image {
  position: relative;
  width: 40%;
  height: auto;
  transform: none;
  top: auto;
  left: auto;
  margin: 1rem auto;
}
.keyfigure__image__container {
  position: static;
  width: 100%;
  height: auto;
  padding-top: 0;
  border-radius: 0;
  background-color: transparent;
}
.keyfigure__image img {
  width: 100%;
  height: auto;
}
.keyfigure__text__container {
  position: relative;
  width: 100%;
  text-align: center;
  top: auto;
  bottom: auto;
}
.keyfigure__text__titre {
  margin: 0.5em 0;
}
.keyfigure__text__description {
  font-size: 0.875rem;
}
.keyfigure:nth-child(even) .keyfigure__text__container {
  top: auto;
}

/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* -------------------- RESPONSIVE --------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* XS */
/* ----------------------------------------------------- */
@media (min-width: 576px) {
  .keyfigures__data {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 2rem;
  }
  .keyfigure {
    width: calc(50% - 1rem);
  }
}
/* ----------------------------------------------------- */
/* SM */
/* ----------------------------------------------------- */
@media (min-width: 768px) {
  .keyfigures__data {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }
  .keyfigure {
    width: calc(33.3333333333% - 1.5rem);
  }
  .keyfigure__text__titre {
    font-size: 1.125rem;
  }
}
/* ----------------------------------------------------- */
/* MD */
/* ----------------------------------------------------- */
@media (min-width: 992px) {
  .keyfigure {
    width: calc(25% - 2rem);
  }
  .keyfigure__text__titre {
    font-size: 1.25rem;
  }
}
/* ----------------------------------------------------- */
/* LG */
/* ----------------------------------------------------- */
@media (min-width: 1200px) {
  .keyfigure:before {
    transition: var(--trans);
  }
  .keyfigure:hover:before {
    width: 100%;
    padding-top: 100%;
    background-color: #00d5ae;
  }
  .keyfigure:hover .keyfigure__image {
    transform: none;
  }
  .keyfigure:hover .keyfigure__image__container {
    background-color: transparent;
  }
  .keyfigure:hover .keyfigure__text__titre {
    transform: none;
    color: var(--wp--preset--color--secondary-contrast);
  }
}
/* ----------------------------------------------------- */
/* XL */
/* ----------------------------------------------------- */
@media (min-width: 1400px) {
  .keyfigure__text__titre {
    font-size: 1.5rem;
  }
}
/* ----------------------------------------------------- */
/* XXL */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* HOVER */
/* ----------------------------------------------------- *//*# sourceMappingURL=style.css.map */