:root {
  --primary-color: #866DAB;
  --secondary-color: #eaaa88;
  --tertiary-color: #FFE0A3;
  --grey-dark: #212122;
}

/* figtree-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 300;
  src: url('../webfonts/figtree-v9-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* figtree-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 300;
  src: url('../webfonts/figtree-v9-latin-300italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* figtree-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 400;
  src: url('../webfonts/figtree-v9-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* figtree-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 400;
  src: url('../webfonts/figtree-v9-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* figtree-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 500;
  src: url('../webfonts/figtree-v9-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* figtree-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 500;
  src: url('../webfonts/figtree-v9-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* figtree-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: normal;
  font-weight: 700;
  src: url('../webfonts/figtree-v9-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* figtree-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Figtree';
  font-style: italic;
  font-weight: 700;
  src: url('../webfonts/figtree-v9-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Default */

* {
	scroll-behavior: smooth;
}

*:focus {
	outline: none;
}

body {
  font-family: 'Figtree', sans-serif;
  width: 100%;
  overflow-x: hidden;
}

.wp-block-group.has-background {
	padding: 100px 0;
}

.has-blau-background-color {
	background-color: #E7F2F7;
}

.has-rosa-background-color {
	background-color: #FCEEF2;
}

.has-gelb-background-color {
	background-color: #FFF6E3;
}

.has-orange-background-color {
	background-color: #FDEBE1;
}

.has-lila-background-color {
	background-color: #DBD3E6;
}

/* Header */

header {
	padding: 15px 0;
	position: relative;
	z-index: 999;
	box-shadow: 0px 5px 15px 5px rgba(0, 0, 0, 0.1);
}

header .row {
	position: relative;
}

header .logo img {
	width: 175px;
}

header nav ul {
	margin: 0;
	padding: 0;
	text-align: right;
}

header nav ul li {
	display: inline-block;
	list-style: none;
	margin-left: 15px;
}

header nav ul li a {
	color: #000000;
	display: block;
	transition: all 0.3s;
	text-decoration: none;
}

header nav ul li a:hover,
header nav ul li.current_page_item a {
	text-decoration: none;
	color: var(--primary-color);
}

header nav ul li.current_page_item a {
	font-weight: 500;
}

header nav ul li.button a {
	padding: 10px 15px;
	border-radius: 50px;
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	color: #ffffff;
	font-weight: 500;
}

header nav ul li.button a:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.mobile_nav_open {
	font-size: 30px;
	position: absolute;
	right: 15px;
	color: var(--primary-color);
	cursor: pointer;
	display: none;
}

.mobile_nav_headline {
	padding: 10px;
	background-color: var(--primary-color);
	color: #ffffff;
	justify-content: space-between;
	align-items: center;
	display: none;
	cursor: pointer;
	font-size: 22px;
}

/* Hero */

section.hero {
	position: relative;
}

section.hero img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}

section.hero .hero_overlay {
	background: linear-gradient(150deg,rgba(255, 253, 250, 0.5) 25%, rgba(255, 224, 163, 0.5) 50%, rgba(175, 213, 230, 0.5) 75%, rgba(244, 197, 213, 0.5) 100%);
	position: relative;
	height: 100%;
	padding: 150px 0;	
	font-size: 20px;
}

section.hero .hero_overlay::before {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	background: linear-gradient(90deg,rgba(255, 224, 163, 0.9) 0%, rgba(255, 224, 163, 0) 75%);
}

section.hero .hero_overlay h1 {
	font-size: 60px;
}

section.hero .hero_overlay h1 strong {
	display: block;
	font-size: 80px;
	font-weight: 500;
}

section.hero .hero_overlay a.button {
	margin-right: 15px;
	margin-bottom: 15px;
}

section.hero .hero_overlay .counter {
	margin-top: 30px;
	display: flex;
	gap: 30px;	
}

section.hero .hero_overlay .counter .values_single .values_value > span {
	display: block;
	font-weight: 700;
	font-size: 25px;
}

section.hero .hero_overlay .counter .values_single .values_value > strong {
	display: block;
	font-weight: 400;
	opacity: 0.8;
}

