.journey-timeline-section *:not(.btn){
    color: var(--cream);
}
.journey-timeline-section .col-6 {
    width: 50%;
}
.journey-timeline-section .row{
    overflow: hidden;
    row-gap: 16px;
}
.timeline-section{
    position: relative;
    padding-left: 75px;
    padding-top: 16px;
}
.timeline-line {
    position: absolute;
    width: 3px;
    height: 0;
    background: var(--cream);
    -webkit-transition: height 0.5s ease-in-out;
    -o-transition: height 0.5s ease-in-out;
    transition: height 0.5s ease-in-out;
    left: 0;
    top: 0;
}
.timeline-section .default-line {
    position: absolute;
    left: 0;
    top: 0;
    height: calc(100% + 45px);
    width: 2px;
}
.timeline-section .timeline-row{
    position: relative;
}
.timeline-section .timeline-row::after {
    content: "";
    position: absolute;
    left: -90px;
    top: 10px;
    width: 31px;
    height: 31px;
    background-color: var(--cream);
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    border-radius: 15px;
    border: 8px solid var(--brown);
}
.timeline-section .timeline-row.in-view::after{
    opacity: 1;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
}
.journey-timeline-section .col-left{
    padding-right: 75px;
}
.timeline-row:not(:last-child) {
    margin-bottom: 32px;
}
.timeline-row h2{
    margin-bottom: 15px;
}
.timeline-row h4{
    margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
    .journey-timeline-section .col-left {
        padding-right: 15px;
    }
    .timeline-section{
        padding-left: 35px;
    }
    .timeline-section .timeline-row::after{
        left: -50px;
    }
}
@media only screen and (max-width: 767px) {
    .journey-timeline-section .col-6 {
        width: 100%;
    }
    .timeline-section .timeline-row::after{
        top: 3px;
    }
    .timeline-row h4 {
        margin-bottom: 15px;
    }
}