/********************
*      Modules      *
********************/

*, :after, :before {
	box-sizing: border-box;
}

button {
	border: none;
}

section{
	position: relative;
	width:100%;
	opacity: 0;
}

section.darkblue {
	background: #12335b;
}

section.white {
	background: #fff;
}

section.lightblue {
	background: #004f9f;
}

section.grey {
	background: #eeeff1;
}

section.darkblue.bg_fade {
	background: linear-gradient(to top, transparent, #12335b 10%, #12335b 100%);
}

section.white.bg_fade {
	background: linear-gradient(to top, transparent, transparent 5%, rgba(255,255,255,.1) 10%, rgba(255,255,255,.3) 15%, rgba(255,255,255,.7) 20%, #fff 25%, #fff 100%);
}

section.lightblue.bg_fade {
	background: linear-gradient(to top, transparent, transparent 5%, rgba(0,79,159,.1) 10%, rgba(0,79,159,.3) 15%, rgba(0,79,159,.7) 20%, #004f9f 25%, #004f9f 100%);
}

section.grey.bg_fade {
	background: linear-gradient(to top, transparent, transparent 5%, rgba(238,239,241,.1) 10%, rgba(238,239,241,.3) 15%, rgba(238,239,241,.7) 20%, #12335b 25%, #12335b 100%);
}

section.darkblue * {
	color: #fff;
}

section.lightblue * {
	color: #fff;
}

section.gradient:after {
	content: '';
	background: url('../img/contact-stoerer-bg1.png');
	position: absolute;
	left: 0;
	top: -400px;
	width: 100vw;
	height: 100%;
	max-width: 100vw;
	background-position: center bottom;
	background-size: cover;
}

section.gradient.oben:after {
	/* top: -300px;
	-webkit-transform: translateY(-30%);
	-moz-transform: translateY(-30%);
	-ms-transform: translateY(-30%);
	-o-transform: translateY(-30%);
	transform: translateY(-30%); */
}

section.gradient.unten:after {
	bottom: -30px;
	top: unset;
	-webkit-transform: translateY(30%) rotate(180deg);
	-moz-transform: translateY(30%) rotate(180deg);
	-ms-transform: translateY(30%) rotate(180deg);
	-o-transform: translateY(30%) rotate(180deg);
	transform: translateY(30%) rotate(180deg);
}

section.gradient .mM_container {
	position: relative;
	z-index: 2;
}

/* sections, den section mit dem Gradient oben folgen */
section:has(+ section.gradient.oben) .mM_container {
	position: relative;
	z-index: 3;
}

/* section, die folgt der Section mit dem Gradient unten */
section.gradient.unten + section .mM_container {
	position: relative;
	z-index: 3;
}

.opacity_0{
	opacity: 0;
}

/* link / button */

/* Allgemeiner Fokus für Links, Buttons, Inputs usw. */
:focus-visible {
	outline: 3px solid #FFC845 !important; /* deine Hauptfarbe */
	outline-offset: 4px !important;
	border-radius: 4px !important;
}

/* Falls bei Buttons outline vorher unterdrückt wurde: */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid #FFC845 !important;
	outline-offset: 4px !important;
}

/* Wenn Elemente ein eigenes Fokus-Design bekommen sollen (optional): */
a:focus-visible {
	background-color: rgba(18, 51, 91, 0.1);
	border-radius: 4px !important;
}

.mM_links {
	display: flex;
	gap: 0 20px;
}

.mM_button{
	padding:20px;
	cursor:pointer;
	border-radius: 3px;
	-webkit-transition: color .4s, background .4s;
	-moz-transition: color .4s, background .4s;
	-ms-transition: color .4s, background .4s;
	-o-transition: color .4s, background .4s;
	transition: color .4s, background .4s;
}

.mM_button .mM_button_text {
	-webkit-transition: color .4s, background .4s;
	-moz-transition: color .4s, background .4s;
	-ms-transition: color .4s, background .4s;
	-o-transition: color .4s, background .4s;
	transition: color .4s, background .4s;
}

.mM_button.primary{
	background-color:var(--primarbutton_background_color);
	color: var(--primarbutton_font_color);
	padding: 6px;
	padding-left: 24px;
	display: inline-flex;
	align-items: center;
	gap: 0 23px;
}

.mM_button.primary.reverse {
	flex-direction: row-reverse;
	padding: 6px;
	padding-right: 24px;
}

.mM_button.primary * {
	color: var(--primarbutton_font_color);
}

.mM_button.primary .mM_button_icon {
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 10px;
	overflow: hidden;
	background: #ffdf01;
	border-radius: 3px;
}

.mM_button.primary.reverse .mM_button_icon {
	transform: rotate(-180deg);
}

.mM_button.primary svg {
	width: 14px;
	fill: #12335b;
	-webkit-transform: translateX(-12px);
	-moz-transform: translateX(-12px);
	-ms-transform: translateX(-12px);
	-o-transform: translateX(-12px);
	transform: translateX(-12px);
	-webkit-transition: fill .4s, -webkit-transform .4s;
	-moz-transition: fill .4s, -moz-transform .4s;
	-ms-transition: fill .4s, -ms-transform .4s;
	-o-transition: fill .4s, -o-transform .4s;
	transition: fill .4s, transform .4s;
}

.mM_button.primary:hover {
	background-color:var(--primarbutton_hover_background_color);
	color:var(--primarbutton_hover_font_color);
}

.mM_button.primary:hover * {
	color:var(--primarbutton_hover_font_color);
}

.mM_button.primary:hover svg {
	fill: #12335b;
	-webkit-transform: translateX(12px);
	-moz-transform: translateX(12px);
	-ms-transform: translateX(12px);
	-o-transform: translateX(12px);
	transform: translateX(12px);
}

.mM_button.mM_download_button svg {
	height: 18px;
	fill: #12335b;
}

.mM_button.secondary{
	padding: 10px 25px;
	background-color:var(--sekundarbutton_background_color);
	color:var(--sekundarbutton_font_color);
	border: 1px solid rgba(18,51,91,.3);
	border-radius: 3px;
	display: inline-flex;
	gap: 0 25px;
}

.mM_button.secondary * {
	color:var(--sekundarbutton_font_color);
	display: inline-block;
}

.mM_button.secondary svg {
	width: 14px;
	min-width: 14px;
	fill: var(--sekundarbutton_font_color);
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

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

.mM_button.secondary:hover * {
	color:var(--sekundarbutton_hover_font_color);
}

.mM_button.secondary:hover svg {
	fill: var(--sekundarbutton_hover_font_color);
}

.mM_link{
	cursor:pointer;
	/* display: flex; */
	display: inline-flex;
	gap: 0 7px;
	-webkit-transition: color .4s, background .4s;
	-moz-transition: color .4s, background .4s;
	-ms-transition: color .4s, background .4s;
	-o-transition: color .4s, background .4s;
	transition: color .4s, background .4s;
}

.mM_link.primary{
	color:var(--primarlink_font_color);
}

.mM_link.primary * {
	color:var(--primarlink_font_color);
	-webkit-transition: color .4s, background .4s;
	-moz-transition: color .4s, background .4s;
	-ms-transition: color .4s, background .4s;
	-o-transition: color .4s, background .4s;
	transition: color .4s, background .4s;
}

.mM_link.primary svg {
	width: 11px;
	fill: var(--primarlink_font_color);
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

.mM_link.primary:hover{
	color:var(--primarlink_hover_font_color);
}

.mM_link.primary:hover * {
	color:var(--primarlink_hover_font_color);
}

.mM_link.primary:hover svg {
	fill: var(--primarlink_hover_font_color);
}

.mM_link.secondary{
	color:var(--sekundarlink_font_color);
}

.mM_link.secondary svg {
	width: 11px;
	fill: var(--sekundarlink_font_color);
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

.mM_link.secondary:hover{
	color:var(--sekundarlink_hover_font_color);
}

.mM_link.secondary:hover svg {
	fill: var(--sekundarlink_hover_font_color);
}

@media screen and (max-width: 991px) {
	.mM_button.primary{
		padding-left: 12px;
	}
	
	.mM_button.secondary{
		padding: 10px 12px;
	}
}
/* end link / button */



/* form */

.wpcf7 form .wpcf7-not-valid-tip{
	margin-top: 5px;
    position: relative;
    font-size: 0.8rem;
    padding: 6px 10px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    margin-bottom:0;
}

.wpcf7 form .wpcf7-response-output{
    position: relative;
    font-size: 0.8rem;
    padding: 6px 10px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
    margin: 0;
    margin-top: 10px;
}

.wpcf7 form.sent .wpcf7-response-output{
	color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.wpcf7-form{
	display: table;
	width: 100%;
}

.wpcf7-form * {
	font-family: 'IBMPlexSans', sans-serif;
}

:-ms-input-placeholder,
::-ms-input-placeholder{
	color: rgba(255,255,255,.5);
	opacity: 1;
	font-size: 1rem;
}

.wpcf7-form *::placeholder{
	color: rgba(255,255,255,.5);
	opacity: 1;
	font-size: 1rem;
}

section.white .wpcf7-form *::placeholder{
	color: rgba(18, 51, 91, 0.5);
}

.wpcf7-form .btw_form_item_label {
	display: none;
}

.wpcf7-form .btw_form_item_header {
	text-align: right;
	margin-bottom: 12px;
}

.wpcf7-form .btw_form_item_container:not(.btw_form_item_header) {
	margin-bottom: 25px;
}

.wpcf7-form .btw_form_item_container.btw_form_item_submit_container {
	margin-bottom: 0;
}

.wpcf7-form .btw_required_text {
	color: rgba(255,255,255,.5);
	font-size: .84375rem;
}

.form_container{
	display:flex;
	gap: 0 20px;
	margin-bottom: 20px;
}

.form_item,
.wpcf7-form-control{
	width: 100%;
}

.form_item{
	display: flex;
	flex-direction: column;
}

.form_acceptance{
	margin-top: 20px;
}

.wpcf7-form .btw_input_item:not(.btw_submit_item) {
	background: transparent;
	font-size: 1rem;
}

.wpcf7-form-control{
	padding: 13px 22px 15px;
	border-radius: 3px;
	border: 1px solid rgba(255,255,255,.3);
}

section.white .wpcf7-form-control{
	border-color: rgba(18, 51, 91, 0.3);
}

section.white .wpcf7-form .btw_required_text {
	color: rgba(18, 51, 91, 0.3);
}

section.white .wpcf7-form .mM_button.primary {
	background-color: var(--primarbutton_background_color);
	color: var(--primarbutton_font_color);
	border: transparent;
}

section.white .wpcf7-form .mM_button.primary:hover {
	background-color: #f8f9fa;
	color: #12335b;
}

textarea.wpcf7-form-control {
	resize: none;
}

.form_item [data-name="ihr_anliegen"] .wpcf7-not-valid-tip{
	margin-top: -5px;
}

.form_submit{
	position: relative;
	margin-top: 10px;
}

.wpcf7 .wpcf7-submit:disabled {
	pointer-events: none;
	cursor: not-allowed;
}

.wpcf7-form .form_submit .wpcf7-spinner{
	position: absolute;
    left: calc(50% - 12px);
	top: calc(50% - 12px);
    margin: 0;
}

.wpcf7-acceptance .wpcf7-list-item{
	margin:0;
}

.wpcf7-acceptance{
	padding:0;
	border:none;
}

.wpcf7-submit:not([disabled]) {
	cursor: pointer;
}

/* input checked */
.wpcf7-acceptance input {
	display: none;
}

.wpcf7-acceptance label {
	position: relative;
	padding-left: 35px;
}

.wpcf7-acceptance label:before,
.wpcf7-acceptance label:after {
	content: '';
	position: absolute;
}

.wpcf7-acceptance label:before {
	width: 25px;
	height: 25px;
	top: 50%;
	left: 0;
	border-radius: 3px;
	background-color: transparent;
	border: 1.5px solid rgba(255,255,255,.3);
	-webkit-transition: background-color .4s;
	-moz-transition: background-color .4s;
	-ms-transition: background-color .4s;
	-o-transition: background-color .4s;
	transition: background-color .4s;
	transform: translateY(-50%);
}

section.white .wpcf7-acceptance label:before {
	border-color: rgba(18, 51, 91, 0.3);
}

.wpcf7-acceptance label:has(input.checked):before {
	background-color: #ffdf01;
}

.wpcf7-acceptance label:after {
	opacity: 0;
	top: 50%;
	left: 5px;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='Isolationsmodus' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 359.22 255.12'%3E%3Cpath class='cls-1' d='M351.86,7.58c-9.93-9.99-26.12-10.12-36.2-.28L126.43,193.31,44.17,108.61c-9.81-10.17-26.05-10.5-36.28-.75-10.23,9.76-10.56,25.91-.75,36.08.04.05.09.09.13.14l100.3,103.38c4.8,4.87,11.36,7.63,18.22,7.66h.28c6.73-.02,13.18-2.67,17.96-7.38L351.63,43.58c10.03-9.89,10.13-25.99.23-36.01Z' style='fill:%2312335b'/%3E%3C/svg%3E");
	background-size: 15px 10px;
	width: 15px;
	height: 10px;
	transform: translateY(-50%);
}

.wpcf7-acceptance label:has(input.checked):after {
	opacity: 1;
}

.wpcf7-acceptance * {
	color: rgba(255,255,255,.5);
}

section.white .wpcf7-acceptance * {
	color: rgba(18, 51, 91, 0.5);
}

.wpcf7-acceptance a {
	text-decoration: underline;
}

.wpcf7-acceptance a:hover {
	text-decoration: none;
}

.wpcf7-form .mM_select_selected {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 22px 15px;
	border-radius: 3px;
	border: 1px solid rgba(255,255,255,.3);
	color: rgba(255,255,255,.5);
	border-radius: 3px;
}

.wpcf7-form .mM_select_selected.mM_selected_non_default {
	color: #fff;
}

section.white .wpcf7-form .mM_select_selected.mM_selected_non_default {
	color: #12335b;
}

section.white .wpcf7-form .mM_select_selected {
	border-color: rgba(18, 51, 91, 0.3);
	color: rgba(18, 51, 91, 0.5);
}

.wpcf7-form .mM_select_arrows .mM_select_arrow_down {
	border-top: 4px solid #fff;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	width: 4px;
}

section.white .wpcf7-form .mM_select_arrows .mM_select_arrow_down {
	border-top-color: #12335b;
}

.wpcf7-form .mM_custom_select .mM_select_selected + .mM_select_items {
	background: transparent;
	border: 1px solid transparent;
	border-top: none;
	border-radius: 0 0 3px 3px;
	-webkit-transition: border-color .4s, background .4s;
	-moz-transition: border-color .4s, background .4s;
	-ms-transition: border-color .4s, background .4s;
	-o-transition: border-color .4s, background .4s;
	transition: border-color .4s, background .4s;
}

.wpcf7-form .mM_custom_select .mM_select_selected.mM_select_arrow_active + .mM_select_items {
	border-color: rgba(255,255,255,.3);
	background: #12335b;
}

section.white .wpcf7-form .mM_custom_select .mM_select_selected.mM_select_arrow_active + .mM_select_items {
	border-color: rgba(18, 51, 91, 0.3);
	background: #fff;
}

.wpcf7-form .mM_custom_select .mM_select_item {
	padding: 3px 22px;
}

.wpcf7-form .mM_button.primary {
	background: #ffffff;
	color: #12335b;
	font-size: 1rem;
	width: auto;
	padding: 11px 27px 12px;
	padding-right: 60px;
}

.wpcf7-form .mM_button.primary:hover {
	background: #12335b;
	color: #fff;
}

.wpcf7-form .btw_form_submit_helper_container:before {
	content: '';
	position: absolute;
	top: 6px;
	right: 6px;
	width: 34px;
	height: 34px;
	background: #ffdf01;
	border-radius: 3px;
	pointer-events: none;
	-webkit-transition: background .4s;
	-moz-transition: background .4s;
	-ms-transition: background .4s;
	-o-transition: background .4s;
	transition: background .4s;
}

.wpcf7-form .btw_form_submit_helper_container.active:before {
	background: #fff;
}

.wpcf7-form .btw_form_submit_helper_container:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 17px;
	width: 14px;
	height: 12px;
	background-image: url('../img/right-arrow.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.wpcf7-form .btw_form_item_submit_container {
	position: relative;
	display: flex;
	justify-content: flex-end;
}

.wpcf7-form .wpcf7-spinner {
	position: absolute;
	top: calc(100% + 15px);
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

.wpcf7-form .btw_form_item_accept_container {
	display: flex;
	align-items: center;
}

.btw_form_item_accept_container .wpcf7-list-item-label,
.btw_form_item_accept_container .wpcf7-form-control,
.btw_form_item_accept_container .wpcf7-list-item > label {
	display: inline-block;
}
/* end input checked */

@media screen and (max-width: 1399px) {
	.btw_form_item_container.mM_col_50 {
		width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.form_container{
	    flex-direction: column;
		gap: 20px 0;
	}
	
	.wpcf7-form .btw_form_item_container.btw_form_item_accept_container {
		margin-bottom: 33px;
	}
}

/* end form */

/************************************************************************************************************************************/

/****************************
*       Custom Styles       *
****************************/

@font-face {
	font-family: 'IBMPlexSans';
	src: 	url(./font/IBMPlexSans-Light.otf) format('opentype'),
			url(./font/IBMPlexSans-Light.ttf) format('truetype'),
			url(./font/IBMPlexSans-Light.woff) format('woff'),
			url(./font/IBMPlexSans-Light.woff2) format('woff2');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'IBMPlexSans';
	src: 	url(./font/IBMPlexSans-Regular.otf) format('opentype'),
			url(./font/IBMPlexSans-Regular.ttf) format('truetype'),
			url(./font/IBMPlexSans-Regular.woff) format('woff'),
			url(./font/IBMPlexSans-Regular.woff2) format('woff2');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'IBMPlexSans';
	src: 	url(./font/IBMPlexSans-Medium.otf) format('opentype'),
			url(./font/IBMPlexSans-Medium.ttf) format('truetype'),
			url(./font/IBMPlexSans-Medium.woff) format('woff'),
			url(./font/IBMPlexSans-Medium.woff2) format('woff2');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'IBMPlexSans';
	src: 	url(./font/IBMPlexSans-SemiBold.otf) format('opentype'),
			url(./font/IBMPlexSans-SemiBold.ttf) format('truetype'),
			url(./font/IBMPlexSans-SemiBold.woff) format('woff'),
			url(./font/IBMPlexSans-SemiBold.woff2) format('woff2');
	font-weight: 600;
	font-style: normal;
}

:root {
	scroll-behavior: unset;
}

html,
body{
	font-family: 'IBMPlexSans', sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: var(--font_size);
	line-height: 1.5;
	background-color: var(--background_color);
}

body {
	margin: 0;
	overflow-x: hidden;
}

*{
	color:var(--font_color);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
	font-family: aileron, sans-serif;
	font-weight: 600;
	font-style: normal;
	line-height: 1.1;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
	margin: 0;
}

h1 span,
.h1 span,
h2 span,
.h2 span,
h3 span,
.h3 span,
h4 span,
.h4 span,
p span {
	color: #004f9f;
}

h1,
.h1 {
	font-size: 5.905rem;
}

h2,
.h2 {
	font-size: 3.75rem;
	margin-bottom: 30px;
}

h3,
.h3 {
	font-size: 3.75rem;
}

h4,
.h4 {
	font-size: 2.813rem;
}

@media screen and (max-width: 1399px) {
	h1,
	.h1 {
		font-size: 4.905rem;
	}
	
	h2,
	.h2 {
		font-size: 3.25rem;
	}
	
	h3,
	.h3 {
		font-size: 3.25rem;
	}
	
	h4,
	.h4 {
		font-size: 3.25rem;
	}
}

@media screen and (max-width: 1199px) {
	h1,
	.h1 {
		font-size: 3.905rem;
	}
	
	h2,
	.h2 {
		font-size: 2.75rem;
	}
	
	h3,
	.h3 {
		font-size: 2.75rem;
	}
	
	h4,
	.h4 {
		font-size: 2.75rem;
	}
}

@media screen and (max-width: 767px) {
	h1,
	.h1 {
		font-size: 3.505rem;
	}
	
	h2,
	.h2 {
		font-size: 2.25rem;
	}
	
	h3,
	.h3 {
		font-size: 2.25rem;
	}
	
	h4,
	.h4 {
		font-size: 2.25rem;
	}
}

@media screen and (max-width: 575px) {
	h1,
	.h1 {
		font-size: 2.705rem;
	}
	
	h2,
	.h2 {
		font-size: 1.75rem;
	}
	
	h3,
	.h3 {
		font-size: 1.75rem;
	}
	
	h4,
	.h4 {
		font-size: 1.75rem;
	}
	
	h1,
	.h1,
	h2,
	.h2,
	h3,
	.h3,
	h4,
	.h4 {
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 400px) {
	h1,
	.h1 {
		font-size: 2rem;
	}
	
	h2,
	.h2 {
		font-size: 1.45rem;
	}
	
	h3,
	.h3 {
		font-size: 1.45rem;
	}
	
	h4,
	.h4 {
		font-size: 1.45rem;
	}
}

.mM_title_horizontal {
	position: absolute;
	top: 100px;
	left: 60px;
	text-transform: uppercase;
	color: #a0a3ac;
	font-size: .9375rem;
	z-index: 2;
	-webkit-transform: rotate(-90deg) translate(-100%, -50%);
	-webkit-transform-origin: left;
	-moz-transform: rotate(-90deg) translate(-100%, -50%);
	-moz-transform-origin: left;
	-ms-transform: rotate(-90deg) translate(-100%, -50%);
	-ms-transform-origin: left;
	-o-transform: rotate(-90deg) translate(-100%, -50%);
	-o-transform-origin: left;
	transform: rotate(-90deg) translate(-100%, -50%);
	transform-origin: left;
}

@media screen and (max-width: 1199px) {
	.mM_title_horizontal {
		left: 30px;
	}
}

@media screen and (max-width: 800px) {
	.mM_title_horizontal {
		display: none;
	}
}

.custom_cursor {
	position: fixed;
	width: 112px;
	height: 112px;
	border-radius: 50%;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity .4s;
	background: #004f9f;
}

.custom_cursor.active {
	opacity: 1;
}

.progress_ring_circle_placeholder {
	opacity: .3;
}

.custom_cursor_text {
	position: absolute;
	font-size: .9375rem;
	color: #ffffff;
	z-index: 2;
	text-align: center;
}

.progress_ring {
	position: absolute;
	top: 0;
	left: 0;
	transform: rotate(-90deg);
}

.progress_ring_circle {
	transition: stroke-dashoffset 0.2s;
}

p {
	margin-top: 0;
}

p:last-child {
	margin-bottom: 0;
}

a,
a:hover,
a:active,
a:visited {
	color: inherit;
	text-decoration: none;
	outline: none;
}

a {
	display: inline-block;
}

img,
svg {
	max-width: 100%;
	width: 100%;
	height: auto;
}

.coverimg {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

img.coverimg {
	font-family: 'object-fit: cover; object-position: center;';
}

.overflow_x_hidden{
	overflow-x: hidden !important;
}

.overflow_y_hidden{
	overflow-y: hidden !important;
}

.wpgmza-filter-widgets {
	display: none !important;
}

.mM_container {
	max-width: 100%;
	margin: 0 auto;
}

.mM_row,
.btw_row {
	display: flex;
	flex-wrap: wrap;
	gap: 0 20px;
}

.btw_form_container .btw_row {
	justify-content: space-between;
}

.btw_form_item_container.btw_form_item_accept_container,
.btw_form_item_container.btw_form_item_submit_container {
	width: auto;
}

[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
	padding-top:100px;
	padding-bottom:100px;
}

[data-innerer-abstand="innerer_abstand_nur_oben"]{
	padding-top:100px;
	padding-bottom:0;
}

[data-innerer-abstand="innerer_abstand_nur_unten"]{
	padding-top:0;
	padding-bottom:100px;
}

[data-auserer-abstand="auserer_abstand_oben_und_unten"]{
	margin-top:100px;
	margin-bottom:100px;
}

[data-auserer-abstand="auserer_abstand_nur_oben"]{
	margin-top:100px;
	margin-bottom:0;
}

[data-auserer-abstand="auserer_abstand_nur_unten"]{
	margin-top:0;
	margin-bottom:100px;
}

.mM_container[data-ausrichtung="links"]{
	padding-left: 0;
	margin-left: 0;
}

.mM_container[data-ausrichtung="rechts"]{
	padding-right: 0;
	margin-right:0;
}

.mM_container[data-ausrichtung="zentriert_ausfuellung_rechts"]{
	/* padding-right: 0;
	margin-right: 0; */
}

.mM_container[data-ausrichtung="zentriert_ausfuellung_links"]{
	/* padding-left: 0;
	margin-left: 0; */
}

.mM_container[data-container="container_full"] {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

[data-appearance="fade"]{
	opacity: 0;
}

.mM_d_flex {
	display: flex;
}

.mM_d_none {
	display: none;
}

.mM_d_block {
	display: block;
}

.mM_d_inlineblock {
	display: inline-block;
}

.mM_links {
	margin-top: 68px;
}

section.mM_above_footer .mM_above_footer_contact_link svg {
	transition: fill .4s;
}

section.mM_above_footer .mM_above_footer_contact_link span {
	transition: color .4s;
}

section.mM_above_footer .mM_above_footer_contact_link:hover svg {
	fill: #6baee6;
}

section.mM_above_footer .mM_above_footer_contact_link:hover span {
	color: #6baee6;
}

[class*="mM_col_"] {
	flex: 0 0 auto;
	max-width: 100%;
}

.mM_col_100,
[class*="mM_col_"] {
	width: 100%;
}

@media all and (min-width: 576px) {
	.mM_container {
		max-width: 540px;
	}
	
	.mM_col_25,
	.mM_col_33,
	.mM_col_35,
	.mM_col_40 {
		width: calc(50% - 10px);
	}
}

@media all and (min-width: 768px) {
	.mM_container {
		max-width: 720px;
	}
}

@media all and (min-width: 992px) {
	.mM_container {
		max-width: 960px;
	}
	
	.mM_col_50 {
		width: calc(50% - 10px);
	}
	
	.mM_col_33 {
		width: calc(33.3333% - 14px);
	}
	
	.mM_col_75 {
		width: calc(50% - 10px);
	}
}

@media all and (min-width: 1200px) {
	.mM_container {
		max-width: 1140px;
	}
	
	.mM_col_25 {
		width: calc(25% - 15px);
	}
	
	.mM_col_75 {
		width: calc(75% - 10px);
	}
	
	.mM_col_35 {
		width: calc(35% - 15px);
	}
	
	.mM_col_40 {
		width: calc(40% - 15px);
	}
}

@media all and (min-width: 1400px) {
	.mM_container {
		max-width: 1320px;
	}
}

@media all and (min-width: 1600px) {
	.mM_container {
		max-width: 1520px;
	}
}

@media all and (min-width: 1800px) {
	.mM_container {
		max-width: 1720px;
	}
}

@media all and (min-width: 1921px) {
	.mM_container {
		max-width: 1841px;
	}
}

@media all and (min-width: 2200px) {
	.mM_container {
		max-width: 2120px;
	}
}

@media all and (max-width: 767px) {
	[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
		padding-top:58px;
		padding-bottom:58px;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_oben"]{
		padding-top:58px;
		padding-bottom:0;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_unten"]{
		padding-top:0;
		padding-bottom:58px;
	}
	
	[data-auserer-abstand="auserer_abstand_oben_und_unten"]{
		margin-top:58px;
		margin-bottom:58px;
	}
	
	[data-auserer-abstand="auserer_abstand_nur_oben"]{
		margin-top:58px;
		margin-bottom:0;
	}
	
	[data-auserer-abstand="auserer_abstand_nur_unten"]{
		margin-top:0;
		margin-bottom:58px;
	}
	
	.mM_title_horizontal {
		display: none;
	}
}

@media all and (max-width: 575px) {
	.mM_container {
		padding: 0 20px;
	}
	
	.mM_links {
		margin-top: 33px;
	}
	
	.mM_button .mM_button_text {
		hyphens: auto;
	}
}

.mM_lang_switcher {
	position: relative;
}

.mM_lang_switcher_active_lang_container {
	cursor: pointer;
}

.mM_lang_switcher_active {
	display: flex;
	gap: 0 9px;
	position: relative;
	padding-right: 13px;
}

.mM_lang_switcher_active:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	border-top: 3px solid currentcolor;
	border-left: 2.5px solid transparent;
	border-right: 2.5px solid transparent;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

.mM_lang_switcher_active svg {
	width: 17px;
	fill: #fff;
}

.mM_lang_container {
	height: 0;
	overflow: hidden;
	overflow-y: hidden;
	overflow-y: scroll;
	position: absolute;
	left: 0;
	top: 100%;
	z-index: 9998;
	background: #fff;
	width: 100%;
}

.mM_lang_item a {
	display: inline-block;
	text-align: center;
	padding: 10px 0;
	width: 100%;
}

section.mM_above_footer {
	background: #fff;
}

section.mM_above_footer .mM_row {
	align-items: center;
}

section.mM_above_footer .mM_above_footer_logo_item > svg {
	width: 213px;
	fill: #004f9f;
}

section.mM_above_footer .mM_above_footer_contacts_container * {
	color: #12335b;
	font-size: .9375rem;
}

section.mM_above_footer .mM_above_footer_contacts_headline {
	font-weight: 600;
	margin-bottom: 11px;
}

section.mM_above_footer .mM_above_footer_contact_link {
	display: flex;
	align-items: center;
	gap: 0 16px;
}

section.mM_above_footer .mM_above_footer_contact_link_icon {
	width: 16px;
	fill: #004f9f;
}

section.mM_above_footer .mM_above_footer_mail .mM_above_footer_contact_link_icon {
	width: 18px;
}

section.mM_above_footer .mM_above_footer_phone {
	margin-bottom: 7px;
}

section.mM_above_footer .mM_above_footer_links_container {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
}

.mM_button.primary .mM_button_text {
	width: calc(100% - 34px - 22px);
}

@media screen and (max-width: 1399px) {
	section.mM_above_footer .mM_above_footer_links_container {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media screen and (max-width: 1199px) {
	section.mM_above_footer .mM_above_footer_links_container {
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		margin-top: 50px;
		width: 100%;
	}
	
	.mM_links {
		flex-wrap: wrap;
		gap: 10px;
	}
}

@media screen and (max-width: 575px) {
	section.mM_above_footer .mM_above_footer_links_container {
		flex-direction: column;
		align-items: flex-start;
	}
	
	section.mM_above_footer .mM_above_footer_contacts_container {
		margin-top: 16px;
	}
	
	section.mM_above_footer .mM_above_footer_links_container {
		margin-top: 25px;
	}
	
	section.mM_above_footer .mM_above_footer_links_container {
		gap: 10px;
	}
}

@media screen and (max-width: 300px) {
	.mM_button.primary {
		gap: 0 10px;
	}
	
	.mM_button.primary .mM_button_text {
		width: calc(100% - 34px - 10px);
	}
}

footer {
	background: #12335b;
	position: relative;
	overflow: hidden;
}

footer .mM_footer_bg_container {
	position: absolute;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	opacity: .02;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

footer .mM_footer_bg_item {
	object-fit: cover;
	object-position: center;
	height: 100%;
}

footer .mM_container {
	position: relative;
	z-index: 2;
}

footer .mM_footer_middle {
	justify-content: space-between;
	padding: 100px 0 60px;
	position: relative;
}

footer .mM_footer_middle:after {
	content: '';
	width: 100vw;
	height: 1px;
	bottom: 0;
	left: 50%;
	position: absolute;
	background: rgba(255,255,255,.2);
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
}

footer .menu > .menu-item,
footer .mM_footer_social_title {
	color: #8fc7ff;
}

footer .menu > .menu-item > a {
	margin-bottom: 4px;
	transition: color .4s;
}

footer .menu-item-has-children {
	margin-bottom: 13px;
}

footer .mM_footer_middle .menu {
	transition: opacity .4s;
}

footer .mM_footer_middle .menu {
	opacity: 1;
}

/* footer .mM_footer_middle:has(.menu a:hover) .menu:not(:has(a:hover)):not(:has(.current-menu-item)):not(:has(.current-page-ancestor)),
footer .mM_footer_middle:has(.menu .current-page-ancestor) .menu:not(:has(.current-page-ancestor)):not(:has(a:hover)),
footer .mM_footer_middle:has(.menu .current-menu-item) .menu:not(:has(.current-menu-item)):not(:has(a:hover)) {
	opacity: .5;
} */


/* footer .menu > .menu-item.current-menu-item > a,
footer .menu > .menu-item > a:hover {
	color: #ffdf01;
} */

footer .menu a {
	transition: opacity .4s;
}

footer .menu a:hover {
	opacity: .5;
}

footer .menu li.current_page_item > a {
	opacity: .5;
}

footer .mM_footer_social_title {
	margin-bottom: 4px;
}

footer .sub-menu * {
	color: #fff;
}

footer .sub-menu .menu-item>a {
	padding-bottom: 2px;
}

footer .mM_footer_middle_right_center .menu > li:nth-child(2) {
	margin-bottom: 11px;
}

footer .mM_footer_social_social_container {
	display: flex;
	gap: 9px;
}

footer .mM_footer_social_item {
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	border: 1px solid #394563;
	-webkit-transition: background .4s;
	-moz-transition: background .4s;
	-ms-transition: background .4s;
	-o-transition: background .4s;
	transition: background .4s;
}

footer .mM_footer_social_item:hover {
	background: #394563;
}

footer .mM_footer_social_item svg {
	fill: #fff;
	width: 21px;
}

footer .mM_footer_social_item.social_instagram_simple svg {
	width: 33px;
	margin-top: 2px;
}

footer .mM_footer_social_item.social_facebook_simple svg {
	width: 9px;
}

footer .mM_footer_social_item.social_linkedin_simple svg {
	width: 17px;
}

footer .mM_footer_bottom {
	justify-content: space-between;
	align-items: center;
	padding: 40px 0;
}

footer .mM_footer_bottom * {
	font-size: .84375rem;
}

footer .mM_footer_copyright,
footer #copyright_text_year {
	color: rgba(248,249,250,.5);
}

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

footer .mM_footer_bottom_middle * {
	color: #fff;
}

footer .mM_footer_bottom_middle .menu {
	display: flex;
	gap: 0 30px;
}

footer .mM_footer_bottom_middle .menu a {
	margin-bottom: 0;
}

.mM_footer_datasec_nav a{ 
	transition: opacity .4s !important;
}

.mM_footer_datasec_nav .current-menu-item a,
.mM_footer_datasec_nav a:hover{
	opacity: .5;
}

footer .mM_footer_search_lang_inner {
	display: flex;
	align-items: center;
	gap: 0 45px;
}

footer .mM_footer_search {
	position: relative;
}

footer .mM_footer_search:after {
	content: '';
	width: 1px;
	height: 37px;
	position: absolute;
	right: -23px;
	top: 50%;
	background: #394563;
	z-index: 2;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}

footer .mM_footer_search_link {
	display: flex;
	align-items: center;
	gap: 0 9px;
}

footer .mM_footer_search_link svg {
	width: 18px;
	min-width: 18px;
	fill: #fff;
}

footer .mM_footer_backlink_container {
	color: rgba(248,249,250,.5);
	text-align: right;
}

footer .mM_footer_backlink_container a {
	text-decoration: underline;
}

footer .mM_footer_backlink_container a:hover {
	text-decoration: none;
}

footer .mM_to_top_container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px 0;
	width: 34px;
	height: 34px;
	border-radius: 3px;
	background: #8fc7ff;
	cursor: pointer;
	overflow: hidden;
}

footer .mM_to_top_container.desktop {
	position: absolute;
	right: 0;
	bottom: 33px;
}

footer .mM_to_top_container.mobile {
	display: none;
}

footer .mM_to_top_container svg {
	fill: #08173c;
	/* width: 13px;
	min-width: 13px; */
	-webkit-transform: translateY(12px) rotate(-90deg);
	-moz-transform: translateY(12px) rotate(-90deg);
	-ms-transform: translateY(12px) rotate(-90deg);
	-o-transform: translateY(12px) rotate(-90deg);
	transform: translateY(12px) rotate(-90deg);
	
	-webkit-transition: -webkit-transform .4s;
	-moz-transition: -moz-transform .4s;
	-ms-transition: -ms-transform .4s;
	-o-transition: -o-transform .4s;
	transition: transform .4s;
}

footer .mM_to_top_container:hover svg {
	-webkit-transform: translateY(-12px) rotate(-90deg);
	-moz-transform: translateY(-12px) rotate(-90deg);
	-ms-transform: translateY(-12px) rotate(-90deg);
	-o-transform: translateY(-12px) rotate(-90deg);
	transform: translateY(-12px) rotate(-90deg);
}

footer .mM_lang_item_title {
	color: #12335b;
}

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

header .menu-item-has-children .mM_has_sub_menu_arrow,
footer .menu-item-has-children .mM_has_sub_menu_arrow {
	display: none;
	padding: 0;
	position: absolute;
	right: 0;
	top: 18px;
	pointer-events: none;
	background-color: transparent;
}

header .menu-item-has-children .mM_has_sub_menu_arrow .mM_button_icon,
footer .menu-item-has-children .mM_has_sub_menu_arrow .mM_button_icon {
	flex-direction: column-reverse;
	gap: 14px 0;
	border: 1px solid transparent;
	
	transition: border .4s, background .4s;
}

header .menu-item-has-children:not(.sub_menu_open):not(:hover) .mM_has_sub_menu_arrow .mM_button_icon,
footer .menu-item-has-children:not(.sub_menu_open):not(:hover) .mM_has_sub_menu_arrow .mM_button_icon {
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.3);
}

footer .menu-item-has-children:not(.sub_menu_open) .mM_has_sub_menu_arrow svg {
	fill: #fff;
}

footer .menu-item-has-children:hover .mM_has_sub_menu_arrow svg{
	fill: #12335b;
}

header .menu-item-has-children .mM_has_sub_menu_arrow svg,
footer .menu-item-has-children .mM_has_sub_menu_arrow svg {
	width: 13px;
	min-width: 13px;
	-webkit-transform: translateY(-12px) rotate(-90deg);
	-moz-transform: translateY(-12px) rotate(-90deg);
	-ms-transform: translateY(-12px) rotate(-90deg);
	-o-transform: translateY(-12px) rotate(-90deg);
	transform: translateY(-12px) rotate(-90deg);
}

header .menu-item-has-children.sub_menu_open .mM_has_sub_menu_arrow svg,
footer .menu-item-has-children.sub_menu_open .mM_has_sub_menu_arrow svg {
	-webkit-transform: translateY(12px) rotate(90deg);
	-moz-transform: translateY(12px) rotate(90deg);
	-ms-transform: translateY(12px) rotate(90deg);
	-o-transform: translateY(12px) rotate(90deg);
	transform: translateY(12px) rotate(90deg);
}

@media screen and (max-width: 1399px) {
	footer .mM_footer_middle {
		flex-wrap: wrap;
	}
	
	footer .mM_footer_middle_social {
		width: 100%;
		margin-top: 70px;
	}
	
	footer .mM_footer_bottom {
		flex-wrap: wrap;
		gap: 20px 0;
	}
	
	footer .mM_footer_bottom_left,
	footer .mM_footer_bottom_right {
		width: calc(50% - 10px);
		order: 2;
	}
	
	footer .mM_footer_bottom_middle {
		width: 100%;
		justify-content: start;
		align-items: center;
		order: 1;
		gap: 20px 30px;
	}
	
	footer .mM_footer_search_lang_container {
		display: flex;
		width: 100%;
		justify-content: space-between;
	}
	
	footer .mM_to_top_container.desktop {
		display: none;
	}
	
	footer .mM_to_top_container.mobile {
		display: flex;
	}
}

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

@media screen and (max-width: 991px) {
	footer .mM_footer_middle {
		flex-direction: column;
	}
	
	footer .mM_footer_bg_item {
		object-position: right;
	}
	
	footer .mM_footer_middle .menu > li {
		border-top: 1px solid rgba(248, 249, 250, 0.3);
		padding: 10px 0;
		margin-bottom: 0;
	}
	
	footer .menu-item-has-children {
		cursor: pointer;
	}
	
	footer .mM_footer_middle>.mM_footer_middle_last_nav .menu > li:last-child {
		border-bottom: 1px solid rgba(248, 249, 250, 0.3);
	}
	
	footer .mM_footer_middle_right_center .menu > li:nth-child(2) {
		margin-bottom: 0;
	}
	
	footer .mM_footer_middle .menu > li > a {
		padding: 13px 15px 13px 0;
		font-size: 1.063rem;
	}
	
	footer .menu > .menu-item > a {
		margin-bottom: 0;
	}
	
	footer .mM_footer_middle ul.sub-menu {
		display: none;
	}
	
	footer .mM_footer_middle:has(.menu a:hover) .menu:not(:has(a:hover)):not(:has(.current-menu-item)), 
	footer .mM_footer_middle:has(.menu .current-menu-item) .menu:not(:has(.current-menu-item)):not(:has(a:hover)) {
		opacity: unset;
	}
	
	footer .mM_footer_social_title {
		font-size: .844rem;
	}
	
	footer .mM_footer_middle li {
		opacity: 1;
		transition: opacity .4s;
	}
	
	footer .mM_footer_middle .menu {
		opacity: 1 !important;
	}
	
	/* footer .mM_footer_middle:has(.sub_menu_open) li:not(.sub_menu_open):not(.menu-item-has-children:hover):not(.sub_menu_open li):not(:has(a:hover)) {
		opacity: .5;
	} */
	
	footer .menu-item-has-children .mM_has_sub_menu_arrow {
		display: inline-flex;
	}
}

@media screen and (max-width: 767px) {
	footer .mM_footer_middle {
		padding: 60px 0;
	}
	
	footer .mM_footer_middle_social {
		margin-top: 26px;
	}
	
	footer .mM_footer_social_title {
		margin-bottom: 16px;
	}
	
	footer .mM_footer_bottom {
		gap: 0;
		padding: 30px 0;
	}
	
	footer .mM_footer_bottom_middle {
		flex-direction: column-reverse;
		align-items: start;
	}
	
	footer .mM_footer_bottom_left,
	footer .mM_footer_bottom_right {
		width: 100%;
		padding-right: calc(34px + 30px);  /* to top button + gap betwwen */
	}
	
	footer .mM_footer_bottom_left {
		margin-top: 22px;
	}
	
	footer .mM_footer_bottom_right {
		margin-top: 12px;
	}
	
	footer .mM_footer_backlink_container {
		text-align: left;
	}
}

/* Search Start */

section.mM_search .mM_search_top {
	background: #fff;
	padding-bottom: 100px;
	padding-top: 92px;
}

section.mM_search .mM_search_bottom {
	background: #f8f9fa;
	padding-top: 94px;
	padding-bottom: 135px;
}

section.mM_search .mM_post_type_pagination {
	display: flex;
}

section.mM_search .mM_post_type_pagination_items_container {
	display: flex;
}

section.mM_search .pagination_item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 51px;
	height: 51px;
	color: #0d3540;
	border: 1px solid #0d3540;
	border-radius: 3px;
	transition: color .4s, background .4s;
	cursor: pointer;
}

section.mM_search .pagination_item.mM_d_none {
	display: none;
}

section.mM_search .pagination_item:hover,
section.mM_search .pagination_item.pagination_active {
	color: #fff;
	background: #0d3540;
}

section.mM_search .pagination_item:not(:first-child) {
	margin-left: 10px;
}

section.mM_search .pagination_control {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 51px;
	height: 51px;
	border: 1px solid #b1bec2;
	border-radius: 3px;
	transition: background .4s, border-color .4s;
	cursor: pointer;
}

section.mM_search .pagination_control.active {
	background: #dee2e6;
	border-color: #dee2e6;
}

section.mM_search .pagination_control.active:hover {
	border-color: #004f9f;
	background: #004f9f;
}

section.mM_search .pagination_control.active:hover svg {
	fill: #fff;
}

section.mM_search .pagination_control:not(.active) {
	pointer-events: none;
}

section.mM_search .pagination_control svg {
	fill: #a0a4a8;
	width: 12px;
	min-width: 12px;
	height: 11px;
	min-height: 11px;
	transition: fill .4s;
}

section.mM_search .pagination_control.active svg {
	fill: #0d3540;
}

section.mM_search .pagination_prev_one {
	margin-right: 25px;
}

section.mM_search .pagination_prev_one svg {
	transform: rotate(180deg);
}

section.mM_search .pagination_next_one {
	margin-left: 25px;
}

section.mM_search .mM_post_type_pagination_container {
	display: flex;
	justify-content: center;
}

section.mM_search .mM_search_items {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}

section.mM_search .mM_search_item {
	background: #fff;
	width: calc(33.3333% - ((24px * 2) / 3));
	padding: 47px 34px 42px 36px;
}

section.mM_search .mM_search_itemTitle {
	margin-bottom: 23px;
}

section.mM_search .mM_search_excerpt {
	margin-bottom: 11px;
}

section.mM_search .mM_search_results_count {
	margin-bottom: 43px;
}

section.mM_search .mM_post_type_pagination_container {
	margin-top: 50px;
}

section.mM_search .mM_search_itemTitle a,
section.mM_search .mM_search_itemTitle {
	font-size: 1.063rem;
	color: #004f9f;
	font-weight: 600;
}

section.mM_search .mM_search_readMore {
	display: flex;
	align-items: center;
	gap: 7px;
}

section.mM_search .mM_search_readMore svg {
	width: 12px;
	fill: #004f9f;
	transition: margin-right .4s;
}

section.mM_search .mM_search_readMore:hover svg {
	margin-right: 5px;
}

section.mM_search .mM_search_title {
	margin-bottom: 42px;
}

.mM_search .mM_search_bar {
	background: #f8f9fa;
	border: 1px solid #e4e4e4;
	padding: 11px 13px;
}

.mM_search .mM_search_bar .proinput {
	padding: 0 !important;
	margin: 0 !important;
}

.mM_search .mM_search_bar .probox {
	height: auto !important;
	align-items: center !important;
}

.mM_search .mM_search_bar div.asl_w {
	box-shadow: none !important;
	border-radius: 3px !important;
	padding: 6px 7px 6px 25px !important;
	width: calc(100% - 25px - 7px);
}

.mM_search .mM_search_bar .promagnifier {
	background: #ffdf01 !important;
	border-radius: 3px !important;
	padding: 10px !important;
	height: 22px !important;
	width: 22px !important;
	transition: background .4s;
}

.mM_search .mM_search_bar .promagnifier:hover {
	background: #12335b !important;
}

.mM_search .mM_search_bar .promagnifier svg {
	fill: #12335b !important;
	transition: fill .4s;
}

.mM_search .mM_search_bar .promagnifier:hover svg {
	fill: #fff !important;
}

.mM_search .mM_search_bar .proclose {
	margin-right: 15px !important;
}

.mM_search .mM_search_bar .proclose svg {
	fill: #12335b !important;
	transition: fill .4s;
	background: transparent !important;
	width: 26px !important;
	height: 26px !important;
	margin-top: -14px !important;
}

.mM_search .mM_search_bar .proclose:hover svg {
	fill: #004f9f !important;
}

.mM_search .mM_search_bar .proinput input.orig,
.mM_search .mM_search_bar .proinput input.autocomplete {
	font-size: 1rem !important;
}

div.mM_search {
	background: #e8e9eb;
	border-top: 0 solid #e4e4e4;
	border-bottom: 0 solid #e4e4e4;
	padding: 0;
	opacity: 0;
	
	pointer-events: none;
	transition: all .4s;
}

div.mM_search.desktop {
	height: 0;
	left: 0;
	position: fixed;
	top: 144px;
	width: 100vw;
	z-index: 999;
}

div.mM_search.active {
	padding: 13px 0;
	height: auto;
	opacity: 1;
	border-top: 1px solid #e4e4e4;
	border-bottom: 1px solid #e4e4e4;
	pointer-events: all;
}

div.mM_search .mM_search_bar {
	background: transparent;
	border: none;
	padding: 0;
}

@media screen and (max-width: 991px) {
	section.mM_search .mM_search_item {
		width: calc(50% - (24px / 2));
	}
	
	section.mM_search .mM_search_excerpt,
	section.mM_search .mM_search_itemTitle {
		hyphens: auto;
	}
}

@media screen and (max-width: 767px) {
	section.mM_search .mM_search_top,
	section.mM_search .mM_search_bottom {
		padding-bottom: 58px;
		padding-top: 58px;
	}
}

@media screen and (max-width: 575px) {
	section.mM_search .mM_search_item {
		width: 100%;
	}
	
	section.mM_search .pagination_control,
	section.mM_search .pagination_item {
		width: 35px;
		height: 35px;
	}
}

/* Search End */

.m12_stellenangebote_singe_back_button {
	background: #fff;
}

/* Page not Found Start */

section.mM_page_not_found {
	max-height: 100vh;
}

section.mM_page_not_found .mM_404_image_container {
	display: flex;
	justify-content: center;
	margin-bottom: 69px;
}

section.mM_page_not_found .mM_404_image_container img {
	height: auto;
	width: auto;
}

section.mM_page_not_found .mM_404_title_container {
	text-align: center;
}

section.mM_page_not_found .mM_404_title_container h2 {
	margin-bottom: 26px;
}

section.mM_page_not_found .mM_404_text_container {
	text-align: center;
	margin-bottom: 66px;
}

section.mM_page_not_found .mM_404_links_container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	justify-content: center;
}

/* Page not Found End */

.otgs-development-site-front-end {
	display: none !important;
}