.above_header_element {
	background: #6baee6;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 44px;
}

.above_header_element * {
	color: #12335b;
}

.above_header_element .mM_lang_switcher_active svg {
	fill: #12335b;
}

.above_header_element .mM_container {
	height: 100%;
}

.above_header_element .above_header_row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.above_header_element .above_header_logo_container svg {
	width: 182px;
	fill: #12335b;
}

.above_header_element .above_header_right {
	display: flex;
	gap: 0 95px;
}

.above_header_element .above_header_right .menu {
	display: flex;
	gap: 0 35px;
}

header{
	position: fixed;
    width: 100%;
	background: #004f9f;
    z-index: 999;
	top: 44px;
	left: 0;
	border-bottom: 1px solid transparent;
}

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

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

.header_container_menu ul{
	display:flex;
}

.menu-header-nav-container ul.menu > li {
	height: 100px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

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

.header_container_menu ul.menu > li > a {
	color: #ffffff;
	display: flex;
	align-items: center;
	height: 100%;
	position: relative;
	
	transition: text-shadow .4s;
}

.header_container_menu ul.menu > li:has(li.current-menu-item) > a,
.header_container_menu ul.menu > li.current-page-ancestor > a,
.header_container_menu ul.menu > li.current-menu-item > a,
.header_container_menu ul.menu > li > a:hover {
	text-shadow: 0 0 1px #fff;
}

.header_container_menu ul.menu > li > a:after {
	content: '';
	position: absolute;
	bottom: 0; left: 0;
	width: 100%;
	height: 4px;
	background-color: #ffdf01;
	
	-webkit-transform-origin: center;
	-moz-transform-origin: center;
	-mstransform-origin: center;
	-otransform-origin: center;
	transform-origin: center;
	
	-webkit-transform: scaleX(0);
	-moz-transform: scaleX(0);
	-ms-transform: scaleX(0);
	-o-transform: scaleX(0);
	transform: scaleX(0);
	
	transition: transform .4s .0s;
}

.header_container_menu ul.menu > li:has(li.current-menu-item) > a:after,
.header_container_menu ul.menu > li.current-page-ancestor > a:after,
.header_container_menu ul.menu > li.current-menu-item > a:after,
.header_container_menu ul.menu > li > a:hover:after,
.header_container_menu ul.menu > li.submenOpen > a:after {
	-webkit-transform: scaleX(1);
	-moz-transform: scaleX(1);
	-ms-transform: scaleX(1);
	-o-transform: scaleX(1);
	transform: scaleX(1);
	
	transition: transform .4s;
}

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

.header_container_menu ul.menu > li.menu-item-has-children:after {
	content: '';
	position: absolute;
	right: -10px;
	top: 50%;
	border-top: 3px solid #fff;
	border-left: 2.5px solid transparent;
	border-right: 2.5px solid transparent;
	
	pointer-events: none;
	
	-webkit-transform: translateY(-50%) rotateX(0) rotate(0deg);
	-moz-transform: translateY(-50%) rotateX(0) rotate(0deg);
	-ms-transform: translateY(-50%) rotateX(0) rotate(0deg);
	-o-transform: translateY(-50%) rotateX(0) rotate(0deg);
	transform: translateY(-50%) rotateX(0) rotate(0deg);
	
	-webkit-transition: -webkit-transform .4s;
	-moz-transition: -moz-transform .4s;
	-ms-transition: -ms-transform .4s;
	-o-transition: -o-transform .4s;
	transition: transform .4s;
}

.header_container_menu ul.menu > li.menu-item-has-children.submenOpen:after {
	-webkit-transform: translateY(-50%) rotateX(180deg) rotate(0deg);
	-moz-transform: translateY(-50%) rotateX(180deg) rotate(0deg);
	-ms-transform: translateY(-50%) rotateX(180deg) rotate(0deg);
	-o-transform: translateY(-50%) rotateX(180deg) rotate(0deg);
	transform: translateY(-50%) rotateX(180deg) rotate(0deg);
}

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

.header_inner_left {
	padding: 23px 0;
}

.header_inner_right {
	padding: 23px 0;
	display: flex;
	align-items: center;
	gap: 0 88px;
}

.header_contact_button_container .mM_button.primary {
	background-color: #fff;
	color: #12335b;
}

.header_contact_button_container .mM_button.primary * {
	color: #12335b;
}

.header_contact_button_container {
	position: relative;
}

.header_contact_button_container:after {
	content: '';
	position: absolute;
	left: -49px;
	top: 50%;
	width: 1px;
	height: 100px;
	background: rgba(255,255,255,.2);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.header_main_mobile_content{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0 20px 33px;
	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-color: #f8f9fa;
	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 .menu_custom_wrapper {
	display:none;
	position: absolute;
	left: 0;
	top: 100%;
	width: 100vw;
	background: #ffffff;
	padding-top: 95px;
	transition: all .4s;
}

body.page-id-1541 header #menu-item-1178 .menu_custom_wrapper {
	display: block !important;
	opacity: 1 !important;
}

body.page-id-1541 .header_search_bar {
	display: none !important;
}

header .menu_inner_custom_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 45px;
}

header .menu_custom_wrapper ul {
	flex-wrap: wrap;
}

header .menu_custom_wrapper ul li:not(:last-child) {
	margin-right: 0;
}

header .menu_custom_wrapper ul li {
	width: 25%;
}

header .menu_item_title_text_wrapper {
	max-width: 45%;
}

header .menu_item_custom_title {
	font-size: 1.375rem;
	font-family: 'IBMPlexSans', sans-serif;
	color: #004f9f;
	margin-bottom: 20px;
}

header .sub-menu {
	border-top: 1px solid #e4e4e4;
}

header .sub-menu li .menu_item_link {
	display: block;
	padding: 35px 45px;
	padding-bottom: 20px;
	border-right: 1px solid #e4e4e4;
	border-bottom: 1px solid #e4e4e4;
	height: 100%;
	
	transition: background-color .4s;
}

header .sub-menu li .menu_item_link:hover,
header .sub-menu li.current_page_item .menu_item_link {
	background-color: #e4e4e4;
}

/* header .sub-menu li:nth-child(n+5) .menu_item_link {
	border-top: 1px solid #e4e4e4;
} */

header .sub-menu li:first-child .menu_item_link,
header .sub-menu li:nth-child(5n) .menu_item_link {
	padding-left: 0;
}

header .sub-menu li:nth-child(4n) .menu_item_link {
	padding-right: 0;
	border-right: none;
}

/* header .sub-menu li:last-child .menu_item_link {
	border-right: none;
} */

header .submenu_custom_link_main_container {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 13px;
}

header .submenu_custom_link_text {
	font-size: 1.125rem;
	font-weight: 600;
	color: #004f9f;
}

header .submenu_custom_link_icon {
	width: 13px;
	fill: #004f9f;
}

header #menu-header-nav-en {
	height: 100px;
}

