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

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

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

.opacity_0{
	opacity: 0;
}

/* link / button */
.button{
	padding: 13px 28px 10px 28px;
	cursor:pointer;
	font-size: .842rem;
	border: 1px solid transparent;
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-ms-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
}

.button.rounded_corners {
	border-radius: 10px;
}

.button.primary{
	background-color: var(--primarbutton_background_color);
	color: var(--primarbutton_font_color);
	border-color: var(--primarbutton_background_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);
	border-color: #e4e8eb;
}

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

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

.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);
	border-color: var(--sekundarbutton_hover_background_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 */

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

/* start footer */

footer {
	position: relative;
}

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

footer .mM_footer_background {
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
	width: 100vw;
	z-index: 1;
	height: calc(100% + 400px);
}

footer .mM_footer_middle_middle .menu {
	display: flex;
	gap: 6px;
}

footer .mM_footer_middle_middle .menu li a {
	transition: all .4s;
	padding: 13px 20px 10px 20px;
	border: 1px solid transparent;
	font-size: .842rem;
}

footer[data-button-corners="rounded_corners"] .mM_footer_middle_middle .menu li a {
	border-radius: 10px;
}

footer .mM_footer_middle_middle .menu li a:hover {
	background: #eff3f6;
	border-color: #e4e8eb;
}

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

footer .mM_footer_middle_right_social_item svg {
	max-height: 23px;
	max-width: 23px;
	fill: #07173a;
	transition: .4s;
}

footer .mM_footer_middle_right_social_item:hover svg {
	fill: rgba(13, 13, 13, .3);
}

footer .mM_footer_middle {
	align-items: center;
	justify-content: space-between;
}

footer .mM_footer_middle_right_social_container {
	gap: 35px;
	display: flex;
	align-items: center;
}

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

footer .mM_footer_bottom .menu {
	display: flex;
	gap: 33px;
}

footer .mM_footer_bottom .menu li a {
	color: rgba(13, 13, 13, .3);
	transition: color .4s;
	font-size: .763rem;
}

footer .mM_footer_bottom .menu li a:hover {
	color: rgba(13, 13, 13, 1);
}

footer .mM_footer_bottom .menu li:first-child {
	position: relative;
}

footer .mM_footer_bottom .menu li:first-child:after {
	content: "/";
	position: absolute;
	right: -17px;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(13, 13, 13, .3);
	font-size: .763rem;
}

footer .mM_footer_bottom_left p,
footer .mM_footer_bottom_left span,
footer .mM_footer_bottom_right p,
footer .mM_footer_bottom_right a {
	color: rgba(13, 13, 13, .3);
	font-size: .763rem;
	transition: color .4s;
}

footer .mM_footer_bottom_right a:hover {
	color: rgba(13, 13, 13, 1);
}

footer .mM_footer_bottom {
	margin-top: 100px;
	padding-bottom: 65px;
}

@media screen and (max-width: 991px) {
	footer .mM_footer_middle {
		flex-wrap: wrap;
		gap: 30px;
	}
	
	footer .mM_footer_middle_left {
		order: 1;
	}
	
	footer .mM_footer_middle_middle {
		order: 3;
		width: 100%;
		display: flex;
		justify-content: center;
	}
	
	footer .mM_footer_middle_right {
		order: 2;
		display: flex;
		justify-content: flex-end;
	}
}

@media screen and (max-width: 575px) {
	footer .mM_footer_middle_middle .menu {
		flex-direction: column;
		gap: 0;
	}
	
	footer .mM_footer_middle_middle nav {
		width: 100%;
	}
	
	footer .mM_footer_middle_middle .menu li {
		border-top: 1px solid rgba(13, 13, 13, .3);
		width: 100%;
	}
	
	footer .mM_footer_middle_middle .menu li:last-child {
		border-bottom: 1px solid rgba(13, 13, 13, .3);
	}
	
	footer .mM_footer_middle_middle .menu li a {
		font-size: 1rem;
		transition: color .4s;
	}
	
	footer .mM_footer_middle_middle .menu li a:hover {
		background: transparent;
		border-color: transparent;
		color: rgba(13, 13, 13, .3);
	}
	
	footer .mM_footer_middle_middle {
		justify-content: flex-start;
	}
	
	footer .mM_footer_bottom {
		flex-wrap: wrap;
		gap: 10px 35px;
		margin-top: 65px;
		padding-bottom: 45px;
		justify-content: center;
	}
	
	footer .mM_footer_bottom_middle {
		order: 1;
		width: 100%;
		display: flex;
		justify-content: center;
	}
	
	footer .mM_footer_bottom_left {
		order: 2;
	}
	
	footer .mM_footer_bottom_right {
		order: 3;
	}
}

@media screen and (max-width: 320px) {
	footer .mM_footer_middle_left,
	footer .mM_footer_middle_right {
		width: 100%;
		display: flex;
		justify-content: center;
	}
}

/* end footer */

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

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

:root {
	scroll-behavior: unset;
}

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

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 {
	line-height: 1.2;
}

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

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

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

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

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

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

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

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

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

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

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

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

@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 all and (max-width: 575px) {
	.mM_container {
		padding: 0 20px;
	}
}

@media screen and (max-width: 991px) {
	h1,
	.h1 {
		font-size: 3.111rem;
	}
	
	h2,
	.h2 {
		font-size: 2.368rem;
		margin-bottom: 30px;
	}
	
	h3,
	.h3 {
		font-size: 1.5rem;
	}
	
	h4,
	.h4 {
		font-size: 1.2rem;
	}
	
	[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
		padding-top: 100px;
		padding-bottom: 100px;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_oben"]{
		padding-top: 100px;
		padding-bottom:0;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_unten"]{
		padding-top:0;
		padding-bottom: 100px;
	}
	
	[data-auserer-abstand="auserer_abstand_oben_und_unten"]{
		margin-top: 100px;
		margin-bottom: 100px;
	}
	
	[data-auserer-abstand="auserer_abstand_nur_oben"]{
		margin-top: 100px;
		margin-bottom:0;
	}
	
	[data-auserer-abstand="auserer_abstand_nur_unten"]{
		margin-top:0;
		margin-bottom: 100px;
	}
}

@media screen and (max-width: 767px) {
	h1,
	.h1 {
		font-size: 2.368rem;
	}
	
	h2,
	.h2 {
		font-size: 2.111rem;
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 575px) {
	h1,
	.h1 {
		font-size: 1.5rem;
	}
	
	h2,
	.h2 {
		font-size: 1.3rem;
		margin-bottom: 30px;
	}
	
	h3,
	.h3 {
		font-size: 1.2rem;
	}
	
	h4,
	.h4 {
		font-size: 1rem;
	}
	
	[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
		padding-top: 55px;
		padding-bottom: 55px;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_oben"]{
		padding-top: 55px;
		padding-bottom:0;
	}
	
	[data-innerer-abstand="innerer_abstand_nur_unten"]{
		padding-top:0;
		padding-bottom: 55px;
	}
	
	[data-auserer-abstand="auserer_abstand_oben_und_unten"]{
		margin-top: 55px;
		margin-bottom: 55px;
	}
	
	[data-auserer-abstand="auserer_abstand_nur_oben"]{
		margin-top: 55px;
		margin-bottom:0;
	}
	
	[data-auserer-abstand="auserer_abstand_nur_unten"]{
		margin-top:0;
		margin-bottom: 55px;
	}
}

/* start Page not Found */

.mM_page_not_found {
	padding-top: 155px;
	padding-bottom: 155px;
}

@media screen and (max-width: 991px) {
	.mM_page_not_found {
		padding-top: 100px;
		padding-bottom: 100px;
	}
}

@media screen and (max-width: 575px) {
	.mM_page_not_found {
		padding-top: 55px;
		padding-bottom: 55px;
	}
}

/* end Page not Found */