/*--------------------------------------------------
	GENERAL
---------------------------------------------------*/

:root {
  --white: #FFFFFF;
  --black: #000000;
  --red: #d85f65;
  --brown: #463c39;
  --dark-brown: #2c231e;
  --gray: #f0f0f0;
  --light-gray: #f0f0f0;
  --blue: #143f58;
  --dark-blue: #203E56;
  --nav-gray: #868686;
  --mid-gray: #F8F8F8;

  --padding-top: 7%;
  --padding-bottom: 7%;
  --padding-left: 3%;
  --padding-right: 3%;

  --common-font: "reismuehle";
  --title-font: novecento-sans-wide;
}

@font-face {
  font-family: 'reismuehle';
  src: url('../css/fonts/Geomanist-Book.woff2') format('woff2'),
      url('../css/fonts/Geomanist-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'reismuehle';
  src: url('../css/fonts/Geomanist-Medium.woff2') format('woff2'),
      url('../css/fonts/Geomanist-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'reismuehle';
  src: url('../css/fonts/Geomanist.woff2') format('woff2'),
      url('../css/fonts/Geomanist.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'reismuehle';
  src: url('../css/fonts/Geomanist-Bold.woff2') format('woff2'),
      url('../css/fonts/Geomanist-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


  



* {
  position: relative;
  box-sizing: border-box;
}




html {
  scroll-behavior: smooth;  
}

body {
  overflow-x: hidden;
  margin: 0;
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
	line-height: 1.5;
	font-family: var(--common-font);
	font-weight: normal;
	-moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  color: var(--darkblue);
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}

.wrapper {
  display: block;
  float: left;
  width: 100%;
  background: var(--white);
  z-index: 2;
}

.header {
  position: relative;
  display: block;
  float: left;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1006;
  background: var(--white);
}

header.header.home {
  position: absolute;
  background: transparent;
  color: var(--white);
}

.header.unterseite {
  height: 90px;
}



div#navigationWrap .header {
  position: absolute;
  height: 120px;
  display: block;
}

#navigationWrap header:after, #navigationWrap .header_fadein_navigation:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--grey-200);
}

.header_fadein {
  position: fixed;
  right: 0px;
  top: 0;
  left: 0px;
  height: 70px;
  /*transform: translateY(-80px);*/
  z-index: 1004;
  background: var(--white);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-box-shadow: 0px 5px 14px 0px rgb(0 0 0 / 5%);
  -moz-box-shadow: 0px 5px 14px 0px rgba(0,0,0,0.05);
  box-shadow: 0px 5px 14px 0px rgb(0 0 0 / 5%);
}

.header_fadein.hidden {
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header_fadein_navigation {
  position: absolute;
  width: 100%;
  height: 120px;
  z-index: 1005;
  top: 0;
  right: 0;
  transition: all 1s ease 0s;
  display: none;
  z-index: 1006;
}

.header_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  float: left;
  width: 86%;
  margin-left: 7%;
  margin-right: 7%;
}

ul.language-switcher {
  position: absolute;
  display: flex;
  list-style: none;
  right: 5%;
  top: clamp(30px, 6vw, 57px);
  margin-right: 280px;
}

.header_fadein ul.language-switcher {
  top: 50%;
  transform: translateY(-50%);
  margin-right: 60px;
}

.header_fadein ul.language-switcher li a {
  color: var(--black);
}

.header.unterseite ul.language-switcher {
  top: 50%;
  transform: translateY(-50%);
}

.header.unterseite .language-switcher a, .header.unterseite .language-switcher li {
  color: var(--black);
}

#navigationWrap ul.language-switcher {
  right: 1rem;
}

#navigationWrap ul.language-switcher a {
  color: var(--black);
}

.language-switcher li {
  margin: 0 0.5rem;
  color: var(--gray);
  font-size: min(max(0.7rem, 0.8vw), 0.9rem);
  line-height: 1;
  text-transform: uppercase;
}

.language-switcher a {
  color: var(--white);
}

.language-switcher a:hover {
  font-weight: normal;
  color: var(--red);
}

a.header-button {
  position: absolute;
  display: flex;
  list-style: none;
  right: 5%;
  top: clamp(30px, 6vw, 57px);
  transform: translate(0, -33%);
  margin-right: 380px;
  background: var(--blue);
  color: var(--white);
  padding: 0.75rem 1.25rem 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
}

a.header-button:hover {
  color: var(--white);
}

.header_fadein a.header-button {
  top: 50%;
  transform: translate(0, -50%);
  margin-right: 145px;
}

.header.unterseite a.header-button {
  top: 50%;
  transform: translate(0, -50%);
}

ul.small-nav {
  position: absolute;
  display: flex;
  list-style: none;
  align-items: center;
  right: 5%;
  top: clamp(20px, 5vw, 50px);
  margin-right: 70px;
}

.header.unterseite ul.small-nav {
  top: 50%;
  transform: translateY(-50%);
}

ul.small-nav li {
  margin-right: 1rem;
}

.small-nav a {
  float: left;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.small-nav img {
  height: 21px;
  width: 18px;
  margin: 0 12px;
  object-fit: contain;
}

.small-nav-container {
  transform: translate(-75%, 0);
  position: fixed;
  background: var(--white);
  color: var(--black);
  padding: 2rem;
  top: 7rem;
  display: none;
}

.small-nav-container img {
  width: clamp(5rem, 10vw, 10rem);
  float: left;
  max-height: clamp(10rem, 12vw, 12rem);
  max-width: fit-content;
  margin: 0;
  margin-bottom: 1rem;
  object-fit: cover;
}

.header.unterseite .small-nav-container {
  top: 5em;
}

.small-nav-container:after {
  width: 0;
  height: 0;
  border-width: 0 15px 15px 15px;
  border-color: transparent transparent var(--white) transparent;
  border-style: solid;
  content: '';
  position: absolute;
  top: -15px;
  right: 25px;
}

.small-nav-container .grid {
  grid-template-columns: 1fr 1fr;
}

.small-nav-container li {
  margin-right: 0;
  list-style: none;
  width: 100%;
  float: left;
}

.small-nav-container a {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--black);
  padding: 0.25rem 0;
  font-weight: 500;
  hyphens: none;
}

.header.unterseite .small-nav img {
  filter: invert(100%) brightness(130%) contrast(120%);
}

.small-nav-container img {
  filter: none!important;
}

.language-switcher li a.active {
  font-weight: bold;
}

main {
  position: relative;
  display: inline;
  width: 100%;
  height: 100%;
  float: left;
  background: var(--white);
}

footer {
  position: relative;
  display: inline;
  float: left;
  width: 100%;
  background-color: var(--white);
  color: var(--darkblue);
  white-space: nowrap;
}

footer p {
  line-height: 1.75;
}

footer p.small {
  width: 100%;
  hyphens: auto;
  white-space: pre-wrap;
  font-size: min(max(0.8rem, 0.9vw), 0.9rem);
  margin-top: 1rem;
}

img.footer-logo {
  width: clamp(8em, 12vw, 12em);
}

#scrollcontainer {
  position: relative;
  display: inline;
  width: 100%;
  height: 100%;
  float: left;
  background: var(--white);
}

.copyright {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  z-index: 3;
}

.copyright a, .copyright p {
  font-size: 0.8rem;
}

img, iframe, embed {
  width: 100%;
  max-width: 100%;
}

.pagination a {
  padding: 15px 25px;
  background: var(--white);
  color: var(--black);
  font-family: var(--semi-font);
  font-size: 0.8rem;
  border: 1px solid var(--grey-300);
}

.pagination span.current {
  padding: 16px 26px;
  background: var(--darkblue);
  color: var(--white);
  font-family: var(--semi-font);
  font-size: 0.8rem;
}


/*--------------------------------------------------
	HEADER UND NAVIGATION
---------------------------------------------------*/

.heads {
  width: 100%;
  height: clamp(25em, 50vh, 50vh);
  float: left;
  background-color: var(--darmode);
}

.heads h2 {
  color: var(--white);
  width: auto;
  text-align: left;
}

.heads-inner {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.heads-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  /* z-index: 111; */
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.heads-title {
  width: calc(100% - 6em);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.heads-title h2 {
  font-size: min(max(1.8rem, 4vw), 2.5rem);
  margin-left: clamp(5em, 10vw, 10em);
}

.subtitle {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: min(max(0.6rem, 0.7vw), 0.8rem);
  position: absolute;
  right: 4em;
  bottom: 0;
  transform: rotate(270deg) translateX(100%);
  transform-origin: bottom right;
  -ms-transform: rotate(270deg) translateX(100%);
  -ms-transform-origin: 0% 0%;
  -webkit-transform: rotate(270deg) translateX(100%);
  -webkit-transform-origin: bottom right;
}

/* Falls Schrift weiss sein soll DISPLAY BLOCK */
.heads-title-area {
  position: absolute;
  z-index: 3;
  top: 70%;
  transform: translateY(-50%);
  left: -13em;
  width: 16em;
  white-space: nowrap;
  display: none;
}


.heads-image-area {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  /*overflow: hidden;*/
  background: var(--darkblue);
}

.heads-image-area h2 {
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  left: -1.144em;
  margin: 0;
  z-index: 3;
  color: var(--white);
  white-space: nowrap;
}

a.logo {
  position: relative;
  display: inline-block;
  top: 3em;
  left: 5%;
  padding: 0;
  width: clamp(8em, 10vw, 10em);
  transition: none;
}

.header.unterseite a.logo {
  top: 50%;
  transform: translateY(-50%);
  width: clamp(6em, 8vw, 8em);
}

.header.unterseite a.logo img {
  margin-top: 50%;
  transform: translateY(-50%);
}

.header_fadein a.logo {
  display: flex;
  align-items: center;
  top: 50%;
  left: 5%;
  width: clamp(6em, 8vw, 8em);
  transform: translateY(-50%);
  /*
  top: 50%;
  transform: translate(0, -50%);
  width: clamp(1em, 3vw, 3em);
  */
}

#navigationWrap a.logo {
  width: clamp(6em, 10vw, 10em);
  transform: translateY(-50%);
  margin-top: 2em;
}

a.logo img {
  width: 100%;
}

.nav {
  justify-content: space-between;
  display: flex;
}

.nav__link {
  margin-left: 2em;
  font-size: min(max(1.8rem, 2vw), 2rem);
  text-decoration: none;
  font-weight: 500;
  font-family: var(--title-font);
  color: var(--white);
  transition: border-color .12s ease;
  float: none;
  display: block;
  text-align: left;
  transition: all ease 0.3s;
}

nav.nav .nav__link {
  font-size: min(max(3rem, 4vw), 4rem);
}

.nav__link.nav__link--active {
  border-bottom-color: var(--gold);
}

#navigationWrap {
  display: block;
  width: 100%;
  height: 0%;
  transform: translateY(-100%);
  transform-origin: top;
  opacity: 1;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 120px 0 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1005;
  background-color: var(--white);
  /*-webkit-transition: all 0.8s ease-out 0s;
  -moz-transition: all 0.8s ease-out 0s;
  -ms-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;*/
}

#navigationWrap.open {
  height: 100%;
  padding: 120px 0 0;
}

.nav-social {
  position: absolute;
  bottom: 5%;
  right: 5%;
  float: left;
  opacity: 0;
  transform: translateY(-40px);
}

.button.goback, nav h4 {
  display: none;
}

#navigationWrap a {
  text-decoration: none;
}

#navigationWrap_bg {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1004;
  background-color: #000;
  display: block;
  opacity: 0;
  visibility: hidden;
}

.menu-container {
  position: fixed;
  left: 0;
  right: 0;
  height: calc(100% - 120px);
  width: 70%;
  max-width: 1700px;
  text-align: center;
  display: block;
  overflow-y: hidden;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  z-index: 1006;
}

