.timeline-wrapper {
    display: flex;
    flex-direction: column;
   align-items: center;
   
}




.timeline {
    margin-left: 8px;
}

.timeline-item {
    /* background-color: lightslategray; */
    position: relative;
    display: flex;
    flex-direction: row;
    border-left: solid 1px slategrey;
    padding-bottom: 64px;
}


.timeline-item:last-child {
    padding: 0;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -8px;
    background-color: #744680;
    border-radius: 50%;

    height: 16px;
    width: 16px;


}


.timeline-item-content {
    margin-left: 24px;

}

.timeline-item-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
   

}


.timeline-item-date {
    font-size: 14px;
    font-weight: 400;
    margin: 8px 0px;
    margin-bottom: 8px;

    color: #9ca3af;
}

.timeline-item-info {
    color:#e5e7eb;
    font-weight: 300;
}



@media screen and (min-width: 768px) {

.timeline {
    max-width: 900px;
    
}
    
}