.big-numbers {
  width: 100%;
  height: 100%;
}

.big-numbers__wrapper {
  padding: 120px 80px;
  display: flex;
  position: relative;
}

.big-numbers__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 120px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.big-numbers__background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.big-numbers__background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000099;
}

.big-numbers__header {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.big-numbers__title {
  display: flex;
  gap: 24px;
  max-width: 514px;
  color: var(--color-white);
}

.big-numbers__icon {
  width: 17px;
  height: 45px;
  min-width: 17px;
  min-height: 45px;
}

.big-numbers__heading {
  font-weight: 700;
  font-size: 56px;
  line-height: 56px;
  color: var(--color-white);
}

.big-numbers__stats-list {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.big-numbers__stat-item {
  display: flex;
  flex-direction: row;
  column-gap: 32px;
  align-items: center;
}

.big-numbers__stat-item:nth-child(2n) {
  flex-direction: row-reverse;
}

.big-numbers__featured {
  flex-direction: row !important;
}

.big-numbers__stat-content {
  display: flex;
  column-gap: 32px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid #ffffff33;
  width: min-content;
  flex: 1;
}

.big-numbers__stat-value {
  font-weight: 300;
  font-size: 160px;
  color: var(--color-white);
  font-family: var(--font-primary);
}

.big-numbers__stat-label {
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  color: var(--color-white);
}

.big-numbers__spacer {
  display: block;
  width: 100%;
  height: 1px;
  visibility: hidden;
  opacity: 0;
  flex: 1;
}

/* ========= */

.big-numbers__stat-value .big-numbers__number-wrapper {
  display: inline-flex;
  align-items: baseline;
  position: relative;
  line-height: 1;
  gap: 0;
}

.big-numbers__number-prefix,
.big-numbers__number-suffix {
  font-weight: 300;
  opacity: 1;
}

.big-numbers__number {
  display: inline-flex;
  position: relative;
  height: 1em;
  overflow: hidden;
  font-weight: 300;
  line-height: 1em;
  min-width: 1.35em;
  text-align: left;
  font-family: var(--font-primary);
  white-space: nowrap;
}

.big-numbers__number>span[data-value] {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  text-align: center;
  width: 0.65em;
  top: 0;
  transform: translateY(-1000%);
  will-change: transform;
}

.big-numbers__number>span.visible {
  position: relative;
}

.big-numbers__number>span[data-value]>span {
  display: block;
  height: 1em;
  line-height: 1em;
  min-width: 0.65em;
}

.big-numbers__number-separator,
.big-numbers__number-other {
  display: inline-block;
  vertical-align: middle;
  opacity: 1;
  font-weight: 700;
  margin: 0 0.05em;
}

/* ================= */

@media (max-width: 1180px) {
  .big-numbers__wrapper {
    padding: 60px 32px;
  }

  .big-numbers__heading {
    font-size: 48px;
    line-height: 48px;
  }

  .big-numbers__stat-value {
    font-size: 80px;
  }

  .big-numbers__stat-label {
    font-size: 32px;
    line-height: 36px;
  }
}

@media (max-width: 820px) {
  .big-numbers {
    margin: 60px 0;
  }

  .big-numbers__wrapper {
    padding: 60px 24px;
  }

  .big-numbers__inner {
    gap: 48px;
  }

  .big-numbers__icon {
    width: 9px;
    height: 24px;
    min-width: 9px;
    min-height: 24px;
  }

  .big-numbers__header {
    flex-direction: column;
    row-gap: 32px;
  }

  .big-numbers__title {
    gap: 12px;
    max-width: 100%;
  }

  .big-numbers__stats-list {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
  }

  .big-numbers__heading {
    font-size: 32px;
    line-height: 36px;
  }

  .big-numbers__stat-value {
    font-size: 60px;
  }

  .big-numbers__stat-label {
    font-size: 24px;
    line-height: 32px;
  }

  .big-numbers__stat-item {
    flex-direction: column;
    align-items: start;
  }

  .big-numbers__stat-item:nth-child(2n) {
    flex-direction: row;
  }

  .big-numbers__featured {
    flex-direction: column !important;
  }

  .big-numbers__stat-content {
    flex-direction: column;
    align-items: start;
    padding-top: 16px;
    width: 100%;
  }

  .big-numbers__spacer {
    display: none;
  }
}