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

header.scrolled {
	background: #1a2e25;
}

body:not(.page-id-440):not(.page-id-438) header.scrolled,
header.custom_scrolled {
	top: 0 !important;
}

header nav.header_container_menu ul#menu-header-menue li.menu-item-has-children > a {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
}

header nav.header_container_menu ul#menu-header-menue li.menu-item-has-children > a:after {
	content: '';
	background-image: url('/wp-content/uploads/2025/03/arrow_white.svg');
	transform: rotate(90deg);
	width: 6px;
	height: 12px;
	display: inline-block;
	background-repeat: no-repeat;
	margin-top: -3px;
	transition: transform .4s;
}

header nav.header_container_menu ul#menu-header-menue li.menu-item-has-children:hover > a:after {
	transform: rotate(-90deg);
}

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

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

.header_container_menu ul{
	display:flex;
}

.header_container_menu ul * {
	color: #fff;
	font-size: .882rem;
}

.header_container_menu ul li:not(:last-child){
	margin-right: -1px;
}

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

.header_container_menu ul li.menu-item-has-children ul {
	/* opacity: 0;
	height: 0; */
	overflow: hidden;
	position: absolute;
	background-color: transparent;
	z-index: 10000;
	transition: border-color .4s, background .4s;
	flex-direction: column;
	border-top: 6px solid transparent;
	top: calc(100% + 11px);
	left: 0;
	padding: 19px 28px 14px 30px;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 0 0 3px 3px;
	border-top: none;
}

.header_container_menu ul li.menu-item-has-children ul li a {
	text-transform: none;
	transition: color .4s;
}

.header_container_menu ul li.menu-item-has-children ul li:not(:last-child) a {
	margin-bottom: 7px;
}

.header_container_menu ul li.menu-item-has-children ul li a:hover {
	color: #8cb369;
}

header.scrolled .header_container_menu ul li.menu-item-has-children ul {
	background: #1a2e25;
	top: calc(100% + 10px);
}

.header_container_menu ul.menu > li {
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 3px;
	transition: background .4s;
	cursor: pointer;
}

.header_container_menu ul.menu > li > a {
	padding: 19px 28px 14px 30px;
}

.header_container_menu ul.menu > li.current_page_item {
	background: #8cb369;
}

.header_container_menu ul.menu > li:hover {
	background: #8cb369;
}

.header_container_menu ul li a {
	text-transform: uppercase;
}

.header_container_logo.logo_container a {
	display: flex;
	align-items: center;
}

.header_inner{
	display:flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 3px;
	padding: 7px 8px 7px 39px;
}

.header_main_mobile_content{
	display: flex;
	flex-direction: column;
	/* justify-content: space-between; */
	padding: 58px 33px 24px;
	width: 500px;
	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-transform .4s, top .4s;
	transition: transform .4s, top .4s;
	-webkit-transform: translateX(500px);
	-moz-transform: translateX(500px);
	-ms-transform: translateX(500px);
	-o-transform: translateX(500px);
	transform: translateX(500px);
	top: -27px;
	height: 100vh;
	position: absolute;
	background: linear-gradient(180deg, rgba(40,77,73,1) 85%, rgba(52,84,72,1) 100%);
	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;
}

.header_main_mobile_background_img {
	position: absolute;
	top: -27px;
	right: 0;
	width: 500px;
	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(500px);
	-moz-transform: translateX(500px);
	-ms-transform: translateX(500px);
	-o-transform: translateX(500px);
	transform: translateX(500px);
}

.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);
}

header nav.header_container_menu ul#menu-header-menue .sub-menu{
	display:none;
	background-color: #1a2e25;
}

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

.logo_container {
	height: 60px;
	
}

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

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

header .logo_container svg {
	height: 38px;
}

.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: 6px;
	background: #3f7898;
	border-radius: 50px;
	-webkit-transform-origin: 38.5px;
	-moz-transform-origin: 38.5px;
	-o-transform-origin: 38.5px;
	transform-origin: 38.5px;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}

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

.header_burger_menu_mobile .header_burger_bar_3 {
	margin-bottom: 0;
}

.header_burger_menu_icon:hover .header_burger_menu_mobile .header_burger_bar {
	width: 21px;
}

