#timeline{
    padding-top: 105px;
    padding-bottom: 75px;
}
/* The actual timeline (the vertical ruler) */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #e9e9e9;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

/* Container around content */
.time_wrapper {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

/* The circles on the timeline */
.time_wrapper::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 5px;
    right: -3px;
    background-color: #e11419;
    /* border: 4px solid #FF9F55; */
    top: 13px;
    border-radius: 0;
    z-index: 1;
    -webkit-transition: height 1.2s;
    -moz-transition: height 1.2s;
    transition: height 1.2s;
}
.start_animation.time_wrapper::after {
    height: 65px;
}
.offset_0.time_wrapper {
    padding-left: 0;
}
.offset_0.time_wrapper:after {
    content: none;
}

/* Place the container to the left */
.left {
    left: 0;
}
.left.has_post_thumb {
    margin-top: -100px;
}

/* Place the container to the right */
.right {
    left: 50%;
}

/* Add arrows to the left container (pointing right)
.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}*/

/* Add arrows to the right container (pointing left)
.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}*/

.right::after {
    left: -3px;
}

/* The actual content */
.time-content {
    padding: 1px;
    position: relative;
    align-items: start;
}
.left .time-content {
    flex-direction: row-reverse;
}

.time-head{
    width: 32%;
}
.time-head span{
    color: #e11419;
    font-size: 35px;
    font-weight: 600;
    display: block;
}
.left .time-head span{
    text-align: right;
}
.time-body{
    width: 68%;
}

.has_post_thumb .time-head span{
    padding-top: 100px;
}
.has_post_thumb.time_wrapper:after {
    top: 113px;
}
.time_thumb{
    margin: 0 0 25px 0;
}

@media screen and (max-width: 900px) {
    .time-head{
        width: 100%;
        margin-bottom: 20px;
    }
    .time-body{
        width: 100%;
    }
    .time-body p{
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 10px;
    }
    .has_post_thumb .time-head span, .time-head span {
        padding-top: 20px;
    }
    .has_post_thumb.time_wrapper:after {
        top: 13px;
    }
}

@media screen and (max-width: 600px) {
    /* Full-width containers */
    .time_wrapper {
        padding-bottom: 20px;
        width: 100%;
        padding-left: 70px;
        padding-right: 2px;
        left: 0;
    }
    .left.has_post_thumb {
        margin-top: 0;
    }
    .timeline::after {
        top: 75px;
        left: 15px;
        margin-left: 0;
    }
    .right::after {
        left: 15px;
    }
    .time_wrapper:after {
        top: 13px;
        right: auto;
        left: 15px;
    }
    .left .time-content {
        flex-direction: row-reverse;
        background: #fff;
        padding: 20px;
    }
    .left .time-head span {
        text-align: left;
        padding-top: 0;
    }
}
@media screen and (max-width: 380px) {
    .time_wrapper {
        padding-left: 55px;
    }
    #timeline {
        padding-top: 75px;
    }
}
@media screen and (max-width: 350px) {
    .time_wrapper {
        padding-left: 30px;
        padding-right: 0;
    }
    .timeline:after {
        left: 0;
    }
    .time_wrapper:after {
        left: 0;
    }
}