html {
	font: normal normal 14px/1.5 'Montserrat', sans-serif;
}

@media ( min-width: 960px ) {
	html {
		font-size: 16px;
	}
}

body {
	margin: 0;
	font: inherit;
	background: #7e9dbe url(bg.jpg) center center / cover no-repeat;
}

.container {
	max-width: 960px;
	margin: 0 auto;
	padding-left: 1em;
	padding-right: 1em;
}

main .container {
	max-width: 1060px;
}

.header {
	padding: 2rem 0;
	text-align: center;
	background: #FFF;
	box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

@media ( min-width: 680px ) {
	.header .container {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}

.clearfix:after {
	content: '';
	display: block;
	clear: both;
}

.header img {
	display: block;
	max-width: 80%;
	width: 450px;
	height: auto;
	margin: 0 auto;
}

@media ( min-width: 680px ) {
	.header img {
		max-width: 50%;
		margin: 0;
	}
}

.header h2 {
	display: inline-block;
	vertical-align: top;
	border: 1px solid currentColor;
	border-radius: 8px;
	font-size: 1.4em;
	line-height: 1;
	padding: 0.5em;
	text-transform: uppercase;
	color: #00aeef;
}

.header h2:before {
	content: url(gear.svg);
	display: inline-block;
	vertical-align: bottom;
	width: 1em;
	height: 1em;
	margin-right: 0.5em;
}

main header {
	padding: 4em 0;
	text-align: center;
	color: #FFF;
}

main header h2 {
	font-weight: normal;
	font-size: 1.7em;
}

main header a {
	display: inline-block;
	vertical-align: middle;
	margin: 0.5em 0;
	font-weight: bold;
	font-size: 1.5em;
	line-height: 1.4;
	text-decoration: none;
	white-space: nowrap;
	color: inherit;
}

@media ( min-width: 680px ) {
	main header a {
		font-size: 2em;
	}
}

main header a:before {
	content: url(phone.svg);
	display: inline-block;
	vertical-align: middle;
	width: 1.4em;
	height: 1.4em;
	margin: 0 0.5em;
}

main header a[href*="mailto"]:before {
	content: url(mail.svg);
}

.wrap {
	margin-bottom: 10em;
	padding: 1.5em;
	background: #FFF;
	box-shadow: 0 0 30px rgba(0,0,0,0.4);
}

@media ( min-width: 680px ) {
	.wrap {
		padding: 3em;
	}
}

.content h3 {
	margin-top: 0;
	font-weight: normal;
	font-size: 1.4em;
	color: #0067b4;
}

.content ul {
	padding: 0;
	list-style: none;
	font-size: 1.2em;
}

.content ul li {
	position: relative;
	margin-bottom: 1em;
	padding-left: 36px;
}

.content ul li:before {
	content: url(check.svg);
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 24px;
	height: 24px;
}

.sidebar {
	padding: 0.5em 1.5em 1.5em 1.5em;
	border-radius: 12px;
	background: #0067b4;
	color: #FFF;
}

.sidebar h3 {
	font-size: 1.4em;
	text-transform: uppercase;
}

.sidebar p {
	font-size: 1.2em;
}

.sidebar section:first-child {
	border-bottom: 1px solid currentColor;
	margin-bottom: 1em;
}

@media ( min-width: 680px) {
	.content,
	.sidebar {
		float: left;
		width: 45%;
	}

	.sidebar {
		float: right;
	}
}

@media ( min-width: 960px) {
	.content {
		width: 55%;
	}

	.sidebar {
		width: 35%;
	}
}