.timeline-section .section-container{
    padding: 0 !important;
}
.block-timeline ul{
    list-style: none;
    padding: 0;
    margin: 0 0 80px;
}
.timeline__item{
    display: flex;
    align-items: stretch;
    margin: 0;
    position: relative;
    flex-direction: row-reverse;
}
.timeline__icon-holder{
    border-radius: 50%;
    border: 1px dashed #C9CCCE;
    padding: 16px;
    margin-bottom: 24px;
    display: inline-block;
}
.timeline__content-holder{
    border-top: 1px solid #EEF2F4;
    padding: 16px;
    width: calc(100% - 50px);
}
.timeline__content{
    border-radius: 0px 48px 0px 0px;
    background: #FAFAFA;
    padding: 24px;
}
.timeline__step{
    width: 60px;
    font-size: 18px;
    position: absolute;
    text-align: center;
    display: flex;
    align-items: center;
    height: 100%;
    left: 0;
    right: 0;
    margin: 0;
}
.timeline__step:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    height: 100%;
    width: 4px;
    background: #F8B322;
    display: block;
    z-index: 1;
}
.timeline__step .timeline__step-number{
    padding: 32px 10px;
    background: white;
    z-index: 2;
}
.timeline__step .number{
    font-weight: 900;
    font-size: 36px;
} 
@media (min-width: 992px){
    .timeline__item{
        flex-direction: row;
    }
    .timeline__item:nth-child(even){
        flex-direction: row-reverse;
    }
    .timeline__item:nth-child(even) .timeline__content-holder{
        padding: 16px 16px 0 54px;
    }
    .timeline__content-holder{
        padding: 16px 54px 0 16px;
        width: calc(53% - 80px);
    }
    .timeline__step{
        position: absolute;
        margin: auto;
    }
    .timeline-section .section-container{
        padding-left: 15rem !important;
        padding-right: 15rem !important;
    }
    .timeline__step{
        width: 80px;
    }
    .timeline__step .timeline__step-number{
        padding: 32px 21px;
    }
}