@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

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

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

section.m2_text_und_bild.auskragung_unten + section{
	padding-top: calc(75px + 70px);  /* standard padding + bild auskragung */
}

.opacity_0{
	opacity: 1;
}

/* link / button */
.button{
	transition: background-color .4s, color .4s;
	text-decoration: none;
	border-radius: 4px;
	display: inline-block;
	cursor: pointer;
	padding: 12px 31px 14px;
}

.button,
.button * {
	text-transform: uppercase;
	font-size: .875rem;
	font-weight: 700 !important;
}

a.button.primary,
.button.primary {
	background-color: #ef7d00;
	color: #fff;
}

.button.primary p {
	margin-bottom: 0;
	line-height: 1;
	text-transform: uppercase;
	font-size: .875rem;
	/* margin-top: 2px; */
}

.button.primary svg {
	fill: #fff;
	transition: fill .4s;
	width: 26px;
}

.button:not(.inactive).primary:hover {
	background-color: #fff;
	color: #ef7d00;
}

.button.primary:hover {
	text-decoration: none !important;
}

.button.primary:hover svg {
	fill: #ef7d00;
}

.button.secondary{
	background-color: #fff;
	color: #ef7d00;
}

.button.secondary svg {
	fill: #ef7d00;
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

.button.secondary:hover {
	background-color: #f7f7f7;
	color: #ef7d00;
}

.button.secondary:hover svg {
	fill: #ef7d00;
}

.button.secondary,
.button.secondary:hover {
	text-decoration: none !important;
}

.button.secondary p {
	margin-bottom: 2px;
}

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

/* ============================================================
   ReGaWatt Buttons (global) — injizierter Verlinkung-Wrapper .mM_links
   Gilt fuer alle Module mit Verlinkung-Feld (m8, m30, ...). Optik aus Figma:
   Primaer = orange Flaeche + dunkle Icon-Box + Pfeil-Fly-out-Hover.
   Hoehere Spezifitaet als die alten .button.primary-Regeln darueber.
   ============================================================ */
.mM_links {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}
.mM_links > div { margin: 0; }

.mM_links a,
.mM_links a *,
.mM_links a .mM_button_text {
	font-family: 'Inter', sans-serif;
	font-size: 1rem !important;    /* schlaegt .button/.button.primary-Groessen */
	font-weight: 600 !important;
	text-transform: none !important;
	text-decoration: none;
	letter-spacing: 0;
}

/* Primaerer Button: orange Flaeche + dunkle Icon-Box */
.mM_links a.button,
.mM_links a.mM_button {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 60px;
	padding: 8px 70px 8px 28px;    /* rechts Platz fuer die Icon-Box */
	border-radius: 0;
}
.mM_links a.button.primary,
.mM_links a.button.primary:hover,
.mM_links a.mM_button.primary,
.mM_links a.mM_button.primary:hover {
	background-color: #f48520;
	color: #ffffff;
}

/* dunkle Icon-Box mit weissem Pfeil (SVG aus Figma, 90deg -> oben rechts) */
.mM_links a.button .mM_button_icon,
.mM_links a.mM_button .mM_button_icon {
	position: absolute;
	top: 50%;
	right: 7px;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	overflow: hidden;
	background-color: #4a2e15;
}
.mM_links a .mM_button_icon .mM_button_arrow {
	position: absolute;
	left: 15px;
	top: 15px;
	width: 15px;
	height: 15px;
	transition: transform 0.4s ease;
}
.mM_links a .mM_button_arrow--1 { transform: translate(0, 0); }
.mM_links a .mM_button_arrow--2 { transform: translate(-30px, 30px); }
/* Hover: Pfeil fliegt oben-rechts raus, neuer kommt von unten-links rein */
.mM_links a.button.primary:hover .mM_button_arrow--1,
.mM_links a.mM_button.primary:hover .mM_button_arrow--1 { transform: translate(30px, -30px); }
.mM_links a.button.primary:hover .mM_button_arrow--2,
.mM_links a.mM_button.primary:hover .mM_button_arrow--2 { transform: translate(0, 0); }

/* Sekundaerer Button: transparent mit Rahmen */
.mM_links a.button.secondary,
.mM_links a.button.secondary:hover,
.mM_links a.mM_button.secondary,
.mM_links a.mM_button.secondary:hover {
	min-height: 60px;
	display: inline-flex;
	align-items: center;
	padding: 8px 28px;
	background-color: transparent;
	color: #685a51;
	border: 1px solid rgba(104, 90, 81, 0.3);
	border-radius: 0;
}

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

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

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

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

/* edit post link */

a.mM_edit_post {
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 99999;
	font-size: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #0056a1;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	color: #f67939;
	-webkit-transition: color .4s, background .4s;
	-moz-transition: color .4s, background .4s;
	-ms-transition: color .4s, background .4s;
	-o-transition: color .4s, background .4s;
	transition: color .4s, background .4s;
}

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

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

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

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

/* end edit post link */

/* form */

.wpcf7 form .wpcf7-not-valid-tip{
	margin-top: 5px;
    position: relative;
    font-size: 0.8rem;
    padding: 6px 10px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    margin-bottom:0;
}

.wpcf7 form .wpcf7-response-output{
    position: relative;
    font-size: 0.8rem;
    padding: 6px 10px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
    margin: 0;
    margin-top: 10px;
}

.wpcf7 form.sent .wpcf7-response-output{
	color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.wpcf7-form{
	display: block;
	width: 100%;
}

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

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

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

.form_item_title * {
	font-size: 1.25rem !important;
}

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

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

.form_hinweis {
	opacity: .5;
	margin-bottom: 40px;
}

.form_acceptance{
	margin-top: 20px;
}

.wpcf7-form-control{
	border-radius: 5px;
	width: 100%;
	background-color: rgba(229, 229, 229, 0.05);
	padding: 20px 30px;
	border: 1px solid rgba(229, 229, 229, 0.25);
	outline: none;
}

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

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

.submit_accept_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0 20px;
}

.form_submit{
	position: relative;
	margin-top: 10px;
}

.wpcf7-submit {
	width: auto;
}

.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;
	line-height: 1.5;
}

