:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-v30-latin-regular.eot');
	src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: italic;
	font-weight: 400;
	src: url('../fonts/roboto-v30-latin-italic.eot');
	src: url('../fonts/roboto-v30-latin-italic.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-italic.woff2') format('woff2'), url('../fonts/roboto-v30-latin-italic.woff') format('woff'), url('../fonts/roboto-v30-latin-italic.ttf') format('truetype'), url('../fonts/roboto-v30-latin-italic.svg#Roboto') format('svg');
}

@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-v30-latin-700.eot');
	src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

html {
	min-height: 100%;
}

body {
	color: #000;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
}

#wrapper {
	max-width: 850px;
	margin: 16px auto;
	border: 1px solid #000;
	padding: 80px;
	background: #fff;
	overflow: hidden;
}

header {
	padding: 0 0 30px;
	display: flex;
	justify-content: flex-end;
}

p {
	margin: 0 0 25px;
	text-align: justify;
}

strong {
	font-weight: 700;
}

h1 {
	margin: 0 0 25px;
	font-weight: 700;
	font-size: 31px;
	line-height: 35px;
	color: #0070c0;
}

h1 small {
	color: #959595;
	display: block;
	font-size: 20px;
	line-height: 24px;
	margin-top: 4px;
}

h2 {
	margin: 0 0 25px;
	font-size: 22px;
	font-weight: 400;
	line-height: 26px;
	color: #0070c0;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #000;
	text-decoration: none;
	white-space: nowrap;
}

ul {
	padding: 0 0 25px;
	list-style: none;
}

ul li {
	padding-left: 23px;
	position: relative;
}

li:before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #000;
	position: absolute;
	z-index: 3;
	left: 0;
	top: 8px;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

.color {
	color: #0070c0 !important;
}

.flex {
	margin-bottom: 25px;
}

.flex p {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
}

.flex p .wight {
	width: 155px;
}

.flex p span:nth-of-type(2) {
	width: calc(100% - 156px);
}

.banner {
	margin: -87px 0 35px;
}

.box {
	display: flex;
	gap: 12px 30px;
	align-items: center;
	margin-bottom: 6px;
	justify-content: flex-start;
}

.box p {
	margin: 0;
}

.box:last-of-type {
	margin-bottom: 30px;
}

@media all and (max-width:849px) {
	#wrapper {
		margin: 0;
		padding: 16px;
		border: none;
	}

	h1 br {
		display: none;
	}

	:is(ul, p) {
		hyphens: auto;
	}

	p {
		text-align: left;
	}

	footer p span {
		white-space: nowrap;
	}
}

@media all and (max-width:575px) {
	header {
		justify-content: center;
	}

	.banner {
		display: flex;
		justify-content: center;
		margin: 0 0 20px;
	}

	.flex p .wight {
		width: 100%;
	}

	.flex p span:nth-of-type(2) {
		width: auto;
		margin-bottom: 10px;
	}

	.nowap {
		white-space: normal !important;
	}
}