.menu-container nav {
  position: relative;
  display: flex;
  float: left;
  height: 100%;
  align-items: center;
  left: 0;
  width: 100%;
}

.menu-container nav:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: var(--grey-200);
}

.menu-container::-webkit-scrollbar {
  margin-top: 120px;
  height: calc(100% - 120px);
  width: 5px;
}

.menu-container::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}

.menu-container::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-image: linear-gradient(to bottom,  rgba(70,60,57,1) 0%,rgba(70,60,57,1) 100%); 
  box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
}

nav ul {
  list-style-type: none;
  text-align: left;
  display: flex;
  flex-direction: row;
  width: 100%;
}

nav ul > li.mainnav {
  position: relative;
  display: block;
  float: left;
  text-transform: uppercase;
  width: 100%;
  margin: 0.3em 0;
  padding: 0 2em 0 0;
  font-size: min(max(1rem, 1.6vw), 1.6rem);
}

nav ul > li.mainnav a:hover {
  color: var(--red);
}

nav ul > li.mainnav a.active {
  font-weight: 700;
  color: var(--red);
}

nav ul > li.subnav {
  position: static;
  float: left;
  font-size: min(max(1rem, 1.6vw), 1.6rem);
  text-transform: uppercase;
  width: 100%;
  margin: 0.3em 0;
  padding: 0 2em 0 0;
  cursor: pointer;
}

nav ul > li.subnav a {
  font-weight: 500;
}

li.subnav ul li:hover a {
  color: var(--red);
}

.subnav ul li.active a {
  color: var(--red);
}

nav ul li span {
  /*transform: translateY(-40px);
  opacity: 0;*/
  position: relative;
  display: block;
  float: left;
  width: 100%;
  transition: none;
  font-weight: 500;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--gray);
  width: 100%;
}

.mainnav a {
  font-weight: 500;
  color: var(--black);
  letter-spacing: 1px;
}

a.button.login {
  transform: translateY(0px);
  opacity: 0;
  transition: none;
}

li.subnav ul li {
  font-size: 1rem;
  padding: 0.25rem 0;
}

li.subnav.open {
  font-weight: 700;
}

nav ul li ul {
  position: relative;
  width: 100%;
  display: block;
  overflow: auto;
  margin-top: 2rem;
  float: left;
}

nav ul li ul li {
  width: 100%;
  height: auto;
  display: block;
  float: left;
}

nav ul li ul li a.sub_tile {
  width: 100%;
  height: clamp(10em, 20vh, 11em);
  position: relative;
  display: flex;
  float: left;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

nav ul li ul li.sub_li a {
  opacity: 0.9;
}

nav ul li ul li.sub_li a:hover {
  opacity: 1;
}

nav ul li ul li.sub_li.active a {
  opacity: 1;
}

li.sub_li {
  padding-left: 2em;
  opacity: 0;
}

.subnav span a {
  font-weight: 500;
  color: var(--black);
}

/*
a.button.subnav-button {
  float: left;
  margin: 1.5vh 0 2vh 0.75rem;
  letter-spacing: 1px;
  font-weight: normal;
  color: var(--black);
  max-width: 70%;
  white-space: pre-wrap;
  word-break: keep-all;
  hyphens: none;
}

a.button.subnav-button::after {
  background: var(--white);
  border: 1px solid var(--gray);
  background-repeat: no-repeat;
}

a.button.subnav-button:before {
  background-image: url('/static/images/arrow-right.svg')!important;
  background: var(--white);
  width: 12px;
  height: 10px;
  transform: translate(-11px, -50%);
}*/

nav a.button {
  margin-top: 2.5rem;
  float: left;
}

nav ul li ul li a.active .overlay_darkblue {
  opacity: 0.7;
}

nav ul > li.subnav .product_title span {
  width: auto;
}

nav ul > li.subnav.open .product_title span:after {
  display: none;
}

nav .line {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 1px;
  background: var(--grey-200);
  margin: 1em 0;
}

.sub_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}


.sub_link {
  position: absolute;
  z-index: 3;
  left: 2em;
  bottom: 3em;
  color: var(--white);
  font-size: 1.1rem;
}

.sub_link:after {
  content: "";
  position: absolute;
  bottom: clamp(-1.7em, -1.2vw, -0.7em);
  left: 0;
  background-image: url(../images/arrow_right_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(0.5em, 1vw, 1.5em);
  height: clamp(0.3em, 0.8vw, 1.3em);
  z-index: 3;
}


nav .heading {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0 0 1em 6em;
  font-weight: 800;
  background: #035EA8;
  background: -webkit-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: -moz-linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  background: linear-gradient(to right, #035EA8 0%, #00b4db 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.sticky {
  position: absolute;
  width: 40px;
  height: 25px;
  top: clamp(20px, 4.9vw, 48px);
  right: 5%;
  transition: all 1s ease 0s;
  display: block;
  z-index: 1007;
}

.unterseite .sticky {
  top: 50%;
  transform: translateY(-50%);
}

.header_fadein .sticky, .header_fadein_navigation .sticky {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  transition: all ease .5s;
}

.hamburger .line1 {
  width: 30px;
  height: 3px;
  background-color: var(--black);
  display: block;
  margin: 2px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  float: right;
}

.hamburger .line2 {
  width: 30px;
  height: 3px;
  background-color: var(--black);
  display: block;
  margin: 2px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  float: right;
}

.header.home .line1, .header.home .line2 {
  background: var(--white);
}

.hamburger:hover, .hamburger-home:hover {
cursor: pointer;
}

.hamburger.is-active .line1:nth-child(1) {
  background-color: var(--black);
  -webkit-transform: translateY(10px) rotate(45deg);
  -ms-transform: translateY(10px) rotate(45deg);
  -o-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
  width: 30px;
  height: 3px;
  -webkit-animation: none;
  animation: none;
}


.hamburger.is-active .line1:nth-child(3) {
  background-color: var(--black);
  -webkit-transform: translateY(-4px) rotate(-45deg);
  -ms-transform: translateY(-4px) rotate(-45deg);
  -o-transform: translateY(-4px) rotate(-45deg);
  transform: translateY(-4px) rotate(-45deg);
  width: 30px;
  height: 3px;
  -webkit-animation: none;
  animation: none;
}

.hamburger.is-active .line2:nth-child(2) {
  opacity: 0;
}



.header-fadein .hamburger .line1 {
  width: 40px;
  margin: 4px auto;
}


.header_nav {
  position: relative;
  float: left;
  width: 100%;
  background: var(--black);
  color: var(--white);
  flex-wrap: nowrap;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}

.header_nav ul {
  display: flex;
  list-style: none;
  margin: 1rem auto;
  float: left;
}

.header_nav li {
  hyphens: none;
  word-break: keep-all;
  text-align: left;
  white-space: nowrap;
}

.header_nav ul li a {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: min(max(0.6rem, 0.7vw), 0.8rem);
  padding: 0rem 0;
  font-weight: 500;
  margin: 0 2rem;
}

.header_nav ul li a.active {
  color: var(--nav-gray);
}


/*------------------------------------------------------------------------------------------------------------------------------------------------------
	COMPONENTS
-------------------------------------------------------------------------------------------------------------------------------------------------------*/




/*--------------------------------------------------
	SWIPER
---------------------------------------------------*/

/**
 * Swiper 5.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 8, 2020
 */

 @font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: var(--red);
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  width: 100%;
  height: 100%;
  /* Fix of Webkit flickering */
  z-index: 1;
}

#slider .swiper-container {
  overflow: visible;
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}
.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
} */
/* Bullets */  
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 1;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}
.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}


/* SWIPER TAB & PAGINATIONS */

.swiper-section.tab-section {
  align-items: flex-start;
}

.tabs.swiper-pagination-bullets {
  position: relative;
  margin: 0px;
  padding: 0px;
  list-style: none;
  z-index: 3;
  display: flex;
  flex-direction: row;
  margin-bottom: clamp(2em, 5vw, 5em);
}

.tabs.swiper-pagination-bullets .tab-link {
  background: none;
  color: var(--black);
  display: inline-block;
  padding: 40px 0 0;
  cursor: pointer;
  margin: 0;
  font-weight: 500;
  text-align: center;
  flex: 1 1 0px;
  text-transform: uppercase;
  font-size: min(max(0.7rem, 0.9vw), 0.9rem);
  opacity: 1;
}

.tabs.swiper-pagination-bullets .tab-link:before {
  content: '';
  position: absolute;
  width: 100%;
  background: var(--nav-gray);
  height: 1px;
  top: 12px;
  left: 50%;
}

.tabs.swiper-pagination-bullets .tab-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 28px;
  width: 28px;
  border: solid 1px var(--nav-gray);
  border-radius: 50px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

.tabs.swiper-pagination-bullets .current .tab-dot {
  background: var(--black);
  border-color: var(--black);
}

.tabs.swiper-pagination-bullets .tab-dot:before {
  content: '';
  position: absolute;
  background: var(--black);
  opacity: 0;
  width: 0;
  height: 0;
  z-index: -1;
  border-radius: 28px;
  box-shadow: 0px 0px 24px 1px rgba(224,199,224,0.2);
  transition: all .35s ease-in-out;
  transition-timing-function: .35s ease-in-out;
}

.tabs.swiper-pagination-bullets .tab-link:hover .tab-dot:before, .tabs.swiper-pagination-bullets .tab-link.swiper-pagination-bullet-active .tab-dot:before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.tabs.swiper-pagination-bullets .tab-dot .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 2px;
}

.tabs.swiper-pagination-bullets span.tab-name {
  position: relative;
  margin-top: 2rem;
  float: left;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 50%;
  font-size: min(max(0.7rem, 0.9vw), 0.9rem);
}

.tabs.swiper-pagination-bullets .tab-link:hover .tab-dot .arrow:before, .tabs.swiper-pagination-bullets .tab-link.swiper-pagination-bullet-active .tab-dot .arrow:before {
  transform: translateX(20px);
}

.tabs.swiper-pagination-bullets .tab-link:hover .tab-dot .arrow:after, .tabs.swiper-pagination-bullets .tab-link.swiper-pagination-bullet-active .tab-dot .arrow:after {
  transform: translateX(0%);
}


.swiper21 h3 {
  font-weight: normal;
  font-size: min(max(2.5rem, 4vw), 4rem);
}


.swiper23 .swiper-slide {
  background: var(--white);
}









/*--------------------------------------------------
	PARALLAX
---------------------------------------------------*/


.section-parallax {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(30em, 50vw, 50em);
  overflow: hidden;
}

.parallax-content {
  background-size: cover;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 120%;
}

#parallax p {
  position: absolute;
  color: #ffffff;
  font-size: 3vw;
  line-height: 1.2;
  top: 50%;
  transform: translate(0, -50%);
}


