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

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

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

.opacity_0{
	opacity: 0;
}

/* link / button */
.button{
	padding: 13px 32px 14px 33px;
	border-radius: 35px;
	cursor:pointer;
	-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;
}

.button svg,
.link svg {
	margin-left: 8px;
	width: 17px;
}

.button.primary{
	background-color:var(--primarbutton_background_color);
	color: var(--primarbutton_font_color);
}

.button.primary svg {
	fill: var(--primarbutton_font_color);
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

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

.button.primary:hover svg {
	fill: var(--primarbutton_hover_font_color);
}

.button.secondary{
	background-color:var(--sekundarbutton_background_color);
	color:var(--sekundarbutton_font_color);
}

.button.secondary svg {
	fill: var(--sekundarbutton_font_color);
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

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

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

.link{
	cursor:pointer;
	-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;
}

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

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

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

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

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

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

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

.link.secondary:hover svg {
	fill: var(--sekundarlink_hover_font_color);
}
/* end link / button */

/* edit post link */

a.mM_edit_post {
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 99999;
	font-size: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #0056a1;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	color: #f67939;
	-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;
}

a.mM_edit_post_global {
	position: fixed;
	top: 150px;
	left: 40px;
}

a.mM_edit_post svg {
	width: 24px;
	fill: #f67939;
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

a.mM_edit_post:hover svg {
	fill: #0056a1
}

a.mM_edit_post:hover {
	background: #f67939;
	color: #0056a1;
}

/* end edit post link */

/* 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%;
}

:-ms-input-placeholder,
::-ms-input-placeholder{
	color: #0a2f57;;
	opacity: 1;
}

.wpcf7-form *::placeholder{
	color: #0a2f57;;
}

.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-control{
	padding: 5px 15px;
	border-radius: 5px;
	border: 1px solid #000;
}

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-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: 0;
	display: inline-block;
}

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

.wpcf7-acceptance label:before {
	width: 15px;
	height: 15px;
	top: 1px;
	left: 0;
	background-color: transparent;
	border: 1.5px solid #c3c3c3;
}

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

.wpcf7-acceptance label:after {
	opacity: 0;
	top: 5px;
	left: 3px;
	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:%23fff'/%3E%3C/svg%3E");
	background-size: 10px 7px;
	width: 10px;
	height: 7px;
}

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

@media screen and (max-width: 767px) {
	.form_container{
	    flex-direction: column;
		gap: 20px 0;
	}
}

/* end form */




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

/********************
*       Fonts       *
********************/

@font-face {
	font-family: "IvyJournal";
	font-weight: 400;
	src: url("../fonts/ivyjournal-regular.ttf") format("truetype");
}

@font-face {
	font-family: "Stratos";
	font-weight: 350;
	src: url("../fonts/stratos-semilight.ttf") format("truetype");
}

@font-face {
	font-family: "Stratos";
	font-weight: 500;
	src: url("../fonts/stratos-medium.ttf") format("truetype");
}

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

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

:root {
	scroll-behavior: unset;
}

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

body {
	margin: 0;
	overflow-x: hidden;
	padding-top: 140px;
}

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

p {
	margin-top: 0;
	line-height: 1.2;
}

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

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {  /* p */
	margin: 0;
	line-height: 1.2;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
	font-weight: 500;
}

.serif_font {
	font-family: "IvyJournal", sans-serif;
	font-weight: 400;
}

.green {
	color: #c3efc6;
}

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

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

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

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

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

a {
	display: inline-block;
	text-decoration: none;
}

a:focus-visible {
  outline: auto !important;
}

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 {
	display: flex;
	flex-wrap: wrap;
	gap: var(--row_gap);
}

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

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

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

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

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

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

.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: 30px;
}

[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 {
		width: calc(50% - (var(--row_gap) / 2));
	}
}

@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% - (var(--row_gap) / 2));
	}
	
	.mM_col_33 {
		width: calc(33.3333% - ((var(--row_gap) * 2) / 3));
	}
}

@media all and (min-width: 1200px) {
	.mM_container {
		max-width: 1140px;
	}
	
	.mM_col_25 {
		width: calc(25% - ((var(--row_gap) * 3) / 4));
	}
}

