.section-compteur {
  overflow-x: clip;
  overflow-y: visible;
}
.section-compteur .soleil-bleu {
  position: relative;
  overflow: visible;
}
.section-compteur .soleil-bleu::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -145px;
  height: 640px;
  width: 640px;
  background: radial-gradient(circle,rgba(24,134,234,0.25) 0%,rgba(241,97,5,0) 67%);
  border: 1px solid rgba(24,134,234,0.25);
  border-radius: 50%;
  z-index: -1;
}
.section-compteur .soleil-bleu::after {
  content: '';
  position: absolute;
  top: calc(120px);
  right: -155px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(24,134,234,0.25);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  z-index: -1;
}
.section-compteur h2 {
  margin-bottom: 3rem;
}
.section-compteur .compteurs {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
}
.section-compteur .compteurs > div {
  width: 310px;
  border-radius: 1.2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF;
  padding: 3.5rem;
}
.section-compteur .compteurs > div .nombreetunite span.nombre,
.section-compteur .compteurs > div .nombreetunite span.unite {
  font-size: 6.5rem;
  font-weight: 600;
  line-height: 0.88;
  transition: all 0.5s ease-in;
}
.section-compteur .compteurs > div .intitule {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.75;
  margin: 0.8rem 0 3.2rem;
}
.section-compteur .compteurs > div a {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.section-compteur .compteurs .compteur-1 {
  background-color: #99AFC3;
}
.section-compteur .compteurs .compteur-2 {
  background-color: #F16105;
}
.section-compteur .compteurs .compteur-3 {
  border: 1px solid #FFFFFF;
}
.section-compteur .compteurs .compteur-4 {
  background-color: #FFFFFF;
  color: #F16105;
}
.section-compteur .compteurs .compteur-4 a {
  color: #F16105;
}
@media (max-width: 991px) {
  .section-compteur .compteurs > div {
    margin-bottom: 30px;
  }
}
