.process-step-collect {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  place-content: center;
  text-align: center;
}
.process-step-collect li {
  position: relative;
}
.process-step-collect li:not(:first-of-type):before {
  content: "";
  position: absolute;
  background: url(../images/arrow-step.png) no-repeat center;
  height: 30px;
  width: 32px;
  left: 0;
  top: 50%;
  display: inline-block;
  margin-left: -32px;
}
.process-step-collect li .proc-title {
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  letter-spacing: 0.64px;
  padding-top: 20px;
  color: #242929;
}
.process-step-collect li span.no {
  text-align: center;
  background: #3e9400;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  color: white;
  line-height: 30px;
  margin: 0 auto 20px;
  display: inline-block;
}

@media (max-width: 767px) {
  .process-step-collect {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
  .process-step-collect li:not(:first-of-type):before {
    content: none;
  }
}
