.header {
	/*position: absolute; why???*/
	position: relative;
	left: 0;
	top: 0;
	right: 0;
	padding-top: 24px;
	z-index: 110;
}

.header__content {
	position: relative;
}

.header__logo {
	float: left;
	position: relative;
}

.logo {
	font-family: "PFDinTextPro", Verdana, sans-serif;
	text-decoration: none;
	color: #000;
	position: relative;
	display: inline-block;
}

.logo:hover {
	color: #52bbb1;
	text-decoration: none;
}

.logo_active:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -36px;
	width: 63px;
	height: 3px;
	background: #000;
}

.logo__image {
	vertical-align: middle;
}

.logo__slogan {
	position: absolute;
	left: 100%;
	top: 0;
	margin: 13px 0 0 58px;
	white-space: nowrap;
	letter-spacing: 0.7px;
	font-size: 14px;
}

.logo__text {
	position: absolute;
	left: 100%;
	top: 0;
	margin: 13px 0 0 58px;
	white-space: nowrap;
	letter-spacing: 0.7px;
	font-size: 14px;
	color: #000;
	cursor: text;
}

.header__language {
	float: right;
	/*margin: 14px -40px 0 0;*/
}

.language {
	font-size: 13px;
	line-height: 24px;
}

.language__link {
	display: inline-block;
	padding: 0 40px 0 9px;
	text-decoration: none;
	color: #000;
	background: #85236a;
	color: #fff;
}

.language__link:hover {
	text-decoration: none;

}

.header_mobile-burger {
	display: block;
}

.header__nav {
	position: absolute;
	left: 0;
	top: 111px;
}

.header__nav_home {
	width: 600px;
}

.nav {
	font-size: 13px;
	line-height: 24px;
}

.nav__group {

}

.header__nav.header__nav_home.custom-scroll_container.custom-scroll_hidden-y {
	height: auto !important;
	z-index: 420 !important;
}

.header__nav_home .nav__group {
	float: left;
	width: 50%;
}

.nav__item {
	margin-bottom: 12px;
	position: relative;
}

.nav__item_current {

}

.nav__item_current:before {
	content: '';
	position: absolute;
	width: 20px;
	height: 3px;
	background: #000000;
	left: -40px;
	top: 11px;
}

.nav__link {
	text-decoration: none;
	color: #000;
}

.nav__link:hover,
.nav__link_active {
	text-decoration: none;
	color: #871c6a;
}

.nav__submenu {
	margin: 6px 0 24px;
	padding-left: 27px;
	display: none;
}

.nav__item_current .nav__submenu {
	display: block;
}

.nav__submenu-item {
	margin-bottom: 3px;
}

.nav__submenu-link {
	text-decoration: none;
	color: #000;
	display: inline-block;
	position: relative;
}

.nav__submenu-link:before {
	content: '';
	position: absolute;
	width: 3px;
	height: 3px;
	background: #b2b2b2;
	border-radius: 3px;
	left: -17px;
	top: 11px;
}

.nav__submenu-link:hover,
.nav__submenu-link_active {
	text-decoration: none;
	color: #871c6a;
}

.nav__submenu-link:hover:before,
.nav__submenu-link_active:before {
	background: #871c6a;
}

.nav__group .nav__item {
	z-index: 33;
}
.header-breadcrumbs {
	display: none;
}

.header__link {
	float: right;
	margin-left: 40px;
}

