@import 'fonts/din/stylesheet.css';

:root {
	--color--white: rgba(255,255,255);
	--color--grey: rgba(180, 180, 180);
	--color--grey-dark: rgba(60, 60, 60);
	--color--yellow: rgba(253, 195, 0);
	--color--purple: rgba(113, 51, 101);
	--color--purple-light: rgba(133, 79, 121);
	--color--green: rgba(193, 206, 0);
	--color--orange: rgba(238, 116, 2);
	--color--blue: rgba(140, 156, 166);
	--color--blue-dark: rgba(28, 77, 101);
	--color--sand: rgba(167, 165, 146);
	--color--petrol: rgba(148, 158, 150);
	--color--rose: rgba(165, 154, 160);
}

html {
  font-family: 'DIN', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.375;
}

body {
  color: #5d5e60;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

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

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
p:first-child {
  margin-top: 0;
}

.a-button {
  font-family: 'DIN', sans-serif;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 0.375em 0.5em;
  background-color: #746c9b;
  border: 0;
  outline: 0;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.a-button:hover {
  background-color: #918ab0;
}

.a-button--outline {
  color: #5d5e60;
  text-decoration: none;
  background-color: transparent;
  border: 2px solid #5d5e60;
}

.a-button--outline:hover {
  color: #fff;
  background-color: #5d5e60;
}

.a-button--large {
  font-size: 1rem;
}

.a-h1 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color--purple);
}

