@charset "utf-8";

@font-face {
	font-display: swap;
	font-family: 'Titillium Web';
	font-style: normal;
	font-weight: 400;
	src: url('/fonts/titillium-web-v17-latin-regular.eot');
	src: url('/fonts/titillium-web-v17-latin-regular.eot?#iefix') format('embedded-opentype'),
		url('/fonts/titillium-web-v17-latin-regular.woff2') format('woff2'),
		url('/fonts/titillium-web-v17-latin-regular.woff') format('woff'),
		url('/fonts/titillium-web-v17-latin-regular.ttf') format('truetype'),
		url('/fonts/titillium-web-v17-latin-regular.svg#TitilliumWeb') format('svg');
}

@font-face {
	font-display: swap;
	font-family: 'Titillium Web';
	font-style: normal;
	font-weight: 700;
	src: url('/fonts/titillium-web-v17-latin-700.eot');
	src: url('/fonts/titillium-web-v17-latin-700.eot?#iefix') format('embedded-opentype'),
		url('/fonts/titillium-web-v17-latin-700.woff2') format('woff2'),
		lurl('/fonts/titillium-web-v17-latin-700.woff') format('woff'),
		url('/fonts/titillium-web-v17-latin-700.ttf') format('truetype'),
		url('/fonts/titillium-web-v17-latin-700.svg#TitilliumWeb') format('svg');
}

:root {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #000;
	font-family: "Titillium Web", sans-serif;
	font-size: .875rem;
	line-height: 1.5;
	font-weight: 400;
}

img {
	max-width: 100%;
	height: auto;
}

#wrapper {
	position: relative;
	max-width: 75rem;
	margin: 1rem auto;
	overflow: hidden;
	background: #fff;
	padding: 2.5rem;
}

:is(a:link, a:visited, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

a:hover {
	text-decoration: underline;
}

h1,
h2,
h3 strong {
	font-weight: 700;
}

p {
	margin: 0 0 1rem;
}

h1 {
	font-size: 1.125rem;
	margin: 0 0 1.25rem;
	line-height: 1.2;
}

h2 {
	font-size: 1rem;
	margin: 0 0 1rem;
	line-height: 1.2;
}

h3 {
	font-size: .875rem;
	margin: 0 0 .625rem;
	line-height: 1.2;
}

h4 {
	font-size: .875rem;
	font-weight: normal;
}

ol {
	list-style: none;
	margin: 0 0 .625rem;
	padding: 0;
	list-style: none;
	counter-reset: my-counter;
}

ol li {
	counter-increment: my-counter;
	position: relative;
	padding: 0 0 .625rem 1.25rem;
}

.list {
	margin: 0;
}

.list li {
	padding: 0 0 .625rem 1.875rem
}

ol li::before {
	content: counter(my-counter) ".";
	position: absolute;
	left: 0;
	top: 0;
	color: inherit;
}

ul {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
}

ul li {
	padding-left: .937rem;
}

ul li:before {
	content: "●";
	float: left;
	margin-left: -.937rem;
	font-size: .75rem;
	line-height: 1.8;
}

.margin {
	margin: 0 0 1.625rem 1.875rem;
}
.bottom{
	margin: 0 0 26px;
}
.image {
	margin: 0 0 2.5rem;
}

@media only screen and (max-width: 49.938rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
		padding: 1.25rem;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
	}
}