.how {
  width: 100%;
}

.how .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.how_items {
  margin-top: 36px;
  display: flex;
  gap: 14px 30px;
  flex-wrap: wrap;
}

.how_item {
  width: calc(100% / 4 - (90px / 4));
  padding: 24px;
  border-radius: 20px;
  background-color: var(--White);
  display: flex;
  flex-direction: column;
  gap: 20px;
  counter-increment: count;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.how_item::before {
  content: counter(count, decimal-leading-zero);
  color: var(--Orange);
  line-height: 120%;
  font-size: 40px;
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  .how_items {
    margin-top: 16px;
  }

  .how_item {
    width: calc(100% / 2 - (30px / 2));
    padding: 20px 16px;
    gap: 16px;
  }

  .how_item::before {
    font-size: 30px;
  }
}

@media (max-width: 500px) {
  .how_item {
    width: 100%;
    flex-direction: row;
  }
}
