* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
}

#wrapper {
	max-width: 900px;
	margin: 16px auto;
	border: 1px solid #000;
	padding: 60px 100px 38px;
	background-color: #fff;
	overflow: hidden;
	position: relative;
}

header {
	display: flex;
	justify-content: flex-end;
}

article {
	padding: 32px 20px 20px 0;
}

.center {
	text-align: center;
}

p {
	margin: 0 0 16px;
	text-align: justify;
	hyphens: auto;
}

strong {
	font-weight: 700;
}

h1 {
	margin: 16px 0;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	text-align: center;
}

h2 {
	margin: 16px 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
}

h3 {
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
	text-align: right;
	color: #004d7b;
}

a {
	color: #000;
	text-decoration: none;
}

ul {
	margin: 0 0 16px 26px;
	list-style: none;
}

ul li {
	padding-left: 30px;
}

li:before {
	content: "\2022";
	float: left;
	font-size: 25px;
	text-indent: -30px;
}

img {
	max-width: 100%;
}

@media all and (max-width:900px) {
	#wrapper {
		padding: 3% 5%;
		border: none;
		hyphens: auto;
		margin: 0;
	}

	p {
		text-align: left;
	}

	br:not(footer br) {
		display: none;
	}
}

@media all and (max-width:480px) {
	#wrapper {
		padding: 16px;
	}

	header {
		justify-content: center;
	}

	h3 {
		text-align: center;
	}

	ul {
		margin-left: 0;
	}
}