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

:root {
  --white: #FFFFFF;
  --black: #141414;
  --red: #8D353F;
  --brown: #7C634F;
  --dark-brown: #514133;
  --gray: #aeb1b4;
  --mid-gray: #D3D2D3;
  --light-gray: #f7f7f7;
  --beige: #CDB6A0;
  --olive: #7E8976;
  --green: #4B564A;
  --light-brown: #F0E1D5;
  --lighter-brown: #f7f0ec; /* NOT CI */
  --brown-2: #514133;
  --light-olive: #D5DAD0;
  --olive-3: #A4B39E;
  --brown-2: #514133;

  --filter-white: invert(1) saturate(0) brightness(5);
  --filter-beige: invert(89%) sepia(13%) saturate(372%) hue-rotate(348deg) brightness(106%) contrast(82%);
  --filter-beige-bright: invert(97%) sepia(8%) saturate(1320%) hue-rotate(315deg) brightness(89%) contrast(87%);
  --filter-brown: invert(40%) sepia(49%) saturate(265%) hue-rotate(345deg) brightness(89%) contrast(87%);
  --filter-red: invert(26%) sepia(30%) saturate(1360%) hue-rotate(305deg) brightness(70%) contrast(92%);
  --filter-green: invert(28%) sepia(8%) saturate(868%) hue-rotate(67deg) brightness(99%) contrast(79%);
  --filter-light-green: invert(56%) sepia(19%) saturate(257%) hue-rotate(51deg) brightness(90%) contrast(86%);
  --filter-mint: invert(84%) sepia(9%) saturate(351%) hue-rotate(59deg) brightness(89%) contrast(88%);
  --filter-olive: invert(95%) sepia(12%) saturate(116%) hue-rotate(47deg) brightness(90%) contrast(93%);

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

  --common-font: 'source-sans-pro', sans-serif;
  --title-font: "EB Garamond";
}
 

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


body {
  position: sticky;
  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;
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}

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

.wrapper.home-auflistung {
  background: var(--green);
}

.header {
  position: relative;
  display: block;
  float: left;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1010;
  background-color: var(--white);
  transform: translateY(0);
}

.header-container {
  height: clamp(4rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: space-between;
}

.header.fadein .header-container {
  height: clamp(4rem, 5vw, 5rem);
}

.header-left {
  grid-column: 1;
  display: flex;
}

.header-right {
  grid-column: 3;
  display: flex;
  justify-content: flex-end;
}

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

#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;
  z-index: 1007;
  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);
  /*transition-delay: 0.2s;*/
  -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(-200px);
  -moz-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  -o-transform: translateY(-200px);
  transform: translateY(-200px);
}

.header_fadein.is-active {
  -webkit-box-shadow: 0px 5px 14px 0px rgb(0 0 0 / 0%);
  -moz-box-shadow: 0px 5px 14px 0px rgba(0,0,0,0.0);
  box-shadow: 0px 5px 14px 0px rgb(0 0 0 / 0%);
}

.header_navigation {
  position: fixed;
  width: 100%;
  height: 120px;
  z-index: 1005;
  top: 0;
  right: 0;
  transition: all 1s ease 0s;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 1009;
}

.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: relative;
  display: flex;
  list-style: none;
  z-index: 1007;
  border-right: solid 1px var(--gray);
  padding-right: 10px;
  margin-right: 10px;
  border-left: solid 1px var(--gray);
  padding-left: 10px;
  margin-left: 10px;
}

.linktree ul.language-switcher {
  margin: 0!important;
}

.linktree {
  margin: 0!important;
}

#navigationWrap ul.language-switcher {
  margin-right: 50px;
}

ul.language-switcher.navigation {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  z-index: 1009;
}

.language-switcher li, .responsive-language-switcher li {
  margin: 0 clamp(0.45rem, 1vw, 0.75rem);
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1;
  text-transform: uppercase;
}

.language-switcher a, .responsive-language-switcher a {
  color: var(--gray);
}

.language-switcher a:hover {
  font-weight: normal;
}

.responsive-language-switcher {
  display: none;
  list-style: none;
}

img.button-suche {
  transform: scaleX(-1);
  cursor: pointer;
}

.cp_frame_nav.search_frame {
  position: absolute;
  margin-top: -1px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: auto;
  height: auto;
  opacity: 0;
  visibility: hidden; 
  z-index: -1;
  top: 32px;
  right: 0;
  transition: all 0.3s cubic-bezier(.80, 0, .15, 1);
  -webkit-transition: all 0.3s cubic-bezier(.80, 0, .15, 1);
  -moz-transition: all 0.3s cubic-bezier(.80, 0, .15, 1);
  border: 1px solid var(--gray);
  background: var(--white);
}

.cp_frame_nav.search_frame.is-open {
  visibility: visible;
  opacity: 1;
}

.search_frame form {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

input[type="search"] {
  background: transparent;
  box-shadow: none;
  outline: none;
  border: none;
  padding: 0 16px;
  font-family: inherit;
  color: var(--black);
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }


.suche {
  display: flex;
}

.btn-suche {
  position: relative;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  border: 1px solid var(--gray);
  margin: 4px;
  margin-right: 8px;
  cursor: pointer;
}

.btn-suche:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(/static/images/arrow-right.svg);
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
}

.cp_frame_nav.search_frame.mobile {
  position: relative;
  visibility: visible;
  width: auto;
  float: left;
  clear: both;
  opacity: 0;
  margin: 0 0 3rem;
  top: auto;
  display: none;
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  transform: translateY(-40px);
}

ul.small-nav {
  position: relative;
  display: flex;
  list-style: none;
  align-items: center;
  right: 0;
  margin: 0 0 0 0;
  padding: 0 0 0 20px;
  z-index: 1007;
  margin-right: 0.5rem;
}

ul.small-nav.fadein {
  position: absolute;
  top: 50%;
  transform: translate(0,-50%);
  -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);
  /* transition-delay: 0.2s; */
}

/*
ul.small-nav.fadein.hidden {
  -webkit-transform: translateY(-200px);
  -moz-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  -o-transform: translateY(-200px);
  transform: translateY(-200px);
}
*/

.onlineshop-mobile {
  display: none;
}

.onlineshop-desktop {
  display: block;
}

.small-nav a {
  float: left;
  line-height: 1;
}

.small-nav img {
  height: 16px;
  width: 16px;
  margin: 0 12px;
}

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

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-muster {
  height: clamp(5rem, 16vw, 18rem);
  background-image: url('/static/images/footer-muster-braun.svg');
  background-size: 110%;
  background-position: top center;
  background-repeat: no-repeat;
}

#containerFull.footer-muster {
  z-index: 0;
}

img.scroll-to-top {
  width: 1rem;
  height: 1rem;
  filter: invert(40%) sepia(20%) saturate(663%) hue-rotate(344deg) brightness(91%) contrast(83%);
  cursor: pointer;
}

.nachhaltigkeit .footer-muster {
  background-image: url('/static/images/footer-muster-gruen.svg');
}

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

.swiper-slide iframe {
  height: 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: calc(100% - clamp(2rem, 3vw, 3rem) - clamp(2rem, 3vw, 3rem));
  height: clamp(25em, 65vh, 36em);
  margin-bottom: clamp(2em, 5vw, 10em);
  float: left;
  background-color: var(--darmode);
  margin-left: clamp(2rem, 3vw, 3rem);
  background: var(--brown);
  display: flex;
  justify-content: space-between;
}

.nachhaltigkeit .heads {
  background: var(--green);
}

.heads h2, .heads h1 {
  color: var(--white);
  margin: 0;
}

.heads-inner {
  width: calc(50% - clamp(2.4em, 5.5vw, 5em));
  height: 100%;
  float: right;
  object-position: center;
  object-fit: cover;
}

.heads-content {
  width: calc(50% - 4rem);
  margin-left: calc(12% - clamp(1.5rem, 2.5vw, 2.5rem));
  height: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding-bottom: clamp(3rem, 4vw, 6rem);
}

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

.heads-title span {
  color: var(--red);
  /*font-size: min(max(3.5rem, 5vw), 7rem);*/
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: min(max(0.4rem, 2vw), 4rem);
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  font-weight: bold;
}

.subtitle {
  position: relative;
  float: left;
  color: var(--beige);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 145%;
}

.subtitle.black {
  color: var(--black);
}

.nachhaltigkeit .subtitle {
  color: var(--olive-3);
}

/* 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;
  padding: 0;
  width: clamp(7rem, 12vw, 12rem);
  transition: none;
  position: relative;
  grid-column: 2;
  justify-self: center;
}

.header.fadein a.logo {
  width: clamp(6em, 8vw, 8em);
}

a.logo.light-theme, img.light-theme {
  display: inline-block;
}

a.logo.dark-theme, img.dark-theme {
  display: none;
}

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

.header_fadein a.logo.dark-theme {
  display: none;
}




/* Navigation */
/*------------------------------------------------------------------------------------------------------------------------------
                                                        NAVIGATION
------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------
                            DESKTOP NAVIGATION
--------------------------------------------------------------------------*/
nav.desktop {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-top: 0.5px solid var(--mid-gray);
  height: clamp(2rem, 5vw, 5rem);
}

.header.fadein nav.desktop {
  height: clamp(2rem, 3vw, 3rem);
}

nav ul {
  position: static;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border-radius: 0px;
}
nav ul li {
  position: static;
  display: flex;
  flex-wrap: wrap;
  float: left;
  width: 100%;
  white-space: nowrap;
  hyphens: none;
  color: var(--brown);
  cursor: pointer;
}
nav ul li a,
nav ul li span {
  position: relative;
  display: flex;
  font-family: var(--common-font), sans-serif;
  font-size: 1rem;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0.02rem;
  color: var(--black);
  /*transition: all ease 0.2s;*/
  z-index: 1;
}
nav ul > li {
  text-align: left;
}
nav ul > li.active > a,
nav ul > li.active > span {
  font-weight: normal;
}
nav ul > li ul {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: none;
  background-color: transparent;
}
nav ul > li ul .submenu-list {
  position: relative;
  display: flex;
  width: max-content;
  flex-wrap: wrap;
  flex-direction: column;
  transform-origin: top center;
}
nav ul > li ul li {
  justify-content: flex-start;
}
nav ul > li ul li ul {
  top: 0;
  left: 100%;
  transform: none;
}
nav ul li.mainentry {
  margin: 0 0 0 0;
  height: 100%;
  align-items: center;
}
nav ul li.mainentry > span, nav ul li.mainentry > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
  padding-bottom: 0;
  font-weight: normal;
}
nav ul li.mainentry > span:hover, nav ul li.mainentry > a:hover {
  color: var(--black);
}
nav ul li.subentry {
  margin: 0 0 0 0;
  height: 100%;
  align-items: center;
}
nav ul li span.subentry-title {
  height: 100%;
  display: flex;
  align-items: center;
}
nav ul li.subentry > span, nav ul li.subentry > a {
  padding: 0 1.5rem;
  margin: 0 0.5rem;
}
nav ul li.subentry > span:before, nav ul li.subentry > a:before {
  content: "";
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url("/static/images/nav-arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  transition: all 0.3s ease;
}
nav ul li.subentry.open > span,
nav ul li.subentry.open > a {
  color: var(--black);
}
nav ul li.subentry.current > span,
nav ul li.subentry.current > a {
  font-weight: bold;
}
nav ul li.subentry.open > span:before, nav ul li.subentry.open > a:before {
  transform: translate(0, -50%) rotate(180deg);
}
nav ul li.subentry.open:hover > span,
nav ul li.subentry.open:hover > a {
  /*color: $subnav-open-color;*/
}


nav ul li.subentry ul li {
  margin: 0;
  position: relative;
}
nav ul li.subentry ul li > a, nav ul li.subentry ul li > span {
  padding: 0.5rem 0 0.5rem 0;
  width: 100%;
  font-size: 1rem;
  hyphens: auto;
  white-space: normal;
  border-bottom: 1px solid var(--mid-gray);
}
/*
nav ul li.subentry ul li.subsubentry span:before {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url("/static/images/nav-arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 0.4rem;
  height: 0.8rem;
  transition: all 0.3s ease;
}
  */
nav ul li.current > a {
  color: var(--olive);
  font-weight: bold;
}
nav ul li.subentry ul li.active > a,
nav ul li.subentry ul li.active > span {
  background-color: transparent;
  color: var(--highlight-color);
}
nav ul li.subentry ul li:hover {
  background-color: transparent;
  color: var(--beige);
}
nav ul li.subentry ul li:hover > a,
nav ul li.subentry ul li:hover > span {
  color: var(--highlight-color);
}
nav > ul > li > ul {
  top: 100%;
  left: 0;
  padding: 4rem 12rem;
  margin: 0;
  transform: none;
}
nav > ul > li > a, nav > ul > li > span {
  font-size: min(max(0.9rem, 1vw), 1rem);
  font-family: var(--common-font), sans-serif;
  border: none;
  border-radius: 0;
  position: relative;
}
nav > ul > li > a:after,
nav > ul > li > span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background-color: var(--beige);
  transition: width 0.3s ease-in;
}
nav > ul > li > a:hover:after,
nav > ul > li > span:hover:after {
  width: 100%;
}
nav > ul > li.active > a:after,
nav > ul > li.active > span:after, nav > ul > li.open > a:after,
nav > ul > li.open > span:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: var(--beige);
  transition: width 0.3s ease-in;
}
nav .nav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0;
  background-color: var(--white);
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.15);
  transform-origin: center top;
  transition: transform 0.4s cubic-bezier(0.895, 0.03, 0.685, 0.22), height 0.4s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transform: scaleY(0);
  border-top: 1px solid var(--mid-gray);
}

ul.mainmenu {
  height: 100%;
}

nav .nav-panel.open {
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scaleY(1);
}

nav ul li.subentry ul li {
  position: static;
}


nav ul > li ul li ul {
  left: calc(100% + 4rem);
}

nav > ul > li.subentry .submenu-panel {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  display: grid;
  grid-template-columns: 20rem 1fr;
  grid-gap: 7rem;
  padding: 4rem 10rem;
}
nav > ul > li.subentry .submenu-panel .submenu-header {
  grid-column: 1;
}

nav > ul > li.subentry .submenu-panel .submenu-header > * {
  white-space: normal;
}

nav > ul > li.subentry .submenu-panel .submenu-header h3 {
  padding: 0;
  color: var(--black);
}

nav > ul > li.subentry .submenu-panel ul.submenu-list {
  position: relative;
  grid-column: 2;
  width: 40%;
  align-items: flex-start;
}

nav > ul > li.subentry .submenu-panel ul.submenu-list span {
  width: 100%;
  transition: .5s all ease;
  padding-right: 2.5rem;
}

nav > ul > li.subentry .submenu-panel ul.submenu-list li.subsubentry.open span {
  color: var(--olive);
}
nav > ul > li.subentry .submenu-panel ul.submenu-list li.subsubentry.current span {
  font-weight: bold;
}

nav ul li.subentry ul span.subentry-title:after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  height: 0.7rem;
  width: 0.4rem;
  transition: .5s all ease;
  background-image: url('/static/images/subnav-arrow-darkmode.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

nav ul li.subentry ul span.subentry-title:hover:after {
  transform: translate(10px, -50%);
}

.submenu-header {
  cursor: default;
}

/*nav > ul > li.subentry.active > a:after,
nav > ul > li.subentry.active > span:after, nav > ul > li.subentry.open > a:after,
nav > ul > li.subentry.open > span:after {
  background-color: var(--white);
  transform: translate(0, -100%);
}*/

.hamburger {
  display: block;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}



/*-------------------------------------------------------------------------
                            MOBILE NAVIGATION
--------------------------------------------------------------------------*/
.navigationWrap {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: auto;
  z-index: 1008;
  background-color: var(--white);
}
.navigationWrap header {
  z-index: 1007;
  right: 0;
  left: auto;
  width: 100%;
}
.navigationWrap.scrolled header {
  height: clamp(4rem, 4vw, 4rem);
}
.navigationWrap .menu-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12rem 20px 9rem;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  max-width: 1700px;
  text-align: center;
  display: block;
  overflow-y: hidden;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 1007;
}
.navigationWrap .menu-container .address {
  margin-top: 2rem;
  float: left;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 20px);
}
.navigationWrap .menu-container .address p, .navigationWrap .menu-container .address a {
  font-size: 0.8rem;
  color: var(--white);
  margin: 0;
  padding: 0;
}
.navigationWrap .menu-container nav {
  position: static;
  display: flex;
  float: left;
  height: auto;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
.navigationWrap .menu-container nav ul li .protectarea {
  display: none;
}
.navigationWrap .menu-container nav.accordion ul {
  display: flex;
  flex-direction: column;
  left: 0;
}
.navigationWrap .menu-container nav.accordion ul > li {
  text-transform: none;
  text-align: left;
}
.navigationWrap .menu-container nav.accordion ul > li .submenu-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.navigationWrap .menu-container nav.accordion ul > li .submenu-panel .submenu-header {
  display: none;
}
.navigationWrap .menu-container nav.accordion ul > li .submenu-panel .submenu-list {
  padding: 0.5rem 0;
  background-color: var(--white);
  display: none;
}
.navigationWrap .menu-container nav.accordion ul > li .submenu-panel .submenu-list .subsubmenu-list {
  position: relative;
  display: none;
}
.navigationWrap .menu-container nav.layers ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.navigationWrap .menu-container nav.layers ul li .submenu-panel {
  position: absolute;
  display: block;
  top: 0;
  left: auto;
  width: calc(100% - 1rem);
  height: 100vh;
  padding: 0;
  background: var(--white);
  right: 0;
  z-index: 11;
  overflow-y: auto;
  transform: none;
  -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);
}