.parallax {
  position: relative;
  display: flex;
  float: left;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.parallax_bg {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}


/*--------------------------------------------------
	AKKORDEON
---------------------------------------------------*/

.accordion {
  width: 100%;
  float: left;
}
.accordion__item {
  width: 100%;
  float: left;
}
.accordion__title {
  position: relative;
  padding: 0.75em;
  font-size: inherit;
  color: var(--brightblue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px var(--light-gray);
  color: var(--black);
  font-weight: bold;
  text-transform: uppercase;
}

.accordion__title:after {
  position: absolute;
  content: " ";
  right: 15px;
  background-image: url(../images/accordion-plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: clamp(15px, 2.4vw, 25px);
  height: clamp(15px, 2.4vw, 25px);
}
.is-open .accordion__title:after {
  transform: translate(0, -50%) rotate(180deg);
  background-image: url(../images/accordion-minus.svg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.accordion__body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.accordion__body b {
  text-transform: uppercase;
}
.accordion__body .grid {
  column-gap: 2em;
  margin: 1em;
  margin-bottom: 2em;
}
.accordion__item.is-open {
  background-color: var(--white);
}
.accordion__content {
  padding: 15px;
}
.accordion__title p {
  white-space: nowrap;
}


/*--------------------------------------------------
	TAB AKKORDEON
---------------------------------------------------*/

.tab-accordion {
  width: 100%;
  float: left;
  display: none;
}

.tab-accordion__item {
  width: 100%;
  float: left;
  padding-left: 30px;
}

.tab-accordion__item:before {
  content: '';
  position: absolute;
  width: 1px;
  background: var(--nav-gray);
  height: 100%;
  top: 30px;
  left: 13px;
}

.tab-accordion__item:last-child:before {
  display: none;
}

.tab-accordion__item.is-open:last-child:before {
  display: block;
}

.tab-accordion__title {
  position: relative;
  padding: 8px 15px;
  cursor: pointer;
  display: block;
}

.is-open .tab-accordion__title:after {
  transform: translate(0, -50%) rotate(180deg);
  background-image: url(../images/accordion-minus.svg);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.tab-accordion__body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.tab-accordion__body b {
  text-transform: uppercase;
}
.tab-accordion__body .grid {
  column-gap: 2em;
  margin: 1em;
  margin-bottom: 2em;
}
.tab-accordion__item.is-open {
  background-color: transparent;
}
.tab-accordion__content, .tab-accordion__image {
  padding: 0 15px;
}
.tab-accordion__title p {
  white-space: nowrap;
}

.tab-accordion__title .tab-dot {
  top: 50%;
  left: -45px;
  transform: none;
}

.tab-accordion__item.is-open .tab-dot {
  background: var(--black);
}

.tab-accordion__item.is-open .tab-dot .arrow:before {
  background: var(--white);
}






/*--------------------------------------------------
	TABS
---------------------------------------------------*/

.tab-control{
  position: relative;
  width: 100%;
  margin: 0 auto;
  border-radius: 25px;
}

ul.tabs{
  position: relative;
  margin: 0px;
  padding: 0px;
  list-style: none;
  z-index: 3;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

ul.tabs li {
  background: none;
  color: var(--black);
  display: inline-block;
  padding: 20px 0;
  cursor: pointer;
  margin: 0;
  font-weight: normal;
  text-align: center;
  flex: 1 1 0px;
  text-transform: uppercase;
}

.tab-content{
  display: none;
}

.tab-content.current {
  display: inherit;
  border: none;
  padding-top: 2em;
}

.tab-dot {
  position: absolute;
  height: 26px;
  width: 26px;
  background: var(--white);
  border: 1px solid var(--nav-gray);
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 50%;
}

.tabs.swiper-pagination-bullets .tab-dot:before {
  content: '';
  position: absolute;
  background: var(--black);
  opacity: 0;
  width: 0;
  height: 0;
  z-index: -1;
  border-radius: 28px;
  box-shadow: 0px 0px 24px 1px rgba(224,199,224,0.2);
  transition: all .35s ease-in-out;
  transition-timing-function: .35s ease-in-out;
}

.tab-dot .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 2px;
}

.tab-dot .arrow:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: translateX(-20px);
  -webkit-transition: -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005), -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
}

.tab-dot .arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--black);
  -webkit-transition: -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition: transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005), -webkit-transform .6s cubic-bezier(0.305, 0.125, 0.185, 1.005);
}


.current .tab-dot:after, .tab-link:hover .tab-dot:after {
  background: var(--white);
}

span.tab-name {
  position: relative;
  margin-top: 2rem;
  float: left;
  left: 50%;
  transform: translate(-50%, 0);
  max-width: 50%;
  font-size: min(max(0.7rem, 0.9vw), 0.9rem);
}

.tab-link:before {
  content: '';
  position: absolute;
  width: 100%;
  background: var(--light-gray);
  height: 1px;
  top: 12px;
}

.tabs .tab-link:last-child:before {
  display: none;
}



/*--------------------------------------------------
	SIDENAV
---------------------------------------------------*/


.sidenav {
  position: fixed;
  z-index: 10;
  left: 3%;
  top: 50%;
  color: var(--red);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  transform: rotate(270deg) translateY(50%) translateX(-50px);
  -ms-transform: rotate(270deg) translateY(50%) translateX(-50px);
  -webkit-transform: rotate(270deg) translateY(50%) translateX(-50px);
  transform-origin: top left;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  display: none;
  opacity: 0;
}

.sidenav_title {
  position: absolute;
  left: 170px;
  white-space: nowrap;
  overflow: hidden;
  height: 25px;
  width: 250px;
}

.sidenav_title span {
  position: absolute;
  left: 0;
}

.lines {
  position: absolute;
  display: block;
  float: left;
  width: 162px;
  height: 1px;
  top: 12px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.line.inactive {
  position: absolute;
  float: left;
  right: 0;
  width: 50px;
  height: 1px;
  background-color: var(--light-gray);
  z-index: 1;
}

.line.active {
  position: absolute;
  float: left;
  right: 0;
  width: 50px;
  height: 1px;
  background-color: var(--red);
  z-index: 2;
}

.line.active.fachwissenknow-how, .line.inactive.fachwissenknow-how {
  right: 54px;
}

.line.active.grandcru, .line.inactive.grandcru {
  right: 108px;
}






/*--------------------------------------------------
	SIDENAV PRODUKTE
---------------------------------------------------*/


.sidenav_produkte {
  position: fixed;
  z-index: 10;
  left: 3%;
  top: 50%;
  color: var(--red);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  transform: rotate(270deg) translateY(50%) translateX(-50%);
  -ms-transform: rotate(270deg) translateY(50%) translateX(-50%);
  -webkit-transform: rotate(270deg) translateY(50%) translateX(-50%);
  transform-origin: top left;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
}

.sidenav_title_produkte {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  height: 25px;
  width: 250px;
}

.sidenav_title_produkte span {
  position: absolute;
  left: 0;
}

.lines_produkte {
  position: relative;
  display: block;
  float: left;
  width: auto;
  height: 1px;
  top: 12px;
  margin-right: 20px;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.line_produkte {
  position: relative;
  float: left;
  right: 0;
  width: 20px;
  height: 2px;
  background-color: var(--gray);
  z-index: 1;
  margin-right: 2px;
}

.line_produkte_active {
  position: absolute;
  float: left;
  left: 0;
  top: 0;
  width: 20px;
  height: 2px;
  background-color: var(--red);
  z-index: 2;
  margin-right: 2px;
}




/*--------------------------------------------------
	FEATURE NAVIGATION (GRAND CRU)
---------------------------------------------------*/


nav.feature_navigation {
  position: fixed;
  display: none;
  background-color: var(--white);
  border-top: solid 1px var(--mid-gray);
  top: 70px;
  left: 0;
  width: 100%;
  height: 65px;
  z-index: 14;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: -moz-transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-box-shadow: 0px 5px 14px 0px rgb(0 0 0 / 5%);
  -moz-box-shadow: 0px 5px 14px 0px rgba(0,0,0,0.05);
  box-shadow: 0px 5px 14px 0px rgb(0 0 0 / 5%);
}

nav.feature_navigation.visible {
  display: block;
}

nav.feature_navigation.hidden {
  -webkit-transform: translateY(-300%);
  -moz-transform: translateY(-300%);
  -ms-transform: translateY(-300%);
  -o-transform: translateY(-300%);
  transform: translateY(-300%);
}

/*
.feature_nav::-webkit-scrollbar {
  height: 5px;
  width: 100%;
}

.feature_nav::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}

.feature_nav::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-image: linear-gradient(to right,  rgba(230,230,230,1) 100%, rgba(230,230,230,1) 0%); 
  box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
}
*/

.feature_nav {
  position: static;
  width: 100%;
  height: 65px;
  flex-wrap: nowrap;
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  float: left;
  /*scrollbar-color: var(--mid-gray) #fafafa;*/
}

.feature_nav_inner {
  display: block;
  float: left;
  white-space: nowrap;
  padding: 14px 70px;
}

.feature_nav a {
  font-size: 1rem;
  font-weight: 700;
  padding: 0 1.5em 0;
  line-height: 1;
  color: var(--black);
  transition: all ease 0.3s;
}

.feature_nav a.clicked, .feature_nav a:hover {
  color: var(--red);
}

a.current.active {
  color: var(--red);
}

.arrow-right {
  position: absolute;
  top: 0;
  right: 0px;
  width: 60px;
  height: 100%;
  z-index: 1;
  justify-content: flex-start;
  font-size: 22px;
  display: flex;
  align-items: center;
  background: var(--white);
  border-left: solid 1px var(--mid-gray);
  cursor: pointer;
  display: block;
}

.arrow-right:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-image: url('/static/images/subnav-arrow-black.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(10px, 1.5vw, 15px);
  height: clamp(10px, 1.5vw, 15px);
}



.arrow-left {
  position: absolute;
  top: 0;
  left: 0px;
  width: 60px;
  height: 100%;
  z-index: 1;
  justify-content: flex-start;
  font-size: 22px;
  display: flex;
  align-items: center;
  background: var(--white);
  border-right: solid 1px var(--mid-gray);
  cursor: pointer;
  display: block;
}

.arrow-left:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) rotate(180deg);
  background-image: url('/static/images/subnav-arrow-black.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(10px, 1.5vw, 15px);
  height: clamp(10px, 1.5vw, 15px);
}






/*------------------------------------------------------------------------------------------------------------------------------------------------------
	END COMPONENTS
-------------------------------------------------------------------------------------------------------------------------------------------------------*/










/*--------------------------------------------------
	TYPOGRAFIE
---------------------------------------------------*/

p {
	margin: 8px 0;
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
	line-height: 1.75;
	-moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  -webkit-text-size-adjust: 100%; /* Für Text, damit er auf mobilen Geräten nicht grösser erscheint */
}

a {
  color: var(--blue);
  cursor: pointer;
  font-weight: normal;
  transition: all ease .3s;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--blue);
}

ul {
  display: inline-block;
  list-style-type: disc;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
  list-style-position: inside;
}

li {
  -webkit-text-size-adjust: 100%;
  list-style-position: outside;
  list-style-image: none;
  margin-left: 14px;
}

nav li {
  margin-left: 0;
}

.subnav li {
  margin-left: 0;
}

strong {
  font-weight: 700;
}

h1 {
  color: var(--white);
  font-size: min(max(1.5rem, 2.5vw), 3rem);
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.25;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  text-transform: uppercase;
  font-family: var(--title-font);
}

h1:first-line {
  font-weight: 300;
}

h2 {
  color: var(--black);
  text-transform: uppercase;
  font-weight: 600;
  font-size: min(max(1.55rem, 2.5vw), 2.5rem);
  line-height: 1.2;
  margin-block-start: 0;
  margin-block-end: 0;
  font-family: novecento-sans-wide;
}

h2::first-line {
  font-weight: 300;
}

h2.one-line:first-line {
  font-weight: 600;
}

h3 {
  color: var(--black);
  font-size: min(max(1.25rem, 1.5vw), 1.5rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5;
  text-transform: normal;
  font-family: var(--title-font);
  margin-block-start: 0em;
  margin-block-end: 0em;
}

h4 {
  color: var(--black);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: min(max(1.1rem, 1.5vw), 1.5rem);
}


h5 {
  color: var(--black);
  font-size: min(max(1.1rem, 1.25vw), 1.25rem);
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  margin-block-start: 0;
  margin-block-end: 0;
  text-transform: uppercase;
  font-family: var(--title-font);
}

a.button, .button {
  position: relative;
  display: inline-block;
  font-family: var(--common-font);
  color: var(--blue);
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
  font-weight: 500;
  padding: 0.75rem 2rem 0.75rem 0;
  border: none;
  line-height: 1.5;
  letter-spacing: 1px;
  text-decoration: none;
  border-bottom: 1px solid var(--blue);
}

a.button:after, .button:after {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  background-image: url('/static/images/button-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

a.button:hover, .button:hover {
  color: var(--black);
}

a.button_choosing {
  position: relative;
  padding: 10px 0;
  border-bottom: solid 1px var(--grey-300);
  width: 100%;
  display: block;
}

a.button_choosing:after {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 15px;
}

a.button.white {
  color: var(--white);
  border-color: var(--white);
}

a.button.white:after {
  background-image: url(/static/images/button-arrow-white.svg);
}

.button.goback {
  display: none;
}

.button.back, a.button.back {
  padding-right: 0;
  padding-left: 2rem;
} 

a.button.back:after, .button.back:after {
  background-image: url('/static/images/arrow-back.svg');
  right: auto;
  left: 0;
}

a.lightbox-button {
  position: absolute;
  right: 5%;
  bottom: 5%;
  width: clamp(2rem, 2.5vw, 2.5rem);
}



.subnav-button {
  float: left;
  margin: 1.5vh 0 2vh 0.75rem;
  padding: 0 50px 0 0;
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: normal;
  color: var(--black);
  white-space: pre-wrap;
  word-break: keep-all;
  hyphens: none;
}

a.subnav-button:hover {
  color: var(--black);
}

.subnav-button .btn.felchlin {
  position: absolute;
  right: 40px;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translate(40px, -50%);
}

li.sub_li:hover .btn.felchlin:before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

li.sub_li:hover .btn.felchlin .arrow:before {
  transform: translateX(200%);
}

li.sub_li:hover .btn.felchlin .arrow:after {
  transform: translateX(0%);
}

.button.mobile {
  display: none;
}





/*--------------------------------------------------
	ANIMATIONEN
---------------------------------------------------*/


.transition-fade {
  transition: 0.4s;
  opacity: 1;
  height: 100%;
}

html.is-animating .transition-fade {
  opacity: 0;
}

.rvb, .rvt, .rvl, .rvr, .rvSlow, .rvlSlow, .rvrSlow, .rvbSlow, .rvtSlow, .imgRV {
  will-change: transform;
  transform-origin: center;
}

figure.has-parallax {
    overflow: hidden;
    max-height: 45vw;
}

.imgreveal, .imgreveal_rtl {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: clamp(20rem, 30vw, 40rem);
}

.auflistung-detail h3 {
  margin-top:0px; 
  line-height:1.2; 
  overflow:hidden; 
}

.split-line {
  overflow: hidden;
}




/*--------------------------------------------------
	SMOOTH SCROLL
---------------------------------------------------*/


body.smooth-scroll {
  overflow:hidden;
}

.smooth-scroll .content-scroll {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.scroll-content, main {
  height: 100vh;
}

.scrollbar-track {
  background: transparent!important;
}



/*------------------------------------------------------------------------------------------------------------------------------------------------------
	INDIVIDUAL STYLE
-------------------------------------------------------------------------------------------------------------------------------------------------------*/


/*--------------------------------------------------
	SLIDER
---------------------------------------------------*/


#slider {
  position: relative;
  width: 100%;
  margin-top: 10px;
  height: calc(100vh - 210px);
  height: calc(calc(var(--vh, 1vh) * 100) - 210px);
}

.slider {
  width: 100%;
  height: 100%;
  float: right;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#002856+0,001b32+100 */
background: #002856; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover,  #002856 0%, #001b32 100%); /* FF3.6-15 */
background: -webkit-radial-gradient(center, ellipse cover,  #002856 0%,#001b32 100%); /* Chrome10-25,Safari5.1-6 */
background: radial-gradient(ellipse at center,  #002856 0%,#001b32 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002856', endColorstr='#001b32',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.slider-title-area {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  left: 14em;
  width: 16em;
  white-space: nowrap;
}

.swiper-button-prev:after, .swiper-button-next:after {
  content: '' !important;
  background-image: url(/static/images/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 15px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
  transform: translate(-50%, -50%) rotate(180deg);
}

.swiper-button-prev, .swiper-button-next {
  left: 0;
  width: 30px;
  height: 15px;
}

.swiper-button-prev {
  margin-right: 50px;
}

.swiper-button-next {
  margin-left: 50px;
}


.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
  left: 0;
  width: 100%;
}

.swiper-pagination {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  width: auto;
  height: auto;
}

.swiper-pagination .slices {
  float: left;
  margin-top: 0;
  margin-right: 4px;
}

.swiper-pagination .totals {
  position: relative;
  float: right;
}

.swiper-pagination-4 .slices {
  float: left;
  margin-top: 0;
  margin-right: 4px;
}

.swiper-pagination-4 .totals {
  position: relative;
  float: right;
}

.slogan {
  color: var(--white);
  position: absolute;
  left: 6em;
  bottom: 9em;
  z-index: 3;
  font-family: var(--semi-font);
  font-size: min(max(1.4rem, 1.8vw), 1.8rem);
  width: clamp(17em, 17vw, 10em);
  hyphens: none;
}

img.mouse {
  position: absolute;
  bottom: 3em;
  left: 3em;
  width: 1em;
  z-index: 2;
}

.language {
  position: absolute;
  left: 20em;
  bottom: 4em;
  z-index: 2;
}

.language a {
  position: relative;
  font-family: var(--semi-font);
  font-size: 1rem;
  color: var(--black);
  white-space: nowrap;
  margin: 0 0px 0 4px;
  padding: 0 8px 0 4px;
  float: left;
  line-height: 1;
}

.language a:nth-child(1):after, .language a:nth-child(2):after {
  position: absolute;
  content: "";
  right: -1px;
  top: 60%;
  width: 1px;
  height: 90%;
  background-color: var(--black);
  transform: translateY(-50%);
}

.menu-container .language {
  left: 20em;
  bottom: auto;
  top: 2em;
}

.menuadresse {
  position: absolute;
  bottom: 4em;
  left: 4em;
  text-align: left;
}

.menuadresse, .menuadresse p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--white);
}

.menuadresse a.email {
  color: var(--white);
}

#slider {
  position: relative;
  float: left;
  width: 100%;
  background-color: var(--dark);
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slider-image-small {
  position: absolute;
  width: clamp(18rem, 35vw, 35rem);
  height: clamp(16rem, 50vh, 35rem);
  bottom: -45px;
  right: -45px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  z-index: 12;
}

.overlay-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  /*
  background: -moz-linear-gradient(left,  rgba(65,35,25,1) 0%, rgba(65,35,25,1) 1%, rgba(65,35,25,0) 100%); 
  background: -webkit-linear-gradient(left,  rgba(65,35,25,1) 0%,rgba(65,35,25,1) 1%,rgba(65,35,25,0) 100%); 
  background: linear-gradient(to right,  rgba(65,35,25,1) 0%,rgba(65,35,25,1) 1%,rgba(65,35,25,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#463c39', endColorstr='#00463c39',GradientType=1 ); 
  */
  background: -moz-linear-gradient(left,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 1%, rgba(255,255,255,0) 100%); 
  background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 1%,rgba(255,255,255,0) 100%); 
  background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 1%,rgba(255,255,255,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 ); 
  height: 100%;
  z-index: 2;
  opacity: 0.8;
}

.slider-content {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 3;
  width: 40%;
  left: -4rem;
}

.slider-content h1 {
  color: var(--red);
  font-size: min(max(1.5rem, 3.5vw), 3.5rem);
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.25;
}

#slider .claim-right {
  position: absolute;
  transform: rotate(270deg) translate(50%, 50%);
  right: -5%;
  color: var(--red);
  top: 50%;
  text-transform: uppercase;
  letter-spacing: 10px;
  font-size: 0.8rem;
  transform-origin: right top;
  white-space: nowrap;
}

.slider-buttons {
  position: absolute;
  bottom: -2rem;
  right: clamp(21rem, 39vw, 39rem);
}




/*--------------------------------------------------
	SWIPER HORIZONTAL PARALLAX MATRIX SLIDER
---------------------------------------------------*/

.swiper-section {
  position: relative;
  display: flex;
  float: left;
  width: 100%;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
}

/* RTL */
.swiper-section.rtl {
  flex-direction: row-reverse;
}

/* LTR */
/* SWIPER ab nr 10 aufwärts für Tab Slide */
.swiper-horizontal-parallax-1, .swiper-horizontal-parallax-3, .swiper-horizontal-parallax-5 {
  height: 35vw;
  min-height: 30rem;
  max-height: 40rem;
  height: clamp(30rem, 35vw, 40rem);
  width: calc(50% - clamp(2em, 5vw, 5em));
  float: right;
  margin-left: clamp(2em, 5vw, 5em);
}

/* RTL */
.swiper-horizontal-parallax-2, .swiper-horizontal-parallax-4 {
  height: 35vw;
  min-height: 30rem;
  max-height: 40rem;
  height: clamp(30rem, 35vw, 40rem);
  width: calc(50% - clamp(2em, 5vw, 5em));
  float: left;
  margin-right: clamp(2em, 5vw, 5em);
}

/* LTR */
/* SWIPER ab nr 21 aufwärts für Tab Slide */
.swiper4, .swiper6, .swiper8, .swiper21 {
  width: calc(50% - clamp(2em, 5vw, 5em));
  float: left;
  margin-right: clamp(2em, 5vw, 5em);
}

/* RTL */
.swiper5, .swiper7 {
  width: calc(50% - clamp(2em, 5vw, 5em));
  float: right;
  margin-left: clamp(2em, 5vw, 5em);
}

.swiper-horizontal-parallax-1 .swiper-scrollbar, .swiper-horizontal-parallax-2 .swiper-scrollbar, .swiper-horizontal-parallax-3 .swiper-scrollbar, .swiper-horizontal-parallax-4 .swiper-scrollbar, .swiper-horizontal-parallax-5 .swiper-scrollbar, .swiper-horizontal-parallax-10 .swiper-scrollbar {
  display:none;
}

.swiper-horizontal-parallax-1 .img-content img, .swiper-horizontal-parallax-2 .img-content img, .swiper-horizontal-parallax-3 .img-content img, .swiper-horizontal-parallax-4 .img-content img, .swiper-horizontal-parallax-5 .img-content img, .swiper-horizontal-parallax-10 .img-content img {
  display:none;
}

.swiper-horizontal-parallax-1 .swiper-slide, .swiper-horizontal-parallax-2 .swiper-slide, .swiper-horizontal-parallax-3 .swiper-slide, .swiper-horizontal-parallax-4 .swiper-slide, .swiper-horizontal-parallax-5 .swiper-slide, .swiper-horizontal-parallax-10 .swiper-slide {
  overflow: hidden;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  transform: scale(1.07);
  -moz-transform: scale(1.07);
}

.swiper-horizontal-parallax-1 .swiper-slide-active, .swiper-horizontal-parallax-2 .swiper-slide-active, .swiper-horizontal-parallax-3 .swiper-slide-active, .swiper-horizontal-parallax-4 .swiper-slide-active, .swiper-horizontal-parallax-5 .swiper-slide-active, .swiper-horizontal-parallax-10 .swiper-slide-active {
  transform: scale(1);
  -moz-transform: scale(1);
  z-index: 2;
}

.swiper-horizontal-parallax-1 .swiper-slide .img-content, .swiper-horizontal-parallax-2 .swiper-slide .img-content, .swiper-horizontal-parallax-3 .swiper-slide .img-content, .swiper-horizontal-parallax-4 .swiper-slide .img-content, .swiper-horizontal-parallax-5 .swiper-slide .img-content, .swiper-horizontal-parallax-10 .swiper-slide .img-content {
  position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-position:center;
    background-size:cover;
}

.swiper4 .swiper-button-prev, .swiper4 .swiper-button-next, .swiper5 .swiper-button-prev, .swiper5 .swiper-button-next, .swiper6 .swiper-button-prev, .swiper6 .swiper-button-next, .swiper7 .swiper-button-prev, .swiper7 .swiper-button-next, .swiper8 .swiper-button-prev, .swiper8 .swiper-button-next {
  bottom: 0;
  top: auto;
}

.swiper4 .swiper-slide, .swiper5 .swiper-slide, .swiper6 .swiper-slide, .swiper7 .swiper-slide, .swiper8 .swiper-slide, .swiper21 .swiper-slide {
  padding-bottom: 2em;
  padding-right: 0.5em;
}

.swiper-button-prev-4, .swiper-button-next-4 {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: auto;
}






/* Animation */

.swiper4 h4, .swiper5 h4, .swiper6 h4, .swiper7 h4, .swiper8 h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transform: translateY(30%);
  transform: translateY(30%);
  opacity: 0;
  -webkit-transition: opacity .5s, -webkit-transform .5s;
  transition: opacity .5s, -webkit-transform .5s;
  transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s, -webkit-transform .5s;
  will-change: transform, opacity;
}