@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 screen and (max-width: 1199px) {
	h1,
	.h1 {
		font-size: 2.8rem;
	}
	
	h2,
	.h2 {
		font-size: 2.5rem;
	}
}

@media screen and (max-width: 991px) {
	[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
		padding-top: 82px;
		padding-bottom: 82px;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_oben"]{
		padding-top: 82px;
		padding-bottom: 0;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_unten"]{
		padding-top: 0;
		padding-bottom: 82px;
	}
	
	[data-auserer-abstand="auserer_abstand_oben_und_unten"]{
		margin-top: 82px;
		margin-bottom: 82px;
	}
	
	[data-auserer-abstand="auserer_abstand_nur_oben"]{
		margin-top: 82px;
		margin-bottom: 0;
	}
	
	[data-auserer-abstand="auserer_abstand_nur_unten"]{
		margin-top: 0;
		margin-bottom: 82px;
	}
}

@media screen and (max-width: 767px) {
	h1,
	.h1 {
		font-size: 2.4rem;
	}
	
	h2,
	.h2 {
		font-size: 2.1rem;
	}
}

@media all and (max-width: 575px) {
	.mM_container {
		padding: 0 20px;
	}
}

/*********************
*       Footer       *
*********************/

footer {
	position: relative;
	border-radius: 20px 20px 0 0;
}

footer .mM_footer_background {
	width: 100vw;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	z-index: 1;
}

footer .mM_footer_background img {
	height: 100%;
	border-radius: 20px 20px 0 0;
}

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

footer .mM_footer_top {
	display: flex;
	gap: 124px;
}

footer .mM_footer_form {
	width: 67%;
	background: #c3efc6;
	border-radius: 20px;
	margin-top: -79px;
	padding: 74px 99px 79px 99px;
}

footer .mM_footer_scroll_top_inner {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: #c3efc6;
	cursor: pointer;
}

footer .mM_footer_scroll_top {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 20px;
}

footer .mM_footer_scroll_top svg {
	width: 22px;
	fill: #002a4d;
	transform: rotate(-90deg);
	transition: margin-bottom .4s;
}

footer .mM_footer_scroll_top:hover svg {
	margin-bottom: 7px;
}

footer .mM_footer_adresse {
	width: 33%;
	padding-top: 80px;
}

footer .mM_footer_adresse * {
	color: #fff;
}

footer .mM_footer_adresse_firmierung p {
	font-weight: 500;
}

footer .mM_footer_offnungszeiten,
footer .mM_footer_offnungszeiten_item {
	display: flex;
	gap: 7px;
}

footer .mM_footer_offnungszeiten_hinweis p {
	color: #afb2b8;
	font-size: .875rem;
}

footer .mM_footer_offnungszeiten_titel p {
	font-weight: 500;
}

footer .mM_footer_adresse_firmierung {
	margin-bottom: 13px;
}

footer .mM_footer_adresse_adresse_1 {
	margin-bottom: 3px;
}

footer .mM_footer_offnungszeiten {
	margin-top: 48px;
}

.mM_form_item_submit {
	display: flex;
	justify-content: flex-end;
}

footer .footer_logo {
	height: 70px !important;
}

footer .mM_footer_container_logo {
	padding-right: 61px;
	border-right: 1px solid rgba(255, 255, 255, .3);
}

footer .mM_footer_middle_left {
	display: flex;
	align-items: center;
	gap: 61px;
	width: 67%;
}

footer .mM_footer_middle_left nav li a {
	color: #fff;
	transition: color .4s;
}

footer .mM_footer_middle_left nav li a:hover,
footer .mM_footer_middle_left nav li.current-menu-item a {
	color: #c3efc6;
}

footer .mM_footer_middle_left nav ul {
	display: flex;
	gap: 56px;
	justify-content: space-between;
}

footer .mM_footer_middle {
	gap: 187px;
	margin-top: 80px;
	/* padding: 0 100px; */
}

footer .mM_footer_middle_left {
	padding-left: 100px;
}

/* footer .mM_footer_middle_right {
	padding-right: 100px;
} */

footer .mM_footer_middle_right {
	width: 33%;
	display: flex;
	/* align-items: center; */
	flex-direction: column;
	gap: 15px 0;
}

