.steps__container{
    max-width: none;
}


.steps__item{
    width: 33.3333333333%; 
    padding: 0 16px;
    float: left;
    clear: none;
}
@media (max-width: 767px){
    .steps__item{
        width: 100%;
        margin-bottom: 32px;
    }
}
.steps__item > div{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    gap: 24px;
    margin-bottom: 0;
}

.steps-item__header{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .steps-item__header{
        flex-wrap: nowrap;
    }
}

.steps-item__number{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 10px;
    background: #0B57AD;
    border-radius: 50%;
    font-weight: 500;
    color: #fff;
}

.steps-item__title{
    order: 1;
    color: #343740;
    width: 100%;
}

.steps-item__title > strong{
    font-size: 18px;
    margin-bottom: 2rem;
    font-weight: 700;
}
@media (min-width: 1024px){
    .steps-item__header:after{
        content: "";
        height: 1px;
        flex-grow: 1;
        margin-left: 20px;
        background: #ededed;
    }
}


.steps-item__footer > div{
    font-size: 18px;
    color: #666;
}