#step {
    margin-bottom: 80px;
}
.step {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #0066b3;
}
.step .step-inner .triangle {
  content: "";
  display: block;
  width: 0;
  border: solid 1em transparent;
  border-top-color: #0066b3;
  margin: 0 auto;
}
.step h4 {
    color: #0066b3;
    font-size: 18px !important;
    line-height: 1;
    margin: 25px 0 !important;
}
.step h4 span {
  display: block;
}
.step h5 {
  color: #0066b3;
  margin: 15px 0 35px 0 !important;
}
.step-inner div {
    display: flex;
    width: 90%;
    margin: 3em auto;
    text-align: left;
    align-items: center;
}
.step-inner div p {
    width: calc( 100% - 300px);
}
.step-inner div img {
    width: 300px;
    height: auto;
}
.step:first-of-type .triangle:first-of-type {
  display: none;
}

.step:last-child .step-inner:last-child {
  border-bottom: 1px solid #0066b3;
}

@media screen and (max-width: 769px) {
  .step-inner div,
  .step {
    width: 100%;
  }
  .step-inner div img {
    width: 180px;
  }
  .step-inner div p {
    width: calc( 100% - 180px);
  }
}
@media screen and (max-width: 430px) {
  .step-inner div {
    flex-wrap: wrap;
    justify-content: center;
  }
  .step-inner div img {
    width: 86%;
    margin-bottom: 25px;
  }
  .step-inner div p {
    width: 100%;
  }
}