/* Reset */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
/* HTML5 display-role reset for older browsers */
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;
}

img {
	max-width: 100%;
	height: auto;
}

* {
	box-sizing: border-box;
}

/* Structure */

body {
	font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
	line-height: 1.4;
}

header,
main {
	display: flex;
}

/* Header */

header {
	font-family: "eurostile";
}

header .logo {
	flex-basis: 340px;
	padding: 50px;
	background-color: #b0b0b0;
	color: #fff;
	text-align: center;
	font-weight: 700;
	font-size: 60px;
	flex: 0 0 340px;
    line-height: 1;
    letter-spacing: .25em;	
}

header .banner {
	flex: 1;
	background-color: #2c58aa;
	padding: 50px;
	color: #fff;
	text-transform: uppercase;	
}

header .banner h1 {
	font-size: 60px;
	line-height: 1;
    letter-spacing: .125em;
}

header .banner h2 {
    font-size: 20px;
	line-height: 1;
    letter-spacing: .125em;
    font-weight: 500;
	margin: 1em 0 0 0;
}


/* Main */

main aside {
	flex: 0 0 340px;
	background-color: #bfbfbf;
	padding: 50px 50px 100px 50px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;	
}

main aside figcaption {
    letter-spacing: .125em;
    text-transform: uppercase;
	font-family: "eurostile";
	font-size: 18px;
	margin: 10px 0 0 0;
}

main aside .contact {
    font-weight: 500;
    font-size: 18px;
    color: #2c58aa;
}


main article {
	flex: 1;
	padding: 50px 50px 100px 50px;
}

main article h3 {
	line-height: 1;
    letter-spacing: .125em;
    text-transform: uppercase;
    color: #2c58aa;
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 .75em 0;	
}

main article h4 {
	line-height: 1;
    letter-spacing: .025em;	
	color: #5679bb;
    font-weight: 700;
    font-size: 22px;
    margin: 0 0 1em 0;		
}

main article ul li {
	font-family: "eurostile";
	font-size: 22px;
	font-weight: 500;
	position: relative;
	padding: 0 0 0 25px;
}

main article ul {
	margin: 1em 0 1.25em 0;
}

main article ul li:before {
	content: "+";
	margin: 0 15px 0 0;
	position: absolute;
	left: 0;
	top: 0;
}

main article .contact {
	display: none;
}

/* Type */

a {
	color: inherit;
}

h1, h2, h3, h4 {
	font-family: "eurostile";
}

p {
	margin: 1em 0;
	font-size: 18px;
}

p ~ p {
	margin: 1em 0 0 0;
}

/* Responsive */

@media only screen and (min-width: 769px) and (max-width: 1024px) {
	.logo  {
		display: none;
	}
	
	main aside {
		flex: 0 0 250px;
		padding: 50px 50px 100px 50px;
	}	
	
}

@media only screen and (min-width: 0) and (max-width: 768px) {
	.logo  {
		display: none;
	}

	header .banner {
		padding: 30px;
	}	
	
	header .banner h1 {
		font-size: 30px;
	}
	
	main {
		flex-wrap: wrap;
	}
	
	main aside {
		flex: 1 1 100%;
		padding: 30px;
	}

	main aside figure {
		text-align: center;
	}	
	
	main aside figure img {
		max-width: 250px;
	}

	main aside .contact {
		display: none;
	}
	
	main article {
		flex: 1;
		padding: 30px;
	}	
	
	main article .contact {
		display: block;
	    font-weight: 500;
	    color: #2c58aa;		
	}	
	
}