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

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

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

.opacity_0{
	opacity: 0;
}

/* link / button */
.button{
	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.primary{
	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 {
	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 .mM_button_icon {
	width: 74px;
	height: 74px;
	border-radius: 50%;
	border: 1px solid rgba(246, 244, 237, .5);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: all 0s;
}

.button:hover .mM_button_icon {
	transition: all .4s;
}

.button.primary:hover .mM_button_icon {
	border-color: rgba(173, 168, 158, .5);
}

.button.secondary:hover .mM_button_icon {
	border-color: #1f1f1f;
}

.button .mM_button_text {
	margin-left: -23px;
	padding-top: 11px;
	padding-bottom: 13px;
	padding-left: 14px;
	transition: all .4s;
	z-index: 2;
}

.button:hover .mM_button_text {
	margin-left: 0;
}

.button .mM_button_icon:before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	transform: scale(0);
	transform-origin: center;
	transition: transform 1.5s cubic-bezier(.19,1,.22,1), border-color .4s;
	z-index: 0;
}

.button.primary .mM_button_icon:before {
	background: rgba(173, 168, 158, .5);
}

.button.secondary .mM_button_icon:before {
	background: #1f1f1f;
}

.button:hover .mM_button_icon:before {
	transform: scale(1);
}

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

.button svg {
	width: 24px;
	z-index: 2;
}

.button.primary .mM_button_text {
	background: #1f1f1f;
	color: #ede8db;
}

.button.secondary .mM_button_text {
	background: #ada89e;
}

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

@media screen and (max-width: 400px) {
	.button .mM_button_text {
		margin-left: -10px;
		padding-top: 4px;
		padding-bottom: 6px;
		padding-left: 9px;
	}
	
	.button .mM_button_icon {
		width: 49px;
		height: 49px;
	}
}
/* 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: 10px;
	position: relative;
	bottom: unset;
}

.mM_dots .mM_dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #dd3333;
	transition: background .4s;
}

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

.mM_dots li:hover .mM_dot {
	background: #0056a1;
}

.mM_dots li.slick-active .mM_dot {
	background: #000;
}

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




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

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

:root {
	scroll-behavior: unset;
}

html,
body{
	font-family: "utile", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: var(--font_size);
	line-height: 1.5;
	background-color: var(--background_color);
	font-synthesis: none;
	-webkit-font-smoothing: antialiased;
}

body {
	margin: 0;
}

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

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

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

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

h2,
.h2 {
	font-size: 5.556rem;
}

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

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

p {
	font-size: 1.111rem;
}

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

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

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: 149px;
	padding-bottom: 149px;
}

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

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

.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: 1399px) {
	p {
		font-size: 1rem;;
	}
}

@media screen and (max-width: 767px) {
	h1,
	.h1 {
		font-size: 3.167rem;
	}
	
	h2,
	.h2 {
		font-size: 3.756rem;
	}
	
	[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
		padding-top: 59px;
		padding-bottom: 59px;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_oben"]{
		padding-top: 59px;
		padding-bottom: 0;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_unten"]{
		padding-top: 0;
		padding-bottom: 59px;
	}
}

@media all and (max-width: 575px) {
	.mM_container {
		padding: 0 20px;
	}
	
	h1,
	.h1 {
		font-size: 2.167rem;
	}
	
	h2,
	.h2 {
		font-size: 2.556rem;
	}
	
	h3,
	.h3 {
		font-size: 1.7rem;
	}
	
	h4,
	.h4 {
		font-size: 1.3rem;
	}
}

/** Footer Start **/

footer {
	background: #615e57;
	position: relative;
	padding-top: 76px;
}

footer .mM_footer_line {
	height: 100%;
	position: absolute;
	top: 0;
	width: 1px;
	background: rgba(202, 197, 186, .3);
}

footer .mM_footer_line_left {
	left: 50px;
}

footer .mM_footer_line_right {
	right: 50px;
}

footer .mM_footer_main_container {
	border-top: 1px solid rgba(202, 197, 186, .3);
	border-bottom: 1px solid rgba(202, 197, 186, .3);
}

footer .mM_footer_middle_left {
	width: 30%;
}

footer .mM_footer_middle_left {
	width: 35%;
}

footer .mM_footer_middle_left_middle,
footer .mM_footer_middle_right_middle {
	width: 25%;
}

footer .mM_footer_middle_right {
	width: 10%;
}

footer .mM_footer_middle_left,
footer .mM_footer_middle_left_middle,
footer .mM_footer_middle_right_middle {
	border-right: 1px solid rgba(202, 197, 186, .3);
}

footer .logo_container svg,
footer .logo_container img {
	width: 170px;
}

footer .mM_footer_motto_container {
	margin-top: 42px;
}

footer .mM_footer_motto_container p {
	color: #ede8db;
}

footer .mM_footer_middle_title p {
	color: rgba(237, 232, 219, .5);
	text-transform: uppercase;
	font-size: .889rem;
}

footer .mM_footer_middle_title {
	margin-bottom: 22px;
}

footer .mM_footer_telefon_container .mM_icon svg,
footer .mM_footer_email_container .mM_icon svg {
	fill: #ede8db;
	width: 15px;
}

footer .mM_footer_telefon_container .mM_text,
footer .mM_footer_email_container .mM_text {
	font-weight: 600;
	color: #ede8db;
	width: calc(100% - 15px - 12px);
}

footer .mM_footer_telefon_container a,
footer .mM_footer_email_container a {
	display: flex;
	align-items: center;
	gap: 11px;
}

footer .footer_firmierung {
	font-weight: 600;
	color: #ede8db;
}

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

footer .footer_adresse_container * {
	color: #ede8db;
	line-height: 1.2;
}

footer .footer_firma_container {
	margin-top: 70px;
}

footer .mM_footer_middle_main_nav nav li a {
	font-weight: 600;
	color: #ede8db;
	transition: color .4s;
}

footer .mM_footer_middle_main_nav nav li a:hover {
	color: rgba(237, 232, 219, .5);
}

footer .mM_footer_middle_legal_nav {
	margin-top: 46px;
}

footer .mM_footer_middle_legal_nav nav li a {
	color: #ede8db;
	transition: color .4s;
	line-height: 1.2;
}

footer .mM_footer_middle_legal_nav nav li {
	line-height: 1.2;
}

footer .mM_footer_middle_legal_nav nav li a:hover,
footer .mM_footer_middle_legal_nav nav li.current-menu-item a {
	color: rgba(237, 232, 219, .5);
}

footer .footer_main_mobile_content_bottom_3_item_social_links_item {
	width: 66px;
	height: 66px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #8b887f;
	position: relative;
	border-radius: 50%;
	transition-delay: 0;
	transition: border-color .4s;
}

footer .footer_main_mobile_content_bottom_3_item_social_links_item:hover {
	transition-delay: 1.5s;
	border-color: #ede8db;
}

footer .footer_main_mobile_content_bottom_3_item_social_links_item:before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: #ede8db;
	transform: scale(0);
	transform-origin: center;
	transition: transform 1.5s cubic-bezier(.19,1,.22,1), border-color .4s;
	z-index: 0;
}

footer .footer_main_mobile_content_bottom_3_item_social_links_item:hover:before {
	transform: scale(1);
}

footer .footer_main_mobile_content_bottom_3_item_social_links_item svg {
	fill: #f6f4ed;
	transition: fill .4s;
	z-index: 3;
}

footer .footer_main_mobile_content_bottom_3_item_social_links_item:hover svg {
	fill: #1f1f1f;
}

footer .footer_main_mobile_content_bottom_3_item_social_links_item:first-child svg {
	width: 32px;
}

footer .footer_main_mobile_content_bottom_3_item_social_links_item:first-child {
	margin-bottom: 26px;
}

footer .footer_main_mobile_content_bottom_3_item_social_links_item:last-child svg {
	width: 10px;
}

footer .mM_footer_middle_right .mM_footer_middle_title {
	margin-bottom: 26px;
}

footer .mM_footer_middle_left {
	padding: 72px 96px 0 0;
}

footer .mM_footer_middle_left_middle,
footer .mM_footer_middle_right_middle {
	padding: 94px 40px 90px 75px;
}

footer .mM_footer_middle_right {
	padding: 94px 0 129px 75px;
}

footer .footer_copyright_text,
footer .footer_copyright_text span,
footer .footer_copyright_text a {
	color: rgba(237, 232, 219, .5);
	font-size: .889rem;
	font-weight: 600;
}

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

footer .footer_copyright_text a:hover {
	color: rgba(237, 232, 219, 1);
}

footer .mM_footer_bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 29px 0 35px 0;
}

