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

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

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

.opacity_0{
	opacity: 0;
}

/* link / button */
.button{
	padding: 17px 40px 18px 40px;
	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 {
	background-color:var(--primarbutton_background_color);
	color: var(--primarbutton_font_color);
}

.button.primary,
.button.primary .mM_button_text,
.button.secondary,
.button.secondary .mM_button_text {
	font-size: .906rem;
	font-weight: 500;
}

.button.primary .mM_button_text {
	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 .mM_button_text {
	color:var(--primarbutton_hover_font_color);
}

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

.button.secondary{
	background-color: transparent;
	border: 1px solid var(--sekundarbutton_font_color);
	color:var(--sekundarbutton_font_color);
}

.button.secondary .mM_button_text {
	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 .mM_button_text {
	color:var(--sekundarbutton_hover_font_color);
}

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

.link{
	display: inline-flex;
	align-items: center;
	gap: 0 8px;
	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 .mM_link_text {
	font-weight: 800;
	color:var(--primarlink_font_color);
	transition: color .4s;
}

.link.primary svg {
	width: 16px;
	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 .mM_link_text {
	color:var(--primarlink_hover_font_color);
}

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

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

.link.secondary .mM_link_text {
	color:var(--sekundarlink_font_color);
	transition: color .4s;
}

.link.secondary svg {
	width: 16px;
	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 .mM_link_text {
	color:var(--sekundarlink_hover_font_color);
}

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

/* arrows / dots */

.mM_arrow {
	position: absolute;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	width: 52px;
	cursor: pointer;
	background: #eaeaea;
	border-radius: 50%;
	transition: opacity .4s;
}

.mM_arrow.slick-disabled {
	opacity: 0;
}

.mM_arrow:hover {
	opacity: .7;
}

.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: rgba(76, 84, 96, .5);
	opacity: 1;
	font-family: "deuterium-variable", sans-serif;
}

.wpcf7-form *::placeholder{
	color: rgba(76, 84, 96, .5);
	opacity: 1;
	font-family: "deuterium-variable", sans-serif;
}

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

.form_container.form_last_container {
	align-items: center;
}

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

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

.form_item:not(.form_acceptance) label {
	height: 0;
	opacity: 0;
}

.wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-acceptance):not(.wpcf7-checkbox),
.mM_select_selected {
	background: #fafafc;
	border: 1px solid #e8e8eb;
	color: rgba(76, 84, 96, .5);
	font-size: .906rem;
	padding: 16px 36px 19px 36px;
}

.wpcf7-form-control.wpcf7-submit:not(:disabled) {
	opacity: 1;
}

.wpcf7-form-control.wpcf7-submit:not(:disabled):hover {
	background: #2d99f7;
}

.wpcf7-form.submitting .wpcf7-form-control.wpcf7-submit {
	transition: background .4s;
	opacity: 0;
}

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

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

.form_submit{
	position: relative;
}

.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 input + span {
	position: relative;
	padding-left: 39px;
	font-size: .906rem;
}

.wpcf7-acceptance label input span a {
	font-size: .906rem;
}

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

.wpcf7-acceptance label input + span:before {
	width: 25px;
	height: 25px;
	top: -2px;
	left: 0;
	background-color: #fafafc;
	border: 1px solid #e8e8eb;
}

.wpcf7-acceptance label input:checked + span:before {
	background-color: #e96730;
}

.wpcf7-acceptance label input + span:after {
	opacity: 0;
	top: 5px;
	left: 6px;
	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: 14px 11px;
	width: 14px;
	height: 11px;
}

.wpcf7-acceptance label input:checked + span:after {
	opacity: 1;
}

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

.wpcf7-acceptance a:hover {
	text-decoration: none;
}
/* end input checked */

.form_item_with_margin {
	margin-bottom: 34px;
}

.mM_select_arrow_down svg {
	height: 10px;
	width: auto;
	fill: #dedee0;
	transform: rotate(-90deg);
	transition: all .4s;
}

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

.mM_select_selected:hover svg,
.mM_select_selected.mM_select_arrow_active svg {
	transform: rotate(-270deg);
}

.mM_select_items.mM_select_hide {
	border: none;
}

.mM_select_items {
	background: #fafafc !important;
	border: 1px solid #e8e8eb;
	color: rgba(76, 84, 96, .5);
	font-size: .906rem;
	border-top: none;
}

.mM_select_item {
	padding: 5px 36px 5px 36px;
	color: rgba(76, 84, 96, .5);
	transition: all .4s;
}

.mM_select_item:hover {
	color: #e96730;
}

.form_submit input {
	border: none;
}

.form_last_container {
	margin-bottom: 0;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.form_container{
		flex-direction: column;
		gap: 34px 0;
	}
	
	.form_container.form_last_container {
		align-items: flex-end;
	}
}

/* end form */

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

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

:root {
	scroll-behavior: unset;
}

html,
body{
	font-family: "deuterium-variable", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: var(--font_size);
	line-height: 1.5;
	background-color: var(--background_color);
	overflow-x: hidden;
}

body {
	margin: 0;
	transition: all .4s;
}

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

section.light {
	background: #e5eaee;
}

section.dark {
	background: #374052;
}

section.yellow {
	background: #ffdd00;
}

section.white {
	background: #fff;
}

section.darkgrey {
	background: #181d21;
}

section.dark *,
section.darkgrey * {
	color: #ffffff;
}

body.with_bg_image section:not(.m32_references) {
	background: transparent !important;
}

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

section p:not(:last-child) {
	margin-bottom: 27px;
}

h1 span,
.h1 span,
h2 span,
.h2 span,
h3 span,
.h3 span,
h4 span,
.h4 span {
	color: #e96730;
}

h1 span.gray,
.h1 span.gray,
h2 span.gray,
.h2 span.gray,
h3 span.gray,
.h3 span.gray,
h4 span.gray,
.h4 span.gray {
	color: #a1a1a5;
}

.mM_text_container > *:not(:last-child) {
	margin-bottom: 20px;
}

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

h1,
.h1 {
	font-size: 5.313rem;
	line-height: 1.1;
}

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

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

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

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

a,
a:focus,
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 {
	display: flex;
	flex-wrap: wrap;
	gap: 0 20px;
}

[data-show-highlight="true"] {
	position: relative;
}

[data-show-highlight="true"] .mM_container {
	position: relative;
	z-index: 2;
}

[data-show-highlight="true"]:before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 80vw;
	height: 40vw;
	background: radial-gradient(circle,rgba(255, 255, 255, .5) 0%, rgba(0, 0, 0, 0) 100%);
	border-radius: 50%;
	filter: blur(30px);
}

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

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

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

.less_padding_bottom[data-innerer-abstand="innerer_abstand_oben_und_unten"],
.less_padding_bottom[data-innerer-abstand="innerer_abstand_nur_unten"] {
	padding-bottom: calc(130px - 65px);
}

.more_padding_top[data-innerer-abstand="innerer_abstand_oben_und_unten"],
.more_padding_top[data-innerer-abstand="innerer_abstand_nur_oben"] {
	padding-top: calc(130px + 65px);
}

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

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

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

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

.subtitle {
	font-family: Nexa-Heavy, sans-serif;
	text-transform: uppercase;
}

.hovering_dot {
	position: absolute;
	top: -50%;
	right: - 50%;
	display: block;
	width: 300px;
	heigt: 300px;
	border-radius: 50%;
}

span.lilac_violet {
	color: #ec93ff;
}

@media all and (min-width: 576px) {
	.mM_container {
		max-width: 540px;
	}
	
	.mM_col_25,
	.mM_col_33,
	.mM_col_66 {
		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% - ((var(--row_gap) * 2) / 3));
	}
	
	.mM_col_66 {
		width: calc(66.6666% - 10px);
	}
	
	.mM_col_40,
	.mM_col_60 {
		width: calc(50% - 10px);
	}
}

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

@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: 991px) {
	h1,
	.h1 {
		font-size: 3.313rem;
		line-height: .9;
	}
	
	h2,
	.h2 {
		font-size: 2.438rem;
		margin-bottom: 30px;
	}
	
	h3,
	.h3 {
		font-size: 1.363rem;
	}
	
	[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
		padding-top:80px;
		padding-bottom:80px;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_oben"]{
		padding-top:80px;
		padding-bottom:0;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_unten"]{
		padding-top:0;
		padding-bottom:80px;
	}
	
	.bigger_padding[data-innerer-abstand="innerer_abstand_oben_und_unten"] {
		padding-top: 80px;
		padding-bottom: 80px;
	}
	
	.bigger_padding[data-innerer-abstand="innerer_abstand_nur_oben"] {
		padding-top: 80px;
		padding-bottom: 0;
	}
	
	.bigger_padding[data-innerer-abstand="innerer_abstand_nur_unten"] {
		padding-top: 0;
		padding-bottom: 80px;
	}
	
	.less_padding_bottom[data-innerer-abstand="innerer_abstand_oben_und_unten"],
	.less_padding_bottom[data-innerer-abstand="innerer_abstand_nur_unten"] {
		padding-bottom: 80px;
	}
	
	.more_padding_top[data-innerer-abstand="innerer_abstand_oben_und_unten"],
	.more_padding_top[data-innerer-abstand="innerer_abstand_nur_oben"] {
		padding-top: 80px;
	}
}

@media screen and (max-width: 767px) {
	section.mobile_display_none {
		display: none;
	}
	
	section.mobile_margin_center {
		margin-left: auto !important;
		margin-right: auto !important;
	}
	
	section.mobile_margin_center .m2_galerie_container {
		margin-left: auto !important;
		margin-right: auto !important;
	}
	
	section.mobile_height_auto {
		height: auto !important;
	}
	
	section.mobile_height_auto .m2_galerie_wrapper {
		height: auto !important;
	}
	
	section.mobile_margin_padding_custom .m2_content_wrapper {
		margin-bottom: 30px !important;
		padding-bottom: 0 !important;
	}
	
	section.mobile_padding_top {
		padding-top: 25px !important;
	}
	
	section.mobile_padding_top .m2_content_wrapper{
		padding-top: 0 !important;
	}
}

@media all and (max-width: 575px) {
	.button{
		padding: 17px 20px 18px 20px;
	}
	
	.mM_container {
		padding: 0 20px;
	}
	
	[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
		padding-top:40px;
		padding-bottom:40px;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_oben"]{
		padding-top:40px;
		padding-bottom:0;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_unten"]{
		padding-top:0;
		padding-bottom:40px;
	}
	
	.bigger_padding[data-innerer-abstand="innerer_abstand_oben_und_unten"] {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	
	.bigger_padding[data-innerer-abstand="innerer_abstand_nur_oben"] {
		padding-top: 40px;
		padding-bottom: 0;
	}
	
	.bigger_padding[data-innerer-abstand="innerer_abstand_nur_unten"] {
		padding-top: 0;
		padding-bottom: 40px;
	}
	
	.less_padding_bottom[data-innerer-abstand="innerer_abstand_oben_und_unten"],
	.less_padding_bottom[data-innerer-abstand="innerer_abstand_nur_unten"] {
		padding-bottom: 40px;
	}
	
	.more_padding_top[data-innerer-abstand="innerer_abstand_oben_und_unten"],
	.more_padding_top[data-innerer-abstand="innerer_abstand_nur_oben"] {
		padding-top: 40px;
	}
	
	h1,
	.h1 {
		font-size: 2.313rem;
		line-height: .9;
	}
	
	h2,
	.h2 {
		font-size: 2.138rem;
		margin-bottom: 30px;
	}
	
	h3,
	.h3 {
		font-size: 1.263rem;
	}
}

@keyframes rotateCursorItem {
	0% {
		transform: rotateZ(0);
	} 100% {
		transform: rotateZ(359deg);
	}
}

.btw_cursor_el_wrapper {
	position: absolute;
	left: -999999px;
	top: -999999px;
	z-index: 2;
	pointer-events: none;
	opacity: 0;
	transition: opacity .6s;
	width: 112px;
	height: 112px;
}

.btw_cursor_el_wrapper.btw_cursor_footer_wrapper {
	width: 148px;
	height: 148px;
}

.btw_cursor_el_wrapper.active {
	opacity: 1;
}

.btw_cursor_el_wrapper .btw_cursor_el {
	transform-origin: center;
}

.btw_cursor_el_wrapper.active .btw_cursor_el {
	animation-name: rotateCursorItem;
	animation-duration: 6s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

/** start Blob **/

.sub_blob {
	position: absolute;
	/* top: 50%;
	left: 50%; */
	width: var(--blob-size);
	height: var(--blob-size);
	/* transform: translate(-50%, -50%) scale(1); */
	transform: translate3d(calc(-50% + var(--px, 0px)), calc(-50% + var(--py, 0px)), 0) scale(var(--sc, 1));
	pointer-events: none;
	opacity: var(--opacity);
	filter: blur(var(--blur-base)) contrast(1.2);
	background: radial-gradient(circle at 50% 50%, var(--color) 0%, rgba(255,255,255,0) 70%);
	/* mask-image: radial-gradient(circle at 50% 50%, black 60%, transparent 100%); */
	will-change: transform, filter;
	transition: filter .4s ease;
	backface-visibility: hidden;
	isolation: isolate;
	z-index: 0;
}

.sub_blob_left {
	--color: var(--left-blob);
	top: -600px;
	left: -600px;
}

.sub_blob_right {
	--color: var(--right-blob);
	top: -400px;
	right: -400px;
}

/** end Blob **/

/** START Footer **/

.mM_footer {
	background: #000;
	padding: 130px 0 0;
	overflow: hidden;
	border-top: 1px solid #3f4349;
}

footer .mM_footer_logo .cls-2 {
	fill: #fff !important;
}

footer .not_clickable > a {
	pointer-events: none;
}

footer .mM_footer_top_line {
	position: relative;
}

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

footer .mM_footer_background {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	z-index: 1;
}

footer .mM_footer_background img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

footer .mM_footer_top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 17px;
}

footer .mM_footer_menu {
	display: flex;
}

footer .mM_footer_top_certificates {
	display: flex;
}

footer .mM_zertifikat_item {
	border: 1px solid #3f4349;
	background: #000;
	padding: 10px 16px 11px 16px;
}

footer .mM_zertifikat_item:not(:first-child) {
	border-left: 0;
}

footer .mM_zertifikat_item img {
	height: 92px;
}

footer .mM_footer_middle {
	display: flex;
}

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

footer .mM_footer_top_scroll_up .mM_scroll_top_button {
	background: #e96730;
	border: 1px solid #e96730;
	width: 52px;
	height: 52px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all .4s;
}

footer .mM_footer_top_scroll_up .mM_scroll_top_button:hover {
	background: #fff;
}

footer .mM_footer_top_scroll_up .mM_scroll_top_button svg {
	fill: #fff;
	transform: rotate(-90deg);
	width: 14px;
	transition: all .4s;
}

footer .mM_footer_top_scroll_up .mM_scroll_top_button:hover svg {
	fill: #e96730;
	margin-bottom: 7px;
}

footer .mM_footer_logo svg {
	width: 618px;
}

footer .mM_footer_logo svg .cls-2 {
	opacity: 1 !important;
}

footer .mM_footer_container_bottom_line {
	
}

footer .mM_footer_bottom_line {
	background: #000;
	border-top: 1px solid #3f4349;
}

footer .mM_footer_social_icon_button {
	width: 52px;
	height: 52px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000;
	border: 1px solid #3f4349;
	transition: all .4s;
}

footer .mM_footer_social_icon_button:not(:first-child) {
	border-left: none;
}

footer .mM_footer_social_icon_button:hover {
	background: #e96730;
}

footer .mM_footer_social_icon_button svg {
	fill: #878a8e;
	height: 24px;
	transition: all .4s;
}

footer .mM_footer_social_icon_button:hover svg {
	fill: #fff;
}

footer .mM_footer_social_icons {
	display: flex;
}

footer .mM_footer_logo a {
	display: flex;
}

.mM_footer * {
	color: #ffffff;
}

footer .mM_footer_middle {
	align-items: center;
	justify-content: space-between;
	padding-bottom: 79px;
}

footer .mM_footer_bottom_middle {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
	border-left: 1px solid #3f4349;
	border-right: 1px solid #3f4349;
	width: 40%;
	padding-top: 21px;
	padding-bottom: 19px;
}

footer .mM_footer_bottom_left,
footer .mM_footer_bottom_right {
	padding-top: 21px;
	padding-bottom: 19px;
}

footer .footer_copyright_trenner {
	width: 5px;
	height: 5px;
	background: rgba(255, 255, 255, .5);
}

footer .mM_footer_bottom_left ul {
	display: flex;
	gap: 38px;
}

footer .mM_footer_bottom_left ul li {
	margin-right: 0 !important;
	position: relative;
}

footer .mM_footer_bottom_left ul li:first-child:after {
	content: '';
	width: 5px;
	height: 5px;
	background: rgba(255, 255, 255, .5);
	display: inline-block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -22px;
}

footer .mM_footer_bottom_left ul li a {
	font-weight: 300 !important;
	color: rgba(255, 255, 255, .5);
	transition: color .4s;
}

footer .mM_footer_bottom_left ul li a:hover {
	color: #fff !important;
}

footer .mM_menu_container ul.menu > li > a {
	padding-left: 17px;
	position: relative;
	margin-bottom: 16px;
}

footer .mM_menu_container ul.menu > li > a:before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 5px;
	height: 5px;
	background: #e96730;
}

footer .mM_menu_container ul.sub-menu > li > a {
	padding-left: 0;
	font-size: 1.125rem;
	color: #828489;
}

footer .mM_menu_container ul.sub-menu > li > a:before {
	display: none;
}

footer .mM_menu_container ul.sub-menu {
	margin-bottom: 59px;
}

footer .mM_footer_menu {
	width: calc(100% - 202px - 52px);
	justify-content: center;
	gap: 120px;
	padding-left: 134px;
	padding-right: 85px;
	margin-top: -7px;
}

footer .mM_menu_container ul.menu > li,
footer .mM_menu_container ul.sub-menu > li {
	margin-bottom: 0 !important;
	margin-right: 0 !important;
}

.mM_footer .mM_footer_middle_left {
	flex: 0 0 auto;
	max-width: 100%;
	width: 75%;
}

.mM_footer .mM_footer_middle_right {
	flex: 0 0 auto;
	max-width: 100%;
	width: 25%;
}

.mM_footer .mM_footer_claim {
	padding: 0 0 60px;
	width: 100%;
}

.mM_footer .mM_footer_claim * {
	font-size: 2.5625rem;
}

.mM_footer .mM_footer_claim_text {
	font-family: 'Nexa-Heavy', sans-serif;
	font-weight: 800;
	line-height: 1;
}

.mM_footer .mM_footer_claim_small {
	display: flex;
	align-items: center;
	gap: 0 17px;
}

.mM_footer .mM_footer_claim_small_text {
	font-family: 'Nexa-Book', sans-serif;
	font-weight: 300;
	line-height: 1;
}

.mM_footer .mM_footer_claim_icon {
	width: 35px;
	fill: #fff;
}

.mM_footer .mM_footer_container_logo {
	height: 43px;
	text-align: right;
}

.mM_footer .mM_footer_logo_link svg {
	fill: #fff;
	transition: fill .4s;
}

.mM_footer .mM_footer_logo_link:hover svg {
	fill: #2d99f7;
}

.mM_footer .mM_footer_social_container {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0 30px;
	margin-top: 65px;
}

.mM_footer .m30_home_header_social_icon {
	width: auto;
	max-width: unset;
	height: 22px;
	fill: #fff;
	transition: fill .4s;
}

.mM_footer .m30_home_header_social_item:hover .m30_home_header_social_icon {
	fill: #2d99f7;
}

.mM_footer .mM_footer_menu_container {
	margin-top: 10px;
}

.mM_footer .menu-item:not(.mM_footer_imprint_datasec) {
	margin-right: 60px;
}

.mM_footer .menu-item:not(.mM_footer_imprint_datasec) a {
	font-weight: 300;
	transition: color .4s;
}

.mM_footer ul.menu > .menu-item:not(.mM_footer_imprint_datasec) > a:hover,
.mM_footer ul.menu > .menu-item:not(.mM_footer_imprint_datasec).current-menu-item > a,
.mM_footer ul.sub-menu > .menu-item:not(.mM_footer_imprint_datasec) > a:hover,
.mM_footer ul.sub-menu > .menu-item:not(.mM_footer_imprint_datasec).current-menu-item > a {
	color: #e96730;
}

.mM_footer .menu-item.mM_footer_imprint {
	padding-right: 25px;
	position: relative;
}

.mM_footer .menu-item.mM_footer_imprint:after {
	content: '|';
	font-family: 'Nexa-Book', sans-serif;
	font-weight: 400;
	font-size: 1rem;
	color: rgba(255,255,255,.3);
	position: absolute;
	right: 11px;
	top: 50%;
	transform: translateY(-50%);
}

.mM_footer .menu-item.mM_footer_imprint_datasec a {
	color: rgba(255,255,255,.3);
	font-family: 'Nexa-Book', sans-serif;
	font-weight: 400;
	transition: color .4s;
}

.mM_footer .menu-item.mM_footer_imprint_datasec a:hover,
.mM_footer .menu-item.mM_footer_imprint_datasec.current-menu-item a {
	color: rgba(255,255,255,.8);
}

.mM_footer .mM_footer_bottom_inner_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #2d99f7;
	border-radius: 30px;
	margin-top: 40px;
	padding: 16px 40px;
}

