/* Global */
.banner-block { position: relative; }
.banner-sequence {
    position: relative;
    width: 100%;
    height: 500px;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
}

.banner-sequence .seq-canvas,
.banner-sequence .seq-canvas .slide { margin: 0; padding: 0; list-style: none; }

.banner-sequence .seq-canvas {
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    white-space: nowrap;
}

/* Slides */
.banner-sequence .seq-canvas .slide {
    position: absolute;
    display: block;
    vertical-align: top;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 1;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

.banner-sequence .seq-canvas .seq-in { opacity: 1; }

.banner-sequence .seq-canvas .slide .caption {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-property: opacity, left, top;
    transition-property: opacity, left, top;
}

.banner-sequence .seq-canvas .slide .caption.light { color: #555; }
.banner-sequence .seq-canvas .slide .caption.dark { color: #fff; }

.banner-sequence .seq-canvas .slide .title-left-to-right-animate { left: -100%; }
.banner-sequence .seq-canvas .seq-in .title-left-to-right-animate { left: 0%; -webkit-transition-delay: 1s; transition-delay: 1s; }
.banner-sequence .seq-canvas .seq-out .title-left-to-right-animate { left: 100%; }

.banner-sequence .seq-canvas .slide .title-right-to-left-animate { left: 100%; }
.banner-sequence .seq-canvas .seq-in .title-right-to-left-animate { left: 0%; -webkit-transition-delay: 1s; transition-delay: 1s; }
.banner-sequence .seq-canvas .seq-out .title-right-to-left-animate { left: -100%; }

.banner-sequence .seq-canvas .slide .title-from-top-animate { top: -100%; }
.banner-sequence .seq-canvas .seq-in .title-from-top-animate { top: 0%; -webkit-transition-delay: 1s; transition-delay: 1s; }
.banner-sequence .seq-canvas .seq-out .title-from-top-animate { top: 100%; }

.banner-sequence .seq-canvas .slide .title-from-bottom-animate { top: 100%; }
.banner-sequence .seq-canvas .seq-in .title-from-bottom-animate { top: 0%; -webkit-transition-delay: 1s; transition-delay: 1s; }
.banner-sequence .seq-canvas .seq-out .title-from-bottom-animate { top: -100%; }

.banner-sequence .seq-canvas .slide .bgimg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    opacity: 0;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    z-index: 1;
}

.banner-sequence .seq-canvas .seq-in .bgimg { opacity: 1; }
.banner-sequence .seq-canvas .seq-out .bgimg { opacity: 1; -webkit-transition-duration: 0s; transition-duration: 0s; }

.banner-block .controls,
.banner-block .controls .control-btn { list-style: none; margin: 0; padding: 0; }
.banner-block .controls .control-btn {
    position: absolute;
    top: 0;
    bottom: 0;
}
.banner-block .controls .prev { left: 0; }
.banner-block .controls .next { right: 0; }
.banner-block .controls .control-btn > span {
    font-size: 1.5em;
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    position: absolute;
    top: 50%;
    margin-top: -0.75em;
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
    border-radius: 0.75em;
    cursor: pointer;
}
.banner-block .controls .prev > span { left: 0; }
.banner-block .controls .next > span { right: 0; }

.banner-block .nav {
    background-color: transparent;
    bottom: 0;
    left: 0;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 999;
}
.banner-block .nav li {
margin: 10px 2px 5px 2px;
padding: 0;
line-height: 1;
display: inline-block;
zoom: 1;
*display: inline;
}
.banner-block .nav li a {
width: 10px;
height: 10px;
display: block;
background: #ddd;
cursor: pointer;
text-indent: 9999px;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
overflow: hidden;
padding: 0;
}
.banner-block .nav li a:hover { background: #000 }
.banner-block .nav li a.active {
background: #000;
cursor: default;
}