:root {
	font-size: 16px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/open-sans-v34-latin-regular.eot');
	src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/open-sans-v34-latin-700.eot');
	src: local(''), url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700.woff') format('woff'), url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}

html {
	min-height: 100%;
}

body {
	color: #555;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 15px;
	line-height: 20px;
	font-weight: 400;
}

#wrapper {
	max-width: 1080px;
	margin: 16px auto;
	border: 1px solid #555;
	background: #fff url('../images/background.jpg') no-repeat right bottom;
	background-size: 100% 84%;
	overflow: hidden;
}

article {
	padding: 10px 50px 1px;
}

p {
	margin: 0 0 16px;
}

strong {
	font-weight: 700;
}

h1 {
	margin: 0 0 10px;
	font-weight: 400;
	font-size: 48px;
	line-height: 54px;
	color: #CDAF63;
}

h2 {
	margin: 0 0 20px;
	font-size: 21px;
	font-weight: 700;
	line-height: 25px;
	color: #CDAF63;
}

:is(a:link, a:visited, a:hover, a:active) {
	color: #555;
	text-decoration: none;
	white-space: nowrap;
}

ul {
	padding: 0 0 16px;
	list-style: none;
}

ul li {
	padding-left: 16px;
	position: relative;
}

li:before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #CDAF63;
	position: absolute;
	z-index: 3;
	left: 0;
	top: 8px;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

.box {
	color: #CDAF63;
	display: flex;
	gap: 5px 16px;
	padding-bottom: 10px;
	margin-bottom: 40px;
	border-bottom: 1px solid #adadad;
	flex-wrap: wrap;
}

.flex_box {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 25px;
}

.list {
	width: 23.5%;
}

.buttom {
	margin: 35px 0;
	display: flex;
	justify-content: center;
}

.buttom a {
	display: inline-block;
	background: #CDAF63;
	color: #fff !important;
	font-weight: 700;
	padding: 16px 45px;
	text-align: center;
	width: 62%;
	font-size: 28px;
	line-height: 33px;
}

.image {
	padding-bottom: 25px;
	display: flex;
	justify-content: center;
}

.center {
	text-align: center;
}

.flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding-bottom: 25px;
}

.item {
	width: 49%;
}

.box p {
	display: flex;
	align-items: center;
	gap: 0 5px;
	margin: 0;
}

.logo {
	padding: 0 0 30px;
}

.icon {
	display: flex;
	justify-content: center;
	gap: 0 16px;
	align-items: center;
	margin-bottom: 16px;
}

@media all and (max-width:1079px) {
	#wrapper {
		margin: 0;
		border: none;
	}

	:is(ul, p) {
		hyphens: auto;
	}

	article {
		padding: 16px;
	}

	footer {
		padding: 0 16px 16px;
	}

	h1 {
		font-size: 28px;
		line-height: 34px;
	}

	.item {
		width: 49%;
	}

	br {
		display: none;
	}

	p span {
		white-space: nowrap;
	}
}

@media all and (max-width:767px) {
	.list {
		width: 49%;
	}

	.buttom a {
		width: auto;
		padding: 15px 30px;
	}
}

@media all and (max-width:575px) {
	:is(.item, .list) {
		width: 100%;
	}
}