.a-h2 {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.a-instagram {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  transform: translateY(-0.5rem);
}

.a-media-img {
	display: block;
	width: 100%;
}

.a-pdf {
	display: inline-block;
	width: 1.25em;
	height: 1em;
	background-image: url('../img/icon-pdf.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
	transform: translateY(0.125em);
}

.l-header,
.l-body,
.l-footer {
  position: relative;
  z-index: 1;
}

.l-nav {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  display: none;
  width: 100%;
  height: 100%;
}

.l-nav.is-opened {
  display: block;
}

.o-events {
  padding: 4rem 20px 6rem;
}

.o-events__title {
  text-align: center;
  margin: 0;
}

.o-events__events {
  margin-top: 3rem;
}

.o-events__event {
  margin-top: 3rem;
}

.o-events__event:first-child {
  margin-top: 0;
}

.o-events__link {
	font-weight: 700;
	font-size: 2em;
	text-transform: uppercase;
	color: var(--color--purple);
	text-align: center;
	display: block;
	margin: 30px 0 0;
}

.o-grid {
  padding-bottom: 20px;
}

.o-grid--dark {
	background-color: var(--color--grey-dark);
}

.o-grid__body {
	box-sizing: border-box;
	width: 100%;
	max-width: 300px;
	padding: 3rem 10px;
	margin: 0 auto;
}

.o-grid__title {
	color: var(--color--grey);
	margin: 0 0 1em;
}

.o-grid__grid {
	width: 100%;
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr;
}

.o-grid__item {
	min-height: 10px;
	background: white;
}

.o-grid__item--double {
	grid-column-end: span 2;
}

.o-header {
  color: #fff;
  position: relative;
  padding: 2rem;
  background-color: var(--color--purple);
}

.o-header__logo {
  display: block;
  width: 50%;
  max-width: 200px;
}

.o-header__logo-img {
  display: block;
  width: 100%;
}

.o-header__nav {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.m-accordeon {
  width: 90%;
  max-width: 740px;
  margin: 0 auto;
  padding: 3rem 0;
}

.m-accordeon__section {
  position: relative;
  padding: 1rem 0;
  border-bottom: 1px solid #c6c7c9;
}

.m-accordeon__section:last-child {
  border-bottom-width: 0;
}

.m-accordeon__section-switch {
  position: absolute;
  right: 0;
  top: 0rem;
  cursor: pointer;
}

.m-accordeon__section-switch::before {
  content: '+';
  font-weight: 200;
  font-size: 4rem;
  color: #c6c7c9;
}

.m-accordeon__section.is-opened .m-accordeon__section-switch::before {
  content: '–';
}

.m-accordeon__section-title {
  font-size: 2rem;
  margin: 0;
}

.m-accordeon__section-body {
  display: none;
  padding-top: 2rem;
}

.m-accordeon__section.is-opened .m-accordeon__section-body {
  display: block;
}

.m-article {
  font-size: 1.125rem;
  padding: 3rem 20px 8rem;
}

.m-article--grey {
  background-color: var(--color--grey);
}

.m-article__body {
}

.m-article--gap {
  padding: 6rem 20px 8rem;
}

.m-banner {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  overflow: hidden;
}

.m-banner__img {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 100%;
  transform: translateX(-50%);
}

.m-collar {
	color: #fff;
  text-align: center;
  padding: 6rem 0;
  background-color: #efefef;
}

.m-collar--yellow {
	background-color: var(--color--yellow);
}

.m-collar--purple {
	background-color: var(--color--purple);
}

.m-collar--green {
	background-color: var(--color--green);
}

.m-collar--orange {
	background-color: var(--color--orange);
}

.m-collar--blue {
	background-color: var(--color--blue);
}

.m-collar--blue-dark {
	background-color: var(--color--blue-dark);
}

.m-collar--sand {
	background-color: var(--color--sand);
}

.m-collar--petrol {
	background-color: var(--color--petrol);
}

.m-collar--rose {
	background-color: var(--color--rose);
}

.m-collar__icon {
  display: inline-block;
  width: 8rem;
  height: 8rem;
}

.m-collar__title {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.m-company {
  text-align: center;
  padding: 3rem 0;
  background-color: #efefef;
}

.m-company__title {
  margin: 0;
}

.m-company__boxes {
  width: 100%;
  margin: 2.5rem auto 0;
}

.m-company__box {
  color: #5d5e60;
  position: relative;
  display: block;
  width: 220px;
  height: 180px;
  margin: 2rem auto;
}

.m-company__box-icon {
  position: absolute;
  left: 50%;
  top: 40%;
  display: block;
  width: 4rem;
  height: 4rem;
  transform: translate(-50%, -50%);
  transition: top 0.2s;
}

.m-company__box:hover .m-company__box-icon {
  top: 35%;
}

.m-company__box-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  bottom: 15%;
  width: 100%;
}

.m-download {
	padding-bottom: 2rem;
}

.m-download__info {
	margin: .5rem 0 0;
}

.m-download__link {
	display: block;
	font-weight: bold;
	color: var(--color--purple);
	text-decoration: none;
}

.m-event {
  margin-top: 2rem;
}

.m-event__img {
  display: block;
  width: 100%;
}

.m-event__infos {
  font-size: 0.875rem;
  box-sizing: border-box;
  margin: 0.5rem 0 0;
  padding: 1rem;
  background-color: #efefef;
}

.m-event__infos-date {
  margin: 0;
}

.m-event__infos-headline {
  font-weight: 700;
  font-size: 1.675rem;
  margin: 0;
}

.m-event__infos-subline {
  margin: 0;
}

.m-event__infos-description {
  margin: 1rem 0 0;
}

.m-event__infos-button {
  display: none;
}

.m-event__button {
  display: block;
  margin: 0.5rem 0 0;
}

.m-facts {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding: 3rem 0;
  background-color: #2e2e30;
}

.m-facts__fact {
  width: 100%;
  margin-top: 2.5rem;
}

.m-facts__fact:first-child {
  margin-top: 0;
}

.m-facts__fact-number {
  display: block;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1;
  margin: 0;
}

.m-facts__fact-title {
  font-size: 0.875rem;
  display: block;
  margin: 0;
}

.m-footer {
  color: #fff;
  padding: 3rem 20px;
  background-color: var(--color--purple);
}

.m-footer__title {
  text-align: center;
}

.m-footer__info {
  margin-top: 2rem;
}

.m-footer__company {
  font-size: 1.25em;
}

.m-footer__companies {
  font-size: 1rem;
  margin-top: 3rem;
}

.m-footer__companies-title {
  text-transform: uppercase;
}

.m-footer__companies-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.m-footer__companies-list-item {
  list-style: none;
  margin: 0.25em 0 0;
  padding: 0;
}

.m-footer__sitemap {
  margin-top: 3rem;
}

.m-footer__sitemap-cols {
	margin-top: 2rem;
	width: 100%;
}

.m-footer__sitemap-col {
  margin-top: 2rem;
}

.m-footer__sitemap-col:first-child {
  margin-top: 0;
}

.m-footer__sitemap-section {
  margin-top: 2rem;
}

.m-footer__sitemap-section:first-child {
  margin-top: 0;
}

.m-footer__sitemap-section-title {
  text-transform: uppercase;
  margin: 0;
}

.m-footer__sitemap-section-link {
  display: block;
  margin-top: 0.25em;
}

.m-footer__baseline {
  margin-top: 3rem;
}

.m-gallery {
  padding: 3rem 0;
}

.m-gallery__inner {
  width: 280px;
  margin: 0 auto;
}

.m-gallery__box {
  position: relative;
  width: 280px;
  height: 280px;
  background-color: #efefef;
}

.m-gallery__box--small {
  margin-top: 20px;
}

.m-gallery__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.m-quote {
  text-align: center;
  padding: 3rem 0;
  background-color: #efefef;
}

.m-quote::before {
  content: '„';
  display: inline-block;
  font-weight: 700;
  font-size: 10rem;
  line-height: 0;
  overflow: hidden;
  height: 5rem;
}

.m-quote::after {
  content: '“';
  display: inline-block;
  font-weight: 700;
  font-size: 10rem;
  line-height: 1;
  overflow: hidden;
  height: 5rem;
}

.m-quote__content {
  font-weight: 700;
  font-size: 1.25rem;
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 1rem 0;
}

.m-logos {
  width: 100%;
  padding: 3rem 0;
  background: #2e2e30;
}

.m-logos__img {
  display: block;
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 0;
}

.m-nav {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color--purple);
}

.m-nav__inner {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 320px;
  height: 100%;
  margin: 0 auto;
  padding: 4rem 0;
}

.m-nav__close {
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  width: 3rem;
  height: 3rem;
  margin: 0 auto;
  background-color: transparent;
  background-image: url('../img/nav-close.svg');
  background-size: 80% 80%;
  background-position: center center;
  background-repeat: no-repeat;
  border: 0;
  outline: 0;
  cursor: pointer;
}

.m-nav__links {
  text-align: center;
  padding: 4rem 0;
}

.m-nav__links-link {
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  margin: 0.5rem;
}

.m-nav__links-link:first-child {
  margin-top: 0;
}

.m-navbar__links {
  display: none;
}

.m-navbar__links-link {
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  margin-left: 1.5rem;
}

.m-navbar__links-link:first-child {
  margin-left: 0;
}

.m-navbar__hamburger {
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  background-image: url('../img/nav-open.svg');
  background-size: 80% 80%;
  background-position: center center;
  background-repeat: no-repeat;
  border: 0;
  outline: 0;
}

.m-shops {
  text-align: center;
  padding: 3rem 0;
}

.m-shops__cols {
  width: 320px;
  margin: 0 auto;
}

.m-shops__col {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0 1rem;
}

.m-shops__locations {
  list-style: none;
  margin: 0;
  padding: 0;
}

.m-shops__location {
  list-style: none;
  margin: 0;
  padding: 1rem 0;
}

.m-shops__location-title {
  font-weight: 700;
  font-size: 1.25em;
  text-transform: uppercase;
}

.m-shops__shops {
  list-style: none;
  margin: 0;
  padding: 0.25em 0 0;
}

.m-shops__shop {
  list-style: none;
  margin: 0;
  padding: 0.25em;
}

.m-slideshow {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 40%;
  background-color: #7f8082;
}

.m-slideshow--large {
  padding-top: 40%;
}

.m-slideshow__slides {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.m-slideshow__slide {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s;
}

.m-slideshow__slide.is-current {
  z-index: 2;
  opacity: 1;
}

.m-slideshow__slide-img {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: block;
  height: 100%;
  transform: translate(-50%, -50%);
}

.m-slideshow__slide-slogan {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  left: 50%;
  top: 45%;
  z-index: 2;
  display: block;
  width: 80%;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  text-shadow: 0 0 1rem #000;
}

.m-slideshow__controllers {
  position: absolute;
  left: 0;
  top: 40%;
  z-index: 2;
  width: 100%;
}

.m-slideshow__controller {
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  background-color: #000;
  border: 0;
  outline: 0;
  background-image: url('../img/slideshow-controller.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  cursor: pointer;
}

.m-slideshow__controller--prev {
  left: 0;
  transform: rotate(180deg);
}

.m-slideshow__controller--next {
  right: 0;
}

.m-slideshow__indicators {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 1.75rem 0;
  background-color: rgba(0, 0, 0, 0.9);
}

.m-slideshow__indicator {
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  margin: 0 0.25rem;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
}

.m-slideshow__indicator.is-current {
  background-color: #f8c037;
}

.m-social-media {
  color: var(--color-white);
  padding: 3rem 20px 6rem;
  background-color: var(--color--petrol);
}

.m-social-media__body {
    width: 740px;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
}

.m-social-media__item {
	color: var(--color--white);
	text-decoration: none;
	display: block;
	text-align: center;
	width: 300px;
}

.m-social-media__icon {
	display: block;
	margin-bottom: 2rem;
}

.m-team {
  text-align: center;
  padding: 2rem 0;
}

.m-team__members {
  width: 100%;
  margin: 2.5rem auto 0;
}

.m-team__member {
  position: relative;
  display: block;
  box-sizing: border-box;
  width: 220px;
  height: 180px;
  padding: 1em;
  margin: 2rem auto;
  background-color: #efefef;
}

.m-teaser-img {
  margin: 3rem 0;
  background-color: #efefef;
}

.m-teaser-img__col {
  position: relative;
  width: 100%;
}

.m-teaser-img__col--img {
  overflow: hidden;
  height: 0;
  padding-top: 60%;
  background-color: #7f8082;
}

.m-teaser-img__col--info {
  text-align: center;
}

.m-teaser-img__img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}

.m-teaser-img__info {
  box-sizing: border-box;
  width: 100%;
  padding: 2rem 1rem;
}

.m-teaser-img__text {
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.m-teaser-img__button {
  margin-top: 1rem;
}

.m-teaser-logo {
  text-align: center;
  padding: 3rem 0;
  background-color: #efefef;
}

.m-teaser-logo__logo {
  display: block;
  width: 240px;
  height: 200px;
  margin: 0 auto;
}

.m-teaser-logo__button {
  display: inline-block;
  margin: 0 auto;
}

.m-teaser-logo__logo + .m-teaser-logo__button {
  margin-top: 2rem;
}

.m-units {
  color: #fff;
  text-align: center;
  padding: 3rem 0;
  background-color: #2e2e30;
}

.m-units__title {
  margin: 0;
}

.m-units__boxes {
  width: 300px;
  margin: 2.5rem auto 0;
}

.m-units__boxes::after {
  content: ' ';
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  clear: both;
}

.m-units__box {
  color: #fff;
  position: relative;
  float: left;
  display: block;
  width: 135px;
  height: 135px;
  margin: 10px 0 0 10px;
  transition: transform 0.2s;
}

.m-units__box.is-hovered {
  transform: scale(1.03, 1.03);
}

.m-units__box--yellow {
  background-color: var(--color--yellow);
}

.m-units__box--purple {
  background-color: var(--color--purple);
}

.m-units__box--green {
  background-color: var(--color--green);
}

.m-units__box--orange {
  background-color: var(--color--orange);
}

.m-units__box--blue {
  background-color: var(--color--blue);
}

.m-units__box--sand {
  background-color: var(--color--sand);
}

.m-units__box--petrol {
  background-color: var(--color--petrol);
}

.m-units__box--rose {
  background-color: var(--color--rose);
}

.m-units__box-icon {
  position: absolute;
  left: 50%;
  top: 40%;
  display: block;
  width: 5rem;
  height: 5rem;
  transform: translate(-50%, -50%);
}

.m-units__box-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  bottom: 50%;
  width: 100%;
  transform: translateY(50%);
}


.m-video {
  text-align: center;
}


.m-video__center {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


.m-video__video {
  position: relative;
  z-index: 1;
  width: 100%;
}


.m-video__confirm {
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: boder-box;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: rgba(0,0,0,.9);
}


.m-video__confirm-inner {
}

.s-article-body--center {
	text-align: center;
}

.s-article-body * {
  margin: 1.5em 0 0 0;
}

.s-article-body *:first-child {
  margin-top: 0;
}

.s-article-body a {
  text-decoration: none;
  color: #746c9b;
}

.s-article-body h1 {
  font-weight: 700;
  font-size: 3rem;
  text-transform: uppercase;
  color: var(--color--purple);
}

.s-article-body--center h1 {
	text-align: center;
}

.s-article-body img {
  display: block;
  width: 100%;
}

.s-article-body a.button {
	font-weight: 700;
	font-size: 1.25em;
	text-transform: uppercase;
}

.s-footer a {
  text-decoration: none;
}

.t-color-apple .m-quote::before,
.t-color-apple .m-quote::after,
.t-color-apple .m-shops__location-title,
.t-color-apple .s-article-body h1,
.t-color-apple .s-article-body a {
  color: #8cb650;
}

.t-color-azure .m-quote::before,
.t-color-azure .m-quote::after,
.t-color-azure .m-shops__location-title,
.t-color-azure .s-article-body h1,
.t-color-azure .s-article-body a {
  color: #82c9e5;
}

.t-color-banana .m-quote::before,
.t-color-banana .m-quote::after,
.t-color-banana .m-shops__location-title,
.t-color-banana .s-article-body h1,
.t-color-banana .s-article-body a {
  color: #f8c037;
}

.t-color-coral .m-quote::before,
.t-color-coral .m-quote::after,
.t-color-coral .m-shops__location-title,
.t-color-coral .s-article-body h1,
.t-color-coral .s-article-body a {
  color: #ca6c6d;
}

.t-color-lime .m-quote::before,
.t-color-lime .m-quote::after,
.t-color-lime .m-shops__location-title,
.t-color-lime .s-article-body h1,
.t-color-lime .s-article-body a {
  color: #cad15d;
}

.t-color-sky .m-quote::before,
.t-color-sky .m-quote::after,
.t-color-sky .m-shops__location-title,
.t-color-sky .s-article-body h1,
.t-color-sky .s-article-body a {
  color: #5792b2;
}

.t-color-stone .m-quote::before,
.t-color-stone .m-quote::after,
.t-color-stone .m-shops__location-title,
.t-color-stone .s-article-body h1,
.t-color-stone .s-article-body a {
  color: #3c5e79;
}

.t-color-tomato .m-quote::before,
.t-color-tomato .m-quote::after,
.t-color-tomato .m-shops__location-title,
.t-color-tomato .s-article-body h1,
.t-color-tomato .s-article-body a {
  color: #dc4244;
}

.g-not-on-phone {
  display: none;
}

.g-hidden {
  display: none;
}

@media (max-width: 620px) {
  .g-only-on-tablet,
  .g-only-on-desktop {
    display: none;
  }

}

@media (min-width: 620px) {
  .a-h2 {
    font-size: 2rem;
  }

  .l-center {
    width: 620px;
  }

  .o-events {
    padding-bottom: 8rem;
  }

  .o-events__events {
    width: 320px;
    margin: 3rem auto 0;
  }

  .o-events__event {
    margin-top: 4rem;
  }

  .o-events__event:first-child {
    margin-top: 0;
  }
  
  .o-grid__body {
  	max-width: 620px;
  }
  
  .o-grid__grid {
  	gap: 20px;
  }

  .m-article {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .m-article__body {
    width: 460px;
    margin: 0 auto;
  }

  .m-banner {
    padding-top: 52%;
  }

  .m-banner__img {
    width: 100%;
    height: auto;
  }

  .m-company__boxes {
    width: 540px;
    margin-top: 1rem;
  }

  .m-company__boxes::after {
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    clear: both;
  }

  .m-company__box {
    float: left;
    width: 240px;
    margin: 20px 0 0 20px;
  }

  .m-footer__info {
    width: 500px;
    margin: 2rem auto 0;
  }

  .m-footer__info::after {
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    clear: both;
  }

  .m-footer__company {
    float: left;
    width: 340px;
    margin: 0;
  }

  .m-footer__sitemap {
    width: 160px;
    margin-top: 0;
    float: left;
  }

  .m-footer__baseline::after {
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    clear: both;
  }

  .m-footer__baseline-left {
    float: left;
    width: 50%;
  }

  .m-footer__baseline-right {
    float: right;
    margin: 0;
    width: 450px;
  }

  .m-gallery {
    padding: 4rem 0;
  }

  .m-gallery__inner {
    width: 460px;
  }

  .m-gallery__inner::after {
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    clear: both;
  }

  .m-gallery__box {
    float: left;
  }

  .m-gallery__box--large {
    width: 460px;
    height: 460px;
  }

  .m-gallery__box--small {
    width: 210px;
    height: 210px;
    margin-top: 40px;
  }

  .m-gallery__box--small:last-child {
    margin-left: 40px;
  }

  .m-quote__content {
    font-size: 1.75rem;
    width: 85%;
  }

  .m-shops__cols {
    width: 620px;
  }

  .m-shops__cols::after {
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    clear: both;
  }

  .m-shops__col {
    float: left;
    width: 50%;
  }

  .m-slideshow {
/*     padding-top: 48%; */
  }

  .m-slideshow--large {
/*     padding-top: 66%; */
  }

  .m-slideshow__slide-img {
/*     width: 100%; */
/*     height: auto; */
  }

  .m-slideshow__controller {
    width: 3rem;
    height: 3rem;
  }

  .m-slideshow__slide-slogan {
    font-size: 2.5rem;
  }

  .m-teaser-img::after {
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    clear: both;
  }

  .m-teaser-img__col {
    float: left;
  }

  .m-teaser-img__col--img {
    width: 40%;
    padding-top: 25%;
  }

  .m-teaser-img__col--info {
    width: 60%;
    padding-top: 25%;
  }

  .m-teaser-img__info {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .m-units__boxes {
    width: 620px;
    margin: 0 auto;
  }

  .m-units__box {
    width: 280px;
    height: 280px;
    margin: 20px 0 0 20px;
  }

  .m-units__box-icon {
    width: 9rem;
    height: 9rem;
  }

  .m-units__box-title {
    font-size: 2rem;
  }

  .s-article-body img {
    width: 580px;
    margin-left: -60px;
  }

}

@media (min-width: 620px) and (max-width: 1220px) {
  .g-not-on-tablet {
    display: none;
  }

  .g-only-on-phone,
  .g-only-on-desktop {
    display: none;
  }

}

@media (min-width: 1220px) {
  .a-button {
    padding: 0.375em 2em;
  }

  .a-button--large {
    font-size: 1.5rem;
  }

  .l-center {
    width: 1220px;
  }

  .o-events__events {
    width: 880px;
  }
  
  .o-grid__body {
  	max-width: 1220px;
  }
  
  .o-grid__grid {
	grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .m-article {
    font-size: 1.5rem;
    line-height: 1.25;
  }

  .m-article__body {
    width: 740px;
  }

  .m-banner {
    padding-top: 40%;
  }

  .m-company__boxes {
    width: 780px;
  }

  .m-company__box-icon {
    width: 5rem;
    height: 5rem;
  }

  .m-event::after {
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    clear: both;
  }

  .m-event__img {
    float: left;
    width: 280px;
/*     height: 395px; */
  }

  .m-event__infos {
    font-size: 1.5rem;
    float: left;
    width: 580px;
/*     height: 395px; */
    margin: 0 0 0 20px;
    padding: 2rem;
  }

  .m-event__infos-headline {
    font-size: 3.5rem;
    line-height: 1;
  }

  .m-event__infos-button {
    display: inline-block;
    margin-top: 2.5rem;
  }

  .m-event__button {
    display: none;
  }

  .m-facts__facts {
    width: 900px;
    margin: 0 auto;
  }

  .m-facts__facts::after {
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    clear: both;
  }

  .m-facts__fact {
    float: left;
    width: 300px;
    margin: 0;
  }

  .m-facts__fact-number {
    font-size: 8rem;
  }

  .m-facts__fact-title {
    font-size: 1.5rem;
  }

  .m-footer {
    padding: 4rem 0;
  }

  .m-footer__info {
    width: 1130px;
    margin-top: 3rem;
  }

  .m-footer__company {
    font-size: 1.5rem;
    width: 680px;
  }

  .m-footer__company::after {
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    clear: both;
  }

  .m-footer__contact {
    float: left;
    width: 360px;
  }

  .m-footer__companies {
    font-size: 1.125rem;
    float: left;
    width: 250px;
    margin: 0;
  }

  .m-footer__sitemap {
    font-size: 1.5rem;
    width: 450px;
  }

  .m-footer__sitemap-cols {
    font-size: 1.125rem;
	}

  .m-footer__sitemap-cols::after {
    content: ' ';
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    clear: both;
  }

  .m-footer__sitemap-col {
    float: left;
    width: 150px;
    margin: 0;
  }

  .m-footer__baseline {
    width: 1130px;
    margin: 3rem auto 0;
  }

  .m-gallery {
    padding: 6rem 0;
  }

  .m-gallery__inner {
    width: 950px;
  }

  .m-gallery__box--large {
    width: 620px;
    height: 620px;
    margin-right: 40px;
  }

  .m-gallery__box--small {
    width: 290px;
    height: 290px;
    margin-left: 0;
    margin-top: 0;
  }

  .m-gallery__box--small:last-child {
    margin-left: 0;
    margin-top: 40px;
  }

  .m-navbar__links {
    display: block;
  }

  .m-navbar__hamburger {
    display: none;
  }

  .m-quote__content {
    font-size: 2.25rem;
    width: 60%;
  }

  .m-shops {
    font-size: 1.25rem;
  }

  .m-shops__cols {
    width: 920px;
  }

  .m-slideshow {
/*     padding-top: 32%; */
  }

  .m-slideshow--large {
/*     padding-top: 43%; */
  }

  .m-slideshow__slide-slogan {
    font-size: 4rem;
  }

  .m-teaser-img__text {
    font-size: 2rem;
  }

  .m-units__boxes {
    width: 1220px;
  }

  .s-article-body img {
    width: 800px;
    margin-left: -30px;
  }

  .g-not-on-desktop {
    display: none;
  }

  .g-only-on-phone,
  .g-only-on-tablet {
    display: none;
  }

}

