@font-face {
  font-family: 'Montserrat';
  src: url("./../../ressources/font/Montserrat-Light.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: 300; }

@font-face {
  font-family: 'Montserrat';
  src: url("./../../ressources/font/Montserrat-Regular.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: 400; }

@font-face {
  font-family: 'Montserrat';
  src: url("./../../ressources/font/Montserrat-Bold.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: 700; }

@font-face {
  font-family: 'Oswald';
  src: url("./../../ressources/font/Oswald-Regular.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-weight: 400; }

:root {
  --main-header-height: 8rem; }
  @media only screen and (min-width: 660px) {
    :root {
      --main-header-height: 8rem; } }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 1; }
  .hamburger.is-active:hover {
    opacity: 1; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: currentColor; }

.hamburger-box {
  width: 35px;
  height: 26px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 35px;
    height: 4px;
    background-color: currentColor;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -11px; }
  .hamburger-inner::after {
    bottom: -11px; }

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 70px; }

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 11px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -11px, 0) rotate(-45deg); }

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 70px; }

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 11px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -11px, 0) rotate(-45deg); }

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 70px; }

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 11px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -11px, 0) rotate(-45deg); }

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 70px; }

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 11px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -11px, 0) rotate(-45deg); }

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 70px; }

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg); }
  .hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 11px, 0) rotate(45deg); }
  .hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -11px, 0) rotate(-45deg); }

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 70px; }

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 11px, 0) rotate(45deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -11px, 0) rotate(-45deg); }

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-7px, 0, 0) rotate(-45deg) scale(0.7, 1); }

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-7px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(7px, 0, 0) rotate(45deg) scale(0.7, 1); }

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(7px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-7px, -8.75px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-7px, 8.75px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(7px, -8.75px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(7px, 8.75px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
  .hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -22px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -22px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -11px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 11px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 22px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 11px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -22px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 11px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 22px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 11px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -22px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 11px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -70px;
      top: -70px;
      transform: translate3d(70px, 70px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -70px;
      top: -70px;
      transform: translate3d(-70px, 70px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 11px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -70px;
      top: 70px;
      transform: translate3d(70px, -70px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -70px;
      top: 70px;
      transform: translate3d(-70px, -70px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0; }

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0; }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px; }
  .hamburger--slider .hamburger-inner::before {
    top: 11px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 22px; }

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 11px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5px, -7px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -22px, 0) rotate(-90deg); }

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 11px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 22px; }

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 11px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5px, -7px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -22px, 0) rotate(90deg); }

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 11px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 22px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 11px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 11px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -22px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -11px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

body.lb-disable-scrolling {
  overflow: hidden; }

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none; }

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none; }

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white; }

.lightbox a img {
  border: none; }

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
       This is visible during transitions. */
  background-color: white; }

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0; }

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat; }

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10; }

.lb-container > .nav {
  left: 0; }

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="); }

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block; }

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(./../media/icons/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(./../media/icons/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s; }

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px; }

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both; }

.lb-data {
  padding: 0 4px;
  color: #ccc; }

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em; }

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em; }

.lb-data .lb-caption a {
  color: #4ae; }

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999; }

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(./../media/icons/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s; }

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1; }

*,
*::before,
*::after {
  box-sizing: inherit; }

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased; }
  @media only screen and (max-width: 1140px) {
    html {
      font-size: 50%; } }

body {
  margin: 0;
  position: relative; }

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0; }

a {
  color: inherit;
  text-decoration: none; }

button {
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  background-color: inherit; }
  button:focus {
    outline: none; }

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: black;
  background-color: #fcf5e6; }

p {
  line-height: 1.5; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  color: black; }

h1, h2 {
  margin-bottom: 0rem; }
  @media screen and (min-width: 0) {
    h1, h2 {
      font-size: 36px; } }
  @media screen and (min-width: 320px) {
    h1, h2 {
      font-size: 28px; } }
  @media screen and (min-width: 400px) {
    h1, h2 {
      font-size: 30px; } }
  @media screen and (min-width: 660px) {
    h1, h2 {
      font-size: 36px; } }
  @media screen and (min-width: 1140px) {
    h1, h2 {
      font-size: 48px; } }
  @media screen and (min-width: 1200px) {
    h1, h2 {
      font-size: 50px; } }
  @media screen and (min-width: 1600px) {
    h1, h2 {
      font-size: 54px; } }

h3 {
  font-weight: 400; }
  @media screen and (min-width: 0) {
    h3 {
      font-size: 24px; } }
  @media screen and (min-width: 320px) {
    h3 {
      font-size: 26px; } }
  @media screen and (min-width: 400px) {
    h3 {
      font-size: 26px; } }
  @media screen and (min-width: 660px) {
    h3 {
      font-size: 28px; } }
  @media screen and (min-width: 1140px) {
    h3 {
      font-size: 30px; } }
  @media screen and (min-width: 1200px) {
    h3 {
      font-size: 32px; } }
  @media screen and (min-width: 1600px) {
    h3 {
      font-size: 32px; } }

h4 {
  font-weight: 700; }
  @media screen and (min-width: 0) {
    h4 {
      font-size: 21px; } }
  @media screen and (min-width: 320px) {
    h4 {
      font-size: 21px; } }
  @media screen and (min-width: 400px) {
    h4 {
      font-size: 21px; } }
  @media screen and (min-width: 660px) {
    h4 {
      font-size: 24px; } }
  @media screen and (min-width: 1140px) {
    h4 {
      font-size: 24px; } }
  @media screen and (min-width: 1200px) {
    h4 {
      font-size: 28px; } }
  @media screen and (min-width: 1600px) {
    h4 {
      font-size: 28px; } }

h5 {
  font-weight: 700; }
  @media screen and (min-width: 0) {
    h5 {
      font-size: 21px; } }
  @media screen and (min-width: 320px) {
    h5 {
      font-size: 24px; } }
  @media screen and (min-width: 400px) {
    h5 {
      font-size: 24px; } }
  @media screen and (min-width: 660px) {
    h5 {
      font-size: 24px; } }
  @media screen and (min-width: 1140px) {
    h5 {
      font-size: 24px; } }
  @media screen and (min-width: 1200px) {
    h5 {
      font-size: 24px; } }
  @media screen and (min-width: 1600px) {
    h5 {
      font-size: 24px; } }

h4 {
  font-weight: 700; }
  @media screen and (min-width: 0) {
    h4 {
      font-size: 21px; } }
  @media screen and (min-width: 320px) {
    h4 {
      font-size: 21px; } }
  @media screen and (min-width: 400px) {
    h4 {
      font-size: 21px; } }
  @media screen and (min-width: 660px) {
    h4 {
      font-size: 24px; } }
  @media screen and (min-width: 1140px) {
    h4 {
      font-size: 24px; } }
  @media screen and (min-width: 1200px) {
    h4 {
      font-size: 28px; } }
  @media screen and (min-width: 1600px) {
    h4 {
      font-size: 28px; } }

h4 {
  font-weight: 700; }
  @media screen and (min-width: 0) {
    h4 {
      font-size: 21px; } }
  @media screen and (min-width: 320px) {
    h4 {
      font-size: 21px; } }
  @media screen and (min-width: 400px) {
    h4 {
      font-size: 21px; } }
  @media screen and (min-width: 660px) {
    h4 {
      font-size: 24px; } }
  @media screen and (min-width: 1140px) {
    h4 {
      font-size: 24px; } }
  @media screen and (min-width: 1200px) {
    h4 {
      font-size: 28px; } }
  @media screen and (min-width: 1600px) {
    h4 {
      font-size: 28px; } }