.logo_container svg,
.header_container_menu ul.menu > li > a,
.header_container_menu ul.menu > li.menu-item-has-children:after,
.header_contact_button_container:after {
	transition: all .4s;
}

header.scrolled .logo_container svg {
	fill: #004f9f;
}

header.scrolled .header_container_menu ul.menu > li > a {
	color: #12335b;
}

header.scrolled .header_container_menu ul.menu > li.menu-item-has-children:after {
	border-top-color: #12335b;
}

header.scrolled .header_search_trigger svg {
	fill: #12335b;
}

header.scrolled {
	background: #fff;
	border-bottom: 1px solid rgba(30, 30, 30, .12);
}

header.scrolled .header_contact_button_container .mM_button.primary {
	background: #f8f9fa;
}

header.scrolled .header_contact_button_container:after {
	background: rgba(30, 30, 30, .12);
}

.btw_submenu_overlay {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: linear-gradient(to top, rgba(255,255,255,.5), rgba(255,255,255,.5) 25%, rgba(0,79,159,.5) 100%);
	display: none;
	backdrop-filter: blur(10px);
	z-index: 5;
}

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

.logo_container {
	height: 54px;
	
}

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

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

.logo_container svg {
	fill: #fff;
}

.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: #fff;
	border-radius: 50px;
	-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_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: 25px;
}

.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_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_right_item:not(:last-child) {
	margin-bottom: 4px;
}

.header_main_mobile_content_bottom_2_right_item a {
	font-size: 0.9375rem;
}

.header_main_mobile_content_bottom_2 a,
.header_main_mobile_content_bottom_2 a * {
	transition: color .4s, fill .4s;
}

.header_main_mobile_content_bottom_2_right_item p {
	display: inline-flex;
	align-items: baseline;
}

.header_main_mobile_content_bottom_2_right_item span {
	width: 32px;
	display: inline-block;
}

.header_main_mobile_content_bottom_2_right_item svg {
	width: 16px;
	min-width: 16px;
	fill: #004f9f;
}

.header_main_mobile_content_bottom_2_right_item.header_main_mobile_content_bottom_2_right_email_container svg {
	width: 18px;
	min-width: 18px;
}

