@font-face {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/pt-sans-v17-latin-regular.eot');
	src: local(''), url('../fonts/pt-sans-v17-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/pt-sans-v17-latin-regular.woff2') format('woff2'), url('../fonts/pt-sans-v17-latin-regular.woff') format('woff'), url('../fonts/pt-sans-v17-latin-regular.ttf') format('truetype'), url('../fonts/pt-sans-v17-latin-regular.svg#PTSans') format('svg');
}

@font-face {
	font-family: 'PT Sans';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/pt-sans-v17-latin-700.eot');
	src: local(''), url('../fonts/pt-sans-v17-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/pt-sans-v17-latin-700.woff2') format('woff2'), url('../fonts/pt-sans-v17-latin-700.woff') format('woff'), url('../fonts/pt-sans-v17-latin-700.ttf') format('truetype'), url('../fonts/pt-sans-v17-latin-700.svg#PTSans') format('svg');
}

:root {
	font-size: 16px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	min-height: 100%;
}

body {
	font-family: 'PT Sans', Arial, sans-serif;
	line-height: 1.2;
	font-size: 16px;
	color: #fff;
	font-weight: 400;
}

#wrapper {
	margin: 1rem auto;
	border: 2px #ED1C37 solid;
	max-width: 800px;
	position: relative;
	background-color: #FFFFFF;
	overflow: hidden;
}

p {
	padding-bottom: 15px;
}

:is(h1, h2, h3) {
	font-weight: 700;
	line-height: 1.1;
}

h1 {
	padding: 10px 0 18px;
	font-size: 36px;
	letter-spacing: 1px;
}

h2 {
	font-size: 19px;
	margin: 0 0 10px;
	letter-spacing: 1px;
}

h3 {
	font-size: 16px;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #242021;
	text-decoration: none;
	white-space: nowrap;
}

img {
	max-width: 100%;
	vertical-align: top;
}

ul {
	margin: 0 0 15px;
	list-style: none;
}

ul li {
	padding-left: 20px;
	margin-top: 4px;
}

ul li:before {
	content: "\2010";
	float: left;
	font-size: 21px;
	text-indent: -20px;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: -1px;
	line-height: 1;
}

ul+p {
	padding-right: 200px;
}

article {
	background: #E30028 url(../images/background.jpg) bottom right no-repeat;
	margin: 5px 0 0;
	padding: 16px 16px 16px 25px;
}

.width {
	width: 480px;
}

footer {
	padding: 20px 25px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

footer p {
	color: #242021;
	font-weight: 700;
	line-height: 18px;
	font-size: 15px;
	padding: 0;
}

.logo {
	display: flex;
	align-items: center;
	gap: 50px;
}

.logo a:nth-of-type(2) img {
	margin-top: -20px;
}

.red {
	color: #ED1C37;
}

.color {
	color: #003B6A;
}

figure {
	display: none;
}

@media only screen and (max-width:799px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	:is(ul, p, h1) {
		hyphens: auto;
	}

	ul li br {
		display: none;
	}

	article {
		height: auto;
		background-size: auto 100%;
		padding-left: 16px;
	}

	footer {
		padding: 0 16px 16px;
	}

	ul+p {
		padding-right: 19%;
	}

	p span {
		white-space: nowrap;
	}

}

@media only screen and (max-width:766px) {
	h1 {
		font-size: 28px;
		text-align: center;
	}

	article  br {
		display: none;
	}

	article {
		background-image: none;
	}

	footer {
		flex-direction: column;
		align-items: center;
		padding: 1rem;
		gap: 10px;
	}

	footer p {
		text-align: center;
	}

	.logo a:nth-of-type(2) img {
		margin-top: 0;
	}

	ul+p {
		padding-right: 0;
	}

	.width {
		width: auto;
	}

	figure {
		display: block;
	}
}