header{
	position: fixed;
	width: 100%;
	background: #fff;
	/* padding: 27px 0; */
	z-index: 999;
	top: 0;
	left: 0;
	transition: top .4s;
}

.header_main_wrapper {
	position: relative;
	z-index: 1;
}

ul{
	list-style:none;
	margin:0;
	padding:0;
}

.header_container_menu ul.menu {
	display:flex;
}

/* .header_container_menu ul.menu > li:not(:last-child){
	margin-right: 44px;
} */

.header_container_menu ul li a {
	font-weight: 300;
	text-transform: unset;
	color: #fff;
}

.header_container_menu ul.menu > li > a {
	border-radius: 5px;
	padding: 0;
	transition: background .4s;
}

.header_container_menu ul.menu > li > a:hover,
.header_container_menu ul.menu > li.current-menu-item > a {
	background: transparent;
}

.header_inner{
	display:flex;
	justify-content: space-between;
	align-items: center;
}

.header_main_mobile_content{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 375px;
	right: 0;
	/* box-shadow: inset 0 1em 1em -1em #092939; */
	-webkit-transition: -webkit-transform .4s, top .4s;
	-moz-transition: -moz-transform .4s, top .4s;
	-ms-transition: -ms-transform .4s, top .4s;
	-o-transition: -o-transition .4s, top .4s;
	transition: transform .4s, top .4s;
	-webkit-transform: translateX(375px);
	-moz-transform: translateX(375px);
	-ms-transform: translateX(375px);
	-o-transform: translateX(375px);
	transform: translateX(375px);
	top: 0;
	height: 100dvh;
	position: absolute;
	z-index: 2;
	overflow-y: scroll;
}

