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

:root {
  --white: #FFFFFF;
  --black: #000000;
  --gold: #d4af57;

  --mid-grey: #a0a0a0;
  --dark-grey: #343633;
  --darkest: #202124;
  --grey-white: #f0f0f0;
  --light-grey: #fafafa;

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

  --common-font: 'Fira Sans', sans-serif;
  --title-font: 'Fira Sans', sans-serif;
}




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





body {
  overflow-x: hidden;
  margin: 0;
  font-size: min(max(0.8rem, 1vw), 1rem);
	line-height: 2;
	font-family: var(--common-font);
	font-weight: lighter;
	-moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  background: var(--white);
}

body.overflow-hidden {
  overflow: hidden;
}

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

.header {
  position: relative;
  display: flex;
  float: left;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1006;
  background: var(--white);
  justify-content: center;
}

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

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

.header_fadein a.logo {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: clamp(2rem, 5vw, 5rem);
}

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


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

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

footer p {
  line-height: 1.75;
}

footer .grid {
  z-index: 2;
}

.copyright {
  position: relative;
  display: flex;
  float: left;
  width: 100%;
  z-index: 3;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

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

.bg-light-gray {
  background-color: var(--light-grey);
}

.copyright a, .copyright p {
  font-size: min(max(0.55rem, 0.75vw), 0.75rem);
}

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

.pagination {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

.pagination a {
  padding: 15px 25px;
  font-size: 0.7rem;
  border: 1px solid var(--gray);
}

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

.pagination a:hover {
  background: var(--red);
  color: var(--white);
}



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

.heads {
  width: 100%;
  height: clamp(30rem, 55vh, 55rem);
  float: left;
}

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

.heads-inner {
  width: calc(100% - clamp(2rem, 5vw, 5rem) - clamp(2rem, 5vw, 5rem)); 
  height: 100%;
  left: clamp(2rem, 5vw, 5rem);
  box-sizing: border-box;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.heads-inner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

a.fullscreen-mobile {
  display: none;
}

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

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


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

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

a.logo {
  position: relative;
  display: block;
  width: 8em;
  transition: none;
}

span.logo-font {
  font-weight: bold;
  color: var(--black);
  hyphens: none;
  white-space: nowrap;
  font-size: min(max(1.2rem, 1.5vw), 1.5rem);
}

.unterseite a.logo {
  top: 20px;
  width: 8em;
}

a.logo img {
  display: block;
  float: left;
  width: 100%;
}


ul.language-switcher {
  position: absolute;
  display: flex;
  list-style: none;
  left: clamp(2rem, 5vw, 5rem);
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1007;
}


#navigationWrap {
  display: none;
  width: 100%;
  height: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1008;
  background-color: var(--white);
  /*-webkit-transition: all 0.8s ease-out 0s;
  -moz-transition: all 0.8s ease-out 0s;
  -ms-transition: all 0.8s ease-out 0s;
  transition: all 0.8s ease-out 0s;*/
}

#navigationWrap ul.language-switcher {
  transform: none;
  top: 12vw;
}

#navigationWrap a.logo {
  opacity: 0;
}

#navigationWrap a.logo.big {
  opacity: 1;
  position: absolute;
  left: clamp(2rem, 5vw, 5rem);
  width: clamp(10em, 15vw, 15em);
  top: clamp(2rem, 4vw, 4rem);
}

#navigationWrap .header {
  background: transparent;
  z-index: 1;
}

ul.language-switcher.fadein {
  position: fixed;
  top: 29px;
  -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.language-switcher.fadein.hidden {
  -webkit-transform: translateY(-200px);
  -moz-transform: translateY(-200px);
  -ms-transform: translateY(-200px);
  -o-transform: translateY(-200px);
  transform: translateY(-200px);
}

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

.language-switcher li, .responsive-language-switcher li {
  padding: 0 10px;
  color: var(--mid-grey);
  font-size: min(max(0.7rem, 0.8vw), 0.9rem);
  line-height: 1;
  text-transform: uppercase;
  border-right: 1px solid var(--mid-grey);
}

.language-switcher li:first-child {
  padding-left: 0;
}

.language-switcher li:last-child {
  border: none;
}

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

.language-switcher a:hover, .responsive-language-switcher a:hover {
  color: var(--mid-grey);
}

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

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

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

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

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

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

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

#navigationwrap_mobile {
  position: fixed;
  display: none;
  width: 0%;
  min-height: 100%;
  height: 100%;
  opacity: 1;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1007;
  background-color: var(--blue);
}

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

#navigationwrap_mobile header.header {
  background: transparent;
  color: var(--white);
}

#navigationwrap_mobile span.logo-font {
  color: var(--white);
}

#navigationwrap_mobile nav, #navigationwrap_mobile .phone-button, #navigationwrap_mobile .logo, #navigationwrap_mobile .navigation-kontakt {
  opacity: 0;
}

p.navigation-kontakt {
  position: relative;
  float: left;
  text-align: left;
  color: var(--white);
}

p.navigation-kontakt a {
  font-size: inherit!important;
}


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

/*
.nav-social h4 {
  color: var(--red);
  float: right;
  width: 100%;
  text-align: right;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  text-align: right;
  letter-spacing: 9px;
}
*/

#navigationwrap_mobile a {
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
}

#navigationwrap_mobile_bg {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1006;
  background-color: #000;
  display: none;
  opacity: 0;
  visibility: visible;
}

#navigationwrap_desktop {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translate(0, -50%);
}

.header_fadein nav {
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
}

.menu-container {
  position: absolute;
  right: 10rem;
  top: 20%;
  transform: translate(0, 0%);
  z-index: 2;
}

nav ul {
  list-style-type: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  width: auto;
  float: right;
  align-items: center;
}

nav ul li a {
  color: var(--black);
}

nav ul li.active a {
  font-weight: bold;
}

nav ul li ul li a:hover {
  color: var(--black);
}

nav ul li a:hover {
  color: var(--blue);
}

nav ul li ul li a {
  color: var(--black);
}

nav ul li ul li.active a {
  color: var(--black);
  border: none;
}

nav ul > li.mainnav {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin: 0;
  font-size: min(max(1.2rem, 1.5vw), 1.75rem);
  border-right: 1px solid var(--mid-grey);
}

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

nav ul > li {
  position: relative;
  display: block;
  float: left;
  width: 100%;
  margin: 0 1rem;
  white-space: nowrap;
  hyphens: none;
  color: var(--black);
  text-align: center;
  width: auto;
}

nav ul > li:first-child {
  margin-top: 1rem;
}

nav ul > li:last-child {
  margin-bottom: 1rem;
}

#navigationwrap_desktop nav ul li:hover > ul, #navigationwrap_desktop nav ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
  overflow: hidden;
  padding: 22px 0 0;
  transition: 0.5s all ease;
}

nav ul li ul::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 12px 15px;
  border-color: transparent transparent var(--red) transparent;
  position: absolute;
  left: 50%;
  top: 0px;
  transform: translate(-50%, 0);
  transition: 0.5s all ease;
}

