.chiffres-section {
  width: 100%;
  max-width: 100vw;
  padding: 80px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  font-family: "Nunito Sans", Arial, sans-serif;
  background: linear-gradient(to right, #105fab 0%, #35b654 100%);
}
@media (max-width: 768px) {
  .chiffres-section {
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.chiffres-header {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chiffres-header img {
  margin-right: -32px;
  z-index: 3;
}
@media (max-width: 768px) {
  .chiffres-header img {
    transform: scale(0.8);
    margin-right: -25px;
  }
}
.chiffres-header .chiffres-header-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 3px;
  width: 100%;
  background: #00abdc;
  z-index: 1;
}
.chiffres-header .chiffres-header-title {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 521px;
  height: 47px;
  padding: 17px 86px;
  border-radius: 80px;
  background: linear-gradient(to right, #00abdc 0%, #005c76 100%);
  font-family: "Audiowide", Arial, sans-serif !important;
}
.chiffres-header .chiffres-header-title p {
  font-size: 24px;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .chiffres-header .chiffres-header-title {
    width: auto;
    max-width: 90%;
    height: 40px;
    padding: 10px 30px;
  }
  .chiffres-header .chiffres-header-title p {
    font-size: 18px;
  }
}

.chiffres-content {
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}
@media (max-width: 1200px) {
  .chiffres-content {
    gap: 40px;
  }
}

.chiffre-card-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 0 1 calc(20% - 48px);
  min-width: 200px;
}
.chiffre-card-container:not(:first-child) {
  margin-left: -65px;
}
.chiffre-card-container:nth-child(even) .chiffre-card .arc {
  top: 0;
  bottom: auto;
  transform: rotate(180deg);
}
@media (max-width: 1200px) {
  .chiffre-card-container {
    flex: 0 1 calc(50% - 20px);
    margin-left: 0 !important;
  }
}
@media (max-width: 768px) {
  .chiffre-card-container {
    flex: 0 1 100%;
    margin-left: 0 !important;
  }
}

.chiffre-card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 243px;
  height: 243px;
  position: relative;
  border-bottom: 8px solid #00abdc;
}
.chiffre-card .arc {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 243px;
  height: 122px;
  bottom: 0;
}
.chiffre-card .chiffre-inner {
  width: 153px;
  height: 153px;
  border-radius: 50%;
  background: #d9d9d9;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.chiffre-card .chiffre-inner i {
  background: linear-gradient(to right, #00abdc 0%, #005c76 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}
.chiffre-card:hover .chiffre-inner i {
  transform: scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.vertical-line {
  width: 8px;
  height: 140px;
  background-color: #fff;
  overflow: visible;
  position: relative;
}
.vertical-line img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 20px;
  height: auto;
}

.chiffre-details {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 16px;
}
.chiffre-details .chiffre-value {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}
.chiffre-details .chiffre-label {
  font-size: 14px;
  color: #fff;
  margin: 5px 0 0 0;
}/*# sourceMappingURL=chiffres.css.map */