.mM_footer .mM_core_text {
	font-family: 'Nexa-Book', sans-serif;
	font-weight: 400;
	letter-spacing: 3px;
}

.mM_footer .mM_footer_bottom_left_inner {
	display: flex;
	align-items: center;
}

.mM_footer .mM_footer_network_icon {
	width: 14px;
	fill: #fff;
	transform: rotate(-45deg);
	margin-left: 10px;
}

.mM_footer .footer_copyright_text,
.mM_footer .footer_copyright_text * {
	font-family: "deuterium-variable", sans-serif;
	color: rgba(255,255,255,.5);
}

a.ext_link {
	position: relative;
	color: #fff;
}

a.ext_link:hover {
	color: #fff;
}

a.ext_link:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 100%;
	height: 1px;
	background: #fff;
	transform-origin: right;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: transform .4s ease-out;
	-moz-transition: transform .4s ease-out;
	-ms-transition: transform .4s ease-out;
	-o-transition: transform .4s ease-out;
	transition: transform .4s ease-out;
}

a.ext_link:hover:after {
	transform-origin: left;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

a.ext_link svg {
	fill: #fff;
	width: 16px;
	min-width: 16px;
	height: 13px;
	min-height: 13px;
	margin-left: 7px;
}

footer .footer_copyright_text a {
	text-decoration: underline;
	transition: all .4s;
}

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

@media all and (max-width: 1799px) {
	footer .mM_footer_menu {
		gap: 50px;
	}
}

@media all and (max-width: 1599px) {
	.mM_footer .mM_footer_claim * {
		font-size: 2.1625rem;
	}
}

@media all and (max-width: 1399px) {
	.mM_footer .mM_footer_claim * {
		font-size: 1.8625rem;
	}
	
	footer .mM_footer_menu {
		flex-wrap: wrap;
		justify-content: flex-start;
		gap: 0 50px;
	}
	
	footer .mM_menu_container {
		width: calc(50% - (50px / 2));
	}
}

@media all and (max-width: 1199px) {
	.mM_footer .mM_footer_middle_left {
		width: 70%;
	}
	
	.mM_footer .mM_footer_middle_right {
		width: 30%;
	}
	
	.mM_footer .menu-item:not(.mM_footer_imprint_datasec) {
		margin-right: 30px;
	}
	
	.mM_footer .footer_copyright_text, .mM_footer .footer_copyright_text * {
		font-size: .875rem;
	}
	
	footer .mM_footer_bottom_left ul li a {
		font-size: .875rem;
	}
	
	footer .mM_footer_bottom_left ul li:first-child:after {
		top: 52%;
	}
}

@media all and (max-width: 991px) {
	.mM_footer .mM_footer_middle {
		flex-wrap: wrap;
	}
	
	footer .mM_footer_logo svg {
		width: 318px;
	}
	
	footer .not_clickable > a {
		pointer-events: auto;
	}
	
	.mM_footer .mM_footer_middle_right {
		order: 1;
		width: 100%;
		margin-bottom: 30px;
	}
	
	.mM_footer .mM_footer_middle_left {
		order: 2;
		width: 100%;
	}
	
	.mM_footer .mM_footer_container_logo {
		text-align: left;
	}
	
	.mM_footer .mM_footer_social_container {
		justify-content: flex-start;
		margin-top: 30px;
	}
	
	.mM_footer .mM_footer_claim {
		margin: 20px 0 25px;
		padding: 30px 0;
		border-top: 1px solid rgba(255,255,255,.3);
		border-bottom: 1px solid rgba(255,255,255,.3);
	}
	
	.mM_footer .mM_footer_claim_text {
		line-height: 1.3;
	}
	
	footer .mM_footer_top {
		flex-wrap: wrap;
		gap: 50px;
	}
	
	footer .mM_footer_top_certificates {
		width: calc(50% - (50px / 2));
		order: 1;
	}
	
	footer .mM_footer_menu {
		width: 100%;
		order: 3;
		padding: 0;
	}
	
	footer .mM_menu_container {
		width: 100%;
	}
	
	footer .mM_footer_top_scroll_up {
		width: calc(50% - (50px / 2));
		order: 2;
		display: flex;
		justify-content: flex-end;
	}
	
	/* Hauptpunkt wird zum klickbaren Toggle */
	footer .mM_menu_container ul.menu > li > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		cursor: pointer;
		user-select: none;
	}
	
	/* Pfeil-Icon nur bei Punkten mit Sub-Menu */
	footer .mM_menu_container ul.menu > li.menu-item-has-children > a::after {
		content: '';
		display: inline-block;
		width: 8px;
		height: 8px;
		border-right: 2px solid #e96730;
		border-bottom: 2px solid #e96730;
		transform: rotate(45deg);
		transition: transform .3s ease;
		flex-shrink: 0;
		margin-left: 10px;
	}
	
	/* Pfeil dreht sich wenn offen */
	footer .mM_menu_container ul.menu > li.menu-item-has-children.is-open > a::after {
		transform: rotate(-135deg);
	}
	
	/* Sub-Menu standardmäßig ausgeblendet */
	footer .mM_menu_container ul.sub-menu {
		display: none;
		margin-bottom: 0;
		overflow: hidden;
	}
	
	/* Sub-Menu sichtbar wenn Parent offen */
	footer .mM_menu_container ul.menu > li.is-open > ul.sub-menu {
		display: block;
		animation: submenuOpen .25s ease forwards;
		padding-bottom: 10px;
	}
	
	@keyframes submenuOpen {
		from { opacity: 0; transform: translateY(-6px); }
		to   { opacity: 1; transform: translateY(0); }
	}
	
	/* Etwas Abstand zwischen den Sub-Items */
	footer .mM_menu_container ul.sub-menu > li {
		padding: 4px 0;
	}
	
	/* Letztes Sub-Item bekommt etwas Abstand nach unten */
	footer .mM_menu_container ul.menu > li.is-open > ul.sub-menu > li:last-child {
		padding-bottom: 12px;
	}
	
	footer .mM_footer_left ul.menu > li {
		border-top: 1px solid rgba(255, 255, 255, .3);
	}
	
	footer .mM_menu_container ul.menu > li {
		border-bottom: 1px solid rgba(255, 255, 255, .3);
	}
	
	footer .mM_menu_container ul.menu > li > a {
		margin-top: 14px;
	}
	
	footer .mM_footer_middle {
		padding-top: 40px;
	}
	
	footer .mM_footer_bottom {
		flex-direction: column;
	}
	
	footer .mM_footer_bottom_left,
	footer .mM_footer_bottom_middle,
	footer .mM_footer_bottom_right {
		width: 100%;
	}
	
	footer .mM_footer_bottom_line {
		position: relative;
	}
	
	footer .mM_footer_bottom_middle {
		border-left: none;
		border-right: none;
		justify-content: flex-start;
		padding: 0;
	}
}

