.slider-timeline {
    padding-bottom: 56px;
    padding-top: 56px;
    background: var(--accent-1);
    color: var(--white);
    overflow: hidden;
}

@media screen and (min-width: 992px) {
    .slider-timeline {
        padding-bottom: 96px;
        padding-top: 96px;
    }
}

.slider-timeline--navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transform: translateY(calc(-50% - 4px));
    z-index: 9;
    position: relative;
}

.slider-timeline .timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 24px;
    padding-bottom: 40px;
    border-left: 1px solid var(--white);
}

.slider-timeline .timeline-item::after,
.slider-timeline .timeline-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    left: -4px;
    top: -4px;
}

.slider-timeline .timeline-item::after {
    top: auto;
    bottom: -4px;
}

@media screen and (min-width: 992px) {
    .slider-timeline .timeline-item {
        flex-direction: row;
        gap: 64px;
        padding-left: 40px;
        padding-bottom: 92px;
    }
}

.slider-timeline .timeline-item--image {
    height: 200px;
    width: 100%;
    max-width: 280px;
    flex-shrink: 0;
}

@media screen and (min-width: 992px) {
    .slider-timeline .timeline-item--image {
        align-self: flex-end;
    }
}

.slider-timeline .timeline-item--image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 16px;
}

.slider-timeline .timeline-item p {
    font-family: var(--roboto);
    font-size: 1rem;
    font-style: normal;
    font-weight: 300;
    line-height: 170%;
    motion-path: 24px;
}

@media screen and (min-width: 992px) {
    .slider-timeline .timeline-item p {
        margin-top: 32px;
    }
}

.slider-timeline .timeline-item .date {
    font-family: var(--aileron);
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    font-weight: 400;
    margin-bottom: 8px;
    margin-top: 0;
}

@media screen and (min-width: 992px) {
    .slider-timeline .timeline-item .date {
        font-size: 3.5rem;
    }
}

.slider-timeline .timeline-item h4 {
    margin-bottom: 24px;
}

.slider-timeline .owl-item {
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: opacity .3s ease;
}

.slider-timeline .owl-item:not(.bordered) {
    opacity: .3;
}

.slider-timeline .owl-item::after {
    background: transparent;
    transition: background 1s;
}

.slider-timeline .owl-item.active {
    opacity: 1;
}

.slider-timeline .owl-item.bordered {
    position: relative;
}

.slider-timeline .owl-item.bordered::after {
    content: "";
    height: 1px;
    position: absolute;
    bottom: 4px;
    left: 0;
    width: calc(100% + 48px);
    background: white;
}

@media screen and (min-width: 1296px) {
    .slider-timeline .owl-item.bordered::after {
        width: calc(100% + 120px);
    }
}

.slider-timeline .owl-stage {
    display: flex;
    align-items: flex-end;
}

.slider-timeline .owl-stage-outer {
    position: relative;
}

.slider-timeline .owl-stage-outer::before {
    content: '';
    height: 1px;
    background: var(--accent-2);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 4px;
}

.slider-timeline .owl-carousel .owl-stage-outer {
    overflow: visible;
}

@media screen and (min-width: 1296px) {
    .slider-timeline .owl-carousel .owl-stage-outer {
        margin-left: -200px !important;
    }
}