@import url("https://use.typekit.net/gkj5krz.css");


body{
	margin:0;
	padding:0;
	font-family: brandon-grotesque, sans-serif;
	max-width: 100%;
	background-color: #000;
	color: #fff;
	font-size: 17px;
}

div{
	margin:0;
	padding:0;
}

a{
	text-decoration: none;
	color:#fff;
}

ul, li, a, img{
	padding:0;
	margin:0;
}

h1,h2,h3{
	text-transform: uppercase;
	margin-top:0;
}

strong{
		text-transform: uppercase;
}

.clear{
	clear: both;
}

.frontpage{
	background-position: center center;
	background-attachment: fixed;
  	background-repeat: no-repeat;
  	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	color:#fff;
}


.fullscreen{
	width: 100vw;
	max-width: 100%;
}

.header{
	position:fixed;
	top:0;
	padding:15px;
	z-index: 998;
	clear: both;
	text-align: center;
	text-transform: uppercase;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.not-front .header{
	position:fixed;
	top:0;
	padding:15px;
	z-index: 998;
	clear: both;
	text-align: center;
	text-transform: uppercase;
	display: flex;
	flex-direction: row;
	align-items: center;
	background-color: #000;
}

.logo_wrapper{
	max-width: 100%;
}

.logo_wrapper a{
	display: block;
}

.logo_wrapper a img{
	display: block;
	width: 339px;
	max-width: 100%;
}

.menu_wrapper{
	width: 70%;
	max-width: 100%;
	display: flex;
	justify-content: center;
}

.menu_wrapper ul li{
	list-style: none;
	display: inline;
}

.menu_wrapper ul li a{
	color:#fff;
	padding:0 15px;
	font-size: 21px;
	line-height: 21px;
}


.main{
	margin:100px auto 0 auto;
	padding:30px 0;
	width:800px;
	max-width: 100%;
}

.musik_wrapper{
	display: block;
	clear: both;
	margin-bottom: 30px;
}

.cover{
	width:350px;
	max-width: 100%;
	display: inline-block;
	float: left;
	margin: 0 30px 30px 0;
}

.musik_wrapper img{

}

.musik_wrapper a{
	display: inline-block;
	text-decoration: underline;
	font-weight: bold;
}

.musik_info{
	display: block;
	min-height: 350px;
}

.musik_info img{
	height:30px;
	width: auto;
}

.footer{
	position: absolute;
	bottom: 0;
	z-index: 999;
	width: 100%;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.not-front .footer{
	position: fixed;
	bottom: 0;
	z-index: 999;
	width: 100%;
	max-width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #000;
}

.footer_logos{
	display: flex;
	flex-direction: row;
	align-items: center;
	margin:0 0 30px 30px;
	float: left;
}

.footer_logos a{
	display: block;
}

.footer_logos a.fb{
	height: 40px;
	margin-right: 30px;

}
.footer_logos a.imdb{
	height: 26px;
}

.footer a.fb img{
	height:40px;
}

.footer a.imdb img{
	height: 26px;
}

.footer_links{
	margin:0 30px 30px 0;
	font-size: 14px;
}

.footer_links a{
	padding:0 15px;
	text-transform: uppercase;
}


/*-------------Slideshow Animation-------------------*/

.slideshow,
.slideshow:after { 
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0; 
}

.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 50s linear infinite 0s; 
}

.slideshow li:nth-child(1) span { 
    background-image: url(pics/Hold_Slide1.jpg) 
}
.slideshow li:nth-child(2) span { 
    background-image: url(pics/Hold_Slide2.jpg);
    animation-delay: 10s; 
}
.slideshow li:nth-child(3) span { 
    background-image: url(pics/Hold_Slide3.jpg);
    animation-delay: 20s; 
}
.slideshow li:nth-child(4) span { 
    background-image: url(pics/Hold_Slide4.jpg);
    animation-delay: 30s; 
}
.slideshow li:nth-child(5) span { 
    background-image: url(pics/Hold_Slide6.jpg);
    animation-delay: 40s; 
}


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


/*-------------Slideshow Animation End-------------------*/

/*-----------------Media Queries---------------------*/

@media only screen and (max-width: 600px) {
	.header,
	.not-front .header{
		flex-direction: column;
		align-items: flex-start;
		padding: 0;
	}

	.menu_wrapper{
		width: 100%;
	}

	.logo_wrapper{
		margin:10px auto 0 auto;
	}

	.logo_wrapper a img{
		width: 150px;
		max-width: 100%;
	}

	.menu_wrapper{
		margin:15px 0 0 0;
	}

	.menu_wrapper ul li a{
		color:#fff;
		padding:0 10px;
		font-size: 15px;
		line-height: 15px;
	}

	.main{
		padding:15px;
		max-width: 90%;
		margin-bottom: 60px;
	}
	
	.footer,
	.not-front .footer{
	position: fixed;
	padding-top:15px;
	}

	.footer_logos{
	margin:0 0 15px 15px;
	}

	.footer_logos a.fb{
	height: 36px;
	margin-right: 15px;
	}

	.footer_logos a.imdb{
		height: 23px;
	}

	.footer a.fb img{
		height:36px;
	}

	.footer a.imdb img{
		height: 23px;
	}

	.footer_links{
	margin:0 15px 15px 0;
	font-size: 13px;
	}

	.footer_links a{
	padding:0 8px;
	}
}