footer .mM_footer_top .mM_scroll_top svg {
	width: 24px;
	transform: rotate(-90deg);
	fill: #ede8db;
	z-index: 3;
	transition: fill .4s;
}

footer .mM_footer_top .mM_scroll_top:hover svg {
	fill: #1f1f1f;
}

footer .mM_footer_top {
	position: absolute;
	right: 13px;
	top: 40px;
}

footer .mM_footer_top .mM_scroll_top {
	width: 73px;
	height: 73px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(202, 197, 186, .3);
	position: relative;
	border-radius: 50%;
	transition-delay: 0;
	transition: border-color .4s;
	background: #615e57;
	cursor: pointer;
}

footer .mM_footer_top .mM_scroll_top:hover {
	transition-delay: 1.5s;
	border-color: #ede8db;
}

footer .mM_footer_top .mM_scroll_top:before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: #ede8db;
	transform: scale(0);
	transform-origin: center;
	transition: transform 1.5s cubic-bezier(.19,1,.22,1), border-color .4s;
	z-index: 1;
}

footer .mM_footer_top .mM_scroll_top:hover:before {
	transform: scale(1);
}

footer .mM_footer_bottom_line {
	display: none;
	position: absolute;
	bottom: 0;
	width: calc(100vw - 50px - 50px);
	height: 1px;
	background: rgba(202, 197, 186, .3);
}

