.miko-step-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 200px));
    gap: 10px;
    width: 100%;
    justify-content: space-between;
}

.miko-step-wrapper .line-bg {
    position: absolute;
    width: 100%;
    top: 45px;
}

.miko-item-step{
    position: relative;
    z-index: 1;    
}

.miko-item-step .number{
    display: inline-flex;
    align-items: center;
    justify-content: center;    
    background-color: #ffffff;
}
.miko-item-step .title{
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 540px) {
    .miko-step-wrapper{
        justify-content: center;
        gap: 2rem;
    }
}