nav ul li:hover > ul:before {
  top: 12px;
}

li.submenu {
  cursor: pointer;
}

li.submenu::after {
  content: '';
  position: absolute;
  right: -20px;
  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: clamp(8px, 1vw, 12px);
  height: clamp(8px, 1vw, 12px);
}

.header_fadein li.submenu::after {
  background-image: url('/static/images/nav-arrow-dark.svg');
  filter: invert(1) brightness(2);
}

.header_fadein nav ul > li {
  color: var(--black);
}

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

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

.header_fadein nav ul li ul li a {
  color: var(--white);
}

.header_fadein nav ul li ul li a:hover {
  color: var(--black);
}

nav ul > li.mainnav a.active {
  font-weight: lighter;
  color: var(--mid-grey);
}

nav ul > li.subnav {
  position: static;
  float: left;
  font-size: min(max(1.2rem, 1.5vw), 1.75rem);
  width: 100%;
  margin: 0;
  cursor: pointer;
  border-right: 1px solid var(--mid-grey);
  /*transition: 0.5s all ease;*/
}

nav ul > li.subnav.active span {
  font-weight: bold;
}

nav ul > li.subnav span {
  position: relative;
  width: 100%;
  display: block;
  float: left;
}

nav ul > li.subnav.open span:after {
  opacity: 1;
  background-image: url('/static/images/subnav-arrow-black.svg');
}

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

.subnav ul li.active a {
  border-bottom: 2px solid var(--gray);
}

nav ul li.gsap_tlmenu span {
  transition: none;
  font-weight: lighter;
  letter-spacing: 1px;
  width: auto;
  text-align: right;
  color: var(--black);
  margin-right: 2rem;
  float: right;
}

nav ul li.subnav span:before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  left: -40px;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url('/static/images/nav-plus.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

nav ul li.extern span:before {
  content: '';
  position: absolute;
  left: -40px;
  top: 50%;
  width: 13px;
  height: 13px;
  background-image: url('/static/images/link-arrow-black.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
}

nav ul li.subnav.open span:before {
  background-image: url('/static/images/nav-minus.svg');
}

.mainnav a {
  font-weight: lighter;
  color: var(--black);
  letter-spacing: inherit;
  text-align: right;
  float: right;
}

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

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

li.subnav.open {
  font-weight: 200;
  height: 100%;
}

nav ul ul {
  position: relative;
  display: block;
  width: 100%;
  overflow: auto;
  float: left;
  height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
}



nav ul li ul li {
  width: 100%;
  height: auto;
  display: block;
  float: left;
  padding: 0;
  padding: 0.25rem 0;
  margin: 0;
  background: var(--red);
}

nav ul li ul li:first-child {
  padding-top: 1rem;
}

nav ul li ul li:last-child {
  padding-bottom: 0.5rem;
}

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

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

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

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

img.logo-gold {
  position: absolute;
  left: clamp(1rem, 5vw, 5rem);
  bottom: clamp(2rem, 5vw, 5rem);
  width: clamp(8rem, 18vw, 18rem);
}

.dark-mode-toggle {
  position: absolute;
  top: 20vw;
  left: clamp(2rem, 5vw, 5rem);
}


/* ////// HAMBURGER ////// */

.sticky {
  position: absolute;
  right: clamp(2rem, 5vw, 5rem);
  top: 50%;
  transform: translate(0, -50%);
}

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

.hamburger .line1 {
  width: 26px;
  height: 2px;
  background-color: var(--black);
  display: block;
  margin: 4px 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: left;
}

.hamburger .line2 {
  width: 22px;
  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: left;
}

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

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


.hamburger.is-active .line1:nth-child(3) {
  background-color: var(--black);
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
  width: 33px;
  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;
}


.heads-unterseite .sticky {
  display: none;
}

.sticky.mobile {
  display: none;
}

.heads .sticky {
  display: none;
}


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




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

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

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

#slider .swiper-container {
  overflow: hidden;
  width: 100%;
}

.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;
  margin-left: 50px;
}
.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: relative;
  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;
}







  /*--------------------------------------------------
      UBIQ SWIPER SLIDER
  ---------------------------------------------------*/	
  
  
  /**
   * 4. Home Slider
   */
  
.swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    overflow: hidden;
}
.swiper-slide-duplicate-active .overlay,
.swiper-slide-active .overlay {
    opacity: .4;
}
.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
}
.slide-inner--image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover; 
    background-position: center;
    opacity: .2;
    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;
    filter: grayscale(40%);
}

@-moz-document url-prefix() {
    @media screen and (min-width: 2000px) and (orientation: landscape) {
        .slide-inner--image {
            background-size: 100%; /* Prozent anstatt Cover wegen Firefox Widescreen Problem analog Reussdelta */
          }
    }
}


.swiper-slide-duplicate-active .slide-inner--image,
.swiper-slide-active .slide-inner--image {
    opacity: 1;
    transform: scale(1);
    -moz-transform: scale(1);
}

/* 4.1 Slider navigation buttons */


.swiper-button-next, .swiper-button-prev {
  position: absolute;
  background-size: contain;
  margin-top: 0;
  bottom: 20px;
  top: auto;
  left: 20px;
  width: clamp(20px, 2.5vw, 30px);
  height: clamp(15px, 2vw, 25px);
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url(../images/swiper-arrow-gold.svg);
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url(../images/swiper-arrow-gold.svg);
}

/*
.swiper-button-prev,
.swiper-button-next {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .2em;
    line-height: 2em;
    font-size: 12px;
    width: auto;
    height: 24px;
    background-image: none !important;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-button-prev {
    padding-left: 6em;
    left: 0;
    -webkit-transition: padding-left .3s ease;
    -moz-transition: padding-left .3s ease;
    transition: padding-left .3s ease;
}
.swiper-button-next {
    padding-right: 6em;
    right: 0;
    -webkit-transition: padding-right .3s ease;
    -moz-transition: padding-right .3s ease;
    transition: padding-right .3s ease;
}
.swiper-button-prev::after {
    content: "";
    width: 4em;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    -webkit-transition: width .3s ease;
    -moz-transition: width .3s ease;
    transition: width .3s ease;
}
.swiper-button-next::after {
    content: "";
    width: 4em;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: calc(50% - 1px);
    -webkit-transition: width .3s ease;
    -moz-transition: width .3s ease;
    transition: width .3s ease;
}
.swiper-button-prev:hover {
    padding-left: 90px;
}
.swiper-button-prev:hover::after {
    width: 75px;
}
.swiper-button-next:hover {
    padding-right: 90px;
}
.swiper-button-next:hover::after {
    width: 75px;
}
*/

/* 4.2 Slider inner info */


