.company-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.company-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #d9d9d9;
    transform: translateX(-50%);
}

.timeline-item {
    width: 50%;
    position: relative;
    margin-bottom: 60px;
}

.timeline-item--left {
    padding-right: 50px;
}

.timeline-item--right {
    margin-left: 50%;
    padding-left: 50px;
}

.timeline-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}


.timeline-item::before {
    content: '';
    position: absolute;
    top: 40px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0073aa;
    z-index: 2;
}

.timeline-item--left::before {
    right: -9px;
}

.timeline-item--right::before {
    left: -9px;
}

@media (max-width: 768px) {

    .company-timeline::before {
        left: 20px;
        transform: none;
    }

    .timeline-item,
    .timeline-item--left,
    .timeline-item--right {
        width: 100%;
        margin-left: 0;
        padding-left: 55px;
        padding-right: 0;
    }

    .timeline-item::before {
        left: 11px;
        right: auto;
    }

    .timeline-card {
        width: 100%;
    }

}