/* Scss Document */
.step-items {
  padding: 0 95px;
}
.step-items .step-item {
  margin-bottom: 4em;
  position: relative;
}
.step-items .step-item:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 6em;
  border-left: solid 2px #251d1a;
  left: 10em;
  top: 0;
}
.step-items .step-item h2 {
  margin-bottom: 1em;
  padding-bottom: 0.75em;
  border-bottom: solid 1px #251d1a;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}
.step-items .step-item h2 span {
  margin-right: 1.5em;
  display: inline-block;
  font-size: 4rem;
  font-weight: normal;
  font-family: Arial, Helvetica, sans-serif;
  color: #011D70;
}
.step-items .step-item .step-text {
  margin-left: 12em;
}

@media only screen and (max-width: 600px) {
  .step-items {
    padding: 0;
  }
  .step-items .step-item {
    margin: 2em 0;
    position: relative;
  }
  .step-items .step-item:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 4em;
    border-left: solid 2px #251d1a;
    left: 7em;
    top: 0;
  }
  .step-items .step-item h2 {
    margin-bottom: 1.5em;
    padding-bottom: 0.75em;
    border-bottom: solid 1px #251d1a;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
  }
  .step-items .step-item h2 span {
    margin-right: 1.5em;
    display: inline-block;
    font-size: 3rem;
    font-weight: normal;
    font-family: Arial, Helvetica, sans-serif;
    color: #011D70;
  }
  .step-items .step-item .step-text {
    margin-left: 0;
  }
  .step-items .step-item .step-text br {
    display: none;
  }
}