.steps {
    list-style: none;
    counter-reset: item+1;
    display: flex;
    margin: 0px auto;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: max-content;
}
.step{
    width: max-content;
}
.step.active > a, .step:hover > a{
    /* text-decoration: underline #464c55; */
    color: #464c55;
}
.step > a{
    counter-increment: item;
    /* margin-bottom: 5px; */
    color: #464c5586;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}
.step:after{
    content: ">";
    margin: 0px 5px;
}
.step:last-child:after{
    content: "";
}


.step.active::before{
    background: #ffbc00;
    color: black;
}
.step:before {
    content: counter(item);
    padding: 5px;
    margin-right: 10px;
    background: #464c5573;
    color: #464c55;
    border-radius: 100%;
    font-size: 12px;
    width: 1.9em;
    text-align: center;
    display: inline-block;
    line-height: 12px;
}


@media screen and (max-width:991.8px){
    .steps{
        border-left: 2px solid #464c558a;
        padding-left: 20px;
    }
}