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

html{
	font-size: 10px;
}

body{background-color: #000

}






#header-logo img {
    z-index:1000;
    position: absolute;
    left: 20px;
    top: 12px;
	color: #000;
	/*filter: invert(100%);
    filter: drop-shadow(1px 1px 1px #555);*/
             }


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

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

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

}
	
	

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

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

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

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

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

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

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

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



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

.slideshow-item-text h5{
	font-size: 2.5rem;
	font-family: 'Roboto', sans-serif;
	letter-spacing: 1px;
	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;
	}
	

	25% {
		opacity: 0;
		
	}
	
	
}

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


@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;
	}
    
    #header-logo img {

    left: 2px;
    top: 12px;
    transform: scale(.9)    
    }


	
}



	