/* Reset */

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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
}

/* Fonts */

@font-face {
    font-family: 'DIN';
    src: url('../fonts/DIN.eot');
    src: url('../fonts/DIN.eot') format('embedded-opentype'),
         url('../fonts/DIN.woff2') format('woff2'),
         url('../fonts/DIN.woff') format('woff'),
         url('../fonts/DIN.ttf') format('truetype'),
         url('../fonts/DIN.svg#DIN') format('svg');
}
@font-face {
    font-family: 'TradeGothic';
    src: url('../fonts/TradeGothic.eot');
    src: url('../fonts/TradeGothic.eot') format('embedded-opentype'),
         url('../fonts/TradeGothic.woff2') format('woff2'),
         url('../fonts/TradeGothic.woff') format('woff'),
         url('../fonts/TradeGothic.ttf') format('truetype'),
         url('../fonts/TradeGothic.svg#TradeGothic') format('svg');
}

/* Defaults */

html {
	font-family: 'TradeGothic', Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust:100%;
	-ms-text-size-adjust:100%;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-touch-callout: none;
}
body {
	color: #1b272e;
	font-size: 19px;
	line-height: 30px;
	background: #ffffff;
}
a {
	color: #1b272e;
	text-decoration: none;
	border-bottom: 1px solid rgba(27, 38, 45, 0);
	-webkit-transition: border-bottom 0.2s ease;
	-moz-transition: border-bottom 0.2s ease;
	-o-transition: border-bottom 0.2s ease;
	transition: border-bottom 0.2s ease;
}
a:hover {
	border-bottom: 1px solid rgba(27, 38, 45, 0.66);
}

/* Type */

h1 {
	color: #0492d4;
	font-size: 39px;
	line-height: 45px;
	font-family: 'DIN';
	text-transform: uppercase;
}
h1 span {
	color: #1b272e;
}
h2 {
	font-size: 92px;
	line-height: 100px;
	font-family: 'DIN';
}
h3 {
	font-size: 40px;
	line-height: 50px;
	font-family: 'DIN';
}
h4 {
	font-size: 30px;
	line-height: 35px;
	font-family: 'DIN';
}
h4 span {
	color: #1b272e;
}
h5 {
	font-size: 16px;
	line-height: 10px;
	text-indent: 1px;
	word-spacing: -1px;
	letter-spacing: -.2px;
}
.address {
	font-size: 14px;
	line-height: 25px;
	text-align: right;
}

/* Grid */

.frame {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 30px;
}
.frame:after {
	content: '';
	display: table;
	clear: both;
}
.main {
	float: left;
}
.side {
	width: 200px;
	float: right;
}

/* Header */

.header {
	color: #1b272e;
	background: #ffffff;
}
.header h1 {
	padding-top: 33px;
}
.header .address {
	padding-top: 15px;
	padding-bottom: 10px;
}

/* Section */

.section {
	color: #ffffff;
	background: #0492d4;
	padding-top: 200px;
	padding-bottom: 100px;
}
.section h2 {
	padding-bottom: 1em;
}
.section h3 {
	max-width: 625px;
	padding-bottom: 1em;
}
.section li:before {
	content: '>';
	padding-right: 10px;
}
.section p {
	padding-bottom: 1em;
}
.section a {
	color: #f4e913;
	text-decoration: none;
	border-bottom: 1px solid rgba(244, 233, 18, 0);
	-webkit-transition: border-bottom 0.2s ease;
	-moz-transition: border-bottom 0.2s ease;
	-o-transition: border-bottom 0.2s ease;
	transition: border-bottom 0.2s ease;
}
.section a:hover {
	border-bottom: 1px solid rgba(244, 233, 18, 0.66);
}
.section h4 {
	padding-top: 2em;
	padding-bottom: 0.5em;
}
.section ul {
	padding-bottom: 1em;
}
.section ul:last-child {
	padding-bottom: 0;
}

/* Footer */

.footer {
	padding-top: 17px;
	padding-bottom: 17px;
}
.footer .main {
	width: 280px;
	padding-top: 16px;
	padding-bottom: 16px;
}
.footer .main:after {
	content: '';
	display: table;
	clear: both;
}
.footer .main>div {
	float: left;
}
.footer .address {
	padding-top: 15px;
	padding-bottom: 10px;
}

@media (max-width: 600px) {

	.main {
		float: none;
	}
	.side {
		width: 100%;
		float: none;
	}
	.address {
		text-align: left;
	}
	.header .address {
		padding-top: 16px;
		padding-bottom: 25px;
	}
	.footer .address {
		padding-top: 21px;
		padding-bottom: 8px;
	}

}
