

.calculation_container .mM_container {
	position: relative;
}

.calculation_container .mM_container:before,
.calculation_container .mM_container:after,
body:after {
	/* content: ''; */
	position: absolute;
	top: 0;
	z-index: 1200;
	background: red;
	width: 1px;
	height: 10000px;
	left: 50%;
	pointer-events: none;
}

.calculation_container .mM_container:before {
	left: 0;
}

.calculation_container .mM_container:after {
	left: auto;
	right: 0;
}




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

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

section{
	position: relative;
	z-index: 1;
	width:100%;
}

/* abstand zum footer - footer padding top + margin zwischen sections */
section:has(+ footer){
	margin-bottom: calc(0px - var(--footer_padding_top) + var(--padding_desktop));
}

/* link / button */
.mM_button{
	padding: 19px 25px 18px;
	font-weight: 600;
	font-size: 0.895rem;
	cursor:pointer;
	text-align: start;
	
	-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.rounded_corners {
	border-radius: 20px;
}

/* primary */
.mM_button.primary{
	background-color:var(--primarbutton_background_color);
	display: inline-flex;
	align-items: center;
	gap: 0 20px;
	padding: 4px 6px 4px 26px;
}

section .mM_button.primary .mM_button_text {
	color: #fff;
}

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

.mM_button.primary .mM_button_icon {
	min-width: 53px;
	width: 53px;
	height: 53px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 20px;
	overflow: hidden;
	background: var(--white);
}

.mM_button.rounded_corners .mM_button_icon {
	border-radius: 15px;
}

.mM_button.primary .mM_button_icon svg {
	width: 15px;
	min-width: 15px;
	fill: var(--primarbutton_font_color);
	
	-webkit-transform: translateX(-17px);
	-moz-transform: translateX(-17px);
	-ms-transform: translateX(-17px);
	-o-transform: translateX(-17px);
	transform: translateX(-17px);
	
	-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);
}

section .mM_button.primary:hover .mM_button_text {
	color: #fff;
}

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

.mM_button.primary:hover .mM_button_icon svg {
	fill: var(--primarbutton_hover_font_color);
	
	-webkit-transform: translateX(17px);
	-moz-transform: translateX(17px);
	-ms-transform: translateX(17px);
	-o-transform: translateX(17px);
	transform: translateX(17px);
}
/* end primary */

/* secondary */
.mM_button.secondary {
	background-color:var(--sekundarbutton_background_color);
}

.mM_button.secondary .mM_button_text {
	color:var(--sekundarbutton_font_color);
}

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

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

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

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

.mM_link.primary:after {
	content: '';
	width: 100%;
	height: 2px;
	
	position: absolute;
	left: 0; bottom: 2px;
	
	transform: scaleX(1);
	transform-origin: left;
	background-color: var(--primarlink_font_color);
	
	-webkit-transition: -webkit-transform .4s, background-color .4s;
	-moz-transition: -moz-transform .4s, background-color .4s;
	-ms-transition: -ms-transform .4s, background-color .4s;
	-o-transition: -o-transform .4s, background-color .4s;
	transition: transform .4s, background-color .4s;
}

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

.mM_link.primary:hover:after{
	transform: scaleX(0);
	background-color:var(--primarlink_hover_font_color);
}

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

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

/* arrows / dots */

.mM_arrow {
	position: absolute;
	top: 50%;
	display: flex;
	cursor: pointer;
}

.mM_arrow svg {
	width: 20px;
	fill: #dd3333;
	transform: fill .4s;
}

.mM_arrow:hover svg {
	fill: #0056a1;
}

.mM_arrow.mM_arrow_prev {
	transform: rotate(180deg);
	left: 0;
}

.mM_arrow.mM_arrow_next {
	right: 0;
}

.mM_dots .slick-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	position: relative;
	bottom: unset;
}