.header_inner .header_burger_bar_close {
	display: none;
}

.header_inner.open .header_burger_bar_close {
	display: block;
	margin-top: 5px;
	margin-left: 2px;
}

.header_inner.open .header_burger_menu_mobile {
	justify-content: center;
	align-items: center;
	height: 100%;
}

.header_inner.open .header_burger_bar_close svg {
	fill: #fff;
	width: 16px;
}

.header_inner.open .header_burger_bar {
	display: none;
}

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

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

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

header .menu-item a {
	font-family: "Avenir Next", sans-serif;
	font-weight: 600;
}

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 * {
	color: #fff;
}

/* .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_bottom_2 a,
.header_main_mobile_content_bottom_2 a * {
	transition: color .4s;
}

.header_main_mobile_content_bottom_2 a:hover,
.header_main_mobile_content_bottom_2 a:hover * {
	color: #092939;
}

.header_main_mobile_content_bottom_2_right_item a:hover:after {
	background: #092939;
}

.header_main_mobile_content_middle {
	position: relative;
	margin: 26px 0 55px;
}

.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;
}

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

@media screen and (max-width: 1399px) {
	/* .header_container_menu ul li:not(:last-child){
		margin-right: 30px;
	} */
	
	.header_container_menu ul.menu > li > a {
		padding: 19px 18px 14px 20px;
	}
	
	header .logo_container svg {
		height: 30px;
	}
}

