.numbers {
  position: relative;
  padding: 100px 0;
  background: var(--primary);
  color: var(--white);
}

.numbers__container {
  position: relative;
  z-index: 2;
}

.numbers__title {
  max-width: none;
}

.numbers__items {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 82px;
}

.numbers__items .item {
  width: 350px;
}

.numbers__items .item__title {
  font: 600 103px/112% var(--heading-font-family);
  display: flex;
  color: var(--light);
}

.numbers__items .item__text {
  display: block;
  margin-top: 10px;
  font-size: var(--l);
  line-height: 160%;
  color: rgba(237, 237, 237, 0.9);
}

.numbers__image {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1260px) {
  .numbers {
    padding: 50px 0;
  }

  .numbers__items {
    gap: 30px;
    margin-top: 40px;
  }

  .numbers__items .item {
    width: 200px;
  }

  .numbers__items .item__title {
    font-size: 70px;
  }
}

@media (max-width: 760px) {
  .numbers__title {
    font-size: 26px;
  }

  .numbers__items .item {
    width: 100%;
    text-align: center;
  }

  .numbers__items .item__title {
    justify-content: center;
    font-size: 54px;
  }

  .numbers__items .item__text {
    margin-top: 0;
  }

  .numbers__image {
    transform: translate(38%, -50%) rotate(-90deg);
    bottom: auto;
    left: auto;
    right: 0;
    top: 50%;
    height: 200px;
  }
}