.header_main_mobile_content.open{
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

.header_main_mobile_content_top_2{
	display: flex;
	justify-content: space-between;
}

.header_main_desktop{
	display:block;
}

.header_main_mobile{
	display:none;
}

.header_container_mobil_menu ul{
	list-style:none;
	margin:0;
	padding:0;
}

.header_main_mobile_overlay{
	/* background-color:rgba(0, 0, 0, 0.6); */
	position: absolute;
	width: 100vw;
	height: 100vh;
	top: -27px;
	left: 0;
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	-webkit-transition: visibility 0s linear 300ms, opacity .4s, top .4s;
	-moz-transition: visibility 0s linear 300ms, opacity .4s, top .4s;
	-ms-transition: visibility 0s linear 300ms, opacity .4s, top .4s;
	-o-transition: visibility 0s linear 300ms, opacity .4s, top .4s;
	transition: visibility 0s linear 300ms, opacity .4s, top .4s;
}

.header_main_mobile_overlay.show{
	visibility: visible;
	opacity: 1;
	-webkit-transition: visibility 0s linear 0s, opacity .4s;
	-moz-transition: visibility 0s linear 0s, opacity .4s;
	  -ms-transition: visibility 0s linear 0s, opacity .4s;
	  -o-transition: visibility 0s linear 0s, opacity .4s;
	  transition: visibility 0s linear 0s, opacity .4s;
	  background: rgba(13, 13, 13, .7);
	  backdrop-filter: blur(20px);
}

.header_main_mobile_background_img {
	position: absolute;
	top: -27px;
	right: 0;
	width: 375px;
	height: 100vh;
	-webkit-transition: -webkit-transform .4s, top .4s;
	-moz-transition: -moz-transform .4s, top .4s;
	-ms-transition: -ms-transform .4s, top .4s;
	-o-transition: -o-transform .4s, top .4s;
	transition: transform .4s, top .4s;
	-webkit-transform: translateX(375px);
	-moz-transform: translateX(375px);
	-ms-transform: translateX(375px);
	-o-transform: translateX(375px);
	transform: translateX(375px);
}

.header_main_mobile_overlay.show ~ .header_main_mobile_background_img {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
}

.header_main_mobile_background_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header_burger_menu_icon,
.header_container_close_button{
	cursor:pointer;
}

.header_container_mobil_menu li.menu-item-has-children{
	overflow:hidden;
}

.header_container_mobil_menu li.menu-item-has-children>a:after{
	content:">";
	display: inline-block;
	
	-webkit-transition: -webkit-transform .3s ease-in-out;
	-moz-transition: -moz-transform .3s ease-in-out;
	-ms-transition: -ms-transform .3s ease-in-out;
	-o-transition: -o-transform .3s ease-in-out;
	transition: transform .3s ease-in-out;
}

.header_container_mobil_menu li.menu-item-has-children>a.open:after{
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

.menu_item_img{
	width: 100px;
	height: auto;
}

.logo_container {
	height: 35px;
}

.logo_container a,
.logo_container svg,
.logo_container img {
	height: 100%;
}

.logo_container svg,
.logo_container img {
	width: auto;
}

.logo_container svg {
	fill: #092939;
}

.header_inner_right_btn_container .button svg {
	width: 18px;
	min-width: 18px;
	height: 21px;
	min-height: 21px;
	margin-right: 5px;
	margin-bottom: 3px;
}

.header_burger_menu_icon {
	display: flex;
	flex-direction: column;
	align-items: end;
}

.header_burger_bar {
	display: block;
	height: 3px;
	background: rgba(255, 255, 255, .3);
	border-radius: 0;
	-webkit-transform-origin: 29px;
	-moz-transform-origin: 29px;
	-o-transform-origin: 29px;
	transform-origin: 29px;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}

.header_burger_menu_mobile:hover .header_burger_bar {
	background: #fff;
}

header.scrolled .header_burger_bar {
	background: rgba(0, 0, 0, .3);
}

header.scrolled .header_burger_menu_mobile:hover .header_burger_bar {
	background: #000;
}

.header_burger_bar:not(:last-child) {
	margin-bottom: 7px;
}

.header_burger_bar_1 {
	width: 26px;
}

.header_burger_bar_2 {
	width: 26px;
}

.header_burger_bar_3{
	width: 26px;
}

.header_burger_menu_mobile:hover .header_burger_bar {
	width: 26px;
}

.header_inner.open .header_burger_bar_1 {
	width: 30px;
	height: 3px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.header_inner.open .header_burger_bar_2 {
	width: 0;
}

.header_inner.open .header_burger_bar_3 {
	width: 30px;
	height: 3px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

header #menu-header-navigation .menu-item a {
	position: relative;
	transition: text-shadow .4s;
}

header #menu-header-navigation .menu-item a:hover,
header #menu-header-navigation .current-menu-item a {
	text-shadow: 0 0 1px #092939;
}

header #menu-header-navigation .menu-item a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 3px;
	background: #3f7898;
	opacity: 0;
	transition: opacity .4s;
}

header #menu-header-navigation .menu-item a:hover:after,
header #menu-header-navigation .current-menu-item a:after {
	opacity: 1;
}

.header_main_mobile_content .footer_main_middle_item_social_container {
	display: block;
}

.header_main_mobile_content .footer_main_middle_item_social_links_item svg {
	fill: #fff;
}

.header_main_mobile_content .footer_main_middle_item_social_links_item svg:hover {
	fill: #092939;
}

.header_main_mobile_content_bottom_1 {
	margin-bottom: 17px;
}

.header_main_mobile_content_bottom_2_left,
.header_main_mobile_content_bottom_2_right_email_phone_fax_container {
	display: flex;
	flex-direction: column;
}

.header_main_mobile_content_bottom_2_right_email_phone_fax_container {
	align-items: end;
}

.header_main_mobile_content_bottom_2_left a:not(:last-child),
.header_main_mobile_content_bottom_2_right_phone_container {
	margin-bottom: 10px;
}

.header_main_mobile_content_bottom_2_right_item a {
	position: relative;
	font-weight: 200;
}

.header_main_mobile_content_bottom_2_right_item a span {
	font-weight: 500;
}

.header_main_mobile_content_bottom_2_right_item a:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, .5);
	transition: background .4s;
}

.header_main_mobile_content_middle {
	
}

