@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/roboto-v30-latin-regular.eot');
	src: local(''), 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-family: 'Roboto';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/roboto-v30-latin-700.eot');
	src: local(''), 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');
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	min-height: 100%;
}

body {
	font-family: 'Roboto', Arial, sans-serif;
	line-height: 20px;
	font-size: 15px;
	color: #214E65;
	font-weight: 400;
}

#wrapper {
	margin: 1rem auto;
	border: 6px #43657B solid;
	max-width: 590px;
	position: relative;
	background-color: #FFFFFF;
	overflow: hidden;
}

p {
	padding-bottom: 10px;
}

:is(h1, h2, h3, strong) {
	font-weight: 700;
}

h1 {
	margin: 0 0 15px;
	font-size: 20px;
	line-height: 28px;
}

h2 {
	font-size: 22px;
	line-height: 1;
	position: absolute;
	color: #F8CB04;
	bottom: -3px;
	right: 4px;
}

h3 {
	color: #F8CB04;
	font-size: 18px;
	margin: 15px 0;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #214E65;
	text-decoration: none;
	white-space: nowrap;
}

a.link {
	font-weight: 700;
	font-size: 19px;
}

img {
	max-width: 100%;
	vertical-align: top;
}

header {
	display: flex;
	align-items: flex-start;
	gap: 50px;
}

.logo {
	width: 312px;
	height: 141px;
	background: url(../images/background.jpg) 0 0 no-repeat;
	padding: 33px;
}

header p {
	font-weight: 700;
	padding: 37px 0 0;
}

header span {
	display: block;
	margin-left: -17px;
}

article {
	padding: 30px 30px 13px;
}

.banner {
	margin: 0 0 47px -30px;
	position: relative;
	display: flex;
}

footer {
	position: absolute;
	bottom: 0;
	right: 0;
}

.qrcode {
	position: relative;
}

footer a img {
	position: absolute;
	bottom: 9.5%;
	right: 10%;
	width: 33%;
}

@media only screen and (max-width:588px) {
	#wrapper {
		border: none;
		margin: 0;
	}

	p {
		hyphens: auto;
		text-wrap: pretty;
	}

	article {
		padding: 30px 16px 48px;
	}

}

@media only screen and (max-width:533px) {
	header {
		align-items: flex-end;
		gap: 0;
		justify-content: space-between;
		padding-right: 16px;
	}

	header p {
		padding: 0;
	}

	h2 {
		font-size: 5vw;
	}

	h1 span {
		display: inline-block;
	}

	article p:nth-of-type(1) br {
		display: none;
	}

	footer {
		position: static;
		display: flex;
		justify-content: flex-end;
		margin-top: -46%;
	}

}

@media only screen and (max-width:480px) {
	header {
		flex-direction: column;
		align-items: center;
		gap: 18px;
	}

	.logo {
		width: 100%;
		height: auto;
		padding: 25px 16px;
		background: #214E65;
		display: flex;
		justify-content: center;
	}

	header p {
		text-align: center;
	}

	header p span {
		margin: 0;
	}

	footer {
		margin-top: 0;
	}

}