

@font-face {
	font-family: "Raleway";
	src: url("../fonts/Raleway-Regular.ttf");
}

@font-face {
	font-family: "Raleway Bold";
	src: url("../fonts/Raleway-Bold.ttf");
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: sans-serif;
	color: #121212;
}

html {
	height: 100%;
}

body {
	position: relative;
	background: #f5f7fa;
	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;
	margin: auto auto 10px;
	border: 2px;
	border-radius: 5px;
	background: linear-gradient(to left top, rgb(157,252,99), rgb(245,247,250));
	width: 100%;
	height: 72px;
}

tr {
	height: 35px;
}

th {
	text-align: center;
	width: auto;
	border: 1px solid #939393;
	border-radius: 5px;
	color: #485471;
	height: 35px;
	background:#9dfc63
}

td {
	text-align: center;
	width: auto;
	border: 1px solid #939393;
	border-radius: 5px;
	color: #485471;
	height: 35px;
}

.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 {
	max-width: 210px;
	min-width: 210px;
	width: 100%;
	max-height: 78px;
}

@media (max-width: 768px) {
	.header__logo {
		margin: 0 auto;
	}
}

.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: none;
		flex-direction: column;
		padding-top: 50px;
		padding-bottom: 20px;
		max-height: 0;
		overflow: hidden;
		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: 100%;
		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 {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
}

.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: block;
	}
}

#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;
}

.footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #191a1f;
	padding: 40px 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__logo img {
	width: 100%;
}

.text-enter>*:last-child {
	margin: 0;
}

.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;
}
.text-enter h1 {
	color: #434656;
	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;
}
