/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* Apply hover styles only on devices with real hover support (mouse/trackpad) */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.s-chiffres-cles .l-wrapper {
  padding-top: 0 !important;
}
.s-chiffres-cles__top {
  min-height: calc(3 * var(--global-deco-pixel-size) - 2px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.s-chiffres-cles__top::before {
  content: "";
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: 2;
  width: calc(2 * var(--global-deco-pixel-size));
  height: calc(3 * var(--global-deco-pixel-size));
  top: -2px;
  right: calc(-1 * var(--global-deco-pixel-size));
  mask: url(../../../../assets/images/deco-3.svg) no-repeat bottom right/contain;
  background-color: var(--wp--preset--color--white);
  transform: translateZ(0);
}
@media screen and (max-width: 991px) {
  .s-chiffres-cles__top {
    margin-top: 1.5rem;
  }
  .s-chiffres-cles__top::before {
    top: -1.5rem;
  }
  .s-chiffres-cles__title {
    padding-right: calc(var(--global-deco-pixel-size) + 5px);
  }
  .s-chiffres-cles__subtitle {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.s-chiffres-cles__shell {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.s-chiffres-cles__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: flex-start;
}
@media screen and (max-width: 991px) {
  .s-chiffres-cles__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.s-chiffres-cles__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.s-chiffres-cles__image {
  margin-bottom: 0.5rem;
}
.s-chiffres-cles__img {
  display: block;
  width: 100%;
  height: auto;
}
.s-chiffres-cles__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: color-mix(in srgb, currentColor 10%, transparent);
}
.s-chiffres-cles__right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.s-chiffres-cles__stats {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  --stat-bg: var(--wp--preset--color--white);
  --stat-color: var(--wp--preset--color--indigo-rvb);
  overflow: hidden;
}
.s-chiffres-cles__stats .s-chiffres-cles__stat:first-child {
  grid-area: 1/1/2/6;
  --stat-bg: var(--wp--preset--color--white);
  --stat-color: var(--wp--preset--color--indigo-rvb);
  --switch-hover-transition-duration: 1.05s;
  --switch-hover-transition-delay: .1s;
  --switch-hover-transition-timing: ease;
}
.s-chiffres-cles__stats .s-chiffres-cles__stat:nth-child(2) {
  grid-area: 2/1/3/6;
  --stat-bg: var(--wp--preset--color--capucine);
  --stat-color: var(--wp--preset--color--white);
  --switch-hover-transition-duration: 1.15s;
  --switch-hover-transition-delay: .05s;
  --switch-hover-transition-timing: ease;
}
.s-chiffres-cles__stats .s-chiffres-cles__stat:last-child {
  grid-area: 1/6/3/13;
  --stat-bg: var(--wp--preset--color--lila-rvb);
  --stat-color: var(--wp--preset--color--indigo-rvb);
  --switch-hover-transition-duration: 1.25s;
  --switch-hover-transition-delay: .15s;
  --switch-hover-transition-timing: ease;
}
@media screen and (max-width: 991px) {
  .s-chiffres-cles__stats {
    display: flex;
    flex-direction: column;
  }
  .s-chiffres-cles__stats .s-chiffres-cles__stat:first-child,
  .s-chiffres-cles__stats .s-chiffres-cles__stat:nth-child(2),
  .s-chiffres-cles__stats .s-chiffres-cles__stat:last-child {
    grid-area: auto;
  }
}
.s-chiffres-cles__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 2.25rem;
  background: var(--stat-bg);
  color: var(--stat-color);
  align-items: flex-end;
}
.s-chiffres-cles__stat:last-child {
  align-items: flex-start;
}
.s-chiffres-cles__stat.is-active .switch-hover__item_normal {
  transform: translateY(-200%);
}
.s-chiffres-cles__stat.is-active .switch-hover__item_hover {
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 991px) {
  .s-chiffres-cles__stat {
    padding: 1.5rem;
    align-items: flex-start;
  }
  .s-chiffres-cles__stat .switch-hover__item_normal,
  .s-chiffres-cles__stat .switch-hover__item_hover {
    transition: transform var(--switch-hover-transition-duration) var(--switch-hover-transition-timing) !important;
    transition-delay: var(--switch-hover-transition-delay) !important;
  }
  .s-chiffres-cles__stat .switch-hover__item_normal {
    transform: translateY(0) !important;
  }
  .s-chiffres-cles__stat .switch-hover__item_hover {
    transform: translate(-50%, 150%) !important;
  }
  .s-chiffres-cles__stat.is-active .switch-hover__item_normal {
    transform: translateY(-200%) !important;
  }
  .s-chiffres-cles__stat.is-active .switch-hover__item_hover {
    transform: translate(-50%, -50%) !important;
  }
}
.s-chiffres-cles__stat-number {
  font-family: "paralucent-text", sans-serif;
  font-size: 5rem;
  font-weight: 300;
  line-height: 1;
  overflow: hidden;
  font-style: Book;
}
@media screen and (min-width: 1920px) {
  .s-chiffres-cles__stat-number {
    font-size: 6rem;
  }
}
@media screen and (max-width: 991px) {
  .s-chiffres-cles__stat-number {
    font-size: 3rem;
  }
}
.s-chiffres-cles__stat-label {
  font-family: "paralucent-text", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}
.s-chiffres-cles__stats-image {
  width: 80%;
  margin-right: 0;
  align-self: flex-end;
  margin-bottom: -2.25rem;
  margin-top: auto;
  aspect-ratio: 1.512195122;
}
@media screen and (max-width: 991px) {
  .s-chiffres-cles__stats-image {
    width: 100%;
    margin-bottom: 0;
    margin-top: 1.5rem;
    align-self: center;
  }
}
.s-chiffres-cles__stats-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.s-chiffres-cles__hint {
  margin: 0;
  font-family: "paralucent-text", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--wp--preset--color--lila-rvb);
}