footer .mM_footer_phone_mail {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

footer .mM_footer_mobile_phone_mail_button a {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	transition: color .4s;
}

footer .mM_footer_mobile_phone_mail_button a:hover {
	color: #c3efc6;
}

footer .mM_footer_mobile_phone_mail_button svg {
	fill: #c3efc6;
	height: 25px;
	width: auto;
}

footer .mM_footer_mobile_phone_mail_button_phone svg {
	width: 14px;
}

footer .mM_footer_mobile_phone_mail_button_fax svg {
	height: 18px;
}

footer .mM_footer_bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 72px;
	padding: 0 100px;
	padding-bottom: 35px;
}

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

footer .mM_footer_bottom_middle nav ul {
	display: flex;
	gap: 23px;
}

footer .mM_footer_bottom_left *,
footer .mM_footer_bottom_right * {
	color: rgba(255, 255, 255, .5);
}

footer .mM_footer_bottom_middle nav ul li a {
	color: #fff;
	transition: color .4s;
}

footer .mM_footer_bottom_middle nav ul li.current-menu-item a,
footer .mM_footer_bottom_middle nav ul li a:hover {
	color: rgba(255, 255, 255, .5);
}

footer .menu-rechtliche-nav-container .menu li:not(:last-child) {
	position: relative;
}

footer .menu-rechtliche-nav-container .menu li:not(:last-child):after {
	content: '·';
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -13px;
	font-size: 1rem;
	color: #fff;
}

footer .mM_footer_bottom_left,
footer .mM_footer_bottom_middle,
footer .mM_footer_bottom_right {
	width: 33.3333%;
}

footer .mM_footer_bottom_left {
	display: flex;
	align-items: center;
}

footer .mM_footer_bottom_middle {
	display: flex;
	justify-content: center;
	align-items: center;
}

footer .mM_footer_bottom_right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

footer .mM_footer_form_titel_hinweis {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 34px;
}

footer .mM_footer_form_hinweis p {
	color: rgba(0, 42, 77, .5);
	font-size: .875rem;
}

footer .mM_footer_form_titel h3 {
	line-height: 1;
}

footer .mM_footer_form_text {
	margin-bottom: 35px;
}

footer .footer_copyright_text a {
	transition: color .4s;
}

footer .footer_copyright_text a:hover {
	color: #fff;
}

.mM_form_item input,
.mM_form_item textarea {
	color: #0a2f57;
	background: transparent;
	border-radius: 50px;
	border: 1px solid rgba(0, 42, 77, .3);
	transition: border .4s;
	outline: none;
	padding: 14px 32px 16px 32px;
	font-size: 1rem;
	font-weight: 400;
	font-family: "Stratos", sans-serif;
}

.mM_form_item input:placeholder,
.mM_form_item textarea:placeholder {
	color: #0a2f57;
}

.mM_form_item .mM_select_selected {
	padding: 13px 32px 14px 32px;
	border: 1px solid rgba(0, 42, 77, .3);
	color: #0a2f57;
	border-radius: 50px;
	background: transparent;
	font-size: 1rem;
	font-weight: 400;
	font-family: "Stratos", sans-serif;
	transition: border .4s;
}

.mM_form_item .mM_select_item {
	transition: color .4s;
}

.mM_select_items {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
}
.mM_select_items:-webkit-scrollbar {
  display: none;                /* Chrome, Safari */
}

.mM_form_item .mM_select_item:hover {
	color: #fff;
}

.mM_form_item .mM_select_selected.mM_select_arrow_active {
	border: 1px solid rgba(0, 42, 77, 1);
}

.mM_form_item textarea {
	height: 53px;
}

.mM_form_item input:active,
.mM_form_item input:focus,
.mM_form_item textarea:active,
.mM_form_item textarea:focus {
	border: 1px solid rgba(0, 42, 77, 1);
}

/* Verstecke die originale Checkbox */
.mM_form_item input[type="checkbox"].mM_form_datenschutz {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}

/* Style für das sichtbare Custom-Kontrollkästchen */
.mM_form_item .wpcf7-list-item-label::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(0, 42, 77, 0.3);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
  box-sizing: border-box;
  background-color: transparent;
  transition: all 0.2s ease;
  position: relative;
  cursor: pointer;
}