.wpcf7-submit:not([disabled]) {
	cursor: pointer;
}

.form_back_container {
	margin-top: 10px;
}

/* input checked */
.wpcf7-acceptance input {
	display: none;
}

.wpcf7-acceptance label {
	position: relative;
	padding-left: 30px;
	margin: 0;
}

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

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

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

.wpcf7-acceptance label:after {
	opacity: 0;
	top: 7px;
	left: 4px;
	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: 13px 9px;
	width: 13px;
	height: 9px;
}

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

.form_item select {
	display: none;
}

.mM_custom_select {
	position: relative;
}

.mM_custom_select select {
	display: none;
}

.mM_custom_select .mM_select_selected {
	cursor: pointer;
	border-radius: 5px;
	width: 100%;
	background-color: rgba(229, 229, 229, 0.05);
	padding: 20px 30px;
	border: 1px solid rgba(229, 229, 229, 0.25);
	outline: none;
}

.mM_custom_select .mM_select_selected.mM_select_arrow_active {
	border-bottom: 1px solid transparent;
}

.mM_custom_select .mM_select_items {
	height: 0;
	overflow: hidden;
	overflow-y: scroll;
	position: absolute;
	left: 0;
	top: 68px;
	z-index: 99;
	background: #080808;
	width: 100%;
	padding: 0 20px;
	border: 1px solid transparent;
}

.mM_custom_select:has(.mM_select_arrow_active) .mM_select_items {
	border: 1px solid rgba(229, 229, 229, 0.25);
	border-top: transparent;
}

.mM_custom_select .mM_select_item {
	cursor: pointer;
	padding: 3px 10px;
}

.mM_custom_select .mM_select_item:first-child {
	padding-top: 6px;
}

.mM_custom_select .mM_select_item:last-child {
	padding-bottom: 6px;
}

.mM_custom_select .mM_select_arrows:after {
	content: "\EA1A";
	font-family: "jupiterx";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-style: normal;
	font-variant: normal;
	font-weight: normal;
	speak: none;
	text-decoration: none;
	text-transform: none;
	line-height: 1;
	position: absolute;
	right: 0;
	top: 0;
	pointer-events: none;
	color: #fff;
	transition: transform .4s;
	transform: rotate(180deg);
}

.mM_select_selected {
	position: relative;
}

.mM_custom_select:hover .mM_select_arrows:after {
	transform: rotate(-0deg);
}

.mM_select_arrows {
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	height: 16px;
}

.mM_custom_select .mM_select_arrow_active .mM_select_arrows:after {
	transform: rotate(0);
}

@media screen and (max-width: 1199px) {
	.submit_accept_container {
		flex-direction: column;
		align-items: start;
	}
}