h5 {
  font-weight: 700; }
  @media screen and (min-width: 0) {
    h5 {
      font-size: 21px; } }
  @media screen and (min-width: 320px) {
    h5 {
      font-size: 24px; } }
  @media screen and (min-width: 400px) {
    h5 {
      font-size: 24px; } }
  @media screen and (min-width: 660px) {
    h5 {
      font-size: 24px; } }
  @media screen and (min-width: 1140px) {
    h5 {
      font-size: 24px; } }
  @media screen and (min-width: 1200px) {
    h5 {
      font-size: 24px; } }
  @media screen and (min-width: 1600px) {
    h5 {
      font-size: 24px; } }

h6 {
  font-weight: 700;
  margin: 0; }
  @media screen and (min-width: 0) {
    h6 {
      font-size: 16px; } }
  @media screen and (min-width: 320px) {
    h6 {
      font-size: 16px; } }
  @media screen and (min-width: 400px) {
    h6 {
      font-size: 16px; } }
  @media screen and (min-width: 660px) {
    h6 {
      font-size: 18px; } }
  @media screen and (min-width: 1140px) {
    h6 {
      font-size: 18px; } }
  @media screen and (min-width: 1200px) {
    h6 {
      font-size: 18px; } }
  @media screen and (min-width: 1600px) {
    h6 {
      font-size: 18px; } }

.heading-block {
  margin-bottom: 3.2rem; }
  .heading-block__sub-heading {
    font-family: "Oswald", sans-serif;
    color: #9b1441;
    position: relative;
    font-size: 2.8rem;
    padding-left: 13rem; }
    .heading-block__sub-heading::before {
      content: "";
      position: absolute;
      height: 2px;
      width: 11rem;
      background-color: black;
      left: 0;
      top: 50%;
      transform: translateY(0); }
    @media only screen and (max-width: 660px) {
      .heading-block__sub-heading {
        padding-left: 8rem; }
        .heading-block__sub-heading::before {
          width: 6rem; } }
  .heading-block h1, .heading-block h2 {
    line-height: 1.33; }
  .heading-block h4 {
    margin-top: 2rem; }

.heading-block--medium-margin-bottom {
  margin-bottom: 4.5rem; }

.heading-block--big-margin-bottom {
  margin-bottom: 6rem; }

@media only screen and (min-width: 660px) {
  .heading-block--center {
    text-align: center; } }

.heading--highlight {
  color: #9b1441; }

.text-styles h3, .text-styles h4, .text-styles h5, .text-styles h6 {
  line-height: 1;
  margin-bottom: .8rem;
  color: #1a1919; }

.text-styles h3, .text-styles h4 {
  margin-bottom: 1.2rem; }

.text-styles a {
  color: #9b1441; }
  .text-styles a:hover {
    text-decoration: underline;
    color: #af1f4f; }

.text-styles ul {
  padding: 0;
  list-style: none;
  font-family: inherit;
  color: inherit;
  margin: 0; }
  .text-styles ul li {
    position: relative;
    line-height: 1.3;
    margin-bottom: .7rem; }

.text-styles ol {
  padding-left: 2rem; }
  .text-styles ol li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.5; }

.text-styles table,
.table table {
  overflow-x: scroll;
  padding-bottom: 1rem;
  display: block;
  scrollbar-color: #fcf5e6 #9b1441; }
  .text-styles table::-webkit-scrollbar,
  .table table::-webkit-scrollbar {
    width: 4px;
    height: 4px; }
  .text-styles table::-webkit-scrollbar-thumb,
  .table table::-webkit-scrollbar-thumb {
    background: #9b1441; }
  .text-styles table::-webkit-scrollbar-track,
  .table table::-webkit-scrollbar-track {
    background: #fcf5e6;
    height: 100%; }
  @media only screen and (min-width: 660px) {
    .text-styles table,
    .table table {
      overflow-x: initial; } }

.layer-hover-animation {
  position: relative;
  display: block; }
  .layer-hover-animation img {
    transition: filter .2s; }
  .layer-hover-animation::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-40%) translateY(-40%) rotate(45deg);
    height: 4rem;
    width: 4rem;
    background-color: #fcf5e6;
    z-index: 199;
    -webkit-mask-image: url(./../../ressources/media/icons/standard/icon-plus.svg);
    -webkit-mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url(./../../ressources/media/icons/standard/icon-plus.svg);
    mask-size: 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    opacity: 0;
    transition: all .2s; }
  .layer-hover-animation::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1rem;
    z-index: 199;
    background-color: #9b1441;
    transform: scaleX(0);
    transition: all .2s;
    transform-origin: left; }
  .layer-hover-animation:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) rotate(0deg); }
  .layer-hover-animation:hover::before {
    transform: scaleX(1); }
  .layer-hover-animation:hover img {
    filter: brightness(0.5); }

.anker-item {
  display: block;
  position: relative;
  top: -8rem;
  visibility: hidden; }

@media only screen and (max-width: 660px) {
  .lock-body {
    overflow: hidden; } }

.block {
  margin-top: 10rem;
  position: relative;
  padding: 0rem 3rem; }
  .block:last-of-type {
    margin-bottom: 3rem; }

.block--big-padding {
  padding-top: 8rem;
  padding-bottom: 8rem; }

.block--no-top-margin {
  margin-top: 0; }

.block--big-top-margin {
  margin-top: 12rem; }

.block--no-bottom-margin {
  margin-bottom: 0; }

.block--full-width {
  padding: 0rem 0; }