.header_main_mobile_content_middle_background_logo_container {
	position: absolute;
	top: 50%;
	left: 7px;
	width: calc(100% + 7px);
	height: auto;
	z-index: -1;
	transform: translateY(-50%);
}

.header_main_mobile_content_middle_background_logo_container svg {
	fill: rgba(255, 255, 255, .1);
	width: 100%;
	height: auto;
}

.header_container_menu .menu-item-has-children {
	position: relative;
}

.header_container_menu .menu-item-has-children a {
	display: flex;
	align-items: center;
	gap: 10px;
}

.menu-item-has-children svg {
	fill: rgba(255, 255, 255, .5);
	width: 6px;
	min-width: 6px;
	height: auto;
	min-height: unset;
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
	margin-top: 3px;
	transition: transform .2s, fill .4s;
}

header.scrolled .menu-item-has-children svg {
	fill: rgba(0, 0, 0, .5);
}

.menu-item-has-children.active svg {
	-webkit-transform: rotate(-270deg);
	-moz-transform: rotate(-270deg);
	-ms-transform: rotate(-270deg);
	-o-transform: rotate(-270deg);
	transform: rotate(-270deg);
	fill: #fff;
}

header .menu-item-has-children:hover svg {
	fill: #fff;
}

header.scrolled .menu-item-has-children:hover svg,
header.scrolled .menu-item-has-children.active svg {
	fill: #000;
}

.header_container_menu .menu-item-has-children svg {
	margin-left: 0;
	margin-bottom: 0;
}

.header_container_menu .menu-item-has-children > ul.sub-menu {
	position: absolute;
	top: 55px;
	left: 50%;
	padding: 24px 25px 28px 26px;
	background: #1a1a1a;
	border-radius: 0;
	border: 1px solid rgba(255, 255, 255, .2);
	border-top: none;
	z-index: 5;
	opacity: 0;
	-webkit-transform: scaleY(0) translateX(-50%);
	-webkit-transform-origin: top center;
	-moz-transform: scaleY(0) translateX(-50%);
	-moz-transform-origin: top center;
	-ms-transform: scaleY(0) translateX(-50%);
	-ms-transform-origin: top center;
	-o-transform: scaleY(0) translateX(-50%);
	-o-transform-origin: top center;
	transform: scaleY(0) translateX(-50%);
	transform-origin: top center;
	-webkit-transition: -webkit-transform .2s, opacity .2s;
	-moz-transition: -moz-transform .2s, opacity .2s;
	-ms-transition: -ms-transform .2s, opacity .2s;
	-o-transition: -o-transform .2s, opacity .2s;
	transition: all .4s;
}

header.scrolled .header_container_menu .menu-item-has-children > ul.sub-menu {
	background: #fff;
	border-color: rgba(76, 84, 96, .2);
}

.header_container_menu .menu-item-has-children.active > ul.sub-menu {
	opacity: 1;
	-webkit-transform: scaleY(1) translateX(-50%);
	-moz-transform: scaleY(1) translateX(-50%);
	-ms-transform: scaleY(1) translateX(-50%);
	-o-transform: scaleY(1) translateX(-50%);
	transform: scaleY(1) translateX(-50%);
}

.header_container_menu .menu-item-has-children > ul.sub-menu:before {
	content: '';
	position: absolute;
	top: -13px;
	left: 30px;
	width: 22px;
	height: 7px;
	background: url('../../../../img/dreieck.png') no-repeat;
	background-size: 100% 100%;
	display: none;
}

.menu-item-has-children > ul.sub-menu > li:not(:last-child) {
	margin-bottom: 11px;
}

.menu-item-has-children > ul.sub-menu a {
	position: relative;
	white-space: nowrap;
	padding-left: 0;
	transition: color .4s;
}

.menu-item-has-children > ul.sub-menu a:before {
	display: none;
}

.menu-item-has-children > ul.sub-menu a {
	color: #59595a;
	font-size: .875rem;
}

header.scrolled .menu-item-has-children > ul.sub-menu a {
	color: rgba(0, 0, 0, .5);
	font-size: .875rem;
}