@media screen and (max-width: 767px) {
	.form_container{
	    flex-direction: column;
		gap: 20px 0;
	}
	
	.wpcf7-form-control,
	.mM_custom_select .mM_select_selected {
		padding: 10px 35px 10px 15px;
	}
	
	.mM_custom_select .mM_select_items {
		padding: 0 10px;
		top: 48px;
	}
	
	.mM_custom_select .mM_select_item {
		padding: 2px 5px;
	}
}

/* end form */

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

/* @font-face 'HandelGotD' entfernt – Font wird nicht mehr geladen. */

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

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

:root {
	scroll-behavior: unset;
}

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

body {
	margin: 0;
}

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

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

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

h2,
.h2 {
	font-size: 2.5rem;
	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: auto;
	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: 20px;
}

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

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

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

/* Modul-Abstand (120px laut Figma) zu kleineren Viewports herunterskalieren */
@media screen and (max-width: 991px) {
	[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
		padding-top:80px;
		padding-bottom:80px;
	}
	[data-innerer-abstand="innerer_abstand_nur_oben"]{
		padding-top:80px;
	}
	[data-innerer-abstand="innerer_abstand_nur_unten"]{
		padding-bottom:80px;
	}
}

@media screen and (max-width: 600px) {
	[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
		padding-top:56px;
		padding-bottom:56px;
	}
	[data-innerer-abstand="innerer_abstand_nur_oben"]{
		padding-top:56px;
	}
	[data-innerer-abstand="innerer_abstand_nur_unten"]{
		padding-bottom:56px;
	}
}

[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-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: 1;
}

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

body.single-stores {
	overflow-x: hidden;
}

body.single-stores .elementor-icon-list-item a span {
	font-family: "Poppins", Sans-serif;
}

body.single-stores h1,
body.single-stores h2 {
	text-transform: uppercase;
}

body.page-template-page-flexible_content .jupiterx-main > .jupiterx-main-content {
	padding: 0;
}

body.single-stores .jupiterx-main > .jupiterx-main-content {
	padding: 0;
}

body.page-id-17160 .jupiterx-main > .jupiterx-main-content > .container {
	padding: 0;
	margin: 0;
	max-width: 100%;
}

body.page-id-17160 .jupiterx-main > .jupiterx-main-content > .container > .row {
	margin-right: 0;
	margin-left: 0;
}

body.page-id-17160 .jupiterx-main > .jupiterx-main-content > .container > .row > .col-lg-12 {
	padding-right: 0;
	padding-left: 0;
}

body.single-stores .jupiterx-main > .jupiterx-main-content > .container {
	padding: 0;
	margin: 0;
	max-width: 100%;
}

body.single-stores .jupiterx-main > .jupiterx-main-content > .container > .row {
	margin-right: 0;
	margin-left: 0;
}

body.single-stores .jupiterx-main > .jupiterx-main-content > .container > .row > .col-lg-12 {
	padding-right: 0;
	padding-left: 0;
}

body.page-template-page-flexible_content .jupiterx-main > .jupiterx-main-content > .container-fluid {
	width: 100%;
	padding-right: 0;
	padding-left: 0;
}

body.page-template-page-flexible_content .jupiterx-main > .jupiterx-main-content > .container-fluid > .row {
	margin-right: 0;
	margin-left: 0;
}

body.page-template-page-flexible_content .jupiterx-main > .jupiterx-main-content > .container-fluid > .row > .col-lg-12 {
	padding-right: 0;
	padding-left: 0;
}

.orange {
	color: #ef7d00 !important;
}

.not_uppercase {
	text-transform: none !important;
}

.uppercase {
	text-transform: uppercase !important;
}

body.page-template-page-flexible_content p,
body.page-template-page-flexible_content span {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-style: normal;
}

body.page-template-page-flexible_content h1,
body.page-template-page-flexible_content .h1,
body.page-template-page-flexible_content h1 *,
body.page-template-page-flexible_content .h1 *,
body.page-template-page-flexible_content h2,
body.page-template-page-flexible_content .h2,
body.page-template-page-flexible_content h2 *,
body.page-template-page-flexible_content .h2 *,
body.page-template-page-flexible_content h3,
body.page-template-page-flexible_content .h3,
body.page-template-page-flexible_content h3 *,
body.page-template-page-flexible_content .h3 *,
.font_handelgotd {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

body.page-template-page-flexible_content h1,
body.page-template-page-flexible_content .h1 {
	font-size: 4.0625rem;
	line-height: 1.2;
}

body.page-template-page-flexible_content h2,
body.page-template-page-flexible_content .h2 {
	font-size: 2.8125rem;
}

body.page-template-page-flexible_content h3,
body.page-template-page-flexible_content .h3 {
	font-size: 1.875rem;
}

body.page-template-page-flexible_content header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
}

