@import url(http://fonts.googleapis.com/css?family=Oswald:400,700);
@import url(http://fonts.googleapis.com/css?family=Lato:400,900);
/***************************************/
/* RESET */
/***************************************/
* {
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

a { text-decoration: none;} 

ul, ol {list-style: none;}

main, header, nav,
article, section,
aside, footer {
	display: block;
}

figure {line-height: 0;}

figure figcaption {display: none;}

/***************************************/
/* GENERAL */
/***************************************/
h1 {
	font-size: 1.875em; /* 30px / 16px */
	font-family: 'Oswald', sans-serif;	
	font-weight: 400;
	text-transform: uppercase;
	color: #fff;
	line-height: 1em;
	margin-top: 125px;
	text-align: center;
}

h6 {
	font-size: 0.875em; /* 14px / 16px */
	font-family: 'Lato', serif;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #fff;
	line-height: 1em;
	margin-top: 10px;
	text-align: center;
}

h1 > span {
	font-weight: 700;
	color: #ffa800;
}

header {
	height: 425px;
	background-color: #1a1a1a;
}

header > figure {
	position: absolute;
	top: 20px;
	left: 50%;
	margin-left: -114px;
}

header > article {
	height: 110px;
	background-color: #000;
}

section {
	position: relative;
	padding-bottom: 150px;
}

section > ul {
	margin-top: 225px;
	width: 730px;
	margin: 225px auto 0;
}

section > ul > li {
	float: left;
	margin-right: 250px;
	position: relative;
	z-index: 1;
}

section > ul > li:last-child {
	margin-right: 0;
}

section > ul > li > a {
	display: block;
	width: 240px;
	height: 45px;
	line-height: 43px;
	background-color: #fff;
	font-size: 0.75em; /* 12px / 16px */
	font-family: 'Lato', serif;
	font-weight: 900;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .2em;
	color: #1a1a1a;
	border: 1px solid #1a1a1a;
	transition: all .3s ease-in-out;
	-webkit-transition: all .3s ease-in-out;
	position: relative;
	z-index: 2;
}

section > ul > li > a:hover {
	color: #fff;
	background-color: #ffa800;
	border-color: #ffa800;
}

section > ul > li:before {
	position: absolute;
	top: -300px;
	left: -40px;
}

section > ul > li:first-child:before {
	content: url('../images/boxed.png');
}

section > ul > li:last-child:before {
	content: url('../images/wide.png');
}

/***************************************/
/* MEDIA QUERIES */
/***************************************/
@media screen and (max-width: 900px) {
	section > ul {
		width: 240px;
	}

	section > ul > li {
		margin-right: 0;
	}

	section > ul > li:last-child {
		margin: 400px 0 100px;
	}
}