
ul:not(.breadcrumbs){
    padding: 0;
    margin: 0;
}
ol:not(.breadcrumbs){
    padding: 0;
    margin: 0;
}
.steps{
    width: 100%;
    clear: both;
    display: block;
    overflow: auto;
    margin-top: 80px;
    padding: 30px 0;
    }
.steps>.items{
    display: block;
    clear: both;
    width: 80%;
    margin: 0 auto;
    }
.steps li:before{
    border: 1px solid red;
    }
.steps ol{
    list-style-type:none;
    counter-reset:num;
    }
.steps li::before{
    content: counter(num);
    counter-increment: num;
    display: inline-block;
    position: relative;
    font-size: 40px;
    border: 2px solid #333333;
    border-radius: 100%;
    padding: 20px 20px;
    background: white;
    margin: 30px auto;
    color: #333333;
    }
.steps>.items>li{
    display: inline-block;
    width: 22%;
    float: left;
    text-align: center;
    }
.steps>.items>li:not(:first-child){
    margin-left: 4%;
    }


.steps>.items li:nth-last-child(n+3),
.steps>.items li:nth-last-child(n+3) ~ *{
    width: 30%;
    }


.steps>.items li:nth-last-child(n+4),
.steps>.items li:nth-last-child(n+4) ~ *{
    width: 22%;
    }

.steps>.items li:nth-last-child(n+5),
.steps>.items li:nth-last-child(n+5) ~ *{
    width: 16%;
    }


.steps>.title{
    font-size: 32px;
    line-height: 50px;
    }

.steps>.subtitle{
    color: #a0a0a0;
    font-size: 24px;
    line-height: 50px;
    }


li .title{
    font-weight: bold;
     font-size: 16px;
    }
li .subtitle{
      font-size: 16px;
     }
.steps>.center{
    text-align: center;
    }