.navigationWrap .menu-container nav.layers ul li .subsubmenu-list {
  -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);
}

.navigationWrap .menu-container nav.layers ul li .submenu-panel .submenu-header {
  display: none;
}
.navigationWrap .menu-container nav.layers ul li .submenu-panel ul {
  width: 100%;
  top: 0;
  left: auto;
  right: 0;
  align-items: flex-start;
  height: 100vh;
  padding: 12rem 20px;
  background: var(--white);
  z-index: 11;
  overflow-y: auto;
  transform: none;
  overflow-y: visible;
  overflow-x: hidden;
}

.navigationWrap .menu-container nav.layers ul .protectarea {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
  transition: all ease 0.3s;
  opacity: 0;
  visibility: hidden;
}

/*-------------------------------------------------------------------------
                            HAMBURGER
--------------------------------------------------------------------------*/
.sticky-menu {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translate(0, -50%);
  display: none;
}
.hamburger {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  transition: all 0.3s ease-in-out;
}
.hamburger .line1 {
  width: 30px;
  height: 2px;
  background-color: var(--brown);
  display: block;
  margin: 2px 0 auto;
  -webkit-transform: translateY(0) rotate(0);
  -ms-transform: translateY(0) rotate(0);
  -o-transform: translateY(0) rotate(0);
  transform: translateY(0) rotate(0);
  -webkit-transition: width 200ms ease-in-out 200ms, transform 200ms ease-in-out 0, background-color 200ms ease-in-out;
  -o-transition: width 200ms ease-in-out 200ms, transform 200ms ease-in-out 0, background-color 200ms ease-in-out;
  transition: width 200ms ease-in-out 200ms, transform 200ms ease-in-out 0, background-color 200ms ease-in-out;
  float: right;
}
.hamburger .line2 {
  width: 30px;
  height: 2px;
  background-color: var(--brown);
  display: block;
  margin: 4px 0 auto;
  -webkit-transition: width 200ms ease-in-out 200ms, transform 200ms ease-in-out 0, background-color 200ms ease-in-out;
  -o-transition: width 200ms ease-in-out 200ms, transform 200ms ease-in-out 0, background-color 200ms ease-in-out;
  transition: width 200ms ease-in-out 200ms, transform 200ms ease-in-out 0, background-color 200ms ease-in-out;
  float: right;
}
.hamburger .line2:hover {
  cursor: pointer;
}
.hamburger .line3 {
  width: 30px;
  height: 2px;
  background-color: var(--brown);
  display: block;
  margin: 4px 0 auto;
  -webkit-transform: translateY(0) rotate(0);
  -ms-transform: translateY(0) rotate(0);
  -o-transform: translateY(0) rotate(0);
  transform: translateY(0) rotate(0);
  -webkit-transition: width 200ms ease-in-out 200ms, transform 200ms ease-in-out 0, background-color 200ms ease-in-out;
  -o-transition: width 200ms ease-in-out 200ms, transform 200ms ease-in-out 0, background-color 200ms ease-in-out;
  transition: width 200ms ease-in-out 200ms, transform 200ms ease-in-out 0, background-color 200ms ease-in-out;
  float: right;
}
.hamburger:hover {
  cursor: pointer;
}

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

.hamburger.is-active .line1 {
  background-color: var(--brown);
  -webkit-transform: translateY(14px) rotate(45deg);
  -ms-transform: translateY(14px) rotate(45deg);
  -o-transform: translateY(14px) rotate(45deg);
  transform: translateY(14px) rotate(45deg);
  width: 17px;
  height: 2px;
  margin: 0;
}
.hamburger.is-active .line2 {
  opacity: 0;
}
.hamburger.is-active .line3 {
  background-color: var(--brown);
  -webkit-transform: translateY(-15px) rotate(-45deg);
  -ms-transform: translateY(-15px) rotate(-45deg);
  -o-transform: translateY(-15px) rotate(-45deg);
  transform: translateY(-15px) rotate(-45deg);
  width: 17px;
  height: 2px;
  margin: 0;
}




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

.shop-button {
  font-size: min(max(0.8rem, 0.8vw), 0.9rem);
  line-height: 1;
  display: flex;
  align-items: center;
  cursor: pointer;
  white-space: nowrap;
  background: var(--brown);
  color: var(--light-brown);
  border: 1px solid var(--brown);
  padding: 0.75rem 1rem;
  flex-direction: row-reverse;
  text-transform: none;
  letter-spacing: 0;
  justify-self: end;
  flex-shrink: 0;
}

.shop-button:hover {
  background: var(--white);
  color: var(--brown);
  border: 1px solid var(--beige);
}

.shop-button img {
  margin: 0 0 0 12px;
  height: 18px;
  width: 17px;
  filter: var(--filter-beige);
}

.shop-button:hover img {
  filter: var(--filter-brown);
}

a.shop-button.mobile {
  display: none;
}

.nachhaltigkeit .shop-button {
  color: var(--light-brown);
}

.nachhaltigkeit .shop-button:hover {
  color: var(--brown);
}

.shop-button-frame {
  position: absolute;
  top: 3em;
  left: 0;
  transform: translateX(-50%);
  background: var(--white);
  width: 31em;
  height: auto;
  padding: 2em;
  white-space: nowrap;
  border: solid 1px var(--mid-gray);
  -webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-box-shadow: 0px 0px 14px 0px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 14px 0px rgb(0 0 0 / 10%);
  visibility: hidden;
  opacity: 0;
}

.shop-button-frame.is-active {
  visibility: visible;
  opacity: 1;
}

.shop-button-frame::before {
  content: "";
  top: -12px;
  right: 60px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 12px 20px;
  border-color: transparent transparent var(--white) transparent;
  position: absolute;
  z-index: 2;
}

.shop-button-frame::after {
  content: "";
  top: -13px;
  right: 59px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 21px 12px 21px;
  border-color: transparent transparent var(--mid-gray) transparent;
  position: absolute;
  z-index: 1;
}

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

.shop-buttons a.button:hover .btn.felchlin:before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

/*
.shop-buttons a.button:hover .btn.felchlin .arrow:before {
  transform: translateX(30px);
}

.shop-buttons a.button:hover .btn.felchlin .arrow:after {
  transform: translateX(0%);
}
  */


.shop-buttons {
  position: relative;
  display: flex;
  float: left;
  width: 100%;
  justify-content: space-between;
}

.shop-buttons a.button {
  padding: 0 50px 0 0;
}

.shop-button-frame h4 {
  font-size: 0.8rem;
  margin-bottom: 2em;
}

.sticky {
  position: relative;
  width: 40px;
  height: 25px;
  transition: all 1s ease 0s;
  display: block;
  z-index: 1009;
  display: none;
  justify-self: end;
}

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

#navigationWrap .sticky {
  display: none;
}

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

.hamburger .line1 {
  width: 30px;
  height: 2px;
  background-color: var(--black);
  display: block;
  margin: 3px 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 .line1:first-child {
  width: 23px;
}

.hamburger .line2 {
  width: 37px;
  height: 2px;
  background-color: var(--black);
  display: block;
  margin: 3px 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:hover, .hamburger-home:hover {
cursor: pointer;
}

.hamburger.is-active .line1:nth-child(1) {
  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: 2px;
  -webkit-animation: none;
  animation: none;
}


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

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



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







/*------------------------------------------------------------------------------------------------------------------------------------------------------
	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: 12;
}

#slider .swiper-container {
  overflow: visible;
  width: calc(100% - clamp(2rem, 3vw, 3rem));
  margin-left: 0;
}

.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: 0.2;
}
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;
}







/*--------------------------------------------------
	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;
  z-index: 11;
}
.accordion__item {
  width: 100%;
  float: left;
}
.accordion__title {
  position: relative;
  padding: 1rem 0;
  font-size: inherit;
  color: var(--brightblue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px var(--mid-gray);
  color: var(--black);
  font-weight: 600;
}



.accordion__title span.icn {
  position: absolute;
  width: 2rem;
  height: 2rem;
  background-color: var(--brown);
  border: 1px solid var(--brown);
  border-radius: 50%;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.accordion__title span.icn:after {
  position: absolute;
  content: " ";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/accordion-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(22px, 3.2vw, 36px);
  height: clamp(22px, 3.2vw, 36px);
}
.is-open .accordion__title span.icn {
  transform: translate(0, -50%) rotate(180deg);
  transition: all 0.2s ease-in-out;
}
.accordion__body {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease-in-out;
}
.accordion__body b {
  font-weight: 600;
}
.accordion__body .grid {
  column-gap: 2em;
  margin: 1rem 0;
  margin-bottom: 2em;
  width: 100%;
}
.accordion__content {
  display: block;
  float: left;
  width: 100%;
}
.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(--mid-gray);
  height: 100%;
  top: 30px;
  left: 13px;
}

.nachhaltigkeit .tab-accordion__item:before {
  background: var(--olive-3);
}

.nachhaltigkeit .tab-accordion__item.is-open:before {
  background: var(--olive-3);
}

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

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

.tab-accordion__title {
  position: relative;
  padding: 18px;
  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: 15px 0 15px 15px;
}
.tab-accordion__title p {
  white-space: nowrap;
}

.tab-accordion__title .tab-dot {
  top: 50%;
  left: -49px;
  transform: translate(0, -50%);
}







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

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;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  height: 28px;
  width: 28px;
  border: solid 1px var(--gray);
  border-radius: 50px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

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

.bg-brown .tab-dot {
  border: solid 1px var(--beige);
  background-color: var(--brown);
}

.bg-brown .tab-accordion__item.is-open .tab-dot {
  background-color: var(--beige);
}

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



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

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

.tab-dot .arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--beige);
  -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:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: var(--brown);
  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);
}

.nachhaltigkeit .tab-dot .arrow:before {
  background: var(--light-olive);
}

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

.nachhaltigkeit .tab-dot .arrow:after {
  background: var(--green);
}

li.tab-link:hover .tab-dot:before, .current .tab-dot:before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

li.tab-link:hover .tab-dot .arrow:before, .current .tab-dot .arrow:before {
  transform: translateX(20px);
}

li.tab-link:hover .tab-dot .arrow:after, .current .tab-dot .arrow:after {
  transform: translateX(0%);
}


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

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

.js-ImageAnimator--slide {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.305, 0.125, 0.185, 1.005);
  transition-timing-function: cubic-bezier(0.305, 0.125, 0.185, 1.005);
  overflow: hidden;
  -ms-flex-item-align: end;
  align-self: flex-end;
  visibility: hidden;
}

.js-ImageAnimator--image {
  height: 100%;
  -webkit-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: inherit;
  transition-timing-function: inherit;
}

.tab-image {
  height: 100%;
  background-size: 100vw 100vw;
  background-attachment: fixed;
}




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


.sidenav {
  position: fixed;
  z-index: 10;
  left: 3%;
  top: 50%;
  width: 400px;
  height: 25px;
  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;
  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.auflistung-1, .line.inactive.auflistung-1 {
  right: 108px;
}

.line.active.auflistung-2, .line.inactive.auflistung-2 {
  right: 54px;
}

.line.active.auflistung-3, .line.inactive.auflistung-3 {
  right: 0;
}

.line.active.auflistung-4, .line.inactive.auflistung-4 {
  right: -54px;
}







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


.sidenav_produkte {
  position: fixed;
  display: none;
  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;
}





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

.sidenav_home {
  position: fixed;
  display: none;
  z-index: 10;
  left: clamp(1rem, 2vw, 2rem);
  top: 50%;
  transform: translate(0, -50%);
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
  width: clamp(10rem, 11vw, 11rem);
}

.sidenav_home_item {
  display: block;
  transition: all 0.5s ease;
  line-height: 1.2;
  margin: 0.5rem 0;
}

.sidenav_home.dark a.sidenav_home_item {
  color: var(--brown);
}

.nachhaltigkeit .sidenav_home.dark a.sidenav_home_item {
  color: var(--green);
}

.sidenav_home.dark a.sidenav_home_item:hover {
  font-weight: 600;
}

.sidenav_home_item.visited {
  transform: translateY(-1.5rem);
}

.sidenav_home_item.active {
  font-weight: 600;
  font-size: min(max(1rem, 1.2vw), 1.2rem);
}





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


nav.feature_navigation {
  position: fixed;
  display: none;
  background-color: var(--white);
  border-top: solid 1px var(--mid-gray);
  top: 8rem;
  left: 0;
  width: 100%;
  height: 4rem;
  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%);
  /*transition-delay: 0.2s;*/
}

nav.feature_navigation.visible {
  display: block;
}

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

.nachhaltigkeit nav.feature_navigation {
  color: var(--green);
}

.nachhaltigkeit a.current.active {
  color: var(--olive-3);
}

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

.feature_nav::-webkit-scrollbar-track {
  background-color: var(--beige);
  border-radius: 100px;
}

.nachhaltigkeit .feature_nav::-webkit-scrollbar-track {
  background-color: var(--olive-3);
}

.feature_nav::-webkit-scrollbar-thumb {
  border-radius: 100px;
  background-color: var(--red); 
  box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
}

.nachhaltigkeit .feature_nav::-webkit-scrollbar-thumb {
  background-color: var(--green);
}

.nachhaltigkeit .feature_nav a.clicked, .nachhaltigkeit .feature_nav a:hover {
  color: var(--olive-3);
}

.nachhaltigkeit .arrow-right {
  border-left: solid 1px var(--olive-3);
}

.nachhaltigkeit .arrow-left {
  border-right: solid 1px var(--olive-3);
}


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





/*--------------------------------------------------
	SIDENAV PRODUKTE NEU
---------------------------------------------------*/
:root{
  --side-nav-width: 220px;
  --side-nav-viewport: 180px; /* Höhe des Sichtfensters zum „Nachrutschen“ */
  --side-muted: #b9b6af;
  --side-accent: #fff;
}

/* your fixed aside (typo fix: 'fixed') */
.side-nav{
  position: fixed;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%); /* wirklich mittig */
  width: var(--side-nav-width);
  z-index: 3;
}

/* wichtig für das Nachrutschen */
.side-nav__viewport{
  height: var(--side-nav-viewport);
  overflow: hidden;
  padding-right: 6px;
}

.side-nav__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  will-change: transform; /* wir verschieben die UL */
}

.side-nav__list a{
  display: block;
  text-decoration: none;
  color: var(--side-muted);
  font-weight: 500;
  transition: color .25s ease, font-weight .25s ease;
}

.side-nav__list a.is-active{
  color: var(--side-accent);
  font-weight: 700;
}

/* optional: dünner Rail-Strich */
.side-nav__rail{
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: #ffffff22;
}

/* komfort beim Anscrollen per Klick (falls fester Header): */
.auflistung-item{ scroll-margin-top: 80px; }




/*--------------------------------------------------
	NEWSLETTER
---------------------------------------------------*/
  
#newsletter {
    position: relative;
    float: left;
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-top: 2em;
    margin-top: clamp(2em, 5%, 10em);
    margin-bottom: 4em;
    margin-bottom: clamp(4em, 8%, 13em);
    background-color: var(--white);
}

#newsletter-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    padding: 0 10%;
    background: var(--white);
    z-index: 1007;
    justify-content: center;
    align-items: center;
    display: none;
}

#newsletter-overlay.show {
    display: flex;
}

#newsletter label, #newsletter h4, #newsletter p {
    color: var(--black);
}

#newsletter h2 {
    color: var(--black);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

#newsletter h4 {
    margin-bottom: 1em;
}

.newsletter .col-4-2 {
    padding: 20%;
}

.newsletter .col-1-3 {
    position: relative;
    min-height: clamp(25em, 36vw, 36em);
}

.newsletter-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.newsletter-content {
    position: absolute;
    top: 50%;
    left: 15%;
    z-index: 2;
    transform: translate(0, -50%);
    text-transform: uppercase;
    margin-top: -10px;
}

.newsletter-content p {
    position: relative;
    display: table;
    color: var(--white);
    font-family: var(--bold-font);
    font-size: 2rem;
    font-size: min(max(2rem, 5vw), 5rem);
}

.newsletter-content p:after {
    content: "";
    position: absolute;
    bottom: clamp(2px, 0.5vw, 5px);
    height: clamp(5px, 0.7vw, 10px);
    width: 100%;
    background: white;
    left: 0;
}

.newsletter input#first-name, .newsletter input#last-name, .newsletter input#email {
    background: var(--light-gray);
    color: var(--black);
    border: none;
    padding: 10px;
    width: calc(100% - 20px);
    outline: none;
}

img.closeX {
    position: absolute;
    right: 2em;
    top: 2em;
    width: 1.4em;
    cursor: pointer;
    z-index: 2;
}

