.timeline {
    width: 100%;
    position: relative;
    z-index: 100;
    height: 100%;
}

.timeline-nav {
    z-index: 200;
    width: 100%;
    position: absolute !important;
    top: 78%;
    left: 0;
    right: 0;
    z-index: 100;
    height: 100%;
	/*--
	background-image: url('../story/timeline3.png'); 
	no background-repeat: no-repeat;
	--*/
}


.timeline-nav__item {
    height: auto;
    text-align: center;
    opacity: 0.5;
    background: transparent;
    color: #909294;
    margin: 30px 1px !important;
    position: relative;
    font-size: 1.5em;
    line-height: 28px;
    font-weight: 400;
    outline: none;
    cursor: pointer;
    font-family: 'Sofia Sans Condensed', sans-serif;
    width: 60px !important;

}

.timeline-nav__item::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 35%;
    transform: translateX(-50%);
    transition: 0.2s;
}

.timeline-nav__item.slick-current {
    color: #09c7e4;
    opacity: 1;
}

.timeline-nav__item.slick-current::before {
    content: "\25bc";
}

.timeline-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

@media (max-width: 500px) {
    .timeline-wrapper {
        height: 1000px;
        max-height: 900px;
    }
}

.timeline-slider {
    height: 100%;
}

.timeline .slick-list {
    height: 100%;
}

/* 
@media (min-width: 1080px) {
    .timeline .slick-list {
        padding: 0 180px !important;
    }
} */

.timeline .slick-track {
    height: 100%;
}

.timeline-slide {
    position: relative;
}

.timeline-slide:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* .timeline-slide__content {
    z-index: 5;
    position: absolute;
    top: 220px;
    background: #ffffff;
    width: 80%;
    left: 50%;
    transform: translate(-50%, 0px);
    padding: 40px;
    opacity: 0;
    transition: opacity 1s;
} */

@media (max-width: 500px) {
    .timeline-slide__content {
        width: 100%;
    }
}

.timeline-year {
    z-index: 5;
    font-size: 35px;
    color: #ffffff;
    background: #ff9900;
    padding: 15px 26px;
    transition: opacity 1.2s;
    position: absolute;
    right: 0;
    opacity: 0;
}

.timeline-title {
    color: #ff9900;
    font-size: 26px;
    line-height: 30px;
    font-weight: 400;
}

.timeline-text {
    font-size: 18px;
    line-height: 28px;
    color: #666666;
}


.timeline .slick-current .timeline-year {
    opacity: 1;
}

.timeline .slick-current .timeline-slide__content {
    opacity: 1;
}

.timeline .slick-current .year {
    opacity: 1;
}

.timeline-nav__item .started {
    /* Rotate from top left corner (not default) */
    transform-origin: 0 0;
    transform: rotate(90deg);
}


.slick-current .year {
    visibility: hidden;
    position: relative;

}

.slick-current .year::before {
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
    content: attr(data-year);

}