.slide-inner--info {
  position: absolute;
  bottom: 40%;
  z-index: 3;
  width: 40%;
  left: 10%;
  opacity: 0;
  transition: opacity 1s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.swiper-slide-active .slide-inner--info {
    opacity: 1;
    transition: opacity 1s ease 1s;
}

.slide-inner--info h2 {
  color: var(--white);
  margin: 1rem 0 2rem;
  clear: both;
}

.slide-inner--info a.button {
  color: var(--white);
}

/*
.slide-inner--info h1 {
    margin: 10px 0;
    text-transform: none;
    font-weight: 900;
    line-height: 1.5;
    color: #fff;
    font-size: 1.5rem;
}
.slide--info__link {
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border-bottom: solid 2px;
}
.swiper-slide--bottom {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}
*/

/* 4.3 Pagination */

.expanded-timeline {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    z-index: 3;
    bottom: 2.8em;
    right: 3em;
    width: 40vh;
}
/*.swiper-pagination {
    z-index: 4;
    width: 85%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, .5);
}

.swiper-pagination {
    position: absolute;
    bottom: 2em;
    left: 10%;
    width: auto !important;
    margin: 0;
}*/
#slider .swiper-pagination-bullet {
    position: relative;
    padding: 5px 10px;
    border-radius: 0;
    width: auto;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #87949b;
    opacity: 1;
    background: transparent;
    transition: all ease 0.5s;
}
#slider .swiper-pagination-bullet-active {
    color: #fff;
    background: transparent;
    opacity: 1;
}

#slider .swiper-pagination-bullet:hover {
    color: #fff;
}

#slider .swiper-pagination-bullet:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 0%;
    height: 1px;
    background-color: #fff;
    transition: all ease 0.5s;
}

#slider .swiper-pagination-bullet:hover:before {
    width: 100%;
}

#slider .swiper-pagination-bullet-active:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: all ease 0.5s;
}

#slider .swiper-pagination-progressbar-fill {
    background: #fff !important;
}
.expanded-timeline__counter span {
    text-align: center;
    margin-left: 1.8em;
    margin-right: 100%;
    padding: .4em 0;
    color: #fff;
    display: block;
}
.scroll-message {
    position: absolute;
    right: 0;
    color: #fff;
    opacity: .5;
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    letter-spacing: .15em;
}











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


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

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

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


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

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


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

.accordion {
  width: 100%;
  float: left;
}
.accordion__item {
  width: 100%;
  float: left;
}

.accordion__title {
  position: relative;
  padding: 1rem;
  font-size: min(max(0.9rem, 1vw), 1rem);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px var(--grey-white);
  color: var(--gold);
  font-weight: normal;
  transition: 0.5s all ease;
}

.accordion__title:after {
  position: absolute;
  content: " ";
  right: 15px;
  background-image: url(../images/accordion-plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translate(0, -50%);
  width: clamp(10px, 2.4vw, 15px);
  height: clamp(10px, 2.4vw, 15px);
}

.is-open .accordion__title {
  color: var(--mid-grey); 
}

.is-open .accordion__title:after {
  background-image: url(../images/accordion-minus.svg);
  top: calc(50% + 7px);
}
.accordion__body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.accordion__body b {
  text-transform: uppercase;
}
.accordion__body .grid {
  column-gap: 2em;
  margin: 1em;
  margin-bottom: 2em;
}
.accordion__item.is-open {
  background-color: var(--white);
}
.accordion__content {
  padding: 15px;
  column-count: 2;
  column-gap: 2rem;
}
.accordion__content p {
  float: left;
  position: relative;
  margin-top: 0;
  margin-bottom: 1rem;
}
.accordion__title p {
  white-space: nowrap;
}




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

ul.tabs li {
  background: none;
  color: var(--black);
  display: inline-block;
  padding: 20px 55px;
  cursor: pointer;
  margin: 0;
  font-size: 1rem;
}

ul.tabs li.current {
  background: var(--black);
  color: var(--white);
}

.tab-content {
  display: none;
  float: left;
  width: calc(90% - 30px);
  background: var(--white);
  color: var(--black);
  padding: 15px;
}

.tab-content.current {
  display: inherit;
  border: none;
  width: 90%;
  padding: 5%;
  border: solid 1px var(--black);
}






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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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





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

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

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

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

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

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

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

.swiper-horizontal-parallax-1 .swiper-scrollbar {
  display:none;
}

.swiper-horizontal-parallax-1 .img-content img {
  display:none;
}

.swiper-horizontal-parallax-1 .swiper-slide {
  overflow: hidden;
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
  transform: scale(1.07);
  -moz-transform: scale(1.07);
}

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

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

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

.swiper5 .swiper-slide {
  padding-bottom: 2em;
  padding-right: 0.5em;
}

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


/* Animation */

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

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

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

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

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

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

.swiper-section.zeitstrahl  .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.zeitstrahl.rtl .pagination-lines {
  right: calc(50% + 3vw);
}

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

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

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


/* SWIPER PAGINATIONS */

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

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

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




/*--------------------------------------------------
	TAB AKKORDEON (RESPONSIVE)
---------------------------------------------------*/

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

.zeitstrahl-accordion__item {
  position: relative;
  display: block;
  width: 100%;
  float: left;
  padding-left: 30px;
}

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

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

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

.zeitstrahl-accordion__title {
  position: relative;
  padding: 15px 15px;
  cursor: pointer;
  display: block;
  border-top: solid 1px var(--gray);
}

.zeitstrahl-accordion__title h2 {
  font-size: min(max(1rem, 1.4vw), 1.4rem);
}

.zeitstrahl-accordion__title h3 {
  font-size: min(max(0.9rem, 1.3vw), 1.3rem);
}

.is-open .zeitstrahl-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;
}
.zeitstrahl-accordion__body {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.zeitstrahl-accordion__body b {
  text-transform: uppercase;
}
.zeitstrahl-accordion__body .grid {
  column-gap: 2em;
  margin: 1em;
  margin-bottom: 2em;
}
.zeitstrahl-accordion__item.is-open {
  background-color: transparent;
}
.zeitstrahl-accordion__content, .zeitstrahl-accordion__image {
  padding: 0 15px;
}

.zeitstrahl-accordion__image img {
  height: clamp(15em, 20vw, 20em);
  width: 100%;
  object-fit: cover;
  }

  .zeitstrahl-accordion__title p {
  white-space: nowrap;
}

.zeitstrahl-accordion__title h3 span {
  color: burlywood;
  display: block;
  float: left;
  width: 100%;
}

.zeitstrahl-accordion__title .tab-dot {
  position: absolute;
  top: 0;
  left: -35px;
  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;
}

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

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

.zeitstrahl-accordion .tab-dot:before {
  content: '';
  position: absolute;
  background: var(--darkblue);
  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;
}

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

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

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

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

/* RESPONSIVE */

@media screen and (max-width : 900px) {
.swiper-zeitstrahl, .swiper-section.zeitstrahl {
  display: none;
}
.zeitstrahl-accordion {
  display: block;
}
}










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










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

p {
  margin: 8px 0;
  font-size: min(max(0.9rem, 1vw), 1rem);
  line-height: 1.75;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  -webkit-text-size-adjust: 100%;
  color: var(--black);
  font-weight: lighter;
}

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

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

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;
  list-style-position: inside;
}