footer .mM_footer_motto_mobil_container {
	display: none;
}

@media screen and (max-width: 2200px) {
	footer .mM_footer_middle_left_middle,
	footer .mM_footer_middle_right_middle {
		padding: 74px 15px 70px 65px;
	}
	
	footer .mM_footer_middle_right {
		padding: 94px 0 129px 65px;
	}
	
	footer .mM_footer_middle_left {
		padding: 72px 26px 0 0;
	}
}

@media screen and (max-width: 1920px) {
	footer .mM_footer_middle_left_middle,
	footer .mM_footer_middle_right_middle {
		padding: 44px 15px 40px 35px;
	}
	
	footer .mM_footer_middle_right {
		padding: 44px 0 129px 35px;
	}
}

@media screen and (max-width: 1399px) {
	footer .mM_footer_middle {
		flex-wrap: wrap;
	}
	
	footer .mM_footer_middle_left {
		width: 100%;
		border-right: none;
		padding-bottom: 44px;
		position: relative;
	}
	
	footer .mM_footer_middle_left_middle,
	footer .mM_footer_middle_right_middle {
		width: 40%;
	}
	
	footer .mM_footer_middle_right {
		width: 20%;
	}
	
	footer .mM_footer_middle_left_middle {
		padding-left: 0;
	}
	
	footer .mM_footer_middle_left .mM_footer_bottom_line {
		display: block;
	}
}

@media screen and (max-width: 1199px) {
	footer .mM_footer_line {
		display: none;
	}
	
	footer .mM_footer_bottom_line {
		width: 100vw;
	}
}