.success {
    display: none;
    position: relative;
    float: left;
    width: 100%;
    color: var(--black);
}

fieldset {
  border: none;
  margin-left: 0;
  padding-left: 0;
}

/*
button {
  position: relative;
  display: inline-block;
  font-family: var(--common-font);
  color: var(--red);
  font-size: min(max(0.8rem, 0.9vw), 0.9rem);
  font-weight: 700;
  padding: 5px 25px;
  border: none;
  line-height: 1.5;
  transition: all ease 0.3s;
  text-decoration: none;
  text-transform: none!important;
  font-weight: 400;
  letter-spacing: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

button:before {
  content: '';
  position: absolute;
  background: var(--black);
  opacity: 1;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 175px;
  /*box-shadow: 0px 0px 24px 1px rgba(224,199,224,0.2);
  transition: all 500ms cubic-bezier(1.000, -0.195, 0.000, 1);
  transition-timing-function: cubic-bezier(1.000, -0.195, 0.000, 1);*/
  /*  transition: all .35s ease-in-out;
    transition-timing-function: .35s ease-in-out;
}
*/



.closeX.dark {
  display: block;
}

.closeX.white {
  display: none;
}




/*--------------------------------------------------
	KURSANMELDUNG
---------------------------------------------------*/

.kursanmeldung input[type="text"], .kursanmeldung input[type="email"] {
  background: var(--light-gray);
  color: black;
  border: none;
  padding: 10px;
  width: calc(100% - 20px);
  outline: none;
}


.kursanmeldung [type="submit"] {
  position: relative;
  display: inline-block;
  font-family: var(--common-font);
  color: var(--red);
  font-size: min(max(0.8rem, 0.9vw), 0.9rem);
  font-weight: 700;
  padding: 5px;
  border: none;
  line-height: 1.5;
  transition: all ease 0.3s;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 4px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.kursanmeldung label {
  margin-top: 1rem;
  float: left;
}

.radios label {
  margin-top: 0;
  float: none;
}

.radios {
  margin-top: 2rem;
}

span.required {
  color: var(--red);
  font-weight: bold;
}

.hide {
  display: none;
}


/*------------------------------------------------------------------------------------------------------------------------------------------------------
	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 {
  position: relative;
  color: var(--black);
  cursor: pointer;
  font-weight: normal;
  transition: all ease .3s;
  text-decoration: none;
}

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

.news-detail a {
  color: var(--beige);
}

a[href^="tel"] {
color: inherit; /* Inherit text color of parent element. */
text-decoration: none; /* Remove underline. */
/* Additional css `propery: value;` pairs here */
}

ul {
  display: 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;
  padding-left: 1rem;
  line-height: 1.75;
}

li {
  -webkit-text-size-adjust: 100%; /* Für Text, damit er auf mobilen Geräten nicht grösser erscheint */
}

strong {
  font-weight: 700;
}

h1 {
  display: inline-block;
  color: var(--black);
  font-family: var(--title-font);
  font-size: min(max(2.2rem, 4vw), 5rem);
  font-weight: 600;
  line-height: 105%;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  text-transform: none;
}

h2 {
  display: inline-block;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 800;
  font-size: min(max(1.25rem, 1.5vw), 1.5rem);
  line-height: 1.2;
  margin-block-start: 0;
  margin-block-end: 0;
  letter-spacing: 2px;
}

h3 {
  display: inline-block;
  color: var(--black);
  font-size: min(max(1.4rem, 2.2vw), 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
  margin-block-start: 0;
  margin-block-end: 0;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}


h4 {
  color: var(--black);
  font-weight: 600;
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: min(max(1.25rem, 1.4vw), 1.9rem);
  line-height: 1.25;
}


h5 {
  color: var(--black);
  font-size: min(max(0.95rem, 1.25vw), 1.25rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  margin-block-start: 0;
  margin-block-end: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

a.button, .button, button {
  position: relative;
  display: inline-block;
  font-family: var(--common-font);
  color: var(--light-brown);
  font-size: min(max(0.8rem, 0.9vw), 1rem);
  font-weight: normal;
  padding: 1.25rem 3rem 1.25rem 1.5rem;
  line-height: 1;
  transition: all ease 0.3s;
  /* text-decoration: none; */
  /* text-transform: uppercase; */
  /* font-weight: bold; */
  /* letter-spacing: 4px; */
  border: 1px solid var(--brown);
  background: var(--brown);
}

a.button:hover, .button:hover {
  color: var(--brown);
  background: transparent;
  border-color: var(--beige);
}

a.button.white, .button.white, .ost-column3 button {
  color: var(--green);
  background: var(--white);
  border-color: var(--white);
}

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

.button.goback {
  padding: 1.25rem 1.5rem 1.25rem 3rem;
  background-color: var(--green);
  color: var(--white);
  border: solid 1px var(--green);
}

.button.goback:hover {
  background-color: var(--white);
  color: var(--green);
}

.button.goback:after {
    right: auto;
    left: 1.25rem;
    transform: rotate(180deg) translate(0,50%);
}

.button.goback:hover:after {
  filter: var(--filter-green);
}

a.button.white:hover, .button.white:hover, .ost-column3 button:hover {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

a.button:hover:after, .button:hover:after {
  filter: invert(38%) sepia(39%) saturate(346%) hue-rotate(345deg) brightness(94%) contrast(84%);
}

a.button.white:after, .button.white:after {
  filter: invert(30%) sepia(24%) saturate(257%) hue-rotate(68deg) brightness(93%) contrast(86%);
}

a.button.white:hover:after, .button.white:hover:after {
  filter: invert(1) saturate(0%) brightness(5);
}

a.button.outline {
  color: var(--brown);
  background: var(--transparent);
  border: 1px solid var(--beige);
}

a.button.outline:hover {
  color: var(--white);
  border-color: var(--brown);
  background: var(--brown);
}

a.button.outline:after, .button.outline:after {
  background-image: url('/static/images/arrow-right.svg');
  filter: invert(46%) sepia(3%) saturate(4110%) hue-rotate(344deg) brightness(82%) contrast(82%);
}

a.button.outline:hover:after, .button.outline:hover:after {
  filter: var(--filter-beige);
}


.nachhaltigkeit a.button {
  background: var(--green);
  color: var(--light-olive);
  border-color: var(--green);
}

.nachhaltigkeit a.button:after, .nachhaltigkeit .button:after {
  background-image: url('/static/images/arrow-right.svg');
  filter: var(--filter-olive);
}

.nachhaltigkeit a.button:hover, .nachhaltigkeit .button:hover {
  background: transparent;
  color: var(--green);
}

.nachhaltigkeit a.button:hover:after, .nachhaltigkeit .button:hover:after {
  filter: var(--filter-green);
}

.nachhaltigkeit .bg-brown h3 {
  color: var(--olive-3);
}


/*
a.button:after, .button:after {
  content: '';
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--black);
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  transform: translate(0, -50%);
  right: -3rem;
}

a.button:before, .button:before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--black);
  position: absolute;
  background-image: url('/static/images/arrow-right-white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  transform: translate(-11px, -50%);
  right: -3rem;
  z-index: 1;
}

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


.btn.felchlin {
  position: relative;
  float: left;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  height: 60px;
  width: 60px;
  border: solid 1px var(--brown);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  background: var(--brown);
  transition: all 0.3s ease-in-out;
}

.btn.felchlin:hover {
  background: var(--white);
}

.btn.felchlin:before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.8rem;
  background-image: url('/static/images/arrow-right.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: var(--filter-beige);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

.btn.felchlin:hover:before {
  filter: var(--filter-brown);
}

.nachhaltigkeit .btn.felchlin {
  background: var(--green);
  color: var(--light-olive);
  border-color: var(--green);
}

.nachhaltigkeit .btn.felchlin:hover {
  background: var(--white);
  color: var(--green);
}

.nachhaltigkeit .btn.felchlin:hover:before {
  filter: var(--filter-green);
}

.btn.felchlin-white {
  position: absolute;
  top: -6px;
  right: 0;
  color: var(--black);
  width: 32px;
  height: 32px;
  border: solid 1px var(--gray);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}

.btn.felchlin.prev {
  transform: rotate(180deg);
  margin-right: 15px;
}

a.button.btn-fabrikladen {
  background-color: var(--red);
  color: var(--light-brown);
  padding: 0.75rem 1rem;
  display: flex;
  font-size: min(max(0.8rem, 0.8vw), 0.9rem);
  border: 1px solid var(--red);
  letter-spacing: 0;
  align-items: center;
  flex-direction: row-reverse;
  text-transform: none;
  font-weight: normal;
  justify-self: start;
}

a.button.btn-fabrikladen:hover {
  background-color: var(--white);
  color: var(--red);
  border: 1px solid var(--beige);
}

a.button.btn-fabrikladen:after {
  display: none;
}

.swiper-wrapper a.button.btn-fabrikladen {
  position: absolute;
  z-index: 2;
  right: 0;
  margin-right: 0;
  display: none;
}

a.button.btn-fabrikladen img {
  filter: var(--filter-beige);
  margin: 0 0 0 12px;
  height: 18px;
  width: 17px;
}

a.button.btn-fabrikladen:hover img {
  filter: var(--filter-red);
}


nav ul li ul li.sub_li.active a .btn.felchlin:hover .arrow:before {
  transform: translateX(-30px);
  -webkit-transform: translateX(-30px);
}

nav ul li ul li.sub_li.active a .btn.felchlin .arrow:after {
  transform: translateX(0%);
  -webkit-transform: translateX(0%);
}

nav ul li ul li.sub_li.active a .btn.felchlin:before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

nav ul li ul li.sub_li.active .btn.felchlin {
  border: solid 0px var(--gray);
}

.subnav-button {
  position: relative;
  display: block;
  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: break-word;
  hyphens: none;
}



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

.subnav-button .btn.felchlin {
  position: absolute;
  right: 0;
  top: -6px;
  width: 32px;
  height: 32px;
  overflow: hidden;
}

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

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

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

.btn.felchlin.mobile {
  display: none;
}



a.button .tooltiptext, a.shop-button .tooltiptext {
  visibility: hidden;
  width: calc(100% - 25px);
  background-color: var(--white);
  color: var(--brown);
  text-align: center;
  padding: 5px 5px;
  border-radius: 0;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%,0);
  z-index: 1;
  font-size: 0.6rem;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
  border: solid 0.5px;
  white-space: normal;
}

a.button:hover .tooltiptext, a.shop-button:hover .tooltiptext {
  visibility: visible;
}

a.button .tooltiptext::after, a.shop-button .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent var(--brown) transparent;
}

a.button.login .tooltiptext {
  margin-left: -24px;
}

a.button.back {
  padding: 1.25rem 1.5rem 1.25rem 3rem;
}

a.button.back::after {
  transform: rotate(180deg) translate(0, 50%);
  left: 1.25rem;
  transform-origin: inherit;
  right: auto;
}

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


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

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


.has-animation {
    opacity: 0.01;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    transform-origin: 50% 0;
    will-change: transform;
}

.has-animation-left {
    opacity: 0.01;
    -webkit-transform: translateX(-80px);
    transform: translateX(-80px);
    transform-origin: 50% 0;
    will-change: transform;
}

.has-img-animation {
    opacity: 1;
    -webkit-transform: scaleY(0.8);
    transform: scaleY(0.8);
    transform-origin: bottom;
    will-change: transform;
    transition: 1s cubic-bezier(.075,.82,.165,1);
}

.has-animation-stagger {
    opacity: 0;
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
}

.has-mask span > span {
    display: inline-block;
    margin: 0!important;
    line-height: 40px;
    height: 1.5;
    opacity: 0;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
}

p.has-mask span, p.has-mask span > span {
    line-height: 40px;
    height: 40px;
    margin-right: 10px;
}

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

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

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

.auflistung-text p {
  color: var(--light-olive);
}

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



/*--------------------------------------------------
	BILD / VIDEO SLIDER
---------------------------------------------------*/

iframe.video {
  height: clamp(24rem, 34vw, 50rem);
}


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


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


#slider {
  position: relative;
  width: 100%;
  height: calc(calc(var(--vh, 1vh) * 100) - calc(clamp(4rem, 8vw, 8rem) + clamp(2rem, 5vw, 5rem)) - 6rem);
  min-height: 40vw;
  opacity: 0;
}

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

.swiper1 .swiper-slide .slider {
  width: calc(100% - 30em) !important;
  float: right;
  margin-left: 30em;
  overflow: hidden;
}

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

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

.swiper2 .swiper-slide {
  overflow: hidden;
}

.swiper-button-prev:after, .swiper-button-next:after {
  content: '' !important;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
}

.swiper-button-prev.swiper-button-prev-1.btn.felchlin {
  transform: rotate(180deg);
}


.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: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--white);
  border-radius: 50%;
}

.swiper-button-next {
  margin-left: clamp(4rem, 5.25vw, 5.25rem);
}

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

.swiper-pagination, .swiper-pagination-4, .swiper-pagination-5, .swiper-pagination-6, .swiper-pagination-7, .swiper-pagination-8, .swiper-pagination-9, .swiper-pagination-10, .swiper-pagination-11 {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  font-size: 1rem;
  color: var(--brown);
  font-weight: bold;
  line-height: 1;
  width: auto;
  height: auto;
  font-weight: 600;
}

.swiper-pagination .slices, .swiper-pagination-4 .slices, .swiper-pagination-5 .slices, .swiper-pagination-6 .slices, .swiper-pagination-7 .slices, .swiper-pagination-8 .slices, .swiper-pagination-9 .slices, .swiper-pagination-10 .slices {
  float: left;
  margin-top: 0;
  margin-right: 4px;
}

.swiper-pagination .totals, .swiper-pagination-4 .totals, .swiper-pagination-5 .totals, .swiper-pagination-6 .totals, .swiper-pagination-7 .totals, .swiper-pagination-8 .totals, .swiper-pagination-9 .totals, .swiper-pagination-10 .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;
  will-change: transform;
}

.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: auto;
  bottom: -4rem;
  z-index: 3;
  width: 75%;
  left: clamp(2rem, 3vw, 3rem);
  background: var(--green);
  padding: clamp(0rem, 1vw, 1rem) clamp(4rem, 6vw, 6rem) clamp(2rem, 3vw, 3rem) calc(7% - clamp(2rem, 3vw, 3rem));
  max-width: clamp(40rem, 60vw, 80rem);
}

.slider-content h1 {
  color: var(--white);
  font-size: min(max(2rem, 4vw), 5rem);
  hyphens: none;
  -ms-hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -webkit-hyphens: none;
  margin-block-start: 0;
  margin-block-end: 0;
  margin: clamp(0.5em, 1vw, 1em) 0;
}

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

.swiper1 .swiper-slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: -10%;
  height: 100%;
  width: 10%;
  background: var(--white);
}

.slider-buttons {
  position: absolute;
  bottom: 6rem;
  right: calc(clamp(2rem, 3vw, 3rem) + 10rem);
}

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