li {
  -webkit-text-size-adjust: 100%; 
  color: var(--blue);
}

strong {
  font-weight: 400;
}

h1 {
  color: var(--gold);
  font-size: min(max(2rem, 4vw), 4rem);
  line-height: 1.2;
  font-weight: normal;
  -moz-hyphens: none;
  -o-hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  font-family: var(--title-font);
  margin-block-start: 0em;
  margin-block-end: 0em;
  letter-spacing: 1px;
}

h2 {
  color: var(--dark-grey);
  font-weight: lighter;
  font-size: min(max(1.5rem, 2.5vw), 2.5rem);
  line-height: 1.25;
  margin-block-start: 0;
  margin-block-end: 0;
  letter-spacing: 1px;
  text-align: right;
}

h2.bold {
  font-weight: normal;
}

h2.gold {
  color: var(--gold);
  font-weight: normal;
}

h2.align-left {
  float: left;
  text-align: left;
}

h3 {
  color: var(--black);
  font-size: min(max(1.25rem, 1.95vw), 1.95rem);
  line-height: 1.25;
  font-weight: lighter;
  text-transform: normal;
  font-family: var(--title-font);
  margin-block-start: 0em;
  margin-block-end: 0em;
  text-align: left;
  letter-spacing: 1px;
}

h4 {
  color: var(--gold);
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0px;
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: min(max(1.1rem, 1.2vw), 1.25rem);
}

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

a.button, .button {
  position: relative;
  font-family: var(--common-font);
  color: var(--gold);
  font-size: min(max(0.7rem, 0.8vw), 0.9rem);
  line-height: 1;
  transition: all ease 0.3s;
  text-decoration: none;
  padding: 0;
  border-bottom: 1px solid var(--gold);
  text-align: center;
  font-weight: lighter;
  white-space: nowrap;
  hyphens: none;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  padding-right: 1.5rem;
  letter-spacing: 2px;
}

a.button:after {
  content: '';
  position: absolute;
  right: 0;
  top: 3px;
  width: 10px;
  height: 10px;
  background-image: url('/static/images/link-arrow.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

a.button.float-right {
  float: right; 
  clear: both;
  margin-bottom: 1.5rem;
}

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

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

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

a.button.dark:hover {
  background: transparent;
  color: var(--blue);
}

a.button.dark:hover::before {
  filter: invert(1);
}

a.button.pdf {
  margin-right: 1rem;
}

.buttons {
  position: relative;
  display: block;
  float: left;
  width: 100%;
}

.button.goback {
  display: none;
}

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

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

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

.buttons .button {
  margin-right: 1rem;
}

a.button.pdf::before {
  position: absolute;
  content: '';
  width: 1rem;
  height: 1rem;
  right: 2rem;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url('/static/images/download.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.5s all ease;
}

a.button.pdf:hover::before, a.button.exter:hover::before {
  filter: invert(100%) brightness(130%) contrast(120%);
}

.buttons .button {
  margin-right: 1rem;
  white-space: nowrap;
  hyphens: none;
  float: left;
  margin-bottom: 1rem;
}

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

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

.subnav-button {
  float: left;
  padding: 0;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: lighter;
  color: var(--black);
  white-space: pre-wrap;
  word-break: keep-all;
  hyphens: none;
  text-transform: uppercase;
  transition: 0.5s all ease;
}

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

a.subnav-button.active {
  color: var(--mid-grey);
}

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

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

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

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

.subnav.open span {
  color: var(--mid-grey);
  font-weight: 200;
}



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

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

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

.swup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1112;
  background: var(--black);
  width: 100%;
  height: 100%;
  -webkit-transform: translateX(-130%) skew(-10deg);
  -ms-transform: translateX(-130%) skew(-10deg);
  transform: translateX(-130%) skew(-10deg);
}

.swuplogo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(9em, 20vw, 25em);
  height: clamp(7em, 16vw, 20em);
  transform: translate(-50%, -50%);
}

.swuplogo svg {
  position: absolute;
  display: block;
  z-index: 2;
}

.swup-opacity {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1111;
  background: var(--black);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}

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

.split_outer {overflow: hidden;}
.split_inner {display: inline-block;}

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

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

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

.split-line {
  overflow: hidden;
}




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


body.smooth-scroll {
  overflow:hidden;
}

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

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

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







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

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

a.shop-button {
  color: var(--mid-grey);
  position: absolute;
  right: calc(clamp(2rem, 5vw, 5rem) + 5rem);
  top: 50%;
  transform: translate(0, -50%);
  text-transform: uppercase;
  font-weight: lighter;
  border-bottom: 1px solid var(--mid-grey);
  font-size: 0.8rem;
  letter-spacing: 2px;
  padding-right: 1.5rem;
}

a.shop-button:after {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 5px;
  background-image: url('/static/images/bag.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

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

#navigationWrap a.shop-button {
  display: none;
}

.social-icons-wrapper {
  position: absolute;
  left: 0;
  width: clamp(2rem, 5vw, 5rem);
  height: 100%;
  top: 0;
}

#navigationWrap .social-icons-wrapper {
  display: none;
}

.social-icons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.social-icons img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  margin-top: 1rem;
}

.shortcuts-wrapper {
  position: absolute;
  right: 0;
  width: clamp(2rem, 5vw, 5rem);
  height: 100%;
  top: 0;
  background: var(--white);
  z-index: 2;
}

.shortcuts-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 2;
}

.search-bar {
  position: absolute;
  width: clamp(15rem, 20vw, 20rem);
  background: var(--white);
  top: 5%;
  right: clamp(2rem, 5vw, 5rem);
  transform: translate(200%, 0);
  z-index: 1;
}

.search-bar form {
  display: flex;
}

.search-bar input[type="submit"] {
  margin-left: 1rem;
  padding-bottom: 0;
  line-height: 1;
  height: auto;
  float: left;
}

.heads .search-bar {
  top: 45%;
}

.search-bar-mobile {
  position: fixed;
  bottom: 2rem;
  left: 1rem;
  background: var(--white);
  z-index: 1;
  width: calc(100% - 4rem);
  transform: translate(0, 200%);
  opacity: 0;
  display: none;
}

.shortcuts-wrapper.mobile {
  display: none;
}

.shortcuts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.shortcuts img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  margin-top: 1.5em;
  /*margin-bottom: 0.75rem;*/
  position: relative;
  float: left;
}

.scrolldown {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -90px;
  z-index: 1;
}

.scrolldown.unterseite {
  transform: none;
  left: clamp(4rem, 8vw, 8rem);
}

.scrolldown img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-top: 90px;
}

.scrolldown:before {
  content: '';
  position: absolute;
  height: 75px;
  width: 0.5px;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: var(--black);
}

.schweiztourismus {
  float: right;
  margin-top: 1rem;
  height: 6rem;
  width: clamp(6rem, 10vw, 10rem);
  margin-right: clamp(2rem, 5vw, 5rem);
  background-position: top right;
  background-size: contain;
  background-repeat: no-repeat;
}

.schweiztourismus.de {
  background-image: url('/static/images/schweiztourismus-de.svg');
}

