.counter-title {
  text-align: center;
}
.counter-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.counter-item {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border-radius: 10px;
  border: 1px solid var(--head);
  background: var(--bg);
}
.counter-item_value {
  position: relative;
  font-family: var(--font_first);
  font-weight: 500;
  font-size: clamp(25px, 0.034375 * 100vw + 14px, 80px);
  line-height: 110%;
  letter-spacing: 0;
  text-align: center;
  color: var(--head);
}
.counter-item_value * {
  font-family: var(--font_first);
  font-weight: 500;
  font-size: clamp(25px, 0.034375 * 100vw + 14px, 80px);
  line-height: 110%;
  letter-spacing: 0;
  text-align: center;
  color: var(--head);
  font-style: unset;
}
.counter-item_desc {
  font-family: var(--font_second);
  font-weight: 400;
  font-size: clamp(12px, 0.0025 * 100vw + 11.2px, 16px);
  line-height: 130%;
  letter-spacing: 0%;
  color: var(--text);
  text-align: center;
}

@media (max-width: 992px) {
  .counter-block {
    padding: 20px 0 !important;
  }
  .counter-item {
    padding: 10px;
    gap: 10px;
  }
}
@media (max-width: 820px) {
  .counter-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .counter-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-item {
    padding: 5px;
    gap: 5px;
  }
}/*# sourceMappingURL=block.css.map */