body {
    margin:  0;
    border-radius: 20px;
    overflow: hidden;
}

/* http://codepen.io/ebellempire/pen/rnvEK */
.blur {
    -webkit-filter: blur(40px); /* Prefixed CSS3 blur filters */
       -moz-filter: blur(40px);
        -ms-filter: blur(40px);
         -o-filter: blur(40px);
            filter: blur(40px); /* Someday, sigh ... */
    filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='20');
}

.items {
    width: 100%;
    height: 100%;
    position: absolute;
    white-space: nowrap;
    overflow: hidden;
}

.item {
    position: absolute;
    height:100%;
    width:100%;
    vertical-align: top;
    display: none;
}

.item.current {
    display: inline-block;
}

.item .body {
    height: 100%;
    text-align: center;
}

.item .img-holder {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}
.item .img-holder img {
    height: 100%;
    background-color:rgba(255,255,255,.8);
}

.background-image {
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;

  -webkit-transform: scale(1.5);  /* Saf3.1+, Chrome */
     -moz-transform: scale(1.5);  /* FF3.5+ */
      -ms-transform: scale(1.5);  /* IE9 */
       -o-transform: scale(1.5);  /* Opera 10.5+ */
          transform: scale(1.5);
}

/* http://www.colorzilla.com/gradient-editor/ */
.top-shadow {
    position: absolute;
    width: 100%;
    height: 25px;
    z-index: 2;
    top:0;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.4)), color-stop(100%,rgba(0,0,0,0))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(0,0,0,0.4) 0%,rgba(0,0,0,0) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}

.bottom-shadow {
    position: absolute;
    width: 100%;
    height: 25px;
    z-index: 2;
    bottom:0;
    background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.4))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.4) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#66000000',GradientType=0 ); /* IE6-9 */
}

.item video, .item-embed video {
  width: 100%;
}

.video-container {
    width: 100%;
    position: relative;
}

.video-container video {
  max-width: 100%;
}

video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
}

.caption, .embed-caption {
    background-color:white;
    font-size: 1.25em;
    line-height: 1.25em;
    margin: 0;
    padding: 6px 12px;
    font-family: Brown Light;
    word-wrap: break-word;
    white-space: pre-wrap;
    width: 100%;
    display: block;
}
p .embed-caption a {
    color: #000000 !important;
}
.video-caption {
    display: none;
}
.play-button-back {
    height: 85px;
    width: 85px;
    border: none;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.50);
    border-color: white;
    border-width: 2px;
    border-style: solid;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    opacity: .75;
-webkit-transition: opacity .3s;
   -moz-transition: opacity .3s;
     -o-transition: opacity .3s;
        transition: opacity .3s;
}
.play-button-back {
    pointer-events: none;
}
.play-button-back:hover {
    opacity: 1;
}
.play-triangle {
    width : 0;
    height : 0;
    border-top: 13px solid rgba(255, 255, 255, 0);
    border-bottom: 13px solid rgba(255, 255, 255, 0);
    border-left: 26px solid white;
    margin : auto;
    position : absolute;
    top : 0;
    bottom : 0;
    right : 0;
    left : 8px;
    transform : scale(.9999)
}