html {
	font-size: 14px;
}

body {
	color: #8c8687;
	font-size: 12px;
	line-height: 1.7;
	font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
	color: #1c1d1a;
	line-height: 1.4;
	font-weight: 300;
	margin: 0 0 0.8em 0;
}

h1 {
	font-size: 2.2em;
}

h2 {
	font-size: 2em;
}

h3 {
	font-size: 1.8em;
}

h4 {	
	font-size: 1.6em;
}

h5 {
	font-size: 1.4em;
}

h6 {
	font-size: 1.2em;
}

* ~ h1,
* ~ h2,
* ~ h3,
* ~ h4,
* ~ h5,
* ~ h6 {
	margin-top: 1.5em;
}

p,
ul,
ol,
dl {
	font-size: 1.2rem;
	margin: 0 0 0.8rem;
}

ul,
ol {
	padding-left: 2.5rem;
}

* > p:last-child,
* > h1:last-child,
* > h2:last-child,
* > h3:last-child,
* > h4:last-child,
* > h5:last-child,
* > h6:last-child,
* > ul:last-child,
* > ol:last-child,
* > dl:last-child {
	margin-bottom: 0;
}

a {
	color: #2baae1;
	-webkit-transition: color 0.25s ease, border 0.25s ease;
	transition: color 0.25s ease, border 0.25s ease;
}

a:focus, 
a:hover {
    text-decoration: none;
	color: #1c1d1a;
}

a:active,
a:hover,
a:focus {
	outline: 0;
}

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

figure {
	margin-bottom: 0;
}

hr {
	margin-top: 2rem;
	margin-bottom: 2rem;
	border: 0;
	border-top: 1px solid #e5e5e5;
}

strong, b {
	font-weight: 700;
}

.light {
	font-weight: 300;
}

.regular {
	font-weight: 400;
}

.medium {
	font-weight: 500;
}

.semi-bold {
	font-weight: 600;
}

.bold {
	font-weight: 700;
}

.text-italic {
	font-style: italic;
}

@media (min-width: 576px) {
	body {
		font-size: 13px;
	}
	
	.container {
		max-width: none;
	}
}

@media (min-width: 768px) {
	html {
		font-size: 15px;
	}
	
	body {
		font-size: 14px;
	}
	
	.container {
		max-width: 740px;
	}
}

@media (min-width: 992px) {
	body {
		font-size: 15px;
	}
	
	.container {
		max-width: 960px;
	}
}

@media (min-width: 1200px) {
	html {
		font-size: 16px;
	}
	
	body {
		font-size: 16px;
	}
	
	.container {
		max-width: 1170px;
	}
}

@media (min-width: 1400px) {
	.container {
		max-width: 1300px;
	}
}

.content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #fff;
}

.content > div {
	position: relative;
	min-height: 450px;
	z-index: 1;
}

.content img {
	height: 150px;
}

@media (min-width: 768px) {
	.content img {
		height: 200px;
	}
}