.timeline-slider {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.timeline-slider .slider-item {
    padding: 20px;
    text-align: center;
    position: relative;
  
    margin: 0 10px;
}

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

.timeline-year {
    font-size: 24px;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
}

.even .timeline-description {
    height: 60px;
    align-content: end;
}

.timeline-year {
    height: 60px;
}

.odd .timeline-description {
    height: 60px;
    align-content: start;
}

.timeline-svg {
    margin: 10px 0;
    margin-left: auto;
    margin-right: auto;
}

.timeline-slider .slider-item svg {
    position: relative;
}

.timeline-description {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-slider .slider-item::after {
        content: '';
        position: absolute;
        bottom: 50%;
        left: 100%;
        transform: translateX(-50%);
        width: calc(100% - 20px);
        height: 2px;
        width: 80%;
        background-color: black;
        z-index: 99;
    }

@media (min-width: 1024px) {
   .timeline-slider .slider-inner {
        flex-direction: row;
    }
}

@media (max-width: 1023px) {
   .timeline-slider .slider-inner {
        display: block;
    }
}
