@charset "utf-8";

:root {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #000000;
	font-family: "Arial", sans-serif;
	font-size: .937rem;
	line-height: 1.3;
}

img {
	max-width: 100%;
	height: auto;
}

#wrapper {
	position: relative;
	max-width: 50rem;
	margin: 1rem auto;
	overflow: hidden;
	background: #fff;
	border: solid 1px #000;
}

h1 {
	font-size: 1.125rem;
	line-height: 1.2;
	margin: 0;
	color: #0065BD;
	text-align: center;
}

h2 {
	font-size: 1rem;
	color: #0065BD;
	margin: 0 0 .187rem;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

a.web {
	white-space: normal;
}

p {
	margin: 0 0 1rem;
	text-align: justify;
	hyphens: auto;
}

.center {
	text-align: center;
}

span {
	white-space: nowrap
}

ul {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

ul li {
	padding-left: 1.375rem
}

ul li:before {
	content: "\2022";
	float: left;
	margin-left: -1.375rem;
	font-size: 1.375em;
	line-height: 1.08;
}

.circle {
	margin: 0;
}

ul li {
	padding-left: 1.375rem
}

.circle li:before {
	content: "";
	float: left;
	position: relative;
	width: .25rem;
	height: .25rem;
	border-radius: 100%;
	background: transparent;
	border: .062rem solid #000;
	margin-left: -1.375rem;
	top: .375rem;
}

header {
	display: flex;
	justify-content: flex-end;
	column-gap: 1rem;
	padding: 2rem;
}

article {
	padding: 0 2rem;
}

footer {
	padding: 0 2rem 2rem
}

p small {
	font-size: 14px;
}

@media only screen and (max-width: 49.937rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
		padding: 1rem;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
		margin: 0 0 1rem;
	}

	p {
		text-align: left;
	}

	p span {
		white-space: normal;
	}

	header {
		padding: 2rem 1rem;
	}

	article,
	footer {
		padding: 0;
	}
}

@media only screen and (max-width: 28.062rem) {
	header {
		flex-direction: column;
		align-items: center;
		padding: 1.25rem 0;
	}

	h1,
	header p {
		text-align: center
	}
}