.numbers-section {
  padding: 60px 40px;
  background-size: contain;
  position: relative;
  z-index: -2;
}

.numbers-section::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--prosem-dark-overlay);
  z-index: -1;
}

.numbers-section__content {
  z-index: 100;
}

.numbers-section .h2 {
  text-align: center;
  padding-bottom: 60px;
}

.numbers__list {
  list-style: none;

  display: flex;
  flex-direction: column;
}

.numbers__item {
  display: flex;
  background: rgba(18, 19, 29, 0.4);
  backdrop-filter: blur(20px);
  padding: 48px 32px;
  border-radius: 16px;
  margin-bottom: 32px;
}

.numbers__image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-right: 24px;
}

.numbers__item .item__inner {
  flex-grow: 1;
}

.numbers__item .h3 {
  padding-bottom: 10px;
}

.numbers__text {
  font-size: 14px;
  color: var(--prosem-gray-color);
  font-weight: 400;
}

@media (min-width: 860px) {
  .numbers-section {
    padding: 120px;
  }

  .numbers__image {
    width: 120px;
    height: 120px;
  }

  .numbers__text {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  .numbers-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .numbers__image {
    width: 90px;
    height: 90px;
  }

  .numbers__list {
    display: grid;
    grid-template-columns: repeat(3, 320px);
    gap: 30px;
  }
}

@media (min-width: 1400px) {
  .numbers__image {
    width: 120px;
    height: 120px;
  }

  .numbers__list {
    display: grid;
    grid-template-columns: repeat(3, 440px);
    gap: 30px;
  }
}