@media all and (max-width: 767px) {
	.mM_footer .mM_footer_menu {
		flex-wrap: wrap;
	}
	
	.mM_footer .mM_footer_claim .mM_footer_claim_small_text {
		font-size: 1.125rem;
	}
	
	.mM_footer .mM_footer_claim_icon {
		width: 22px;
	}
	
	.mM_footer .mM_footer_claim_small {
		gap: 0 11px;
	}
	
	.mM_footer .mM_footer_menu_container {
		margin-top: 32px;
	}
	
	.mM_footer .menu-item:not(.mM_footer_imprint_datasec) {
		width: unset;
		margin-right: 0;
		margin-bottom: 0;
	}
	
	.mM_footer .menu-item * {
		font-size: .875rem
	}
	
	.mM_footer .mM_footer_imprint_datasec {
		margin-top: 0;
	}
	
	.mM_footer .mM_footer_bottom_inner_container {
		flex-wrap: wrap;
		margin-top: 53px;
	}
	
	.mM_footer .mM_footer_bottom_left_container,
	.mM_footer .mM_footer_bottom_right_container {
		width: 100%;
		text-align: center;
	}
	
	.mM_footer .mM_footer_bottom_left_container {
		margin-bottom: 15px;
	}
	
	.mM_footer .mM_footer_bottom_left_inner {
		justify-content: center;
	}
	
	footer .mM_footer_middle {
		flex-direction: column-reverse;
		justify-content: flex-start;
		align-items: flex-start;
		gap: 50px;
	}
}

