body {
    font-family: Arial, sans-serif;
    color: #fff;
    background-color: #1b1c21;
    max-width: 100vw;
    margin: 0;
    padding: 20px;
    overflow: hidden;
}

.swiper-container {
    height: auto;
    width: 100%;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    width: 100vw;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    font-size: 18px;
    padding: 60px 20px;
    background: #3a3b42;
    box-sizing: border-box;
    box-shadow: 10px 10px 5px 0px #1b1c21;
}

.timeline {
    width: 100%;
    padding: 60px 20px 20px;
    border-left: 4px solid #5674e8;
    position: relative;
}

.timeline .date {
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content:center;
    align-items: center;
    color: #5674e8;
    font-size: 28px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 2px rgba(86, 115, 232, 0.5);
}

.timeline h2, .timeline p {
    margin: 0 0 10px 0;
    color: #fff;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    z-index: 10;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5674e8;
    font-size: 20px;
}

.swiper-button-next{
    right: 10px;
}

.swiper-button-prev{
    left: 10px;
}