* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

html {
	min-height: 100%;
}

body {
	color: #000;
	font-family: 'Roboto', Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
}

#wrapper {
	max-width: 890px;
	margin: 12px auto;
	border: 1px solid #000;
	background: #fff;
	overflow: hidden;
}

header {
	padding: 50px 25px 10px 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

article {
	padding: 45px 110px 10px;
}

p {
	margin: 0 0 20px;
	text-align: justify;
}

strong {
	font-weight: 700;
}

h1 {
	margin: -6px 0 20px;
	font-weight: 400;
	font-size: 26px;
	line-height: 32px;
	color: #002863;
}

h2 {
	margin: 0 0 20px;
	font-size: 35px;
	font-weight: 400;
	line-height: 42px;
	color: #002863;
}

a {
	color: #000;
	text-decoration: none;
	white-space: nowrap;
}

ul {
	padding: 0 0 20px 28px;
	list-style: none;
	text-align: justify;
}

ul li {
	padding-left: 27px;
	position: relative;
}

li:before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #000;
	position: absolute;
	z-index: 3;
	left: 0;
	top: 7px;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

.color {
	color: #002863;
}

.color1 {
	color: #00f;
}

@media all and (max-width:889px) {
	#wrapper {
		margin: 0;
		border: none;
	}

	header {
		padding: 16px;
	}

	article {
		padding: 16px;
	}

	:is(ul, p) {
		text-align: left;
	}

	h2 {
		font-size: 30px;
	}

	ul {
		padding-left: 10px;
	}

	ul li {
		padding-left: 15px;
	}
}