.swiper4 p, .swiper5 p, .swiper6 p, .swiper7 p, .swiper8 p, .swiper4 ul, .swiper5 ul, .swiper6 ul, .swiper7 ul, .swiper8 ul, .swiper4 a, .swiper5 a, .swiper6 a, .swiper7 a, .swiper8 a {
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
  opacity: 0;
  -webkit-transition: opacity .5s, -webkit-transform .5s;
  transition: opacity .5s, -webkit-transform .5s;
  transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s, -webkit-transform .5s;
  will-change: transform, opacity;
}

.swiper4 .swiper-slide-active h4, .swiper5 .swiper-slide-active h4, .swiper6 .swiper-slide-active h4, .swiper7 .swiper-slide-active h4, .swiper8 .swiper-slide-active h4 {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.swiper4 .swiper-slide-active p, .swiper5 .swiper-slide-active p, .swiper6 .swiper-slide-active p, .swiper7 .swiper-slide-active p, .swiper8 .swiper-slide-active p, .swiper4 .swiper-slide-active ul, .swiper5 .swiper-slide-active ul, .swiper6 .swiper-slide-active ul, .swiper7 .swiper-slide-active ul, .swiper8 .swiper-slide-active ul, .swiper4 .swiper-slide-active a, .swiper5 .swiper-slide-active a, .swiper6 .swiper-slide-active a, .swiper7 .swiper-slide-active a, .swiper8 .swiper-slide-active a {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}




.swiper-section .swiper-pagination-bullet {
  position: relative;
  width: 40px;
  height: 1px;
  display: inline-block;
  border-radius: 0;
  margin-right: 2px;
  background-color: var(--nav-gray);
  opacity: 1;
}

.swiper-section .swiper-pagination-bullet-active {
  transition: all ease 1s;
}

.swiper-section .small-lines .swiper-pagination-bullet {
  width: 20px;
}

/* LTR */
.pagination-lines {
  position: absolute;
  right: calc(50% - 3vw);
  left: auto;
  bottom: 55px;
  transform: rotate(270deg) translate(100%, 0%);
  transform-origin: bottom right;
}

/* RTL */
.swiper-section.rtl .pagination-lines {
  right: calc(50% + 3vw);
}

/* LTR */
.pagination-numbers {
  position: absolute;
  right: calc(50% - 3vw);
  left: auto;
  transform: rotate(270deg) translate(100%, 0%);
  transform-origin: bottom right;
  width: auto;
  font-size: 0.8rem;
  font-weight: bold;
}

/* RTL */
.swiper-section.rtl .pagination-numbers {
  right: calc(50% + 2.5vw);
}

.pagination-numbers {
  margin-bottom: 0;
}


/* SWIPER PAGINATIONS */

.swiper-pagination-bullet i {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 1px;
  background-color: var(--mid-gray);
}
.swiper-pagination-bullet b {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 0%;
  height: 1px;
  background-color: var(--black);
}

.swiper-pagination-bullet-active {
  background-color: transparent;
}
.swiper-pagination-bullet-active b {
  animation-name: countingBar;
  animation-duration: 0.7s;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

@keyframes countingBar {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}




/*--------------------------------------------------
	HOME
---------------------------------------------------*/

#heads {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  background-size: cover;
  background-position: center center;
  background-color: var(--black);
}

div#parallax-container {
  position: relative;
  float: left;
  height: 100%;
  width: 100%;
}

