* {
	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: 910px;
	margin: 12px auto;
	border: 1px solid #000;
	padding: 0 105px 30px;
	background: #fff;
	overflow: hidden;
}

p {
	margin: 0 0 16px;
}

strong {
	font-weight: 700;
}

h1 {
	margin: 35px 0 16px;
	font-weight: 700;
	font-size: 36px;
	line-height: 40px;
	color: #1f3863;
}

h2 {
	margin: 30px 0 16px;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	color: #1f3863;
}

a {
	color: #000;
	text-decoration: none;
}

ul {
	padding: 0 0 16px 26px;
	list-style: none;
}

ul li {
	padding-left: 31px;
	position: relative;
}

ul li:before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #000;
	position: absolute;
	z-index: 3;
	left: 0;
	top: 7px;
}

ol {
	padding: 0 0 16px 15px;
	list-style: none;
}

ol li {
	padding-left: 31px;
	position: relative;
}

ol span {
	position: absolute;
	z-index: 3;
	left: 0;
	top: 0;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

.color {
	color: #0562c1;
}

.logo {
	display: flex;
	justify-content: center;
	padding: 0 0 12px;
}

.banner {
	display: flex;
	justify-content: center;
}

@media all and (max-width:909px) {
	#wrapper {
		margin: 0;
		padding: 16px;
		border: none;
	}
}