@media all and (max-width: 575px) {
	.mM_footer {
		padding: 40px 0 20px;
	}
	
	.mM_footer .mM_footer_claim * {
		font-size: 1.5625rem;
	}
	
	.mM_footer .mM_footer_container_logo {
		height: 29px;
	}
	
	footer .mM_footer_top_certificates {
		width: 100%;
		order: 3;
	}
	
	footer .mM_footer_menu {
		order: 2;
	}
	
	footer .mM_footer_top_scroll_up {
		width: 100%;
		order: 1;
	}
}

@media screen and (max-width: 400px) {
	footer .footer_copyright_trenner {
		display: none;
	}
	
	footer .mM_footer_bottom_middle {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}
}

/** END Footer **/

section.m46_accordion_horizontal_video_bild .m46_accordion_horizontal_video_bild_item img {
	object-position: 42%;
}


.error404 {
	height: 100vh;
	overflow: hidden;
	margin-bottom: 0 !important;
}

.error404 footer {
	display: none;
}

/* ================= ERR404 ================= */

.err404 {
	background-size: cover;
	background-position: center center;
	height: 100vh;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

/* ===== MOONS ===== */

.err404__moon {
	position: absolute;
	width: 257px;
	left: 30%;
	top: 110px;
}

.err404__moon.loaded {
	transition: none !important;
}

/* Moon 1 */

.err404__moon#moon1 {}

@media screen and (max-width: 1199px) {
	.err404__moon#moon1 {
		left: 20%;
	}
}

