.company-numbers {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  color: var(--color-light);
  background: #131715;
  border: 1px solid rgba(244, 246, 244, 0.1);
}

.company-numbers__background,
.company-numbers__overlay {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: 420px;
}

.company-numbers__background {
  max-width: none;
  object-fit: cover;
}

.company-numbers__overlay {
  background: linear-gradient(
    180deg,
    rgba(8, 12, 11, 0.82) 0%,
    rgba(8, 12, 11, 0.5) 45%,
    rgba(8, 12, 11, 0.9) 100%
  );
}

.company-numbers__title {
  position: absolute;
  top: 116.97px;
  left: 39px;
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 42px;
  font-weight: 600;
  line-height: 44.52px;
  letter-spacing: -0.63px;
  text-transform: uppercase;
  white-space: nowrap;
}

.company-numbers__title span:last-child {
  color: rgba(244, 246, 245, 0.6);
  font-weight: 400;
}

.company-numbers__grid {
  position: absolute;
  top: 241px;
  right: 19px;
  left: 19px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  height: 157px;
  overflow: hidden;
  background: linear-gradient(
    176.14deg,
    rgba(255, 255, 255, 0.03) 7.735%,
    rgba(255, 255, 255, 0.01) 92.265%
  );
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.company-numbers__item {
  min-width: 0;
  padding: 28px 30px;
}

.company-numbers__item + .company-numbers__item {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.company-numbers__value {
  display: block;
  color: var(--color-light);
  font-size: 48px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.96px;
  white-space: nowrap;
}

.company-numbers__description {
  margin: 12px 0 0;
  color: rgba(244, 246, 245, 0.62);
  font-size: 13px;
  font-weight: 400;
  line-height: 19.5px;
}

@media (max-width: 900px) {
  .company-numbers {
    height: auto;
    min-height: 560px;
    padding: 80px 20px 20px;
  }

  .company-numbers__background,
  .company-numbers__overlay {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .company-numbers__title {
    position: relative;
    top: auto;
    left: auto;
  }

  .company-numbers__grid {
    position: relative;
    inset: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: auto;
    margin-top: 34px;
  }

  .company-numbers__item:nth-child(3) {
    border-left: 0;
  }

  .company-numbers__item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 560px) {
  .company-numbers {
    padding-top: 56px;
  }

  .company-numbers__title {
    font-size: 36px;
    line-height: 38px;
  }

  .company-numbers__grid {
    grid-template-columns: 1fr;
  }

  .company-numbers__item + .company-numbers__item {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }
}