.mM_dots .mM_dot {
	width: 40px;
	height: 4px;
	border-radius: 1px;
	background: var(--black);
	opacity: .3;
	transition: opacity .4s;
}

.mM_dots .slick-dots li {
	width: auto;
	height: auto;
}

.mM_dots li:hover .mM_dot {
	opacity: .6;
}

.mM_dots li.slick-active .mM_dot {
	opacity: 1;
}

/* end arrows / dots */

/* 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: gray;
	opacity: 1;
}

.wpcf7-form *::placeholder{
	color: gray;
}

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

.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 */



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



/* *** Font Families *** */
/* Headings */
@font-face {
	font-family: 'BodoniModa';
	src: 	url(../fonts/Bodoni_Moda/BodoniModa_18pt-SemiBold.ttf) format('truetype');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'BodoniModa';
	src: 	url(../fonts/Bodoni_Moda/BodoniModa_18pt-SemiBoldItalic.ttf) format('truetype');
	font-weight: 600;
	font-style: italic;
}

/* Paragraphs */
@font-face {
	font-family: 'Raleway';
	src: 	url(../fonts/Raleway/Raleway-Regular.ttf) format('truetype');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Raleway';
	src: 	url(../fonts/Raleway/Raleway-Medium.ttf) format('truetype');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Raleway';
	src: 	url(../fonts/Raleway/Raleway-SemiBold.ttf) format('truetype');
	font-weight: 600;
	font-style: normal;
}
/* *** Font Families *** */



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

:root {
	scroll-behavior: unset;
	
	/* individuelle farben je nach projekt unterschiedlich: */
	--rosa: #fac2ff;
	--white: #ffffff;
	--black: #000000;
	
	/* abstände je nach projekt unterschiedlich */
	--padding_desktop: 150px;
	--padding_tablet: 100px;
	--padding_mobile: 50px;
	
	/* hilft zur einfachen berechnung */
	--footer_padding_top: 586px;
}

html,
body{
	font-family: "Raleway", "Tahoma", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: var(--font_size);
	line-height: 1.421;
	background-color: var(--background_color);
	letter-spacing: 0.02rem;
}

body {
	margin: 0;
	padding-top: var(--headerHeight);  /* über custom.js gesetzt */
}

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

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
	margin: 0;
	font-family: "BodoniModa", "Tahoma";
	font-style: normal;
    line-height: 1.2;
}

h1 span, .h1 span,
h2 span, .h2 span,
h3 span, .h3 span,
h4 span, .h4 span {
	font-style: italic;
}

h1, .h1 {
	font-size: 4.211rem;
	line-height: 1.125;
	margin-bottom: 36px;
}

h2, .h2 {
	font-size: 2.632rem;
	margin-bottom: 22px;
}

h3, .h3 {
	font-size: 1.842rem;
	margin-bottom: 25px;
}

/* nicht eingestellt */
h4, .h4 {
	font-size: 1.5rem;
}

p {
	margin-top: 0;
}

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

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

.underline {
	position: relative;
	display: inline-block;
	z-index: 1;
}

.underline > * {
	position: relative;
	z-index: 1;
}

.underline:before {
	content: '';
	width: calc(100% + 7px + 9px); /* default: 7px left; 9px right*/
	height: 18px; /* default */
	position: absolute;
	background-color: #c8b099;
	bottom: -2px; left: -7px; /* default */
	z-index: -1;
	pointer-events: none;
}

h1.underline:before,
.underline.h1:before,
h2.underline:before,
.underline.h2:before {
	width: calc(100% + 13px + 17px); /* 13px left; 17px right*/
	height: 24px;
	bottom: -1px; left: -13px;
}

h3.underline:before,
.underline.h3:before {
	height: 18px;
}

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

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:var(--padding_desktop);
	padding-bottom:var(--padding_desktop);
}

[data-innerer-abstand="innerer_abstand_nur_oben"]{
	padding-top:var(--padding_desktop);
	padding-bottom:0;
}

