/* utils */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.stats {
  padding: 36px 0;
  background-color: #fff;
}

.stats__list {
  display: grid;
  gap: 16px;
}
@media screen and (min-width: 1100px) {
  .stats__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 768px) and (max-width: 1099px) {
  .stats__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat__item:nth-child(3) {
    grid-column: 1/-1;
  }
}
.stat__item {
  border-radius: clamp(16px, 8 * (100vw - 375px) / 1065 + 16px, 24px);
  padding: clamp(16px, 8 * (100vw - 375px) / 1065 + 16px, 24px) clamp(24px, 8 * (100vw - 375px) / 1065 + 24px, 32px);
  background: #f6f7f9;
  display: flex;
  justify-content: space-between;
  gap: 27px;
  align-items: center;
}

.stat__item-text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: rgba(31, 30, 34, 0.7);
}
.stat__item-text p span {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  color: #1f1e22;
  margin: 8px 0;
  opacity: 1;
  display: block;
}

.stat__item-image {
  width: 130px;
  height: 70px;
  height: auto;
  display: block;
}

.stat__item:first-child .stat__item-image {
  width: 105px;
  height: 50px;
}

.stat__item:last-child .stat__item-image {
  width: 160px;
  height: 32px;
}
/*# sourceMappingURL=stats.css.map */