@media screen and (max-width: 1199px) {
	.header_main_desktop{
		display:none;
	}
	
	.header_main_mobile{
		display:block;
	}
	
	.header_main_mobile .header_inner_right {
		position: relative;
		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;
	}
	
	div.page_top {
		display: none;
	}
	
	header .header_inner {
		border: none;
		padding: 0;
	}
	
	header {
		border-bottom: 1px solid rgba(255, 255, 255, .1);
		border-radius: 0 0 3px 3px;
		padding: 5px 0;
	}
	
	header .header_burger_bar {
		background: #fff;
		height: 2px;
	}
	
	header .header_burger_bar_1 {
		width: 16px;
	}
	
	header .header_burger_bar_2 {
		width: 21px;
	}
	
	header .header_burger_bar_3 {
		width: 12px;
	}
	
	header .header_burger_menu_btn {
		width: 46px;
		height: 46px;
		background: #8cb369;
		justify-content: center;
		align-items: center;
		border-radius: 3px;
	}
	
	/* body {
		padding-top: 0 !important;
	} */
	
	header.scrolled {
		background: #284d49;
	}
	
	header .header_main_mobile_content_middle_2_rechtliches ul#menu-rechtliche-nav {
		display: flex;
		gap: 21px;
	}
	
	header .header_main_mobile_content_middle_2_rechtliches ul#menu-rechtliche-nav > li > a {
		color: rgba(245, 246, 240, .5);
		text-transform: none;
		font-size: .882rem;
		transition: color .4s;
		font-weight: 400;
	}
	
	header .header_main_mobile_content_middle_2_rechtliches ul#menu-rechtliche-nav > li > a:hover {
		color: rgba(245, 246, 240, 1);
	}
	
	header .header_main_mobile_content_middle_2_rechtliches {
		margin-top: 57px;
	}
	
	header .header_main_mobile_content_middle_2_contact a {
		width: 100%;
		text-align: center;
	}
	
	header .mM_header_address_container * {
		font-size: .882rem;
	}
	
	header .mM_header_address_container_right {
		margin-top: 15px;
	}
	
	header .mM_header_address_container {
		margin-top: 29px;
	}
	
	header .footer_main_middle_item_social_container {
		display: flex;
	}
	
	header .footer_main_middle_item_social_container .mM_header_social_item a {
		width: 46px;
		height: 46px;
		display: flex;
		justify-content: center;
		align-items: center;
		border: 1px solid rgba(246, 247, 242, .3);
		border-radius: 3px;
		transition: background .4s;
	}
	
	header .footer_main_middle_item_social_container .mM_header_social_item:first-child a {
		border-right: 1px solid rgba(246, 247, 242, .15);
	}
	
	header .footer_main_middle_item_social_container .mM_header_social_item:last-child a {
		margin-left: -1px;
		border-left: 1px solid rgba(246, 247, 242, .15);
	}
	
	header .footer_main_middle_item_social_container svg {
		fill: #f3f5ee;
		width: 18px;
	}
	
	header .footer_copyright_text,
	header .footer_copyright_text * {
		color: rgba(245, 246, 240, .5);
		font-size: .794rem;
	}
	
	header .header_main_mobile_content_bottom_1 {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border: 1px solid rgba(255, 255, 255, .3);
		padding: 15px 19px 16px 17px;
		border-radius: 3px;
	}
	
	header .mM_footer_bottom_left {
		padding-right: 20px;
	}
	
	header .menu-mobiles-menue-container *,
	header .menu-mobiles-menue-container li a {
		font-size: .882rem;
		font-weight: 400;
	}
	
	header .menu-mobiles-menue-container ul.menu > li > a {
		color: #cbe2af;
		text-transform: uppercase;
		transition: color .4s;
	}
	
	header .menu-mobiles-menue-container ul.menu > li > a:hover {
		color: #8cb369;
	}
	
	header .menu-mobiles-menue-container ul.menu > li {
		border-bottom: 1px solid rgba(255, 255, 255, .2);
	}
	
	header .menu-mobiles-menue-container ul.menu > li.menu-item-has-children > a {
		margin-bottom: 5px;
	}
	
	header .menu-mobiles-menue-container ul.menu > li.menu-item-has-children > .sub-menu li:not(:last-child) a {
		margin-bottom: 1px;
	}
	
	header .menu-mobiles-menue-container ul.menu > li.menu-item-has-children > .sub-menu li:last-child a {
		margin-bottom: 13px;
	}
	
	header .menu-mobiles-menue-container ul.menu > li.menu-item-has-children > .sub-menu li a {
		transition: color .4s;
	}
	
	header .menu-mobiles-menue-container ul.menu > li.menu-item-has-children > .sub-menu li a:hover {
		color: rgba(245, 246, 240, .5);
	}
	
	header .menu-mobiles-menue-container ul.menu > li:not(:first-child) > a {
		margin-top: 16px;
		margin-bottom: 13px;
	}
	
	header .menu-mobiles-menue-container ul.menu > li > a {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	header .menu-mobiles-menue-container ul.menu > li > a:after {
		content: '';
		background-image: url('/wp-content/uploads/2025/03/arrow_white_2.svg');
		width: 11px;
		height: 9px;
		display: inline-block;
		background-repeat: no-repeat;
		transition: margin-right .4s;
	}
		
	header .menu-mobiles-menue-container ul.menu > li > a:hover:after {
		margin-right: 10px;
	}
	
	header .header_main_mobile_content_bottom {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	
	header.open {
		background: #284d49;
	}
	
	header .footer_main_middle_item_social_container .mM_header_social_item a:hover {
		background: #8cb369;
	}
}

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

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

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

@media screen and (max-width: 499px) {
	.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: 475px) {
	
}

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

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

@media screen and (max-width: 375px) {
	header .logo_container {
		height: 50px;
	}
	
	.header_main_mobile_content {
		padding: 58px 33px 24px;
	}
	
	header .header_main_mobile_content_bottom_1 {
		flex-direction: column;
		gap: 20px;
		align-items: flex-start;
	}
	
	header .mM_footer_bottom_left {
		padding-right: 0;
	}
}

@media screen and (max-width: 350px) {
	.header_main_mobile_content_bottom_2 {
		flex-direction: column-reverse;
	}
	
	.header_main_mobile_content_bottom_2_right_email_phone_fax_container {
		align-items: start;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 325px) {
	header .logo_container {
		height: 40px;
	}
}

/* Page Top */

div.page_top {
	background: #2e5955;
	border-radius: 0 0 3px 3px;
	padding-top: 9px;
	padding-bottom: 6px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	z-index: 9999;
}

div.page_top * {
	color: #fff;
}

div.page_top .mM_container {
	display: flex;
	justify-content: space-between;
}

div.page_top .page_top_left {
	display: flex;
	gap: 70px;
}

div.page_top .page_top_right a {
	font-weight: bold;
	transition: color .4s;
}

div.page_top .page_top_right a:hover {
	color: #8cb369;
}