.menu-item-has-children > ul.sub-menu a:hover,
.menu-item-has-children > ul.sub-menu li.current-menu-item a {
	color: #fff;
}

header ul.menu > li.current_page_ancestor > a {
	color: #fff !important;
}

header.scrolled ul.menu > li.current_page_ancestor > a {
	color: #000 !important;
}

header .header_container_nav ul.menu > li.menu-item-has-children.active > a {
	color: #fff;
}

header.scrolled .menu-item-has-children > ul.sub-menu a:hover,
header.scrolled .menu-item-has-children > ul.sub-menu li.current-menu-item a {
	color: #000;
}

header.scrolled .header_container_nav ul.menu > li.menu-item-has-children.active > a {
	color: #000;
}

.menu-item-has-children > ul.sub-menu a:hover:before,
.menu-item-has-children > ul.sub-menu li.current-menu-item a:before {
	background: transparent;
}

.header_container_logo {
	position: relative;
	padding-right: 90px;
	margin-right: 65px;
}

.header_container_logo:after {
	display: none;
}

.header_inner_left {
	align-items: center;
}

.header_inner_right_button_container .button.secondary {
	background-color: #f7fbf9;
	color: #1f4d4d;
	border: none;
}

.header_inner_right_button_container .button.secondary:hover {
	background-color: var(--sekundarbutton_hover_background_color);
	color: var(--sekundarbutton_hover_font_color);
}

.header_inner_right_button_container .button {
	font-weight: 600;
	padding: 0;
	text-transform: uppercase;
}

.header_inner_right_ext_link_container .button {
	display: flex;
	align-items: center;
	white-space: nowrap
}

.header_inner_right_ext_link_container svg {
	fill: #fff;
	width: 22px;
	min-width: 22px;
	height: 22px;
	min-height: 22px;
	margin-top: -5px;
	margin-right: 13px;
	transition: fill .4s;
}

.header_main_mobile_content_top,
.header_main_mobile_content_bottom {
	display: flex;
}

.header_main_mobile_content_top {
	align-items: flex-start;
	height: 65%;
	min-height: 365px;
	background: #f7fbf9;
	padding: 53px 18px;
}

.header_main_mobile_content_top_1 {
	width: 100%;
}

#menu-mobile-nav > li {
	position: relative;
	border-top: 1px solid #ccd8d7;
}

#menu-mobile-nav > li:last-child {
	border-bottom: 1px solid #ccd8d7;
}

#menu-mobile-nav a {
	font-weight: 600;
	text-transform: uppercase;
}

#menu-mobile-nav > li {
	padding: 15px 0 11px;
}

#menu-mobile-nav > li .sub-menu {
	height: 0;
	opacity: 0;
	overflow: hidden;
	padding: 0 0 0 15px;
}

#menu-mobile-nav .menu-item-has-children > ul.sub-menu > li:first-child {
	margin-top: 10px;
}

#menu-mobile-nav .menu-item-has-children > ul.sub-menu > li:not(:last-child) {
	margin-bottom: 10px;
}

#menu-mobile-nav .menu-item-has-children .svg_wrapper {
	position: absolute;
	top: 13px;
	right: 0;
}

.header_main_mobile_content_bottom {
	flex-direction: column;
	justify-content: center;
	height: 35%;
	min-height: 347px;
	background: #f4f4f6;
	padding: 20px 18px 48px;
}

.header_main_mobile_content_bottom_3_item_social_links_item {
	width: 52px;
	height: 52px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
	border: 1px solid #dedee0;
	transition: all .4s;
	border-radius: 0;
}

.header_main_mobile_content_bottom_3_item_social_links_item svg {
	fill: #e96730;
	width: 23px;
	min-width: 23px;
	height: 23px;
	min-height: 23px;
	transition: all .4s;
}

.header_main_mobile_content_bottom_3_item_social_links_item:hover {
	border: 1px solid #dedee0;
	background: #e96730;
}

