@charset "UTF-8";
/* CSS Document */
*{
	margin:0;
	padding:0;
	box-sizing:border-box;	
}
body{ 
	background-color:#000; 
	font-family: 'Raleway', sans-serif;
	}
#wrapper{
	max-width:960px;
	margin:0 auto;
	color:#FFF;
}
.clearfix:after{
	content:"";
	display:table;
	clear:both;	
}
/* Fixed: */
nav{
	position:fixed;
	top:0;
	left:0;
	font-size:2em;
	background-color:#000;
	text-align:center;
	z-index:2;
	width:100%;
	line-height:2.5em;
}
nav a{
	text-decoration:none;
	color:#F00;
	display:inline-block;
	width:15%;
	text-align:center;	
}

header{
	position:relative;	
	margin:3em 0 0;
}
h1{
	font-size:4em;
	text-align:center;	
	padding:3em 1em;
	background-color:#F00;
}
header img{
	position:absolute;
	top:0;
	right:0;
	width:70%;
	height:auto;
	z-index:1;
}
.trailer {
    position: relative;
    padding-bottom: 56.25%; /* - for 16:9 video*/
    /*padding-bottom: 75%;*/  /* - for 4:3 video*/
    padding-top: 35px;
    height: 0;
    overflow: hidden;
}
.trailer iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}
.column{
	width:32.333%;
	float:left;
	padding:0 1%;
	font-size:0.8em;
	margin:1em 0.5% 0;
	position:relative;
}
p{
	padding-top:1em;	
}
/* equal height columns: */
.text{
	position:relative;	
}
.backgrounds { 
	position:absolute;
	width:100%;
	height:100%;
} 
.backgrounds .column{
	height:100%;
	border:solid 1px #FFF;
	background-color:#333;
}
footer{
	border-top:dashed 1px #FFF;
	margin:3em 0;
}
@media screen and (max-width:960px){
	h1{
		font-size:3em;
		padding:2em;
	}
	nav a{
		width:20%;	
	}
}
@media screen and (max-width:480px){
	h1{
		font-size:2em;
		padding:1em;
	}
	.backgrounds{
		display:none;	
	}
	.column{
		border:solid 1px #FFF;
		width:98%;
		margin:0 auto 1em;
		float:none;
	}
	nav{
		position:static;	
	}
	nav a{
		width:100%;
		display:block;
		line-height:1.25em;	
	}
	header{
		margin: 0;
	}
}