.swiper-section {
  position: relative;
  display: flex;
  float: left;
  width: 100%;
  flex-direction: row;
  align-items: flex-end;
  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, .swiper-horizontal-parallax-7, .swiper-horizontal-parallax-8, .swiper-horizontal-parallax-9, .swiper-horizontal-parallax-10 {
  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, .swiper-horizontal-parallax-6 {
  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, .swiper10, .swiper21 {
  width: calc(50% - clamp(2em, 5vw, 5em));
  float: left;
  margin-right: clamp(2em, 5vw, 5em);
}

/* RTL */
.swiper5, .swiper7, .swiper9 {
  width: calc(50% - clamp(2.4em, 5vw, 5em));
  float: right;
  margin-left: clamp(2.4em, 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-6 .swiper-scrollbar, .swiper-horizontal-parallax-7 .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-6 .img-content img, .swiper-horizontal-parallax-7 .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-6 .swiper-slide, .swiper-horizontal-parallax-7 .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);
  background-color: var(--white);
}

.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-6 .swiper-slide-active, .swiper-horizontal-parallax-7 .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-6 .swiper-slide .img-content, .swiper-horizontal-parallax-7 .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;
}


/* Animation */

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

.swiper4 p, .swiper5 p, .swiper6 p, .swiper7 p, .swiper8 p, .swiper9 p, .swiper10 p {
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
  width: 100%;
  opacity: 0;
  -webkit-transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .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, .swiper9 .swiper-slide-active h4, .swiper10 .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, .swiper9 .swiper-slide-active p, .swiper10 .swiper-slide-active p {
  -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(--mid-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: relative;
  right: auto;
  left: auto;
  transform: none;
  transform-origin: bottom right;
  float: left;
  margin: 1.5rem 0;
  clear: both;
}

.swiper-section h3 {
  float: left;
  width: 100%;
  margin-bottom: 1rem;
}

.bg-brown .swiper-section h3 {
  color: var(--white);
}

.bg-brown h3 {
  color: var(--white);
}

.bg-brown h4 {
  color: var(--white);
}

.nachhaltigkeit .swiper-section h3 {
  color: var(--light-beige);
}

/* 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(--red);
}

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



/* 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(--white);
  display: inline-block;
  padding: 40px 0 0;
  cursor: pointer;
  margin: 0;
  font-weight: normal;
  text-align: center;
  flex: 1 1 0px;
  font-size: min(max(0.7rem, 0.9vw), 0.9rem);
}

.nachhaltigkeit .tabs.swiper-pagination-bullets .tab-link {
  color: var(--light-beige);
}

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

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

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

.nachhaltigkeit .tabs.swiper-pagination-bullets .tab-dot, .nachhaltigkeit .tab-dot {
  border-color: var(--light-olive);
  background-color: var(--green);
}

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

.nachhaltigkeit .tabs.swiper-pagination-bullets .tab-dot:before, .nachhaltigkeit .tab-dot:before,
.nachhaltigkeit .tab-accordion__item.is-open .tab-dot {
  background: var(--light-olive);
}

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

.tabs.swiper-pagination-bullets .tab-link:hover .tab-dot:before, .tabs.swiper-pagination-bullets .tab-link.swiper-pagination-bullet-active .tab-dot:before, .nachhaltigkeit .tabs.swiper-pagination-bullets .tab-link:hover .tab-dot:before, .nachhaltigkeit .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%);
}







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

.swiper-variant-2 .swiper-custom-content {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 2.5rem;
  z-index: 2;
}

@media (max-width: 768px) {
  .swiper-variant-2 .swiper-custom-content {
    top: 3rem;
    transform: none;
    left: 1.5rem;
  }
}

.swiper-variant-2 .swiper-custom-content h6 {
  color: #ffffff;
}

.swiper-variant-2 .swiper-custom-content h6:before {
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .swiper-variant-2 .swiper-slide {
    padding-bottom: 4rem;
  }
}

.swiper-variant-2 .swiper-slide {
  height: auto;
  align-self: stretch;
}

.swiper-variant-2 .swiper-slide .parallax {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.swiper-variant-2 .swiper-slide .parallax .slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-variant-2 .swiper-slide .edged {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.swiper-variant-2 .swiper-slide .swiper-card {
  width: 30rem;
  background: var(--light-brown);
  padding: clamp(1rem, 3vw, 3rem) 1.5rem;
}

.swiper-variant-2 .swiper-slide .swiper-card span {
  margin-bottom: 1rem;
  display: block;
  font-size: 1.2rem;
}

.swiper-variant-2 .swiper-slide .swiper-card h3 {
  margin-bottom: 0;
  font-weight: 700;
  color: #4A3829;
}

.swiper-variant-2 .swiper-slide .swiper-card .parallax-image {
  overflow: hidden;
  margin: 1rem 0;
}

.swiper-variant-2 .swiper-slide .swiper-card .parallax-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.07);
  -moz-transform: scale(1.07);
  -webkit-transition: opacity .6s ease-in-out, transform 2s ease .7s;
  -moz-transition: opacity .6s ease-in-out, transform 2s ease .7s;
  transition: opacity .6s ease-in-out, transform 2s ease .7s;
}

.swiper-variant-2 .swiper-slide.swiper-slide-active .swiper-card .parallax-image img {
  transform: scale(1);
  -moz-transform: scale(1);
}

.swiper-variant-2 a.button:hover {
  color: var(--brown);
}

.swiper-variant-2 a.button:hover:after {
  filter: var(--filter-brown);
}

.swiper-variant-2 .swiper-button-next {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  z-index: 11;
  top: 50%;
  bottom: auto;
  left: auto;
  right: 2.5rem;
  margin-left: 0;
  margin-right: 0;
  transform: translateY(-50%);
  background-color: var(--white);
  height: 2.5rem;
  width: 2.5rem;
  border: 0px solid var(--white);
  border-radius: 50%;
  position: absolute;
}

.swiper-variant-2 .swiper-button-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  z-index: 11;
  top: 50%;
  bottom: auto;
  left: auto;
  right: clamp(6.5rem, 8vw, 8rem);
  margin-left: 0;
  margin-right: 0;
  transform: rotate(180deg) translateY(50%);
  background-color: var(--white);
  height: 2.5rem;
  width: 2.5rem;
  border: 0px solid var(--white);
  border-radius: 50%;
  position: absolute;
}

.swiper-button-next.btn.felchlin, .swiper-button-prev.btn.felchlin {
  width: clamp(2.75rem, 4vw, 4rem);
  height: clamp(2.75rem, 4vw, 4rem);
  background: var(--white);
  position: absolute;
  border: solid 1px var(--white);
}

.swiper-button-next.btn.felchlin:hover, .swiper-button-prev.btn.felchlin:hover {
  background: transparent;
}

.swiper-button-next.btn.felchlin:before, .swiper-button-prev.btn.felchlin:before {
  filter: var(--filter-brown);
}

.nachhaltigkeit .swiper-button-next.btn.felchlin:before, .nachhaltigkeit .swiper-button-prev.btn.felchlin:before {
  filter: var(--filter-green);
}

.swiper-button-next.btn.felchlin:hover:before, .swiper-button-prev.btn.felchlin:hover:before {
  filter: var(--filter-white);
}

h6 {
  position: relative;
  font-family: "source-sans-pro",sans-serif;
  font-weight: normal;
  color: var(--base-color);
  font-size: 1.25rem;
  text-transform: none;
  font-style: normal;
  margin: 0 0 1rem 0;
  padding: 0 0 0 1.5rem;
  letter-spacing: 0;
  line-height: normal;
}

h6:before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .5rem;
  height: .5rem;
  background-color: var(--black);
  border-radius: 50%;
}




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

.introtext-1 p {
  font-size: min(max(1.1rem, 1.2vw), 1.3rem);
}

.introtext-big p {
  font-size: min(max(1.5rem, 1.5vw), 1.75rem);
  font-weight: 600;
  line-height: 1.25;
}

.introtext-big p b, .introtext-big p strong {
  color: var(--brown);
}

.intro img {
  height: 100%;
  object-fit: cover;
}

.auflistung-item, .highlights-intro, .highlights {
  position: relative;
  z-index: 2;
}

.highlights .swiper-slide {
  height: auto;
  align-self: stretch;
}

.highlight {
  position: relative;
  height: 100%;
  float: left;
}

.text-button {
  position: relative;
  float: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.home-auflistung {
  overflow: hidden;
}

#containerP.home-auflistung {
  z-index: 3;
}

#containerP.bg-green,
#containerP.bg-brown {
  overflow: hidden;
}

.home-auflistung-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: var(--green);
  display: none;
}
.home-auflistung-bg-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--brown);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.auflistung-bild {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  object-fit: cover;
}

.imgreveal .auflistung-bild {
  transform-origin: left; /* imgreveal */
}

.imgreveal_rtl .auflistung-bild {
  transform-origin: right; /* imgreveal */
}

.auflistung-bild.left {
  float: right;
}

.auflistung-bild.right {
  float: left;
}

.auflistung-detail h3 {
  margin-bottom: 3rem;
}

/*.auflistung-text p {
  line-height: 2;
}*/

.auflistung-detail .button {
  float: left;
  margin-top: 2rem;
}

.produkte-highlights {
  overflow: hidden;
}

#containerP.produkte-highlights {
    z-index: 3;
}

.highlights-intro h3 {
  margin-bottom: 2rem;
}

.highlight-gradient {
  position: relative;
  float: left;
  width: 100%;
  height: clamp(30rem, 35vw, 40rem);
}

.highlight-1 .highlight-gradient {
  background: rgb(221,195,218);
  background: -moz-linear-gradient(-45deg,  rgba(221,195,218,1) 0%, rgba(221,208,194,1) 100%); 
  background: -webkit-linear-gradient(-45deg,  rgba(221,195,218,1) 0%,rgba(221,208,194,1) 100%); 
  background: linear-gradient(135deg,  rgba(221,195,218,1) 0%,rgba(221,208,194,1) 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ddc3da', endColorstr='#ddd0c2',GradientType=1 ); 
}

.highlight-1 .highlight-gradient img, .highlight-2 .highlight-gradient img, .highlight-3 .highlight-gradient img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight-2 .highlight-gradient {
  background: rgb(228,226,222);
  background: -moz-linear-gradient(-45deg,  rgba(228,226,222,1) 0%, rgba(209,222,166,1) 100%); 
  background: -webkit-linear-gradient(-45deg,  rgba(228,226,222,1) 0%,rgba(209,222,166,1) 100%);
  background: linear-gradient(135deg,  rgba(228,226,222,1) 0%,rgba(209,222,166,1) 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e4e2de', endColorstr='#d1dea6',GradientType=1 ); 
}
/*
.highlight-2 .highlight-gradient img {
  position: absolute;
  right: -5rem;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 2;
}*/

.highlight-3 .highlight-gradient {
  background: rgb(239,215,179);
  background: -moz-linear-gradient(-45deg,  rgba(239,215,179,1) 0%, rgba(241,201,179,1) 100%);
  background: -webkit-linear-gradient(-45deg,  rgba(239,215,179,1) 0%,rgba(241,201,179,1) 100%);
  background: linear-gradient(135deg,  rgba(239,215,179,1) 0%,rgba(241,201,179,1) 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efd7b3', endColorstr='#f1c9b3',GradientType=1 ); 
}
/*
.highlight-3 .highlight-gradient img {
  position: absolute;
  right: -5rem;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 2;
}*/

.highlight .introtext {
  position: relative;
  float: left;
}

.highlight .introtext p {
  line-height: 2;
}

.aromawelt .bg {
  position: relative;
  float: left;
  width: 70%;
  margin: 0 15%;
  height: clamp(13rem, 35vw, 40rem);
  background-image: url('/static/images/aromawelt_bg.jpg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.aromawelt-button a.button {
  float: none;
  margin-left: 50%;
  transform: translate(-50%, 2rem);
}

html:lang(fr) .aromawelt-button a.button {
  transform: translate(-50%, 8rem);
}

span.aromawelt-big {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 90%;
  top: 75%;
  left: 0;
  right: 0;
  margin: auto;
  font-size: min(max(1.7rem, 6vw), 8rem);
  font-weight: bold;
  letter-spacing: min(max(1rem, 3vw), 4rem);
  hyphens: none;
  white-space: normal;
  color: var(--red);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
}


.bg-green {
  background: var(--green);
  color: var(--light-olive);
}

.bg-green h2, .bg-green p, .bg-green .marquee-container .marquee-content h2, .bg-green h3 {
  color: var(--light-olive);
}

.swiper101 {
  padding-bottom: 5rem;
  overflow: visible;
}

.swiper101 h3 {
  display: block;
  margin-bottom: 0.5rem;
}

.swiper101 img {
  display: block;
  height: clamp(6rem, 8vw, 8rem);
  width: clamp(6rem, 8vw, 8rem);
  margin-bottom: 2rem;
  object-fit: contain;
}

.swiper-container-horizontal > .swiper-scrollbar.swiper-scrollbar-101 {
  position: absolute;
  left: auto;
  bottom: 1rem;
  top: auto;
  z-index: 50;
  height: 2px;
  width: calc(66.6666% - 28px);
  right: 0;
  margin-right: 0;
  border-radius: 0;
  background: var(--swiper-scrollbar-bg-color, rgba(255, 255, 255, 0.1));
}

.bg-green .swiper-container-horizontal > .swiper-scrollbar.swiper-scrollbar-101 {
  background: var(--swiper-scrollbar-bg-color, rgba(255, 255, 255, 0.1));
}

.bg-green .swiper-scrollbar-drag {
  background: var(--olive-3);
}

.bg-brown .swiper-scrollbar-drag {
  background: var(--light-brown);
}

.post {
  background: var(--white);
}

.post .introtext {
  position: relative;
  float: left;
}

.post .introtext p {
  line-height: 2;
}

.post .introtext .button {
  float: left;
  margin-top: 1rem;
}

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

.share button {
  opacity: 0;
}

.separator {
  position: relative;
  float: left;
  width: 100%;
  height: 1px;
  background: var(--light-gray);
  margin: 1rem 0;
}

span.date {
  font-size: min(max(0.7rem, 0.8vw), 9.8rem);
  color: var(--brown);
  margin-top: 2rem;
  margin-bottom: 1rem;
  float: left;
  width: 100%;
}

#containerFull.onlineshop {
  padding-left: 7%;
  padding-right: 7%;
}

.onlineshop {
  min-height: clamp(25rem, 50vw, 65rem);
}

span.onlineshop-big {
  position: relative;
  display: block;
  text-align: center;
  bottom: 0;
  font-size: min(max(1.5rem, 6vw), 6rem);
  font-weight: bold;
  letter-spacing: min(max(0.5rem, 1.5vw), 2rem);
  hyphens: none;
  white-space: nowrap;
  color: var(--red);
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden!important;
}

.onlineshop .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/static/images/online_shop_bg.jpg');
}

.onlineshop .overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+30,ffffff+100&1+0,1+30,0+100 */
background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,1) 30%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 30%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,1) 30%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */

}

.online-shop-buttons {
  margin: 2rem 0;
}

.online-shop-buttons .button {
  padding: 0 60px 0 0;
}

.online-shop-buttons a.button:before, .online-shop-buttons .button:before {
  right: 0;
}

.online-shop-buttons a.button:after, .online-shop-buttons .button:after {
  right: 0;
}





/*---- SCROLLING TEXT / MARQUEES ----*/

/* Home hero Scrolling Text */
.marquee-container {
  width: 100%;
  white-space: nowrap;
  position: relative;
  padding-top: 5rem;
  padding-bottom: clamp(3rem, 4vw, 6rem);
  overflow: hidden;
}

.marquee-container .marquee-content {
  display: inline-block;
  animation: text-marquee 17s linear infinite;
}

.marquee-container .marquee-content h2 {
  display: inline-block;
  margin-right: 50px;
  font-size: min(max(6rem, 8vw), 10rem);
  font-family: var(--title-font);
  text-transform: none;
  color: var(--brown-2);
}

.bg-brown .marquee-container .marquee-content h2 {
  color: var(--light-brown);
}

.marquee-container .marquee-content div {
  display: inline-block;
  margin-right: 0.5rem;
}

.marquee-container .marquee-content-2 {
  display: inline-block;
  animation: text-marquee-2 8.5s linear infinite;
}

.marquee-container .marquee-content-2 h2 {
  display: inline-block;
  margin-right: 50px; /* Space between repeated titles */
}

.marquee-container .marquee-content-2 div {
  display: inline-block;
  margin-right: 0.5rem;
}

#containerP .marquee-container {
  margin-left: -8%;
  width: 116%;
}

/* To pause on hover */
/*.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}*/

@keyframes text-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%); /* Adjust based on number of repeated titles */
  }
}

@keyframes text-marquee-2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-16.66%); /* Adjust based on number of repeated titles */
  }
}



.shop-link {
  position: relative;
  float: left;
  width: 100%;
}

.shop-link img.bg-image {
  width: 100%;
  height: clamp(30rem, 40vw, 50rem);
  float: left;
  margin-bottom: 0;
  object-fit: cover;
}

.shop-link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brown-2);
  opacity: 0.6;
  transition: opacity 0.3s ease-in-out;
}

.shop-link:hover .shop-link-overlay {
  opacity: 0;
}

.shop-link-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
}

.shop-link-content h4 {
  color: var(--white);
  text-align: center;
}

.shop-link a.btn.felchlin {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  background: var(--white);
  border: solid 1px var(--white);
  bottom: 4rem;
  display: flex;
  align-items: center;
  width: 4rem;
  height: 4rem;
}

.shop-link:hover .btn.felchlin {
  background: transparent;
  border: solid 1px var(--white);
}

.shop-link .btn.felchlin:before {
  filter: none;
}

.shop-link:hover .btn.felchlin:before {
  filter: invert(1) brightness(5);
}

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



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

section.gallery {
  position: relative;
  float: left;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
}

.gallery a {
  position: relative;
  float: left;
  flex: 0 calc(33% - 2em);
}

a.gallery-item {
  margin-right: 2em;
  margin-bottom: 2em;
  height: clamp(14rem, 18vw, 18rem);
}

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




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


.herkunft-nav ul {
  list-style: none;
  width: 100%;
  padding-left: 0;
}

.herkunft-nav li {
  border-bottom: 1px solid var(--mid-gray);
}

/*
.herkunft-nav li:after {
  position: absolute;
  content: '';
  width: 2rem;
  height: 2rem;
  background-image: url('/static/images/accordion-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 0.5rem;
  top: 50%;
  transform: translate(0, -50%);
}
  */

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

.initial-map img {
  width: auto;
}

.herkunft-entries h4 {
  font-size: min(max(1.25rem, 1.5vw), 1.5rem);
  float: left;
  width: 100%;
  margin-bottom: 1rem;
}

.herkunft-entries .accordion__title {
  padding: 0.75em 0;
}

.untertitel {
  margin: 1rem 0;
  font-weight: bold;
}

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



/* ///// GRAND CRU STORYTELLING ///// */

section.herkunft-entries {
  position: relative;
  display: block;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
}

section.herkunft-entries-start {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  height: 50vh;
}

