.timeline-event {
    padding: 1em;
    border: 2px solid var(--color-orange);
    border-radius: 10px;
    min-height: 150px;
    display: flex;
    align-items: center;
    background: var(--color-black);
    margin-bottom: 1em;
}

.timeline-event h4 {
    font-size: var(--font-size-quinary-heading);
    font-weight: 400;
    font-family: Poppins;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
/*XS Devices 0 - 767px*/
@media only screen and (max-width: 47.9375em) {}

/*Devices 768px in width*/
@media only screen and (min-width: 48em) {}

/*Devices 1024px in width*/
@media only screen and (min-width: 64em) {
    .timeline-block .col-lg-2:after {
        content: '';
        display: block;
        height: 3px;
        background: var(--color-orange);
        position: relative;
        top: -50%;
        right: -18px;
        z-index: -1;
        width: 100%;
    }

    .timeline-block .col-lg-2:last-child::after {
        display: none;
    }
}

/*Devices 1200px+ in width*/
@media only screen and (min-width: 75em) {}