﻿@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-v30-latin-regular.eot');
	src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
	font-display: swap;
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-v30-latin-700.eot');
	src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	min-height: 100%;
}

body {
	font-family: 'Roboto', Arial, sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #242021;
	font-weight: 400;
}

#wrapper {
	max-width: 470px;
	margin: 1rem auto;
	border: solid 2px #3076B5;
	overflow: hidden;
	position: relative;
	background: #3076B5;
}

:is(strong, h1, h2, h3) {
	font-weight: 700;
}

header {
	padding: 27px 16px 8px;
	background: #fff;
	-webkit-border-top-left-radius: 60px;
	-webkit-border-top-right-radius: 60px;
	-moz-border-radius-topleft: 60px;
	-moz-border-radius-topright: 60px;
	border-top-left-radius: 60px;
	border-top-right-radius: 60px;
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-end;
	gap: 10px;
}

header p {
	flex: 1 1 0;
}

article {
	padding: 0 16px 8px;
	background: #fff;
	-webkit-border-bottom-right-radius: 60px;
	-webkit-border-bottom-left-radius: 60px;
	-moz-border-radius-bottomright: 60px;
	-moz-border-radius-bottomleft: 60px;
	border-bottom-right-radius: 60px;
	border-bottom-left-radius: 60px;
}

.flexbox {
	display: flex;
	justify-content: space-between;
}

.flexbox div {
	width: 48%;
}

.flexbox div:nth-of-type(2) {
	width: 50%;
}

:is(.flexbox + p, h1, footer :is(p, h3)) {
	text-align: center;
}

footer {
	padding: 0 0 5px;
}

footer :is(p, h3) {
	color: #fff;
}

h1 {
	font-size: 28px;
	line-height: 1.1;
}

h1 span {
	font-size: 17px;
}

h1 small {
	display: block;
}

h2 {
	font-size: 16px;
	margin: 8px 0 0;
	line-height: 20px;
	text-decoration: underline;
}

h3 {
	font-size: 20px;
	margin: 8px 0 0;
	line-height: 23px;
}

img {
	max-width: 100%;
}

p {
	text-align: justify;
	hyphens: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #242021;
	text-decoration: none;
	white-space: nowrap;
}

ul {
	margin: 0 0 8px;
	list-style: none;
}

ul li {
	padding-left: 12px;
}

li:before {
	text-indent: -12px;
	content: "\2022";
	color: #242021;
	float: left;
	font-size: 25px;
	font-family: Arial, sans-serif;
}

@media screen and (max-width:468px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	:is(p, ul) {
		hyphens: auto;
		text-wrap: pretty;
	}

	p {
		text-align: left;
	}

	header {
		align-items: center;
	}

	:is(.flexbox, header) {
		flex-direction: column;
	}

	.flexbox div {
		width: 100% !important;
	}

	span {
		white-space: nowrap;
	}

	ul br {
		display: none;
	}
}