﻿@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: #000;
	font-weight: 400;
}

#wrapper {
	max-width: 800px;
	margin: 1rem auto;
	border: solid thin #000;
	overflow: hidden;
	position: relative;
}

strong {
	font-weight: 700;
}

article {
	padding: 0 20px;
}

footer {
	padding: 16px 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

footer p {
	font-size: 12px;
	line-height: 17px;
}

section {
	margin: 16px -20px 0;
	padding: 10px 20px 16px;
	background: #F0F6FA;
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

section p {
	font-size: 14px;
	line-height: 19px;
}

section div {
	width: 33%;
}

section div:nth-of-type(2) {
	border-left: #D6DEE3 2px solid;
	border-right: #D6DEE3 2px solid;
	padding: 0 16px;
}

.box-blue {
	margin: 0 -20px;
	padding: 16px 20px;
	background: #009BD9;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.box-blue :is(p, a) {
	color: #fff !important;
	font-size: 12px;
	line-height: 17px;
}

.box-blue p {
	border-left: #fff 2px solid;
	padding-left: 16px;
}

.box-blue p:nth-of-type(2) {
	border-right: #fff 2px solid;
	padding-right: 12px;
}

h1 {
	font-size: 45px;
	margin: 16px 0 10px;
	line-height: 1.2;
	font-weight: 700;
}

h1 span {
	font-size: 19px;
}

h1 + p {
	margin-bottom: 20px;
}

h2 {
	font-size: 16px;
	margin: 6px 0 16px;
	line-height: 20px;
	font-weight: 700;
}

img {
	max-width: 100%;
}

p:not(:last-child) {
	margin-bottom: 6px;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #000;
	text-decoration: none;
	white-space: nowrap;
}

ul {
	list-style: none;
}

ul li {
	padding-left: 17px;
	font-size: 14px;
	line-height: 19px;
}

li:before {
	text-indent: -17px;
	content: "\2022";
	color: #000;
	float: left;
	font-size: 17px;
	font-family: Arial, sans-serif;
}

@media screen and (max-width:798px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	:is(p, ul) {
		hyphens: auto;
		text-wrap: pretty;
	}

	section, .box-blue {
		flex-direction: column;
	}

	.box-blue {
		gap: 16px;
	}

	.box-blue p {
		border: none;
		padding: 0;
		text-align: center;
	}

	section div {
		width: auto;
	}

	section div:nth-of-type(2) {
		padding: 0;
		border: none;
	}

	p span {
		white-space: nowrap;
	}
}

@media screen and (max-width:767px) {
	h1 {
		font-size: 30px;
	}
}