/* =========================================
   TIMELINE
========================================= */

.journey-timeline {
    position: relative;

    max-width: 1100px;

    margin: auto;
}

/* Center Line */

.journey-timeline::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 40px;

    width: 2px;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05),
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.05)
    );
}
