@charset "utf-8";

/* source-sans-3-regular - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Source Sans 3';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/source-sans-3-v19-latin-regular.eot');
	/* IE9 Compat Modes */
	src: url('../fonts/source-sans-3-v19-latin-regular.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('../fonts/source-sans-3-v19-latin-regular.woff2') format('woff2'),
		/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		url('../fonts/source-sans-3-v19-latin-regular.woff') format('woff'),
		/* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
		url('../fonts/source-sans-3-v19-latin-regular.ttf') format('truetype'),
		/* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
		url('../fonts/source-sans-3-v19-latin-regular.svg#SourceSans3') format('svg');
	/* Legacy iOS */
}

/* source-sans-3-800 - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Source Sans 3';
	font-style: normal;
	font-weight: 800;
	src: url('../fonts/source-sans-3-v19-latin-800.eot');
	/* IE9 Compat Modes */
	src: url('../fonts/source-sans-3-v19-latin-800.eot?#iefix') format('embedded-opentype'),
		/* IE6-IE8 */
		url('../fonts/source-sans-3-v19-latin-800.woff2') format('woff2'),
		/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
		url('../fonts/source-sans-3-v19-latin-800.woff') format('woff'),
		/* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
		url('../fonts/source-sans-3-v19-latin-800.ttf') format('truetype'),
		/* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
		url('../fonts/source-sans-3-v19-latin-800.svg#SourceSans3') format('svg');
	/* Legacy iOS */
}

:root {
	font-size: 16px;
}


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: #000;
	font-family: "Source Sans 3", "Arial", sans-serif;
	line-height: 1.3;
	font-size: 15px;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

#wrapper {
	position: relative;
	margin: 1rem auto 0;
}

.container {
	max-width: 58.75rem;
	margin: 0 auto 0;
	position: relative;

}

.content {
	max-width: 58.75rem;
	margin: 0 auto;
	display: block;
	box-shadow: 3px 3px 11px 2px #939095;
	margin: 0 auto 0;
	position: relative;
}


:is(a:link, a:visited, a:hover, a:active) {
	color: inherit;
	text-decoration: none;
	white-space: pre-line;
}

a.color {
	word-break: break-word;
	white-space: normal;
	color: rgb(0, 0, 238);
}

p {
	margin: 15px 0 15px;
}

h1 {
	font-size: 25px;
	font-weight: 800;
	color: #970911;
	margin: 0 0 2rem;
	text-align: left;
}

h2 {
	font-size: 16px;
	font-weight: 800;
	color: #970911;
	text-align: left;
	margin: 0 0 1rem;
}

h3 {
	font-size: 20px;
	letter-spacing: 1px;
	text-align: center;
	padding: 0 4%;
	font-weight: 800;
	color: #970911;
	margin: 1rem 0;
}

ul {
	margin: 0 0 1rem;
}

ul li {
	list-style-type: none;
	margin: 0.25rem 0;
	padding-left: 1.5rem;
	position: relative;
	overflow: hidden;
}

ul li:before {
	content: "•";
	color: #000;
	position: absolute;
	margin-top: 0;
	left: 0;
	font-size: 18px;
	top: -4px;
}

header {
	position: relative;
}

.logo {
	position: absolute;
	top: 0;
	right: 0;
	width: 28%;
	display: block;
	background-color: #fff;
	padding: 27px 37px;
}


.flex {
	padding-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.section {
	width: 64%;
	padding-left: 4%;
	padding-right: 5px;
}

.aside {
	width: 33%;
}

.box {
	background-color: #970911;
	display: block;
	padding: 1rem;
	margin-bottom: 1rem;
	color: #fff;
}

.box p {
	display: flex;
	flex-direction: row;
	margin: 0;
}

.box p span:nth-of-type(1) {
	width: 40%;
}

.box p span:nth-of-type(2) {
	width: 60%
}

.justify {
	text-align: justify;
	padding: 0 1rem;
}

.row {
	position: relative;
	background-color: #970911;
	padding: 1rem 4%;
	color: #ffffff;
}

.last {
	text-align: end;
	margin: 0;
}

footer {
	margin-top: 100px;
	border-top: 1px solid #970911;
	background: #fff;
	padding: 0.5rem 0;
}

.footer_flex {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}

a.btn {
	color: #fff;
	background: #970911;
	border: 1px solid #970911;
	font-size: 1rem;
	padding: 0.5em 1.2em;
}

@media only screen and (max-width: 939px) {
	#wrapper {
		border: none;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 800px) {
	.flex {
		flex-direction: column-reverse;
	}

	.section,
	.aside {
		width: 100%;
	}

	.section {
		padding: 0 1.25rem;
	}

	.box,
	.row {
		padding: 1.25rem;
	}

	.justify {
		padding: 0 1.25rem;
		text-align: left;
	}

	body {
		text-align: left;
	}

	footer {
		margin: 1.25rem 0 0;
		padding: 0.5rem 1.25rem;
	}

	.logo {
		padding: 1.25rem;
	}
}

@media only screen and (max-width: 550px) {
	.footer_flex {
		flex-direction: column;
	}

	.logo {
		position: static;
		width: 100%;
		display: flex;
		justify-content: center;

	}

	a.btn {
		width: 100%;
		text-align: center;
	}

	h1 {
		text-align: center;
	}

	.row p,
	.last {
		text-align: center;
	}
}