header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 9999;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease-out;
}
header.sticky {
	position: fixed;
	transform: translateY(-100%);
	animation: slideDown 0.3s ease-out forwards;
}
@keyframes slideDown {
	to {
		transform: translateY(0);
	}
}
.header-top-block {
	padding: 1.8rem 0;
}
.logo {
	width: 30.3rem;
    max-width: 30.3rem;
}
.logo a {
	display: block;
}
.logo img {
	max-width: 100%;
	max-height: 13rem;
	height: auto;
}
.logo img {
	transition: max-height 0.3s ease-out;
}
.sticky .logo img {
	max-height: 4rem;
	transition: none;
}
.header-font {
	display: flex;
	flex-wrap: wrap;
}
.btn-font {
	padding: 0;
	margin: 0 1.2rem 0 0;
	background: transparent;
	outline: none;
	border: 0;
	height: 1.6rem;
	display: flex;
	align-items: flex-end;
}
.btn-font:last-child {
	margin-right: 0;
}
.btn-font img {
	display: block;
}
.btn-font.active img,
.btn-font:hover img {
	filter: brightness(0);
}
.header-color {
	padding: 0;
	outline: none;
	background: transparent;
	border: 0;
	height: 2rem;
	margin: 0 0 0 1.6rem;
}
.header-color img {
	width: 100%;
	display: block;
}
.header-img {
	margin-left: 4rem;
}
.header-img+.header-img {
	margin-left: 2.7rem;
}
.header-img > a > img {
  height: 4rem;
  width: auto;
}
.header-bottom {
	border-top: 1px solid #E0E0E0;
}
.header-border-mono {
	border-color: #FFF!important;
}
.menu ul {
	margin: 0;
}
.menu li {
	margin: 0;
	padding: 0;
}
.menu li:after {
	content: none;
}
.menu>ul {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}
.menu>ul>li {
	margin: 0 1.4rem;
}
.menu>ul>li:first-child {
	margin-left: 0;
}
.menu>ul>li:last-child {
}
.menu>ul>li>a {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.65rem;
  letter-spacing: 0.015rem;
  color: #000;
  position: relative;
  padding: 2.3rem 0;
  min-height: 8.1rem;
  width: -webkit-fill-available;
}
.menu>ul>li:hover>a,
.menu>ul>li.active>a {
	color: #DD2B1C !important;
}
.menu>ul>li:hover>a:before,
.menu>ul>li.active>a:before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DD2B1C;
}
.menu>ul>li.haschild>a:after {
	content: "";
	margin-left: 0.66rem;
	width: 1.2rem;
	height: 0.8rem;
	background: url(../images/icon-menu-down.png);
	background-position: center !important;
	background-size: cover !important;
	-webkit-transition: transform 0.3s;
	-moz-transition: transform 0.3s;
	transition: transform 0.3s;
}
.menu>ul>li.haschild:hover>a:after {
	transform: rotate(-180deg);
}
.submenu {
	position: absolute;
	left: 0;
	width: 27.2rem;
	background: #fff;
	box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.30);
	top: calc(100% - 1rem);
	padding: 2rem 0;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	-webkit-transform: translateY(0.5rem);
	-moz-transform: translateY(0.5rem);
	transform: translateY(0.5rem);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.menu>ul>li.haschild:hover .submenu {
	opacity: 1;
	visibility: visible;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
}
.submenu a {
	color: #000 !important;
	display: block;
	padding: 1.5rem 2rem;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 110%;
	letter-spacing: 0.015rem;
}
.header-search-icon,
.search-box-close {
	width: 7rem;
	cursor: pointer;
	border-right: 1px solid #E0E0E0;
	border-left: 1px solid #E0E0E0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-search-icon img {
	width: 2rem;
}
.header-search {
	position: relative;
}
.search-box {
	position: absolute;
	right: 0;
	width: 35rem;
	display: none;
	overflow: hidden;
}
.search-box.show {
	display: block;
}
.search-box .form-control,
.search-box-close,
.header-search-icon {
  height: 8.3rem;
}
.search-box .form-control {
	font-size: 1.5rem;
	font-weight: 500;
	color: #000;
	padding: 0 8rem 0 2rem;
	border-radius: 0;
	border: 0 !important;
	box-shadow: none !important;
	border-right: 1px solid #E0E0E0 !important;
	border-left: 1px solid #E0E0E0 !important;
}
.search-box .form-control::placeholder {
	color: #000;
	opacity: 1;
}
.search-box .form-control::-ms-input-placeholder {
	color: #000;
}
.search-box-close {
	position: absolute;
	top: 0;
	right: 0;
}
.search-box-close span {
	height: 2rem;
	width: 0.2rem;
	display: block;
	background: #000;
	position: absolute;
}
.search-box-close span:first-child {
	transform: rotate(45deg);
}
.search-box-close span:last-child {
	transform: rotate(-45deg);
}
.toggleMenu {
	margin-right: 1.5rem;
	width: 2.6rem;
	display: none;
}
.toggleMenu span {
	display: block;
	width: 100%;
	height: 0.3rem;
	margin: 0.6rem 0 0;
	background: #000000;
}
.toggleMenu span:first-child {
	margin-top: 0;
}
.closeMenu {
	align-items: center;
	cursor: pointer;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 140%;
	letter-spacing: 0.032rem;
	text-transform: uppercase;
	color: #FFF;
	margin-bottom: 4.15rem;
	display: none;
}
.closeMenu img {
	margin-right: 2rem;
}
.menu-outer .menu-font,
.menu-link-img {
	display: none;
}
@media(min-width:1200px) and (max-width:1307.98px) {
	.header-top-block {
		padding: 1.3rem 0;
	}
	.menu>ul>li {
		margin: 0 1rem;
	}
	.menu>ul>li>a {
		font-size: 1.4rem;
		padding: 2.025rem 0;
	}
	.header-search-icon,
	.search-box-close {
		width: 6rem;
	}
	.search-box .form-control,
	.search-box-close,
	.header-search-icon {
		height: 5.7rem;
	}
	.submenu {
		width: 24.2rem;
		padding: 1.5rem 0;
	}
	.submenu a {
		padding: 1.3rem 2rem;
		font-size: 1.4rem;
	}
}
@media(min-width:992px) and (max-width:1199.98px) {
	.header-top-block {
		padding: 1.3rem 0;
	}
	.menu>ul>li {
		margin: 0 1rem;
	}
	.menu>ul>li>a {
		font-size: 1.4rem;
		padding: 2.025rem 0;
	}
	.header-search-icon,
	.search-box-close {
		width: 6rem;
	}
	.search-box .form-control,
	.search-box-close,
	.header-search-icon {
		height: 5.7rem;
	}
	.submenu {
		width: 21.2rem;
		padding: 1rem 0;
	}
	.submenu a {
		padding: 1.2rem 1.5rem;
		font-size: 1.4rem;
	}
}
@media(min-width:992px) and (max-width:100000px) {
	.menu>ul>li.haschild:hover .submenu {
		display: block !important;
	}
}
@media(max-width:991.98px) {
	body.show {
		overflow: hidden;
	}
	.header-top-block {
		padding: 1.5rem 0;
	}
	.header-top-block {
		justify-content: flex-start;
	}
	.toggleMenu {
		display: block;
	}
	.header-right {
		display: none;
	}
	.header-bottom-block {
		position: relative;
	}
	.header-search {
		position: absolute;
		right: 0;
		top: -4.6rem;
	}
	.header-search-icon,
	.search-box-close {
		width: initial;
		border-right: 0;
		border-left: 0;
	}
	.search-box .form-control,
	.search-box-close,
	.header-search-icon {
		height: initial;
	}
	.search-box .form-control {
		height: 5.6rem;
		border: 1px solid #E0E0E0 !important;
	}
	.search-box-close {
		height: 2rem;
		width: 2rem;
		top: 1.7rem;
		right: 1rem;
	}
	.search-box {
		width: 34.5rem;
		top: -1.6rem;
	}
	.menu-outer {
		position: fixed;
		top: 0;
		left: -110%;
		background: #3C2B99;
		height: 100vh;
		overflow: hidden;
		overflow-y: auto;
		z-index: 1;
		-webkit-transition: left 0.3s linear;
		-moz-transition: left 0.3s linear;
		transition: left 0.3s linear;
    width: 100vw;
	}
	body.show .menu-outer {
		left: 0;
	}
	.menu-inner {
		max-width: 720px;
		padding: 4rem 1.5rem;
		margin: auto;
	}
	.closeMenu {
		display: flex;
		cursor: pointer;
	}
	.menu>ul {
		display: block;
	}
	.menu>ul>li {
		margin: 0 0 3rem;
    height: initial;
	}
	.menu>ul>li:last-child {
		margin-bottom: 0;
	}
	.menu>ul>li>a {
		font-size: 1.6rem;
		line-height: 1.92rem;
		min-height: initial;
		letter-spacing: 0.015rem;
		color: #fff !important;
		padding: 0;
		font-weight: 600;
		font-family: Fira Sans;
    max-width: 100%;
	}
	.menu>ul>li:hover>a:before,
	.menu>ul>li.active>a:before {
		bottom: -0.7rem;
	}
	.menu>ul>li.haschild>a:after {
		position: absolute;
		right: 0;
		filter: invert(1);
	}
	.menu-outer .menu-font,
	.menu-link-img {
		display: flex;
		align-items: center;
		margin-top: 7rem;
	}
	.btn-font {
		height: 4.4rem;
		width: 4.4rem;
		border: 1px solid #6154AC;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 0 1rem 0 0;
	}
	.btn-font.active img,
	.btn-font:hover img {
		filter: brightness(0) invert(1);
	}
	.header-color img {
		max-width: 2rem;
	}
	.menu-link-img {
		justify-content: space-between;
	}
	.menu-link-img a {
		width: calc(50% - 0.5rem);
		height: 6rem;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #fff;
    margin: 2px;
	}
	.menu-link-img a img {
		max-width: 100%;
		max-height: 100%;
	}
	.header-bottom {
		border-top: 0;
	}
	.menu>ul>li.haschild:hover>a:after {
		transform: rotate(0) !important;
		background: url(../images/icon-menu-down.png) !important;
	}
	.menu>ul>li.haschild>a.active:after {
		transform: rotate(-180deg) !important;
	}
	.menu>ul>li:hover>a,
	.menu>ul>li.active>a {
		color: #fff !important;
	}
	.menu>ul>li:hover>a:before,
	.menu>ul>li.active>a:before {
		content: none;
	}
	.submenu {
		position: relative;
		width: 100%;
		background: transparent;
		box-shadow: none;
		top: 0;
		padding: 0;
		opacity: 1;
		visibility: visible;
		display: none;
		-webkit-transform: none !important;
		-moz-transform: none !important;
		transform: none !important;
		-webkit-transition: none !important;
		-moz-transition: none !important;
		transition: none !important;
	}
	.submenu ul {
		margin-top: 2.5rem;
	}
	.submenu li {
		margin-bottom: 3rem;
	}
	.submenu a {
		font-size: 1.6rem;
		line-height: 1.92rem;
		letter-spacing: 0.015rem;
		color: #fff !important;
		padding: 0;
		font-family: Fira Sans;
	}
	.search-button {
		background: #ffcc00 !important;
	}
	.kontrast {
		display: block;
	}
	.search-hide {
		display: none;
	}
	.logo-hide {
		display: none!important;
	}
}
@media(max-width:767.98px) {
	.menu-inner {
		max-width: 540px;
	}
}
@media(max-width:374.98px) {
	.search-box {
		width: 33rem;
	}
}
header a {
    text-decoration: none !important;
}
