/* Welco GM homepage V2 Ã¢â‚¬â€ animated company statistics */
.wgm-v2-stats {
  position: relative;
  padding: 78px 0 84px;
  overflow: hidden;
  color: #ffffff;
  background: var(--wgm-theme-navy, #12364f);
  border-bottom: 5px solid var(--wgm-theme-accent, #ffc815);
}

.wgm-v2-stats__container {
  position: relative;
  z-index: 1;
}

.wgm-v2-stats__heading {
  max-width: 960px;
  margin: 0 auto 42px;
  text-align: center;
}

.wgm-v2-stats__heading h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.wgm-v2-stats__heading .wgm-v2-stats__subheading {
  margin: 14px auto 0;
  color: var(--wgm-theme-accent, #ffc815);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(16px, 1.45vw, 21px);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

.wgm-v2-stats__heading .wgm-v2-stats__description {
  max-width: 650px;
  margin: 9px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.wgm-v2-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.wgm-v2-stats__item {
  position: relative;
  min-width: 0;
  padding: 36px 28px 34px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.wgm-v2-stats__item:last-child {
  border-right: 0;
}

.wgm-v2-stats__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--wgm-theme-navy, #12364f);
  font-size: 20px;
  background: var(--wgm-theme-accent, #ffc815);
  border: 1px solid var(--wgm-theme-accent, #ffc815);
  border-radius: 50%;
}

.wgm-v2-stats__number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #ffffff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(44px, 4.3vw, 66px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.wgm-v2-stats__suffix {
  margin-left: 3px;
  color: var(--wgm-theme-accent, #ffc815);
  font-size: 0.62em;
  letter-spacing: 0;
}

.wgm-v2-stats__item h3 {
  margin: 14px 0 0;
  color: #ffffff;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.wgm-v2-stats__item p {
  max-width: 240px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

@media (max-width: 991px) {
  .wgm-v2-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wgm-v2-stats__item:nth-child(2) {
    border-right: 0;
  }

  .wgm-v2-stats__item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 575px) {
  .wgm-v2-stats {
    padding: 54px 0 60px;
  }

  .wgm-v2-stats__heading {
    margin-bottom: 30px;
  }

  .wgm-v2-stats__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .wgm-v2-stats__item {
    padding: 30px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .wgm-v2-stats__item:last-child {
    border-bottom: 0;
  }
}
