.cb-slideshow,
.cb-slideshow:after { 
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0; 
}
/*
.cb-slideshow:after { 
    content: '';
    background: transparent url(../images/pattern.png) repeat top left; 
}
.cb-slideshow:after {
	content: '';
	background: rgba(0,0,0,0.3);
}*/
.cb-slideshow li span { 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
	-webkit-animation-name: imageAnimation;
    -webkit-animation-duration: 6s;
	-webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
}
.cb-slideshow li div { 
    z-index: 1000;
    position: absolute;
	bottom: 0;
	padding: 40px 20px 40px 40px;
    width: 95%;
    text-align: left;
    opacity: 0;
    color: #fff;
	-webkit-animation-name: titleAnimation;
    -webkit-animation-duration: 5s;
	-webkit-animation-timing-function: ease-in-out 0.5s;
    -webkit-animation-iteration-count: 1;
}
.cb-slideshow li div h3 { 
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif !important;
    font-size: 60px;
    padding: 0;
    line-height: 60px; 
	text-transform: uppercase;
}
/*
.cb-slideshow li:nth-child(1) span { 
    background: url(../videos/opening.mp4) 
}*/
.cb-slideshow li:nth-child(2) span { 
    background-image: url(../images/2.jpg);
    -webkit-animation-delay: 5s;
}
.cb-slideshow li:nth-child(3) span { 
    background-image: url(../images/3.jpg);
    -webkit-animation-delay: 9s;
}
.cb-slideshow li:nth-child(4) span { 
    background-image: url(../images/4.jpg);
    -webkit-animation-delay: 14s;
}
.cb-slideshow li:nth-child(5) span { 
    background-image: url(../images/5.jpg);
    -webkit-animation-delay: 19s;
}
.cb-slideshow li:nth-child(6) span { 
    background-image: url(../images/6.jpg);
    -webkit-animation-delay: 24s;
}
.cb-slideshow li:nth-child(7) span { 
    background-image: url(../images/7.jpg);
    -webkit-animation-delay: 29s;
	-webkit-animation-fill-mode: forwards;
}
.cb-slideshow li:nth-child(2) div { 
    -webkit-animation-delay: 5s;
}
.cb-slideshow li:nth-child(3) div { 
    -webkit-animation-delay: 9s;
}
.cb-slideshow li:nth-child(4) div { 
    -webkit-animation-delay: 14s;
}
.cb-slideshow li:nth-child(5) div { 
    -webkit-animation-delay: 19s;
}
.cb-slideshow li:nth-child(6) div { 
    -webkit-animation-delay: 24s;
}
.cb-slideshow li:nth-child(7) div { 
    -webkit-animation-delay: 29s;
	-webkit-animation-fill-mode: forwards;
}
/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation { 
    0% { opacity: 0 }
	17% { opacity: 1}
    100% { opacity: 1 }
}
/* Animation for the title */
@-webkit-keyframes titleAnimation { 
    0% { opacity: 0 }
	17% { opacity: 1}
    100% { opacity: 1 }
}
/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}
/* container animation */

@keyframes fadeIn {
    0% { opacity: 0 }
    100% { opacity: 1 }
}
@-webkit-keyframes fadeIn {
    0% { opacity: 0 }
    100% { opacity: 1 }
}

@keyframes skipFadeIn {
    0% { opacity: 0 }
	40% { opacity: 1 }
    100% { opacity: 1 }
}
@-webkit-keyframes skipFadeIn {
    0% { opacity: 0 }
	40% { opacity: 1 }
    100% { opacity: 1 }
}

.container {
	-webkit-animation-name: fadeIn;
    -webkit-animation-duration: 3s;
    -webkit-animation-delay: 30s;
	opacity: 0;
	-webkit-animation-fill-mode: forwards;
}

.skip {
	-webkit-animation-name: fadeIn;
    -webkit-animation-duration: 3s;
    -webkit-animation-delay: 10s;
	opacity: 0;
	-webkit-animation-fill-mode: forwards;
}



@media screen and (max-device-width: 900px) { 
    .cb-slideshow li div h3 { font-size: 50px; text-transform: uppercase; }
    
	.cb-slideshow li:nth-child(1) span { 
        background-image: url(../images/1.jpg);
    }
	
	.cb-slideshow li:nth-child(1) span video {
		display: none;
	}
}