@charset "UTF-8";
/* Body */
body {
	font-family: source-sans-pro;
	background-color: black;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-style: normal;
	font-weight: 200;
}
/* Container */
.container {
	width: 92%;
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
	height: 700px;
	background-color: black;
}
/* Navigation */
header {
	width: 100%;
	height: 3%;
	background-color: #0E0F1F;
}
header img {
	width: 145px;
	margin-top: 68px;
	margin-left: 89px;
}
/* Hero Section */
.hero {
	background: url("header_bg.png") no-repeat;
	padding-top: 150px;
	min-height: 460px;
	/* padding-bottom: 100px; */
}
.hero_header {
	color: white;
	text-align: left;
	margin-top: 122px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 89px;
	font-size: 53px;
	line-height: 66px;
	letter-spacing: 2px;
}
.tagline {
	text-align: left;
	color: white;
	margin-top: 23px;
	margin-left: 89px;
	font-size: 33px;
	letter-spacing: 2px;
	line-height: 40px;
	letter-spacing: 1px;
	max-width: 600px;
}
/* More info */
.copyright {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #0E0F1F;
	color: white;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* Mobile */
@media (max-width: 320px) {
.tagline, .hero_header, header img {
	margin-left: 20px;	
}
.tagline{
	margin-left: 20px;	
	font-size: 20px;
	line-height: 25px;
}
.hero_header {
	margin-left: 20px;	
	margin-top: 40px;
	font-size: 35px;
	line-height: 37px;
}
.hero { 
	min-height: 250px;
}
⁄⁄.container {
	height: 300px;
}
}
	
/* Small Tablets */
@media (min-width: 321px) and (max-width: 767px) {
.tagline, .hero_header, header img {
	margin-left: 20px;	
}
.tagline{
	margin-left: 20px;	
	font-size: 27px;
	line-height: 30px;
}
.hero_header {
	margin-left: 20px;	
	font-size: 45px;
	margin-top: 80px;
	line-height: 47px;
}
.hero { 
	min-height: 310px;
}	
.container {
	height: 500px;
}
}