.header_main_mobile_content_bottom_3_item_social_links_item:hover svg {
	opacity: 1;
	fill: #fff;
}

.header_desktop_burger_menu_firmierung_container p {
	font-weight: 600;
}

.header_desktop_burger_menu_adresse_container {
	display: flex;
}

.header_desktop_burger_menu_adresse_strasse_plz_ort_separator {
	margin: 0 5px;
}

.header_main_mobile_content_bottom_2_item svg {
	fill: #e96730;;
}

.header_main_mobile_content_bottom_2_phone svg {
	width: 11px;
	min-width: 11px;
	height: 17px;
	min-height: 17px;
	margin-top: 2px;
	fill: #e96730 !important;
}

.header_main_mobile_content_bottom_2_email svg {
	width: 15px;
	min-width: 15px;
	height: 12px;
	min-height: 12px;
	fill: #e96730 !important;
}

.header_main_mobile_content_bottom_2_item_content {
	display: flex;
	align-items: center;
	font-size: 1rem;
	font-weight: 300;
	color: #000;
}

.header_main_mobile_content_bottom_2_item_content_svg_wrapper {
	width: 27px;
}

.header_main_mobile_content_bottom_2_phone .header_main_mobile_content_bottom_2_item_content_svg_wrapper {
	padding-left: 0;
}

.header_main_mobile_content_bottom_3_social_container {
	display: flex;
	gap: 0;
	margin-bottom: 34px;
}

.header_main_mobile_content_bottom_2 {
	margin-bottom: 31px;
}

#menu-legal-nav {
	display: flex;
}

#menu-legal-nav li:not(:first-child) {
	margin-left: 25px;
}

li.portal > a svg {
	fill: #1f4d4d;
	width: 18px;
	min-width: 18px;
	height: 18px;
	min-height: 18px;
	margin-top: 1px;
	margin-right: 10px;
}

.menu-item-content-wrapper {
	display: flex;
}

header .header_container_nav ul.menu > li:not(.current_page_item) > a {
	color: rgba(255, 255, 255, .5);
	transition: all .4s;
}

header .header_container_nav ul.menu > li.current_page_item > a,
header .header_container_nav ul.menu > li > a:hover {
	color: #fff;
	position: relative;
}

header .header_container_nav .current_page_item > a:after {
	content: '';
	height: 5px;
	width: 5px;
	background: #e96730;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -13px;
}

header .header_main_mobile_content_top_1 .menu > li {
	border-bottom: 1px solid #dedee0;
	padding: 10px 0;
}

header .header_main_mobile_content_top_1 .menu > li:first-child {
	padding-top: 0;
}

header .header_main_mobile_content_top_1 .menu > li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

header .header_main_mobile_content_top_1 .menu > li > a {
	font-size: 1.563rem;
	font-weight: 500;
	color: #000;
	transition: all .4s;
	justify-content: space-between;
	display: flex;
	align-items: center;
}

header .header_main_mobile_content_top_1 .menu > li > a:hover {
	color: #e96730;
}

header .header_main_mobile_content_top_1 .menu > li > a svg {
	width: 10px;
	fill: #000;
	min-width: 10px;
	transition: all .4s;
}

header .header_main_mobile_content_top_1 .menu > li > a:hover svg {
	fill: #e96730;
	transform: rotate(-270deg);
}

header .header_main_mobile_content_top_1 .menu > li.is-open > a svg {
	transform: rotate(-270deg);
}

header .header_main_mobile_content_bottom_3 .menu > li > a {
	color: #000;
	transition: all .4s;
}

header .header_main_mobile_content_bottom_3 .menu > li > a:hover {
	color: #e96730;
}

header .header_main_mobile_content_top_1 .menu-item-has-children > ul.sub-menu > li:not(:last-child) {
	margin-bottom: 0;
	font-size: 1rem;
}

header .header_main_mobile_content_top_1 .menu-item-has-children > ul.sub-menu > li a:hover {
	color: #e96730;
}

/** START Header before Scroll **/

header {
	background: #000;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	transition: all .4s;
}

