/* ============= Statistics =============
====================================== */
.statistics {
  margin-inline: 5vw;
}

.statistics .container {
  background-image: linear-gradient(to right, #2fbc7a 0%, #139458 100%);
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  color: var(--white-color);
  padding-inline: 32px;
  min-height: 230px;
}

.statistics .container .title {
  max-width: 322px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.statistics .container .title h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 16px;
}

.statistics .container .statistics-numbers {
  display: flex;
  align-items: center;
  gap: 45px;
}

.statistics .container .statistics-numbers .item {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 16px;
}

.statistics .container .statistics-numbers .item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 65px;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: color-dodge;
  pointer-events: none;
}

.statistics .container .statistics-numbers span {
  font-weight: 700;
  font-size: 42px;
}

.statistics .container .statistics-numbers p {
  font-size: 14px;
  margin-top: 6px;
}
