html {
	box-sizing: border-box;
}
*, *:before, *:after {
	box-sizing: inherit;
}

body {
	font-family: 'K2D', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
}
h1 {
	font-size: 42px;
	font-weight: 700;
	margin: 0;
}
p {
	margin: 0 0 20px 0;
}
strong {
	font-weight: 700;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover,
a:focus {
	text-decoration: underline;
}



.page-hero {
	background: url('../img/hero3.jpg') center center no-repeat;
	background-size: cover;
	height: 100vh;
}
.page-main {
	padding: 50px 20px;
}
.page-title {
	text-align: center;
	margin-bottom: 50px;
}
.page-content {
	overflow: hidden;
	position: relative;
	clear: both;

	text-align: center;
	margin: 0 auto;
}
.column {
	display: inline-block;
	width: 100%;
	vertical-align: top;
}



@media (min-width: 544px) {
	.page-content {
		max-width: 576px;
	}
}
@media (min-width: 768px) {
	.page-content {
		max-width: 720px;
	}
	.column {
		width: 32%;
	}
}
@media (min-width: 992px) {
	.page-content {
		max-width: 940px;
	}
	.column {
		width: 25%;
	}
}