
.slider {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;

    min-height: 100%;
    box-sizing:border-box;


    position: relative;

    background-color: #242424;

    color: #fff;
    text-align: center;
    font-size: 14px;
}
.slider:before {
    content: '';
    display: block;

    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 20;

    background-color: rgba(0,0,0,0.4);
}

.slider a {
    color: inherit;
}


.slider .back {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


.slider .slides {
    width: 100%;
    max-width: 600px;

    white-space: nowrap;
    overflow: hidden;
    position: relative;
    z-index: 30;
    
    font-size: 0;
    flex-shrink: 0;
}
.slider .slide {
    display: inline-block;
    width: 100%;

    vertical-align: middle;
    font-size: 14px;
}
.slider .slide .title {
    display: block;
}
.slider .slide .desc-top {
    display: block;
    font-size: 1.3em;
    white-space: normal;
    padding-left: 15px;
    padding-right: 15px;
}
.title + .desc-top {
    margin-top: -40px;
    margin-bottom: 40px;
}

a.scroll {
    display: block;
}

.slider .thumbs {
    padding: 40px;
    margin: 0;
    flex-shrink: 0;

    list-style: none;
    white-space: nowrap;
    font-size: 0;
    position: relative;
    z-index: 30;
}
.slider .thumbs li {
    height: 10px;
    width: 10px;
    margin-left: 5px;
    margin-right: 5px;
    
    display: inline-block;

    background-color: #fff;
    opacity: .52;
    border-radius: 50%;

    cursor: pointer;
}
.slider .thumbs li.current {
    opacity: 1;
}


/* --------------------------------------------------
    
    FULL WIDTH
    
-------------------------------------------------- */


.slider-fullscreen {
    padding-top: 105px;
    padding-bottom: 105px;
    margin-bottom: 70px;
}
.slider-fullscreen .slide .sup-title{
    display: block;
    margin-bottom: 1.5789em;
    color: #fff;
    font-size: 2.71428em;
    line-height: 2.71428em;
}
.slider-fullscreen .slide .moment {
    display: inline-block;
    padding: 15px;
    margin-bottom: 6.6666em;

    font-size: 0.8571em;
    line-height: 0.8571em;

    color: #FFF;
    letter-spacing: 1px;
    text-transform: uppercase;

    background-color: #ff2424;
    border: none;
}
.slider-fullscreen .slide .title {
    padding-bottom: 1.5789em;
    white-space: normal;

    font-size: 2.71428em;
    line-height: 1.31578em;
}


@media only screen and (max-width:600px) {
    .slider-fullscreen {
        min-height: auto;
    }
}



