@charset "UTF-8";
.timeline-container {
    position: relative
}

.timeline-container::after {
    content: '';
    display: initial;
    clear: both;
}

.timeline-list {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.timeline-list-wrap {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    transform: translate3d(0, 0, 0);
    transition: transform 1s cubic-bezier(.455, .03, .515, .955)
}

.timeline-item {
    float: left;
    box-sizing: border-box
}

.timeline-dots-wrap {
    position: relative;
    overflow: hidden;
    bottom: -80px;
}

.timeline-horizontal .timeline-dots-wrap {
    width: 100%;
    height: 150px;
}

.timeline-vertical .timeline-dots-wrap {
    width: 65px;
    height: 100%;
    top: 0
}

.timeline-dots-wrap.bottom {
    bottom: -90px
}

.timeline-dots-wrap.top {
    top: -50px
}

.timeline-dots-wrap.left {
    left: -65px
}

.timeline-dots-wrap.right {
    right: -70px
}

.timeline-dots {
    margin: 30px 0 0 0;
    padding: 0;
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-out;
}

.timeline-horizontal .timeline-dots {
    background: url(../img/timeline-bg.png) bottom repeat-x
}

.timeline-vertical .timeline-dots {
    background: url(../img/timeline-vertical-bg.png) left repeat-y
}

.timeline-dots button, .timeline-dots li {
    transition: all .15s ease-out;
}

.timeline-dots li {
    list-style: none;
    overflow: unset;
}

.timeline-horizontal .timeline-dots li {
    float: left;
    width: 80px;
    text-align: center
}

.timeline-vertical .timeline-dots li {
    width: 100%
}

.timeline-dots li.slide-active button {
    color: #2972ca;
    font-size: 23px;
    transform: translateY(-10px);
}

.timeline-dots button {
    cursor: pointer;
    border: none;
    outline: none;
    color: #333;
    font-size: 15px
}

.timeline-horizontal .timeline-dots button {
    content: '>';
    background: url(../img/date-icon.png) bottom no-repeat;
    padding-bottom: 15px
}

.timeline-vertical .timeline-dots button {
    background: url(../img/date-icon-vertical.png) left no-repeat;
    padding-left: 15px
}

.timeline-container {
    width: 950px;
    margin: 0 auto
}

.timeline-list {
    width: 950px;
}

.timeline-item {
    max-width: 950px;
    width: 100%;
    height: 400px;
    padding: 10px;
    /*border: 1px solid #ddd*/
}

@media screen and (max-width: 955px) {
    .timeline-list {
        width: 380px;
    }

    .timeline-container {
        width: 380px;
    }

    .timeline-item {
        max-width: 380px;
        height: 650px;
    }

    .timeline-dots-wrap {
        position: relative;
        /*overflow: hidden;*/
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .timeline-dots-wrap.bottom {
        bottom: unset
    }

    .timeline-dots-wrap.top {
        top: unset
    }

    .timeline-dots-wrap.left {
        left: unset
    }

    .timeline-dots-wrap.right {
        right: unset
    }
}

@media screen and (max-width: 380px) {
    .timeline-list {
        width: 320px;
    }

    .timeline-container {
        width: 320px;
    }

    .timeline-item {
        max-width: 320px;

    }
}