.timeline-slider-wrapper {
    position: relative;
    /*padding: 0 50px;*/
}

.timeline-slider-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 120px;
    height: 2px;
    background-color: #57bdbd29;
    z-index: 0;
}

.timeline-slider-container {
    overflow: hidden;
}

.swiper-slide {
    text-align: center;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background-color: rgba(87 189 189 / 20%);
    z-index: 1;
}

.timeline-icon-wrapper {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(87 189 189 / 20%);
    position: relative;
    z-index: 2;
}

.timeline-icon-wrapper i {
    font-size: 40px;
    color: #005f82;
}

.timeline-item-number {
    margin-top: 55px;
    font-size: 24px;
    font-weight: bold;
    color: #005f82;
    margin-bottom: 10px;
}

.timeline-item-text {
    font-size: 16px;
    color: #636363;
    max-width: 220px;
    margin: 0 auto;
}

.swiper-button-next,
.swiper-button-prev {
    color: #005f82;
    top: 110px;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    .timeline-slider-wrapper {
        padding: 0 15px;
    }
}