.cb-slideshow,
.cb-slideshow:after { 
	position: relative;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px !important;
	z-index: 0;
	background-size: cover;
	background-position: top left;
}
.cb-slideshow:after { 
	content: '';
	background: transparent; 
}

.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;
	animation: imageAnimation 90s linear infinite 0s; 
}

.cb-slideshow li div { 
	z-index: 1000;
	position: absolute;
	bottom: 30px;
	left: 0px;
	width: 100%;
	text-align: center;
	opacity: 0;
	color: #fff;
	animation: titleAnimation 90s linear infinite 0s; 
}
.cb-slideshow li div h3 { 
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	font-size: 240px;
	padding: 0;
	line-height: 200px; 
}

.cb-slideshow li:nth-child(2) div { 
	animation-delay: 15s; 
}
.cb-slideshow li:nth-child(3) div { 
	animation-delay: 30s; 
}
.cb-slideshow li:nth-child(4) div { 
	animation-delay: 45s; 
}
.cb-slideshow li:nth-child(5) div { 
	animation-delay: 60s; 
}
.cb-slideshow li:nth-child(6) div { 
	animation-delay: 75s; 
}

@keyframes imageAnimation { 
	0% { opacity: 0; animation-timing-function: ease-in; }
	2% { opacity: 1; animation-timing-function: ease-out; }
	23% { opacity: 1 }
	25% { opacity: 0 }
	100% { opacity: 0 }
}

@keyframes titleAnimation { 
	0% { opacity: 0 }
	2% { opacity: 1 }
	23% { opacity: 1 }
	19% { opacity: 0 }
	100% { opacity: 0 }
}

.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}

@media screen and (max-width: 1140px) { 
	.cb-slideshow li div h3 { font-size: 140px }
}
@media screen and (max-width: 600px) { 
	.cb-slideshow li div h3 { font-size: 80px }
}