* {
	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: 895px;
	margin: 12px auto;
	border: 1px solid #000;
	padding: 40px 100px;
	background: #fff;
	overflow: hidden;
}

header {
	padding: 0 0 40px;
	text-align: center;
}

footer {
	text-align: center;
	font-size: 12px;
	line-height: 17px;
	padding-top: 20px;
}

p {
	margin: 0 0 16px;
}

strong {
	font-weight: 700;
}

h1 {
	margin: 0 0 20px;
	font-weight: 700;
	font-size: 24px;
	line-height: 28px;
	text-align: center;
}

h2 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
	line-height: 24px;
}

h3 {
	margin: 0 0 25px;
	font-weight: 700;
	font-size: 22px;
	line-height: 26px;
	text-align: center;
}

a {
	color: #000;
	text-decoration: none;
}

ul {
	padding: 0 0 20px 19px;
	list-style: none;
}

ul li {
	padding-left: 20px;
	position: relative;
	margin-bottom: 4px;
}

li:before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #000;
	position: absolute;
	z-index: 3;
	left: 0;
	top: 6px;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

.color {
	color: #0563c1 !important;
}

article p {
	font-size: 18px;
	line-height: 23px;
}

@media all and (max-width:894px) {
	#wrapper {
		margin: 0;
		padding: 16px;
		border: none;
	}
}