@media screen and (max-width: 991px) {
	.err404__moon#moon1 {
		left: 5%;
		width: 200px;
	}
}

@media screen and (max-width: 575px) {
	.err404__moon#moon1 {
		width: 125px;
	}
}

/* Moon 2 */

.err404__moon#moon2 {
	left: auto;
	width: 327px;
	right: -40px;
	top: 175px;
}

@media screen and (max-width: 1199px) {
	.err404__moon#moon2 {
		top: 135px;
	}
}

@media screen and (max-width: 991px) {
	.err404__moon#moon2 {
		width: 250px;
		right: -55px;
		top: 45px;
	}
}

@media screen and (max-width: 575px) {
	.err404__moon#moon2 {
		width: 175px;
	}
}

/* Moon 3 */

.err404__moon#moon3 {
	left: auto;
	right: 30%;
	top: 650px;
	width: 169px;
}

@media screen and (max-width: 1199px) {
	.err404__moon#moon3 {
		right: 20%;
	}
}

@media screen and (max-width: 991px) {
	.err404__moon#moon3 {
		right: 10%;
		width: 125px;
		top: 425px;
	}
}

@media screen and (max-width: 575px) {
	.err404__moon#moon3 {
		top: auto;
		bottom: 24vh;
	}
}

/* Moon 4 */

