.timeline-list .list {
    padding: 0 0 80px 60px;
    position: relative;
}

.timeline-list .title {
    font-weight: 700;
    font-size: 22px;
}


.timeline-list .list:before {
    content: '';
    width: 0;
    height: 0;
    display: block;
    opacity: 0;
    border: solid 2px #405cba;
    border-radius: 0;
    background: none;
    border-left: none;
    left: 11px;
    top: 20px;
    position: absolute;
    transition: all 0.8s 1s ease-in-out;
}

.timeline-list .list.visible:before {
    opacity: 1;
    height: 100%;
}

.timeline-list .list:last-of-type {
    padding-bottom: 0;
}

.timeline-list .list:last-of-type:before {
    display: none;
}

.timeline-list .list:after {
    content: '';
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: solid 3px #405cba;
    background: #fff;
    position: absolute;
    left: 0;
    top: 9px;
}