.schweiztourismus.en {
  background-image: url('/static/images/schweiztourismus-en.svg');
}

.schweiztourismus.fr {
  background-image: url('/static/images/schweiztourismus-fr.svg');
}

.der-shop p {
  text-align: right;
  margin-bottom: 4rem;
}

img.produkt-bild {
  width: 100%;
  height: clamp(10rem, 15vw, 15rem);
  object-fit: cover;
  float: left;
}

.overlay {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  transition: 0.5s all ease;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-right: 1rem;
  padding-bottom: 1rem;
}

.overlay-background {
  position: absolute;
  background: var(--black);
  top: 0;
  left: 0;
  opacity: 0.7;
  width: 100%;
  height: 100%;
}

.home-all-commit-component {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.home-all-commit-component-mobile {
  display: none;
}

.left-cm-home-wrap {
  position: relative;
  width: 50%;
}

.right-cmt-wrap {
  position: relative;
  width: 50%;
}

.commitment-div-left {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 100vh;
  min-height: 500px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.commitments-wrap {
  width: 80%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.right-cmp {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
}

.right-cmp img {
  padding-left: 0;
  background-color: #f3f2ee;
  background-image: none;
  background-size: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  height: 100vh;
}

.produkt:hover .overlay {
  opacity: 1;
}

.produkt-titel {
  color: var(--white);
  font-size: min(max(1.25rem, 1.5vw), 1.5rem);
  font-weight: normal;
  text-align: right;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.home-all-commit-component-mobile h3.home-slider {
  color: var(--gold);
}

.home-all-commit-component-mobile .row-1 img {
  height: clamp(15rem, 25vw, 25rem);
  object-fit: cover;
}

.home-slider-mobile-item {
  border-bottom: 1px solid var(--grey-white);
}

.social-icons-home {
  float: right;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
}

.social-icons-home img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-left: 1.5rem;
}

img.newsletter-logo {
  width: clamp(6rem, 8vw, 8rem);
}

input {
  width: 100%;
  float: left;
  border: none;
  outline: none;
  padding: 0.5rem 1rem;
  font-size: inherit;
  font-weight: lighter;
  font-size: inherit;
  font-family: inherit;
  -webkit-appearance: none;
  border-radius: 0;
}

label {
  text-transform: uppercase;
  font-size: min(max(0.7rem, 0.8vw), 0.9rem);
  letter-spacing: 1px;
  color: var(--mid-grey);
}

.success {
  display: none;
}

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

input[type="submit"] {
  position: relative;
  font-family: var(--common-font);
  color: var(--gold);
  font-size: min(max(0.7rem, 0.8vw), 0.9rem);
  line-height: 1;
  transition: all ease 0.3s;
  text-decoration: none;
  padding: 0;
  border-bottom: 1px solid var(--gold);
  text-align: center;
  font-weight: lighter;
  white-space: nowrap;
  hyphens: none;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  letter-spacing: 2px;
  width: auto;
  -webkit-appearance: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}


/*--------------------------------------------------
	NEWS
---------------------------------------------------*/

.border-top { 
  border-top: 0.5px solid var(--grey-white);
}

.border-bottom { 
  border-bottom: 0.5px solid var(--grey-white);
}

.border-right {
  border-right: 2px solid var(--grey-white);
}

.newsuebersicht .border-top, .newsuebersicht .border-bottom {
  border: none;
}

.news-item img {
  float: left;
  height: 100%;
  object-fit: cover;
}

span.news-date {
  font-size: min(max(0.7rem, 0.8vw), 0.9rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
  float: left;
  line-height: 1;
}

a.news-title {
  color: var(--gold);
  font-size: min(max(1rem, 1.25vw), 1.45rem);
  font-weight: normal;
  border-bottom: 1px solid var(--gold);
  padding-right: 2.5rem;
  float: left;
  margin-bottom: 1rem;
  line-height: 1.5;
  margin-top: 0.25rem;
  padding-bottom: 0.25rem;
}

a.news-title:after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  right: 0;
  top: 50%;
  background-image: url('/static/images/link-arrow.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(0, -50%);
}

.news-item p {
  width: 100%;
  float: left;
}

.news-date-big {
  text-align: right;
}

a.fullscreen {
  position: absolute;
  width: clamp(2rem, 3vw, 3rem);
  bottom: 1rem;
  right: 2rem;
  display: block;
}

.webcam a.fullscreen {
  bottom: 4rem;
  z-index: 11;
}


/*--------------------------------------------------
	PRODUKT
---------------------------------------------------*/

.header-bild {
  height: clamp(25rem, 50vw, 50rem);
  float: left;
  object-fit: cover;
}

.page-title h2 {
  margin-bottom: 1rem;
}

.heads-unterseite .social-icons {
  top: 5%;
  transform: translate(-50%, 0);
}

.heads-unterseite .shortcuts {
  top: 5%;
  transform: translate(-50%, 0);
}

img.glace-bild {
  margin-left: -4rem;
  margin-top: -4rem;
}

.title-content h2 {
  font-weight: normal;
  margin-bottom: 1rem;
}

span.untertitel {
  font-family: var(--common-font);
  font-size: min(max(0.7rem, 0.8vw), 0.9rem);
  line-height: 1;
  text-align: right;
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: right;
}

span.glace-titel {
  font-family: var(--common-font);
  font-size: min(max(0.7rem, 0.8vw), 0.9rem);
  line-height: 1;
  text-align: center;
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: none;
  margin-top: 2rem;
}

.glace-item {
  display: flex;
  flex-direction: column;
}

.glace-item img {
  height: clamp(10rem, 14vw, 14rem);
  object-fit: contain;
  width: 80%;
  margin-left: 10%;
}

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

.bg-dark p, .bg-dark h2, .bg-dark h3 {
  color: var(--white);
}

.milchpulver-zubereitung img {
  float: left;
  height: calc(100% + 6rem);
  margin-top: -3rem;
  object-fit: cover;
}

.produkt-image {
  float: left;
  height: 100%;
  object-fit: cover;
}

ul.naehrwerte-titel, ul.naehrwerte {
  list-style: none;
  column-count: 2;
}

.naehrwerte li {
  padding: 0.5rem 0;
  border-top: 1px solid var(--black);
  break-inside: avoid-column;
}

.naehrwerte li:last-child {
  border-bottom: 1px solid var(--black);
}

.naehrwerte-titel li {
  font-weight: normal;
  margin-bottom: 3.5rem;
  float: left;
  width: 100%;
}

.gold {
  color: var(--gold);
}

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

.fact {
  float: left;
  width: 45%;
  margin-right: 5%;
  clear: none;
  border-top: 1px solid var(--grey-white);
}

.swiper-container-wrapper {
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
}

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

.swiper-slide {
  height: 100%;
  float: left;
}

.swiper-button-prev:after, .swiper-button-next:after {
  content: '' !important;
  background-image: url(../images/swiper-arrow-gold.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  width: clamp(20px, 2.5vw, 30px);
  height: clamp(15px, 2vw, 24px);
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

/*
.swiper-button-next:after {
  left: 5rem!important;
  bottom: calc(2rem + 2px)!important;
} 
*/

.galloway img {
  float: left;
  height: 100%;
}



/* GLACE SLIDER SCHRITTE */



.swiper2 .swiper-slide {
  background: var(--darkest);
  padding: 7em 0 7em;
  min-height: 35em;
}

.swiper2 .slider-image {
  position: absolute;
  display: block;
  float: left;
  width: 33%;
  height: 100%;
  background-size: cover;
  background-position: center;
  left: 10%;
  top: 0;
  opacity: 0;
}

.swiper2 .swiper-slide-active .slider-image {
  opacity: 1;
}

.swiper2 .swiper-content {
  padding: 2em 0 2em 0;
  width: 40%;
  margin-left: 50%;
}

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

.swiper2 span {
  color: var(--mid-grey);
  opacity: 1;
  margin: 0 60px 0 0;
}

.swiper2 span.schritte {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
}

.swiper2 h2 {
  color: var(--mid-grey);
  text-align: left;
}

.swiper2 .swiper-pagination {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 2em;
  height: 50px;
}

.swiper2 .swiper-pagination-bullet {
  background: none;
  position: relative;
  width: auto;
  height: auto;
}

.swiper2 .swiper-pagination-bullet:last-child:before {
  display: none;
}

.swiper2 .swiper-pagination-bullet-active {
  color: var(--gold);
  font-size: min(max(1.2rem, 1.8vw), 1.8rem);
}

.swiper2 .swiper-pagination-bullet:before {
  position: absolute;
  right: -36px;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--mid-grey);
  top: 50%;
}

.swiper-navigation {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  margin-left: -20px;
}





/*--------------------------------------------------
	ZIEGENHOF
---------------------------------------------------*/

img.ziegenhof-bild-1 {
  width: calc(100% + 4rem);
  left: -4rem;
  position: absolute;
  bottom: -4rem;
}

img.ziegenhof-bild-2 {
  height: calc(100% + 8rem);
  object-fit: cover;
  top: -4rem;
}

img.kosmetik-bild {
  float: left;
  height: 100%;
  object-fit: cover;
}

.betriebsdaten img {
  float: left;
  height: 100%;
  object-fit: cover;
}

.button-background {
  width: auto;
  float: left;
  margin-left: 50%;
  transform: translate(-50%, 0);
}

img.icon {
  object-fit: contain;
  width: 100%;
  height: 100%;
  max-width: clamp(4rem, 5vw, 6rem);
  max-height: clamp(3rem, 4vw, 4rem);
}

.daten {
  position: relative;
  float: left;
  width: 100%;
  margin-top: 1rem;
}

a.galerie-item {
  height: clamp(10rem, 16vw, 17rem);
  float: left;
  position: relative;
  width: auto;
  display: block;
}

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

a.button.threesixty {
  padding-right: 0;
  font-size: min(max(1rem, 1.5vw), 1.5rem);
  margin-top: 1rem;
  float: left;
}

a.button.threesixty:after {
  content: '';
  position: relative;
  right: 0;
  top: -3px;
  width: 35px;
  height: 30px;
  background-image: url('/static/images/360.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  float: right;
  margin-left: 1rem;
}


/*--------------------------------------------------
	HOFLADEN
---------------------------------------------------*/

.hofladen-text-1 .content {
  width: 50%;
}

.hofladen-text-2 .content {
  width: 50%;
  float: right;
}

img.hofladen-bild-1 {
  position: absolute;
  bottom: -4rem;
  right: 20rem;
  width: clamp(20rem, 30vw, 30rem);
}

img.hofladen-bild-2 {
  position: absolute;
  top: -4rem;
  left: 20rem;
  width: clamp(20rem, 30vw, 30rem);
}

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

a.button.no-icon {
  padding-right: 0;
}

a.button.no-icon:after {
  display: none;
}



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

.person {
  text-align: center;
}

.person img {
  height: clamp(20rem, 25vw, 25rem);
  object-fit: cover;
}

.person a.button {
  font-size: 0.7rem;
  white-space: pre-wrap;
  hyphens: auto;
}


span.funktion {
  font-family: var(--common-font);
  font-size: min(max(0.7rem, 0.8vw), 0.9rem);
  line-height: 1;
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  width: 100%;
  float: left;
}

span.funktion {
  font-family: var(--common-font);
  font-size: min(max(0.7rem, 0.8vw), 0.9rem);
  line-height: 1;
  font-weight: lighter;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  width: 100%;
  float: left;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.team .grid {
  column-gap: clamp(2.2em, 5vw, 5em);
}



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

img.bild-biene {
  float: left;
  height: clamp(25rem, 35vw, 35rem);
  object-fit: cover;
}


/*--------------------------------------------------
	ZIEGENMILCH
---------------------------------------------------*/

.ziegenmilch-facts .col-1, .ziegenmilch-facts .col-2 {
  border-right: 1px solid var(--mid-grey);
}



/*--------------------------------------------------
	PARTNER
---------------------------------------------------*/

.partner .col-1 {
  border-right: 1px solid var(--mid-grey);
}

.partner img {
  height: clamp(15rem, 20vw, 20rem);
  object-fit: cover;
  object-position: right;
  max-width: clamp(25rem, 30vw, 30rem);
  float: right;
}

.partner .button {
  float: right;
  margin-top: 4rem;
}



/*--------------------------------------------------
	BOTSCHAFTER
---------------------------------------------------*/

.botschafter-bild {
  height: 100%;
  object-fit: cover;
}

.botschafter-facts li {
  font-size: min(max(0.7rem, 0.9vw), 0.9rem);
  list-style-position: outside;
  margin-left: 1rem;
  padding-left: 5px; 
}




/*--------------------------------------------------
	DOWNLOADS
---------------------------------------------------*/

ul.downloads {
  list-style: none;
  height: 0;
  overflow: hidden;
  margin-left: 4rem;
  margin-top: 6rem;
}

.downloads li {
  padding: 2rem 7rem 2rem 3rem;
  border-top: 1px solid var(--mid-grey);
}

.downloads li:last-child {
  border-bottom: 1px solid var(--mid-grey);
}

h2.download-title {
  cursor: pointer;
  float: right;
  width: auto;
  padding-right: 4rem;
  border-right: 1px solid var(--mid-grey);
  height: auto;
  line-height: 1.5;
}

h2.download-title.open {
    color: var(--mid-grey);
}

h2.download-title:before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  left: -40px;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url('/static/images/nav-plus.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

h2.download-title.open:before {
  background-image: url('/static/images/nav-minus.svg');
}

.file:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translate(0, -50%);
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.file.mp3:after {
  background-image: url('/static/images/audio.svg');
}

.file.pdf:after, .file.jpeg:after {
  background-image: url('/static/images/pdf.svg');
}



/*--------------------------------------------------
	WEBCAM
---------------------------------------------------*/

.webcam iframe {
  height: clamp(30rem, 45vw, 45rem);
  float: left;
  width: 100%;
  margin-bottom: 1rem;
}


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

.impressum, .impressum h3, .impressum p {
  color: var(--dark-grey);
}

.impressum .entry:nth-child(2) {
  border-left: 1px solid var(--mid-grey);
  border-right: 1px solid var(--mid-grey);
}


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

footer {
  overflow: hidden;
}

.kontakt {
  text-align: right;
}

.logo-swiss {
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
}

img.logo-gold-swiss {
  width: clamp(12rem, 18vw, 18rem);
}

span.swiss-text {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: min(max(0.9rem, 1.1vw), 1.1rem);
}

img.swiss {
  width: 24px;
}



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


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

 

}


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

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

  
  /* ///// N@VIGATION ///// */
  
  
  /* ///// SL1DER ///// */
  
  
  /* ///// C0NTENT ///// */
  
  .team .grid {
    column-gap: clamp(0.8em, 2vw, 2em);
}

  }



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

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


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


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


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


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

}

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

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


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


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


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

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

img.hofladen-bild-1 {
  right: 10rem;
  width: clamp(20rem, 35vw, 35rem);
}

img.hofladen-bild-2 {
  left: 10rem;
  width: clamp(20rem, 35vw, 35rem);
}
  
}

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

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


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


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


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


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

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

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


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


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


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


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

.fact {
  border: 4px solid var(--red);
}

  
}

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

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


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

a.shop-button {
  font-size: 0.7rem;
  padding-right: 22px;
}

a.shop-button:after {
  width: 11px;
  height: 11px;
  top: 4px;
}

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

#navigationWrap ul.language-switcher {
  top: 14vw;
}

nav ul > li:first-child {
  margin-top: 0.5rem;
}

nav ul > li:last-child {
  margin-bottom: 0.5rem;
}

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


/* ///// C0NTENT ///// */
  
.swiper2 .swiper-slide {
  min-height: 37em;
}

}

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

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


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



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

.menu-container {
  right: 0;
}

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


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

  
}

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

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


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


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


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


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

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

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


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

  .heads-inner {
    width: calc(100% - clamp(4rem, 6vw, 6rem));
    right: clamp(4rem, 6vw, 6rem);
    left: 0;
  }

  .shortcuts-wrapper {
    display: none;
  }

  .heads .sticky {
    right: clamp(1rem, 2.25vw, 2.25rem);
  }

  a.shop-button {
    right: clamp(4rem, 6vw, 6rem);
  }

  .schweiztourismus {
    width: clamp(8rem, 10vw, 10rem);
    margin-right: clamp(4rem, 6vw, 6rem);
  }

  .social-icons-wrapper {
    display: none;
  }

  a.shop-button {
    font-size: 0.6rem;
    padding-right: 20px;
    letter-spacing: 1px;
  }

  a.shop-button:after {
    width: 10px;
    height: 10px;
    top: 4px;
  }


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

  .header .sticky {
    display: none;
  }

  .heads-unterseite .sticky {
    display: block;
  }

  .header_fadein {
    height: 60px;
  }

  .heads .sticky {
    display: block;
  }

  .heads .sticky, .heads-unterseite .sticky {
    right: clamp(18px, 2vw, 2rem);
  }

  #navigationWrap .sticky {
    right: clamp(18px, 2vw, 2rem);
  }

  .sticky.mobile {
    display: block;
  }

  .menu-container {
      right: 15%;
  }

  nav ul li.subnav span:before {
    width: 12px;
    height: 12px;
    left: -32px;
    top: 47%;
  }

  nav ul li.extern span:before {
    width: 10px;
    height: 10px;
    left: -32px;
  }

  #navigationWrap .social-icons-wrapper {
    display: block;
    height: auto;
    top: 6rem;
    right: 2rem;
    left: auto;
    width: auto;
    z-index: 1111;
  }

  .social-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    position: absolute;
    left: auto;
    top: auto;
    transform: none;
    position: relative;
    float: left;
  }
  
  #navigationWrap ul.language-switcher {
    transform: none;
    top: 4rem;
    right: 2rem;
    left: auto;
  }

  .social-icons img {
    width: 17px;
    height: 20px;
    margin-top: 1rem;
    margin-left: 2rem;
  }

  #navigationWrap .shortcuts {
    position: relative;
    float: left;
    transform: none;
    left: auto;
    top: auto;
    right: auto;
  }
  
  .shortcuts-wrapper.mobile {
    display: block;
    height: auto;
    bottom: 2rem;
    top: auto;
    right: 2rem;
    width: auto;
}

  .search-bar-mobile {
    display: block;
  }

  .search-bar-mobile form {
    display: flex;
  }

  .search-bar-mobile input[type="submit"] {
    margin-left: 1rem;
    padding-bottom: 0;
    line-height: 1;
    height: auto;
    float: left;
  }

  .search-bar-mobile {
    width: calc(100% - 6rem);
  }


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


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

  .accordion__content {
    padding: 15px;
    column-count: 1;
    column-gap: 2rem;
  }
  
  img.ziegenhof-bild-1 {
    position: relative;
    float: left;
    left: 0;
    border: 0;
    bottom: 0;
    width: 100%;
  }

  img.ziegenhof-bild-2 {
    height: auto;
    top: 0;
  }
  
  .hofladen-text-1 .content {
      width: 100%;
  }

  img.hofladen-bild-1 {
    position: relative;
    float: left;
    width: 100%;
    right: 0;
    bottom: 0;
  }

  .hofladen-text-2 .content {
    width: 100%;
    float: right;
  }

  img.hofladen-bild-2 {
    position: relative;
    float: left;
    width: 100%;
    top: 0;
    left: 0;
  }

  img.glace-bild {
    margin: 0;
    float: left;
    width: 100%;
  }

  .fact {
    width: 100%;
    margin-right: 0;
}

