
.timeline {
    position: relative;
    margin: 0 auto;
  }
  
.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #333;
    top: 0;
    bottom: 0;
    left: 31px;
    margin-left: -3px;
}

/* Container around content */
.timeline-container {
    left: 0%;
    padding-left: 70px;
    padding-right: 25px;
    margin-bottom: 10px;
    position: relative;
    background-color: inherit;
}

/* The circles on the timeline */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    left: 15px;
    background-color: #333;
    border: 4px solid #333;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

/* .timeline-container::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 60px;
    border: medium solid #333;
    border-width: 10px 10px 10px 0;
    border-color: transparent #333 transparent transparent;
} */

/* The actual content */
.timeline-content {
    padding: 20px 30px;
    /* background-color: #333;
    color: #ddd; */
    position: relative;
    border-radius: 6px;
}