



.timeline > li {
    text-align: center;
    position: relative;
    padding: 0 0 125px 0;
}

.timeline > li::after {
    content: " ";
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: 1px;
    border-left: 1px solid #e9e9e9;
    height: 100%;
    z-index: -1;
}

.timeline > li > span {
    width: 38px;
    height: 29px;
    display: inline-block;
    background: #333333;
    color: #fff;
    line-height: 29px;
    position: relative;
    font-size: 12px;
    font-weight: bold;
}

.timeline > li.start > span {
    background: #fe0202;
    transition: .2s linear .4s;
    -moz-transition: .2s linear .4s;
    -webkit-transition: .2s linear .4s;
    -o-transition: .2s linear .4s;
}

.timeline > li > span::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 1px;
    background: #e9e9e9;
    top: 50%;
}

.timeline > li:nth-child(even) > span::before {
    left: -50px;
}

.timeline > li:nth-child(odd) > span::before {
    right: -50px;
}

.timeline > li > .summary {
    position: absolute;
    right: 50%;
    /* margin-right: 80px; */
    margin-right: 50px;
    text-align: center;
    top: -24%;
    width: 30%;
}

.timeline > li:nth-child(odd) > .summary {
    left: 50%;
    /* margin-left: 80px; */
    margin-left: 50px;
    text-align: center;
}

.timeline > li > .summary > img {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 15px;
}

.timeline > li > .summary h4 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
    line-height: 16px;
    color: #333;
    margin-bottom: 7px;
}

.timeline > li > .summary p {
    color: #939393;
    font-size: 14px;
    line-height: 22px;
}

.timeline > li > .summary-start {
    text-align: center;
    width: 104px;
    height: 104px;
    background: #fe0202;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.timeline > li > .summary-start > img {
    width: 64px;
    height: 64px;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}
