@charset "UTF-8";
body {
	height: 100%;
	width: 100%;
	margin: 0;
}
/*Body Content*/
.container {
	margin: auto;
	min-height: 100%;
	background: #f1f6fb;
	display: flex;
    flex-direction: column;
}
h1 {
	font-family: 'Palanquin', 'Arial Bold', sans-serif;
	font-size:1.5em;
    margin:10px auto;
    text-align:center;
    color: #273a71;
    width:90%;
    max-width:1080px;
}
h1::before, h1::after {
    content:'';
    background-color:#273a71;
    display:inline-block;
    height:2px;
    width:calc(45% - 130px - 10px);
}
h1::before {
    margin-right:10px;
}
h1::after {
    margin-left:10px;
}

h2 {
	font-family: 'Arial Black', sans-serif;
	color: #464646;
	margin:0;
	text-align:center;
}
body p {
	font-family: 'Arial', sans-serif;
	color: #767676;
	margin:0;
	text-align:center;
}
.whitebox {
    background: #fff;
	height: auto;
	width: 90%;
	max-width:1200px;
	position:relative;
	margin: 10px auto;
	border-radius:15px;
	overflow:hidden;
}
.flexImg {
    width:100%;
}


/*Media Queries*/
@media screen and (max-width:480px) {
	h1 {
		font-size: 20px;
	}
}