.err404__moon#moon4 {
	width: 655px;
	left: -200px;
	top: auto;
	bottom: -300px;
}

@media screen and (max-width: 991px) {
	.err404__moon#moon4 {
		width: 575px;
	}
}

@media screen and (max-width: 767px) {
	.err404__moon#moon4 {
		width: 485px;
	}
}

@media screen and (max-width: 575px) {
	.err404__moon#moon4 {
		width: 315px;
		left: -100px;
		bottom: -150px;
	}
}

/* Moon 5 */

.err404__moon#moon5 {
	width: 348px;
	right: -75px;
	left: auto;
	top: auto;
	bottom: -180px;
}

@media screen and (max-width: 575px) {
	.err404__moon#moon5 {
		width: 148px;
		bottom: -50px;
		right: -25px;
	}
}

/* ===== CONTAINER ===== */

.err404 > .mM_container {
	position: relative;
	z-index: 2;
	width: 100%;
}

@media screen and (max-width: 575px) {
	.err404 > .mM_container {
		position: static;
	}
}

/* ===== ASTRONAUT ===== */

.err404 .astronaut {
	position: absolute;
	width: 371px;
	left: 445px;
	top: 140px;
	z-index: 2;
}

@media screen and (max-width: 1920px) {
	.err404 .astronaut {
		left: 285px;
	}
}

