* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
	color: #121212;
}

html {
	height: 100%;
}

body {
	position: relative;
	background: #f0f5f8;
	overflow-x: hidden;
	padding-bottom: 153px;
	min-height: 100%;
	-webkit-text-size-adjust: 100%;
}

@media (max-width: 1200px) {
	body {
		padding-bottom: 94px;
	}
}

@media (max-width: 768px) {
	body {
		padding-bottom: 152px;
	}
}

a {
	text-decoration: none;
}

table {
	margin-bottom: 40px;
}
tr,td {
	margin: auto auto 15px; border: 2px; border-radius: 5px; background: rgb(225, 243, 247); 
	padding: 8px 5px;
}

.header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #000;
	padding: 10px calc((100% - 1170px) / 2);
	z-index: 5;
}

@media (max-width: 1024px) {
	.header {
		flex-wrap: wrap;
	}
}

@media (max-width: 1200px) {
	.header {
		padding: 10px 20px;
	}
}

@media (max-width: 768px) {
	.header {
		flex-direction: column;
	}
}

.header__logo {
	min-width: 210px;
	width: 100%;
	max-height: 78px;
	color: #fff;
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
	.header__logo {
		max-width: 100%;
	}
}

.header__menu {
	position: relative;
	width: 100%;
}

@media (max-width: 1024px) {
	.header__menu {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.header__menu {
		min-height: 50px;
	}
}

.header__menu ul {
	width: 100%;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	margin-bottom: -20px;
}

@media (max-width: 1024px) {
	.header__menu ul {
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.header__menu ul {
		display: inline-flex;
		/* flex-direction: column; */
		align-items: center;
		/* padding-top: 50px; */
		padding-bottom: 20px;
		max-height: 0;
		transition: all 0.3s linear;
	}
}

.header__menu ul li {
	position: relative;
	margin: 0 10px 20px !important;
}

@media (max-width: 1024px) {
	.header__menu ul li {
		margin: 0 45px;
		height: 35px;
		line-height: 35px;
	}
}

@media (max-width: 768px) {
	.header__menu ul li {
		width: 50%;
		margin: 0 0 5px !important;
		text-align: center;
		height: auto;
	}
}

.header__menu ul li:first-child {
	margin-left: 0;
}

.header__menu ul li a,
.header__menu ul li span {
	border-radius: 10px;
	color: #1095b5;
	font-weight: bold;
	padding: 12px 19px;
	background: #f0f9fb;
	border-color: #f0f9fb;
}

.header__menu ul li:last-of-type a,
.header__menu ul li span {
	background-color: transparent;
}

.header__menu ul li:last-of-type a {
	color: #fff;
	background: linear-gradient(180deg, #ff9e2c, #ffb72c), #ff9e2c;
	border-color: linear-gradient(180deg, #ff9e2c, #ffb72c), #ff9e2c;
}

.header__menu ul li a:hover,
.header__menu ul li span:hover {
	color: #affc80;
}

.header__menu ul li.current-menu-item span {
	color: #affc80;
}

#nav-icon {
	width: 30px;
	height: 25px;
	margin: 0;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	display: none;
	position: absolute;
	z-index: 5;
	right: 11px;
	top: 15px;
}

@media (max-width: 768px) {
	#nav-icon {
		display: none;
	}
}

#nav-icon span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #fff;
	border-radius: 4px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0);
	-moz-transform: rotate(0);
	-o-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
	top: 0;
}

#nav-icon span:nth-child(2) {
	top: 9px;
}

#nav-icon span:nth-child(3) {
	top: 18px;
}

.container {
	padding: 40px calc((100% - 1170px) / 2) 100px;
}

@media (max-width: 1200px) {
	.container {
		padding: 40px 20px 100px;
	}
}

.front__content {
	margin-top: 40px;
	width: 100%;
	order: 3;
}

.front__content.top-text {
	margin-bottom: 30px;
	margin-top: 30px;
}

ul, ol {
	padding-left: 20px;
}

li::marker {
	color: #1095b5;
}

.footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #000;
	padding: 10px calc((100% - 1170px) / 2);
}

.footer .footer-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 768px) {
	.footer .footer-wrap {
		flex-direction: column;
	}
}

@media (max-width: 1200px) {
	.footer {
		padding: 10px 20px;
	}
}

.footer__logo {
	max-width: 210px;
	min-width: 210px;
	width: 100%;
}

@media (max-width: 768px) {
	.footer__logo {
		margin: 0 auto 15px;
	}

	.footer_image_container {
		flex-direction: column;
	}
}

.footer__logo img {
	width: 100%;
}

.text-enter>*:last-child {
	margin: 0;
}

.footer_image_container {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.approved {
	width: 200px;
}

.text-enter p {
	font-size: 18px;
	line-height: 32px;
	color: #434656;
	margin: 0 0 40px;
}
.text-enter ul {
	font-size: 18px;
	line-height: 25px;
	color: #434656;
	margin: 0 0 40px;
}
.text-enter ol {
	font-size: 18px;
	line-height: 25px;
	color: #434656;
	margin: 0 0 40px;
}


h2 {
	color: #1095b5;
	font-size: 24px;
}

.text-enter h1 {
	color: #1095b5;
	font-weight: 700;
	margin-bottom: 40px;
	font-size: 30px;
}

.text-enter h1 {
	margin-bottom: 45px;
	font-size: 36px;
}

@media (max-width: 768px) {
	.text-enter h1 {
		font-size: 34px;
	}
}

img {
	max-width: 100%;
	height: auto;
}

.footer-copy {
	margin-top: 10px;
	color: #fff;
	text-align: center;
}
