.step_item{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step_left{
  position: relative;
  width: 120px;
  z-index: 0;
}

.step_circle{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #f1af7a;
}

.step_number{
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  border-bottom: 3px solid #FFF;
  margin-bottom: 5px;
}

.step_name{
  color: #FFF;
  font-size: 1.6rem;
  font-weight: bold;
}

.step_right{
  max-width: 600px;
  padding: 30px 0 50px;
  margin: 0 auto;
}

.step_heading{
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.step_text{
   font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .step_item{
    display: flex;
    flex-direction: row;
    align-items: normal;
  }

  .step_left::after{
    content: "";
    width: 2px;
    height: 100%;
    display: block;
    background: #f1af7a;
    position: absolute;
    top: 0%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, 0%);
  }

  .step_item:last-child .step_left::after {
    display: none;
  }

  .step_left{
    width: 180px;
  }

  .step_circle{
    width: 180px;
    height: 180px;
  }

  .step_number{
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .step_name{
    font-size: 1.8rem;
  }

  .step_right{
    max-width: none;
    width: calc(100% - 180px - 60px);
    padding: 80px 0 50px;
    margin-left: 60px;
  }

  .step_heading{
	font-size: 2rem;
    text-align: left;
  }
	
  .step_text{
	 font-size: 1.6rem;
  }
}