@charset "utf-8";

@font-face {
	font-display: swap;
	font-family: 'Lato';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/lato-v24-latin-regular.eot');
	src: url('../fonts/lato-v24-latin-regular.eot?#iefix') format('embedded-opentype'),
		url('../fonts/lato-v24-latin-regular.woff2') format('woff2'),
		url('../fonts/lato-v24-latin-regular.woff') format('woff'),
		url('../fonts/lato-v24-latin-regular.ttf') format('truetype'),
		url('../fonts/lato-v24-latin-regular.svg#Lato') format('svg');
}

@font-face {
	font-display: swap;
	font-family: 'Lato';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/lato-v24-latin-700.eot');
	src: url('../fonts/lato-v24-latin-700.eot?#iefix') format('embedded-opentype'),
		url('../fonts/lato-v24-latin-700.woff2') format('woff2'),
		url('../fonts/lato-v24-latin-700.woff') format('woff'),
		url('../fonts/lato-v24-latin-700.ttf') format('truetype'),
		url('../fonts/lato-v24-latin-700.svg#Lato') format('svg');
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	font-size: 16px;
}

body {
	color: #000;
	background: #f4f4f4;
	font-family: Lato, Helvetica, Arial, sans-serif;
	font-size: .987rem;
	line-height: 1.4;
}

#wrapper {
	background: #f4f4f4;
	margin: 1rem auto;
	max-width: 50rem;
	overflow: hidden;
	position: relative;
	border-radius: 0.1875rem;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: nowrap;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

h1 {
	font-size: 1.062rem;
	line-height: 1.2;
	background-color: #fff;
	margin: 0 0 1rem;
	text-align: center;
}

h2 {
	font-size: 1rem;
	line-height: 1.2;
	margin: 0;
}

:is(h1, h2, strong) {
	font-weight: 700;
}

p {
	margin: 0 0 1rem;
}

.justify {
	text-align: justify;
}

header {
	margin-bottom: 0.5rem;
	background-color: #fff;
}

section {
	background-color: #fff;
	margin-bottom: 0.75rem;
	padding: 1rem;
}

ul {
	list-style: none;
	margin: 0 0 1rem 32px;
	padding: 0;
}

ul li {
	padding-left: 30px;
}

ul li:before {
	content: "\2022";
	float: left;
	margin-left: -30px;
}


.nomargin {
	margin: 0;
}

a.link {
	background: #C61116;
	color: #fff;
	font-size: 0.938rem;
	font-weight: bold;
	text-align: center;
	display: block;
	width: 42%;
	border-radius: 0.313rem;
	margin: 1.25rem auto 0.938rem;
	padding: 0.438rem 0;
}

a.link:hover {
	text-decoration: underline;
}

.center p,
.center h2 {
	text-align: center;
}


@media only screen and (max-width: 49.937rem) {
	#wrapper {
		border: none;
		margin: 0 auto;
	}

	p,
	ul {
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
		text-align: left;
	}

	ul {
		margin: 0 0 1rem 1.2rem
	}

	.justify {
		text-align: left;
	}

	section {
		padding: 0.5rem 1rem;
	}

	a.link {
		width: 20rem;
	}

	ul {
		margin: 0;
	}

	ul li {
		padding-left: .937rem;
	}

	ul li:before {
		margin-left: -.937rem;
	}
}

@media only screen and (max-width: 30rem) {
	a.link {
		width: 100%;
	}
}