header .logo_container {
	width: calc(142px + 27px);
	height: auto;
	padding-right: 0;
	border-right: 1px solid rgba(255, 255, 255, .2);
	padding: 13px 27px 16px 0;
	margin-right: 34px;
}

header .logo_container svg {
	width: 100%;
	/* min-height: 49px; */
}

/* header .header_main_desktop .header_container_logo {
	min-height: calc(49px + 13px + 16px);
}

header .header_main_desktop .header_inner {
	height: 100%;
}

header .header_main_desktop {
	height: 84px;
} */

header .product_container_nav {
	display: flex;
	align-items: center;
	padding-right: 33px;
	border-right: 1px solid rgba(255, 255, 255, .2);
}

header .header_inner_right_button_container {
	height: 100%;
}

header .header_inner_right_contact_container .button {
	display: flex;
	height: calc(100% + 1px);
	align-items: center;
	text-transform: unset;
	padding: 0 31px;
}

header .header_inner_right {
	display: flex;
}

header .header_container_nav {
	display: flex;
	align-items: center;
}

header .header_inner_right_button_container {
	margin-left: 64px;
}

header .header_container_menu .menu {
	gap: 55px;
}

header.scrolled .header_container_menu ul.menu > li > a {
	transition: all .4s;
}

header .logo_container,
header .product_container_nav {
	transition: all .4s;
}

header .header_container_logo svg .cls-2 {
	transition: all .4s;
	opacity: 1 !important;
}

header .header_container_logo svg .cls-2 {
	fill: #fff !important;
}

/** END Header before Scroll **/

/** START Header after Scroll **/

header.scrolled {
	background: #fff;
	border-bottom-color: rgba(76, 84, 96, .2);
}

header.scrolled .header_container_nav ul.menu > li:not(.current_page_item) > a {
	color: rgba(0, 0, 0, .5);
}

header.scrolled .header_container_nav ul.menu > li.current_page_item > a,
header.scrolled .header_container_nav ul.menu > li > a:hover {
	color: #000;
}

header.scrolled .logo_container,
header.scrolled .product_container_nav {
	border-right-color: rgba(76, 84, 96, .2);
}

header.scrolled .header_container_logo svg .cls-2 {
	fill: #000 !important;
}

/** END Header after Scroll **/

/** START Above Header Container **/

div.above_header_container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
}

div.above_header_container .mM_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 7px 0 9px 0;
}