.header_main_mobile_content_bottom_2 a:hover * {
	color: #004f9f;
}

.header_main_mobile_content_bottom_2_left {
	margin-top: 26px;
	font-size: .79rem;
}

.header_main_mobile_content_bottom_2_left .rechtliches_menu {
	display: flex;
}

.header_main_mobile_content_bottom_2_left .rechtliches_menu * {
	transition: color .4s;
}

.header_main_mobile_content_bottom_2_left .rechtliches_menu li:not(:last-child) {
	margin-right: 34px;
}

.header_main_mobile_content_bottom_2_left .rechtliches_menu .current-menu-item a,
.header_main_mobile_content_bottom_2_left .rechtliches_menu a:hover {
	color: #004f9f;
}

.header_main_mobile_content_middle {
	position: relative;
	margin: 138px 0 136px;
}

.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_search_trigger {
	cursor: pointer;
	display: flex;
	align-items: center;
	transition: all .4s;
}

.header_search_trigger svg {
	width: 20px;
	fill: #ffffff;
}

.header_main_mobile_content_bottom_3 {
	margin-top: 12px;
	font-size: .844rem;
}

header .mM_header_copyright,
header #copyright_text_year {
	color: rgba(18, 51, 91, 0.5);
}

@media screen and (max-width: 1799px) {
	header .menu_custom_wrapper {
		padding-top: 40px;
	}
	
	header .sub-menu li .menu_item_link {
		padding: 30px 25px 60px;
	}
}

@media screen and (max-width: 1599px) {
	.header_container_menu ul li:not(:last-child) {
		margin-right: 40px;
	}
}

@media screen and (max-width: 1399px) {
	.header_container_menu ul li:not(:last-child){
		margin-right: 30px;
	}
	
	header .menu_custom_wrapper {
		overflow: scroll;
	}
	
	.header_main_desktop{
		display:none;
	}
	
	.header_main_mobile{
		display:block;
	}
	
	header.scrolled {
		background: #004f9f;
		border-bottom-color: transparent;
	}
	
	header.scrolled .logo_container svg {
		fill: #fff;
	}
	
	header.scrolled .header_search_trigger svg {
		fill: #fff;
	}
	
	header.scrolled .header_contact_button_container::after {
	  background: rgba(30, 30, 30, .12);
	
	}
	
	.header_main_mobile .header_inner_right {
		position: relative;
		z-index: 2;
		gap: 0 49px;
	}
	
	.header_main_mobile .header_inner_right:after {
		content: '';
		position: absolute;
		top: 0; right: calc(35px + 24px);
		width: 1px;
		height: 100%;
		background-color: rgba(255, 255, 255, 0.2);
	}
	
	.header_inner_left {
		padding: 0;
	}
	
	.header_main_wrapper > .container {
		max-width: 100% !important;
		padding: 0 22px;
	}
	
	.header_main_mobile_content_bottom {
		margin-top: 30px;
	}
	
	.header_burger_menu_mobile {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: end;
		width: 35px;
		height: 35px;
	}
	
	div.mM_search.mobile {
		margin: 0 -20px;
		padding: 13px 20px;
	}
	
	header .menu > li {
		border-bottom: 1px solid rgba(18, 51, 91, 0.1);
		padding: 10px 0;
	}
	
	header .menu-item-has-children {
		cursor: pointer;
	}
	
	header .menu > li:last-child{
		border-bottom: none;
	}
	
	header .menu > li > a {
		padding: 13px 15px 13px 0;
	}
	
	header ul.sub-menu{
		display: none;
	}
	
	header li {
		opacity: 1;
		transition: opacity .4s;
	}
	
	header .menu li a:hover,
	header .menu li.current_page_item > a {
		opacity: .5;
	}
	
	header .menu-item-has-children .mM_has_sub_menu_arrow{
		display: inline-flex;
	}
	
	header .menu-item-has-children:not(.sub_menu_open):not(:hover) .mM_has_sub_menu_arrow .mM_button_icon {
		border-color: rgba(8, 28, 51, 0.3);
	}
	
	header .menu-item-has-children .mM_has_sub_menu_arrow svg{
		fill: #081c33;
	}
	
	header .menu {
		background-color: #fff;
		margin: 0 -20px;
		padding: 0 20px;
	}
	
	header .menu > li > a {
		color: #004f9f;
		font-size: 1.0625rem;
	}
}

@media screen and (max-width: 991px) {
	.above_header_element .above_header_right {
		gap: 0 45px;
	}
}

@media screen and (max-width: 767px) {
	.above_header_element .above_header_menu_container {
		display: none;
	}
}

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

@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) {
	
}