.steps .b-title{
  margin-bottom: 24px
}
.steps-list{  
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; 
  padding-left: 0;
}
  .steps-list a{
    border-bottom: 1px dashed #0fb445;
    color: #0fb445;
    text-decoration: none;
    font-weight: 800;
  }
  .steps-list a:hover,
  .steps-list a:focus,
  .steps-list a:active{
    color: #0fb445;
    border-bottom-color: transparent;
  }
  .steps-list .item{
    display: block;
    list-style: none;
    position: relative;    
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
    display: block;
    text-align: center;
  }
  /*.steps-list .item:nth-child(2) {
    justify-self: center;
  }
  .steps-list .item:nth-child(3) {
    justify-self: end;
  }*/
    .steps-list .item .top{
      display: inline-block;
      padding: 15px;
      border-radius: 50%;
      /*border: 1px dashed #505050;*/
      position: relative;
      background: url(../images/step-border.png) no-repeat center center
    }
    .steps-list .item .img{
      width:  150px;
      height: 150px;
      display: block;
      margin: 0 auto;
      border-radius: 50%;
      text-align: center;
      background: url(../images/sprite-steps.png) no-repeat 0 0
    }
    .steps-list .item:nth-child(2) .img{
      background-position: -150px 0
    }
    .steps-list .item:nth-child(3) .img{
      background-position: -300px 0
    }
	.steps-list .item:nth-child(4) .img {
		background-position: -450px 0;
	}
    .steps-list .item .top span{
      width:  30px;
      height: 30px;
      display: block;
      line-height: 30px;
      border-radius: 50%;
      border: 2px solid #fff;
      background: #fdab05;
      position: absolute;
      font-size: 18px;
      font-weight: bold;
      top: -3px;
      left: 15%;
    }
    .steps-list .item .text{
      font-size: 18px;
      font-weight: 700;
      margin-top: 23px;
    }

@media only screen and (min-width:768px) and (max-width: 991px){

}

@media only screen and (max-width:767px){
  .steps-list{
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .steps-list .item{
    margin: 0 20px 60px;
  }
}