.block--grey {
  background-color: #fcf5e6; }

.block--red {
  background-color: #9b1441; }

.content-width {
  width: 100%;
  max-width: 1188px;
  margin: 0 auto;
  padding: 0rem 0rem;
  position: relative; }
  @media only screen and (min-width: 660px) {
    .content-width {
      padding: 0 3rem; } }

.copy-width {
  max-width: 75rem;
  margin: 0 auto; }

.full-width {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0; }
  .full-width--no-bottom-padding {
    padding-bottom: 0; }
  .full-width--less-padding {
    padding: 2rem 6rem; }
  .full-width--less-padding-top {
    padding: 6rem 6rem;
    padding-top: 2rem; }

.container .block:last-of-type {
  margin-bottom: 12rem; }

.container .block:last-of-type.block--grey,
.container .block:last-of-type.block--grey-dark {
  margin-bottom: 0; }

.searchbar {
  display: none;
  position: fixed;
  top: var(--main-header-height);
  z-index: 1002;
  background-color: #fcf5e6;
  width: 100%;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.152);
  height: 60px;
  flex-direction: column;
  justify-content: center; }
  @media only screen and (max-width: 660px) {
    .searchbar {
      display: flex; } }
  .searchbar svg {
    fill: #9b1441; }
  .searchbar__inner-container {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0 auto; }
  .searchbar__close {
    height: 24px;
    width: 24px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 4rem;
    background-color: #9b1441;
    opacity: 1;
    -webkit-mask-image: url(./../../ressources/media/icons/haas-ic-menue-close.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url(./../../ressources/media/icons/haas-ic-menue-close.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    display: none; }
    @media only screen and (min-width: 660px) {
      .searchbar__close {
        display: block; } }
  .searchbar__submit {
    height: 16px;
    width: 16px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4rem;
    background-color: #9b1441;
    opacity: 1;
    -webkit-mask-image: url(./../../ressources/media/icons/haas-ic-arrow-small--white.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url(./../../ressources/media/icons/haas-ic-arrow-small--white.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center; }
  .searchbar__input {
    height: 50px;
    width: 100%;
    height: 100%;
    display: block;
    background-color: transparent;
    border-style: none;
    font-size: inherit;
    font-family: inherit;
    color: var(--dark-blue-03);
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center; }
    .searchbar__input:focus, .searchbar__input:hover {
      outline: none; }
    .searchbar__input::placeholder {
      font-size: inherit;
      font-family: inherit;
      color: #a5a5a5;
      font-size: 1.6rem; }
    @media only screen and (min-width: 660px) {
      .searchbar__input {
        height: 60px; } }
  .searchbar--hide-icon {
    opacity: 0;
    transform: translateY(100%); }

@media only screen and (max-width: 960px) {
  .main-navigation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.712);
    display: none; } }

.main-navigation {
  position: absolute;
  top: var(--main-header-height);
  background-color: #fcf5e6;
  width: 100%;
  display: none;
  padding-bottom: 2rem;
  height: 100vh;
  z-index: 300; }
  .main-navigation__container {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: calc(100vh - var(--main-header-height));
    border-top: 2px solid rgba(0, 0, 0, 0.137); }
    @media only screen and (min-width: 960px) {
      .main-navigation__container {
        padding: 2rem 2rem; } }
  .main-navigation__subnavi {
    list-style: none;
    padding: 0;
    margin: 0;
    top: var(--main-header-height);
    display: none; }
  .main-navigation__subnavi-container {
    list-style: none;
    padding: 0; }
  .main-navigation__nav-point {
    padding: 0 2rem; }
  .main-navigation__nav-point--level-2 {
    padding-left: 1rem; }
    .main-navigation__nav-point--level-2:hover {
      background-color: #fcf5e6; }
  .main-navigation__nav-link {
    display: block;
    width: 100%;
    margin: 2.3rem 0rem;
    position: relative;
    font-weight: 400;
    color: #171610;
    font-weight: 700;
    font-size: 2.8rem; }
  .main-navigation__nav-link--current.main-navigation__nav-link--level-2 {
    color: #9b1441; }
  .main-navigation__nav-link-icon {
    height: 2rem;
    width: 2rem;
    position: absolute;
    right: 2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .2s;
    background-color: #9b1441;
    -webkit-mask-image: url(./../../ressources/media/icons/angle.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url(./../../ressources/media/icons/angle.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center; }
  .main-navigation__nav-link--has-subnavi .main-navigation__nav-link-icon {
    transform: rotate(90deg); }
  .main-navigation__quick-links {
    list-style: none; }

.main-navigation--active {
  display: block; }

.main-navigation__nav-point--active {
  display: block; }

.main-navigation__nav-point--active > :last-child {
  visibility: visible;
  height: auto;
  display: block;
  margin-bottom: 1rem; }

.main-navigation__nav-point--active > :first-child {
  border-bottom: 1px solid #171610;
  margin-bottom: 1rem; }

.main-navigation__nav-link--active .main-navigation__nav-link-icon:first-child {
  transform: rotate(-90deg); }

.grid-2-col {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 2rem;
  gap: 2rem;
  align-items: start; }
  @media only screen and (min-width: 660px) {
    .grid-2-col {
      display: grid;
      grid-gap: 4rem;
      gap: 4rem;
      grid-template-columns: 1fr 1fr; } }
  @media only screen and (min-width: 660px) {
    .grid-2-col__big-item {
      grid-column: span 2; } }

.grid-3-col {
  display: grid;
  grid-template-columns: 100%;
  grid-gap: 2rem;
  gap: 2rem;
  align-items: start; }
  @media only screen and (min-width: 660px) {
    .grid-3-col {
      display: grid;
      grid-gap: 2rem;
      gap: 2rem;
      grid-template-columns: 1fr 1fr 1fr; } }

.footer-outside {
  background-color: #9b1441;
  position: relative;
  padding: 6rem 3rem;
  margin-top: 0rem; }
  @media only screen and (min-width: 660px) {
    .footer-outside {
      padding: 9rem 3rem;
      padding-bottom: 7rem; } }

.footer {
  color: #fcf5e6; }
  @media only screen and (min-width: 660px) {
    .footer {
      display: grid;
      width: 100%;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      grid-template-rows: 1fr;
      grid-column-gap: 1rem;
      column-gap: 1rem; } }
  .footer__col {
    margin-bottom: 3rem; }
    @media only screen and (min-width: 660px) {
      .footer__col {
        margin-bottom: 0; } }
    .footer__col ul {
      list-style: none;
      padding: 0;
      font-size: 1.8rem;
      font-weight: 400;
      margin: 0;
      margin-bottom: 2rem;
      line-height: 1.3; }
      .footer__col ul li {
        margin-bottom: 1.1rem; }
      .footer__col ul a {
        font-size: 1.8rem;
        letter-spacing: .5px; }
        .footer__col ul a:hover {
          text-decoration: underline; }
  .footer__heading {
    letter-spacing: .5px;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #fcf5e6; }
  .footer__list-item {
    margin-bottom: 1.1rem; }

.input-text {
  font-size: inherit;
  font-family: inherit;
  padding: 1.5rem;
  border: none;
  font-weight: 300;
  background-color: #fcf5e6; }
  .input-text:focus {
    outline: 2px solid #9b1441; }
  .input-text::placeholder {
    color: #b8b8b8;
    opacity: 1;
    font-size: 1.8rem; }

@media only screen and (min-width: 660px) {
  .input-text--big {
    grid-column: span 2; } }

.radio__label {
  width: calc(50% - 5px);
  padding: 1rem 0;
  text-align: left;
  margin-right: 5px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  font-size: inherit;
  font-weight: 300; }

.radio__cicle {
  height: 2rem;
  width: 2rem;
  border-radius: 2rem;
  border: 1px solid #171610;
  background-color: #fcf5e6;
  margin-right: 1rem;
  flex-shrink: 0; }

.radio__input {
  visibility: collapse;
  margin: 0;
  height: 0;
  width: 0; }

.radio__input:checked + .radio__label .radio__cicle {
  position: relative; }
  .radio__input:checked + .radio__label .radio__cicle::after {
    content: "";
    height: 1rem;
    width: 1rem;
    border-radius: 1rem;
    background-color: #9b1441;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%); }

.checkbox__label {
  text-align: left;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  font-size: inherit;
  font-weight: 300; }
  .checkbox__label span {
    display: block; }

.checkbox__checkmark {
  height: 2rem;
  width: 2rem;
  border: 1px solid #171610;
  background-color: #fcf5e6;
  margin-right: 2rem;
  flex-shrink: 0; }

.checkbox__input {
  opacity: 0;
  transform: translateY(20px) translateX(10px);
  margin: 0;
  height: 0;
  width: 0; }

.checkbox__input.jsvalidation-invalid + .checkbox__label {
  background-color: rgba(255, 0, 0, 0.336);
  padding: 5px 5px; }
  .checkbox__input.jsvalidation-invalid + .checkbox__label .checkbox__checkmark {
    border: 1px solid red; }

.checkbox__input:checked + .checkbox__label {
  background-color: transparent; }
  .checkbox__input:checked + .checkbox__label .checkbox__checkmark {
    position: relative;
    border: 1px solid #171610 !important; }
    .checkbox__input:checked + .checkbox__label .checkbox__checkmark::after {
      content: "";
      height: 100%;
      width: 100%;
      background-color: #9b1441;
      position: absolute;
      -webkit-mask-image: url(./../../ressources/media/icons/checkmark.svg);
      -webkit-mask-size: 90%;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-image: url(./../../ressources/media/icons/checkmark.svg);
      mask-size: 90%;
      mask-repeat: no-repeat;
      mask-position: center;
      top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%); }

.show-more__more-text {
  display: none; }
  @media only screen and (min-width: 660px) {
    .show-more__more-text {
      display: block; } }

.show-more__button {
  color: #9b1441;
  cursor: pointer; }
  @media only screen and (min-width: 660px) {
    .show-more__button {
      display: none; } }

.responsive-image {
  width: 100%;
  height: auto; }

.validation-notification {
  color: red;
  font-size: 12px; }

.validation-input-error {
  outline: 1px solid red; }

.validation-input-error + .checkbox__label .checkbox__checkmark {
  outline: 1px solid red; }

.validation-notification-submit {
  text-align: center;
  margin-top: 1rem;
  display: none; }

.main-header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--main-header-height);
  transition: all .2s;
  z-index: 350; }
  .main-header__container {
    width: 100%;
    height: var(--main-header-height);
    background-color: transparent;
    position: relative; }
  .main-header__logo {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    height: 4rem;
    width: auto; }
    .main-header__logo img {
      height: 100%; }
  .main-header__hamburger {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    color: #fcf5e6; }
    @media only screen and (max-width: 660px) {
      .main-header__hamburger {
        color: #171610; } }

.main-header--scrolled {
  background-color: #fcf5e6;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.102); }
  .main-header--scrolled .main-header__hamburger {
    color: #9b1441; }

.main-header--active-navi .main-header__container {
  background-color: #fcf5e6;
  z-index: 999; }

.main-header--active-navi .main-header__hamburger {
  color: black; }

.skeleton-container {
  padding-top: var(--main-header-height);
  min-height: 100vh; }

.skeleton--stage {
  height: 60vw;
  width: 100%;
  background-color: #e4d9c3;
  position: relative; }
  @media only screen and (min-width: 660px) {
    .skeleton--stage {
      height: 40vw; } }
  @media only screen and (min-width: 1140px) {
    .skeleton--stage {
      height: 40vw;
      max-height: 90rem; } }

.skeleton--stage::before {
  content: '';
  display: block;
  position: absolute;
  left: -150px;
  top: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(to right, transparent 0%, #bebebe 50%, transparent 100%);
  animation: load 1.3s cubic-bezier(0.4, 0, 0.2, 1) infinite; }

.skeleton--text div {
  height: 3rem;
  width: 100%;
  margin-bottom: 2rem;
  background-color: #e4d9c3;
  overflow: hidden;
  position: relative; }

.skeleton--text div::before {
  content: '';
  display: block;
  position: absolute;
  left: -150px;
  top: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(to right, transparent 0%, #bebebe 50%, transparent 100%);
  animation: load 1.3s cubic-bezier(0.4, 0, 0.2, 1) infinite; }

@keyframes load {
  from {
    left: -100%; }
  to {
    left: 100%; } }

@media only screen and (min-width: 660px) {
  .akkordeon {
    display: grid;
    max-width: 1188px;
    margin: 0 auto; } }

.akkordeon__head-item {
  display: flex;
  height: 7.6rem;
  align-items: center;
  padding: 0 1.6rem;
  border-bottom: 1px solid #ebebeb;
  cursor: pointer;
  transform: rotate(0deg); }
  @media only screen and (min-width: 660px) {
    .akkordeon__head-item {
      border-bottom: 2px solid #ebebeb;
      position: relative; } }

.akkordeon__head-item-heading {
  font-weight: 400;
  font-size: 2.4rem;
  color: black; }

.akkordeon__head-item-angle {
  margin-left: auto;
  display: block;
  height: 3rem;
  width: 3rem;
  background-color: #9b1441;
  -webkit-mask-image: url(./../../ressources/media/icons/ic-cta-arrow-akkordeon.svg);
  -webkit-mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./../../ressources/media/icons/ic-cta-arrow-akkordeon.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  mask-position: center; }

.akkordeon__head-item--active {
  border-bottom: 1px solid #9b1441; }
  @media only screen and (min-width: 660px) {
    .akkordeon__head-item--active {
      border-bottom: 2px solid #ebebeb;
      background-color: #f5f5f5; } }
  .akkordeon__head-item--active .akkordeon__head-item-angle {
    transform: rotate(180deg); }
  .akkordeon__head-item--active .akkordeon__head-item-heading {
    color: #9b1441; }

.akkordeon__content-item {
  background-color: #f5f5f5;
  padding: 3rem; }
  @media only screen and (min-width: 660px) {
    .akkordeon__content-item {
      display: flex;
      padding: 3rem;
      background-color: initial; } }

.akkordeon__content-item-image {
  width: 100%;
  margin-bottom: 1.6rem; }
  @media only screen and (min-width: 660px) {
    .akkordeon__content-item-image {
      display: block;
      width: initial;
      flex: 0 1 40%;
      margin-right: 2rem; } }
  .akkordeon__content-item-image img {
    width: 100%; }

.akkordeon__content-item-heading {
  display: none;
  margin-bottom: 1rem;
  font-size: 2.4rem; }
  @media only screen and (min-width: 660px) {
    .akkordeon__content-item-heading {
      display: block; } }

@media only screen and (min-width: 660px) {
  .akkordeon__content-item-text {
    flex: 1 1 0;
    max-width: 50rem; } }

.button {
  background-color: #9b1441;
  color: #fcf5e6;
  display: block;
  font-weight: 400;
  padding: 1.4rem 3.3rem;
  margin-top: 2rem;
  position: relative;
  transition: all .2s; }
  .button::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    height: 1.8rem;
    width: 1.8rem;
    background-color: #fcf5e6;
    transition: all .1s;
    -webkit-mask-image: url(./../../ressources/media/icons/angle.svg);
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-image: url(./../../ressources/media/icons/angle.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    opacity: 0; }
  .button:hover {
    background-color: #af1f4f;
    padding-right: 4rem; }
    .button:hover::after {
      opacity: 1;
      transform: translateY(-50%) translateX(0px); }

.button--inline {
  display: inline-block; }

.button--outline-inverted {
  background-color: transparent;
  border: 2px solid #fcf5e6; }
  .button--outline-inverted::after {
    background-color: #9b1441; }
  .button--outline-inverted:hover {
    background-color: rgba(255, 255, 255, 0.25); }

.button--outline-black {
  background-color: transparent;
  border: 2px solid black;
  color: black; }
  .button--outline-black:hover {
    background-color: rgba(255, 255, 255, 0.4); }

.button-container {
  display: flex;
  justify-content: center; }

.button-container--left {
  display: flex;
  justify-content: flex-start; }

.stage-product {
  position: relative; }
  @media only screen and (min-width: 660px) {
    .stage-product__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      height: 44vw;
      min-height: 70rem;
      max-height: 80rem;
      max-width: 100%;
      overflow: hidden; } }
  .stage-product__light {
    min-height: calc(45vh);
    position: relative; }
    @media only screen and (min-width: 660px) {
      .stage-product__light {
        position: unset;
        min-height: unset; } }
  .stage-product__highlight {
    background-color: #9b1441;
    min-height: 45vh;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media only screen and (min-width: 660px) {
      .stage-product__highlight {
        min-height: unset;
        justify-content: flex-end; } }
    @media only screen and (min-width: 960px) {
      .stage-product__highlight {
        min-height: unset;
        justify-content: center; } }
  .stage-product__image-container {
    background-image: url(./../../ressources/media/img/kranade-limo-flasche-mock-up-IMG_7275-P3.png);
    width: 100%;
    height: 45vh;
    background-size: 140%;
    background-position: center bottom;
    background-repeat: no-repeat; }
    @media only screen and (min-width: 660px) {
      .stage-product__image-container {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 150rem;
        height: 70rem;
        background-size: contain;
        background-position: center bottom; } }
  .stage-product__claim {
    color: #fcf5e6;
    font-weight: 700;
    max-width: 46rem;
    font-size: 6.2rem;
    line-height: 1.09;
    z-index: 40;
    position: relative; }
    @media only screen and (max-width: 960px) {
      .stage-product__claim {
        font-size: 4rem;
        max-width: 38rem; } }
    @media only screen and (max-width: 660px) {
      .stage-product__claim {
        padding: 0 2rem;
        font-size: 5rem; } }
  .stage-product__anker {
    width: 4.5rem;
    height: 4.5rem;
    background-color: white;
    background-image: url(./../../ressources/media/icons/icon-ankerlinks.svg);
    background-repeat: no-repeat;
    background-position: 50% 60%;
    border-radius: 4.5rem;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(50%); }
    @media only screen and (min-width: 660px) {
      .stage-product__anker {
        bottom: 3.4rem; } }
  .stage-product__label {
    font-weight: 400;
    font-family: "Oswald", sans-serif;
    font-size: 2.1rem;
    color: #171610;
    position: absolute; }
    @media only screen and (min-width: 660px) {
      .stage-product__label {
        font-size: 2.4rem; } }
    .stage-product__label::after {
      content: "";
      position: absolute;
      height: 2px;
      background-color: black;
      left: 0;
      bottom: -1rem; }
    .stage-product__label--1 {
      left: 12%;
      bottom: 19rem; }
      .stage-product__label--1::after {
        width: 16rem; }
      @media only screen and (min-width: 660px) {
        .stage-product__label--1 {
          left: 30%;
          bottom: 44rem; }
          .stage-product__label--1::after {
            width: 30rem; } }
      @media only screen and (max-width: 320px) {
        .stage-product__label--1::after {
          width: 15rem; } }
    .stage-product__label--2 {
      left: 2rem;
      bottom: 10rem; }
      .stage-product__label--2::after {
        width: calc(50vw - 3rem); }
      @media only screen and (min-width: 660px) {
        .stage-product__label--2 {
          left: 23%;
          bottom: 19rem; }
          .stage-product__label--2::after {
            width: 38rem; } }
      @media only screen and (max-width: 320px) {
        .stage-product__label--2::after {
          width: 18rem; } }
    .stage-product__label--3 {
      right: 8%;
      bottom: 5rem; }
      .stage-product__label--3::after {
        width: calc(50vw - 5rem);
        right: 0;
        left: unset; }
      @media only screen and (min-width: 660px) {
        .stage-product__label--3 {
          left: 65%;
          top: 78%;
          bottom: unset;
          right: unset;
          color: #fcf5e6; }
          .stage-product__label--3::after {
            width: 28rem;
            right: 0;
            left: unset;
            background-color: #fcf5e6; } }
      @media only screen and (max-width: 320px) {
        .stage-product__label--3 {
          bottom: 4rem;
          right: 2rem; }
          .stage-product__label--3::after {
            width: 14rem; } }

.anchor-menu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  padding: 0; }
  @media only screen and (min-width: 660px) {
    .anchor-menu {
      width: 100%;
      max-width: 60rem;
      margin-left: auto; } }
  @media only screen and (min-width: 1140px) {
    .anchor-menu {
      bottom: 0;
      top: auto;
      flex-wrap: nowrap;
      width: auto;
      max-width: 80rem;
      top: auto;
      bottom: 0; } }
  @media only screen and (min-width: 1200px) {
    .anchor-menu {
      max-width: 140rem; } }
  .anchor-menu__item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100%);
    position: relative;
    height: 12rem;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    padding-left: 2rem;
    cursor: pointer;
    position: relative;
    font-size: 2.8rem;
    padding-right: 4rem; }
    .anchor-menu__item span {
      z-index: 25;
      color: #fcf5e6;
      font-family: "Oswald", sans-serif;
      font-weight: 400;
      text-align: left; }
    .anchor-menu__item:last-of-type {
      border-radius: 0 0 0 4rem; }
    @media only screen and (min-width: 1140px) {
      .anchor-menu__item {
        width: 42rem;
        height: 16rem;
        justify-content: center;
        align-items: center;
        padding-right: 8rem;
        padding-left: 3.5rem; }
        .anchor-menu__item span {
          margin-top: 1.5rem;
          font-size: 3.2rem;
          line-height: 1.25; }
        .anchor-menu__item:last-of-type {
          border-radius: 0 0 0 0; }
        .anchor-menu__item:first-of-type {
          border-radius: 0 0 0 4rem; } }
    @media only screen and (min-width: 1200px) {
      .anchor-menu__item {
        padding-right: 10rem; } }
    .anchor-menu__item:after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      width: 3.4rem;
      transform: translateX(100%); }
      @media only screen and (min-width: 660px) {
        .anchor-menu__item:after {
          display: none; } }
  .anchor-menu__item-icon {
    height: 100%;
    width: 6rem;
    margin-right: 3rem;
    z-index: 25;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }
    @media only screen and (min-width: 1140px) {
      .anchor-menu__item-icon {
        width: 11rem; } }
  .anchor-menu__item-arrow {
    position: absolute;
    height: 2.4rem;
    bottom: 2rem;
    right: 0rem; }
    @media only screen and (min-width: 660px) {
      .anchor-menu__item-arrow {
        right: 2rem;
        bottom: 4rem; } }
  .anchor-menu__item--highlight {
    background-color: #9b1441;
    transition: background-color .2s; }
    .anchor-menu__item--highlight:after {
      background-color: #9b1441; }
    .anchor-menu__item--highlight:hover {
      background-color: #af1f4f; }
  .anchor-menu__item--grey {
    background-color: #171610;
    transition: background-color .2s; }
    .anchor-menu__item--grey:after {
      background-color: #171610; }
    .anchor-menu__item--grey:hover {
      background-color: #696b68; }

.text-block {
  max-width: 73rem; }
  @media only screen and (min-width: 660px) {
    .text-block {
      grid-auto-flow: column;
      grid-auto-columns: 1fr; } }

.text-block--no-gap {
  grid-gap: 0;
  gap: 0; }
  @media only screen and (min-width: 660px) {
    .text-block--no-gap {
      grid-gap: 4rem;
      gap: 4rem; } }

.image-text-stripe {
  background-color: #fcf5e6; }
  @media only screen and (min-width: 660px) {
    .image-text-stripe {
      display: flex;
      height: auto;
      min-height: 500px;
      position: relative; } }
  .image-text-stripe__content {
    padding: 7.5rem 3.4rem; }
    @media only screen and (min-width: 660px) {
      .image-text-stripe__content {
        padding: 6rem 6rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        flex: 1; } }
  .image-text-stripe__text {
    max-width: 60rem; }
  .image-text-stripe__image-container {
    position: relative; }
    @media only screen and (min-width: 660px) {
      .image-text-stripe__image-container {
        width: 45%; } }
  .image-text-stripe__image {
    width: 100%;
    display: block; }
    @media only screen and (min-width: 660px) {
      .image-text-stripe__image {
        height: 100%;
        object-fit: cover; } }

.image-text-teaser-big {
  overflow: hidden;
  display: block;
  position: relative;
  background-color: #fcf5e6; }
  @media only screen and (min-width: 660px) {
    .image-text-teaser-big {
      align-self: stretch;
      display: flex;
      flex-direction: column; } }
  .image-text-teaser-big__image {
    width: 100%;
    margin: 0;
    height: 40vw;
    z-index: 100;
    position: relative; }
    @media only screen and (min-width: 660px) {
      .image-text-teaser-big__image {
        height: 24vw;
        max-height: 25.2rem; } }
    .image-text-teaser-big__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      margin: 0;
      display: block; }
  .image-text-teaser-big__content {
    padding: 2.5rem 0rem;
    z-index: 100;
    position: relative; }
    @media only screen and (min-width: 660px) {
      .image-text-teaser-big__content {
        padding-top: 4rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start; } }
  .image-text-teaser-big__heading {
    margin-bottom: 1.4rem;
    font-weight: 700;
    font-size: 2.4rem; }
  @media only screen and (min-width: 660px) {
    .image-text-teaser-big__button {
      margin-top: 2rem;
      display: block; } }

.image-text-teaser-small {
  display: block;
  border-radius: 4rem;
  overflow: hidden;
  position: relative;
  background-color: #fcf5e6;
  position: relative; }
  .image-text-teaser-small::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #9b1441;
    border-radius: 100%;
    width: 0;
    height: 0;
    transform: translateX(-50%) translateY(50%);
    transition: all .4s;
    animation-timing-function: ease; }
  .image-text-teaser-small:hover::after {
    width: 300%;
    height: 300%; }
  @media only screen and (min-width: 660px) {
    .image-text-teaser-small {
      align-self: stretch;
      display: flex;
      flex-direction: column; } }
  .image-text-teaser-small__image {
    width: 100%;
    margin: 0;
    height: 35vw;
    z-index: 10;
    position: relative; }
    @media only screen and (min-width: 660px) {
      .image-text-teaser-small__image {
        height: 20vw;
        max-height: 24rem; } }
    .image-text-teaser-small__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      margin: 0;
      display: block; }
  .image-text-teaser-small__content {
    z-index: 10;
    position: relative;
    padding: 2.5rem 2rem; }
    @media only screen and (min-width: 660px) {
      .image-text-teaser-small__content {
        padding: 3rem;
        padding-top: 4rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start; } }
  .image-text-teaser-small__heading {
    font-size: 2.4rem;
    margin-bottom: 1.2rem; }
  .image-text-teaser-small__text {
    margin-bottom: 1rem; }
    @media only screen and (min-width: 660px) {
      .image-text-teaser-small__text {
        margin-bottom: 3rem; } }
  @media only screen and (min-width: 660px) {
    .image-text-teaser-small__button {
      margin-top: auto;
      display: block; } }
  .image-text-teaser-small:hover .image-text-teaser-small__content {
    transition: all .2s; }
  .image-text-teaser-small:hover .image-text-teaser-small__text {
    color: #fcf5e6;
    transition: all .2s; }
  .image-text-teaser-small:hover .image-text-teaser-small__heading {
    color: #fcf5e6;
    transition: all .2s; }
  .image-text-teaser-small:hover .image-text-teaser-small__button {
    background-color: #fcf5e6;
    color: #9b1441; }

.image-text-kombi {
  background-color: #fcf5e6; }
  @media only screen and (min-width: 660px) {
    .image-text-kombi {
      display: flex;
      height: 44vw;
      max-height: 50rem; } }
  .image-text-kombi__heading {
    color: #fcf5e6;
    margin-bottom: 2rem;
    z-index: 50;
    position: relative; }
  .image-text-kombi__content {
    padding: 4rem 3.4rem;
    color: #fcf5e6;
    position: relative; }
    @media only screen and (min-width: 660px) {
      .image-text-kombi__content {
        padding: 7.5rem 6rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 50%; } }
  .image-text-kombi__pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .image-text-kombi__text {
    max-width: 60rem;
    margin-bottom: 1rem;
    z-index: 50;
    position: relative; }
  .image-text-kombi .button {
    z-index: 50; }
  .image-text-kombi__image {
    height: 60vw; }
    @media only screen and (min-width: 660px) {
      .image-text-kombi__image {
        height: 100%;
        width: 50%;
        align-self: stretch; } }
    .image-text-kombi__image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
      @media only screen and (min-width: 660px) {
        .image-text-kombi__image img {
          height: 100%;
          object-fit: cover; } }

@media only screen and (min-width: 660px) {
  .image-text-kombi--right {
    flex-direction: row-reverse; } }

.image-text-kombi--highlight .image-text-kombi__content {
  background-color: #9b1441; }

.image-text-kombi--dark-grey .image-text-kombi__content {
  background-color: #d9d9d9;
  color: black; }

.image-text-kombi--dark-grey .image-text-kombi__heading {
  color: black; }

.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fcf5e6;
  padding: 4rem;
  box-shadow: 0px -6px 5px 0px rgba(0, 0, 0, 0.05) !important;
  z-index: 400;
  display: none; }
  .cookie-modal__button-row .button {
    display: block;
    width: 100%; }
  @media only screen and (min-width: 660px) {
    .cookie-modal__button-row {
      display: flex; }
      .cookie-modal__button-row .button {
        width: auto; }
      .cookie-modal__button-row .button:first-child {
        margin-right: 2rem; } }

.lightboxOverlay::after {
  content: "";
  position: fixed;
  top: 5rem;
  right: 5rem;
  background-image: url("./../../ressources/media/icons/close.png");
  height: 2.4rem;
  width: 2.4rem;
  background-size: contain;
  cursor: pointer; }

.lb-dataContainer {
  position: fixed !important;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: none !important; }

.lb-image {
  max-width: 100vw !important;
  object-fit: cover; }

.lightbox {
  top: 50% !important;
  position: fixed !important;
  transform: translateY(-50%);
  max-width: 100vw; }

.lb-nav {
  width: 100%;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0 30px; }

.lb-nav a {
  opacity: 1 !important; }

.lb-nav a.lb-prev {
  background-size: 50px 50px;
  background-position: center left !important; }

.lb-nav a.lb-next {
  transition: all 0s !important;
  background-size: 50px 50px;
  background-position: center right !important; }

.lb-outerContainer {
  position: initial; }

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: inherit;
  width: 24rem; }

.custom-select select {
  display: none;
  /*hide original SELECT element: */ }

.custom-select--no-placeholder {
  color: black !important; }

.select-selected {
  width: 100%;
  padding: 1.5rem;
  padding-right: 0;
  font-family: inherit;
  font-size: inherit;
  color: #171610;
  cursor: pointer;
  font-weight: 300;
  background-color: #f8f8f8; }

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  background-color: #9b1441;
  height: 10px;
  width: 22px;
  right: 1.4rem;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  -webkit-mask-image: url(./../../ressources/media/icons/ic-cta-arrow-akkordeon.svg);
  -webkit-mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./../../ressources/media/icons/ic-cta-arrow-akkordeon.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  mask-position: center; }

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  transform: rotate(180deg) translateY(50%); }

/* style the items (options), including the selected item: */
.select-items div {
  font-size: inherit;
  color: black;
  font-weight: 300;
  padding: 8px 16px;
  border: 1px solid transparent;
  cursor: pointer; }

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: #fcf5e6;
  border: 1px solid #f8f8f8;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99; }

/* Hide the items when the select box is closed: */
.select-hide {
  display: none; }

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1); }

.custom-select--filter {
  border: 1px solid #9b1441; }
  .custom-select--filter .select-items {
    border: 1px solid #9b1441; }
  .custom-select--filter .select-items div:hover, .custom-select--filter .same-as-selected {
    background-color: white;
    position: relative; }
    .custom-select--filter .select-items div:hover::before, .custom-select--filter .same-as-selected::before {
      content: "";
      position: absolute;
      top: 5px;
      left: 0;
      width: 4px;
      height: 26px;
      background-color: #9b1441; }

@media only screen and (min-width: 660px) {
  .card-stripe {
    display: flex; } }

.card-stripe__card {
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 4rem;
  position: relative;
  flex: 1;
  transition: transform .2s ease-in;
  transform-origin: bottom; }
  @media only screen and (min-width: 660px) {
    .card-stripe__card {
      height: 70rem; } }

.card-stripe__card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #181818;
  mix-blend-mode: multiply;
  opacity: .8;
  transition: opacity .3s ease-in; }

.card-stripe__card-content {
  z-index: 5;
  position: relative; }

.card-stripe__card-icon {
  height: 6rem; }

.card-stripe__card-heading {
  color: #fcf5e6; }

.card-stripe__card-text {
  opacity: 0;
  max-height: 0;
  transition: all .3s ease-in;
  color: #fcf5e6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.61); }

.card-stripe__card-sub-heading {
  font-weight: 400;
  color: #9b1441;
  font-size: 2.1rem;
  opacity: 1;
  transform: translateY(0);
  transition: all .3s ease-in; }

.card-stripe__card-more {
  background-color: #9b1441;
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  height: 6rem;
  width: 6rem;
  border-radius: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(-5px);
  transition: all .2s ease-in; }

.card-stripe__card-more-icon {
  background-color: #fcf5e6;
  -webkit-mask-image: url(./../../ressources/media/icons/standard/icon-arrow.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(./../../ressources/media/icons/standard/icon-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  width: 3rem;
  height: 3rem; }

.card-stripe__card:hover {
  transform: scale(1.03);
  z-index: 30; }
  .card-stripe__card:hover .card-stripe__card-overlay {
    opacity: .2; }
  .card-stripe__card:hover .card-stripe__card-text {
    max-height: 500px;
    opacity: 1; }
  .card-stripe__card:hover .card-stripe__card-sub-heading {
    transform: translateY(20px);
    opacity: 0; }
  .card-stripe__card:hover .card-stripe__card-more {
    opacity: 1;
    transform: translateX(0); }

.quote-stripe__outside {
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: center;
  position: relative;
  max-width: 1600px;
  margin: 0 auto; }
  .quote-stripe__outside::before {
    content: "";
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 30rem;
    height: 24rem;
    background-image: url(./../../ressources/media/icons/kranade-grafik-zitat-links.svg);
    background-repeat: no-repeat; }
    @media only screen and (max-width: 960px) {
      .quote-stripe__outside::before {
        display: none; } }
  .quote-stripe__outside::after {
    content: "";
    position: absolute;
    right: 0%;
    top: 0;
    width: 30rem;
    height: 34rem;
    background-image: url(./../../ressources/media/icons/kranade-grafik-zitat-rechts.svg);
    background-repeat: no-repeat;
    background-size: contain; }
    @media only screen and (max-width: 900px) {
      .quote-stripe__outside::after {
        background-image: url(./../../ressources/media/icons/Kranade-Grafik-Zitat-mobile.svg);
        height: 90%;
        width: 13rem; } }

.quote-stripe {
  color: #fcf5e6;
  padding-top: 10rem;
  padding-bottom: 10rem;
  max-width: 100rem;
  margin: 0 auto; }
  .quote-stripe__quote {
    max-width: 50vw; }
    @media only screen and (max-width: 960px) {
      .quote-stripe__quote {
        max-width: 100%; } }
    .quote-stripe__quote p {
      font-size: 4.6rem;
      font-weight: 700;
      max-width: 76rem;
      line-height: 1.21; }
      @media only screen and (max-width: 960px) {
        .quote-stripe__quote p {
          font-size: 3.6rem; } }
  .quote-stripe__author {
    font-size: 3rem;
    margin-top: 2rem; }
  @media only screen and (max-width: 960px) {
    .quote-stripe {
      padding: 12rem 2rem; } }

.ingridient-block {
  margin: 0 auto;
  margin-top: 6rem; }
  @media only screen and (min-width: 660px) {
    .ingridient-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      padding-top: 18rem;
      padding-bottom: 16rem;
      overflow: hidden;
      max-width: 1600px; } }
  @media only screen and (min-width: 960px) {
    .ingridient-block {
      padding-top: 26rem;
      padding-bottom: 6rem; } }
  @media only screen and (min-width: 1600px) {
    .ingridient-block {
      overflow: visible; } }
  .ingridient-block__left {
    position: relative;
    height: 44rem;
    width: 100%;
    overflow: hidden; }
    @media only screen and (min-width: 660px) {
      .ingridient-block__left {
        position: unset; } }
  .ingridient-block__text {
    max-width: 40rem; }
  .ingridient-block__cta {
    display: none;
    position: absolute; }
    .ingridient-block__cta img {
      width: 8rem; }
    .ingridient-block__cta button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateX(-50%) translateY(-50%);
      height: 4rem;
      width: 4rem;
      background-size: contain;
      background-repeat: no-repeat;
      cursor: pointer;
      padding: 0;
      z-index: 99; }
      .ingridient-block__cta button img {
        height: 100%;
        width: 100%; }
    .ingridient-block__cta--1 {
      display: block;
      left: -4rem; }
      .ingridient-block__cta--1 img {
        width: 16rem; }
      @media only screen and (min-width: 660px) {
        .ingridient-block__cta--1 {
          left: -6rem; }
          .ingridient-block__cta--1 img {
            width: 20vw;
            max-width: 30rem; } }
      .ingridient-block__cta--1 button {
        left: 45%; }
    .ingridient-block__cta--2 {
      display: block;
      right: -4rem; }
      .ingridient-block__cta--2 img {
        width: 32rem; }
      @media only screen and (min-width: 660px) {
        .ingridient-block__cta--2 {
          top: 0; }
          .ingridient-block__cta--2 img {
            width: 45vw;
            max-width: 60rem; } }
      .ingridient-block__cta--2 button {
        left: 30%; }
    .ingridient-block__cta--3 {
      display: block;
      left: 2rem;
      bottom: -5rem; }
      .ingridient-block__cta--3 img {
        width: 20rem; }
      .ingridient-block__cta--3 .ingridient-block__rectangle {
        width: 40rem;
        transform: translateY(-8rem) translateX(-16rem);
        position: relative;
        z-index: -1; }
      .ingridient-block__cta--3 button {
        left: 10%;
        top: 67%; }
      @media only screen and (min-width: 660px) {
        .ingridient-block__cta--3 {
          left: 10%;
          bottom: 5rem; }
          .ingridient-block__cta--3 img {
            width: 26vw;
            max-width: 40rem; }
          .ingridient-block__cta--3 .ingridient-block__rectangle {
            width: 40vw;
            max-width: 80rem;
            transform: translateY(0rem) translateX(-95%); }
          .ingridient-block__cta--3 button {
            left: 10%;
            top: 80%; } }
    .ingridient-block__cta--4 {
      display: block;
      right: 1rem;
      bottom: 0; }
      .ingridient-block__cta--4 img {
        width: 22rem; }
      @media only screen and (min-width: 660px) {
        .ingridient-block__cta--4 {
          display: block;
          right: -14rem;
          bottom: 0rem; }
          .ingridient-block__cta--4 img {
            width: 32rem; } }
      @media only screen and (min-width: 960px) {
        .ingridient-block__cta--4 {
          display: block;
          right: -4rem;
          bottom: 2rem; }
          .ingridient-block__cta--4 img {
            width: 32rem; } }
  .ingridient-block__right {
    padding: 2rem;
    margin-top: 4rem; }
    @media only screen and (min-width: 660px) {
      .ingridient-block__right {
        max-width: 55rem; } }
  .ingridient-block__ingridients {
    margin-bottom: 2rem; }
  .ingridient-block__naehrwert-tabelle {
    border-spacing: 0px;
    text-align: left;
    width: 100%;
    margin-bottom: 2rem; }
    .ingridient-block__naehrwert-tabelle td, .ingridient-block__naehrwert-tabelle th {
      white-space: nowrap;
      padding: 1rem 0; }
  .ingridient-block tbody td, .ingridient-block tbody th {
    border-top: 2px solid black;
    margin: 0; }

.ingridient-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.795);
  z-index: 380;
  display: none; }

.ingridient-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 80%;
  max-width: 80rem;
  background-color: #fcf5e6;
  z-index: 385;
  display: none; }
  .ingridient-modal__container {
    position: relative;
    padding: 4rem 4rem;
    width: 100%;
    height: 100%; }
    @media only screen and (min-width: 660px) {
      .ingridient-modal__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 6rem 8rem; } }
  .ingridient-modal__close {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%) translateX(50%); }
  .ingridient-modal__img {
    width: 24rem; }
  .ingridient-modal__text h3 {
    font-weight: 700;
    font-size: 2.6rem;
    margin-bottom: 1.7rem; }

.rezept-slider {
  max-width: 100%;
  overflow: hidden !important;
  margin-top: 4rem; }
  .rezept-slider__item {
    height: 40vw;
    background-size: cover;
    background-position: center;
    width: 40vw;
    max-width: 60rem;
    max-height: 48rem;
    min-width: 27rem;
    min-height: 30rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    position: relative;
    cursor: pointer; }
    @media only screen and (max-width: 660px) {
      .rezept-slider__item {
        margin-left: 1rem;
        margin-right: 1rem; } }
  .rezept-slider__item-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.625088) 0%, rgba(0, 0, 0, 0) 100%); }
  .rezept-slider__item-label {
    position: absolute;
    left: 0;
    bottom: 8rem;
    padding: .8rem 1.2rem;
    background-color: #9b1441;
    color: #fcf5e6;
    font-family: "Oswald", sans-serif;
    font-size: 2rem;
    font-weight: 400; }
  .rezept-slider__item-heading {
    position: absolute;
    left: 0;
    bottom: 2rem;
    padding: .8rem 1.2rem;
    color: #fcf5e6;
    font-family: "Oswald", sans-serif;
    font-size: 2.6rem;
    font-weight: 400; }
  .rezept-slider__dots {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 7rem; }
    .rezept-slider__dots .slick-dots {
      transform: translateY(-4rem) translateX(-50%);
      width: 200px;
      left: 50%;
      bottom: unset; }
    .rezept-slider__dots .slick-dots li button::before {
      font-size: 20px;
      content: "";
      width: 1.5rem;
      height: 1.5rem;
      border-radius: 2rem;
      background-color: transparent;
      border: 2px solid black;
      opacity: 1; }
    .rezept-slider__dots .slick-dots li.slick-active button::before {
      background-color: #9b1441;
      border: none; }
  .rezept-slider__arrow {
    position: absolute;
    top: calc(50% - 4rem);
    transform: translateY(-50%);
    background-color: #9b1441;
    width: 5rem;
    height: 5rem;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.102); }
    @media only screen and (max-width: 660px) {
      .rezept-slider__arrow {
        display: none; } }
    .rezept-slider__arrow::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: #fcf5e6;
      -webkit-mask-image: url(./../../ressources/media/icons/icon-ankerlinks.svg);
      -webkit-mask-size: 50%;
      -webkit-mask-repeat: no-repeat;
      -webkit-mask-position: center;
      mask-image: url(./../../ressources/media/icons/icon-ankerlinks.svg);
      mask-size: 50%;
      mask-repeat: no-repeat;
      mask-position: center; }
    .rezept-slider__arrow--prev {
      left: 0; }
      .rezept-slider__arrow--prev::after {
        transform: rotate(90deg); }
    .rezept-slider__arrow--next {
      right: 0; }
      .rezept-slider__arrow--next::after {
        transform: rotate(-90deg); }

.partner-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  row-gap: 4rem; }
  @media only screen and (min-width: 660px) {
    .partner-teaser {
      gap: 4rem; } }
  .partner-teaser__visual {
    border: 2px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15rem;
    position: relative; }
    .partner-teaser__visual img {
      width: 100%;
      max-width: 30rem; }
    @media only screen and (min-width: 660px) {
      .partner-teaser__visual {
        height: 30vw;
        max-height: 22rem;
        pointer-events: none;
        cursor: default; } }
    .partner-teaser__visual::after {
      content: "";
      position: absolute;
      bottom: .5rem;
      left: 50%;
      transform: translateX(-50%);
      background-image: url(./../../ressources/media/icons/icon-ankerlinks.svg);
      width: 2.4rem;
      height: 2rem;
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat; }
      @media only screen and (min-width: 660px) {
        .partner-teaser__visual::after {
          display: none; } }
  .partner-teaser__content {
    grid-column: 1 / 3; }
    @media only screen and (min-width: 660px) {
      .partner-teaser__content {
        grid-column: span 1; } }
  .partner-teaser__heading {
    margin-bottom: 1.4rem;
    font-weight: 700;
    font-size: 2.4rem; }

.kontakt-block {
  margin-bottom: 8rem; }
  @media only screen and (min-width: 660px) {
    .kontakt-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      align-items: center;
      max-width: 1600px;
      margin: 0 auto;
      margin-top: 12rem;
      margin-bottom: 12rem; } }
  .kontakt-block__visual {
    margin-bottom: 2rem; }
    .kontakt-block__visual img {
      width: 100%; }
  @media only screen and (min-width: 660px) {
    .kontakt-block__content {
      margin-top: 16rem;
      max-width: 70rem; } }
  .kontakt-block__adresse-grid {
    margin-top: 4rem;
    gap: 2rem; }
    @media only screen and (min-width: 660px) {
      .kontakt-block__adresse-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; } }

.rezept-modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.795);
  z-index: 380;
  display: none; }

.rezept-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 95%;
  max-width: 80rem;
  background-color: #fcf5e6;
  z-index: 385;
  display: none; }
  .rezept-modal__container {
    position: relative;
    padding: 4rem 2rem;
    width: 100%;
    height: 100%; }
    @media only screen and (min-width: 660px) {
      .rezept-modal__container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding: 6rem 8rem; } }
  .rezept-modal__close {
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%) translateX(30%); }
    @media only screen and (min-width: 660px) {
      .rezept-modal__close {
        transform: translateY(-50%) translateX(50%); } }
    @media only screen and (max-width: 320px) {
      .rezept-modal__close {
        transform: translateY(-30%) translateX(30%); } }
  .rezept-modal__img {
    width: 24rem;
    max-height: 20rem;
    object-fit: contain;
    object-position: left;
    margin-bottom: 10px; }
    @media only screen and (min-width: 660px) {
      .rezept-modal__img {
        width: 24rem;
        object-position: center;
        max-height: 30rem;
        margin-bottom: 0px; } }
    @media only screen and (max-width: 320px) {
      .rezept-modal__img {
        max-height: 16rem; } }
  .rezept-modal__text {
    font-size: 14px; }
    @media only screen and (min-width: 660px) {
      .rezept-modal__text {
        font-size: unset; } }
    .rezept-modal__text h3 {
      font-weight: 700;
      font-size: 2.3rem;
      margin-bottom: 1.7rem; }
      @media only screen and (min-width: 660px) {
        .rezept-modal__text h3 {
          font-size: 2.6rem; } }
      @media only screen and (max-width: 320px) {
        .rezept-modal__text h3 {
          margin-bottom: 8px; } }
    .rezept-modal__text ul {
      margin: 0;
      padding-left: 20px; }
