*{
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

html{
	font-size: 10px;
}

body{background-color: #000

}

a {
	text-decoration: none

}

a:link {
	color: #ccc

}

a:hover {
	color: #fff;

}

a:visited 

.download {

}



.download-text{
	max-width: 50%;
	position: absolute;
	z-index: 1000;
	top:50%;
	left: 0%;
	transform: translateY(-50%);
	background-color: rgba(25,126,200,1.00);
	color: #fff;
	padding:1rem		
	
		
}


.download-text p{
	font-size: 1.2rem;
	font-family: "Helvetica", sans-serif;
	letter-spacing: 1.2px;
	font-weight: 200;
	
	
}

.slideshow{
	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
	
}

.slideshow-item {
	width: inherit;
	height: inherit;
	position: absolute;
	opacity: 0;
	animation: cycleImages 61s infinite;

	}



.slideshow-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: zoom 61s infinite;
	
	
}

.slideshow-item:nth-child(1),
.slideshow-item:nth-child(1) img{
	animation-delay: 0s;
	
}

.slideshow-item:nth-child(2),
.slideshow-item:nth-child(2) img{
	animation-delay: 10s;
	
}

.slideshow-item:nth-child(3),
.slideshow-item:nth-child(3) img{
	animation-delay: 20s;
	
}

.slideshow-item:nth-child(4),
.slideshow-item:nth-child(4) img{
	animation-delay: 30s;
	
}

.slideshow-item:nth-child(5),
.slideshow-item:nth-child(5) img{
	animation-delay: 40s;
	
}

.slideshow-item:nth-child(6),
.slideshow-item:nth-child(6) img{
	animation-delay: 50s;
	an
	
}







.slideshow-item-text{
	max-width: 50%;
	position: absolute;
	top: 90%;
	left: 0%;
	transform: translateY(-50%);
	background-color: rgba(0,0,0,.8);
	color: #fff;
	padding:.3rem 2rem 1rem	
	
		
}

.slideshow-item-text h5{
	font-size: 2.5rem;
	font-family: "Catamaran", "sans-serif";
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: .1rem;
	
	
}
	

.slideshow-item-text p{
	font-size: 1.5rem;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 1.2px;
	font-weight: 300	
	
}

@keyframes cycleImages {
	
	10% {
		opacity: 1;
	}
	
	39% {
		opacity: 1;
	}

	40% {
		opacity: 0;
	}
	
	
}

@keyframes zoom {
	
	100% {
		transform: scale(1.4);
	}
}

@media screen and (max-width: 1000px){
	
	.slideshow-item-text{
		max-width: 70%;
		padding:.2rem 1rem 1rem
	}
	.slideshow-item-text h5 {
		font-size: 2.5rem;
	}
	
}

@media screen and (max-width: 767px){
	
	.slideshow-item-text{
		min-width: 100%;
		padding:2rem;
		position: absolute;
		left: 0;
		top: initial;
		bottom: 0;
		transform: initial;
	}
	.slideshow-item-text h5 {
		font-size: 2rem;
	
	}
	
	.slideshow-item-text p {
		font-size: 1.5rem;
	}
	
}



	