[data-innerer-abstand="innerer_abstand_nur_unten"]{
	padding-top:0;
	padding-bottom:var(--padding_desktop);
}

.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: 73px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.mM_link {
	
}

[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: 1799px) {
	h1, .h1 {
		font-size: 3.947rem;
	}
}

@media screen and (max-width: 1599px) {
	h1, .h1 {
		font-size: 3.421rem;
	}
}

@media screen and (max-width: 1399px) {
	h1, .h1 {
		font-size: 2.632rem;
	}
	
	h2, .h2 {
		font-size: 2.105rem;
	}
	
	h1.underline:before,
	.underline.h1:before,
	h2.underline:before,
	.underline.h2:before {
		height: 18px;
	}
}

@media screen and (max-width: 991px) {
	[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
		padding-top:var(--padding_tablet);
		padding-bottom:var(--padding_tablet);
	}
	
	[data-innerer-abstand="innerer_abstand_nur_oben"]{
		padding-top:var(--padding_tablet);
		padding-bottom:0;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_unten"]{
		padding-top:0;
		padding-bottom:var(--padding_tablet);
	}
	
	section:has(+ footer){
		margin-bottom: calc(0px - var(--footer_padding_top) + var(--padding_tablet));
	}
	
	h1, .h1 {
		font-size: 2.632rem;
	}
	
	h2, .h2 {
		font-size: 1.842rem;
	}
	
	h3, .h3 {
		font-size: 1.316rem;
	}
	
	h1.underline:before,
	.underline.h1:before,
	h2.underline:before,
	.underline.h2:before {
		height: 12px;
		bottom: 2px;
	}
	
	h3.underline:before,
	.underline.h3:before {
		height: 12px;
		bottom: -1px;
	}
}

@media screen and (max-width: 575px) {
	html, body {
		font-size: 16px;
		hyphens: auto;
	}
	
	.mM_container {
		padding: 0 20px;
	}
	
	[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
		padding-top:var(--padding_mobile);
		padding-bottom:var(--padding_mobile);
	}
	
	[data-innerer-abstand="innerer_abstand_nur_oben"]{
		padding-top:var(--padding_mobile);
		padding-bottom:0;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_unten"]{
		padding-top:0;
		padding-bottom:var(--padding_mobile);
	}
	
	section:has(+ footer){
		margin-bottom: calc(0px - var(--footer_padding_top) + var(--padding_mobile));
	}
	
	.mM_links {
		margin-top: 43px;
	}
	
	.mM_button {
		padding: 12px 20px 13px;
	}
	
	.mM_button.rounded_corners {
		border-radius: 15px;
	}
	
	.mM_button.primary .mM_button_icon {
		min-width: 38px;
		width: 38px;
		height: 38px;
	}
	
	h1, .h1 {
		font-size: 1.842rem;
	}
	
	h1.underline:before,
	.underline.h1:before,
	h2.underline:before,
	.underline.h2:before {
		height: 10px;
		bottom: 1px;
	}
}

.mM_page_not_found {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	min-height: 350px;
}


/* 
 * 
 START FOOTER 
 *
 */
 
.mM_footer {
	position: relative;
	overflow: hidden;
	padding-top: calc(var(--footer_padding_top) + 70px); /* 70px for border top abstand */
	padding-bottom: 77px;
}
 
.mM_footer:after {
	content: '';
	position: absolute;
	left: calc(0px - var(--footer_padding_top)); top: 0;
	
	background-color: #ddded7;
	border-radius: 50%;
	width: calc(100% + (var(--footer_padding_top) * 2));
	height: calc(100vw + (var(--footer_padding_top) * 2));
	
	z-index: 0;
	pointer-events: none;
}

.mM_footer:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0; top: var(--footer_padding_top);
	
	background-color: #c3c4be;
	
	z-index: 1;
	pointer-events: none;
}

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