@media screen and (max-width: 1600px) {
	.err404 .astronaut {
		left: 185px;
	}
}

@media screen and (max-width: 1400px) {
	.err404 .astronaut {
		left: 85px;
	}
}

@media screen and (max-width: 1199px) {
	.err404 .astronaut {
		width: 285px;
		left: 95px;
		top: 90px;
	}
}

@media screen and (max-width: 991px) {
	.err404 .astronaut {
		width: 255px;
		left: 3px;
	}
}

@media screen and (max-width: 767px) {
	.err404 .astronaut {
		width: 205px;
		left: 0;
		top: 75px;
	}
}

@media screen and (max-width: 575px) {
	.err404 .astronaut {
		width: 170px;
		left: 10%;
		top: auto;
		bottom: 47%;
	}
}

@media screen and (max-width: 500px) {
	.err404 .astronaut {
		left: 16%;
		width: 135px;
		bottom: 50%;
	}
}

@media screen and (max-width: 450px) {
	.err404 .astronaut {
		left: 12.5%;
	}
}

@media screen and (max-width: 400px) {
	.err404 .astronaut {
		left: 10%;
		bottom: 53%;
	}
}

@media screen and (max-width: 350px) {
	.err404 .astronaut {
		left: 5%;
		bottom: 54%;
	}
}