.herkunft-entries-end {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

.initial-map, .map-card {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

.map-card-2 {
  position: relative;
  display: block;
  float: left;
  width: 70%;
}

.initial-map {
  min-height: 100vh;
}

.map-card img.map {
  width: 100%;
  float: left;
}

.map-card-2 img.map-2 {
  width: 100%;
  float: left;
  height: 32vw;
  max-height: 834px;
}

.point {
  width: 15px;
  height: 15px;
  background: var(--green);
  position: absolute;
  z-index: 1;
  border-radius: 50%;
}




.swiper2 {
  height: clamp(20rem, 40vw, 50rem);
  width: 100%;
  margin: 0;
}

.swiper-button-next.swiper-button-next-2 {
  right: 5%;
  left: auto;
}

.swiper-button-prev.swiper-button-prev-2 {
  left: 5%;
  transform: rotate(180deg);
}

/*
.swiper-button-prev-2:after, .swiper-button-next-2:after {
  background-image: url(/static/images/swiper-button.svg);
  width: 40px;
  height: 40px;
}
*/

.matrix-item .highlight-gradient {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(243,213,198); 
  background: -moz-linear-gradient(-45deg,  rgba(243,213,198,1) 0%, rgba(212,206,222,1) 45%, rgba(212,206,222,1) 60%, rgba(212,206,222,1) 60%, rgba(241,212,200,1) 100%);
  background: -webkit-linear-gradient(-45deg,  rgba(243,213,198,1) 0%,rgba(212,206,222,1) 45%,rgba(212,206,222,1) 60%,rgba(212,206,222,1) 60%,rgba(241,212,200,1) 100%); 
  background: linear-gradient(135deg,  rgba(243,213,198,1) 0%,rgba(212,206,222,1) 45%,rgba(212,206,222,1) 60%,rgba(212,206,222,1) 60%,rgba(241,212,200,1) 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3d5c6', endColorstr='#f1d4c8',GradientType=1 ); 
}

.matrix-item a.button {
  float: left;
  margin-top: 2rem;
}


.matrix-image {
  height: clamp(20rem, 35vw, 40rem);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.matrix-item {
  align-items: center;
}

.quote {
  background: var(--beige);
  color: var(--white);
  text-align: center;
}

.nachhaltigkeit .quote {
  background: var(--olive-3);
}

.quote-details {
  max-width: 60%;
  margin-left: 20%;
  margin-right: 20%;
}

span.quote-mark {
  font-size: min(max(5rem, 15vw), 15rem);
}

p.quote-author {
  color: var(--white);
}

.quote-details p {
  font-size: min(max(2rem, 4vw), 5rem);
  line-height: 105%;
  text-transform: none;
  text-align: left;
  font-family: var(--title-font);
  white-space: pre-wrap;
  hyphens: none;
}

p.quote-author {
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
  margin-top: clamp(1.5rem, 3vw, 3rem);
  font-family: var(--common-font);
}

img.bg-zitat {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
  filter: var(--filter-beige-bright);
}

.nachhaltigkeit img.bg-zitat {
  filter: var(--filter-mint);
}

.label img {
  max-width: 45%;
  max-height: clamp(5rem, 15vw, 15rem);
  height: auto;
  width: auto;
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.bg-brown {
  background: var(--brown);
  color: var(--white);
}

.nachhaltigkeit .bg-brown {
  background: var(--green);
  color: var(--light-olive);
}

/*--------------------------------------------------
	PHILOSOPHIE
---------------------------------------------------*/

.produkt-introtexte a.button {
  float: left;
  margin-top: 1rem;
}

.grundsaetze {
  background: var(--brown);
  color: var(--white);
}

span.zahl-kreis {
  width: clamp(2rem, 3vw, 3rem);
  height: clamp(2rem, 3vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: var(--light-olive);
  color: var(--green);
  border-radius: 50%;
  margin-bottom: 2rem;
}

.bg-green span.zahl-kreis {
  background: var(--light-olive);
  color: var(--green);
}

.bg-brown span.zahl-kreis {
  background: var(--light-brown);
  color: var(--brown);
}

.grundsaetze h3 {
  display: block;
  text-align: center;
  color: var(--white);
}

.grundsaetze h5 {
  color: #e8eaed;
}

.grundsaetze ul {
  column-count: 2;
  list-style: none;
  max-width: 80%;
  margin: 0 10%;
}

.grundsaetze h3.text-align-left {
  text-align: left;
}

.grundsaetze ul li {
  display: inline-block;
  width: 100%;
}

.grundsatz {
  position: relative;
  float: left;
  margin: 1rem 10%;
  width: 80%;
  display: flex;
}

span.zahl {
  font-size: min(max(1.3rem, 2vw), 2rem);
  color: var(--red);
  font-weight: bold;
}

.grundsatz p {
  margin-top: 0;
  padding-left: 1rem;
}

.weitere-rohstoffe ul {
  list-style-position: outside;
  padding-left: 18px;
  line-height: 2;
}

h3.brown {
  color: var(--brown);
}

.schritte .grid {
  grid-template-columns: 4rem auto;
  row-gap: 0.5rem;
  margin-bottom: 1rem;
}

span.nummer {
  font-weight: bold;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--gray);
  position: relative;
  float: left;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.schritte .grid .center-left {
  font-weight: bold;
  text-transform: uppercase;
}

.grundsaetze .grid {
  row-gap: 0;
  column-gap: 0;
  width: 80%;
  margin-left: 10%;
}
/*
.grundsaetze .col-1.row-1 {
  border-right: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
}

.grundsaetze .col-2.row-1 {
  border-bottom: 1px solid var(--red);
}

.grundsaetze .col-1.row-2 {
  border-right: 1px solid var(--red);
}*/

.grundsaetze .col-1 {
  border-right: 1px solid var(--beige);
  border-bottom: 1px solid var(--beige);
}

.grundsaetze .col-2 {
  border-bottom: 1px solid var(--beige);
}

.grundsaetze .col-1:nth-last-child(-n+2) {
  border-bottom: 0px solid var(--beige);
}

.grundsaetze .col-2:last-child {
  border-bottom: 0px solid var(--beige);
}

.grundsatz-bild {
  max-width: 30rem;
}

.grundsatz-icon {
  display: block;
  height: clamp(6rem, 8vw, 8rem);
  width: clamp(6rem, 8vw, 8rem);
  margin-bottom: 2rem;
  object-fit: contain;
}

.pdf-download li {
  border-bottom: 1px solid var(--white);
  padding-bottom: 0.5rem;
}

/*--------------------------------------------------
	UNTERNEHMEN
---------------------------------------------------*/

.downloads {
  display: grid;
  float: left;
}

.downloads ul {
  list-style: none;
  line-height: 2;
  font-size: min(max(0.8rem, 1vw), 1rem);
  padding-left: 0;
  float: left;
  width: 100%;
}

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

.downloads li {
  margin: 0.5rem 0;
  list-style-position: inside;
  border-bottom: 1px solid var(--mid-gray);
}

li.download {
  font-weight: bold;
  color: var(--brown);
  margin-top: 1rem;
}

.downloads a, .herkunft-nav a {
  position: relative;
    display: block;
    font-family: var(--common-font);
    color: var(--brown);
    font-size: min(max(0.8rem, 0.9vw), 1rem);
    font-weight: normal;
    padding: 1rem 3rem 1rem 0;
    line-height: 1;
    transition: all ease 0.3s;
}

.downloads a:hover, .herkunft-nav a:hover {
  color: var(--beige);
}

.nachhaltigkeit a:not(nav ul li a, nav ul li span, .feature_nav a, a.button, .shop-button) {
  color: var(--green);
}

.nachhaltigkeit .downloads a:hover, .nachhaltigkeit .herkunft-nav a:hover {
  color: var(--olive);
}

.nachhaltigkeit .downloads a:after, .nachhaltigkeit .herkunft-nav a:after {
  filter: var(--filter-green);
}

.nachhaltigkeit .downloads a:hover:after, .nachhaltigkeit .herkunft-nav a:hover:after {
  filter: var(--filter-olive);
}

.downloads h3, .downloads p {
  float: left;
  width: 100%;
  float: left;
  display: block;
}

.buttons {
  position: relative;
  float: left;
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.buttons.flex {
  flex-direction: row;
  gap: 1rem;
}

.buttons a.button {
  margin-top: 1rem;
}

.downloads span.icn, .herkunft-nav span.icn {
  position: absolute;
  width: 2rem;
  height: 2rem;
  background-color: var(--brown);
  border: 1px solid var(--brown);
  border-radius: 50%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.nachhaltigkeit .downloads span.icn, .nachhaltigkeit .herkunft-nav span.icn {
  background: var(--green);
  color: var(--light-olive);
  border-color: var(--green);
}

.downloads span.icn:after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-image: url('/static/images/download.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: var(--filter-beige);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

.downloads h5 span {
  width: calc(100% - 40px);
}

.herkunft-nav span.icn:after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.75rem;
  background-image: url('/static/images/arrow-down.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  filter: var(--filter-beige);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

.nachhaltigkeit .downloads span.icn:after, .nachhaltigkeit .herkunft-nav span.icn:after {
  filter: var(--filter-olive);
}

.downloads a:hover span.icn {
  background-color: transparent;
  border-color: var(--beige);
}

.nachhaltigkeit .downloads a:hover span.icn {
  background-color: var(--white);
  border-color: var(--olive-3);
}

.downloads a:hover span.icn:after {
  filter: var(--filter-brown);
}

.nachhaltigkeit .downloads ul a:hover span.icn:after {
  filter: var(--filter-green);
}

.nachhaltigkeit .herkunft-nav a:hover span.icn:after {
  filter: var(--filter-green);
}

.nachhaltigkeit .downloads ul a:hover span.icn, .nachhaltigkeit .herkunft-nav a:hover span.icn {
  background: transparent;
  color: var(--light-olive);
  border-color: var(--olive);
}

.herkunft-nav a:hover span.icn:after {
  filter: var(--filter-brown);
}

.partner-werden-content {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
}

.gradient-top {
  position: absolute;
  top: 0;
  height: 40%;
  width: 86%;
  background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); 
  background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); 
  background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=0 ); 
}

h3.partner-werden {
  font-size: min(max(2rem, 4vw), 4rem);
}

.partner-werden-content p {
  margin-bottom: 4rem;
}



/*--------------------------------------------------
	REZEPTBUCH
---------------------------------------------------*/

a.rezeptbuch {
  background-size: contain;
  background-repeat: no-repeat;
  height: clamp(14rem, 27vw, 27rem);
}

h5 img {
  width: clamp(1rem, 2vw, 2.5rem);
  height: clamp(1rem, 2vw, 2.5rem);
}




/*--------------------------------------------------
	HERKUNFT
---------------------------------------------------*/

ul.fakten {
  list-style: none;
  padding-left: 0;
}

.fakten li {
  margin-bottom: 1rem; 
}

table.produkte {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

table.produkte thead {
  background-color: var(--brown);
  color: var(--white);
}

.nachhaltigkeit table.produkte thead {
  background-color: var(--green);
  color: var(--light-olive);
}

table.produkte thead th {
  padding: 15px;
  text-align: left;
  font-size: 16px;
}

table.produkte tbody tr {
  border-bottom: 1px solid var(--mid-gray);
}

table.produkte tbody td {
  padding: 15px;
  font-size: 14px;
}




/*--------------------------------------------------
	FOOTER
---------------------------------------------------*/

.footer .row-1 img {
  max-width: clamp(10rem, 15vw, 15rem);
  margin-bottom: clamp(1rem, 2vw, 4rem);
}

.footer b {
  white-space: pre-wrap;
  font-weight: 600;
}


.social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  float: left;
  margin-right: 8px;
}

.social-icons a {
  margin-right: clamp(1rem, 1.5vw, 1.5rem);
}

.social-icons img {
  float: left;
  width: 25px;
  height: 20px;
  object-fit: contain;
}

.footer h4, .nav-social h4 {
  float: left;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  text-align: left;
  font-family: var(--title-font);
}

.col-6.row-3.top-right {
  display: block;
  text-align: right;
}

ul.links {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  padding-left: 0;
}

.links a, .links .agb-button {
  margin-right: 1rem;
  cursor: pointer;
  transition: all ease .3s;
}

.agb-button:hover {
  color: var(--beige);
  text-decoration: none;
}

.agb-button-frame {
  position: absolute;
  top: 3em;
  right: -25%;
  background: var(--white);
  width: 21em;
  height: auto;
  padding: 1em;
  white-space: nowrap;
  border: solid 1px var(--mid-gray);
  -webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-box-shadow: 0px 0px 14px 0px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0px 0px 14px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 0px 14px 0px rgb(0 0 0 / 10%);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

.agb-button-frame.is-active {
  visibility: visible;
  opacity: 1;
  z-index: 999;
}

.agb-button-frame::before {
  content: "";
  top: -12px;
  right: 60px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 12px 20px;
  border-color: transparent transparent var(--white) transparent;
  position: absolute;
  z-index: 2;
}

.agb-button-frame::after {
  content: "";
  top: -13px;
  right: 59px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 21px 12px 21px;
  border-color: transparent transparent var(--mid-gray) transparent;
  position: absolute;
  z-index: 1;
}

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

.agb-buttons {
  position: relative;
  display: flex;
  float: left;
  width: 100%;
  justify-content: space-between;
}

.links .agb-buttons a.button {
  margin-left: 0;
}

.agb-button-frame h4 {
  font-size: 0.8rem;
  margin-bottom: 2em;
}

.copyright-container {
  border-top: 0.5px solid var(--mid-gray);
  margin-top: clamp(4rem, 6vw, 8rem);
}



/*------------------------------------------------------------------------------------------------------------------------------------------------------
	PRODUCT LAUNCH
-------------------------------------------------------------------------------------------------------------------------------------------------------*/

h1.inhalte {
  color: var(--red);
}
.inhalteListe {
  list-style-position: inside;

  padding-left: 0;
  list-style-type: none;
}

.inhalteListe li {
  padding: 0.5rem 0;
  margin: 0 0;
  border-bottom: 1px solid var(--mid-gray);
}

iframe#ytplayer {
  height: clamp(25rem, 45vw, 45rem);
}

.fancybox__container button::before {
  display: none;
}

.fancybox__nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news-detail figure {
  margin: 0;
  margin-top: 2rem;
}

.news-detail ul {
  list-style-position: outside;
  margin-left: 1rem;
}

figure iframe {
  width: 100%!important;
  height: auto!important;
  aspect-ratio: 16 / 9;
}

.multimedia-galery .galerie-item, .gallery video.galerie-item {
  height: clamp(6rem, 12vw, 12rem);
  object-fit: cover;
  width: 100%;
  float: left;
}

.product-launch .swiper2 {
  height: clamp(20rem, 30vw, 40rem);
}

.product-launch ul {
  padding-left: 1rem;
}

.product-launch .downloads ul {
  padding-left: 0;
}

.product-launch-matrix-slider h3 {
  clear: both;
}

/*
.text-l a, .text-r a {
  font-weight: bold;
  color: var(--red);
}
*/



/*------------------------------------------------------------------------------------------------------------------------------------------------------
	CHEFS TEAM
-------------------------------------------------------------------------------------------------------------------------------------------------------*/

img.chef-image {
  max-height: clamp(30rem, 40vw, 40rem);
  object-fit: cover;
}

.chef-social {
  float: left;
}

.chef-social a {
  margin-left: 0;
  margin-right: 1rem;
}

.accomplishment ul {
  padding-left: 1rem;
}

.chef-download {
  width: 100%;
  float: left;
}

.chefs-team h3 {
  float: left;
}

.chefs-team p {
  line-height: 1.25;
}


/*------------------------------------------------------------------------------------------------------------------------------------------------------
	LINKTREE
-------------------------------------------------------------------------------------------------------------------------------------------------------*/

.linktree-container {
  text-align: center;
}

.linktree ul.language-switcher {
  border: none;
}

.linktree-links {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  flex-direction: column;
}

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

.linktree-link a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.linktree-link {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1rem;
  padding: 1rem 0;
}

.linktree-link p {
  line-height: 1.5;
  color: black;
}

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

.social-media .social-icons a {
  margin: 12px 10px;
}

.social-media h5 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  text-align: left;
  font-family: var(--title-font);
}

.linktree-container h4 {
  font-weight: normal;
  text-transform: none;
}

.header-linktree {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 3rem 0 0;
}


/*------------------------------------------------------------------------------------------------------------------------------------------------------
	SUCHRESULTATE
-------------------------------------------------------------------------------------------------------------------------------------------------------*/

.suchresultate ul {
  padding-left: 1rem;
}



/*------------------------------------------------------------------------------------------------------------------------------------------------------
	ANCHORS
-------------------------------------------------------------------------------------------------------------------------------------------------------*/

section.anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}


/*------------------------------------------------------------------------------------------------------------------------------------------------------
	IMPRESSUM / DATENSCHUTZ
-------------------------------------------------------------------------------------------------------------------------------------------------------*/


.inhalt-rechtliches a, .swiper-section a, .slide-text a, .news-detail a, ul.fakten a {
  color: var(--brown);
  display: inline-block;
}

.inhalt-rechtliches a:after, .swiper-section a:after, .slide-text a:after, .news-detail a:after, ul.fakten a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  height: 1px;
  width: 100%;
  transition: width 800ms cubic-bezier(0.19, 1, 0.22, 1) 200ms;
  background-color: var(--beige);
}

.inhalt-rechtliches ul, .news-detail ul {
  padding-left: 1rem;
  margin-bottom: 2rem; 
}

.nachhaltigkeit .inhalt-rechtliches a:after, .nachhaltigkeit .swiper-section a:after, .nachhaltigkeit .slide-text a:after, .nachhaltigkeit .news-detail a:after, .nachhaltigkeit ul.fakten a:after {
  background-color: var(--olive-3);
}




/*------------------------------------------------------------------------------------------------------------------------------------------------------
	COOKIES
-------------------------------------------------------------------------------------------------------------------------------------------------------*/

.ccc-banner.ccc-banner--bottom {
  max-width: clamp(40rem, 50vw, 70rem);
}

p.ccc-banner__description {
  color: var(--black);
  font-size: min(max(0.9rem, 1vw), 1rem)!important;
  line-height: 1.5!important;
}

.ccc-banner__description a {
  color: var(--red);
}

.ccc-banner__buttons button::before {
  display: none!important;
}

.ccc-banner__button {
  border-radius: 0!important;
  font-size: 0.9rem!important;
  letter-spacing: 2px!important;
  margin: 1rem 0 0!important;
}

span.ccc-form__label-text {
  color: var(--black);
}

.ccc-banner .ccc-form__label {
  align-items: center!important;
  display: flex!important;
  margin: 0 0.5rem 0rem 0!important;
  font-size: min(max(0.9rem, 1vw), 1rem)!important;
  width: 100%!important;
}

.ccc-banner__label-container {
  align-items: flex-start!important;
  display: flex!important;
  flex-wrap: wrap!important;
  flex-direction: column!important;
  justify-content: flex-start!important;
}

form.cookie-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cookie-form input[type="submit"] {
  border: none;
  color: var(--white);
  background: var(--red);
  padding: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  margin-top: 1rem;
  cursor: pointer;
}


/*------------------------------------------------------------------------------------------------------------------------------------------------------
	COOKIES NEU
-------------------------------------------------------------------------------------------------------------------------------------------------------*/

#elc-cookie-consent {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 2rem;
  background-color: var(--white);
  font-size: 0.8em;
  width: clamp(40rem, 50vw, 70rem);
  max-height: auto;
  border-radius: 0!important;
  z-index: 10000;
  box-shadow: 0 15px 30px 0 rgba(0,0,0,.11),0 5px 15px 0 rgba(0,0,0,.08);
}

a#elc-detail-link {
  display: none;
}

#elc-cookie-consent h3 {
  font-size: min(max(1.1rem, 2vw), 2rem)!important;
}

#elc-cookie-consent .elc-button-link, .elc-button-link {
  width: auto!important;
  border-radius: 0!important;
  background: var(--brown)!important;
  font-size: min(max(0.8rem, 0.9vw), 1rem)!important;
  color: var(--white)!important;
  border: solid 1px var(--brown)!important;
  padding: 1.25rem 1.5rem 1.25rem 1.5rem!important;
  height: auto!important;
}

