.image-with-steps {
    display: flex;
    flex-wrap: wrap;
    align-self: center;
    justify-content: space-between;
   counter-increment: step-counter;
}
.image-with-steps-grid{
   counter-reset: step-counter;
}


.title-with-decription span.step {
    font-size: 50px;
    font-style: normal;
    font-weight: 800;
    line-height: 62px;
    color: rgba(255, 107, 44, 0.20);
    display: inline-block;
    position: relative;
    position: absolute;
    right: 0;
}
.image-with-steps span.step:before {
    content: counter(step-counter, decimal-leading-zero);
    display: block;
}
.image-with-steps .step-image {
    width: 27.5%;
}

.image-with-steps .title-with-decription {
    width: 67.75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-right: 140px;
}

.image-with-steps .step-image {
    position: relative;
    min-height: 165px;
    border-radius: 24px;
    overflow: hidden;
}

.image-with-steps .step-image img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    object-fit: cover;
}

.image-with-steps:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(17, 24, 39, 0.15);
}
.title-with-decription h3,.title-with-decription p {
    width: 50%;
}
.title-with-decription h3 {
    margin-right: 20px;
}


@media only screen and (max-width:1399px){
    
}
@media only screen and (max-width:1199px){
    .image-with-steps .title-with-decription {
        padding-right: 80px;
    }
}
@media only screen and (max-width:991px){
    .image-with-steps .step-image {
        width: 40%;
    }
    .image-with-steps .title-with-decription {
        width: 55%;
        display: block;
        padding-right: 0;
        padding-top: 70px;
    }
    .title-with-decription h3, 
    .title-with-decription p {
        width: 100%;
    }
    .title-with-decription span.step {
        right: auto;
        top: 0;
        left: 0;
    }
}
@media only screen and (max-width:767px){
    .image-with-steps .step-image {
        width: 100%;
    }
    .image-with-steps .title-with-decription {
        width: 100%;
        margin-top: 10px;
    }
}