a.button.float-right {
  margin-bottom: 1rem;
}

.impressum .entry:nth-child(2) {
  border: none;
}

.downloads li {
  padding: 1rem 4rem 1rem 1rem;
}

.file:after {
  right: 1rem;
  width: 25px;
  height: 25px;
}

.swiper2 .swiper-slide {
  min-height: 40em;
}

.swiper2 .slider-image {
  width: 42%;
  left: 0;
}

ul.downloads {
  margin-left: 2rem;
  margin-top: 4rem;
}

h2.download-title {
  padding-right: 2rem;
}

a.button.threesixty:after {
  display: none;
}


}

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

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


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


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


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



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

  
}



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

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




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

.heads-inner {
  width: calc(100% - clamp(3rem, 5vw, 5rem));
  right: clamp(3rem, 5vw, 5rem);
  left: 0;
}

ul.language-switcher {
  right: 2rem;
  left: auto;
  margin-right: -10px;
}

.schweiztourismus {
  width: clamp(8rem, 10vw, 10rem);
  margin-right: clamp(3rem, 5vw, 5rem);
}

.scrolldown {
  display: none;
}

a.logo {
  width: 7em;
  left: clamp(1rem, 2vw, 2rem);
}

a.shop-button {
  display: none;
}

a.shop-button-mobile {
  display: block;
  position: absolute;
  right: clamp(8.75rem, 10vw, 10rem);
  width: 12px;
  height: 12px;
  top: 44%;
  transform: translate(0, -50%);
}