#elc-cookie-consent .elc-button-link {
  float: left!important;
}

#elc-cookie-consent .elc-button-link:hover, .elc-button-link:hover {
  background: transparent!important;
  color: var(--brown)!important;
  border: solid 1px var(--brown)!important;
}

#elc-cookie-consent .elc-button-link:before, .elc-button-link:before {
  display: none;
}

#elc-cookie-consent #elc-cookie-consent-settings {
  margin-bottom: 4em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.elc-row.elc-cookie-headline {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

#elc-cookie-consent #elc-cookie-consent-settings {
  margin-bottom: 1rem!important;
  margin-top: 1rem!important;
}

p.elc-header-description {
  color: var(--black);
  line-height: 1.5;
  font-size: min(max(0.9rem, 1vw), 1rem)!important;
}

#elc-cookie-consent .elc-row .elc-cookie-checkbox {
  float: right;
  margin-left: 0!important;
  margin-right: .75rem!important;
}

.elc-row.elc-cookie-headline {
  align-items: center!important;
}

label small {
  display: none;
}

.elc-header a {
  color: var(--brown);
}


/* CARDS */

.cards_container {
  box-sizing: content-box;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-left: 0;
}

.cards_ace {
  position: relative;
  padding: 0;
  margin: 3rem 0;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex: 0 0 12rem;
  color: var(--white);
  background: var(--brown);
  z-index: 1;
}

.cards_ace p {
  color: var(--white);
  font-size: min(max(1.05rem, 1.8vw), 1.8rem);
  hyphens: none;
  font-weight: bold;
}

.cards_ace .arrow_left {
  background-image: url("../images/arrow_right.svg");
  transform: rotate(180deg);
}

.cards_ace .arrow_left, .cards_ace .arrow_right {
  width: clamp(2rem, 3vw, 3rem);
  height: clamp(2rem, 3vw, 3rem);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
  background: var(--beige);
  border: solid 1px var(--beige);
}

.cards_ace .arrow_left:hover, .cards_ace .arrow_right:hover {
  background: var(--brown);
}

.cards_ace .arrow_left:before, .cards_ace .arrow_right:before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 0.8rem;
  background-image: url('/static/images/arrow-right.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  filter: var(--filter-brown);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}

.cards_ace .arrow_left:hover:before, .cards_ace .arrow_right:hover:before {
  filter: var(--filter-beige);
}


.cards {
  position: relative;
  margin-left: 0;
  width: 100%;
  padding: 3em 0;
  flex-wrap: nowrap;
  display: flex;
  align-items: normal;
}

.cards_section {
  position: relative;
  scrollbar-gutter: always;
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
}

.cards_container:after {
  position: absolute;
  content: "";
  right: -1px;
  top: 0;
  width: 10em;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); 
  background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); 
  background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); 
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
}

.cards_section::-webkit-scrollbar {
  height: 5px;
  display: none;
}

.cards_section::-webkit-scrollbar-track {
  background: var(--bg-gray);
  display: none;
}

.cards_section::-webkit-scrollbar-thumb {
  height: 5px;
  background-color: var(--scrollbar);
  display: none;
}

.cards_section::-webkit-scrollbar-thumb:hover {
  background-color: var(--green);
  display: none;
}

.cards_section::-webkit-scrollbar:vertical {
  display: none;
}

.card_item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 30rem;
  border-radius: 0;
  padding: 1rem 1.5rem;
  background: var(--white);
  transition: all ease 0.5s;
  z-index: 1;
  box-shadow: -3px 3px 16px 0px rgba(0,0,0,0.27);
  -webkit-box-shadow: -3px 3px 16px 0px rgba(0,0,0,0.27);
  -moz-box-shadow: -3px 3px 16px 0px rgba(0,0,0,0.27);
}

.card_item:first-child {
  margin-left: 1em;
}

.card_item:not(:first-child) {
  margin-left: -8rem;
  /*-webkit-box-shadow: -30px 10px 20px -25px rgb(0 0 0 / 7%);
  -moz-box-shadow: -30px 10px 20px -25px rgb(0 0 0 / 7%);
  box-shadow: -30px 10px 20px -25px rgb(0 0 0 / 7%);*/
}

.card_item:hover {
  -webkit-transform: translateY(-1rem) !important;
  transform: translateY(-1rem) !important;
  z-index: 6;
}


.card_item:hover~.card_item {
  -webkit-transform: translateX(7em)!important;
  transform: translateX(7em)!important;
}

.cards span.title {
  font-size: min(max(1.25rem, 1.25vw), 1.5rem);
  color: var(--brown);
  width: 100%;
  font-weight: bold;
  transition: all ease 0.3s;
  hyphens: auto;
  white-space: normal;
  line-height: 1.25;
}

a.card_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  transition: none;
}

.cards span.text {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  white-space: normal;
  transition: all ease 0.3s;
  margin-top: 1rem;
}

.cards span.text p {
  transition: all ease 0.3s;
}

.cards_ace .cards-buttons {
  position: absolute;
  left: 0;
  bottom: 2rem;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.card_image {
  width: 100%;
  margin-top: 1rem;
}

.card_image img {
  width: 100%;
  float: left;
  height: clamp(8rem, 14vw, 14rem);
  object-fit: cover;
}

.card-top {
  min-height: 9rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 1rem;
}

/*
.card_item:hover > span.title, .card_item:hover > span.text p, .card_item:hover > a.button {
  color: var(--white);
}

.card_item:hover > a.button {
  color: var(--white);
  border-bottom: 1px solid var(--white);;
}

.card_item:hover > a.button:after {
  filter: invert(1);
}

.card_item:hover > .card_icon img {
  filter: brightness(2);
}
*/


.ost-jobs button {
  font-size: min(max(0.8rem, 0.9vw), 1rem);
  padding: 1.25rem 3rem 1.25rem 1.5rem;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

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

.ost-column3 button:hover:after {
  filter: var(--filter-white);
}

.ost-jobs .ost-job h4 {
  font-size: min(max(1.05rem, 1.25vw), 1.25rem);
}

.ost-jobs h4 a {
  font-weight: bold;
  color: var(--white);
}

.ost-jobs .ost-job .ost-job-attributes li {
  background-color: rgba(0, 0, 0, 0);
  color: var(--light-brown);
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
    padding: 0rem 12px;
}

.ost-jobs .ost-job .ost-job-attributes li.workload {
  padding: 3.75px 12px 3.75px 0;
}

.ost-jobs .ost-job .published {
  opacity: 1;
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
}

.ost-jobs .ost-job .ost-row {
  border-bottom: 1px solid var(--beige);
}



/* ///// INHALT ///// */

.contentblock {
  width: 100%;
  float: left;
  margin: 1rem 0;
}

.contentblock .downloads ul {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.contentblock .downloads a:after {
  display: none;
}

/* ///// F0RMULAR ///// */
.freeform-form {
  float: left;
  width: 100%;
}

.freeform-row {
  font: normal min(max(0.9rem, 1.1vw), 1.1rem) var(--common-font) !important;
  font-size: min(max(0.9rem, 1.1vw), 1.1rem) !important;
  line-height: 1.75 !important;
  -moz-hyphens: auto !important;
  -o-hyphens: auto !important;
  -webkit-hyphens: auto !important;
  -ms-hyphens: auto !important;
  hyphens: auto !important;
  -webkit-text-size-adjust: 100% !important;
}

.freeform-row [class*="freeform-col-"] label {
  display: flex !important;
  margin: 0 0 5px 0 !important;
  align-items: center !important;
}

.freeform-row [class*="freeform-col-"] input, .freeform-row [class*="freeform-col-"] textarea, .freeform-row [class*="freeform-col-"] select {
  color: var(--black) !important;
  background-color: var(--lighter-brown) !important;
  border: 0px solid #cbced0 !important;
  border-radius: 0 !important;
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out;
  border-bottom: solid 1px var(--beige) !important;
}

.freeform-row [class*="freeform-col-"] .freeform-input[type="checkbox"], 
.freeform-row [class*="freeform-col-"] .freeform-input[type="radio"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  margin-right: 10px !important;
  width: 15px !important;
  height: 15px !important;
  display: inline-block !important;
  border: 1px solid var(--beige) !important;
  background-color: var(--lighter-brown) !important;
  cursor: pointer !important;
  vertical-align: middle !important;
}

.freeform-row [class*="freeform-col-"] .freeform-input[type="checkbox"]:checked,
.freeform-row [class*="freeform-col-"] .freeform-input[type="radio"]:checked {
    background-color: var(--brown) !important;
}

button.freeform-input.freeform-file-dnd__input {
  min-height: 10rem;
  margin: 0 !important;
  background-color: var(--lighter-brown) !important;
  color: var(--brown) !important;
  font-weight: bold;
}

.freeform-row [class*="freeform-col-"] .freeform-instructions {
  font-size: 0.9rem !important;
  color: var(--brown) !important;
  margin: -5px 0 10px 0 !important;
}

.freeform-row [class*="freeform-col-"] .freeform-label {
  font-weight: normal !important;
  font-size: 1rem !important;
  margin: 8px 0 !important;
  font-size: min(max(0.9rem, 1.1vw), 1.1rem) !important;
  line-height: 1.75 !important;
  -moz-hyphens: auto !important;
  -o-hyphens: auto !important;
  -webkit-hyphens: auto !important;
  -ms-hyphens: auto !important;
  hyphens: auto !important;
  -webkit-text-size-adjust: 100% !important;
}

.freeform-col-12.freeform-fieldtype-html {
  margin-top: 1rem !important;
  margin-bottom: -1.5rem !important;
}

.freeform-row [class*="freeform-col-"] .freeform-label {
  font-weight: 600 !important;
}

.freeform-file-dnd__input [data-placeholder] {
  position: absolute;
  top: 50%;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, calc(-50% + 1.5rem));
  color: var(--brown) !important;
  font-style: normal !important;
  font-weight: normal !important;
}

.freeform-file-dnd__input [data-placeholder]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(-100% - 1rem));
  width: 3rem;
  height: 3rem;
  background-image: url("/static/images/icon-upload.svg");
  opacity: 1;
  z-index: -1;
}

.g-recaptcha {
  padding: 10px;
}

[data-freeform-controls]>div button {
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--brown) !important;
  background-color: var(--brown) !important;
  border-radius: 0 !important;
  color: var(--lighter-brown);
  font-size: min(max(0.8rem, 0.9vw), 1rem);
  font-weight: normal;
  padding: 1.25rem 3rem 1.25rem 1.5rem;
  line-height: 1;
}

[data-freeform-controls]>div button:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 1.25rem;
  width: 1rem;
  height: 1rem;
  background-image: url('/static/images/arrow-right.svg');
  filter: var(--filter-beige);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all ease 0.3s;
}

[data-freeform-controls]>div button:hover:after {
  filter: invert(38%) sepia(39%) saturate(346%) hue-rotate(345deg) brightness(94%) contrast(84%);
}

[data-freeform-controls]>div button:hover {
  background-color: var(--white) !important;
  color: var(--brown) !important;
}

.freeform-file-dnd__input [data-preview-zone] [data-file-preview] [data-thumbnail] [data-remove-button] {
  width: 20px;
  height: 20px;
  background: var(--red) !important;
  color: var(--light-brown) !important;
  color: #878787;
  border: 0px solid #e6e5e5 !important;
  padding: 5px !important;
}

.freeform-form-success {
  margin-top: 9rem;
}

.freeform-form-errors {
  margin-top: 9rem;
  background-color: var(--red) !important;
  border: 1px solid var(--red) !important;
}


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






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




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

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

  #slider .claim-right {
    right: -7%;
  }

  .menu-container {
    width: 80%;
  }

  .shop-button-frame {
    width: 34em;
}

.agb-button-frame {
  width: 34em;
}
  
  /* ///// 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 ///// */

.shop-button-frame {
  width: 36em;
}

.agb-button-frame {
  width: 36em;
}


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


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


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

.cards_ace {
  flex: 0 0 9rem;
}
  
}


@media screen and (min-width : 1840px) {

  .heads-content {
    margin-left: calc((100% - 1400px)/2);
    width: calc(1400px / 2);
  }

}


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

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


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

.shop-button-frame {
  width: 38em;
}

.agb-button-frame {
  width: 38em;
}

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


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


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

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

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


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

header #containerP {
  padding-left: clamp(2rem, 3vw, 3rem);
  padding-right: clamp(2rem, 3vw, 3rem);
  z-index: 2;
}

#navigationWrap {
  padding: 90px 0 0;
}

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

.menu-container {
  width: 90%;
}

nav ul li ul {
  width: 59vw;
}

.header_fadein {
  height: 60px;
}

.feature_nav a {
  font-size: 0.8rem;
}

.feature_nav_inner {
  padding: 8px 40px;
}

nav.feature_navigation {
  height: 40px;
  top: 60px;
}

.feature_nav {
  height: 42px;
}

.arrow-left, .arrow-right {
  width: 50px;
}


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

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


.point {
  width: 10px;
  height: 10px;
}

  
}

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

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

.btn.felchlin {
  height: 40px;
  width: 40px;
}

.swiper-button-prev-2:after, .swiper-button-next-2:after {
  width: 30px;
  height: 30px;
}

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

#navigationWrap {
  padding: 70px 0 0;
}

#slider .claim-right {
  letter-spacing: 8px;
  font-size: 0.6rem;
}



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

nav ul li ul {
  grid-template-columns: 1fr 1fr;
  left: 0;
}

nav > ul > li.subentry .submenu-panel {
  grid-gap: 4rem;
  padding: 4rem 4rem;
}

nav ul li ul li a.sub_tile {
  width: 100%;
  height: clamp(6em, 14vw, 14em);
}

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


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

.grundsaetze ul {
  max-width: 100%;
  margin: 0;
}

  
}



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

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


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

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

.feature_nav_inner {
  padding: 8px 10px;
}

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


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


  a.rezeptbuch {
    height: clamp(20rem, 35vw, 35rem);
  }

  .card_item {
    width: 16rem;
  }

  
}

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

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


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


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

nav > ul > li.subentry .submenu-panel {
  padding: 3rem 3rem;
  grid-gap: 2rem;
}