.navigation_social_links {
	gap: 0 33px;
	align-items: center;
} 

.navigation_social_link {
	padding: 3px;
	display: flex;
	align-items: center;
	
	transition: opacity .4s;
}

.navigation_social_link:hover {
	opacity: .3;
}

.navigation_social_link svg {
	height: 36px; 
	width: auto;
}

.navigation_social_link.linkedin svg {
	height: 20px;
}

.navigation_social_link.youtube svg {
	height: 18px;
}

.navigation_container_nav.mM_footer_container_menu ul.menu a {
	font-size: 0.842rem;
	font-weight: 400;
}

.mM_footer_bottom {
	justify-content: space-between;
	align-items: center;
	margin-top: 62px;
}

.mM_footer_bottom * {
	font-size: 0.763rem;
}

.mM_footer_bottom_left {
	width: 350px;
	opacity: .3;
}

.mM_footer_bottom_center {
	justify-content: center;
}

.navigation_container_legal ul.menu a {
	opacity: .3;
	
	transition: opacity .4s;
}

.navigation_container_legal ul.menu .current_page_item a,
.navigation_container_legal ul.menu a:hover {
	opacity: 1;
}

.mM_footer_bottom_right {
	width: 350px;
	display: flex;
	justify-content: right;
}

.mM_footer_bottom_right p>* {
	opacity: .3;
}

.mM_footer_bottom_right p a {
	transition: opacity .4s;
}

.mM_footer_bottom_right p a:hover {
	opacity: 1;
}

.mM_footer .mM_footer_scroll_top_container_inner {
	position: relative;
}

.mM_footer .mM_footer_scroll_top {
	position: relative;
	z-index: 1;
	padding: 0 !important;
	position: absolute;
	top: calc(-70px - calc(53px / 2));  /* 70px footer padding top; 53px eigene höhe durch 2 */
	right: 0;
}

.mM_footer .mM_footer_scroll_top .mM_button_icon {
	transform: rotate(-90deg);
}

@media screen and (max-width: 991px) {
	.mM_footer_bottom {
		margin-top: 42px;
	}
	
	.mM_footer_bottom_left,
	.mM_footer_bottom_center,
	.mM_footer_bottom_right {
		width: auto;
	}
		
	.mM_footer .mM_footer_main .navigation_left,
	.mM_footer .mM_footer_main .navigation_right {
		width: auto;
	}
	
	.mM_footer_main .navigation_center {
		width: 100%;
		margin-top: 10px;
		order: 2;
	}
	
	.mM_footer_bottom {
		flex-wrap: wrap;
		gap: 0 20px;
	}
	
	.mM_footer_bottom_left,
	.mM_footer_bottom_right {
		width: calc(50% - 10px);
		order: 2;
		justify-content: left;
	}
	
	.mM_footer_bottom_left {
		text-align: right;
	}
	
	.mM_footer_bottom_center {
		width: 100%;
		order: 1;
		margin-bottom: 5px;
	}
}

@media screen and (max-width: 767px) {
	.mM_footer {
		padding-bottom: 37px;
	}
	
	.mM_footer_bottom > *{
		justify-content: left;
		text-align: left;
		width: 100%;
	}
}

@media screen and (max-width: 575px) {
	.navigation_container_nav.mM_footer_container_menu ul.menu a {
		padding: 10px 15px 10px 0;
		
		transition: opacity .4s;
	}
	
	.navigation_container_nav.mM_footer_container_menu ul.menu a:hover {
		opacity: .5;
	}
	
	.navigation_container_nav.mM_footer_container_menu ul.menu a:after {
		content: none;
	}
	
	.mM_footer .mM_footer_scroll_top {
		top: calc(-70px - calc(38px / 2));  /* 70px footer padding top; 38px eigene höhe durch 2 */
	}
}
/* 
 * 
 END FOOTER 
 *
 */
 
