* {
	margin: 0;
	padding: 0;
	font-family: 'Playfair Display', serif;
	box-sizing: border-box;
}

body {
	height: 100vh;
	min-height: 500px;
	width: 100%;
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
	display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	-ms-align-items: center;
	-moz-align-items: center;
	-o-align-items: center;
	align-items: center;
	-webkit-align-content: center;
	-ms-align-content: center;
	-moz-align-content: center;
	-o-align-content: center;
	align-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	-moz-justify-content: center;
	-o-justify-content: center;
	align-content: center;
}

body:before,
body:after {
	content: '';
	position: absolute;
	width: calc(100% - 80px);
	height: 2px;
	background: #bdc4ce;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

body:before {
	top: 40px;
}

body:after {
	bottom: 40px;
	
}

main {
	text-align: center;
	width: 100%;
	margin:  40px;
	max-width: 960px;
}

h1 {
	color: #2a3867;
	font-size: 36px;
}
h2 {
	color: #2a3867;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 3px;
	margin: 10px 0 52px 0;
	position: relative;
}
h3:before {
	width: 8px;
	height: 8px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	background: #7d8999;
	position: absolute;
	top: -5px;
	content: '';
	left: calc(50% - 4px);
}

h3 {
	position: relative;
	padding: 30px 0;
	border-top: 2px solid #bdc4ce;
	border-bottom: 2px solid #bdc4ce;
	color: #7d8999;
	font-size: 20px;
}

a {
	color: inherit;
	font-size: inherit;
	text-decoration: none;
	transition: all 0.2s linear;
}
a:hover {
	color: #2a3867;
}

h4 {
	color: #7d8999;
	font-size: 14px;
	line-height: 1.5;
	margin-top: 39px;
}