.steps.howworks{
    display: flex;
}
.steps-item {
    position: relative;
}
.steps-item-number{
    width: 65px;
    height: 65px;
    background: #34DCA2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 25px;
    color:#fff;
}
.steps-item-number::after {
    content: '';
    display: block;
    position: absolute;
    background: center/contain no-repeat url(/wp-content/uploads/2022/02/psevdo.svg);
    width: 110px;
    height: 10px;
    top: 32px;
    right: -15%;
}

.steps-item-heading{
    padding: 20px 0 10px 0;
}
@media screen and (max-width: 991px){
    .steps.howworks{
        flex-wrap: wrap;
        padding-left: 25px;
        margin-top: -30px;
    }
    .steps-item{
        position: relative;
    }
    .steps-item:before{
        content: '';
        display: block;
        position: absolute;
        width: 1px;
        height: 100%;
        top: 69px;
        left: -20px;
        border-right: 1.29318px dashed #C4C4C4;
    }
    .steps .steps-item:last-child:before{
        display: none;
    }
    .steps-item-number::after{
        background: #FFFFFF !important;
        border: 1.93977px solid #C4C4C4;
        border-radius: 100px;
        width: 11px;
        height:11px;
        left: -25px;
        right: auto;
        top: 59px;
    }
    .steps-item-number{
        margin-top: 30px;
    }
}
@media screen and (min-width: 991px){
    .steps.howworks {
        gap: 70px;
        margin-top: 25px;
    }
    .steps-item{
        flex-basis: 190px;
    }
    .steps-item:last-child .steps-item-number::after{
        display: none;
    }
}



