/* Eric Meyer's Reset Reloaded */
/* http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*
=========
GENERAL
=========
*/

html, body {
	height: 100%;
	width: 100%;
	display: block;
}

body {
	font-family: 'Lora', Georgia, serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 28px;
	color: #333333;
	background: url('../assets/ticks.png');
}

/*
=========
TYPOGRAPHY
=========
*/

.logo {
	background: url('../assets/md-logo-full.png') no-repeat;
	background-size: auto 100%;
	background-position: center;
	height: 60px;
	display: block;
	margin: 40px auto;
	text-indent: -9999px;
}

.title {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 40px;
	color: #F57E20;
}

p {
	font-size: 16px;
	line-height: 26px;
	margin-bottom: 20px;
}

/*
=========
INTRO
=========
*/

#intro {
	width: 100%;
	height: auto;
	display: block;
	padding: 300px 0;
	text-align: center;
}
#intro .headline {
	max-width: 900px;
	display: block;
	margin: 0 auto;
	font-size: 32px;
	font-weight: 700;
	line-height: 48px;
	color: #333;
}


/*
=========
CONTENT
=========
*/

.content {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto 120px;
}
.content:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.box {
	background: #f9f9f9;
	padding: 40px;
	box-sizing: border-box;
	display: block;
	float: left;
	width: 800px;
	margin-bottom: 40px;
}

.box:last-of-type {
	margin-bottom: 0;
}
.box.off {
	float: right;
}

.box p {
	max-width: 660px;
}
.box p:last-of-type {
	margin-bottom: 0;
}

.box ul {
	margin: 0 0 20px;
}
.box ul li {
	margin: 0 0 20px 20px;
	list-style: circle;
}

/*
=========
FOOTER
=========
*/

.footer {
	width: 100%;
	display: block;
	padding: 18px 0;
	border-top: 1px solid #d1d1d1;
}
.footer:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.inner-footer {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
}

.copy {
	font-size: 14px;
	text-transform: uppercase;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 400;
	color: #333;
	display: block;
	float: left;
	margin: 0;
}

.foot-nav {
	float: right;
}
.foot-nav li a {
	text-decoration: none;
	text-transform: uppercase;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-weight: 400;
	color: #333;
	font-size: 14px;
	-webkit-transition: ease-in-out all 0.3s;
}
.foot-nav li a:hover {
	color: #F57E20;
}


/*
=========
MEDIA QUERIES - RESPONSIVE
=========
*/


@media only screen 
and (max-width : 880px) {

	#intro {
		padding: 15% 0;
	}
	#intro .headline {
		width: 100%;
		padding: 0 7%;
		box-sizing: border-box;
	}

	.box {
		width: 100%;
	}

}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {

	#intro {
		padding: 5% 0;
	}

}

@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) {

	#intro {
		padding: 10% 0;
	}
	#intro .headline {
		font-size: 18px;
		line-height: 36px;
	}
	
	.content {
		width: 100%;
		margin: 0 auto 80px;
	}
	
	.box {
		padding: 7%;
	}
	.logo {
		height: 40px;
	}

}