@media all {
	ul {
		box-sizing: border-box;
	}

	header,
	nav {
		display: block;
	}

	a {
		background-color: transparent;
	}

	a:active,
	a:hover {
		outline: 0;
	}

	strong {
		font-weight: 700;
	}

	img {
		border: 0;
	}

	input {
		color: inherit;
		font: inherit;
		margin: 0;
	}

	input::-moz-focus-inner {
		border: 0;
		padding: 0;
	}

	input {
		line-height: normal;
	}

	*,
	*:before,
	*:after {
		box-sizing: inherit;
	}

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

	ul,
	form {
		margin: 0 0 1.2em;
	}

	ul {
		padding-left: 3em;
	}

	ul ul {
		padding-left: 3em;
		margin: 0;
	}

	ul {
		list-style-type: disc;
	}

	form {
		margin: 0;
		padding: 0;
		border-style: none;
	}

	ul ul {
		margin: 0;
	}

	a {
		color: #39f;
		outline: none;
		text-decoration: none;
		-webkit-transition: color .3s linear, background .3s linear, opacity .3s linear, border-color .3s linear;
		transition: color .3s linear, background .3s linear, opacity .3s linear, border-color .3s linear;
	}

	a:hover {
		text-decoration: none;
		color: #0073e6;
	}

	* {
		outline: none;
	}

	a {
		color: #363636;
	}

	.container {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
		padding: 0 20px;
		z-index: 9;
	}

	@media (max-width:1023px) {
		.container {
			padding-left: 15px;
			padding-right: 15px;
		}
	}

	.header {
		background: #fff;
		padding: 32px 0 29px;
		position: fixed;
		width: 100%;
		z-index: 99;
	}

	@media (max-width:1023px) {
		.header {
			padding-top: 20px;
			padding-bottom: 20px;
		}
	}

	.header .container {
		max-width: 1235px;
	}

	.logo {
		display: block;
	}

	@media (max-width:1023px) {
		.logo a img {
			width: 146px;
		}
	}

	.burger {
		display: none;
		position: absolute;
		top: 15px;
		right: 20px;
		width: 30px;
		height: 22px;
		z-index: 1006;
		-webkit-transition: left .35s ease;
		transition: left .35s ease;
	}

	.burger span {
		position: absolute;
		text-indent: -9999px;
		overflow: hidden;
		top: 50%;
		left: 0;
		right: 0;
		height: 2px;
		margin-top: -1px;
		background: #000;
	}

	.burger:after,
	.burger:before {
		position: absolute;
		content: '';
		left: 0;
		right: 0;
		height: 2px;
		background: #000;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
	}

	.burger:after {
		top: 0;
	}

	.burger:before {
		bottom: 0;
	}

	.burger.active {
		position: fixed;
		right: 20px;
	}

	.burger.active span {
		background-color: transparent;
	}

	.burger.active:after {
		margin-top: -1px;
		top: 50%;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.burger.active:before {
		margin-bottom: -1px;
		bottom: 50%;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	@media (max-width:1023px) {
		.burger {
			display: block;
		}
	}

	.flex-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.nav-menu:after {
		display: block;
		clear: both;
		content: '';
	}

	.nav-menu .scroll-cover {
		height: 100%;
		overflow: visible !important;
	}

	@media (max-width:1023px) {
		.nav-menu {
			position: fixed;
			top: -9999px;
			left: -9999px;
			right: 9999px;
			bottom: 9999px;
			opacity: 0;
			z-index: 1005;
			overflow-y: auto;
			text-align: left;
			background: #fff;
			overflow: hidden;
			padding: 55px 20px 50px 70px;
			-webkit-transform: translateY(-100%);
			-ms-transform: translateY(-100%);
			transform: translateY(-100%);
			-webkit-transition: all 0s ease .35s, opacity .35s ease, -webkit-transform .35s ease;
			transition: all 0s ease .35s, opacity .35s ease, -webkit-transform .35s ease;
			transition: all 0s ease .35s, opacity .35s ease, transform .35s ease;
			transition: all 0s ease .35s, opacity .35s ease, transform .35s ease, -webkit-transform .35s ease;
		}

		.nav-menu.open {
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			opacity: 1;
			-webkit-transform: translateY(0);
			-ms-transform: translateY(0);
			transform: translateY(0);
			-webkit-transition: opacity .35s ease, -webkit-transform .35s ease;
			transition: opacity .35s ease, -webkit-transform .35s ease;
			transition: opacity .35s ease, transform .35s ease;
			transition: opacity .35s ease, transform .35s ease, -webkit-transform .35s ease;
		}
	}

	.main-menu {
		font-size: 18px;
		line-height: 24px;
		text-transform: uppercase;
		font-weight: 700;
		letter-spacing: .07em;
		padding-right: 28px;
		padding-top: 10px;
	}

	@media (max-width:1023px) {
		.main-menu {
			padding: 0;
		}
	}

	.main-menu>ul {
		margin: 0 -32px;
		padding: 0;
		list-style: none;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	@media (max-width:1023px) {
		.main-menu>ul {
			display: block;
			margin: 0;
		}
	}

	.main-menu>ul>li {
		margin: 0 32px;
	}

	@media (max-width:1023px) {
		.main-menu>ul>li {
			display: block;
			margin: 0 0 30px;
		}
	}

	.main-menu>ul>li.has-drop {
		position: relative;
	}

	.main-menu>ul>li.has-drop:hover>.drop {
		top: 100%;
		opacity: 1;
		left: -15px;
		-webkit-transform: scaleY(1);
		-ms-transform: scaleY(1);
		transform: scaleY(1);
		-webkit-transition: opacity .35s ease, -webkit-transform .35s ease;
		transition: opacity .35s ease, -webkit-transform .35s ease;
		transition: opacity .35s ease, transform .35s ease;
		transition: opacity .35s ease, transform .35s ease, -webkit-transform .35s ease;
	}

	.main-menu>ul>li>a {
		display: inline-block;
		vertical-align: top;
		white-space: nowrap;
		color: inherit;
		padding-bottom: 10px;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
	}

	.main-menu>ul>li>a:hover {
		color: #6b9d52;
	}

	.main-menu .drop {
		position: absolute;
		top: -9999px;
		left: -9999px;
		margin: 0;
		opacity: 0;
		z-index: 150;
		list-style: none;
		background: #6b9d52;
		white-space: nowrap;
		-webkit-transform: scaleY(0);
		-ms-transform: scaleY(0);
		transform: scaleY(0);
		padding: 15px 10px 10px;
		-webkit-transform-origin: 50% 0;
		-ms-transform-origin: 50% 0;
		transform-origin: 50% 0;
		min-width: calc(100% + 30px);
		-webkit-transition: all 0s ease .35s, opacity .35s ease, -webkit-transform .35s ease;
		transition: all 0s ease .35s, opacity .35s ease, -webkit-transform .35s ease;
		transition: all 0s ease .35s, opacity .35s ease, transform .35s ease;
		transition: all 0s ease .35s, opacity .35s ease, transform .35s ease, -webkit-transform .35s ease;
	}

	@media (max-width:1023px) {
		.main-menu .drop {
			opacity: 1;
			display: none;
			-webkit-transform: none;
			-ms-transform: none;
			transform: none;
			min-width: 0;
			-webkit-transition: none;
			transition: none;
			position: static;
			white-space: normal;
			background: 0 0;
			padding: 0 0 20px 28px;
		}
	}

	.main-menu .drop li {
		display: block;
		margin-top: 15px;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
		position: relative;
	}

	.main-menu .drop li:hover>a {
		color: #000;
	}

	.main-menu .drop li:first-child {
		margin-top: 0;
	}

	@media (max-width:1023px) {
		.main-menu .drop li {
			margin-top: 10px;
		}
	}

	.main-menu .drop a {
		position: relative;
		vertical-align: top;
		display: inline-block;
		text-transform: none;
		color: #fff !important;
		text-transform: uppercase;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
	}

	@media (max-width:1023px) {
		.main-menu .drop a {
			color: #000 !important;
		}
	}

	.container {
		position: relative;
	}

	a {
		word-wrap: break-word;
	}

	@media screen and (max-width:1023px) {
		.main-menu .drop {
			background: transparent !important;
		}

		.main-menu .has-drop>a {
			display: inline-block;
			position: relative;
		}

		.drops {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}

		.nav-menu .scroll-cover {
			overflow: auto !important;
		}
	}

	@media screen and (max-width:1024px) and (min-width:1024px) {
		.main-menu>ul>li {
			margin: 0 22px;
		}

		.main-menu>ul {
			margin: 0 -22px;
		}
	}

	.main-menu {
		padding-right: 0;
		line-height: 1.333333;
	}

	.nav-extended .main-menu {
		font-size: 14px;
		padding-left: 20px;
	}

	.main-menu>ul {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.nav-extended .main-menu>ul {
		margin: 0 -10px;
	}

	.nav-extended .main-menu>ul>li {
		margin: 0 10px;
	}

	.main-menu .drop {
		padding: 15px 0;
	}

	.main-menu .drop li {
		margin: 0;
	}

	.main-menu .drop a {
		display: block;
		padding: 10px;
	}

	@media (max-width:1023px) {
		.header .logo img {
			width: auto;
		}

		.nav-extended .main-menu {
			padding-left: 0;
		}

		.main-menu>ul>li>a {
			white-space: normal;
		}

		.burger {
			right: 15px;
		}

		.nav-extended .nav-menu .scroll-cover {
			overflow-x: hidden !important;
		}
	}

	@media (max-width:560px) {
		.nav-menu {
			padding-left: 20px;
		}
	}

	@media (max-width:479px) {
		.header .logo img {
			max-width: 240px;
		}
	}

	.lazyloaded {
		opacity: 1;
		transition: opacity .4s;
		transition-delay: 0ms;
	}

	.main-menu>ul>li>a:hover {
		opacity: .6;
	}

	@media (max-width:1023px) {
		.header {
			padding-top: 10px;
			padding-bottom: 10px;
		}

		.header .logo img {
			height: 75px;
		}
	}

	.main-menu a {
		font-family: "Asap";
		font-weight: 700;
	}

	a {
		color: #69c;
		font-family: "Asap";
	}

	@media (max-width:1023px) {
		.main-menu .drop a {
			color: #58585a !important;
		}
	}

	.main-menu>ul>li>a:hover {
		color: #69c;
	}

	@media (max-width:1023px) {
		.main-menu ul li:hover>a {
			color: #6699cc !important;
		}
	}

	.main-menu .drop {
		background: #001689;
	}

	.main-menu .drop a {
		color:  !important;
	}

	.main-menu .drop li:hover>a,
	.main-menu .drop a:hover {
		color:  !important;
		background:  !important;
	}

	input {
		border-radius: 0 !important;
	}
}












































@media all {
	ul {
		box-sizing: border-box;
	}

	header,
	nav {
		display: block;
	}

	a {
		background-color: transparent;
	}

	a:active,
	a:hover {
		outline: 0;
	}

	strong {
		font-weight: 700;
	}

	img {
		border: 0;
	}

	input {
		color: inherit;
		font: inherit;
		margin: 0;
	}

	input::-moz-focus-inner {
		border: 0;
		padding: 0;
	}

	input {
		line-height: normal;
	}

	*,
	*:before,
	*:after {
		box-sizing: inherit;
	}

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

	ul,
	form {
		margin: 0 0 1.2em;
	}

	ul {
		padding-left: 3em;
	}

	ul ul {
		padding-left: 3em;
		margin: 0;
	}

	ul {
		list-style-type: disc;
	}

	form {
		margin: 0;
		padding: 0;
		border-style: none;
	}

	ul ul {
		margin: 0;
	}

	a {
		color: #39f;
		outline: none;
		text-decoration: none;
		-webkit-transition: color .3s linear, background .3s linear, opacity .3s linear, border-color .3s linear;
		transition: color .3s linear, background .3s linear, opacity .3s linear, border-color .3s linear;
	}

	a:hover {
		text-decoration: none;
		color: #0073e6;
	}

	* {
		outline: none;
	}

	a {
		color: #363636;
	}

	.container {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
		padding: 0 20px;
		z-index: 9;
	}

	@media (max-width:1023px) {
		.container {
			padding-left: 15px;
			padding-right: 15px;
		}
	}

	.header {
		background: #fff;
		padding: 32px 0 29px;
		position: fixed;
		width: 100%;
		z-index: 99;
	}

	@media (max-width:1023px) {
		.header {
			padding-top: 20px;
			padding-bottom: 20px;
		}
	}

	.header .container {
		max-width: 1235px;
	}

	.logo {
		display: block;
	}

	@media (max-width:1023px) {
		.logo a img {
			width: 146px;
		}
	}

	.burger {
		display: none;
		position: absolute;
		top: 15px;
		right: 20px;
		width: 30px;
		height: 22px;
		z-index: 1006;
		-webkit-transition: left .35s ease;
		transition: left .35s ease;
	}

	.burger span {
		position: absolute;
		text-indent: -9999px;
		overflow: hidden;
		top: 50%;
		left: 0;
		right: 0;
		height: 2px;
		margin-top: -1px;
		background: #000;
	}

	.burger:after,
	.burger:before {
		position: absolute;
		content: '';
		left: 0;
		right: 0;
		height: 2px;
		background: #000;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
	}

	.burger:after {
		top: 0;
	}

	.burger:before {
		bottom: 0;
	}

	@media (max-width:1023px) {
		.burger {
			display: block;
		}
	}

	.flex-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.nav-menu:after {
		display: block;
		clear: both;
		content: '';
	}

	.nav-menu .scroll-cover {
		height: 100%;
		overflow: visible !important;
	}

	@media (max-width:1023px) {
		.nav-menu {
			position: fixed;
			top: -9999px;
			left: -9999px;
			right: 9999px;
			bottom: 9999px;
			opacity: 0;
			z-index: 1005;
			overflow-y: auto;
			text-align: left;
			background: #fff;
			overflow: hidden;
			padding: 55px 20px 50px 70px;
			-webkit-transform: translateY(-100%);
			-ms-transform: translateY(-100%);
			transform: translateY(-100%);
			-webkit-transition: all 0s ease .35s, opacity .35s ease, -webkit-transform .35s ease;
			transition: all 0s ease .35s, opacity .35s ease, -webkit-transform .35s ease;
			transition: all 0s ease .35s, opacity .35s ease, transform .35s ease;
			transition: all 0s ease .35s, opacity .35s ease, transform .35s ease, -webkit-transform .35s ease;
		}
	}

	.main-menu {
		font-size: 18px;
		line-height: 24px;
		text-transform: uppercase;
		font-weight: 700;
		letter-spacing: .07em;
		padding-right: 28px;
		padding-top: 10px;
	}

	@media (max-width:1023px) {
		.main-menu {
			padding: 0;
		}
	}

	.main-menu>ul {
		margin: 0 -32px;
		padding: 0;
		list-style: none;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	@media (max-width:1023px) {
		.main-menu>ul {
			display: block;
			margin: 0;
		}
	}

	.main-menu>ul>li {
		margin: 0 32px;
	}

	@media (max-width:1023px) {
		.main-menu>ul>li {
			display: block;
			margin: 0 0 30px;
		}
	}

	.main-menu>ul>li.has-drop {
		position: relative;
	}

	.main-menu>ul>li.has-drop:hover>.drop {
		top: 100%;
		opacity: 1;
		left: -15px;
		-webkit-transform: scaleY(1);
		-ms-transform: scaleY(1);
		transform: scaleY(1);
		-webkit-transition: opacity .35s ease, -webkit-transform .35s ease;
		transition: opacity .35s ease, -webkit-transform .35s ease;
		transition: opacity .35s ease, transform .35s ease;
		transition: opacity .35s ease, transform .35s ease, -webkit-transform .35s ease;
	}

	.main-menu>ul>li>a {
		display: inline-block;
		vertical-align: top;
		white-space: nowrap;
		color: inherit;
		padding-bottom: 10px;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
	}

	.main-menu>ul>li>a:hover {
		color: #6b9d52;
	}

	.main-menu .drop {
		position: absolute;
		top: -9999px;
		left: -9999px;
		margin: 0;
		opacity: 0;
		z-index: 150;
		list-style: none;
		background: #6b9d52;
		white-space: nowrap;
		-webkit-transform: scaleY(0);
		-ms-transform: scaleY(0);
		transform: scaleY(0);
		padding: 15px 10px 10px;
		-webkit-transform-origin: 50% 0;
		-ms-transform-origin: 50% 0;
		transform-origin: 50% 0;
		min-width: calc(100% + 30px);
		-webkit-transition: all 0s ease .35s, opacity .35s ease, -webkit-transform .35s ease;
		transition: all 0s ease .35s, opacity .35s ease, -webkit-transform .35s ease;
		transition: all 0s ease .35s, opacity .35s ease, transform .35s ease;
		transition: all 0s ease .35s, opacity .35s ease, transform .35s ease, -webkit-transform .35s ease;
	}

	@media (max-width:1023px) {
		.main-menu .drop {
			opacity: 1;
			display: none;
			-webkit-transform: none;
			-ms-transform: none;
			transform: none;
			min-width: 0;
			-webkit-transition: none;
			transition: none;
			position: static;
			white-space: normal;
			background: 0 0;
			padding: 0 0 20px 28px;
		}
	}

	.main-menu .drop li {
		display: block;
		margin-top: 15px;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
		position: relative;
	}

	.main-menu .drop li:hover>a {
		color: #000;
	}

	.main-menu .drop li:first-child {
		margin-top: 0;
	}

	@media (max-width:1023px) {
		.main-menu .drop li {
			margin-top: 10px;
		}
	}

	.main-menu .drop a {
		position: relative;
		vertical-align: top;
		display: inline-block;
		text-transform: none;
		color: #fff !important;
		text-transform: uppercase;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
	}

	@media (max-width:1023px) {
		.main-menu .drop a {
			color: #000 !important;
		}
	}

	.container {
		position: relative;
	}

	a {
		word-wrap: break-word;
	}

	@media screen and (max-width:1023px) {
		.main-menu .drop {
			background: transparent !important;
		}

		.main-menu .has-drop>a {
			display: inline-block;
			position: relative;
		}

		.drops {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}

		.nav-menu .scroll-cover {
			overflow: auto !important;
		}
	}

	@media screen and (max-width:1024px) and (min-width:1024px) {
		.main-menu>ul>li {
			margin: 0 22px;
		}

		.main-menu>ul {
			margin: 0 -22px;
		}
	}

	.main-menu {
		padding-right: 0;
		line-height: 1.333333;
	}

	.nav-extended .main-menu {
		font-size: 14px;
		padding-left: 20px;
	}

	.main-menu>ul {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.nav-extended .main-menu>ul {
		margin: 0 -10px;
	}

	.nav-extended .main-menu>ul>li {
		margin: 0 10px;
	}

	.main-menu .drop {
		padding: 15px 0;
	}

	.main-menu .drop li {
		margin: 0;
	}

	.main-menu .drop a {
		display: block;
		padding: 10px;
	}

	@media (max-width:1023px) {
		.header .logo img {
			width: auto;
		}

		.nav-extended .main-menu {
			padding-left: 0;
		}

		.main-menu>ul>li>a {
			white-space: normal;
		}

		.burger {
			right: 15px;
		}

		.nav-extended .nav-menu .scroll-cover {
			overflow-x: hidden !important;
		}
	}

	@media (max-width:560px) {
		.nav-menu {
			padding-left: 20px;
		}
	}

	@media (max-width:479px) {
		.header .logo img {
			max-width: 240px;
		}
	}

	.lazyloaded {
		opacity: 1;
		transition: opacity .4s;
		transition-delay: 0ms;
	}

	.main-menu>ul>li>a:hover {
		opacity: .6;
	}

	@media (max-width:1023px) {
		.header {
			padding-top: 10px;
			padding-bottom: 10px;
		}

		.header .logo img {
			height: 75px;
		}
	}

	.main-menu a {
		font-family: "Asap";
		font-weight: 700;
	}

	a {
		color: #69c;
		font-family: "Asap";
	}

	@media (max-width:1023px) {
		.main-menu .drop a {
			color: #58585a !important;
		}
	}

	.main-menu>ul>li>a:hover {
		color: #69c;
	}

	@media (max-width:1023px) {
		.main-menu ul li:hover>a {
			color: #6699cc !important;
		}
	}

	.main-menu .drop {
		background: #001689;
	}

	.main-menu .drop a {
		color:  !important;
	}

	.main-menu .drop li:hover>a,
	.main-menu .drop a:hover {
		color:  !important;
		background:  !important;
	}

	input {
		border-radius: 0 !important;
	}
}

.header.header-lp{
    position: relative;
}

.header-lp .logo img{
    max-width: 194px !important;
}


/* @media all {
	ul {
		box-sizing: border-box;
	}

	header,
	nav {
		display: block;
	}

	a {
		background-color: transparent;
	}

	a:active,
	a:hover {
		outline: 0;
	}

	strong {
		font-weight: 700;
	}

	img {
		border: 0;
	}

	input {
		color: inherit;
		font: inherit;
		margin: 0;
	}

	input::-moz-focus-inner {
		border: 0;
		padding: 0;
	}

	input {
		line-height: normal;
	}

	*,
	*:before,
	*:after {
		box-sizing: inherit;
	}

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

	ul,
	form {
		margin: 0 0 1.2em;
	}

	ul {
		padding-left: 3em;
	}

	ul ul {
		padding-left: 3em;
		margin: 0;
	}

	ul {
		list-style-type: disc;
	}

	form {
		margin: 0;
		padding: 0;
		border-style: none;
	}

	ul ul {
		margin: 0;
	}

	a {
		color: #39f;
		outline: none;
		text-decoration: none;
		-webkit-transition: color .3s linear, background .3s linear, opacity .3s linear, border-color .3s linear;
		transition: color .3s linear, background .3s linear, opacity .3s linear, border-color .3s linear;
	}

	a:hover {
		text-decoration: none;
		color: #0073e6;
	}

	* {
		outline: none;
	}

	a {
		color: #363636;
	}

	.container {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
		padding: 0 20px;
		z-index: 9;
	}

	@media (max-width:1023px) {
		.container {
			padding-left: 15px;
			padding-right: 15px;
		}
	}

	.header {
		background: #fff;
		padding: 32px 0 29px;
		position: fixed;
		width: 100%;
		z-index: 99;
	}

	@media (max-width:1023px) {
		.header {
			padding-top: 20px;
			padding-bottom: 20px;
		}
	}

	.header .container {
		max-width: 1235px;
	}

	.logo {
		display: block;
	}

	@media (max-width:1023px) {
		.logo a img {
			width: 146px;
		}
	}

	.burger {
		display: none;
		position: absolute;
		top: 15px;
		right: 20px;
		width: 30px;
		height: 22px;
		z-index: 1006;
		-webkit-transition: left .35s ease;
		transition: left .35s ease;
	}

	.burger span {
		position: absolute;
		text-indent: -9999px;
		overflow: hidden;
		top: 50%;
		left: 0;
		right: 0;
		height: 2px;
		margin-top: -1px;
		background: #000;
	}

	.burger:after,
	.burger:before {
		position: absolute;
		content: '';
		left: 0;
		right: 0;
		height: 2px;
		background: #000;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
	}

	.burger:after {
		top: 0;
	}

	.burger:before {
		bottom: 0;
	}

    .burger.active {
		position: fixed;
		right: 20px;
	}

	.burger.active span {
		background-color: transparent;
	}

	.burger.active:after {
		margin-top: -1px;
		top: 50%;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.burger.active:before {
		margin-bottom: -1px;
		bottom: 50%;
		-webkit-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
    
    
	@media (max-width:1023px) {
		.burger {
			display: block;
		}
	}

	.flex-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.nav-menu:after {
		display: block;
		clear: both;
		content: '';
	}

	.nav-menu .scroll-cover {
		height: 100%;
		overflow: visible !important;
	}

	@media (max-width:1023px) {
		.nav-menu {
			position: fixed;
			top: -9999px;
			left: -9999px;
			right: 9999px;
			bottom: 9999px;
			opacity: 0;
			z-index: 1005;
			overflow-y: auto;
			text-align: left;
			background: #fff;
			overflow: hidden;
			padding: 55px 20px 50px 70px;
			-webkit-transform: translateY(-100%);
			-ms-transform: translateY(-100%);
			transform: translateY(-100%);
			-webkit-transition: all 0s ease .35s, opacity .35s ease, -webkit-transform .35s ease;
			transition: all 0s ease .35s, opacity .35s ease, -webkit-transform .35s ease;
			transition: all 0s ease .35s, opacity .35s ease, transform .35s ease;
			transition: all 0s ease .35s, opacity .35s ease, transform .35s ease, -webkit-transform .35s ease;
		}
        .nav-menu.open {
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 1;
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
            -webkit-transition: opacity .35s ease,-webkit-transform .35s ease;
            transition: opacity .35s ease,-webkit-transform .35s ease;
            transition: opacity .35s ease,transform .35s ease;
            transition: opacity .35s ease,transform .35s ease,-webkit-transform .35s ease
        }

	.main-menu {
		font-size: 18px;
		line-height: 24px;
		text-transform: uppercase;
		font-weight: 700;
		letter-spacing: .07em;
		padding-right: 28px;
		padding-top: 10px;
	}

	@media (max-width:1023px) {
		.main-menu {
			padding: 0;
		}
	}

	.main-menu>ul {
		margin: 0 -32px;
		padding: 0;
		list-style: none;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	@media (max-width:1023px) {
		.main-menu>ul {
			display: block;
			margin: 0;
		}
	}

	.main-menu>ul>li {
		margin: 0 32px;
	}

	@media (max-width:1023px) {
		.main-menu>ul>li {
			display: block;
			margin: 0 0 30px;
		}
	}

	.main-menu>ul>li.has-drop {
		position: relative;
	}

	.main-menu>ul>li.has-drop:hover>.drop {
		top: 100%;
		opacity: 1;
		left: -15px;
		-webkit-transform: scaleY(1);
		-ms-transform: scaleY(1);
		transform: scaleY(1);
		-webkit-transition: opacity .35s ease, -webkit-transform .35s ease;
		transition: opacity .35s ease, -webkit-transform .35s ease;
		transition: opacity .35s ease, transform .35s ease;
		transition: opacity .35s ease, transform .35s ease, -webkit-transform .35s ease;
	}

	.main-menu>ul>li>a {
		display: inline-block;
		vertical-align: top;
		white-space: nowrap;
		color: inherit;
		padding-bottom: 10px;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
	}

	.main-menu>ul>li>a:hover {
		color: #6b9d52;
	}

	.main-menu .drop {
		position: absolute;
		top: -9999px;
		left: -9999px;
		margin: 0;
		opacity: 0;
		z-index: 150;
		list-style: none;
		background: #6b9d52;
		white-space: nowrap;
		-webkit-transform: scaleY(0);
		-ms-transform: scaleY(0);
		transform: scaleY(0);
		padding: 15px 10px 10px;
		-webkit-transform-origin: 50% 0;
		-ms-transform-origin: 50% 0;
		transform-origin: 50% 0;
		min-width: calc(100% + 30px);
		-webkit-transition: all 0s ease .35s, opacity .35s ease, -webkit-transform .35s ease;
		transition: all 0s ease .35s, opacity .35s ease, -webkit-transform .35s ease;
		transition: all 0s ease .35s, opacity .35s ease, transform .35s ease;
		transition: all 0s ease .35s, opacity .35s ease, transform .35s ease, -webkit-transform .35s ease;
	}

	@media (max-width:1023px) {
		.main-menu .drop {
			opacity: 1;
			display: none;
			-webkit-transform: none;
			-ms-transform: none;
			transform: none;
			min-width: 0;
			-webkit-transition: none;
			transition: none;
			position: static;
			white-space: normal;
			background: 0 0;
			padding: 0 0 20px 28px;
		}
	}

	.main-menu .drop li {
		display: block;
		margin-top: 15px;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
		position: relative;
	}

	.main-menu .drop li:hover>a {
		color: #000;
	}

	.main-menu .drop li:first-child {
		margin-top: 0;
	}

	@media (max-width:1023px) {
		.main-menu .drop li {
			margin-top: 10px;
		}
	}

	.main-menu .drop a {
		position: relative;
		vertical-align: top;
		display: inline-block;
		text-transform: none;
		color: #fff !important;
		text-transform: uppercase;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
	}

	@media (max-width:1023px) {
		.main-menu .drop a {
			color: #000 !important;
		}
	}

	.container {
		position: relative;
	}

	a {
		word-wrap: break-word;
	}

	@media screen and (max-width:1023px) {
		.main-menu .drop {
			background: transparent !important;
		}

		.main-menu .has-drop>a {
			display: inline-block;
			position: relative;
		}

		.drops {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}

		.nav-menu .scroll-cover {
			overflow: auto !important;
		}
	}

	@media screen and (max-width:1024px) and (min-width:1024px) {
		.main-menu>ul>li {
			margin: 0 22px;
		}

		.main-menu>ul {
			margin: 0 -22px;
		}
	}

	.main-menu {
		padding-right: 0;
		line-height: 1.333333;
	}

	.nav-extended .main-menu {
		font-size: 14px;
		padding-left: 20px;
	}

	.main-menu>ul {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}

	.nav-extended .main-menu>ul {
		margin: 0 -10px;
	}

	.nav-extended .main-menu>ul>li {
		margin: 0 10px;
	}

	.main-menu .drop {
		padding: 15px 0;
	}

	.main-menu .drop li {
		margin: 0;
	}

	.main-menu .drop a {
		display: block;
		padding: 10px;
	}

	@media (max-width:1023px) {
		.header .logo img {
			width: auto;
		}

		.nav-extended .main-menu {
			padding-left: 0;
		}

		.main-menu>ul>li>a {
			white-space: normal;
		}

		.burger {
			right: 15px;
		}

		.nav-extended .nav-menu .scroll-cover {
			overflow-x: hidden !important;
		}
	}

	@media (max-width:560px) {
		.nav-menu {
			padding-left: 20px;
		}
	}

	@media (max-width:479px) {
		.header .logo img {
			max-width: 240px;
		}
	}

	.lazyloaded {
		opacity: 1;
		transition: opacity .4s;
		transition-delay: 0ms;
	}

	.main-menu>ul>li>a:hover {
		opacity: .6;
	}

	@media (max-width:1023px) {
		.header {
			padding-top: 10px;
			padding-bottom: 10px;
		}

		.header .logo img {
			height: 75px;
		}
	}

	.main-menu a {
		font-family: "Asap";
		font-weight: 700;
	}

	a {
		color: #69c;
		font-family: "Asap";
	}

	@media (max-width:1023px) {
		.main-menu .drop a {
			color: #58585a !important;
		}
	}

	.main-menu>ul>li>a:hover {
		color: #69c;
	}

	@media (max-width:1023px) {
		.main-menu ul li:hover>a {
			color: #6699cc !important;
		}
	}

	.main-menu .drop {
		background: #001689;
	}

	.main-menu .drop a {
		color:  !important;
	}

	.main-menu .drop li:hover>a,
	.main-menu .drop a:hover {
		color:  !important;
		background:  !important;
	}

	input {
		border-radius: 0 !important;
	}
} */