#parallax-container section.section {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
}

.section-parallax {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.parallax-content {
  background-size: cover;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 120%;
}

video {
    width: 100%;
    height: 110vh;
    object-fit: cover;
}

.stoerer {
  position: absolute;
  width: clamp(10rem, 14vw, 14rem);
  height: clamp(10rem, 14vw, 14rem);
  padding: clamp(1rem, 2vw, 2rem);
  line-height: 1;
  background: var(--dark-blue);
  top: 20%;
  right: 10%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  transform: rotate(12deg);
  hyphens: none;
  white-space: pre-wrap;
}

.stoerer p {
  margin: 0;
  line-height: 1.5;
  hyphens: none;
  font-size: min(max(0.9rem, 1.25vw), 1.25rem);
}

span.small-nav-text {
  display: block;
  position: relative;
  float: left;
  hyphens: none;
  word-break: keep-all;
  color: var(--white);
  font-weight: 600;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-size: min(max(0.6rem, 0.7vw), 0.8rem);
}

.header.unterseite span.small-nav-text {
  color: var(--black);
}

.header-content {
  position: absolute;
  top: 50%;
  left: 15%;
  z-index: 2;
  color: var(--white);
  max-width: 35%;
  transform: translate(0, -50%);
}

.header-content h1 {
  margin-bottom: 1rem;
}

.scroll-down {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: min(max(0.4rem, 0.5vw), 0.6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-down img {
  max-width: clamp(8px, 2vw, 12px);
  height: auto;
}

span.scroll {
  font-weight: 600;
  margin-top: 1rem;
}

.bild {
  position: relative;
  float: left;
  width: 100%;
  height: clamp(20rem, 25vw, 40rem);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.startseite-produkte {
  column-gap: 10px!important;
}

.startseite-produkt .bild {
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.11);
  box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.11);
}

.sortiment-content {
  position: relative;
  float: left;
}

.sortiment-content .icon {
  width: clamp(2rem, 3vw, 3rem);
}

.sortiment-content h2:first-line {
  font-weight: 600!important;
}

.engagement img {
  width: clamp(2rem, 2.5vw, 2.5rem);
}

.bereich {
  position: relative;
  display: flex;
  align-items: center;
}

.bereich span {
  font-size: min(max(0.6rem, 0.7vw), 0.8rem);
  font-family: var(--title-font);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-left: 10px;
}

.engagement h1 {
  color: var(--black);
  font-size: min(max(2.5rem, 3.5vw), 4rem);
  line-height: 1;
}

/*
.engagement .swiper-slide {
  opacity: 1;
  transition: opacity .3s ease-in-out;
}

.engagement .swiper-slide.swiper-slide-next {
  opacity: 0.2;
}

.engagement .swiper-slide.swiper-slide-prev {
  opacity: 0;
}
*/

.engagement {
  background-color: var(--gray);
  overflow: hidden;
}

.swiper1c {
  display: none;
}

.swiper1 {
  overflow: visible;
  z-index: 2;
}

.swiper1 .swiper-slide {
  padding: 0 100px;
  height: 600px;
  display: flex;
  align-items: flex-end;
  opacity: 0.2;
  transition: opacity .3s ease-in-out;
}

.swiper1 .swiper-slide-active {
  opacity: 1;
}

.swiper1 .swiper-content {
  width: 50%;
  padding-right: 10%;
}

.swiper1_images {
  height: 600px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  padding: 0 70px;
  display: flex;
  overflow: visible;
}

.swiper1_images .swiper-slide {
  transition-duration: .7s;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
}

.swiper1_images .swiper-slide-prev {
  opacity: 0;
}

.swiper1_images .swiper-slide-next {
  opacity: 0;
}

/*
.swiper1_images .swiper-wrapper {
  height: 600px;
  position: relative;
  margin-left: auto;
  margin-right: 0;
  width: 50%;
  display: flex;
}

.swiper1_images .swiper-slide {
  opacity: 0;
  width: 50%;
  -webkit-transition-property: opacity,transform;
  -webkit-transition-duration: .7s;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-property: opacity,transform;
  -moz-transition-duration: .7s;
  -moz-transition-timing-function: ease-in-out;
  -ms-transition-property: opacity,transform;
  -ms-transition-duration: .7s;
  -ms-transition-timing-function: ease-in-out;
  -o-transition-property: opacity,transform;
  -o-transition-duration: .7s;
  -o-transition-timing-function: ease-in-out;
  transition-property: opacity,transform;
  transition-duration: .7s;
  transition-timing-function: ease-in-out;
}

.swiper1_images .swiper-slide-active {
  opacity: 1;
}

.swiper1_images .slider-image {
  position: relative;
  float: left;
  width: 50%;
  height: clamp(30rem, 40vw, 40rem);
}*/



.swiper-container-engagement {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  max-width: 68.75rem;
}

.engagement h5 {
  position: absolute;
  top: 0;
  left: 100px;
}

.swiper-container-engagement .swiper-buttons {
  position: absolute;
  left: 100px;
  top: 60px;
}

.about-startseite .grid {
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
}

.about-startseite img {
  max-width: clamp(9rem, 25vw, 25rem);
}

.home-video video {
  width: 100%;
  height: clamp(20em, 45vw, 70vh);
  object-fit: cover;
}

.video-transform {
  clip-path: polygon(20% 0%, 80% 0%, 80% 100%, 20% 100%);
  will-change: clip-path;
}

a.video-button {
  position: absolute;
  bottom: 5%;
  right: 5%;
  color: var(--white);
  z-index: 999;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--white);
  font-weight: 600;
}

a.video-button::before {
  position: absolute;
  content: '';
  left: -2.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url('/static/images/play.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 0.5rem;
}

.fact h2:first-line {
  font-weight: 600;
}

h2 small {
  font-size: 1rem;
  letter-spacing: 1px;
}

.fact {
  border-top: 1px solid var(--blue);
}

.card {
  position: relative;
  float: left;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: clamp(25rem, 35vw, 35rem);
  -webkit-box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.11); 
  box-shadow: 5px 5px 15px 5px rgba(0,0,0,0.11);
}

.card .sortiment-content {
  position: absolute;
  bottom: 0;
  color: var(--white);
}

.card .sortiment-content h2 {
  color: var(--white);
}

.card .sortiment-content .icon {
  width: clamp(2rem, 2.5vw, 2.5rem);
}

.inside .bild {
  height: clamp(15rem, 25vw, 25rem);
}

.content {
  position: relative;
  float: left;
  width: 100%;
}

p.date {
  position: relative;
  float: left;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-size: min(max(0.8rem, 1vw), 1.0rem);
  letter-spacing: 1px;
  line-height: 1;
}

a.inside-title {
  float: left;
  width: 100%;
  font-size: min(max(0.8rem, 1.25vw), 1.25rem);
  margin-bottom: 1rem;
  color: var(--black);
}

.footer-nav {
  position: relative;
  float: left;
  width: 100%;
}

.footer-nav ul {
  list-style-type: none;
  width: 100%;
}

.footer-nav li {
  padding: 0.75rem 0 0.5rem 0;
  border-bottom: 1px solid var(--blue);
  max-width: 15em;
  margin-left: 0;
}

.footer-nav li:before {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  background-image: url('/static/images/button-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

img.zertifikat {
  /*-webkit-filter: grayscale(100%);
  filter: grayscale(100%);*/
  max-width: 6rem;
  max-height: 6rem;
  object-fit: contain;
}

.swiper2 .swiper-wrapper {
  display: flex;
  align-items: center;
}



/*--------------------------------------------------
	SORTIMENT
---------------------------------------------------*/

.swiper3 .swiper-buttons {
  top: 2rem;
}

.sortiment-item img {
  margin-top: 4rem;
}

.sortiment-item h1 {
  color: var(--black);
  letter-spacing: 2px;
  font-family: var(--title-font);
  font-size: min(max(2rem, 3vw), 3.5rem);
  margin-bottom: 0;
}

.sortiment-item a.button {
  width: 80%;
  float: left;
  padding-bottom: 0.25rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

ul.pdfs {
  position: relative;
  float: left;
  width: 80%;
}

.pdfs li {
  padding: 0.25rem 0;
  list-style-type: none;
  margin-left: 0;
}

.pdfs li:before {
  content: '';
  height: 20px;
  width: 20px;
  background-image: url('/static/images/icon-pdf.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

ul.reissorten {
  list-style-type: none;
  column-count: 2;
  column-gap: 0;
}

.reissorten li {
  display: inline-block;
  width: 100%;
  margin-left: 0;
}

.reissorten a.button {
  float: left;
  width: 90%;
  padding-bottom: 0.5rem;
  font-weight: normal;
  color: var(--black);
}

ul.herkunftslaender {
  list-style-type: none;
  column-count: 2;
  column-gap: 0;
}

.herkunftslaender a.button {
  float: left;
  width: 90%;
  padding-bottom: 0.5rem;
  font-weight: normal;
  color: var(--black);
}

.herkunftslaender li {
  display: inline-block;
  width: 100%;
  margin-left: 0;
}

.flag {
  position: relative;
  float: left;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 2rem;
}

table.tabelle {
  width: 100%;
  border-collapse: collapse;
  font-size: min(max(0.8rem, 0.9vw), 0.9rem);

  flex-wrap: nowrap;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
}

.tabelle tbody {
  min-width: 60em;
}

table.tabelle td, table.tabelle th {
  border: 1px solid var(--nav-gray);
  padding: 5px 10px 3px;
}

.tabelle th {
  font-weight: 500;
  text-align: left;
}

th.hide {
  border: none!important;
}

th.fixed {
  width: 7rem;
}

th.standardsortimente {
  border-top: none!important;
  border-right: none!important;
}

.checked {
  position: relative;
  float: none;
  width: 10px;
  height: 10px;
  background: var(--black);
  margin: 0 auto;
}

a.pdf-sortiment {
  color: var(--black);
}

a.pdf-sortiment:before {
  content: '';
  position: relative;
  float: left;
  height: 18px;
  width: 18px;
  background-image: url('/static/images/icon-pdf.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 6px;
}

.bilder {
  position: relative;
  float: left;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  column-gap: 2rem;
  align-items: center;
}

.bilder img {
  max-width: 6rem;
  height: 6rem;
  width: auto;
  max-height: 6rem;
  object-fit: contain;
}

/*--------------------------------------------------
	GALERIE
---------------------------------------------------*/

.gallery a {
  position: relative;
  float: left;
  height: clamp(14rem, 24vw, 24rem);
}

.gallery-image {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



/*--------------------------------------------------
	NACHHALTIGKEIT
---------------------------------------------------*/

.meilensteine {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  overflow: scroll;
}

.meilenstein {
  position: relative;
  float: left;
  width: 40%;
  margin-right: 10%;
  flex: 0 0 50%;
}

.meilenstein h1 {
  color: var(--black);
  margin-bottom: 1rem;
}


/*--------------------------------------------------
	UNSER VERSPRECHEN
---------------------------------------------------*/

.hero {
  height: clamp(20rem, 45vw, 45rem);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

p.quote {
  font-size: min(max(1.20rem, 1.5vw), 1.5rem);
  font-weight: bold;
  line-height: 1.5;
}


/*--------------------------------------------------
	FAIR & GOOD
---------------------------------------------------*/

.projekte ul li p {
  display: inline;
}

.projekte ul li ul {
  margin-left: 1rem;
  list-style-type: circle;
}

.projekt-titel {
  position: relative;
  float: left;
  width: 100%;
  border-bottom: 1px solid var(--black);
  padding-bottom: 0.5rem;
  font-weight: 500;
}

.swiper-default-1, .swiper-default-2 {
  height: clamp(20rem, 40vw, 50rem);
  width: 100%;
  margin: 0;
}

.slide-inner {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.swiper-default-1 .swiper-button-prev, .swiper-default-2 .swiper-button-prev {
  left: clamp(1rem, 2vw, 2rem);
}

.swiper-default-1 .swiper-button-next, .swiper-default-2 .swiper-button-next {
  right: clamp(1rem, 2vw, 2rem);
  left: auto;
}

.swiper-default-1 .swiper-button-prev:after, .swiper-default-1 .swiper-button-next:after, .swiper-default-2 .swiper-button-prev:after, .swiper-default-2 .swiper-button-next:after {
  background-image: url(/static/images/slider-arrow.svg);
  width: 30px;
  height: 30px;
}




/*--------------------------------------------------
	OEM LABEL
---------------------------------------------------*/

.oem-produkte {
  grid-template-columns: 1fr 1fr 1fr;
}


/*--------------------------------------------------
	REISSORTEN
---------------------------------------------------*/

.sorten {
  grid-template-columns: 1fr 1fr 1fr;
}


/*--------------------------------------------------
	INSIDE
---------------------------------------------------*/

.insides .grid {
  grid-template-columns: 1fr 1fr 1fr;
}

.pagination a {
  padding: 15px 25px;
  background: var(--white);
  color: var(--black);
  font-size: 0.8rem;
  border: 1px solid var(--gray);
}

.pagination span.current {
  padding: 16px 26px;
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  font-size: 0.8rem;
}

.pagination {
  position: relative;
  float: left;
}

span.date {
  font-weight: bold;
  margin-bottom: 2rem;
  float: left;
  width: 100%;
}

span.person {
  font-weight: 500;
}

/*--------------------------------------------------
	INSIDE
---------------------------------------------------*/

.grid.team {
  grid-template-columns: 1fr 1fr 1fr;
}




/*--------------------------------------------------
	SHOP
---------------------------------------------------*/

.shop-banner {
  height: auto;
  padding: 4rem 0px;
  display: flex;
  justify-content: flex-end;
}

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

.benefit {
  background: var(--mid-gray);
  text-align: center;
}

.benefit p {
  line-height: 1.25;
  margin-bottom: 0;
}

.banner-content {
  position: relative;
  background: var(--white);
  width: 50%;
  margin-right: 6rem;
  padding: clamp(2rem, 3vw, 3rem);
}

.banner-content h2 {
  font-weight: bold;
  margin-bottom: 1rem;
}

.banner-content h2, .banner-content h2:first-line {
  font-weight: bold;
  hyphens: none;
}

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

.shop-filter h2:first-line {
  font-weight: bold;
}

input#search-input {
  border: none;
  border-bottom: 1px solid var(--dark-blue);
  padding: 1rem 0;
  font-size: 0.9rem;
  color: var(--dark-blue);
  outline: none;
  width: clamp(10rem, 14vw, 14rem);
}

button#filter-button {
  background: var(--dark-blue);
  padding: 0.75rem 3rem 0.75rem 1.5rem;
  margin-left: 1rem;
  border: none;
  border-radius: 3rem;
  font-weight: bold;
  color: var(--white);
  font-size: 0.9rem;
  cursor: pointer;
}

button#filter-button:after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translate(0, -50%);
  width: 1.25rem;
  height: 1rem;
  background-image: url('/static/images/filter-button-arrow.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.shop-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.shop-item {
  width: calc(25% - 1rem);
  margin-bottom: 1rem;
  padding: 2rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.shop-item.is-in-slider {
  width: 100%;
  padding: 2rem 0;
}

.shop-item img {
  height: clamp(18rem, 26vw, 25rem);
  object-fit: contain;
}

.shop-highlight {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  margin-bottom: 0;
}

.shop-item.shop-highlight img {
  height: 100%;
  min-height: clamp(18rem, 26vw, 25rem);
  object-fit: cover;
}

.shop-highlight-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: calc(100% - 2rem);
  bottom: 1rem;
  left: 1rem;
}

.shop-highlight h5 {
  color: var(--white);
  margin-bottom: 1rem;
}

a.shop-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}

.shop-highlight a.button {
  border-color: var(--white);
  color: var(--white);
}

.artikel-text span, .artikel-text p {
  font-family: var(--common-font)!important;
}

.artikel-text h2 {
  font-family: 'novecento-sans-wide', sans-serif;
  font-weight: 300;
}

.produkt-accordion .accordion__body, .produkt-accordion .accordion__title {
  padding: 0.75rem 0;
}

.produkt-swiper .swiper-slide img {
  max-height: 100%;
  object-fit: contain;
}

.buy-button {
  padding: 10px 20px;
  border-radius: 30px;
  background-color: var(--dark-blue);
  border: none;
  cursor: pointer;
  color: var(--white);
  width: 100%;
  font-weight: bold;
  float: left;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.shop-item button.buy-button {
  margin-top: 0;
  margin-bottom: 1rem;
}

.variant {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

select#variant-select, select.variant-select {
  height: 2rem;
  border-radius: 30px;
  font-weight: bold;
  padding: 0 1rem;
  background: transparent;
  border-color: #ccc;
  outline: 0;
  margin-bottom: 0.5rem;
}

.artikel-text #variant-select {
  margin-bottom: 0;
}

.artikel-text .variant {
  justify-content: space-between;
  flex-wrap: nowrap;
}

.amount {
  width: 100%;
  position: relative;
  float: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.amount-selector {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.amount-button {
  width: 2rem;
  height: 2rem;
  background-color: transparent;
  border: 1px solid #ccc;
  cursor: pointer;
  border-radius: 50%;
}

.amount-value {
  font-size: 1rem;
  margin: 0 0.25rem;
  font-weight: bold;
}

.shop-item .amount {
  justify-content: flex-start;
  margin-bottom: 0;
}

.artikel-text {
  position: relative;
  float: left;
  width: 100%;
  height: auto;
}

a.back {
  font-weight: bold;
  text-transform: uppercase;
  padding-left: 28px;
  line-height: 1;
  cursor: pointer;
}

a.back:before {
  content: '';
  top: 50%;
  left: 0;
  position: absolute;
  transform: translate(0, -65%);
  width: 18px;
  height: 12px;
  background-image: url('/static/images/back.svg');
  background-repeat: no-repeat;
  background-position: center;
}

label {
  font-weight: bold;
}

a.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.swiper-zubereitung .swiper-slide {
  padding: clamp(4rem, 8vw, 8rem);
  background: var(--gray);
  height: auto;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--blue);
  height: 2px;
}

.swiper-paginatio-10n {
  color: var(--blue);
  opacity: 0.25;
  height: 2px;
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: 2px;
}

.swiper-pagination.swiper-pagination-10.swiper-pagination-progressbar {
  bottom: 0;
  top: auto;
}

.swiper-button-next.swiper-button-next-10 {
  margin-left: 0;
  right: 2rem;
  left: auto;
}

.swiper-button-prev.swiper-button-prev-10 {
  margin-left: 0;
  left: 2rem;
  right: auto;
}

.swiper-slide ol {
  margin-left: 0;
  padding-left: 0;
}

.rezept-detail h2::first-line {
  font-weight: bold;
}

.rezept-detail h3 {
  color: var(--dark-blue);
}

.weiteres-produkt {
  display: flex;
}

.weiteres-produkt img {
  width: clamp(4rem, 6vw, 8rem);
  object-fit: contain;
}

.zutaten h4 {
  float: left;
  width: 100%;
}

table#ingredient-list {
  margin-bottom: 2rem;
}


/*--------------------------------------------------
	WARENKORB / CART
---------------------------------------------------*/

.cart_window {
  z-index: 1100;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  position: fixed;
  top: 0;
  right: -32rem;
  height: 100vh;
  width: 32rem;
  background-color: var(--white);
  padding: 3rem;
  transition: transform 0.3s ease-in-out;
  overflow: auto;
}

.cart_header {
  display: flex;
  justify-content: space-between;
}

.cart_header-button {
  display: block;
  height: 2rem;
  width: 2rem;
  cursor: pointer;
}

.cart_header h2:first-line {
  font-weight: bold;
}

.cart_item {
  position: relative;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ccc;
  margin-top: 2rem;
  padding: 0 3rem 2rem 0;
}

.cart_item .item_image {
  object-fit: contain;
  width: 6rem;
  height: 6rem;
}

.item_content {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: calc(100% - 10rem);
}

.item_content strong {
  text-transform: uppercase;
}

.item_wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

.variant-cart-price p {
  font-weight: bold;
  color: var(--dark-blue);
  font-size: min(max(1.1rem, 1.25vw), 1.25rem);
}

img.item_cancel {
  z-index: 1010;
  position: absolute;
  width: 1rem;
  border: none;
  cursor: pointer;
  text-align: center;
  right: 0;
  top: 0;
  margin: 0;
  padding: 0;
  background-color: white;
}

#cart-items {
  flex: 1;
}

.cart_show {
  z-index: 1090;
  position: fixed;
  right: calc(0px - 20px);
  top: 50%;
  transform: translate(-50%);
  height: 60px;
  width: 60px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.cart_icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.cart-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-input {
  font-size: 1rem;
  margin: 0 0.25rem;
  font-weight: bold;
}

.minus-button, .plus-button {
  border-radius: 50%;
  border: 1px solid #ccc;
  height: 2rem;
  width: 2rem;
  background: transparent;
  cursor: pointer;
}

#checkout-button {
  padding: 10px 20px;
  border-radius: 30px;
  background-color: var(--dark-blue);
  border: none;
  cursor: pointer;
  color: var(--white);
  width: 100%;
  font-weight: bold;
  float: left;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.cart-total p {
  font-weight: bold;
  color: var(--dark-blue);
  font-size: 1.1rem;
}

.agb label {
  font-weight: normal;
  font-size: 1rem;
  line-height: 1;
}

input#agb-checkbox {
  margin-left: 0;
}

/* Klassen für JS Funktionen */
.cart_window.show {
  transform: translateX(-100%);
  box-shadow: 0 0 30px 20px rgba(0, 0, 0, .1);
}

.cart {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 2rem;
  line-height: 1;
}

.cart img {
  width: 1.25rem;
  height: 1.25rem;
}

span#cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  z-index: 11;
  width: 0.8rem;
  height: 0.8rem;
  display: flex!important;
  justify-content: center;
  align-items: center;
  color: white;
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.6rem;
  line-height: 1;
  text-align: center;
  margin: 0;
  padding: 0.15rem 0 0 0;
}

/*--------------------------------------------------
	FILTER
---------------------------------------------------*/


.filter_window {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  height: 100vh;
  background: white;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.filter_window.show {
  transform: translateX(0);
  z-index: 9999;
}

.filter_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.filter_header-button {
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.filter_categories {
  margin-bottom: 20px;
}

.filter_categories h3 {
  margin-bottom: 15px;
  font-size: 1.2em;
  margin-top: 2rem;
}

.filter_category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-category {
  padding: 10px;
  border: 1px solid #ddd;
  background: white;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-category:hover {
  background: #f5f5f5;
}

.filter-category.active {
  background: #000;
  color: white;
  border-color: #000;
}

.filter_actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.filter_actions button {
  flex: 1;
  padding: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

#filter-reset {
  background: #f5f5f5;
}

#filter-reset:hover {
  background: #e0e0e0;
}

#filter-apply {
  background: #000;
  color: white;
}

#filter-apply:hover {
  background: #333;
}

/* Overlay when filter is open */
.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(66, 66, 66, 0.50);
  z-index: 999;
  display: none;
}

.filter-overlay.show {
  display: block;
} 


/*--------------------------------------------------
	REZEPTE
---------------------------------------------------*/

.servings {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-bottom: 4rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
}

.servings-controls {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}

.servings label {
  font-weight: normal;
}

span#servings {
  font-size: 1rem;
  margin: 0 0.25rem;
  font-weight: bold;
}

button#decrease, button#increase {
  background: transparent;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid #ccc;
  cursor: pointer;
}

table.ingredient-table tr td:first-child {
  font-weight: bold;
  text-align: right;
  padding-right: 2rem;
  hyphens: none;
  white-space: nowrap;
  line-height: 2;
}

.swiper-zutaten {
  padding: 2rem 3rem;
  background: var(--gray);
  height: auto;
  width: 100%;
  min-width: 0;
  min-height: 0;
}

.swiper-zutaten .swiper-slide {
  background: var(--gray);
}

.swiper-zutaten .produkt-details {
  display: flex;
  align-items: center;
  background: var(--white);
  margin: 2rem 0;
}

.swiper-button-prev.swiper-button-prev-11 {
  top: auto;
  transform: none;
  bottom: 2rem;
  left: 3rem;
}

.swiper-button-next.swiper-button-next-11 {
  top: auto;
  transform: none;
  bottom: 2rem;
  right: 3rem;
  left: auto;
}

.produkt-name-preis {
  margin: 2rem 2rem 2rem 0;
}

.produkt-details img {
  width: 40%;
  margin-right: 1rem;
}

.rezept img {
  height: clamp(16rem, 24vw, 24rem);
  object-fit: cover;
  margin-left: 1rem;
  width: calc(100% - 1rem);
}

.rezept-details {
  background: var(--mid-gray);
  padding: 1.5rem;
  width: 90%;
  transform: translate(0, -60%);
}

.rezept-details h5 {
  hyphens: none;
  white-space: pre-wrap;
}

.title-button {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.title-button h2:first-line {
  font-weight: bold;
}

.rezept-attribute {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-top: 1rem;
}

.attribut {
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 0.5px solid var(--black);
  white-space: nowrap;
}

.rezept-attribute .attribut:last-child {
  border: none;
  margin-right: 0;
}

.attribut p {
  line-height: 1.25;
  margin: 0;
}

p.small-text {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  margin-bottom: 0;
  color: white;
}


/*--------------------------------------------------
	KOCHMODUS
---------------------------------------------------*/

.kochmodus {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--white);
  display: none;
}

.kochmodus.show {
  display: block;
  z-index: 9999;
}

img.close-kochmodus {
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 2rem;
  top: 2rem;
  z-index: 11;
  cursor: pointer;
}

.swiper-kochmodus {
  height: calc(100% - 3rem);
}

.kochmodus-navigation {
  position: relative;
  width: 100%;
  height: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1.4px solid rgba(32, 62, 86, 0.25);
  padding: 0 2rem;
}

.swiper-button-prev-12, .swiper-button-next-12 {
  position: relative;
  margin: 0;
  transform: none;
  top: auto;
}

.kochmodus-content {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
  background: var(--white);
}

.kochmodus-bild {
  height: 100%;
  width: 100%;
}

.kochmodus-bild h1 {
  position: fixed;
  z-index: 11;
  left: 5%;
  bottom: 5%;
  width: 34%;
}

.kochmodus-bild img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.kochmodus-bild .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.49) 0%, rgba(0, 0, 0, 0.00) 100%);
}