section.hero .hero_overlay .bike_info {
	display: inline-flex;
	flex-direction: column;
	padding: 30px;
	border-radius: 30px;
	background: #fff;
	text-align: center;
	color: var(--primary-color);
	position: absolute;
	top: -100px;
	right: 15px;
}

section.hero .hero_overlay .bike_info i {
	color: var(--tertiary-color);
}

/* Banner */

section.banner {
	position: relative;
}

section.banner img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}

section.banner .banner_overlay {
	background: linear-gradient(150deg,rgba(255, 253, 250, 0.5) 25%, rgba(255, 224, 163, 0.5) 50%, rgba(175, 213, 230, 0.5) 75%, rgba(244, 197, 213, 0.5) 100%);
	position: relative;
	height: 100%;
	padding: 150px 0;	
	font-size: 20px;
}

section.banner .banner_overlay::before {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	background: linear-gradient(90deg,rgba(255, 224, 163, 0.9) 0%, rgba(255, 224, 163, 0) 75%);
}

section.banner .banner_overlay h1 {
	font-size: 60px;
	line-height: 1.1;
}

.page_404 section.banner .banner_overlay h1 {
	font-size: 60px;
}

/* Rights */

section.rights p a {
	color: currentColor;
	text-decoration: underline;
	transition: all 0.3s;
}

section.rights p a:hover {
	opacity: 0.6;
}

/* Text */

section.text {
	font-size: 18px;
	text-align: center;
}

section.text h2 {
	font-size: 60px;
}

section.text h3 {
	font-size: 40px;
}

section.text h3 strong {
	font-weight: 500;
	display: block;
}

section.text p {
	width: 850px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

section.text p a {
	color: currentColor;
	text-decoration: underline;
	transition: all 0.3s;
}

section.text p a:hover {
	opacity: 0.6;
}

/* Info */

section.info {
	position: absolute;
	top: -110px;
	left: 0;
	width: 100%;
}

section.info .circle {
	border-radius: 100%;
	height: 220px;
	width: 220px;
	background-color: #f4c5d5;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	transform: rotate(20deg);
	text-transform: uppercase;
	font-size: 30px;
	color: var(--primary-color);	
	line-height: 1;
}

section.info .circle strong {
	font-size: 50px;
}

/* Decoration */

.wp-block-group:has(.decoration) {
	position: relative;
}

.decoration {
	position: absolute;
	height: 500px;
}

.decoration img {
	height: 100%;
	max-width: 400px;
	object-fit: contain;
	object-position: left center;
}

.decoration.top_left {
	top: -250px;
	left: -100px;
}

.decoration.top_right {
	top: -250px;
	right: -100px;
}

.decoration.center_left {
	top: calc(50% - 250px);
	left: -100px;
}

.decoration.center_right {
	top: calc(50% - 250px);
	right: -100px;
}

.decoration.bottom_left {
	bottom: -250px;
	left: -100px;
}

.decoration.bottom_right {
	bottom: -250px;
	right: -100px;
}

/* Quote */

section.quote {
	font-size: 40px;
	font-weight: 300;
	font-style: italic;
	text-align: center;
	line-height: 1.2;
}

/* Button */

a.button {
	padding: 10px 15px;
	border-radius: 50px;
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	color: #ffffff;
	font-weight: 500;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
	font-size: 18px;
}

a.button:hover,
a.button.button_secondary {
	background-color: rgba(255,255,255,0.5);
	color: var(--primary-color);
}

a.button.button_secondary:hover {
	background-color: var(--primary-color);	
	color: #ffffff;
}

/* Accordion */

section.accordion .accordion_single {
	margin-bottom: 30px;
	background-color: #ffffff;
	border-radius: 15px;
	box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.05);
	transition: all 0.3s;
}

section.accordion .accordion_single .accordion_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding: 15px 30px;
	cursor: pointer;
}

section.accordion .accordion_single .accordion_title h3 {
	margin: 0;
}

section.accordion .accordion_single .accordion_title i {
	font-size: 25px;
	transition: all 0.3s;
}

section.accordion .accordion_single.open .accordion_title i {
	transform: rotate(180deg);
}

section.accordion .accordion_single .accordion_content {
	display: none;
	padding: 30px;
	font-size: 20px;
}