div.above_header_container .above_header_container_right {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

div.above_header_container .above_header_container_right * {
	font-size: .875rem;
}

div.above_header_container .above_header_container_right a {
	transition: all .4s;
}

div.above_header_container .above_header_container_right a:hover {
	color: #e96730;
}

div.above_header_container .header_slogan {
	font-size: .875rem;
	font-weight: 500;
}

/** END Above Header Container **/

/** START Product Menu **/

header .product_menu_parent_inner {
	display: flex;
	align-items: center;
	gap: 14px;
}

header .product_menu_parent_inner svg {
	width: 14px;
	min-width: 14px;
}

header .menu-item-has-children .product_menu_parent_inner .product_menu_parent_title {
	transition: all .4s;
	color: rgba(255, 255, 255, .5);
}

header .menu-item-has-children.is-open .product_menu_parent_inner .product_menu_parent_title,
header .menu-item-has-children:hover .product_menu_parent_inner .product_menu_parent_title {
	color: #fff;
}

header.scrolled .menu-item-has-children .product_menu_parent_inner .product_menu_parent_title {
	color: rgba(0, 0, 0, .5);
}

header.scrolled .menu-item-has-children.is-open .product_menu_parent_inner .product_menu_parent_title,
header.scrolled .menu-item-has-children:hover .product_menu_parent_inner .product_menu_parent_title {
	color: #000;
}

header .menu-item-has-children.active .product_menu_parent_inner svg {
	-webkit-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

header .menu-item-has-children .product_menu_parent_inner svg .hide_when_active {
	opacity: 1;
	transition: all .4s;
}

header .menu-item-has-children.is-open .product_menu_parent_inner svg .hide_when_active {
	opacity: 0;
}

header .menu-item-has-children.is-open .product_menu_parent_inner svg {
	fill: #e96730;
}

header .product_container_nav .menu-item-has-children {
	position: relative;
}

header .menu-produkte-menue-container li {
	cursor: pointer;
}

header .product_container_nav .sub-menu {
	height: 0;
	opacity: 0;
	position: absolute;
	left: -35px;
	top: 55px;
	background: #1a1a1a;
	border: 1px solid #333333;
	pointer-events: none;
	transition: all .4s;
}

header .product_container_nav .menu-item-has-children.is-open .sub-menu {
	pointer-events: auto;
}

header .product_container_nav .sub-menu * {
	pointer-events: none;
}

header .product_container_nav .menu-item-has-children.is-open .sub-menu * {
	pointer-events: auto;
}

header .product_container_nav .menu-item-has-children.is-open .sub-menu img {
	padding: 0 5px;
}

header .product_container_nav .menu-item-has-children .sub-menu {
	display: flex;
	flex-wrap: wrap;
}

header .product_container_nav .menu-item-has-children .sub-menu li {
	margin-bottom: 0;
	width: 33.3333%;
	padding: 11px 18px 11px 18px;
}

header .product_container_nav .menu-item-has-children .sub-menu li:not(:nth-child(3n)) {
	border-right: 1px solid #333333;
}

header .product_container_nav .menu-item-has-children .sub-menu li a {
	width: 100%;
	background: transparent;
	padding: 20px 15px 20px 19px;
	transition: all .4s;
}

header .product_container_nav .menu-item-has-children .sub-menu li a:hover {
	background: #333333;
}

header .product_container_nav .product_menu_icon {
	height: 73px;
	width: 73px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #333333;
	background: #1a1a1a;
	transition: all .4s;
}

header .product_container_nav .menu-item-has-children .sub-menu li a:hover .product_menu_icon {
	background: rgba(233, 103, 48, .15);
}

header .product_container_nav .product_menu_icon svg {
	-webkit-transform: unset;
	-moz-transform: unset;
	-ms-transform: unset;
	-o-transform: unset;
	transform: unset;
	max-height: 45px;
	max-width: 45px;
	width: 100%;
	height: 100%;
	margin-top: 0;
}

header .product_container_nav .product_menu_item_text svg.product_menu_arrow {
	-webkit-transform: unset;
	-moz-transform: unset;
	-ms-transform: unset;
	-o-transform: unset;
	transform: unset;
	width: 11px;
	min-width: 11px;
	fill: #59595a;
	transition: fill .4s;
}

header .product_container_nav .menu-item-has-children .sub-menu li a:hover .product_menu_item_text svg.product_menu_arrow {
	fill: #e96730;
}

header .product_container_nav .product_menu_item_text {
	width: calc(100% - 34px - 73px);
}

header .product_container_nav .product_menu_item_text .product_menu_item_title_row {
	color: #fff;
	font-size: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .product_container_nav .product_menu_item_inner {
	display: flex;
	gap: 34px;
}

header .product_container_nav .product_menu_item_inner .product_menu_beschreibung {
	color: #59595a;
	white-space: wrap;
}

header .product_container_nav .menu-item-has-children .sub-menu li:first-child,
header .product_container_nav .menu-item-has-children .sub-menu li:nth-child(2),
header .product_container_nav .menu-item-has-children .sub-menu li:nth-child(3) {
	padding-top: 38px;
}

header .product_container_nav .menu-item-has-children .sub-menu li:last-child {
	padding-bottom: 38px;
}

div.header_open_dropdown_background {
	content: '';
	width: 100vw;
	background: rgba(13, 13, 13, .7);
	backdrop-filter: blur(20px);
	opacity: 0;
	height: 0;
	position: fixed;
	top: 37px;
	left: 0;
	z-index: 998;
}

@media screen and (max-width: 1799px) {
	header .product_container_nav .menu-item-has-children .sub-menu li {
		width: 50%;
	}
	
	header .product_container_nav .menu-item-has-children .sub-menu li:nth-child(3) {
		padding-top: 11px;
	}
	
	header .product_container_nav .menu-item-has-children .sub-menu li:nth-child(3n) {
		border-right: none;
	}
	
	header .product_container_nav .menu-item-has-children .sub-menu li:nth-child(odd) {
		border-right: 1px solid #333333;
	}
}

/** END Product Menu **/

@media screen and (max-width: 1799px) {
	.header_inner_right_button_container .button {
		font-weight: 600;
		padding: 39px 45px 34px;
		text-transform: uppercase;
	}
}

@media screen and (max-width: 1599px) {
	.header_container_logo {
		padding-right: 45px;
		margin-right: 20px;
	}
	
	header .header_container_menu .menu {
		gap: 30px;
	}
}

@media screen and (max-width: 1399px) {
	.header_container_logo {
		padding-right: 0;
	}
	
	.header_container_menu ul.menu > li > a {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	
	.header_container_logo:after {
		content: none;
	}
	
	.header_container_menu ul.menu > li > a {
		padding: 20px 15px 15px 15px;
	}
	
	.header_inner_right_button_container .button {
		padding: 39px 25px 34px;
	}
	
	header .header_inner_right_button_container {
		margin-left: 24px;
	}
	
	header .header_container_nav .current_page_item a:after {
		bottom: 1px;
	}
	
	.header_container_menu .menu-item-has-children > ul.sub-menu {
		top: 72px;
	}
	
	header .product_container_nav {
		padding-right: 15px;
	}
	
	header .logo_container {
		padding: 13px 15px 16px 0;
		margin-right: 15px;
	}
	
	header .header_inner_right_contact_container .button {
		padding: 0 15px;
	}
}

@media screen and (max-width: 1199px) {
	.header_main_desktop{
		display:none;
	}
	
	.header_main_mobile{
		display:block;
	}
	
	.header_main_mobile .header_inner_right {
		position: relative;
		display: flex;
		align-items: center;
		z-index: 2;
	}
	
	.header_main_wrapper > .container {
		max-width: 100% !important;
		padding: 0 22px;
	}
	
	.header_burger_menu_mobile {
		display: flex;
		flex-direction: column;
		align-items: end;
	}
	
	.logo_container {
		height: 28px;
	}
	
	.header_main_wrapper .mM_align {
		margin-right: 0 !important;
		width: 100% !important;
	}
	
	.header_inner {
		height: 75px;
	}
	
	.header_inner_right_ext_link_container svg {
		fill: #3b8a8a;
		width: 26px;
		min-width: 26px;
		height: 26px;
		min-height: 26px;
		margin-top: 7px;
		margin-right: 22px;
	}
	
	header .logo_container {
		padding: 12px 27px 8px 0;
		height: auto !important;
	}
	
	.menu-item-has-children > ul.sub-menu a:hover,
	.menu-item-has-children > ul.sub-menu li.current-menu-item a {
		color: #e96730;
	}
}

@media screen and (max-width: 991px) {
	
}

@media screen and (max-width: 767px) {
	
}

@media screen and (max-width: 575px) {
	div.above_header_container {
		display: none;
	}
	
	header {
		top: 0 !important;
	}
	
	.header_main_mobile_content_bottom {
		height: 25%;
		min-height: 240px;
		padding: 15px 18px 15px;
	}
	
	.header_main_mobile_content_top {
		height: 75%;
		overflow: scroll;
	}
}

@media screen and (max-width: 499px) {
	
}

@media screen and (max-width: 475px) {
	
}

@media screen and (max-width: 450px) {
	
}

@media screen and (max-width: 430px) {
	
}

@media screen and (max-width: 374px) {
	.header_main_mobile_content{
		width: 100%;
		-webkit-transform: translateX(100%);
		-moz-transform: translateX(100%);
		-ms-transform: translateX(100%);
		-o-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@media screen and (max-width: 350px) {
	
}

@media screen and (max-width: 300px) {
	.logo_container {
		height: 25px;
	}
}