.first-step.kochmodus-content table {
  width: 70%;
  border-bottom: none;
}

.kochmodus-content table {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ccc;
  width: 100%;
  display: flex;
}

.kochmodus-text {
  overflow: auto;
  height: 100vh;
}

.kochmodus-text-content {
  position: relative;
  float: left;
  width: 100%;
  height: auto;
  /* overflow: scroll; */
}

.kochmodus-text span#servings {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
  line-height: inherit;
}

.kochmodus-end-button {
  width: auto;
  top: 50%;
  transform: translate(0, -50%);
  line-height: 1;
  height: auto;
  font-weight: bold;
  color: var(--blue);
  right: 2rem;
}


/*------------------------------------------------------------------------------------------------------------------------------------------------------
	RESPONSIVE
-------------------------------------------------------------------------------------------------------------------------------------------------------*/



@media (prefers-color-scheme: dark) {


}



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

  /* ///// C0NTAINER AND T_YPO ///// */
  
  
  /* ///// H3ADER ///// */

  
  /* ///// N@VIGATION ///// */
  
  
  /* ///// SL1DER ///// */
  
  
  /* ///// C0NTENT ///// */
  
  }



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

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */

}

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

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */

.inside .bild {
  height: clamp(12rem, 20vw, 25rem);
}

