﻿@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: 15px;
	line-height: 20px;
	color: #242021;
	font-weight: 400;
}

#wrapper {
	max-width: 900px;
	margin: 1rem auto;
	border: solid thin #242021;
	overflow: hidden;
	position: relative;
}

strong {
	font-weight: 700;
}

header {
	padding: 30px 60px;
	background: #FBB900;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

article {
	padding: 30px 60px;
	background: url(../images/background-bottom.jpg) bottom right no-repeat;
}

.flexbox {
	display: flex;
	justify-content: space-between;
}

.flexbox div {
	width: 48%;
}

footer {
	padding: 40px 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #F5F5F5;
	font-size: 13px;
}

section {
	margin: 35px 0 35px -30px;
	padding: 0 0 0 175px;
	background: url(../images/background-title.jpg) left center no-repeat;
}

.box-qrcode {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin: 20px 0;
}

.box-qrcode p {
	width: 75%;
}

h1 {
	font-size: 41px;
	margin: 6px 0;
	line-height: 1.2;
	font-weight: 700;
}

h1 span {
	font-weight: 400;
}

h1 small {
	font-weight: 400;
	font-size: 17px;
}

h2 {
	font-size: 15px;
	margin: 0 0 3px;
	line-height: 19px;
	font-weight: 400;
	letter-spacing: 3px;
}

img {
	max-width: 100%;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #242021;
	text-decoration: none;
	white-space: nowrap;
}

ul {
	margin: 0 0 25px;
	list-style: none;
}

ul li {
	padding-left: 18px;
}

li:before {
	text-indent: -18px;
	content: "\2022";
	color: #FBB900;
	float: left;
	font-size: 17px;
	font-family: Arial, sans-serif;
}

@media screen and (max-width:898px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	:is(p, ul) {
		hyphens: auto;
		text-wrap: pretty;
	}

	:is(header, article, footer) {
		padding: 16px;
	}

	p span {
		white-space: nowrap;
	}

	p br {
		display: none;
	}

	section {
		margin-left: 0;
	}

	h1 {
		font-size: 32px;
	}
}

@media screen and (max-width:625px) {
	header, footer  {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.flexbox {
		flex-direction: column;
	}

	.flexbox div {
		width: auto;
	}

	:is(header, footer) p {
		text-align: center;
	}
}

@media screen and (max-width:580px) {
	section {
		background-size: 70px auto;
		padding-left: 85px;
	}

	h1 {
		font-size: 24px;
	}
}