
.timeline-items{
    max-width: 90%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.timeline-items::before{
    content: ' ';
    position: absolute;
    width: 0.6px;
    height: 100%;
    background-color: black;
}

.timeline-item{
    width: 100%;
    margin-bottom: 40px;
    position: relative;
}

.timeline-content {
    width: 100%;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.timeline-dot{
    height: 16px;
    width: 16px;
    border-radius: 50%;
    position: absolute;
    left: -8px;
}

.timeline-content p{
    width: fit-content;
    overflow-wrap: break-word;
}

.timeline-content h6{
    width: fit-content;
    overflow-wrap: break-word;
}