.swiper1 .swiper-slide {
  height: 500px;
}

.swiper1_images {
  height: 500px;
  padding: 0 100px;
}
  
}

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

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}

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

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */


  
}

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

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */

.bilder {
  column-gap: 1rem;
}

.bilder img {
  max-width: 4rem;
  height: 4rem;
  max-height: 4rem;
}

.swiper1 .swiper-slide {
  padding: 0 7%;
}

.swiper1_images {
  padding: 0 7% 0 70px;
}

.engagement h5 {
  left: 7%;
}

.swiper-container-engagement .swiper-buttons {
  left: 7%;
}

.header.unterseite {
  height: 70px;
}

  
}



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

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */

a.logo {
  top: clamp(1em, 3vw, 3em);
}

.header_nav ul {
  margin: 8px auto;
}

.header_nav ul li a {
  margin: 0 1rem;
}

ul.language-switcher {
  margin-right: 265px;
}

/* ///// N@VIGATION ///// */

.header_fadein {
  height: 60px;
}

/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */

.card .sortiment-content {
  width: 22em;
}
  
}

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

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */

/* ///// C0NTENT ///// */
  
}

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

  /* ///// C0NTAINER AND T_YPO ///// */

  .kochmodus-bild {
    height: 20rem;
  }

  .swiper-zutaten {
    padding: 1rem 2rem 2rem;
  }

  .swiper-zubereitung .swiper-slide {
    padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 4vw, 4rem) 4rem;
  }

  .swiper-button-prev.swiper-button-prev-11 {
    left: 2rem;
  }

  .swiper-button-next.swiper-button-next-11 {
    right: 2rem;
  }

  .shop-item {
    width: 100%;
  }

  .rezept img {
    margin-left: 0;
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    float: left;
    z-index: 11;
  }

  .rezept-details {
    padding: 1.5rem;
    width: 100%;
    transform: none;
    float: left;
  }

  .swiper-button-next.swiper-button-next-10 {
    margin-left: 0;
    right: 2rem;
    left: auto;
    bottom: 2rem;
    top: auto;
  }

  .swiper-button-prev.swiper-button-prev-10 {
    margin-left: 0;
    right: 2rem;
    left: auto;
    bottom: 2rem;
    top: auto;
  }

  .title-button {
    align-items: center;
  }

  .kochmodus-navigation {
    position: fixed;
  }

  .swiper-kochmodus {
    height: 100%;
  }

  /* ///// H3ADER ///// */

  .shop-banner {
    height: clamp(30rem, 40vw, 40rem);
    padding: 2rem 0px;
    justify-content: center;
    align-items: flex-end;
  }

  .banner-content {
    width: calc(100% - 2rem);
    margin-right: 0;
  }

  .cart {
    right: 4.5rem;
  }

  .cart_window {
    right: -90%;
    width: 90%;
  }

  a.header-button {
    margin-right: 22rem;
}
  

  /* ///// N@VIGATION ///// */


  /* ///// SL1DER ///// */

  .tab-accordion {
    display: block;
  }

  .tabs.swiper-pagination-bullets, .tab-section {
    display: none;
  }

  /* ///// C0NTENT ///// */
    
  .card .sortiment-content {
    width: 17em;
}

.shop-filter {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

.filter {
  display: flex;
  float: left;
  width: 100%;
  margin-top: 2rem;
  justify-content: space-between;
}

input#search-input {
  width: 60%;
}

.kochmodus {
  height: 100%;
}

