/*HEADER*/

.header {
	background-color: #252525;
	width: 100%;
	/*height: 88px;*/
	position: relative;
	z-index: 110;
}

.header__content-wrap {
	max-width: 1120px;
	margin: 0 auto;
	height: inherit;
	padding: 6px 10px 0;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	text-align: center;
}

.header__logo-lnk {
	width: 244px;
	height: 50px;
	display: inline-block;
	background-image: url(logo.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.header__menu {
	text-align: right;
	position: relative;
	margin-top: -13px;
}

.header__menu .menu {
	height: inherit;
	list-style: none;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	max-height: 0;
	overflow: hidden;
	position: absolute;
	left: -10px; right: -10px;
	top: 100%;
	text-align: left;
}

.header__menu .menu > li {
	display: block;
}

.header__menu .menu > li > a,
.header__menu .menu > li > .separator {
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	display: block;
	padding: 12px 13px;
	text-transform: uppercase;
	position: relative;
	z-index: 11;
	background-color: #252525;
	cursor: pointer;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.header__menu .menu > li.parent > .separator:after,
.header__menu .menu > li.parent > a:after {
	content: "";
	position: absolute;
	right: 15px;
	top: 13px;
	width: 10px;
	height: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
}

.header__menu .menu > li.parent > a:after {
	display: none;
}

.header__menu .menu > li.parent > .separator.open:after,
.header__menu .menu > li.parent > .separator:hover:after,
.header__menu .menu > li.parent > a.open:after,
.header__menu .menu > li.parent > a:hover:after {
	border-bottom-color: #1b9cf8;
	border-right-color: #1b9cf8;
}

.header__menu .menu > li > .separator.open:after,
.header__menu .menu > li > a.open:after {
	top: 17px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.header__menu .menu > li > .separator.open + ul {
	max-height: 1200px;
}


.header__menu .menu > li.active > a,
.header__menu .menu > li.current > a,
.header__menu .menu > li > a:hover,
.header__menu .menu > li.active > .separator,
.header__menu .menu > li.current > .separator,
.header__menu .menu > li > .separator:hover,
.header__menu .menu > li > .separator.open {
	color: #1b9cf8;
	opacity: 1;
}

.header__menu .menu > li:hover .nav-child {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
}

.header__menu .nav-child {
	z-index: 10;
	background-color: #252525;
	list-style: none;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	overflow: hidden;
	max-height: 0;
}

.header__menu .nav-child > li {
	display: block;
	float: none;
}

.header__menu .nav-child > li > a {
	color: #ffffff;
	font-size: 12px;
	font-weight: 500;
	display: block;
	padding: 12px 13px 12px 23px;
	text-transform: none;
	position: relative;
	z-index: 11;
	background-color: #252525;
}

.header__menu .nav-child > li.active > a,
.header__menu .nav-child > li.current > a,
.header__menu .nav-child > li > a:hover {
	color: #1b9cf8;
	opacity: 1;
}

.btn-burger {
    cursor: pointer;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    vertical-align: top;
    width: 50px;
    margin-right: -10px;
}

.btn-burger span {
    background-color: #fff;
    display: inline-block;
    height: 2px;
    position: relative;
    transition: all 0.3s ease 0s;
    vertical-align: middle;
    width: 30px;
}

.btn-burger span::before, 
.btn-burger span::after {
    background-color: #fff;
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -15px;
    position: absolute;
    transition: all 0.3s ease 0s;
    width: 30px;
}

.btn-burger span::before {
    top: -6px;
}

.btn-burger span::after {
    bottom: -6px;
}

.btn-burger.is-active span {
    background-color: transparent !important;
}

.btn-burger.is-active span::before {
    transform: rotate(45deg) translateY(4px) translateX(4px);
}

.btn-burger.is-active span::after {
    transform: rotate(-45deg) translateY(-4px) translateX(4px);
}

.btn-burger.is-active + ul {
    max-height: 1200px;
}

@media screen and (min-width: 1024px) {

	.header__logo-lnk {
		width: 324px;
		height: 61px;
		float: left;
		margin-left: 0;
		margin-top: 12px;
	}

	.btn-burger {
		display: none;
	}

	.header__content-wrap {
		height: 80px;
		padding-top: 0;
	}

	.header__menu {
		float: right;
		margin-top: 0;
	}

	.header__menu .menu {
		position: inherit;
		left: auto; right: auto;
		top: auto; bottom: auto;
		max-height: 160px;
		text-align: right;
		overflow: visible;
	}

	.header__menu .menu > li {
		display: inline-block;
		vertical-align: middle;
	}

	.header__menu .menu > li.parent > .separator,
	.header__menu .menu > li.parent > a {
		padding-right: 26px;
	}

	.header__menu .menu > li.parent > .separator:after,
	.header__menu .menu > li.parent > a:after {
		right: 6px;
		top: 50%;
		margin-top: -5px;
		width: 7px;
		height: 7px;
		display: block;
	}

	.header__menu .menu > li > a,
	.header__menu .menu > li > .separator {
		line-height: 88px;
		padding-top: 0;
		padding-bottom: 0;
	}

	.header__menu .nav-child {
		-webkit-transform: translateY(-100vh);
		-moz-transform: translateY(-100vh);
		-ms-transform: translateY(-100vh);
		-o-transform: translateY(-100vh);
		transform: translateY(-100vh);
		position: absolute;
		top: 100%;
		max-height: 800px;
		width: initial;
		text-align: left;
	}

	.header__menu .nav-child > li {
		display: block;
	}

	.header__menu .nav-child > li > a {
		font-weight: 700;
		text-transform: uppercase;
		padding-left: 13px;
	}

}