@media screen and (max-width: 767px) {
	footer .mM_footer_middle_left_middle,
	footer .mM_footer_middle_right_middle {
		width: 50%;
	}
	
	footer .mM_footer_middle_right_middle {
		border-right: none;
	}
	
	footer .mM_footer_middle_left_middle {
		padding: 44px 15px 44px 0;
		position: relative;
	}
	
	footer .mM_footer_middle_right_middle {
		padding: 44px 15px 44px 35px;
	}
	
	footer .mM_footer_middle_right {
		width: 100%;
		padding: 44px 0 44px 0;
	}
	
	footer .mM_footer_middle_left_middle .mM_footer_bottom_line {
		display: block;
	}
	
	footer .footer_main_mobile_content_bottom_3_social_container {
		display: flex;
		gap: 26px;
	}
	
	footer .footer_main_mobile_content_bottom_3_item_social_links_item:first-child {
		margin-bottom: 0;
	}
	
	footer .mM_footer_bottom {
		flex-direction: column;
		gap: 10px;
		padding: 29px 0 24px 0;
	}
	
	footer .footer_copyright_text {
		text-align: center;
	}
}

@media screen and (max-width: 576px) {
	footer {
		padding-top: 66px;
	}
	
	footer .mM_footer_middle_left_middle {
		border-right: none;
	}
	
	footer .mM_footer_middle_left_middle,
	footer .mM_footer_middle_right_middle {
		width: 100%;
		padding: 34px 0;
	}
	
	footer .mM_footer_middle_right_middle {
		position: relative;
	}
	
	footer .mM_footer_middle_right_middle .mM_footer_bottom_line {
		display: block;
	}
	
	footer .mM_footer_middle_legal_nav {
		margin-top: 32px;
	}
	
	footer .footer_firma_container {
		margin-top: 32px;
	}
	
	footer .mM_footer_middle_left {
		padding: 44px 0 34px 0;
	}
	
	footer .mM_footer_top .mM_scroll_top {
		width: 53px;
		height: 53px;
	}
	
	footer .footer_main_mobile_content_bottom_3_item_social_links_item {
		width: 50px;
		height: 50px;
	}
	
	footer .mM_footer_middle_right {
		padding: 34px 0;
	}
	
	footer .mM_footer_motto_container {
		margin-top: 24px;
	}
	
	footer .logo_container svg,
	footer .logo_container img {
		width: 140px;
	}
}

@media screen and (max-width: 400px) {
	footer .mM_footer_motto_mobil_container {
		display: block;
	}
	
	footer .mM_footer_telefon_container .mM_text,
	footer .mM_footer_email_container .mM_text,
	footer .mM_footer_motto_mobil_container p,
	footer .footer_firmierung,
	footer .footer_adresse_container * {
		font-size: .889rem;
	}
	
	footer .footer_copyright_text,
	footer .footer_copyright_text span,
	footer .footer_copyright_text a {
		font-size: .789rem;
	}
	
	footer .mM_footer_motto_desktop_container {
		display: none;
	}
}

/** Footer End **/

/** start mM Title Horizontal **/

.mM_title_horizontal {
	position: absolute;
	top: 151px;
	left: 144px;
	text-transform: uppercase;
	color: #615e57;
	font-size: .889rem;
	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: 1650px) {
	.mM_title_horizontal {
		left: 100px;
	}
}

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

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

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

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

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

/** end mM Title Horizontal **/

/** start mM Line Left / Right **/

body {
	position: relative;
}

.mM_line {
	height: 100%;
	width: 1px;
	background: rgba(97, 94, 87, .3);
	position: absolute;
	top: 0;
	z-index: 1;
}

.mM_line_left {
	left: 50px;
}

.mM_line_right {
	right: 50px;
}

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

/** end mM Line Left / Right **/

/** start mM Headline Slider **/

.mM_titel_trenner {
	width: 17px !important;
	height: 17px;
	border-radius: 50%;
	background: #615e57;
	margin-left: 46px;
	margin-right: 45px;
	margin-bottom: -15px;
}

.mM_titel_item {
	display: flex !important;
	align-items: center;
}

.slick-autoplay-toggle-button {
	display: none;
}

.mM_titel_slider .slick-slide {
	display: flex !important;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.mM_titel_trenner {
		width: 14px !important;
		height: 14px;
	}
}

@media screen and (max-width: 575px) {
	.mM_titel_trenner {
		margin-top: 14px;
	}
}

/** end mM Headline Slider **/