:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

@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');
}

html {
	min-height: 100%;
}

body {
	color: #004071;
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
}

#wrapper {
	max-width: 910px;
	margin: 16px auto;
	border: 1px solid #000;
	padding: 0px;
	background: #fff;
	overflow: hidden;
}

header {
	padding: 40px 60px 20px;
	display: flex;
	justify-content: flex-end;
}

article {
	padding: 20px 60px;
}

footer {
	padding: 130px 60px 30px;
	background: url('../images/background.jpg') no-repeat 0 0;
}

p {
	margin: 0 0 16px;
}

strong {
	font-weight: 700;
}

h1 {
	margin: 0 0 40px;
	font-weight: 700;
	font-size: 48px;
	line-height: 55px;
}

h2 {
	margin: 50px 0 16px;
	font-size: 20px;
	font-weight: 700;
	line-height: 26px;
}

h3 {
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
}

h4 {
	font-weight: 700;
	font-size: 18px;
	line-height: 22px;
}

h1 small {
	display: block;
	font-size: 22px;
	line-height: 25px;
	margin-top: 7px;
}

.flex_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flex_box .item {
	width: 32%;
}

footer p {
	font-size: 14px;
	line-height: 19px;
}

.flex_footer {
	display: flex;
	flex-wrap: wrap;
	gap: 178px;
	align-items: center;
	margin-top: 40px;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #004071;
	text-decoration: none;
	position: relative;
}

ul {
	padding: 10px 0 16px;
	list-style: none;
	font-size: 14px;
	line-height: 19px;
}

ul li {
	padding-left: 15px;
	position: relative;
}

li:before {
	content: "";
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #004071;
	position: absolute;
	z-index: 3;
	left: 0;
	top: 8px;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.flex p {
	width: 48%;
	text-align: justify;
	font-size: 17px;
}

footer :is(h4, p, a) {
	color: #fff !important;
}

.mobileopen {
	display: none;
}

@media all and (max-width:909px) {
	#wrapper {
		margin: 0;
		border: none;
	}

	:is(ul, p) {
		hyphens: auto;
		text-wrap: pretty;
	}

	header {
		padding: 16px;
	}

	article {
		padding: 0 16px;
	}

	footer {
		padding: 130px 16px 16px;
	}

	.flex p {
		text-align: left;
	}

	h1 br {
		display: none;
	}

	p span {
		white-space: nowrap;
	}
}

@media all and (max-width:767px) {
	.flex {
		display: block;
	}

	.flex p {
		width: 100%;
		display: inline;
		margin-bottom: 0;
	}

	.mobileopen {
		display: inline;
	}

	.mobilenone {
		display: none;
	}

	h1 {
		font-size: 28px;
		line-height: 33px;
	}

	h1 small {
		font-size: 20px;
		line-height: 24px;
	}

	h2 {
		margin-top: 16px;
		font-size: 18px;
		line-height: 22px;
	}

	ul {
		font-size: 14px;
		line-height: 18px;
	}

	.flex_box .item {
		width: 100%;
	}

	footer {
		margin-top: -74px;
		background: url('../images/background.jpg') no-repeat 0 0;
		background-size: auto 100%;
	}

	.flex_footer {
		gap: 15px;
		margin-top: 16px;
	}

	.flex_footer p {
		margin-bottom: 0;
	}
}