body.page-template-page-flexible_content .jupiterx-primary section:first-child {
	margin-top: 145px !important;
}

section.light_gray_background {
	background: #f7f7f7;
}

@media all and (min-width: 576px) {
	.mM_container,
	.mM_container.mM_container_small {
		max-width: 540px;
	}
	
	.mM_col_25,
	.mM_col_33 {
		width: calc(50% - (20px / 2));
	}
}

@media all and (min-width: 768px) {
	.mM_container,
	.mM_container.mM_container_small {
		max-width: 720px;
	}
}

@media all and (min-width: 992px) {
	.mM_container,
	.mM_container.mM_container_small {
		max-width: 960px;
	}
	
	.mM_col_50 {
		width: calc(50% - (20px / 2));
	}
	
	.mM_col_33 {
		width: calc(33.3333% - ((20px * 2) / 3));
	}
}

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

@media all and (min-width: 1400px) {
	.mM_container {
		max-width: 1320px;
	}
	
	.mM_container.mM_container_small {
		max-width: 1218px;
	}
}

@media all and (min-width: 1600px) {
	.mM_container {
		max-width: 1520px;
	}
	
	.mM_container[data-container="container"] {
		max-width: 1560px;
	}
	
	.mM_container.mM_container_small {
		max-width: 1418px;
	}
}

@media all and (min-width: 1800px) {
	.mM_container {
		max-width: 1720px;
	}
	
	.mM_container.mM_container_small {
		max-width: 1618px;
	}
}

@media all and (min-width: 1921px) {
	.mM_container {
		max-width: 1841px;
	}
	
	.mM_container.mM_container_small {
		max-width: 1739px;
	}
}

@media all and (min-width: 2200px) {
	.mM_container {
		max-width: 2120px;
	}
	
	.mM_container.mM_container_small {
		max-width: 2018px;
	}
}

@media screen and (max-width: 1020px) {
	body.page-template-page-flexible_content .jupiterx-primary section:first-child {
		margin-top: 67px !important;
	}
}

@media all and (max-width: 991px) {
	section.m2_text_und_bild.auskragung_unten + section {
		padding-top: 75px;  /* standard padding */
	}
}

@media all and (max-width: 767px) {
	body.page-template-page-flexible_content h1,
	body.page-template-page-flexible_content .h1,
	body.single-stores h1,
	body.single-stores .h1 {
		font-size: 3.5rem;
	}
	
	body.page-template-page-flexible_content h2,
	body.page-template-page-flexible_content .h2,
	body.single-stores h2,
	body.single-stores .h2 {
		font-size: 2.1125rem;
	}
	
	body.page-template-page-flexible_content h3,
	body.page-template-page-flexible_content .h3,
	body.single-stores h3,
	body.single-stores .h3 {
		font-size: 1.175rem;
	}
}

@media all and (max-width: 575px) {
	.mM_container {
		padding: 0 20px;
	}
	
	body.page-template-page-flexible_content h1,
	body.page-template-page-flexible_content .h1,
	body.single-stores h1,
	body.single-stores .h1 {
		font-size: 3rem;
	}
}

@media all and (max-width: 475px) {
	.mM_container {
		padding: 0 20px;
	}
	
	body.page-template-page-flexible_content h1,
	body.page-template-page-flexible_content .h1,
	body.single-stores h1,
	body.single-stores .h1 {
		font-size: 2.5rem;
	}
	
	* {
		text-align: start;
	}
}

@media all and (max-width: 400px) {
	body.page-template-page-flexible_content h1,
	body.page-template-page-flexible_content .h1,
	body.single-stores h1,
	body.single-stores .h1 {
		font-size: 2rem;
	}
	
	body.page-template-page-flexible_content h2,
	body.page-template-page-flexible_content .h2,
	body.single-stores h2,
	body.single-stores .h2 {
		font-size: 1.8125rem;
	}
	
	h1, h2, h3, h4, h5, h6 {
		hyphens: auto;
	}
}

@media all and (max-width: 350px) {
	.button {
		text-align: center;
	}
}

header section.elementor-section {
	opacity: 1 !important;
}