@charset "utf-8";
* { padding: 0; margin: 0; }
.cb-slideshow,
.cb-slideshow:after { 
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0; 
	list-style: none;
}
.cb-slideshow:after { 
    content: '';
    background: transparent url(../images/pattern.png) repeat top left; 
}
.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 40s linear infinite 0s; 
}
.cb-slideshow li div { 
    z-index: 1000;
    position: absolute;
    bottom: 50px;
    left: 0px;
    width: 100%;
    text-align: center;
    color: #666666;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-size: 14px;
}

.portrait { display: none; }

.cb-slideshow li div img { width: 35%; margin-bottom: 15px;}

.cb-slideshow li:nth-child(1) span { 
    background-image: url(images/header1.jpg) 
}
.cb-slideshow li:nth-child(2) span { 
    background-image: url(images/header4.jpg);
    animation-delay: 10s; 
}
.cb-slideshow li:nth-child(3) span { 
    background-image: url(images/header2.jpg);
    animation-delay: 20s; 
}
.cb-slideshow li:nth-child(4) span { 
    background-image: url(images/header3.jpg);
    animation-delay: 30s; 
}

@keyframes imageAnimation { 
    0% { opacity: 0; animation-timing-function: ease-in; }
    5% { opacity: 1; animation-timing-function: ease-out; }
    25% { opacity: 1 }
    35% { opacity: 0 }
    100% { opacity: 0 }
}
.no-cssanimations .cb-slideshow li span{
	opacity: 1;
}

@media screen and (max-width: 600px) { 
	.cb-slideshow li div img { width: 80%; margin-bottom: 15px;}

	.cb-slideshow li div { 
    bottom: 20px;
    left: 0px;
    width: 100%;
    text-align: center;
    color: #666666;
	font-family: 'Poppins', sans-serif;
	font-weight: 300;
	font-size: 13px;
}
	.horizontal { display: none; }	
	.portrait { display: contents; }
	.cb-slideshow li:nth-child(1) span { 
    background-image: url(images/header1-port.jpg) 
}
.cb-slideshow li:nth-child(2) span { 
    background-image: url(images/header4-port.jpg);
    animation-delay: 10s; 
}
.cb-slideshow li:nth-child(3) span { 
    background-image: url(images/header2-port.jpg);
    animation-delay: 20s; 
}
.cb-slideshow li:nth-child(4) span { 
    background-image: url(images/header3-port.jpg);
    animation-delay: 30s; 
}
}