section.accordion .accordion_single.open:has(.assortment) {
	background-color: #FFF6E3;
}

.assortment {
	text-align: center;
}

.assortment .assortment_single {
	width: 1000px;
	margin: 0 auto 50px auto;
	max-width: 100%;
}

.assortment .assortment_single .introduction {
	margin-bottom: 30px;
}

.assortment .assortment_single .introduction p {
	width: 850px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.assortment .products {
	column-count: 3;
	gap: 30px;
}

.assortment .product_single {
	margin-bottom: 30px;
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;	
}

.assortment .product_single .product_inner {
	padding-bottom: 30px;
	border-bottom: 2px solid var(--primary-color);
}

.assortment .product_single .product_inner img {
	width: 75px;
	margin-bottom: 5px;
}

.assortment .product_single strong {
	display: block;
	font-weight: 500;
}

.assortment .product_single span {
	display: block;
	font-weight: 300;
}

/* Events */

.events .packets {
	margin-bottom: 50px;
}

.events .packets_handles {
	margin-bottom: 50px;
	margin-top: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	justify-content: center;
}

.events .packet_handle_single {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #F4C5D5;
	color: #ffffff;
	height: 200px;
	flex-direction: column;
	padding: 30px;
	width: 200px;
	border-radius: 100%;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
	border: 3px solid #F4C5D5;
}

.events .packet_handle_single:hover,
.events .packet_handle_single.active {
	background-color: var(--primary-color);
	border-color: var(--tertiary-color);
}

.events .packet_handle_single span {
	display: block;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.1;
	margin-bottom: 10px;
	transition: all 0.3s;
}

.events .packet_handle_single:hover span,
.events .packet_handle_single.active span {
	color: var(--tertiary-color);
}

.events .packet_handle_single strong {
	display: block;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.1;
}

.packet_content_single {
	display: none;
}

.packet_content_single.active {
	display: block;
}

.zones {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.zones:has(.zone_single) {
	margin-top: 75px;
}

.zone_single {
	position: relative;
}

.zone_circle {
	position: relative;
	width: 170px;
	height: 170px;
	border-radius: 50%;
	background: #8f76b5;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #fff;
	text-align: center;
}

.zone_circle strong {
	color: #ffe19a;
	font-size: 28px;
	font-weight: 500;
}

.zone_circle span {
	font-size: 24px;
}

.zone_price {
	position: absolute;
	top: -45px;
	right: -18px;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: #ffdda0;
	color: #111;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	font-size: 22px;
}

.zone_arrow {
	color: #8f76b5;
	font-size: 44px;
	line-height: 1;
}

/* Form */

form.wpcf7-form {
	width: 1200px;
	max-width: 100%;
	margin: auto;
}

form.wpcf7-form p {
	margin: 0;
}

form.wpcf7-form a {
	color: currentColor;
	transition: all 0.3s;
	text-decoration: underline;
}

form.wpcf7-form a:hover {
	opacity: 0.6;
}

form.wpcf7-form .formfield {
	margin-bottom: 15px;
}

form.wpcf7-form .formfield label {
	margin-bottom: 5px;
	padding-left: 30px;
}

form.wpcf7-form .formfield label span.required {
	color: #a70000;
}

form.wpcf7-form .wpcf7-not-valid-tip {
	margin-top: 5px;
	padding-left: 30px;
	color: #a70000;
}

form.wpcf7-form .formfield input,
form.wpcf7-form .formfield select,
form.wpcf7-form .formfield textarea {
	width: 100%;
	background-color: #ffffff;
	padding: 15px 30px;
	border-radius: 50px;
	border: none;
	box-shadow: 0px 0px 15px 5px rgba(0,0,0,0.05);
	color: #000000;
}

form.wpcf7-form .formfield textarea {
	border-radius: 15px;
}

form.wpcf7-form .formfield select {
	appearance: none;
	cursor: pointer;
	background-image: url('/wp-content/themes/eisfreunde/assets/img/chevron-down-solid.svg');
	background-size: 15px;
	background-repeat: no-repeat;
	background-position: calc(100% - 15px) center;
}

form.wpcf7-form .wpcf7-list-item {
	margin-left: 0;
}

form.wpcf7-form .wpcf7-list-item label {
	padding-left: 0;
}

form.wpcf7-form .formfield input[type="checkbox"] {
	width: auto;
}

form.wpcf7-form .formfield input[type="submit"] {
	width: auto;
	padding: 10px 15px;
	border-radius: 50px;
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	color: #ffffff;
	font-weight: 500;
	transition: all 0.3s;
	text-decoration: none;
	display: inline-block;
	font-size: 18px;	
}

form.wpcf7-form .formfield input[type="submit"]:hover {
	background-color: rgba(255,255,255,0.5);
	color: var(--primary-color);
}

/* Teaser */

section.teaser .row {
	column-gap: 150px;
}

section.teaser .teaser_single {
	margin-bottom: 30px;
	text-align: center;
	width: calc(33.33% - 100px);
	flex: 0 0 calc(33.33% - 100px);
	max-width: calc(33.33% - 100px);	
}

section.teaser .teaser_single .teaser_icon {
	width: 120px;
	height: 120px;
	border-radius: 100%;
	padding: 30px;
	margin: 0 auto 15px auto;
	display: block;	
}

section.teaser .teaser_single .teaser_icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

section.teaser .teaser_single strong {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

section.teaser .teaser_single a:has(strong) {
	color: #000000;
	text-decoration: none;
}

section.teaser .teaser_single a:has(strong) i {
	transition: all 0.3s;
}

section.teaser .teaser_single a:has(strong):hover i {
	margin-left: 15px;
}

/* Locations */

section.locations .location_single {
	text-align: center;
	margin-bottom: 30px;
}

/* section.locations .location_single:nth-child(even) {
	padding-right: 150px;
}

section.locations .location_single:nth-child(odd) {
	padding-left: 150px;
} */

section.locations .location_single .location_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

section.locations .location_single .location_image {
	position: relative;
}

section.locations:not(.catering) .location_single .location_image::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f3c5";
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--tertiary-color);
	border-radius: 100%;
	position: absolute;
	top: 30px;
	font-size: 30px;
	color: #fff;
}

section.locations .location_single .location_image img {
	width: 360px;
	max-width: 100%;
	aspect-ratio: 1/1;
	border-radius: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	margin: auto;
}

section.locations .location_single .location_text {
	background-color: #ffffff;
	border-radius: 30px;
	padding: 15px 30px 30px 30px;
	display: inline-block;
	margin-top: -30px;
	position: relative;
	width: 450px;
	max-width: 100%;
}

section.locations .location_single .location_text::after {
	width: calc(100% - 60px);
	bottom: 15px;
	left: 30px;
	content: '';
	background-color: var(--secondary-color);
	height: 2px;
	position: absolute;
}

section.locations .location_single .location_text p {
	margin-bottom: 0;
}

section.locations .location_single .location_button {
	margin-top: -20px;
	position: relative;
}

section.locations .location_single .location_button a.button {
	position: relative;
	z-index: 8;
}

section.locations .location_single .location_button a.button:hover {
	background-color: var(--primary-color);
	color: #ffffff;
	transform: scale(1.1);
}

section.locations .location_single .location_button::before {
	width: 30px;
	height: 5px;
	top: 0;
	left: -5px;
	content: '';
	position: absolute;
	background-color: #ffffff;
	z-index: 7;
}

section.locations .location_single .location_button::after {
	width: 30px;
	height: 5px;
	top: 0;
	right: -5px;
	content: '';
	position: absolute;
	background-color: #ffffff;
	z-index: 7;
}

/* CTA */

section.cta .cta_inner {
	border-radius: 30px;
	background-size: cover;
	background-position: center;
}

section.cta .cta_inner .cta_overlay {
	padding: 50px;
	background-color: rgba(255,255,255,0.3);
	border-radius: 30px;
}

section.cta .cta_inner .cta_overlay .cta_text {
	padding: 50px;
	border-radius: 30px;
	width: 50%;
	background-color: rgba(255,255,255,0.8);
}

/* Footer */

footer .footer_top {
	padding: 75px 0;
	background-color: var(--grey-dark);
	color: #ffffff;
}

footer .footer_top strong.headline {
	color: var(--secondary-color);
	font-weight: 500;
	display: block;
}

footer .footer_top strong.headline:has(+nav) {
	margin-bottom: 30px;
}

footer .footer_top nav ul {
	margin: 0;
	padding: 0;
}

footer .footer_top nav ul li {
	list-style: none;
	margin-bottom: 15px;
}

footer .footer_top nav ul li a {
	color: #ffffff;
	text-decoration: none;
	transition: all 0.3s;
}

footer .footer_top nav ul li a:hover {
	color: var(--secondary-color);
}

footer .footer_top a.button {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}

footer .footer_top a.button:hover {
	border-color: var(--secondary-color);
	color: var(--secondary-color);
	background-color: transparent;
}

footer .footer_top .footer_left {
	display: flex;
	gap: 100px;
	padding-right: 50px; 
}

footer .footer_top .footer_left .footer_column {
	width: 50%;
}

footer .footer_top .footer_left .footer_column img {
	width: 250px;
	max-width: 100%;
	margin-bottom: 30px;
}

footer .footer_top .footer_left .footer_column:has(img) {
	text-align: center;
}

footer .footer_top .footer_left .footer_column:has(img) p {
	opacity: 0.6;
	margin-bottom: 30px;
}

footer .footer_top .footer_left .footer_column .location {
	margin-bottom: 50px;
}

footer .footer_top .footer_left .footer_column .location:last-child {
	margin-bottom: 0;
}

footer .footer_top .footer_left .footer_column .location strong {
	font-weight: 500;
}

footer .footer_top .footer_left .footer_column .location a {
	color: #ffffff;
	transition: all 0.3s;
}

footer .footer_top .footer_left .footer_column .location a:hover {
	opacity: 0.8;
	text-decoration: none;
}

footer .footer_top .footer_right {
	display: flex;
	flex-wrap: wrap;
	column-gap: 100px;
	padding-left: 50px;
}

footer .footer_top .footer_right ul.social {
	width: 100%;
	margin: 30px 0 0 0;
	padding: 0;
	text-align: right;
}

footer .footer_top .footer_right ul.social li {
	display: inline-block;
	list-style: none;
	margin-left: 10px;
}

footer .footer_top .footer_right ul.social li a {
	background-color: var(--secondary-color);
	font-size: 30px;
	line-height: 1;
	border-radius: 100%;
	color: #ffffff;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	text-decoration: none;
	border: 2px solid var(--secondary-color);
}

footer .footer_top .footer_right ul.social li a:hover {
	background-color: transparent;
	color: var(--secondary-color);
}

footer .footer_bottom {
	background-color: var(--secondary-color);
	color: #ffffff;
	padding: 10px 0;
	font-size: 14px;
}

footer .footer_bottom .backlink {
	text-align: right;
}

footer .footer_bottom .backlink a {
	color: #ffffff;
	transition: all 0.3s;
}

footer .footer_bottom .backlink a:hover {
	opacity: 0.8;
	text-decoration: none;
}

/* Responsive */

@media only screen and (max-width: 1919px) {

	.decoration {
		display: none;
	}	

}

@media only screen and (max-width: 1199px) {

	section.info {
		display: none;
	}

	.mobile_nav_open {
		display: block;
	}

	.mobile_nav_headline {
		display: flex;
	}

	header .navigation {
		position: fixed;
		right: -100%;
		top: 0;
		height: 100vh;
		width: 500px;
		padding: 0;
		max-width: 80%;
		background-color: #ffffff;
		transition: all 0.3s;
		z-index: 999;
		box-shadow: -5px 0px 15px 5px rgba(0, 0, 0, 0.1);
	}

	header nav ul {
		text-align: left;
	}

	header nav ul li {
		display: block;
		margin-left: 0;
		border-bottom: 1px solid #DBD3E6;
	}

	header nav ul li a {
		display: block;
		padding: 10px;
	}

	header nav ul li.button {
		padding-left: 10px;
		border: none;
	}

	header nav ul li:has(+.button) {
		border: none;
	}

	header nav ul li.button a {
		display: inline-block;
		width: auto;
	}

	header .navigation.open {
		right: 0;
	}

	section.teaser .row {
		column-gap: 75px;
	}	

	section.locations .location_single:nth-child(even) {
		padding-right: 15px;
	}

	section.locations .location_single:nth-child(odd) {
		padding-left: 15px;
	}	

	.zones {
		gap: 15px;
		flex-wrap: wrap;
	}

	.zone_arrow i {
		display: none;
	}

	.zone_arrow i:first-child {
		display: block;
	}	

	footer .footer_top .footer_left {
		gap: 30px;
		padding-right: 0;
	}

	footer .footer_top .footer_right {
		column-gap: 30px;
		padding-left: 0;
	}

	.assortment .products {
		column-count: 2;
	}

}

@media only screen and (max-width: 991px) {

	section.hero .hero_overlay,
	section.banner .banner_overlay {
		padding: 125px 0;
	}

	section.hero .hero_overlay .counter {
		margin-bottom: 30px;
	}

	section.hero .hero_overlay .bike_info {
		position: initial;
	}

	section.teaser .teaser_single {
		margin-bottom: 30px;
		text-align: center;
		width: calc(50% - 37.5px);
		flex: 0 0 calc(50% - 37.5px);
		max-width: calc(50% - 37.5px);
	}	

	section.cta .cta_inner .cta_overlay .cta_text {
		width: 100%;
	}

	section.quote {
		font-size: 35px;
	}	

	footer .footer_top .footer_left {
		margin-bottom: 50px;
	}

	.zone_arrow {
		display: none;
	}

	.zone_single {
		margin-bottom: 45px;
	}

	section.hero .hero_overlay h1 {
		font-size: 50px;
	}

	section.hero .hero_overlay h1 strong {
		font-size: 70px;
	}

}

@media only screen and (max-width: 767px) {

	section.hero .hero_overlay h1 {
		font-size: 40px;
	}

	section.hero .hero_overlay h1 strong {
		font-size: 60px;
	}

	.wp-block-group.has-background {
		padding: 75px 0;
	}

	section.accordion .accordion_single .accordion_content {
		font-size: 18px;
	}

	section.hero .hero_overlay,
	section.banner .banner_overlay {
		padding: 100px 0;
		font-size: 18px;
	}

	section.hero .hero_overlay .counter {
		gap: 15px;
		flex-wrap: wrap;
	}

	section.text h2 {
		font-size: 50px;
	}

	section.teaser .row {
		column-gap: 30px;
	}	

	section.cta .cta_inner .cta_overlay {
		padding: 30px;
	}

	section.cta .cta_inner .cta_overlay .cta_text {
		padding: 30px 15px;
	}

	section.quote {
		font-size: 30px;
	}	

	footer .footer_top .footer_left {
		flex-direction: column;
	}

	footer .footer_bottom .backlink {
		text-align: left;
	}	

	footer .footer_top .footer_right ul.social {
		text-align: left;
	}	

	.assortment .products {
		column-count: 1;
	}	

}

@media only screen and (max-width: 565px) {

	.wp-block-group.has-background {
		padding: 50px 0;
	}	

	section.hero .hero_overlay,
	section.banner .banner_overlay {
		padding: 75px 0;
	}

	section.hero .hero_overlay::before,
	section.banner .banner_overlay::before {
		background: rgba(255, 224, 163, 0.4);
	}

	section.hero .hero_overlay h1 {
		font-size: 30px;
	}

	section.hero .hero_overlay h1 strong {
		font-size: 50px;
	}

	section.banner .banner_overlay h1 {
		font-size: 40px;
	}

	section.text h2 {
		font-size: 35px;
	}

	section.teaser .teaser_single {
		margin-bottom: 30px;
		text-align: center;
		width: 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}	

	section.cta .cta_inner .cta_overlay {
		padding: 15px;
	}		

	section.quote {
		font-size: 25px;
	}	

	footer .footer_top .footer_left .footer_column {
		width: 100%;
	}

	footer .footer_top .footer_left .footer_column:has(img) {
		text-align: left;
	}

	section.text h3 strong {
		display: inline;
	}

	section.accordion .accordion_single .accordion_title h3 {
		font-size: 25px;
	}

	h1,
	h2,
	h3 {
		hyphens: auto;
	}

}