/* Aktiviertes Kontrollkästchen mit innerem Kreis */
.mM_form_item input[type="checkbox"].mM_form_datenschutz:checked + .wpcf7-list-item-label::before {
  border-color: rgba(0, 42, 77, 1);
  background-color: rgba(0, 42, 77, 1);
  box-shadow: inset 0 0 0 2px white;
}

/* Optional: vertikale Ausrichtung optimieren */
.mM_form_item .wpcf7-list-item-label {
  display: inline-flex;
  align-items: center;
  line-height: 1.4;
}

/* Optional: Link-Style */
.mM_form_item .wpcf7-list-item-label a {
  color: rgba(0, 42, 77, 1);
  position: relative;
}

.mM_form_item .wpcf7-list-item-label a:before {
	content: '';
	height: 1px;
	width: 0;
	background: rgba(0, 42, 77, 1);
	position: absolute;
	left: 0;
	bottom: 0;
	transition: width .4s;
	transform-origin: center;
}

.mM_form_item .wpcf7-list-item-label a:hover:before {
	width: 100%;
}

.wpcf7-acceptance label:after,
.wpcf7-acceptance label:before {
	display: none;
}

.wpcf7-acceptance .wpcf7-list-item-label {
	gap: 3px;
}

.wpcf7-acceptance .wpcf7-list-item-label,
.wpcf7-acceptance .wpcf7-list-item-label * {
	color: #0a2f57;
	font-size: .875rem;
}

.mM_form_item_dataprotection {
	display: flex;
	align-items: center;
}

.mM_form_item_dataprotection span {
	display: inline-block;
}

