/* Timeline Container */
.timeline-container {
    text-align: center;
    color: #fff;
    padding: 30px;
    overflow-x: auto;
}

.timeline-container h2 {
    font-size: 24px;
    margin-bottom: 40px;
}

/* Timeline Wrapper */
.timeline-wrapper {
    display: flex;
    /* align-items: center; */
    position: relative;
    gap: 30px;
        width: 1080px;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.timeline-item .timeline-content{
    order: 3;
}
.timeline-item:nth-child(odd) .timeline-year{
    padding-bottom: 70px;
    position:relative;
}
.timeline-item:nth-child(odd) .timeline-year:before{content: "";position: absolute;width: 2px;background-color: #fff;height: 60px;left: calc(50% - 1px);bottom: 0px;}
.timeline-item:nth-child(odd) .timeline-year:after{content: "";position: absolute;width: 20px;background-color: #fff;border-radius: 100%;height: 20px;left: calc(50% - 10px);bottom: -18px;

}
.timeline-item:nth-child(odd) .timeline-image{
    margin-top: 20px;
}
.timeline-item:nth-child(even) .timeline-year{
    order: 2;
}
.timeline-item:nth-child(even) .timeline-image{
    order: 1;
}

.timeline-item:nth-child(even) .timeline-year{
    padding-top: 70px;
    position:relative;
    margin-top: 14px;
}
.timeline-item:nth-child(even) .timeline-year:after{content: "";position: absolute;width: 2px;background-color: #fff;height: 60px;left: calc(50% - 1px);top: 0px;}
.timeline-item:nth-child(even) .timeline-year:before{content: "";position: absolute;width: 20px;background-color: #fff;border-radius: 100%;height: 20px;left: calc(50% - 10px);top: -10px;}


.timeline-year {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.timeline-content {padding: 0px 15px;color: #fff;}

.timeline-image img {
    max-width: 100%;
    margin-bottom: 10px;
    width: 145px;
}

.timeline-content p {
    font-size: 14px;
}

/* Timeline Central Line */
.timeline-wrapper:before {
    content: "";
    position: absolute;
    top: 113px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #fff;
    z-index: -1;
}

/* Arrows */
.timeline-container::after,
.timeline-container::before {
    content: "←";
    font-size: 25px;
    font-weight: bold;
    position: absolute;
    top: 223.5px;
    color: #fff;
    z-index: 10;
    cursor: pointer;
}

.timeline-container::before {
    content: "→";
    right: 92px;
    transform: translateY(-50%);
}

.timeline-container::after {
    left: 35px;
    top: 201.9px;
    /* transform: translateY(-50%) rotate(180deg); */
}
@media(max-width: 610px){
    .timeline-container::after {
        left: 20px;
        top: 231.9px;
    }
    .timeline-container::before {
        top: 252.5px;
        right: 0;
    }
}