/* Timeline */
.timeline {
    position: relative;
}

.timeline-item {
    padding-left: 40px;
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #0d6efd;
    border-radius: 50%;
    border: 3px solid white;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 8px;
    top: 20px;
    width: 2px;
    height: 100%;
    background: #0d6efd;
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-item h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-item small {
    color: #0d6efd;
    font-weight: 600;
}