.mM_form_item_submit .mM_form_item_submit_inner {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mM_form_item_submit input {
	padding: 13px 66px 14px 33px;
	border-radius: 35px;
	background-color: #fff;
	border: 1px solid #fff;
	-webkit-transition: background .4s, border-color .4s;
	-moz-transition: background .4s, border-color .4s;
	-ms-transition: background .4s, border-color .4s;
	-o-transition: background .4s, border-color .4s;
	transition: background .4s, border-color .4s;
	width: auto;
	color: #0a2f57;
}

.mM_form_item_submit .mM_form_item_submit_inner {
	position: relative;
}

.mM_form_item_submit .mM_form_item_submit_inner:after {
	content: '';
	background-image: url('/wp-content/uploads/2025/05/button_arrow_blue.svg');
	width: 22px;
	height: 9px;
	background-size: contain;
	display: inline-block;
	background-repeat: no-repeat;
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
}

.mM_form_item_submit input:hover {
	background-color: transparent;
	border-color: rgba(0, 42, 77, 1);
}

.mM_form_item_submit .wpcf7-spinner {
	position: absolute;
	top: 50%;
	right: -48px;
	transform: translateY(-50%);
}

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

/* footer .mM_footer_container_logo img {
	width: calc(291px + 62px);
} */

/* footer .mM_footer_menu {
	width: calc(100% - 291px - 62px);
} */

.mM_form_item_dataprotection span.wpcf7-list-item-label p {
	width: calc(100% - 26px);
}

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

.mM_select_selected:after {
	content: '';
	width: 8px;
	height: 5px;
	display: inline-block;
	background: url('/wp-content/uploads/2025/05/drowpdown_arrow_blue.svg');
	background-size: contain;
	background-repeat: no-repeat;
	transition: transform .4s;
}

.mM_select_selected:hover:after,
.mM_select_selected.mM_select_arrow_active:after {
	transform: rotate(-180deg);
}

@media screen and (max-width: 2199px) {
	footer .mM_footer_middle_left nav ul {
		gap: 30px;
	}
}

@media screen and (max-width: 1920px) {
	footer .footer_logo {
		height: 47px !important;
		width: auto;
	}
	
	footer .mM_footer_container_logo img {
		width: auto;
	}
	
	footer .mM_footer_container_logo {
		padding-right: 31px;
	}
	
	footer .mM_footer_middle_left {
		gap: 31px;
	}
	
	footer .mM_footer_phone_mail {
		gap: 17px;
	}
	
	footer .mM_footer_middle {
		gap: 133px;
	}
}

@media screen and (max-width: 1599px) {
	footer .mM_footer_middle_left {
		padding-left: 0;
	}
	
	footer .mM_footer_mobile_phone_mail_button_phone svg {
		width: 11px;
	}
	
	footer .mM_footer_mobile_phone_mail_button svg {
		height: 21px;
	}
	
	footer .mM_footer_mobile_phone_mail_button a {
		font-size: .875rem;
	}
	
	footer .mM_footer_phone_mail {
		gap: 25px;
	}
	
	footer .mM_footer_middle {
		gap: 40px;
	}
	
	footer .mM_footer_form {
		width: 62%;
	}
	
	footer .mM_footer_adresse {
		width: 38%;
	}
	
	footer .mM_footer_top {
		gap: 40px;
	}
	
	footer .mM_footer_bottom {
		padding-left: 0;
		padding-right: 0;
	}
	
	.mM_form_item.mM_col_33 {
		width: calc(50% - (var(--row_gap) / 2));
	}
	
	.mM_form_item.mM_col_33.mM_form_dropdown {
		width: 100%;
	}
	
	.mM_form_item_data_submit {
		flex-direction: column;
		align-items: flex-start;
		gap: 23px;
	}
	
	.mM_form_item_submit {
		width: 100%;
	}
}

@media screen and (max-width: 1199px) {
	footer .mM_footer_top {
		flex-direction: column;
	}
	
	footer .mM_footer_form {
		width: 100%;
	}
	
	footer .mM_footer_adresse {
		width: 100%;
	}
	
	footer .mM_footer_adresse {
		padding-top: 7px;
	}
	
	footer .mM_footer_middle {
		flex-direction: column;
		margin-top: 100px;
	}
	
	footer .mM_footer_middle_left {
		width: 100%;
	}
	
	footer .mM_footer_middle_right {
		width: 100%;
		flex-direction: row;
		gap: 25px;
	}
	
	footer .mM_footer_scroll_top {
		margin-top: 5px;
	}
}

@media screen and (max-width: 991px) {
	footer .mM_footer_form {
		padding: 24px 29px 24px 29px;
	}
}

@media screen and (max-width: 767px) {
	footer .mM_footer_middle_left {
		flex-direction: column;
		align-items: flex-start;
		gap: 35px;
	}
	
	footer .mM_footer_container_logo {
		border-right: none;
	}
	
	footer .mM_footer_middle {
		margin-top: 50px;
	}
	
	footer .mM_footer_menu {
		width: 100%;
	}
	
	footer .mM_footer_phone_mail {
		gap: 37px;
	}
	
	footer .mM_footer_middle_right {
		flex-direction: column;
		/* gap: 37px; */
	}
	
	footer .mM_footer_bottom {
		flex-direction: column;
		margin-top: 48px;
	}
	
	footer .mM_footer_bottom_left,
	footer .mM_footer_bottom_middle,
	footer .mM_footer_bottom_right {
		width: 100%;
	}
	
	footer .mM_footer_bottom_left {
		order: 2;
	}
	
	footer .mM_footer_bottom_middle {
		justify-content: flex-start;
		order: 1;
		margin-bottom: 17px;
	}
	
	footer .mM_footer_bottom_right {
		justify-content: flex-start;
		order: 3;
	}
}

@media screen and (max-width: 575px) {
	footer .mM_footer_form {
		margin-left: -20px;
		margin-right: -20px;
		margin-top: -1px;
		width: calc(100% + 40px);
		padding: 20px 25px 20px 25px;
	}
	
	footer .mM_footer_middle_left nav ul {
		flex-wrap: wrap;
	}
	
	footer .mM_footer_offnungszeiten {
		flex-direction: column;
	}
	
	footer .mM_footer_phone_mail {
		flex-direction: column;
		gap: 17px;
	}
	
	footer .mM_footer_middle_right {
		flex-direction: column;
		gap: 17px;
	}
	
	footer .mM_footer_form_titel_hinweis {
		flex-direction: column;
		gap: 17px;
	}
	
	footer .mM_footer_form_titel {
		width: 100%;
	}
	
	.mM_form_item.mM_col_33 {
		width: 100%;
	}
}

@media screen and (max-width: 350px) {
	footer .mM_footer_adresse * {
		font-size: .875rem;
	}
}

@media screen and (max-width: 300px) {
	footer .mM_footer_offnungszeiten,
	footer .mM_footer_offnungszeiten_item {
		gap: 3px;
	}
	
	footer .mM_footer_middle_left {
		gap: 55px;
	}
}

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