.timeline {
    max-height: 600px;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 600px;
}

.swiper-slide {
    background-size: contain;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    color: #fff;
    height: 100%;
}

.swiper-slide-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
}

.timeline-year {
    font-weight: bold;
    font-size: 1.2em;
    display: block;
}

.timeline-title {
    font-size: 1.5em;
}
.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;         /* Vertical center */
    justify-content: center;     /* Horizontal center */
    padding: 20px;
    color: #fff;
    height: 100%;
}

.swiper-slide-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 80%;
}

.timeline-year {
    font-weight: bold;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 2rem;
    margin: 0;
}
@media(max-width:480px;){
	.timeline {
    max-height: 300px;
    overflow: hidden;
}
.swiper-container {
    width: 100%;
    height: 300px;
}

}