#navigationWrap a.shop-button {
  display: none;
  bottom: 2rem;
  transform: none;
  top: auto;
  right: 5rem;
  left: auto;
}

.heads {
  width: 100%;
  height: calc(90vh - 140px);
  float: left;
}

.milchpulver-zubereitung img {
  float: left;
  height: auto;
  margin-top: 0;
  object-fit: cover;
  position: relative;
}

ul.naehrwerte-titel, ul.naehrwerte {
  list-style: none;
  column-count: 1;
}

.page-title h2 {
  margin-bottom: 0.5rem;
}

.heads .sticky, .heads-unterseite .sticky {
  right: clamp(11px, 2vw, 2rem);
}

#navigationWrap .sticky {
  right: clamp(11px, 2vw, 2rem);
}

a.fullscreen-mobile {
  position: absolute;
  z-index: 11;
  bottom: 1rem;
  left: 2rem;
  width: clamp(2rem, 4vw, 4rem);
  display: block;
}

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

.header {
  justify-content: flex-start;
}

.hamburger .line1 {
  width: 24px;
  margin: 2px auto;
}

.hamburger .line2 {
  width: 20px;
}

#navigationWrap a.logo.big {
  left: clamp(1rem, 2vw, 2rem);
  width: clamp(8em, 10vw, 10em);
  top: 1rem;
}

