.how_order {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 50%;
  line-height: 1.3;
}

.how_order p {
  margin: 0;
}

.how_order .how_order__text-big {
  font-size: 28px;
  transition: all .2s;
}

.how_order .how_order__phone,
.how_order .how_order__email {
  font-size: 28px;
  font-weight: 700;
  transition: all .2s;
}

@media (max-width: 1024px) {
  .how_order {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .how_order .how_order__text-big {
    font-size: 20px;
  }

  .how_order .how_order__phone,
  .how_order .how_order__email {
    font-size: 20px;
  }
}