@media screen and (max-width: 1365px) {
	.header {
		background: #fff;
		opacity: 0.99;
		padding: 35px 5% 19px;
		border-bottom: 1px solid #e7e7e7;
	}

	.header__logo {
		position: relative;
		top: -13px;
	}

	.header_mobile-burger {
		display: block;
		width: 37px;
		height: 29px;
		position: relative;
		float: right;
		margin: -3px 0 0 10px;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-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;
	}

	.header_mobile-burger span {
		display: block;
		position: absolute;
		height: 3px;
		width: 100%;
		background-color: #52bbb1;
		border-radius: 9px;
		opacity: 1;
		left: 0;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
		-webkit-transition: .25s ease-in-out;
		-moz-transition: .25s ease-in-out;
		-o-transition: .25s ease-in-out;
		transition: .25s ease-in-out;
	}

	.header_mobile-burger span:nth-child(1) {
		top: 0;
	}

	.header_mobile-burger span:nth-child(2),
	.header_mobile-burger span:nth-child(3) {
		top: 13px;
	}

	.header_mobile-burger span:nth-child(4) {
		top: 26px;
	}

	.header_mobile-burger.header_mobile-burger--active span:nth-child(1) {
		top: 18px;
		width: 0%;
		left: 50%;
	}

	.header_mobile-burger.header_mobile-burger--active span:nth-child(2) {
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.header_mobile-burger.header_mobile-burger--active span:nth-child(3) {
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	.header_mobile-burger.header_mobile-burger--active span:nth-child(4) {
		top: 18px;
		width: 0%;
		left: 50%;
	}

	.header__nav {
		display: none;
		width: 500px;
		background: #fff;
		opacity: 1;
		left: auto;
		/*overflow: scroll;*/
		right: -6%;
		top: 62px;
		box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.21);
	}

	.header__nav .custom-scroll_bar-y {
		background-color: #52bbb1;
		width: 5px;
		right: calc(6% + 10px);
		border-radius: 10px;
		/*margin: 10px 0 0;*/
	}

	.nav {
		padding: 20px 85px 20px 30px;
	}

	.header__nav_home .nav__group {
		float: none;
		width: 100%;
	}

	.nav__item {
		margin-bottom: 28px;
		padding: 0 0 12px;
		border-bottom: 1px solid #e7e7e7;
	}

	.nav__item>a {
		margin: 0 0 13px;
		display: inline-block;
	}

	.language__link {
		background: none;
		color: #85236a;
	}

	.logo_active:before {
		display: none;
	}

	.nav__submenu {
		display: block;
		padding: 0;
		margin: 6px 0 15px;
		/*border-bottom: 1px solid #e7e7e7;*/
	}

	.nav__submenu-item {
		margin-bottom: 10px;
	}

	.nav__link {
		color: black;
		font-family: 'PFDinTextPro', Verdana, Arial, sans-serif;
		font-size: 24px;
		font-weight: 400;
		line-height: 25px;
	}
	.nav__submenu-link {
		font-family: 'PFDinTextPro', Verdana, Arial, sans-serif;
		font-size: 18px;
		font-weight: 400;
		color: #595959;
	}

	.nav__submenu-link.nav__submenu-link_active {
		color: #85236a;
	}

	.nav__submenu-link:before {
		display: none;
	}

	.nav__item_current:before {
		display: none;
	}

	.header-breadcrumbs {
		display: block;
		width: 90%;
		margin: auto;
	}

	.header-breadcrumbs .bx-breadcrumb {
		font-size: 0;
		padding: 25px 0 10px;
	}
	.header-breadcrumbs .bx-breadcrumb i {
		width: 5px;
		height: 9px;
		background: url(/images/bread-icon.png) no-repeat;
		display: inline-block;
		margin: 0 3px 0 0;
	}
	.header-breadcrumbs .bx-breadcrumb .bx-breadcrumb-item {
		font-family: Verdana, serif;
		font-size: 13px;
		font-weight: 400;
		line-height: 27px;
		display: inline-block;
		margin: 0 8px 0 0;
	}

	.header-breadcrumbs .bx-breadcrumb .bx-breadcrumb-item>a {
		color: black;
	}

	.header-breadcrumbs .bx-breadcrumb .bx-breadcrumb-item>span,
	.header-breadcrumbs .bx-breadcrumb .bx-breadcrumb-item>a:hover {
		color: #871c6a;
	}

}

@media screen and (max-width: 799px) {
	.logo__slogan {
		display: none;
	}
	.header__nav {
		width: 112%;
		right: -6%;
	}
}
@media screen and (max-width: 479px) {
	.header {
		padding: 40px 5% 11px;
	}
	.header__logo {
		top: -8px;
	}
	.logo {
		width: 150px;
		padding: 0 0 16px;
	}
	.logo__image {
		width: 100%;
		height: auto;
	}
	.language__link {
		padding: 0 12px;
	}
}