.hamburger.is-active .line1:nth-child(1) {
  -webkit-transform: translateY(2px) rotate(45deg);
  -ms-transform: translateY(2px) rotate(45deg);
  -o-transform: translateY(2px) rotate(45deg);
  transform: translateY(2px) rotate(45deg);
  width: 24px;
}

.hamburger.is-active .line1:nth-child(3) {
  -webkit-transform: translateY(-12px) rotate(-45deg);
  -ms-transform: translateY(-12px) rotate(-45deg);
  -o-transform: translateY(-12px) rotate(-45deg);
  transform: translateY(-12px) rotate(-45deg);
  width: 24px;
}

nav ul ul {
  align-items: flex-end;
  float: right;
}

nav ul ul.open {
  border-right: 1px solid var(--mid-grey);
}

#navigationWrap ul.language-switcher {
  top: 2rem;
}

#navigationWrap .social-icons-wrapper {
  top: 4rem;
}

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

.menu-container {
  right: 4em;
}

.shortcuts-wrapper.mobile {
  right: 1rem;
}

nav ul > li {
  margin: 0 1rem 0 0;
}

ul.open li:last-child {
  margin-bottom: 1rem;
}

.subnav-button {
  font-size: 0.8rem;
}

nav ul > li:first-child {
  margin-top: 0;
}

nav ul > li:last-child {
  margin-bottom: 0;
}

.header_fadein a.logo {
  left: clamp(1rem, 2vw, 2rem);
}

.search-bar-mobile {
  width: calc(100% - 4rem);
}


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


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

.der-shop p {
  text-align: left;
  margin-bottom: 2rem;
}

.der-shop-content .button.float-right {
  float: left;
}

.der-shop-content h2 {
  text-align: left;
}

.die-produkte-content {
  display: none;
}

.die-produkte h2 {
  text-align: left;
}

.newsletter-logo {
  display: none;
}

.partner .button {
  margin-top: 1rem;
}

.partner .col-1 {
  border: none;
}

.partner {
  border-bottom: 1px solid var(--grey-white);
}

.person img {
  height: clamp(20rem, 80vw, 80rem);
}

.botschafter-facts li {
  font-size: min(max(0.9rem, 1vw), 1rem);
}

.border-top, .border-bottom, .border-right {
  border: none;
}

.grid .news-item:nth-child(2) {
  display: none;
}

.top-right-s h2 {
  float: left;
  text-align: left;
}

h2 br {
  display: none;
}

.news-item {
  border-bottom: 1px solid var(--grey-white);
}

.top-left-s h2 {
  text-align: left;
}

.credits {
  text-align: center;
}

.newsletter a.button {
  margin-top: 2rem;
}

.copyright {
  flex-direction: column;
}

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

.heads-unterseite h1 {
  margin-left: 20px;
}

.naehrwerte-titel li {
  margin-bottom: 0.5rem;
}

.home-all-commit-component {
  display: none;
}

ul.downloads {
  margin: 0;
}
  
}

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

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


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


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


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


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

.swiper2 .slider-image {
  position: relative;
  width: 100%;
  height: clamp(20em, 80vw, 80em);
}

.swiper2 .swiper-pagination {
  left: 2em;
  top: 1em;
}

.swiper2 .swiper-content {
  padding: 0em 2em 2em 2em;
  width: 100%;
  margin-left: 0;
  min-height: 20em;
}

.swiper-navigation {
  position: absolute;
  bottom: auto;
  left: auto;
  margin-left: 0;
  top: 5em;
  right: 9em;
}

.swiper2 .swiper-slide {
  padding: 7em 0 0em;
}


}

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

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


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


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


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


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

.swiper2 .swiper-pagination {
  top: 5em;
}

.swiper-navigation {
  right: auto;
  left: 1em;
  margin-left: -10px;
}

.swiper2 .swiper-content {
  padding: 4em 2em 2em 2em;
  min-height: 26em;
}


}

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

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


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



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




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


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

.swiper2 span {
  margin: 0 40px 0 0;
}

.swiper2 .swiper-pagination-bullet:before {
  right: -27px;
}
  
}

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

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


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


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


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


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







/* ///// DARKMODE ///// */


@media (prefers-color-scheme: dark) {
  
  :root {
    --white: #202124;
    --black: #fff;
    --dark-grey: #fff;
    --grey-white: #42444b;
  }

  a.logo img, img.newsletter-logo, .scrolldown img {
    filter: invert(80%) brightness(130%) contrast(120%);
  }

  .bg-gray, .bg-light-gray {
    background-color: #000;
  }

  .bg-dark {
    background: #000;
    color: var(--black);
  }

  .bg-dark p, .bg-dark h2, .bg-dark h3 {
    color: var(--black);
  }

  .bg-gray.team {
    background: var(--white);
  }

  .dark-no-margin {
    margin-top: 0!important;
  }

  nav ul li.subnav span:before, h2.download-title:before, nav ul li.extern span:before {
    filter: invert(1);
}

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

  .produkt-titel {
    color: var(--black);
  }

  .swiper2 p {
    color: var(--mid-grey);
  }

  .schweiztourismus.de {
    background-image: url('/static/images/schweiztourismus-dark-de.svg');
  }

  .schweiztourismus.en {
    background-image: url('/static/images/schweiztourismus-dark-en.svg');
  }

  .schweiztourismus.fr {
    background-image: url('/static/images/schweiztourismus-dark-fr.svg');
  }


}


