@charset "utf-8";

:root {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #575656;
	font-family: "Arial", sans-serif;
	font-size: 1rem;
	line-height: 1.3;
}

img {
	max-width: 100%;
	height: auto;
}

#wrapper {
	position: relative;
	max-width: 56.25rem;
	margin: 1rem auto;
	overflow: hidden;
	background: #fff;
	border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

a.color {
	color: #3868AB;
	text-decoration: underline;
}

p {
	margin: 0 0 .625rem;
}

ul {
	list-style: none;
	margin: 0 0 0.625rem;
	padding: 0;
}

ul li {
	padding-left: 1.375rem
}

ul li:before {
	content: "\25a0";
	float: left;
	margin-left: -1.375rem;
	font-size: 1em;
	line-height: 1;
}

header {
	display: flex;
	justify-content: space-between;
	background: #014A94;
	padding-bottom: 105px
}

article {
	border-top: 4px solid #007CC1;
	border-left: 4px solid #007CC1;
	border-bottom: 4px solid #007CC1;
	margin-left: 50px;
	padding: 30px 30px 0 30px;
	position: relative;
	margin-top: -125px;
	z-index: 99
}

section {
	padding-bottom: 30px
}

.logo {
	position: absolute;
	right: 50px;
	top: 120px
}

h1,
h2 {
	color: #fff;
}

h2 {
	font-size: 20px;
	margin-bottom: 10px;
	line-height: 1.2
}

h1 {
	font-size: 30px;
	font-weight: 400;
	line-height: 1.2
}

h1 small {
	font-weight: normal;
	font-size: 0.65em;
}

.flex {
	display: flex;
	justify-content: space-between;
	color: #fff;
	padding-top: 20px;
}

.flex p {
	width: 250%;
	font-size: .937rem;
}

ul:last-of-type {}

footer {
	padding: 170px 40px 30px 100px;
	background: #014A94;
	display: flex;
	justify-content: space-between;
	align-items: center;
	line-height: 1.2;
	position: relative;
	margin-top: -160px;
	z-index: 0;
	color: #fff;
}

footer p {
	margin: 0;
}

@media only screen and (max-width: 899px) {
	#wrapper {
		border: none;
		margin: 0 auto;
		padding: 16px;
	}

	article {
		border: none;
		margin: 0;
		padding: 0;
	}

	.flex {
		background: #014A94;
		padding: 12px;
		display: block;
	}

	footer {
		padding: 12px;
		margin: 0;
		display: block;
	}

	footer img {
		margin-top: 20px
	}

	.flex p {
		width: auto;
	}

	header {
		padding: 0
	}

	section {
		background: #014A94;
		padding: 12px;
		margin-bottom: 20px;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}
}

@media only screen and (max-width: 36.25rem) {
	header {
		flex-direction: column-reverse;
	}

	h1 {
		font-size: 27px;
	}

	br {
		display: none
	}

	h1,
	h2 {
		text-align: center
	}

	ul:last-of-type {
		padding-bottom: 10px;
		margin-bottom: 20px
	}

	.logo {
		position: initial;
		display: block;
		width: fit-content;
		margin: 0 auto
	}

	header img {
		display: block;
	}
}