/* ===== TEXT CONTENT ===== */

.err404__text-cont {
	text-align: center;
	color: #fff;
}

.err404__text-cont * {
	color: #fff;
}

/* Heading */

.err404__text-cont > h2 {
	font-size: 25rem;
	line-height: .8;
	color: #0056a1;
}

@media screen and (max-width: 1199px) {
	.err404__text-cont > h2 {
		font-size: 20rem;
	}
}

@media screen and (max-width: 767px) {
	.err404__text-cont > h2 {
		font-size: 15rem;
	}
}

@media screen and (max-width: 575px) {
	.err404__text-cont > h2 {
		font-size: 10rem;
		line-height: 1;
	}
}

@media screen and (max-width: 500px) {
	.err404__text-cont > h2 {
		font-size: 7rem;
	}
}

@media screen and (max-width: 400px) {
	.err404__text-cont > h2 {
		font-size: 5rem;
		margin-bottom: 2rem;
	}
}

/* Paragraph */

.err404__text-cont > p {
	font-size: 1.125rem;
	line-height: 1;
	margin-bottom: 10px;
	letter-spacing: 1px;
}

@media screen and (max-width: 575px) {
	.err404__text-cont > p {
		font-size: 1rem;
		line-height: 1.4;
	}
}

/* Strong */

.err404__text-cont > p > strong {
	font-size: 2.1875rem;
}

@media screen and (max-width: 1199px) {
	.err404__text-cont > p > strong {
		font-size: 1.6875rem;
	}
}

@media screen and (max-width: 575px) {
	.err404__text-cont > p > strong {
		font-size: 1.3875rem;
	}
}

@media screen and (max-width: 400px) {
	.err404__text-cont > p > strong {
		font-size: 1.0875rem;
	}
}

/* Button */

.err404__text-cont-button {
	display: inline-block;
	margin-top: 20px;
	padding: 15px 30px;
	line-height: 1;
	color: $colorOrange;
	border: 1px solid $colorOrange;
	font-family: $fontBold;
	font-weight: $fontWeightBold;
	letter-spacing: 1px;
	border-radius: 4px;
	transition: color .4s, background .4s;
}

.err404__text-cont-button:active,
.err404__text-cont-button:focus,
.err404__text-cont-button:visited {
	color: $colorOrange;
}

.err404__text-cont-button:hover {
	background: $colorOrange;
	color: #fff;
}

/* ===== External Button Styles ===== */

section.err404 .mM_button {
	cursor: pointer;
	overflow: hidden;
	position: relative;
	display: inline-block;
	line-height: 1;
	color: #0056a1;
	border: 1px solid #b4cbdf;
	padding: 21px 32px 18px;
	border-radius: 35px;
	-webkit-transition: color 0.4s, background 0.4s, border-color 0.4s;
	-moz-transition: color 0.4s, background 0.4s, border-color 0.4s;
	-ms-transition: color 0.4s, background 0.4s, border-color 0.4s;
	-o-transition: color 0.4s, background 0.4s, border-color 0.4s;
	transition: color 0.4s, background 0.4s, border-color 0.4s;
}

section.err404 .mM_button_effect_elem {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	overflow: hidden;
}

section.err404 .mM_button_effect_elem span {
	display: block;
	width: 100%;
	height: 100%;
	transform: translateY(101%);
	background: #f67939;
	border-radius: 50% 50% 0 0;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0, 1), border-radius 0.5s cubic-bezier(0.4, 0, 0, 1);
}

section.err404 .mM_button:hover .mM_button_effect_elem span {
	border-radius: 0;
	transform: translateY(0);
	transition-duration: 0.5s, 0.9s;
}

section.err404 .mM_button_text {
	position: relative;
	z-index: 2;
}

section.err404 .mM_button {
	color: #fff;
	border-color: #f67939;
	background: #f67939;
	border: 1px solid rgba(246, 121, 57, 0.3);
}

section.err404 .mM_button:hover,
section.err404 .mM_button:hover * {
	color: #f67939;
}

section.err404 .mM_button_effect_elem span {
	background: #fff;
}

/** START UL / LI **/

.m3_text_container li,
.m41_beschreibung_container li {
	display: flex;
	gap: 12px;
}

.m3_text_container li:before,
.m41_beschreibung_container li:before {
	content: '';
	height: 5px;
	width: 5px;
	min-width: 5px;
	background: #e96730;
	display: inline-block;
	margin-top: 11px;
}

/** END UL / LI **/