.kochmodus-bild h1 {
  position: absolute;
  width: 90%;
}

.item_content {
  width: 100%;
  margin-left: 1rem;
}

}

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

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */

.header-content {
  max-width: 50%;
}

.heads-title {
  width: 100%;
}

.heads-title h2 {
  margin-left: 7%;
}


/* ///// N@VIGATION ///// */

#navigationWrap {
  width: 90%;
  height: 100%;
  transform: translateY(0) translateX(100%);
  z-index: 1008;
}

#navigationWrap_bg {
  z-index: 1007;
}

.menu-container {
  width: 90%;
}

.menu-container nav {
  align-items: flex-start;
  padding-top: 20px;
}

nav ul {
  display: block;
}

nav ul > li.subnav, nav ul > li.mainnav {
  margin: 0;
  padding: 0;
}

nav ul li span {
  line-height: 1;
  padding: 20px 0 15px 0;
  margin: 0;
  border-bottom: 1px solid var(--blue);
}

nav ul li.subnav span:after {
  content: '';
  width: 14px;
  height: 7px;
  position: absolute;
  background-image: url('/static/images/button-arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}

nav ul li ul {
  position: fixed;
  display: block;
  top: 0;
  left: auto;
  width: 90%;
  height: 100vh;
  min-height: 0;
  max-height: 100%;
  padding: 145px 35px 2em;
  background: var(--white);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.05);
  -moz-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.05);
  box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.05);
  right: -120%;
  margin-top: 0;
  z-index: 11;
  overflow-y: auto;
  transform: none;
  opacity: 1;
  transition: all 0.7s cubic-bezier(.80, 0, .15, 1);
  -webkit-transition: all 0.7s cubic-bezier(.80, 0, .15, 1);
  -moz-transition: all 0.7s cubic-bezier(.80, 0, .15, 1);
}

li.subnav ul li {
  padding: 0;
}

li.subnav ul li a {
  display: block;
  width: 100%;
  font-size: 0.9rem;
  padding: 14px 0;
  border-bottom: solid 1px var(--blue);
}

nav ul li ul.open {
  right: 0;
}

.button.goback {
  position: absolute;
  display: block;
  padding: 3px 0 3px 25px;
  margin-bottom: 0;
  left: 35px;
  top: 100px;
  opacity: 1;
  width: auto;
  font-size: 12px;
  text-transform: none;
  font-weight: normal;
  color: var(--black);
  letter-spacing: 0.5px;
}

.button.goback:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 7px;
  z-index: 3;
  transform: translate(0, -50%) rotate(180deg);
  opacity: 1;
}

.canvas {
  position: fixed;
  top: 0;
  width: 0%;
  height: 100%;
  background: var(--white);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 1s cubic-bezier(.80, 0, .20, 1);
  -webkit-transition: all 1s cubic-bezier(.80, 0, .20, 1);
  -moz-transition: all 1s cubic-bezier(.80, 0, .20, 1);
}

.canvas.open {
  width: 90%;
  visibility: visible;
  opacity: 0.8;
}

/* ///// SL1DER ///// */



.swiper-section {
  display: block;
}

.tabs.swiper-pagination-bullets, .swiper-section.tab-section {
  display: none;
}

.swiper4, .swiper5, .swiper6, .swiper7, .swiper8 {
  width: calc(100% - 3em);
  float: left;
  margin-left: 3em;
  margin-right: 0;
  margin-bottom: 1em;
}

.swiper-horizontal-parallax-1, .swiper-horizontal-parallax-2, .swiper-horizontal-parallax-3, .swiper-horizontal-parallax-4, .swiper-horizontal-parallax-5, .swiper-horizontal-parallax-10 {
  width: calc(100% - 3em);
  float: left;
  margin-left: 3em;
  min-height: 18rem;
  max-height: 45rem;
  height: clamp(28rem, 45vw, 45rem);
}

.swiper4 .swiper-slide, .swiper5 .swiper-slide, .swiper6 .swiper-slide, .swiper7 .swiper-slide, .swiper8 .swiper-slide, .swiper21 .swiper-slide {
  padding-bottom: 0em;
  padding-right: 0em;
}

.pagination-numbers {
  position: absolute;
  right: auto;
  left: 0;
  transform: rotate(270deg) translate(-100%, 0);
  transform-origin: top left;
  top: 48px;
}

.pagination-lines {
  position: absolute;
  right: auto;
  left: -1px;
  bottom: auto;
  transform: rotate(270deg) translate(-100%, 0);
  transform-origin: top left;
  top: 105px;
}

.swiper-button-prev-4, .swiper-button-next-4 {
  position: absolute;
  top: 31px;
  bottom: auto;
  left: 0;
  right: auto;
}

.swiper4 h2, .swiper4 h3, .swiper4 h4, .swiper5 h2, .swiper5 h3, .swiper5 h4, .swiper6 h2, .swiper6 h3, .swiper6 h4, .swiper7 h2, .swiper7 h3, .swiper7 h4, .swiper8 h2, .swiper8 h3, .swiper8 h4 {
  width: 100%;
  margin: 40px 0 0;
}



/* ///// C0NTENT ///// */


ul.reissorten {
  column-count: 1;
}

.reissorten a.button {
  width: 94%;
}

.bilder {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 1rem;
}

.swiper1_images {
  padding: 0 7% 0 0;
}

.card .sortiment-content {
  width: 100%;
}

  
}



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

/* ///// C0NTAINER AND T_YPO ///// */

.bild {
  height: clamp(13rem, 50vw, 25rem);
}

/* ///// H3ADER ///// */

a.header-button {
  margin-right: 19rem;
}


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */


/*
.swiper1 .swiper-content {
  width: 100%;
  padding-right: 0;
}

.swiper1 .swiper-slide {
  height: auto;
}

.swiper1 .swiper-slide {
  align-items: flex-start;
  padding: 0;
}

.swiper1_images {
  position: relative;
  width: auto;
  height: clamp(13rem, 50vw, 25rem);
  padding: 0;
  margin: 60px 0 35px;
}

.engagement h5 {
  position: relative;
}

.swiper-container-engagement .swiper-buttons {
  position: relative;
  top: 35px;
}

*/

.swiper1c {
  display: block;
  margin: 100px 0 35px;
}

.swiper1, .swiper1_images {
  display: none;
}

.slider-image {
  position: relative;
  height: clamp(13rem, 50vw, 25rem);
}

.swiper1c .swiper-slide {
  padding: 0 7% 0 0;
  opacity: 0.4;
  transition: opacity .5s ease-in-out;
}

.swiper1c .swiper-slide-active {
  opacity: 1;
}

.inside .bild {
  height: clamp(12rem, 50vw, 25rem);
}

  
}

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

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */

ul.small-nav {
  margin-right: 50px;
}

ul.language-switcher {
  margin-right: 225px;
}

.heads-title h2 {
  margin-left: 5%;
}

ul.small-nav {
  display: none;
}

ul.language-switcher, .header_fadein ul.language-switcher {
  margin-right: 50px;
}

.header-content {
  left: 5%;
  max-width: 80%;
}

.stoerer {
  top: 14%;
  right: 6%;
}

.header_fadein a.header-button {
  margin-right: 124px;
}

a.header-button {
  margin-right: 8rem;
}



/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */

.engagement h5 {
  left: 8%;
}

.swiper-container-engagement .swiper-buttons {
  left: 8%;
}

.swiper1c .swiper-slide {
  padding: 0 5% 0 0;
}


/* ///// C0NTENT ///// */

}

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

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */



/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */

ul.herkunftslaender {
  column-count: 1;
}

.herkunftslaender a.button, .reissorten a.button {
  width: 100%;
}


}

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

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */

/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */

/* ///// C0NTENT ///// */

.bilder img {
  max-width: 3rem;
  height: 4rem;
  max-height: 3rem;
}
  
}

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

/* ///// C0NTAINER AND T_YPO ///// */


/* ///// H3ADER ///// */


/* ///// N@VIGATION ///// */


/* ///// SL1DER ///// */


/* ///// C0NTENT ///// */
  
}



/* ///// C00KIES ///// */



    /* popup */
.popup {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 0 0 / 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    background: #fff;
    font-size: 17px;
    position: fixed !important;
    z-index:  12453654565!important;
    visibility: hidden;
    opacity: 0;
 }
.popup.visible {
    visibility: visible;
    animation-name: visible;
    animation-duration: 1s;
    animation-fill-mode: forwards; 
}
@keyframes visible {
    from{opacity: 0;}
    to{opacity: 1;}
}
.center-text {
    margin-bottom: 28px !important;
}
.popup-wrapper {
    background: #fff;
    max-width: 544px;
    overflow: hidden;
    width: 100%;
    position: relative;
}
 .popup-wrapper.news-letter {
     max-width: 470px;
     top: 55px;
 }
 .popup-content {
    padding: 59px 46px 39px 60px;
 }
 .popup-content p {
    font-size: 14px;
    line-height: 22px;
    color: #303030;
    letter-spacing: 0.6px;
 }
 .popup-content h2 {
    font-size: 31px;
    margin-bottom: 23px !important;
 }
 .popup-header {
    position: relative;
    height: 195px;
    background: #FFF;
    margin-bottom: 36px;
 }
 .popup-header .radio-img {
    position: absolute;
    bottom: -50px;
    left: 60px;
 }
 .popup-header .badge-img {
    top: 19px;
}
.popup#popup_cookie {
    display: flex;
    left: unset;
    right: 30px;
    top: unset;
    bottom: 30px;
    z-index: 214748364733;
    box-shadow: 0px 2px 100px rgba(0, 0, 0, 0.102109);
  }
  #popup_cookie .popup-wrapper {
    max-width: 340px;
  }
  #popup_cookie .popup-content {
    padding: 27px 22px 27px 36px;
  }
  #popup_cookie .popup-content h2 {
    font-size: 27px;
    margin-bottom: 20px !important;
  }
  #popup_cookie .cookies-area {
    font-size: 15px;
    line-height: 17px;
    justify-content: center;
  }
  #popup_cookie .cookies-area .primary-btn {
    padding: 7.3px 0;
    width: 100px;
    border: none;
  }
  
  .popup h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .primary-btn {
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 15px;
  }


  
  @media (max-width: 768px) {
  .popup {
        padding: 0 25px;
        overflow: visible;
    }
    .popup-content {
        padding: 39px 26px 19px 40px;
    }
    .popup-content h2 {
        font-size: 25px;
    }
    .popup-content p {
        margin-bottom: 1.5rem !important;
    }
    #popup_cookie.popup {
        align-items: flex-end;
    }
  .popup#popup_cookie {
      left: 50%;
      width: 320px;
      transform: translate(-50%);
      display: block;
      /* top: 0; */
      z-index: 214748364733;
      box-shadow: 0px 2px 100px
        rgb(0 0 0 / 10%);
      padding: 0;
      display: flex;
      background: transparent;
      flex-direction: row;
      justify-content: center;
  }
    .popup-content{
      left: 0;
      right: 0;
      box-shadow: 0px 2px 100px rgb(0 0 0);
    }
    .primary-link{
      padding-bottom: 3px;
    }
  }
  
  .cookies-title{
    margin-bottom: .5rem;
    font-family: inherit;
    font-weight: 900;
    line-height: 1.2;
    color: inherit;
  }
  .cookies-area .primary-btn {
    padding: 15px 0;
    background: #000; 
     color: #fff;
    width: 120px;
     text-align: center;
  } 
  
  .cookies-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .primary-link, .page-banner .primary-heading a {
    color: #2C2C2C;
    position: relative;
    padding-bottom: 7px;
  }
  .primary-link:after, .home-banner a:after, .page-banner .primary-heading a:after, .d-text a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(1);
    opacity: .6;
    transform-origin: left;
    transition: transform .7s cubic-bezier(.19, 1, .22, 1) .2s;
  }
  