﻿@font-face {
	font-display: swap;
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
	src: url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}

@font-face {
	font-display: swap;
	font-family: 'Roboto Condensed';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-condensed-v25-latin-700.eot');
	src: url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'), url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'), url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'), url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

body {
	font-family: 'Roboto Condensed', Arial, sans-serif;
	font-size: 15px;
	line-height: 1.3;
	color: #242021;
	font-weight: 400;
}

#wrapper {
	max-width: 800px;
	margin: 1rem auto;
	border: solid thin #002856;
	overflow: hidden;
	position: relative;
}

:is(strong, h1, h2) {
	font-weight: 700;
}

:is(h1, h2) {
	color: #002856;
}

article {
	padding: 20px 35px 1px;
}

.flexbox {
	display: flex;
	gap: 20px;
}

.flexbox div {
	width: 46%;
}

footer {
	padding: 20px 30px;
	background: #002856;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer a {
	color: #fff !important;
}

footer p {
	font-size: 26px;
	line-height: 30px;
}

h1 {
	font-size: 41px;
	margin: 20px 0;
	line-height: 1.1;
}

h1 span {
	font-size: 23px;
}

h2 {
	font-size: 18px;
	line-height: 22px;
}

h3 {
	color: #002856;
	font-size: 22px;
	line-height: 1.25;
	margin-bottom: 12px;
}

h4 {
	color: #002856;
	font-size: 23px;
	line-height: 1.25;
	text-align: center;
	margin: 0 0 4px;
}

img {
	max-width: 100%;
}

h4+p {
	text-align: center;
}

p {
	margin-bottom: 12px;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #242021;
	text-decoration: none;
	white-space: nowrap;
}

ul {
	margin: 0 0 16px;
	list-style: none;
}

ul li {
	padding-left: 10px;
}

li:before {
	text-indent: -10px;
	content: "\2022";
	color: #000;
	float: left;
	font-size: 18px;
	margin-top: -1px;
}

@media screen and (max-width:798px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	:is(p, ul) {
		hyphens: auto;
		text-wrap: pretty;
		text-align: left;
	}

	span {
		white-space: nowrap;
	}

	article {
		padding: 16px 16px 10px;
	}

	footer {
		padding: 16px;
	}

	.flexbox {
		justify-content: space-between;
		gap: 0;
	}

	.flexbox div {
		width: 48%;
	}
}

@media screen and (max-width:620px) {
	footer {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	footer p {
		text-align: center;
	}

	.flexbox {
		flex-direction: column;
	}

	.flexbox div {
		width: 100%;
	}

	h2 {
		margin-top: 16px;
	}

	ul {
		margin-bottom: 0;
	}
}