nav > ul > li.subentry .submenu-panel ul.submenu-list {
  width: 50%;
}

nav ul li ul {
  width: 26vw;
}


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

.swiper4, .swiper5, .swiper6, .swiper7, .swiper8, .swiper9, .swiper10 {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-bottom: 3em;
}

.swiper21 {
  width: 100%;
  float: left;
}

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

.swiper-section {
  display: block;
}

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

.swiper-section.rtl .pagination-lines {
  left: 0;
  right: auto;
}

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

.btn.felchlin.mobile {
  display: flex;
}

.btn.felchlin.desktop {
  display: none;
}

.product-launch-matrix-slider .swiper-slide h4 {
  width: 100%;
  margin: 0;
  margin-top: 0.5rem;
}




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

table.produkte thead {
  display: none;
}

table.produkte tbody tr {
  display: block;
  margin-bottom: 20px;
}

table.produkte tbody td {
  display: block;
  text-align: right;
  padding: 10px;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  position: relative;
  padding-left: 50%;
}

table.produkte tbody td:before {
  content: attr(data-label);
  position: absolute;
  left: 10px;
  width: 45%;
  padding-right: 10px;
  white-space: nowrap;
  text-align: left;
  font-weight: bold;
}

table.produkte tbody td:last-child {
  border-bottom: 0;
}


  
}

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

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

  header #containerP {
    padding-left: 20px;
    padding-right: 20px;
  }

  #containerP .marquee-container {
    margin-left: -20px;
    width: calc(100% + 40px);
}

.header.fadein .header-left {
  display: none;
}

.header.fadein .header-container {
  grid-template-rows: repeat(1, 1fr);
}

.header.fadein .header-container::after {
  display: none;
}

.header-container {
  height: auto;
  padding: 1rem 0 1rem;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.header-container::after {
  content: '';
  position: absolute;
  left: -20px;
  right: 0;
  top: calc(50% - 12.5px);
  height: 1px;
  background-color: var(--mid-gray);
  z-index: 1;
  width: calc(100% + 40px);
}

.header-left {
  grid-column: 1 / span 3;
  display: flex;
  grid-row: 2;
  justify-content: flex-end;
  gap: 0.5rem;
}

a.logo {
  grid-column: 1;
  justify-self: start;
}

a.shop-button.mobile {
  display: flex;
}

a.shop-button.desktop {
  display: none;
}

.sticky {
  display: block;
  grid-column: 2;
  grid-row: 1;
}

ul.small-nav {
  grid-column: 2;
  border-left: solid 0px var(--gray);
}

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

  #slider {
    height: calc(calc(var(--vh, 1vh) * 100) - 18rem);
}

.heads-inner {
  width: 100%;
  margin: 0;
  height: clamp(20rem, 26vw, 26rem);
}

.heads {
  height: auto;
  flex-direction: column;
  margin-left: 20px;
  margin-right: auto;
  width: calc(100% - 40px);
}

.heads-content {
  width: 100%;
  margin:  0;
  padding: clamp(1.5rem, 2vw, 4rem) clamp(2rem, 2vw, 3rem);
}

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

  nav.desktop {
    display: none;
}

a.button.login {
  margin: 2.5rem 0;
  float: left;
}

  nav ul {
    background-color: transparent;
  }
  
  nav ul li {
    transition: none;
  }
  
  nav ul li a,
  nav ul li span {
    color: var(--black);
    font-size: 1rem;
  }
  
  nav ul > li.active > a,
  nav ul > li.active > span {
    color: var(--highlight-color);
  }
  
  nav ul > li ul li {
    justify-content: flex-start;
  }
  
  nav ul li.subentry > span, nav ul li.subentry > a, nav ul li.mainentry > a {
    position: relative;
    display: block;
    width: 100%;
    padding: 0.5rem 0 0.5rem 0;
    margin: 0;
    border-bottom: solid 1px var(--light-gray);
    font-weight: normal;
    font-size: 0.9rem;
}

nav ul li.mainentry > span, nav ul li.mainentry > a {
  font-size: 0.9rem;
}
  
  nav ul li.subentry.open > span,
  nav ul li.subentry.open > a {
    background: transparent;
  }
  
  nav > ul > li {
    overflow: hidden;
  }
  
  nav > ul > li > a,
  nav > ul > li > span {
    border: none;
    font-size: 1rem;
    font-family: var(--common-font), sans-serif;
    font-weight: bold;
  }
  
  nav > ul > li > a,
  nav > ul > li > span {
    transform: translateY(60px);
    opacity: 0;
    visibility: hidden;
    transition: none;
    font-weight: normal;
  }

  
  .navigationWrap .menu-container .address p, .navigationWrap .menu-container .address a {
    color: var(--base-color);
  }
  
  .sticky-menu {
    display: block;
  }
  
  
  nav ul li.subentry ul li > a, nav ul li.subentry ul li > span {
    padding: 0.5rem 3rem 0.5rem 0rem;
    font-size: 0.9rem;
    hyphens: auto;
    white-space: normal;
}
  
  
  nav > ul > li.subentry .submenu-panel {
    grid-gap: 0rem;
  }
  
  
  nav > ul > li.subentry .submenu-panel ul.submenu-list {
    width: 100%;
  }
  
  nav > ul > li > a:after, nav > ul > li > span:after {
    display: none;
  }

.nav-social {
  position: relative;
  margin-top: 2rem;
  display: block;
  float: left;
  visibility: hidden;
  opacity: 0;
}

.nav-social h4 {
  text-align: left;
}

.nav-social .social-icons {
  float: left;
  margin-right: 0;
}

.nav-social .social-icons a {
  margin-right: clamp(1.5em, 2vw, 2em);
  margin-left: 0;
}

.responsive-language-switcher {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  width: calc(100% - 40px);
  right: auto;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0 0 2rem 0;
  transform: none;
  visibility: hidden;
  opacity: 0;
}

.responsive-language-switcher li {
  margin: 0 1.05rem 0 0;
}

.navigationWrap .button.goback {
  padding: 0.75rem 1.5rem 0.75rem 3rem;
  margin-bottom: 1rem;
}


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

  #slider .swiper-container {
    width: calc(100% - 20px);
    margin-left: 0;
    margin-right: 20px;
  }

  .slider-image-small {
    right: -25px;
  }

  .slider-buttons {
    right: 11rem;
}

  #slider .claim-right {
    right: -6%;
  }

  .slider-content {
    width: 55%;
    bottom: 0;
    transform: translate(0,50%);
    padding: 0.5rem 2rem 1.5rem 2rem;
}

.swiper-variant-2 .swiper-button-next.btn.felchlin, .swiper-variant-2 .swiper-button-prev.btn.felchlin {
  top: auto;
  bottom: 2rem;
}

.swiper-variant-2 .swiper-slide .swiper-card {
  width: calc(100% - 40px);
  margin-bottom: 5rem;
}


  /* ///// C0NTENT ///// */
    
  .imgreveal, .imgreveal_rtl {
    max-width: 100%;
  }

  .sidenav_title_produkte {
    width: 120px;
  }

  .sidenav {
    left: 8px;
    font-size: 0.65rem;
    width: 320px;
  }

  .sidenav_title_produkte span {
    left: 0;
    font-size: 0.65rem;
  }

  .sidenav_title_produkte {
    height: 15px;
}

  .line.active.auflistung-1, .line.inactive.auflistung-1 {
    right: 104px;
  }

  .line.active.auflistung-2, .line.inactive.auflistung-2 {
    right: 52px;
  }

  .lines, .lines_produkte {
    top: 7px;
  }

  .highlight-gradient {
    height: clamp(20rem, 50vw, 50rem);
  }

  .highlight-gradient img {
    height: clamp(20em, 40vw, 40em);
    width: auto;
  }

  .quote-details {
    max-width: 80%;
    margin-left: 10%;
    margin-right: 10%;
  }

  .tab-accordion {
    display: block;
  }

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

  .grundsatz {
    margin: 1rem 5%;
    width: 90%;
  }

  a.rezeptbuch {
    height: clamp(9rem, 56vw, 52rem);
  }

  span.tab-link {
    position: absolute;
    top: 50%;
}

  .tab-accordion__image img {
    height: 24rem;
    object-fit: cover;
  }

  .map-card-2 {
    width: 100%;
  }

  .map-card-2 img.map-2 {
    height: 48vw;
}

section.herkunft-entries {
  width: calc(100% - 40px);
}

}

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

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

.btn.felchlin {
  height: 35px;
  width: 35px;
  border-radius: 35px;
}

.btn.felchlin .arrow {
    width: 10px;
    height: 7px;
}


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


.heads-title span {
  font-size: min(max(1.2rem, 5vw), 5rem);
  hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
}

ul.small-nav a.button.btn-fabrikladen {
  display: none;
}

.swiper-wrapper a.button.btn-fabrikladen {
  display: flex;
}

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

nav ul li ul {
  grid-template-columns: 1fr 1fr;
}

nav ul li ul li a.sub_tile {
  height: clamp(5em, 22vw, 22em);
}

a.button.subnav-button {
  margin: 1rem 0 0.5rem 0.75rem;
}

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

.swiper-variant-2 .swiper-slide .swiper-card {
  margin-bottom: 2rem;
}

.swiper-variant-2 .swiper-button-next {
  right: 20px;
}

.swiper-variant-2 .swiper-button-prev {
  right: 80px;
}

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


.aromawelt .bg {
  width: 100%;
  margin: 0 0;
}

  
}



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

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

.grid.cols-2.same-width {
  grid-template-columns: repeat(1, 100%);
}

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

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


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


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


.footer h4, .nav-social h4 {
  text-align: left;
}

.footer .social-icons {
  float: left;
  margin-right: 0;
}

.footer .social-icons a {
  margin-right: clamp(1em, 2vw, 2em);
  margin-left: 0;
}

.grundsaetze .col-1 {
  border-right: 0px solid var(--beige);
}

.grundsaetze .col-1:nth-last-child(-n+2) {
  border-bottom: 1px solid var(--beige);
}

.point {
  width: 7px;
  height: 7px;
}

.grundsaetze h3 {
  text-align: left;
}

.grundsaetze .grid {
  width: 100%;
  margin-left: 0;
}

  
}

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

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


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

.header_fadein a.logo {
  left: 20px;
}

.heads {
  margin-left: 0;
  width: 100%;
}

.heads-content {
  padding: clamp(1.5rem, 2vw, 4rem) 20px;
}

.shop-button-frame {
  width: 33em;
}

.shop-buttons a.button {
  padding: 0 30px 0 0;
}

.shop-button-frame::before {
  right: 35px;
}

.shop-button-frame::after {
  right: 34px;
}

.agb-button-frame {
  width: 33em;
  right: -12%;
}

.agb-buttons a.button {
  padding: 0 30px 0 0;
}

.agb-button-frame::before {
  right: 20px;
}

.agb-button-frame::after {
  right: 19px;
}

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

nav ul li ul li a.sub_tile {
  height: clamp(5em, 30vw, 12em);
}

.subnav-button {
  margin: 1.5vh 0 2vh 0.25rem;
  padding: 0 30px 0 0;
  font-size: 0.65rem;
}

.subnav-button .btn.felchlin {
  width: 20px;
  height: 20px;
  top: -2px;
  overflow: hidden;
}

.shop-button-frame .btn.felchlin {
  width: 20px;
  height: 20px;
  top: 10px;
  overflow: hidden;
}

.agb-button-frame .btn.felchlin {
  width: 20px;
  height: 20px;
  top: 10px;
  overflow: hidden;
}

li.sub_li .btn.felchlin .arrow:after {
  transform: translateX(-15px);
}

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

.btn.felchlin .arrow {
  width: 7px;
  height: 6px;
}

.subnav-button {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

ul.language-switcher {
  display: none;
}

.linktree ul.language-switcher {
  display: flex;
}

.cp_frame_nav.search_frame.mobile {
  display: block;
  width: 70%;
}

input[type="search"] {
  padding: 0 8px;
}

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

#slider .claim-right {
  right: -24px;
}

.slider-image-small {
  right: -18px;
}

.slider-image-small {
  width: 65vw;
  height: 60vw;
}

.slider-content {
  left: auto;
  top: auto;
  bottom: 0;
  right: 0;
  width: calc(100% - 20px);
  transform: translate(0, 50%);
}

.slider-buttons {
  right: 9rem;
  bottom: auto;
  top: 3rem;
  left: auto;
}

#slider .claim-right {
  letter-spacing: 7px;
  font-size: 0.55rem;
}

.overlay-left {
  width: 70%;
}

.swiper1 .swiper-slide:before {
  display: none;
}


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


  .quote-details {
    max-width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }


  .cards_container {
    flex-direction: column;
  }
  
  .cards_section {
    width: calc(100% + 20px);
  }
  
  .cards_ace {
    margin: 2em 0 0em;
    flex: 0 0 4rem;
  }
  
  .cards {
    padding: 1em 0 1em 0;
  }
  
  .cards_ace .cards-buttons {
    bottom: auto;
    top: 50%;
    transform: translate(0,-50%);
    right: 20px;
    left: auto;
    justify-content: flex-end;
  }
  
  .card_item:first-child {
    margin-left: 0em;
  }
  
  .cards_container:after {
    display: none;
  }
  
  .card_item {
    width: 20rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }
  
  .card-top {
    min-height: 8rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 0;
  }
  
  .card_item:not(:first-child) {
    margin-left: -10rem;
  }
  
}

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

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



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

/*.heads-title span {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}*/

.onlineshop-mobile {
  display: block;
}

span.onlineshop-dekstop {
  display: none;
}

.shop-button-frame {
  width: 20em;
  padding: 1.5em;
  left: 0;
  transform: translateX(-45%);
}

.shop-buttons {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.shop-button-frame h4 {
  margin-bottom: 1em;
}

.shop-buttons a.button {
  padding: 0px 30px 0px 0;
  margin: 8px 0;
}


.agb-button-frame {
  width: 18em;
  padding: 1.2em;
  right: -7%;
}

.agb-button-frame::before {
  right: 10px;
}

.agb-button-frame::after {
  right: 9px;
}

.agb-buttons {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.agb-button-frame h4 {
  margin-bottom: 1em;
}

.agb-buttons a.button {
  padding: 0px 30px 0px 0;
  margin: 8px 0;
}


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

nav ul {
  width: 100%;
}

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


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

  .ccc-banner.ccc-banner--bottom {
    margin: 0!important;
  }

  .pagination-lines {
    transform: rotate(270deg) translate(-100%, -0em);
  }

  .grundsaetze ul {
    column-count: 1;
  }


}




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

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


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


.small-nav img {
  margin: 0 9px;
}


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

.hamburger .line1, .hamburger .line1:first-child, .hamburger .line2 {
  height: 2px;
}

.line_produkte, .line_produkte_active {
  width: 15px;
  height: 1px;
  margin-right: 2px;
}

#navigationWrap {
  padding: 140px 0 30px;
}

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

.slider-image-small {
  width: 55vw;
  height: 50vw;
}

.overlay-left {
  width: 90%;
}

.slider-content h1 {
  line-height: 1.1;
}

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

.linktree-link {
  padding: 0.25rem 0;
  margin-bottom: 0.5rem;
}

.linktree-link p {
  line-height: 1.25;
  color: black;
}

.linktree-container {
  padding-top: 10%;
}

section.gallery {
  width: 100%;
}

a.gallery-item {
  margin-right: 1rem;
  margin-bottom: 1rem;
  height: clamp(8rem, 14vw, 14rem);
}

.gallery a {
  flex: 0 calc(50% - 1rem);
}
  
}


@media screen and (max-width : 375px)  {
  .partner-werden-content {
    width: 100%;
  }
}

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

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


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


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

nav ul li ul {
  width: 90%;
  grid-gap: 0.5em 0.5em;
}

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


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






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

  :root {
    --white: #fff;
    --black: #141414;
    --red: #8d353f;
    --dark-brown: #514133;
    --red-brown: #7c634f;
    --gray: #aeb1b4;
    --mid-gray: #e6e6e6;
    --light-gray: #e8eaed;
  }

  body, .wrapper, footer, #navigationWrap {
    background: var(--brown-2);
    color: var(--white);
  }

  .header {
    background: var(--brown-2);
  }

  header.header_fadein {
    background: var(--brown-2);
    color: var(--white);
  }

  a {
    color: var(--beige);
  }

  .ccc-banner.ccc-banner--bottom {
    background: var(--brown-2)!important;
  }

  .nachhaltigkeit body, .nachhaltigkeit main, .nachhaltigkeit .wrapper, .nachhaltigkeit footer, .nachhaltigkeit #navigationWrap, .nachhaltigkeit .header, .nachhaltigkeit header.header_fadein, .nachhaltigkeit .ccc-banner.ccc-banner--bottom, .nachhaltigkeit nav.desktop, .nachhaltigkeit .header-container {
    background: var(--green);
  }

  .nachhaltigkeit a:not(nav ul li a, nav ul li span, .feature_nav a, a.button, .shop-button) {
    color: var(--olive-3);
  }

  .nachhaltigkeit .heads {
    background: var(--olive);
  }

  .nachhaltigkeit .downloads span.icn:after, .nachhaltigkeit .herkunft-nav span.icn:after {
    filter: var(--filter-green);
  }

  .nachhaltigkeit .downloads a:hover, .nachhaltigkeit .herkunft-nav a:hover {
    color: var(--light-olive);
}

