
.container-flex{
    display: flex;
    gap: 50px;
    padding: 60px 0;
}
.steps-flex{
    display:flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 50%;
}
.steps-flex .row{
    display: flex;
    gap: 20px;
}
.steps-flex h2{
    margin-bottom: 50px;
}
.steps-flex .row .col:first-child{
    width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.steps-flex .row .col:first-child i{
    display: block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: #990953;
    font-size: 10px;
    text-align: center;
    color: #ffffff;
    line-height: 50px;  
    font-size: 20px;
}
.steps-flex .row .col:first-child .line{
    width: 3px;
    background-color: gray;
    height: calc(100% - 50px);
    min-height: 50px;
    margin: 10px 0;
}
.steps-flex .row .col:last-child p{
    max-width: 500px;
    padding-bottom:50px
}
.steps-img{
    display: flex;
    width: 50%;
}
.steps-img img{
    width: 100%;
    object-fit: cover;
}
@media only screen and (max-width:900px){
    .steps-img{
        display: none;
    }
    .container-flex{
        flex-direction: column;
        justify-content: center;
    }
    .steps-flex, .steps-img{
        width:100%;
    }
    .steps-flex .row .col:last-child p{
        max-width: 600px;
        padding-bottom:50px
    }
}