.nachhaltigkeit .downloads a:hover span.icn:after {
  filter: var(--filter-olive);
}

.nachhaltigkeit .downloads a:hover span.icn {
  background-color: var(--green);
  border: solid 1px var(--olive-3);
}

.nachhaltigkeit .herkunft-nav a:hover span.icn:after {
  filter: var(--filter-olive);
}

.nachhaltigkeit .downloads ul a:hover span.icn:after {
  filter: var(--filter-olive);
}

.nachhaltigkeit table.produkte thead {
  background-color: var(--olive);
  color: var(--light-olive);
}


.bg-green {
  background: var(--olive);
  color: var(--green);
}

.nachhaltigkeit .bg-brown {
  background: var(--olive);
  color: var(--light-olive);
}

.bg-green h2, .bg-green p, .bg-green .marquee-container .marquee-content h2, .bg-green h3 {
  color: var(--green);
}

.bg-green span.zahl-kreis {
  background: var(--green);
  color: var(--olive-3);
}

.nachhaltigkeit .tabs.swiper-pagination-bullets .tab-dot {
  border: solid 1px var(--green);
  background-color: var(--light-olive);
}

.nachhaltigkeit .tabs.swiper-pagination-bullets .tab-link.swiper-pagination-bullet-active .tab-dot {
  border: solid 1px var(--green);
}

.nachhaltigkeit .tab-dot .arrow:before {
  background: var(--olive-3);
}

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

.nachhaltigkeit .tab-dot .arrow:after {
  background: var(--light-olive);
}

.nachhaltigkeit .tabs.swiper-pagination-bullets .tab-dot:before {
  background: var(--green);
}

.nachhaltigkeit .bg-brown h3 {
  color: var(--white);
}

.swiper-scrollbar-drag {
    background: var(--green);
}

  a.logo.light-theme, img.light-theme {
    display: none;
  }

  a.logo.dark-theme, img.dark-theme {
    display: inline-block;
  }

  .header_fadein a.logo.dark-theme {
    display: flex;
  }

  .header-container::after {
    background: var(--brown);
  }

  .nachhaltigkeit .header-container::after {
    background: var(--olive);
  }

  .hamburger .line1, .hamburger .line2, .hamburger.is-active .line1:nth-child(1), .hamburger.is-active .line1:nth-child(3) {
    background-color: var(--white);
  }

  a.button.btn-fabrikladen {
    accent-color: var(--black);
  }

  .nachhaltigkeit a.button.btn-fabrikladen img {
    filter: var(--filter-olive);
}

  .nachhaltigkeit a.button.btn-fabrikladen:hover img {
    filter: var(--filter-olive);
  }

  nav.desktop {
    background-color: var(--brown-2);
    border-width: 0.5px;
    border-color: var(--brown);
    border-bottom: none;
  }

  nav > ul > li.subentry .submenu-panel {
    border-top: 0.5px solid var(--dark-brown);
  }

  nav ul li.subentry.open > span, nav ul li.subentry.open > a {
    color: var(--white);
    font-weight: 600;
}

  nav ul li a, nav ul li span {
    color: var(--white);
  }

  .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 {
    background-color: var(--brown);
  }

  a.button.btn-fabrikladen:hover {
    background-color: var(--light-brown);
}

.introtext-big p b, .introtext-big p strong {
  color: var(--beige);
}

.shop-button:hover {
  background: transparent;
  color: var(--beige);
  border: 1px solid var(--beige);
}

.shop-button img {
  filter: var(--filter-beige);
}

.shop-button:hover img {
  filter: invert(100%) sepia(10%) saturate(555%) hue-rotate(364deg) brightness(80%) contrast(100%);
}

  .small-nav img {
    filter: var(--filter-white);
  }

  a.button .tooltiptext::after, a.shop-button .tooltiptext::after {
    border-color: transparent transparent var(--white) transparent;
  }
  
  .swiper1 .swiper-slide:before {
    background: var(--brown);
  }

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

  .slider-content h1 {
    color: var(--white);
  }

  .subtitle.black {
    color: var(--white);
}

  .language-switcher li a.active, .responsive-language-switcher li a.active {
    font-weight: 600;
    color: var(--white);
  }

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

  .marquee-container .marquee-content h2 {
    color: var(--brown);
  }

  .bg-brown .marquee-container .marquee-content h2 {
    color: var(--light-brown);
  }

  .post {
    background: var(--transparent);
  }

  .inhalt-rechtliches a, .swiper-section a, .slide-text a, .news-detail a, ul.fakten a {
    color: var(--beige);
}

  li.download {
    color: var(--beige);
}

  .downloads a, .herkunft-nav a {
    color: var(--white);
}

.downloads a:hover, .herkunft-nav a:hover {
  color: var(--beige);
}

.downloads a:hover span.icn {
  background-color: var(--brown-2);
  border: solid 1px var(--brown);
}

.downloads a:hover span.icn:after {
  filter: var(--filter-beige);
}

.downloads li, .herkunft-nav li {
  border-bottom: 1px solid var(--beige);
}

.nachhaltigkeit .downloads li, .nachhaltigkeit .herkunft-nav li {
  border-bottom: 1px solid var(--olive);
}

.nachhaltigkeit .downloads span.icn, .nachhaltigkeit .herkunft-nav span.icn {
  background: var(--olive);
  color: var(--light-olive);
  border-color: var(--olive);
}

.nachhaltigkeit .btn.felchlin {
  background: var(--olive);
  color: var(--light-olive);
  border-color: var(--olive);
}

.nachhaltigkeit .btn.felchlin:hover {
  background: transparent;
  color: var(--olive);
}

.nachhaltigkeit .btn.felchlin:hover:before {
  filter: var(--filter-olive);
}

  footer a {
    color: var(--white);
  }

  .links a, .links .agb-button {
    color: var(--white);
}

  .inhalt-rechtliches a {
    color: var(--beige);
  }

  .copyright-container {
    border-color: var(--mid-gray);
  }

  .social-icons img {
    filter: invert(1) saturate(0) brightness(5);
  }

  .aromawelt .bg {
    background-image: url('/static/images/aromawelt_bg_darkmode.jpg');
  }

  .onlineshop .bg {
    background-image: url('/static/images/online_shop_bg_darkmode.jpg');
  }

  .onlineshop .overlay-top {
    background: -moz-linear-gradient(top,  rgba(80,65,51,1) 0%, rgba(80,65,51,1) 30%, rgba(80,65,51,0) 100%);
    background: -webkit-linear-gradient(top,  rgba(80,65,51,1) 0%,rgba(80,65,51,1) 30%,rgba(80,65,51,0) 100%);
    background: linear-gradient(to bottom,  rgba(80,65,51,1) 0%,rgba(80,65,51,1) 30%,rgba(80,65,51,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#463c39', endColorstr='#463c39',GradientType=0 );
  }

  li.subnav span:after {
    background-image: url('/static/images/subnav-arrow-darkmode.svg');
  }

  .shop-button-frame {
    background: var(--dark-brown);
    border: solid 1px var(--red-brown);
  }

  .shop-button-frame::before {
    border-color: transparent transparent var(--dark-brown) transparent;
  }

  .shop-button-frame::after {
    border-color: transparent transparent var(--red-brown) transparent;
  }

  nav.feature_navigation {
    background-color: var(--dark-brown);
    border-top: solid 1px var(--brown);
  }

  .nachhaltigkeit nav.feature_navigation {
    background-color: var(--green);
    border-top: solid 1px var(--olive-3);
  }

  .arrow-right {
    background: var(--dark-brown);
    border-left: solid 1px var(--brown);
  }

  .arrow-left {
    background: var(--dark-brown);
    border-right: solid 1px var(--brown);
  }

  .arrow-left:after, .arrow-right:after {
    background-image: url('/static/images/subnav-arrow.svg');
}


  .nachhaltigkeit .arrow-right {
    background: var(--green);
    border-left: solid 1px var(--olive-3);
  }

  .nachhaltigkeit .arrow-left {
    background: var(--green);
    border-right: solid 1px var(--olive-3);
  }
  .nachhaltigkeit .feature_nav::-webkit-scrollbar-track {
    background-color: var(--green);
  }

  .nachhaltigkeit .feature_nav::-webkit-scrollbar-thumb {
    background-color: var(--olive-3);
  }

.swiper-pagination, .swiper-pagination-4, .swiper-pagination-5, .swiper-pagination-6, .swiper-pagination-7, .swiper-pagination-8, .swiper-pagination-9, .swiper-pagination-10, .swiper-pagination-11 {
  color: var(--beige);
}

.nachhaltigkeit .swiper-pagination, .nachhaltigkeit .swiper-pagination-4, .nachhaltigkeit .swiper-pagination-5, .nachhaltigkeit .swiper-pagination-6, .nachhaltigkeit .swiper-pagination-7, .nachhaltigkeit .swiper-pagination-8, .nachhaltigkeit .swiper-pagination-9, .nachhaltigkeit .swiper-pagination-10, .nachhaltigkeit .swiper-pagination-11 {
  color: var(--olive-3);
}

  img.herkunft-grafik {
    filter: invert(1) contrast(0.61) brightness(1.15) sepia(39%) hue-rotate(319deg);
  }

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

  .map-card img.map {
    filter: var(--filter-brown);
  }

  .nachhaltigkeit .map-card img.map {
    filter: var(--filter-light-green);
  }

  .point {
    background: var(--red);
}

  .nachhaltigkeit .point {
    background: var(--olive-3);
  }

  .nachhaltigkeit .point:before {
    filter: var(--filter-olive);
  }

  .menu-container::-webkit-scrollbar-track {
    background-color: #463c39;
  }
  
  .menu-container::-webkit-scrollbar-thumb {
    background-image: linear-gradient(to bottom,  rgba(80,65,51,1) 0%,rgba(80,65,51,1) 100%); 
    box-shadow: inset 2px 2px 5px 0 rgba(44,35,30, 0.5);
  }

  .heads-inner {
    filter: brightness(0.8);
  }

  .heads-title {
    filter: brightness(1.2);
  }

  h3.brown {
    color: var(--white);
  }

  .matrix-image, .img-content, .slide-inner {
    filter: brightness(0.8);
  }

  .swiper-pagination-bullet i, .swiper-section .swiper-pagination-bullet {
    background-color: var(--dark-brown);
  }

  .tab-accordion__item:before, .tabs.swiper-pagination-bullets .tab-link:before {
    background: var(--dark-brown);
  }

  .accordion__title {
    border-bottom: solid 0.5px var(--mid-gray);
    color: var(--white);
  }


  .partner-werden-container {
    background: var(--brown-2);
}

img.partner-background {
  mix-blend-mode: color-burn;
}

.gradient-top {
  background: -moz-linear-gradient(top,  rgba(80,65,51,1) 0%, rgba(80,65,51,0) 100%);
  background: -webkit-linear-gradient(top,  rgba(80,65,51,1) 0%,rgba(80,65,51,0) 100%);
  background: linear-gradient(to bottom,  rgba(80,65,51,1) 0%,rgba(80,65,51,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#463c39', endColorstr='#463c39',GradientType=0 );
}

.line_produkte_active {
  background-color: var(--white);
}

.line_produkte {
  background-color: var(--red);
}

#newsletter-overlay, #newsletter {
  background: var(--brown);
}

input#first-name, input#last-name, input#email {
  color: var(--dark-brown)!important;
}

.closeX.dark {
  display: none;
}

.closeX.white {
  display: block;
}

.agb-button-frame {
  background: var(--dark-brown);
  border: solid 1px var(--red-brown);
}

.agb-button-frame::before {
  border-color: transparent transparent var(--dark-brown) transparent;
}

.agb-button-frame::after {
  border-color: transparent transparent var(--red-brown) transparent;
}

.btn-suche:after {
  background-image: url(/static/images/arrow-right-white.svg);
}

.cp_frame_nav.search_frame {
  border: 1px solid var(--white);
  background: var(--brown);
}

.btn-suche {
  border: 1px solid var(--white);
}

#suche input::placeholder {
  color: var(--beige);
}

#suche input {
  color: var(--white);
}

.cards_container:after {
  background: linear-gradient(to right,  rgba(80,65,51,0) 0%,rgba(80,65,51,1) 100%);
}

.card_item {
  background: var(--dark-brown);
}

.cards span.title {
  color: var(--beige);
}

nav ul li.subentry > span:before, nav ul li.subentry > a:before {
  filter: invert(1) brightness(5) saturate(0);
}

nav .nav-panel {
  background-color: var(--dark-brown);
}

nav .nav-panel {
  background-color: var(--brown-2);
}

.navigationWrap {
  background-color: var(--brown-2);
}

.navigationWrap .menu-container nav.layers ul li .submenu-panel ul {
  background: var(--brown-2);
}

nav > ul > li.subentry .submenu-panel .submenu-header h3 {
  color: var(--white);
}

nav ul li.subentry ul li > a, nav ul li.subentry ul li > span {
  border-bottom: 0.5px solid var(--brown);
}

nav > ul > li.subentry .submenu-panel ul.submenu-list li.subsubentry.open span {
  color: var(--beige);
}

nav ul li.mainentry > span:hover, nav ul li.mainentry > a:hover {
  color: var(--white);
}

.nachhaltigkeit nav .nav-panel {
  background-color: var(--green);
}

.nachhaltigkeit nav ul li.subentry ul li > a, .nachhaltigkeit nav ul li.subentry ul li > span {
  border-bottom: 0.5px solid var(--olive-3);
}

.nachhaltigkeit .button.goback {
  background-color: var(--olive);
  border: solid 1px var(--olive);
}

.header-container {
  background: var(--brown-2);
}

section#elc-cookie-consent {
  background: var(--brown-2)!important;
}

.elc-header a {
  color: var(--beige);
}

#elc-cookie-consent .elc-button-link:hover, .elc-button-link:hover {
  color: var(--beige)!important;
  border: solid 1px var(--beige)!important;
}

h3, h4, h5 {
  color: var(--white);
}

.nachhaltigkeit .downloads a {
  background: var(--green);
}

.nachhaltigkeit a.button {
  background: var(--olive);
  border: solid 1px var(--olive);
  color: var(--light-gray);
}

.nachhaltigkeit a.button:after {
  filter: var(--filter-olive);
}

.nachhaltigkeit a.button:hover {
  background: var(--green);
  color: var(--light-olive);
  border: solid 1px var(--olive);
}

.nachhaltigkeit a.button:hover span.icn:after {
  filter: var(--filter-olive);
}

.nachhaltigkeit a.button:hover:after {
  filter: var(--filter-olive);
}

.nachhaltigkeit a.button.btn-fabrikladen {
  background-color: var(--red);
  color: var(--light-brown);
  border: 1px solid var(--red);
}

nav ul li.subentry ul span.subentry-title:after {
  filter: invert(100%) sepia(0%) saturate(7490%) hue-rotate(150deg) brightness(101%) contrast(101%);
}

.swiper-variant-2 .swiper-slide .swiper-card span, .swiper-variant-2 .swiper-slide .swiper-card p {
  color: var(--brown);
}

.sidenav_home.dark a.sidenav_home_item {
  color: var(--white);
}

.nachhaltigkeit .sidenav_home.dark a.sidenav_home_item {
  color: var(--olive-3);
}

a.button:hover, .button:hover {
  color: var(--light-brown);
  background: transparent;
  border-color: var(--brown);
}

a.button:hover:after, .button:hover:after {
  filter: var(--filter-beige);
}

p.elc-header-description {
  color: var(--white);
}

span.date {
  color: var(--light-brown);
}

img.scroll-to-top {
  width: 1rem;
  height: 1rem;
  filter: invert(1) saturate(1) brightness(5);
  cursor: pointer;
}


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


    
  }


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

    li.subnav span:after {
      opacity: 1;
    }

    nav ul li ul {
      background: var(--brown);
      -webkit-box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 40%);
      -moz-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.40);
      box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 40%);
    }

    .canvas {
      background: var(--brown);
    }

    nav ul li.subentry > span, nav ul li.subentry > a, nav ul li.mainentry > a {
      border-bottom: solid 1px var(--brown);
    }

    .navigationWrap .menu-container nav.layers ul .protectarea {
      background: var(--brown-2);
    }

    .nachhaltigkeit .navigationWrap {
      background-color: var(--green);
  }

    .nachhaltigkeit nav ul li ul {
      background: var(--green);
    }

    .nachhaltigkeit .navigationWrap .menu-container nav.layers ul .protectarea {
      background: var(--green);
    }

    .nachhaltigkeit nav ul li.subentry > span, .nachhaltigkeit nav ul li.subentry > a, .nachhaltigkeit nav ul li.mainentry > a {
      border-bottom: solid 1px var(--olive-3);
    }

    .nachhaltigkeit .navigationWrap .menu-container nav.layers ul li .submenu-panel ul {
      background: var(--green);
    }

  }


}
