@charset "UTF-8";

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 18px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-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: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

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

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -9px;
}

.hamburger-inner::after {
  bottom: -9px;
}

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

.hamburger--3dx .hamburger-inner {
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  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);
  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),
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

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

.hamburger--3dx-r .hamburger-inner {
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  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);
  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),
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

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

.hamburger--3dy .hamburger-inner {
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  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);
  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),
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

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

.hamburger--3dy-r .hamburger-inner {
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  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);
  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),
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

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

.hamburger--3dxy .hamburger-inner {
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  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);
  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),
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg) rotateY(180deg);
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

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

.hamburger--3dxy-r .hamburger-inner {
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1),
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  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);
  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),
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

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

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
  transform: translate3d(0, -9px, 0) rotate(-45deg);
}

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

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

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

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

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

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

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

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(-6px, 7.5px, 0) rotate(45deg) scale(0.7, 1);
  transform: translate3d(-6px, 7.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease,
    -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),
    -webkit-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,
    -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-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,
    -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease,
    transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(6px, -7.5px, 0) rotate(45deg) scale(0.7, 1);
  transform: translate3d(6px, -7.5px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease,
    -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),
    -webkit-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;
  -webkit-transform: translate3d(6px, 7.5px, 0) rotate(-45deg) scale(0.7, 1);
  transform: translate3d(6px, 7.5px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease,
    -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease,
    transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22),
    -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

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

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
  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 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

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

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  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: -18px;
  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),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  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);
  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),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
  transform: translate3d(0, -9px, 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;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  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);
  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),
    -webkit-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: -18px;
  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),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  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);
  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),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -9px, 0) rotate(45deg);
  transform: translate3d(0, -9px, 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;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  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);
  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),
    -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 9px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 18px;
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 9px, 0) rotate(135deg);
  transform: translate3d(0, 9px, 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 {
  -webkit-transform: translate3d(0, -18px, 0) rotate(-270deg);
  transform: translate3d(0, -18px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1.5px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 9px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 18px;
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 9px, 0) rotate(-135deg);
  transform: translate3d(0, 9px, 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 {
  -webkit-transform: translate3d(0, -18px, 0) rotate(270deg);
  transform: translate3d(0, -18px, 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: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  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;
  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,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic .hamburger-inner::after {
  top: 9px;
  right: 0;
  transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  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;
  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,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.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: -60px;
  top: -60px;
  -webkit-transform: translate3d(60px, 60px, 0) rotate(45deg);
  transform: translate3d(60px, 60px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear,
    -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  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);
  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),
    -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -60px;
  top: -60px;
  -webkit-transform: translate3d(-60px, 60px, 0) rotate(-45deg);
  transform: translate3d(-60px, 60px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear,
    -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  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);
  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),
    -webkit-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: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  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;
  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,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 9px;
  right: 0;
  transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  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;
  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,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.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: -60px;
  top: 60px;
  -webkit-transform: translate3d(60px, -60px, 0) rotate(-45deg);
  transform: translate3d(60px, -60px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear,
    -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  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);
  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),
    -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -60px;
  top: 60px;
  -webkit-transform: translate3d(-60px, -60px, 0) rotate(45deg);
  transform: translate3d(-60px, -60px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear,
    -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  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);
  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),
    -webkit-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: 1.5px;
}

.hamburger--slider .hamburger-inner::before {
  top: 9px;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 18px;
}

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
  transform: translate3d(0, 9px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-4.2857142857px, -6px, 0);
  transform: rotate(-45deg) translate3d(-4.2857142857px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -18px, 0) rotate(-90deg);
  transform: translate3d(0, -18px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1.5px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 9px;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 18px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 9px, 0) rotate(-45deg);
  transform: translate3d(0, 9px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  -webkit-transform: rotate(45deg) translate3d(4.2857142857px, -6px, 0);
  transform: rotate(45deg) translate3d(4.2857142857px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -18px, 0) rotate(90deg);
  transform: translate3d(0, -18px, 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,
    -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
  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;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out,
    -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-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,
    -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-225deg);
  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;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out,
    -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1.5px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 9px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  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);
  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),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 18px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  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);
  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),
    -webkit-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),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  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);
  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),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
  transform: translate3d(0, 9px, 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),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  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);
  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),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 9px, 0) rotate(-45deg);
  transform: translate3d(0, 9px, 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: -18px;
  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),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  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);
  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),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -9px, 0) rotate(-45deg);
  transform: translate3d(0, -9px, 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;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  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);
  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),
    -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in,
    -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-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,
    -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: background-color 0s 0.15s linear,
    -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1),
    background-color 0s 0.15s linear,
    -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out,
    -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out,
    -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in,
    -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-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,
    -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in,
    transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

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

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out,
    -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out,
    -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out,
    transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-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,
    -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease,
    transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.12s ease,
    transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
  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;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: bottom 0.075s ease,
    -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease,
    transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s ease,
    transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-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, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  -webkit-transform: rotate(765deg);
  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;
  -webkit-transform: rotate(90deg);
  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, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-765deg);
  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;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/*
 * +-------------------------------------------------------------------------+
 * |                                                                         |
 * |   ___ _______           ___ __    __       __ __ __                     |
 * |  |.  |   _   .--.--.--.'  _|__.--|  .-----|  |__|  |_.--.--.            |
 * |   |  |.  |   |  |  |  |   _|  |  _  |  -__|  |  |   _|  |  |            |
 * |   |__|.  |   |________|__| |__|_____|_____|__|__|____|___  |            |
 * |      |:  1   |                                       |_____|            |
 * |      |::.. . |    lowfidelity.at                                        |
 * |      '-------'                                                          |
 * |                                                                         |
 * | 2020, lowfidelity - Heavy Industries OG                                 |
 * |                                                                         |
 * +-------------------------------------------------------------------------+
 * | Author: Daniel Weidacher <dw@lowfidelity.at>
 * | Website: https://www.lowfidelity.at/
 * |
 * | File: _typography.scss
 * | Created:  Sep 15th 2020, 7:55
 * |
 * +-------------------------------------------------------------------------+
 */
html,
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  letter-spacing: 0.025em;
  color: #000;
  background: #fff;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  html,
  body {
    font-size: 14px;
  }
}

.h1,
h1 {
  font-family: "Poppins", sans-serif;
  font-size: 4.25rem;
  line-height: 1em;
  font-weight: 600;
  overflow-wrap: break-word;
}

@media screen and (min-width: 0px) and (max-width: 860px) {
  .h1,
  h1 {
    word-break: break-word;
    font-size: 2.7rem;
  }
}

.h2,
h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.375rem;
  line-height: 1.31em;
  font-weight: 600;
  overflow-wrap: break-word;
}

@media screen and (min-width: 0px) and (max-width: 860px) {
  .h2,
  h2 {
    word-break: break-word;
    font-size: 2rem;
  }
}

.h3,
h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.28rem;
  line-height: 1.33em;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.7em;
}

h4,
.h4 {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  line-height: 1.15em;
  font-weight: 500;
  letter-spacing: 0em;
  text-transform: uppercase;
}

h5,
.h5 {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  line-height: 1.15em;
  font-weight: 600;
}

h6,
.h6 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.15em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

h4.subtitle {
  margin-bottom: 0.5rem;
  margin-top: 0;
  opacity: 0.9;
}

a {
  color: #000;
  outline: none;
}

a:hover {
  color: #000;
}

a:active {
  color: #000;
}

a[href^="tel:"],
a[href^="mailto:"] {
  white-space: nowrap;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
}

p {
  line-height: 1.72em;
  word-break: break-word;
}

p a {
  text-decoration: underline;
}

strong,
b {
  font-weight: 600;
}

q,
.blockquote,
blockquote {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.85em;
  line-height: 1.23em;
  font-style: italic;
  font-weight: 400;
}

q:before,
.blockquote:before,
blockquote:before {
  content: "„";
}

q:after,
.blockquote:after,
blockquote:after {
  content: "“";
}

q > p,
.blockquote > p,
blockquote > p {
  display: inline;
  line-height: 1.2em;
}

@media screen and (min-width: 860px) and (max-width: 1180px) {
  q,
  .blockquote,
  blockquote {
    font-size: 2.4em;
  }
}

@media screen and (min-width: 1180px) and (max-width: 8880px) {
  q,
  .blockquote,
  blockquote {
    font-size: 2.8em;
  }
}

.field--kurzbeschreibung ul:not(.menu),
.field--text ul:not(.menu),
.field--body ul:not(.menu) {
  padding-left: 0;
}

.field--kurzbeschreibung ul:not(.menu) li,
.field--text ul:not(.menu) li,
.field--body ul:not(.menu) li {
  list-style: none;
  position: relative;
  padding-left: 2rem;
  padding-bottom: 0.75rem;
}

.field--kurzbeschreibung ul:not(.menu) li:before,
.field--text ul:not(.menu) li:before,
.field--body ul:not(.menu) li:before {
  content: "";
  display: inline-block;
  background-image: url(../resources/dist/icons/li.svg);
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  position: absolute;
  left: 0;
}

.label.inline {
  display: inline-block;
  vertical-align: top;
}

.label.inline:after {
  content: ": ";
}

.label.inline + div {
  display: inline-block;
  vertical-align: top;
}

article ul.links.inline a,
.more-link a,
.button,
.sliding-popup-bottom button.agree-button,
form input[type="submit"],
button,
input[type="submit"] {
  font-family: "Poppins", sans-serif;
  padding: 1rem 2rem;
  border: 0 none;
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  line-height: 1.8em;
  text-transform: none;
  font-weight: 600;
  background: #23a2af;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: 0.02em;
  outline: none;
  text-align: center;
  /*@include breakpoint($mobile_small) {
    padding: 1rem 1rem;
    font-size: 14px;
    margin: 0;
    margin-left: 0.5em;
    margin-right: 0.5em;
  }*/
}

article ul.links.inline a:hover,
article ul.links.inline a:focus,
.more-link a:hover,
.more-link a:focus,
.button:hover,
.sliding-popup-bottom button.agree-button:hover,
.button:focus,
.sliding-popup-bottom button.agree-button:focus,
button:hover,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  background: #1b7b85;
  color: #fff;
}

article ul.links.inline a.light,
.more-link a.light,
.button.light,
.sliding-popup-bottom button.light.agree-button,
button.light,
input[type="submit"].light {
  background-color: #f3f3f3;
  color: #000;
}

article ul.links.inline a.light:hover,
article ul.links.inline a.light:focus,
.more-link a.light:hover,
.more-link a.light:focus,
.button.light:hover,
.button.light:focus,
button.light:hover,
button.light:focus,
input[type="submit"].light:hover,
input[type="submit"].light:focus {
  background-color: #23a2af;
  color: #fff;
}

input[type="submit"] {
  line-height: 1.3em;
}

.button--inline {
  display: inline-block;
  margin-bottom: 1em;
  margin-right: 0.425em;
}

small button,
small .button,
small .sliding-popup-bottom button.agree-button,
.sliding-popup-bottom small button.agree-button,
small form input[type="submit"],
form small input[type="submit"] {
  padding: 0.55em;
  font-size: 0.9em;
  display: inline;
  border-radius: 0.4em;
}

.button.button-line,
.sliding-popup-bottom button.button-line.agree-button,
form input.button-line[type="submit"] {
  border: 3px solid;
  background-color: transparent;
  color: #394149;
}

.button.button-line:focus,
.sliding-popup-bottom button.button-line.agree-button:focus,
form input.button-line[type="submit"]:focus,
.button.button-line:hover,
.sliding-popup-bottom button.button-line.agree-button:hover,
form input.button-line[type="submit"]:hover {
  background-color: transparent;
  color: #23282c;
  border-color: #23282c;
}

ul.links.inline {
  padding: 0;
}

ul.links.inline li {
  display: inline-block;
  list-style: none;
  vertical-align: baseline;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

ul.links.inline li:last-child {
  margin-right: 0;
}

ul.links.inline li:before {
  display: none;
}

.block--menu > ul {
  padding: 0;
  margin: 0;
}

.block--menu > ul li {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.block--menu > ul li a {
  text-decoration: none;
}

.block--menu > ul li ul {
  position: absolute;
  display: none;
  width: 100%;
  box-shadow: 0 1px 18px -5px rgba(34, 38, 43, 0.05),
    2px 1px 10px -5px rgba(34, 38, 43, 0.15);
}

.block--menu > ul li ul li {
  display: block !important;
}

.block--menu > ul li ul li a {
  background-color: #fff;
  display: block;
}

.block--menu > ul li:hover > ul {
  display: block;
}

.block--menu > ul li a.menu__link--icon,
.menu__link--icon {
  padding: 0;
}

.block--menu > ul li a.menu__link--icon div,
.block--menu > ul li a.menu__link--icon span,
.menu__link--icon div,
.menu__link--icon span {
  display: inline-block;
  vertical-align: middle;
}

.block--menu > ul li a.menu__link--icon span,
.menu__link--icon span {
  padding-left: 1rem;
  padding-right: 1rem;
  line-height: 3em;
}

.button-small {
  padding: 0.315em 1em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-radius: 7px;
}

p > a.button {
  display: inline-block;
}

a.primary-link + .ajax-progress,
a.button + .ajax-progress {
  width: 1rem;
  height: 2.6rem;
  vertical-align: middle;
  padding: 0;
  position: absolute;
}

a.primary-link + .ajax-progress .throbber,
a.button + .ajax-progress .throbber {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../throbber.svg");
  background-size: 1rem auto;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

a.primary-link + .ajax-progress {
  right: -1rem;
  top: 50%;
  -webkit-transform: translate(0, -60%);
  transform: translate(0, -60%);
}

.contextual-region ul.contextual-links li a {
  padding: 0;
  border: 0 none;
}

figure {
  margin-left: auto;
  margin-right: auto;
}

figcaption {
  color: #1a1a1a;
  font-size: 0.8rem;
}

hr {
  border-color: #e2a87c;
}

h2.block-title {
  margin-top: 0;
}

p.highlight {
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.25em;
}

button.hamburger:hover,
button.hamburger:focus {
  background-color: transparent;
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  button.hamburger {
    margin-right: -0.5rem;
  }
}

ul.inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}

ul.inline li {
  list-style: none;
  margin-right: 0.5rem;
}

.cke_editable {
  padding: 1rem;
}

h4.subtitle + h1 {
  margin-top: 0;
}

html,
body {
  scroll-padding-top: calc(118px - 4px);
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  html,
  body {
    scroll-padding-top: calc(80px - 4px);
  }
}

.layout-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

/*#services ,
#about ,
#contact {
  display: block;
  position: relative;
  top: $navbar_height;
  visibility: hidden;
  @include breakpoint($mobile) {
    top: $navbar_height_mobile;
  }
}*/
main {
  /*padding-top: $navbar_height;*/
  -ms-flex: 1 auto;
  flex: 1 auto;
}

.main-header {
  /*background: linear-gradient(180deg , rgba($header-color, 0.8) 0%, rgba($header-color, 0) 100%);*/
  position: fixed;
  width: 100%;
  z-index: 9;
  transition: background-color 200ms linear;
}

.main-header.docked {
  background-color: #23a2af;
  box-shadow: 0 1px 18px -5px rgba(34, 38, 43, 0.15),
    2px 1px 10px -5px rgba(34, 38, 43, 0.25);
}

.main-footer > .inner,
.main-header > .inner {
  /*max-width: $content-width;*/
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

footer.main-footer {
  background-color: #22262b;
}

footer.main-footer a {
  color: #fff;
  text-decoration: none;
}

footer.main-footer a:hover,
footer.main-footer a:focus {
  color: #23a2af;
}

.node-content-container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.node-content-container .sidebar_layout {
  padding-left: 0;
  padding-right: 0;
}

.node-content-container.no-bottom-margin {
  padding-bottom: 0;
  margin-bottom: -0.75rem;
}

@media screen and (min-width: 1180px) and (max-width: 8880px) {
  .node-content-container {
    padding-left: 0;
    padding-right: 0;
  }
}

form details {
  padding: 1.4em 1.2em;
  background-color: white;
  border-radius: 0;
  border: 1px solid white;
}

form fieldset:not(.fieldgroup) {
  padding: 2rem;
  border: 0;
  min-width: 0;
  background-color: white;
  margin: 0;
  /*border-radius: $round-corner;
  border: 1px solid darken($bg-color-dark, 5%);
  */
  border-radius: 0;
  border: 0 none;
}

@media screen and (min-width: 1180px) and (max-width: 8880px) {
  form fieldset:not(.fieldgroup) {
    margin: 1em 0;
  }
}

form fieldset:not(.fieldgroup) fieldset {
  box-shadow: none;
  background-color: transparent;
  border: 0 none;
}

form fieldset:not(.fieldgroup) fieldset legend {
  margin: 0;
  padding-bottom: 3rem;
}

form fieldset:not(.fieldgroup) legend {
  padding-bottom: 2rem;
  font-size: 1em;
  margin-left: -1rem;
}

form fieldset:not(.fieldgroup) legend + .fieldset-wrapper {
  margin-top: -3rem;
}

form legend {
  /*display: contents;*/
}

form legend span {
  padding-bottom: 0.55em;
  display: inline-block;
  padding-top: 0.25em;
}

form .label,
form label:not(.option) {
  display: block;
  margin: 1em 0 0.5em 0;
  line-height: 1.25em;
  letter-spacing: 0.015em;
}

form .label-with-description {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}

form .label-with-description label:not(.option) {
  display: inline-block;
  vertical-align: middle;
  line-height: 2em;
  margin: 0;
}

form label.form-required:not(.option):after {
  content: " *";
  font-size: 0.9em;
  color: red;
}

form label.option.form-required:after {
  content: " *";
  font-size: 0.9em;
  color: red;
}

form .form-item {
  margin-bottom: 0.5em;
}

form .form-item-managed-file,
form textarea,
form select,
form input[type="text"],
form input[type="email"],
form input[type="search"],
form input[type="tel"],
form input[type="url"],
form input[type="password"],
form input[type="color"],
form input[type="file"],
form input[type="color"],
form input[type="number"],
form input[type="range"],
form input[type="date"],
form input[type="month"],
form input[type="week"],
form input[type="time"],
form input[type="datetime"],
form input[type="datetime-local"] {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  padding: 1.2rem 1rem;
  border: 0 none;
  outline: none;
  border: 1px solid #f3f3f3;
  border-radius: 7px;
  background-color: #f3f3f3;
  color: #000;
  font-size: 1em;
}

form textarea,
form input[type="text"],
form input[type="email"],
form input[type="search"],
form input[type="tel"],
form input[type="url"],
form input[type="password"],
form input[type="color"],
form input[type="file"],
form input[type="color"],
form input[type="number"],
form input[type="range"],
form input[type="date"],
form input[type="month"],
form input[type="week"],
form input[type="time"],
form input[type="datetime"],
form input[type="datetime-local"] {
  width: calc(100% - 1rem);
}

form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: get_icon("select", "dark");
  background-size: auto 0.5rem;
  background-position: calc(100% - 1em) center;
  background-repeat: no-repeat;
  min-width: 6em;
  padding-right: 3em;
}

form textarea {
  width: calc(100% - 1rem);
}

form input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}

form input[type="submit"][disabled="disabled"] {
  opacity: 0.4;
}

form .description {
  font-size: 0.65em;
  line-height: 1.2em;
  color: #0d0d0d;
  padding: 0;
  position: relative;
  margin-top: 0.5em;
  margin-bottom: 1em;
}

form .description a {
  color: #fff;
  text-decoration: underline;
}

form .description.description_toggle_display:before {
  content: "";
  font-size: 0.5em;
  border-bottom: 1em solid #23a2af;
  border-left: 1em solid transparent;
  border-right: 1em solid transparent;
  position: absolute;
  top: 0;
  -webkit-transform: translate(50%, -100%);
  transform: translate(50%, -100%);
}

form .description.description_toggle_display:not(.expanded) {
  display: none;
}

form label.option + .description.description_toggle_display:not(.expanded) {
  display: block;
  margin: 0;
  border-radius: 0;
  color: #000;
}

form
  label.option
  + .description.description_toggle_display:not(.expanded):before {
  display: none;
}

form .form-actions {
  margin-top: 1em;
  text-align: center;
}

form .field-suffix {
  font-size: 0.75em;
  display: inline-block;
  margin-top: 6px;
  padding-left: 1.4em;
}

form.confirmation .form-actions > * {
  display: inline-block;
  vertical-align: middle;
}

form .form-show-description {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  font-size: 0.65rem;
  border-radius: 100%;
  outline: none;
  padding: 0;
  vertical-align: top;
}

form .js-form-type-checkbox {
  position: relative;
  margin-bottom: 0.75em;
}

form .js-form-type-checkbox label {
  display: inline-block;
  padding: 0;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.2em;
}

form .js-form-type-checkbox label:before {
  content: "";
  width: 1em;
  height: 1em;
  border: 2px solid;
  position: absolute;
  left: 0;
  top: 2px;
  -webkit-transform: none;
  transform: none;
  background-size: 90% auto;
  background-position: center;
  background-repeat: no-repeat;
}

form .js-form-type-checkbox label + .description {
  margin-left: 0;
  padding-left: 1.75rem;
  margin-top: 4px;
  max-width: 600px;
  line-height: 1.2em;
}

form .js-form-type-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  bottom: 0;
  left: 50%;
}

form .js-form-type-checkbox input[type="checkbox"]:checked + label:before {
  background-color: #394149;
  border-color: #394149;
  content: "x";
  text-align: center;
  color: #fff;
  font-size: 12px;
  display: block;
  width: 1rem;
  height: 1rem;
  font-weight: bold;
  line-height: 13px;
}

form .js-form-type-checkbox .label-value > small {
  margin-top: 0.5em;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

form .js-form-type-checkbox .label-value > div {
  font-weight: bold;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

form .g-recaptcha > div {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1rem;
}

form .form-item-password-confirm > label:not(.option) {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  line-height: 1.15em;
  font-weight: 500;
  letter-spacing: 0em;
  text-transform: uppercase;
  padding-left: 0;
}

form .form-item-password-confirm .form-item {
  position: relative;
  display: block;
}

form .form-item-password-confirm .form-item input[type="password"] {
  width: calc(100% - 1rem);
}

form .form-item-password-confirm .password-suggestions {
  display: none !important;
}

form .form-item-password-confirm .js-password-confirm-message {
  text-indent: -9999px;
}

form .form-item-password-confirm .js-password-confirm-message > span {
  width: 1.5em;
  height: 1.5em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

form .form-item-password-confirm .password-strength {
  width: 100px;
  position: absolute;
  top: 28px;
  right: 0;
  display: none !important;
}

form .form-item-password-confirm .password-strength__title {
  float: left;
  display: inline-block;
  font-size: 10px;
  display: none;
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  form .field-group-tabs-wrapper details {
    padding: 2rem;
    border: 0 none;
    background-color: transparent;
    border-radius: 0;
  }

  form .field-group-tabs-wrapper details .step-button-container {
    display: none;
  }

  form .field-group-tabs-wrapper details summary {
    font-family: "Poppins", sans-serif;
    font-size: 1.28rem;
    line-height: 1.33em;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 0.7em;
    padding-top: 2rem;
    padding-bottom: 2rem;
    pointer-events: none;
    display: block;
  }

  form .field-group-tabs-wrapper details summary:focus::marker,
  form .field-group-tabs-wrapper details summary::marker {
    background: transparent;
    color: transparent;
    display: none;
  }

  form .field-group-tabs-wrapper .horizontal-tabs-list {
    display: none;
  }
}

@media screen and (min-width: 0px) and (max-width: 620px) {
  form .field-group-tabs-wrapper details {
    padding: 0;
  }
}

.vertical-tabs__menu-item a {
  font-size: 1em;
  padding: 1em;
  text-decoration: none !important;
}

.vertical-tabs__menu-item a > * {
  text-decoration: none !important;
}

.vertical-tabs__menu-item.is-selected {
  background-color: #23a2af;
}

.vertical-tabs__menu-item.is-selected .vertical-tabs__menu-item-title {
  color: #fff;
}

.views-exposed-form form select {
  width: 100%;
}

.webform-ajax-form-wrapper {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.icon {
  font-size: 0;
}

.icon:before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.icon--facebook:before {
  background-image: url(../resources/dist/icons/facebook.svg);
}

.icon--linkedin:before {
  background-image: url(../resources/dist/icons/linkedin.svg);
}

.icon--instagram:before {
  background-image: url(../resources/dist/icons/instagram.svg);
}

.icon--imdb:before {
  background-image: url(../resources/dist/icons/imdb.svg);
}

.icon--tiktok:before {
  background-image: url(../resources/dist/icons/tiktok.svg);
}

.icon--twitter:before {
  background-image: url(../resources/dist/icons/twitter.svg);
}

.icon-link {
  /*font-family: $heading-font-family;
  text-decoration: none;
  font-size: 1.14rem;
  line-height: 1.2em;
  color: $secondary-color;
  display: block;
  text-align: center;
  padding-left: $gutter/2;
  padding-right: $gutter/2;
  max-width: 120px;*/
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.icon-link:before {
  content: "";
  width: 2em;
  height: 2em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.2s ease;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}

.icon-link--imdb:before {
  background-image: url(../resources/dist/icons/imdb.svg);
}

.icon-link-list {
  padding: 0;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.icon-link-list li {
  list-style: none;
  padding: 0;
}

@media screen and (min-width: 0px) and (max-width: 860px) {
  .icon-link-list li {
    margin-top: 0;
    margin-bottom: 1rem;
  }
}

.icon-link-list li a {
  padding-left: 1rem;
  padding-right: 1rem;
  display: block;
  min-width: 20rem;
}

.content-link-modal {
  margin-left: 1rem;
  margin-right: 1rem;
  background-image: url(../resources/dist/icons/link.svg);
  background-size: 65% auto;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  display: none;
  border: 2px solid #fff;
}

.content-link-modal:hover {
  background-image: url(../resources/dist/icons/link.svg);
  background-size: 65% auto;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #23a2af;
  border-color: #1b7b85;
}

.ui-dialog .content-link-modal {
  display: block;
}

.region--header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  padding: 0;
  /*@include breakpoint($mobile) {
     padding-left: $gutter;
     padding-right: $gutter;
     height: 7rem;
   }*/
}

.region--header .block--systembrandingblock {
  padding: 1rem 0;
}

.region--header .block--systembrandingblock a[rel="home"] {
  display: block;
  padding: 0;
}

.region--header .block--systembrandingblock a[rel="home"] img {
  display: block;
  width: auto;
  height: 45px;
  max-height: 16.6666666667vh;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top left;
  object-position: top left;
  /*@include breakpoint($mobile) {
     padding-top: 1rem;
     padding-bottom: 1rem;
     height: 5rem;
   }*/
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  .region--header .block--systembrandingblock {
    padding: 1.25rem 0;
  }
}

.region--header .block--systemmenublock__main {
  position: relative;
}

.region--header .block--systemmenublock__main ul.menu {
  padding: 0;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
}

.region--header .block--systemmenublock__main ul.menu li {
  display: block;
  list-style: none;
  margin-bottom: 0;
  text-align: right;
  height: 100%;
  margin-left: 0;
  position: relative;
}

.region--header .block--systemmenublock__main ul.menu li .menu_expand {
  position: absolute;
  right: 0;
  top: 0;
  padding-top: 1.42rem;
  padding-bottom: 1.42rem;
  height: 63px;
  width: 63px;
  border-radius: 0;
  background-image: url(../resources/dist/icons/down.svg);
  background-size: 2rem auto;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(239, 239, 239, 0.4);
}

@media screen and (min-width: 1180px) and (max-width: 8880px) {
  .region--header .block--systemmenublock__main ul.menu li .menu_expand {
    display: none;
  }
}

.region--header
  .block--systemmenublock__main
  ul.menu
  li.mobile-expand
  .menu_expand {
  background-image: url(../resources/dist/icons/up.svg);
}

.region--header .block--systemmenublock__main ul.menu li > ul {
  display: none;
}

@media screen and (min-width: 1180px) and (max-width: 8880px) {
  .region--header .block--systemmenublock__main ul.menu li > ul {
    position: absolute;
    padding: 0;
    left: 0;
    bottom: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    background-color: #f44336;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 11px 11px 10px rgba(34, 38, 43, 0.05);
    min-width: 14rem;
    overflow: hidden;
  }

  .region--header .block--systemmenublock__main ul.menu li > ul li {
    text-align: left;
    margin: 0;
  }

  .region--header .block--systemmenublock__main ul.menu li > ul li a {
    padding: 1em 1.28rem;
  }

  .region--header .block--systemmenublock__main ul.menu li > ul li a.is-active,
  .region--header .block--systemmenublock__main ul.menu li > ul li a:hover,
  .region--header .block--systemmenublock__main ul.menu li > ul li a:focus {
    background-color: #23a2af;
    color: #fff;
  }
}

@media screen and (min-width: 1180px) and (max-width: 8880px) {
  .region--header .block--systemmenublock__main ul.menu li:hover > ul,
  .region--header .block--systemmenublock__main ul.menu li:focus > ul {
    display: block;
  }
}

.region--header .block--systemmenublock__main ul.menu li a {
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.56em;
  text-decoration: none;
  padding: 2.8rem 1.5rem 3.05rem 1.5rem;
  display: block;
}

.region--header .block--systemmenublock__main ul.menu li a.is-active {
  color: #fff;
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  .region--header .block--systemmenublock__main ul.menu {
    background-color: #fff;
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    margin-top: calc(1rem - 1px);
    border-top: 1px solid rgba(34, 38, 43, 0.05);
    bottom: 0;
    top: 80px;
    overflow-y: auto;
  }

  .region--header .block--systemmenublock__main ul.menu li {
    height: auto;
    text-align: left;
  }

  .region--header .block--systemmenublock__main ul.menu li a {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 1.58rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1.42rem;
    padding-bottom: 1.42rem;
    box-shadow: 0 1px 18px -5px rgba(34, 38, 43, 0.05),
      2px 1px 10px -5px rgba(34, 38, 43, 0.15);
  }

  .region--header .block--systemmenublock__main ul.menu li a + ul {
    display: none;
    padding-left: 0;
  }

  .region--header .block--systemmenublock__main ul.menu li a + ul a {
    padding-left: 2rem;
  }

  .region--header
    .block--systemmenublock__main
    ul.menu
    li.mobile-expand
    a
    + ul {
    display: block;
  }
}

@media screen and (min-width: 0px) and (max-width: 860px) {
  .region--header .block--systemmenublock__main ul.menu {
    top: 80px;
  }
}

@media screen and (min-width: 1180px) and (max-width: 8880px) {
  .region--header .block--systemmenublock__main button.hamburger {
    display: none;
  }
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  .mobile-menu-expaned .main-header {
    background-color: #23a2af;
  }

  .mobile-menu-expaned .region--header .block--systemmenublock__main ul.menu {
    display: block;
    z-index: 9;
    margin: 0;
    border: 0 none;
  }

  .region--header .block--systemmenublock__main ul.menu li a.is-active,
  .region--header .block--systemmenublock__main ul.menu li a {
    color: #22262b;
  }
}

.footer-layout-container {
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 1rem 0;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 0px) and (max-width: 620px) {
  .footer-layout-container {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}

.footer-layout-container p {
  margin-top: 0;
  margin-bottom: 0;
}

.footer-layout-container p:first-child {
  margin-bottom: 1em;
}

.footer-layout-container ul.menu {
  padding: 0;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 0px) and (max-width: 620px) {
  .footer-layout-container ul.menu {
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer-layout-container ul.menu li {
  list-style: none;
  margin-right: 0.5rem;
}

@media screen and (min-width: 0px) and (max-width: 620px) {
  .footer-layout-container ul.menu li {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
  }
}

.footer-layout-container ul.menu li a {
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.footer-layout-container .region--footer_left ul.menu {
  margin-top: 1rem;
}

.footer-layout-container .region--footer_right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  /* align-content: normal; */
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 4px;
}

.footer-layout-container .region--footer_right ul.menu {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer-layout-container .region--footer_right ul.menu li {
  margin-left: 0.5rem;
  margin-right: 0;
}

.block--systemmenublock__social-media {
  text-align: right;
}

@media screen and (min-width: 0px) and (max-width: 620px) {
  .block--systemmenublock__social-media {
    text-align: center;
    margin-top: 1rem;
  }
}

.block--systemmenublock__social-media h2 {
  margin: 0;
  font-size: 1.14rem;
  margin-bottom: 0.5rem;
  color: #000;
}

.block--systemmenublock__social-media ul.menu li a:hover.icon:before,
.block--systemmenublock__social-media ul.menu li a:focus.icon:before {
  opacity: 0.6;
}

.block--systemmenublock__footer ul.menu li a {
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

.block--systemmenublock__footer ul.menu li a:hover,
.block--systemmenublock__footer ul.menu li a:focus {
  color: #23a2af;
}

.main-footer {
  margin-bottom: -1px;
  margin-top: -1px;
}

.auth-form {
  max-width: 400px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: calc(1.5rem + 118px);
  padding-bottom: 10vh;
}

.auth-form input[type="email"],
.auth-form input[type="text"],
.auth-form input[type="password"] {
  width: 100%;
  box-shadow: 0 1px 18px -5px rgba(34, 38, 43, 0.05),
    2px 1px 10px -5px rgba(34, 38, 43, 0.15);
}

.auth-form .small-link {
  font-size: 11px;
  text-align: center;
  display: block;
  margin-top: 10px;
  text-decoration: underline;
}

.auth-form .form-item .description,
.auth-form .form-item label:not(.option) {
  display: none;
}

.auth-form p {
  font-size: 12px;
  line-height: 1.2em;
  text-align: center;
}

@media screen and (min-width: 0px) and (max-width: 620px) {
  .auth-form {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.progress__track {
  overflow: hidden;
  background-color: #23a2af;
  border: 0 none;
  border-radius: 28px;
  margin-top: 1em;
  margin-bottom: 1em;
}

.progress__bar {
  background-color: #394149;
}

.progress__percentage {
  font-family: "Poppins", sans-serif;
  font-size: 1.28rem;
  line-height: 1.33em;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 0.7em;
  margin: 0;
  float: none;
  text-align: center;
}

.progress__description {
  float: none;
  text-align: center;
}

nav.pager {
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  margin: 1rem auto;
  width: 100%;
  padding: 0;
}

nav.pager .pager__items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  -ms-flex-align: center;
  align-items: center;
}

nav.pager .pager__items li {
  list-style: none;
  padding: 0;
  margin: 0 0.25em;
}

nav.pager .pager__items li .icon {
  background-color: transparent;
  display: block;
}

nav.pager .pager__items li a,
nav.pager .pager__items li.pager__item--ellipsis {
  padding: 0;
  width: 2em;
  height: 2em;
  font-weight: 700;
  font-size: 1.2em;
  line-height: 2em;
  text-decoration: none;
}

nav.pager .pager__items li a {
  display: block;
  font-weight: 900;
  border-radius: 100%;
  color: #000;
  border: 2px solid transparent;
}

nav.pager .pager__items li a.disabled {
  pointer-events: none;
  opacity: 0.4;
}

nav.pager .pager__items li a:not(.disabled):hover {
  color: #fff;
  background-color: #23a2af;
  border-color: #23a2af;
}

nav.pager .pager__items li.pager__item--first a,
nav.pager .pager__items li.pager__item--previous a,
nav.pager .pager__items li.pager__item--next a,
nav.pager .pager__items li.pager__item--last a {
  width: 2em;
  height: 2em;
  display: block;
  background-size: auto 50%;
  background-position: center;
  background-repeat: no-repeat;
}

nav.pager .pager__items li.pager__item--first a span,
nav.pager .pager__items li.pager__item--previous a span,
nav.pager .pager__items li.pager__item--next a span,
nav.pager .pager__items li.pager__item--last a span {
  display: none;
}

nav.pager .pager__items li.pager__item--first a:hover,
nav.pager .pager__items li.pager__item--previous a:hover,
nav.pager .pager__items li.pager__item--next a:hover,
nav.pager .pager__items li.pager__item--last a:hover {
  color: #fff;
  background-color: #6fd8e2;
  border-color: #45ccda;
}

nav.pager .pager__items li.pager__item--first,
nav.pager .pager__items li.pager__item--previous {
  margin-right: 2em;
}

nav.pager .pager__items li.pager__item--first a,
nav.pager .pager__items li.pager__item--previous a {
  background-image: url(../resources/dist/icons/left.svg);
}

nav.pager .pager__items li.pager__item--last,
nav.pager .pager__items li.pager__item--next {
  margin-left: 2em;
}

nav.pager .pager__items li.pager__item--last a,
nav.pager .pager__items li.pager__item--next a {
  background-image: url(../resources/dist/icons/right.svg);
}

nav.pager .pager__items li.is-active a {
  border: 2px solid #e2e2e2;
  color: #e2e2e2;
  background-color: transparent;
}

nav.pager .pager__items li.is-active a:hover {
  color: #fff;
  background-color: #e2e2e2;
  border-color: #e2e2e2;
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  nav.pager .pager__items li {
    display: none;
  }

  nav.pager .pager__items li.is-active,
  nav.pager .pager__items li.pager__item--first,
  nav.pager .pager__items li.pager__item--previous,
  nav.pager .pager__items li.pager__item--next,
  nav.pager .pager__items li.pager__item--last {
    display: block;
  }
}

.js-pager__items {
  padding: 0;
}

.js-pager__items li.pager__item {
  list-style: none;
  text-align: center;
}

.js-pager__items li.pager__item a.button {
  text-align: center;
  background-color: transparent;
  color: #23a2af;
  border: 3px solid;
  display: inline-block;
  background-size: auto 40%;
  background-position: 0.75em center;
  background-repeat: no-repeat;
}

.js-pager__items li.pager__item a.button:hover {
  background-position: 0.95em center;
  color: #394149;
}

.breadcrumb {
  margin-top: 4px;
}

.breadcrumb ol {
  padding: 0;
  margin: 0;
}

.breadcrumb ol li {
  list-style: none;
  display: inline-block;
  margin-right: 1em;
  max-width: 250px;
  overflow-x: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.breadcrumb ol li a {
  font-weight: 600;
  color: #23a2af;
  padding: 0;
  text-decoration: none;
  max-width: 100%;
  overflow: hidden;
}

.breadcrumb ol li a:after {
  content: " > ";
  display: inline-block;
  vertical-align: top;
  width: 1em;
  height: 1em;
  margin-left: 1em;
  overflow: hidden;
  background-size: auto 1em;
  background-size: center;
  background-repeat: no-repeat;
}

.breadcrumb ol li a:hover,
.breadcrumb ol li a:focus {
  color: #394149;
}

.breadcrumb ol li a:hover:after,
.breadcrumb ol li a:focus:after {
  color: #23a2af;
}

.breadcrumb ol li:last-child a:after {
  display: none;
}

.drupal--status {
  max-width: 800px;
  position: absolute;
  z-index: 2;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
}

.drupal--status--message {
  box-shadow: 0 1px 18px -5px rgba(34, 38, 43, 0.05),
    2px 1px 10px -5px rgba(34, 38, 43, 0.15);
  padding: 2em 3em;
  margin-bottom: 0;
  position: relative;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}

.drupal--status--message a {
  color: #fff;
  text-decoration: underline;
}

.drupal--status--message:last-child {
  border-bottom: 0 none;
}

.drupal--status--message__error {
  background-color: #c14545;
}

.drupal--status--message__status {
  background-color: #4fc35d;
}

.drupal--status--message__warning {
  background-color: #ff9128;
}

#edit-output .drupal--status {
  background-color: transparent;
  text-align: left;
}

.form-item--error-message {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  margin-top: 0.5em;
  font-size: 0.8em;
  line-height: 1.2em;
}

table {
  min-width: 100%;
  max-width: 100%;
  overflow-x: scroll;
  background: none;
  text-align: left;
  border-spacing: 0;
  border: 0 none;
  border: 0.5rem solid #f3f3f3;
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  table {
    display: block;
    width: 100%;
  }
}

table thead {
  border: 0 none;
  background-color: #f3f3f3;
  color: #394149;
  font-size: 1.28rem;
}

table thead a {
  color: #394149;
}

table tbody tr {
  box-shadow: 0 1px 18px -5px rgba(34, 38, 43, 0.1),
    2px 1px 10px -5px rgba(34, 38, 43, 0.2);
  background-color: rgba(255, 255, 255, 0.2);
  border: 0 none;
}

table tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}

table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

table th {
  background: none;
  text-transform: none;
  font-weight: 600;
  padding: 1rem 1rem calc(1rem + 1rem) 1rem;
  font-weight: 600;
  border: 0 none;
}

table td {
  padding: 1rem 1rem;
  border-color: #eaeaea;
  border-width: 1px 0 0 0;
  border-style: solid;
  border: 0 none;
}

.sliding-popup-bottom {
  position: fixed;
  width: 100%;
  box-shadow: 0 0 10px 10px rgba(34, 38, 43, 0.05);
}

.sliding-popup-bottom > .eu-cookie-compliance-banner {
  position: relative;
  background-color: #394149;
  color: #fff;
  padding: 1rem;
  width: auto;
}

.sliding-popup-bottom > .eu-cookie-compliance-banner p a {
  color: #fff;
  text-decoration: underline;
}

.sliding-popup-bottom .eu-cookie-compliance-buttons {
  text-align: center;
}

.sliding-popup-bottom .eu-cookie-compliance-buttons,
.sliding-popup-bottom .eu-cookie-compliance-message {
  float: none;
  max-width: none;
}

.sliding-popup-bottom .eu-cookie-withdraw-tab {
  display: none !important;
}

.sliding-popup-bottom button.decline-button {
  padding: 0;
  display: block;
  margin: auto;
  margin-top: 5px;
  background: transparent;
  text-transform: none;
  box-shadow: none;
  font-weight: normal;
  font-size: 11px;
  text-decoration: underline;
  border: 0 none;
  color: #fff;
  letter-spacing: 0.2px;
  margin-bottom: 25px;
  text-shadow: none;
}

.sliding-popup-bottom button.agree-button {
  margin: 0;
  outline: none;
}

.sliding-popup-bottom
  button.find-more-button.eu-cookie-compliance-more-button.find-more-button-processed {
  display: none !important;
  padding: 10px;
  text-transform: none;
  font-weight: normal;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 20px;
  font-size: 12px;
  background-color: transparent;
  border: 0 none;
  color: #000;
  padding-left: 0;
}

.sliding-popup-bottom
  button.find-more-button.eu-cookie-compliance-more-button.find-more-button-processed:after {
  margin-top: 4px;
  margin-left: -1px;
}

.sliding-popup-bottom
  button.find-more-button.eu-cookie-compliance-more-button.find-more-button-processed:before {
  display: none;
}

.sliding-popup-bottom button.decline-button:after,
.sliding-popup-bottom
  button.agree-button.eu-cookie-compliance-secondary-button:after {
  display: none;
}

.sliding-popup-bottom #popup-text {
  margin-right: 1rem;
  -ms-flex: 1;
  flex: 1;
  padding-left: 5rem;
  position: relative;
}

@media screen and (min-width: 0px) and (max-width: 860px) {
  .sliding-popup-bottom #popup-text {
    padding-left: 0;
    margin-left: 1rem;
  }
}

.sliding-popup-bottom #popup-text p {
  margin-top: 0;
}

.sliding-popup-bottom #popup-text p:not(.highlight) {
  opacity: 0.7;
}

.sliding-popup-bottom #popup-text:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../resources/dist/icons/privacy.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.5rem;
  height: 4rem;
  position: absolute;
  left: 0;
  opacity: 0.172;
}

@media screen and (min-width: 0px) and (max-width: 860px) {
  .sliding-popup-bottom #popup-text:before {
    width: 5rem;
    height: 4rem;
    position: relative;
    background-position: center;
    margin-bottom: 1rem;
  }
}

.sliding-popup-bottom .eu-cookie-compliance-content {
  max-width: 1140px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}

@media screen and (min-width: 0px) and (max-width: 860px) {
  .sliding-popup-bottom .eu-cookie-compliance-content {
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.sliding-popup-bottom .eu-cookie-compliance-content .privacy-text {
  display: inline-block;
  vertical-align: middle;
  max-width: calc(100% - 4rem);
  height: auto;
}

.sliding-popup-bottom .eu-cookie-compliance-content .privacy-text p {
  margin-bottom: 0;
}

@media screen and (min-width: 0px) and (max-width: 860px) {
  .sliding-popup-bottom .eu-cookie-compliance-content .privacy-text {
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.5rem;
  }
}

.sliding-popup-bottom .eu-cookie-compliance-content .privacy-icon-container {
  display: inline-block;
  vertical-align: middle;
  width: 4rem;
  height: auto;
}

@media screen and (min-width: 0px) and (max-width: 860px) {
  .sliding-popup-bottom .eu-cookie-compliance-content .privacy-icon-container {
    display: none;
  }
}

.sliding-popup-bottom
  .eu-cookie-compliance-content
  .privacy-icon-container
  img {
  display: block;
  width: 100%;
  height: auto;
}

.field--mediaoembedvideo,
.iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  /*
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100vw;
      height: 100vh;
      transform: translate(-50%, -50%);
    }
  }*/
}

.field--mediaoembedvideo iframe,
.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.field--mediaoembedvideo--cover,
.iframe-container--cover {
  padding: 0;
}

.align-center.media {
  min-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.video-description {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 2rem;
}

.iframe-container--cover {
  width: 100%;
  height: 100%;
}

.iframe-container--cover iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: auto;
  height: auto;
}

.media--image {
  height: 100%;
}

.media--image div {
  height: 100%;
}

.media--image + figcaption {
  margin-top: -1rem;
  margin-bottom: 1rem;
  color: #000;
  opacity: 0.6;
}

.field--mediaimage + figcaption {
  margin-top: -1rem;
  margin-bottom: 1rem;
  color: #000;
  opacity: 0.6;
}

.cke_editable .media--image,
.field--body .media--image,
.field--beschreibung .media--image {
  margin-bottom: 1rem;
}

.cke_editable .media--image img,
.field--body .media--image img,
.field--beschreibung .media--image img {
  height: auto;
  width: auto;
  max-height: 30vh;
  width: auto;
  max-width: 50%;
}

.cke_editable figure.align-center,
.field--body figure.align-center,
.field--beschreibung figure.align-center {
  margin-left: 0;
  margin-right: 0;
}

.media-library-item__edit {
  padding: 0;
  background: transparent;
  color: #000;
  font-weight: normal;
  font-size: 0.9rem;
  text-decoration: underline;
  opacity: 0.2;
}

.error-page-container {
  text-align: center;
  padding-top: calc(1.5rem + 118px);
  padding-bottom: 1.5rem;
}

.error-page-container a.button {
  margin-top: 1rem;
}

.error-page-container h1 {
  margin-top: 0;
  margin-bottom: 0.5em;
}

.ui-dialog {
  /*width: calc(100% - 1rem*2) !important;
  left: 50% !important;
  top: 50% !important;
  z-index: 9980;
  transform: translate(-50%,-50%);
  height: calc(100% - 1rem*2) !important;*/
  max-height: calc(100% - 1.5rem * 2);
  background-color: transparent;
  overflow-y: auto;
}

.ui-dialog.ui-widget.ui-widget-content {
  border: 0 none;
  max-width: 100%;
}

.ui-dialog .ui-dialog-content {
  max-height: 100% !important;
}

.ui-dialog .ui-dialog-titlebar {
  background-color: transparent;
  border: 0 none;
  height: 3rem;
  position: fixed;
  right: 1rem;
  top: 1rem;
}

.ui-dialog .ui-dialog-title {
  display: none;
}

.ui-dialog .ui-dialog-titlebar-close {
  width: 3rem;
  height: 3rem;
  border-radius: 100%;
  right: 0;
  top: 0;
  margin: 0;
  border: 2px solid #000;
}

.ui-dialog .ui-widget-content {
  background-color: #e2e2e2;
  border: 0 none;
  color: #fff;
  padding: 1rem;
  padding-top: 0;
}

.ui-dialog .ui-widget-content a.button {
  background: #23a2af;
  color: #000;
}

.ui-dialog .ui-widget-content a.button:hover {
  background: #1b7b85;
  color: #fff;
}

.ui-dialog .ui-widget-content img {
  width: 100%;
  height: auto;
}

.ui-dialog .ui-state-active,
.ui-dialog .ui-widget-content .ui-state-active,
.ui-dialog .ui-widget-header .ui-state-active,
.ui-dialog a.ui-button:active,
.ui-dialog .ui-button:hover,
.ui-dialog .ui-button:active,
.ui-dialog .ui-button.ui-state-active:hover {
  background-color: #23a2af;
  border-color: #23a2af;
}

.ui-dialog .ui-widget-header .ui-icon,
.ui-dialog .ui-button .ui-icon,
.ui-dialog .ui-icon-closethick {
  background-image: url(../resources/dist/icons/return.svg);
  background-size: contain;
  background-position: center;
  width: 50%;
  height: 50%;
  margin: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ui-dialog .ui-button {
  background-color: #fff;
  border: 2px solid;
}

.ui-widget-overlay {
  background-color: rgba(255, 255, 255, 0.95);
  opacity: 1;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #22262b;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #23a2af;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #23a2af;
}

.node--referenzen--teaser {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.node--referenzen--teaser .ajax-progress {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}

.node--referenzen--teaser .ajax-progress .throbber {
  background-image: url(../resources/dist/throbber.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 2rem;
  height: 2rem;
}

.node--referenzen--teaser:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(35, 162, 175, 0.2);
  z-index: 1;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}

.node--referenzen--teaser:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: linear-gradient(
    0deg,
    rgba(35, 162, 175, 0.8) 0%,
    rgba(35, 162, 175, 0.1) 100%
  );
  z-index: 1;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 1px 18px -5px rgba(34, 38, 43, 0.05),
    2px 1px 10px -5px rgba(34, 38, 43, 0.15);
  pointer-events: none;
  top: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  border-radius: 0;
}

.node--referenzen--teaser .field--teaserbild img {
  transition: all 0.25s ease-in-out;
}

.node--referenzen--teaser .overlay--infos {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  padding-bottom: 3rem;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  text-align: center;
  z-index: 2;
  transition: all 0.4s ease-in-out;
  width: calc(100% - 2rem);
  text-shadow: 1px 1px 1px rgba(34, 38, 43, 0.05);
  pointer-events: none;
  overflow: hidden;
}

@media screen and (min-width: 1400px) and (max-width: 8880px) {
  .node--referenzen--teaser .overlay--infos .field--rating {
    transition: all 0.4s ease-in-out;
    margin-bottom: -5rem;
    margin-top: 4rem;
  }
}

.node--referenzen--teaser:hover .field--teaserbild img,
.node--referenzen--teaser:focus .field--teaserbild img {
  -webkit-transform: scale(1.05) rotate(1deg);
  transform: scale(1.05) rotate(1deg);
}

.node--referenzen--teaser:hover .overlay--infos,
.node--referenzen--teaser:focus .overlay--infos {
  bottom: 50%;
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.node--referenzen--teaser:hover .overlay--infos .field--rating,
.node--referenzen--teaser:focus .overlay--infos .field--rating {
  margin-bottom: 0;
  margin-top: 1rem;
}

.node--referenzen--teaser:hover:before,
.node--referenzen--teaser:focus:before {
  top: 0;
  left: 0;
  border-radius: 0;
  opacity: 0.8;
}

.node--referenzen--teaser:hover:after,
.node--referenzen--teaser:focus:after {
  left: 0;
  background: rgba(35, 162, 175, 0.4);
}

.node--referenzen--full .field--videos.container {
  max-width: 1425px;
  margin-left: auto;
  margin-right: auto;
}

.node--referenzen--full .field--videos.container .field--item {
  margin-bottom: 1rem;
}

@media screen and (min-width: 1400px) and (max-width: 8880px) {
  .node--referenzen--full .field--videos.container {
    padding-bottom: 1.5rem;
  }

  .node--referenzen--full
    .field--videos.container
    > .field--item
    > .media.has-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.node--referenzen--full .paragraph--type--bildergalerie > .inner {
  padding-top: 0;
}

.node--referenzen--full .node--referenzen--full__content .field--body {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1rem;
}

.node--referenzen--full .node--referenzen--full__content .field--name {
  display: none;
}

.node--referenzen--full .node--referenzen--full__content .field--sports {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-preferred-size: 33.333333%;
  flex-basis: 33.333333%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1rem;
}

.node--referenzen--full .node--referenzen--full__content .field--icon {
  padding: 10px;
}

.content-hero--block {
  overflow: hidden;
  position: relative;
  color: #fff;
}

.content-hero--block .field--teaserbild {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.content-hero--block .field--teaserbild:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    90deg,
    rgba(34, 38, 43, 0.8) 0%,
    rgba(57, 65, 73, 0.2) 100%
  );
  z-index: 1;
}

.content-hero--block .field--teaserbild img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.content-hero--block .inner {
  max-height: 600px;
  height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.content-hero--block .inner .content {
  max-width: 1140px;
  padding: 1rem;
  text-align: center;
  position: relative;
}

.ui-dialog .node--referenzen {
  margin-left: -1rem;
  margin-right: -1rem;
}

.ui-dialog .node--referenzen .content-hero--block .inner {
  height: auto;
}

.ui-dialog .node--referenzen .node--referenzen--full__content .field--body {
  padding: 1rem;
}

@media screen and (min-width: 1400px) and (max-width: 8880px) {
  .ui-dialog
    .node--referenzen
    .node--referenzen--full__content
    .field--videos.container
    > .field--item
    > .media {
    display: block;
  }
}

.gallery-grid .view-inner-content {
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  padding: 1.5rem 0;
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  padding: 2rem;
}

.gallery-grid .view-inner-content .field--teaserbild {
  height: 25rem;
  max-height: 500px;
  min-height: 230px;
}

@media screen and (min-width: 1400px) and (max-width: 8880px) {
  .gallery-grid .view-inner-content .field--teaserbild {
    height: 20vw;
  }
}

.gallery-grid .view-inner-content img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (min-width: 860px) and (max-width: 1180px) {
  .gallery-grid .view-inner-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1180px) and (max-width: 8880px) {
  .gallery-grid .view-inner-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1400px) and (max-width: 8880px) {
  .gallery-grid .view-inner-content {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

/*test */
.gallery-grid-venues {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  padding: 1.5rem 0;
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  padding: 2rem;
}

.gallery-grid-venues .field--teaserbild {
  height: 25rem;
  max-height: 500px;
  min-height: 230px;
}

@media screen and (min-width: 1400px) and (max-width: 8880px) {
  .gallery-grid-venues .field--teaserbild {
    height: 20vw;
  }
}

.gallery-grid-venues img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 10px;
  overflow: hidden;
}

@media screen and (min-width: 860px) and (max-width: 1180px) {
  .gallery-grid-venues {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 1180px) and (max-width: 8880px) {
  .gallery-grid-venues {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 1400px) and (max-width: 8880px) {
  .gallery-grid-venues {
    grid-template-columns: 1fr;
  }
}

.node--page--full .node--page--full__content {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  padding-bottom: 1.5rem;
}

.node--kunden .field--logo {
  max-width: 14rem;
}

.node--kunden .field--logo img {
  height: 100%;
  width: 100%;
  -webkit-filter: saturate(0);
  filter: saturate(0);
}

.block--viewsblock__kunden-block1 .block-title {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}

.customer-grid {
  text-align: center;
  padding: 0.5rem 1rem;
}

.customer-grid .view-inner-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.customer-grid .view-inner-content .views-row {
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.customer-grid .view-inner-content .views-row img {
  opacity: 0.4;
}

.customer-grid .view-inner-content .views-row:hover img,
.customer-grid .view-inner-content .views-row:focus img {
  opacity: 0.8;
}

.node--article--full .node--article--full__content .field--body {
  max-width: calc(1140px + 1rem * 2);
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  padding-bottom: 1.5rem;
}

.node--article--full h4:after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background-color: #000;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}

.node--article--teaser {
  text-align: left;
  overflow: hidden;
}

.node--article--teaser a {
  text-decoration: none;
}

.node--article--teaser .field--teaserbild {
  max-height: 15rem;
}

.node--article--teaser .field--teaserbild img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.node--article--teaser .teaser-container {
  padding: 0.5rem;
  color: #000;
  padding-bottom: 4rem;
}

.node--article--teaser h2 {
  font-size: 1.8rem;
  line-height: 1.2em;
  margin-top: 0;
  margin-bottom: 0;
}

.node--article--teaser h4:before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background-color: #000;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.node--article--teaser .field--body {
  margin-top: 0.5rem;
}

.node--article--teaser ul.links.inline {
  padding-top: 1rem;
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  padding: 0;
}

.node--article--teaser ul.links.inline li {
  margin-bottom: 0;
  width: 100%;
  display: block;
}

.node--article--teaser ul.links.inline li a {
  display: block;
  width: auto;
}

.teaser-grid {
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.teaser-grid .view-inner-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.teaser-grid .view-inner-content .views-row {
  position: relative;
  max-width: 30rem;
}

.teaser-grid .view-inner-content .views-row .node--article--teaser,
.teaser-grid .view-inner-content .views-row .node--article--teaser__content {
  height: 100%;
}

.teaser-grid .view-inner-content .teaser-container {
  -ms-flex: 1;
  flex: 1;
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  .teaser-grid .view-inner-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .teaser-grid .view-inner-content .views-row {
    max-width: 100%;
  }
}

.teaser-grid .node--article--teaser__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.node--camps--full .node--camps--full__content .field--body {
  max-width: calc(1140px + 1rem * 2);
  margin-left: auto;
  margin-right: auto;
  padding: 1rem;
  padding-bottom: 1.5rem;
}

.node--camps--full h4:after {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background-color: #000;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin-left: auto;
  margin-right: auto;
}

.node--camps--teaser {
  text-align: left;
  overflow: hidden;
}

.node--camps--teaser a {
  text-decoration: none;
}

.node--camps--teaser .field--teaserbild {
  max-height: 15rem;
}

.node--camps--teaser .field--teaserbild img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.node--camps--teaser .teaser-container {
  padding: 0.5rem;
  color: #000;
  padding-bottom: 4rem;
}

.node--camps--teaser h2 {
  font-size: 1.8rem;
  line-height: 1.2em;
  margin-top: 0;
  margin-bottom: 0;
}

.node--camps--teaser h4:before {
  content: "";
  display: block;
  width: 3rem;
  height: 1px;
  background-color: #000;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.node--camps--teaser .field--body {
  margin-top: 0.5rem;
}

.node--camps--teaser ul.links.inline {
  padding-top: 1rem;
  margin: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
  padding: 0;
}

.node--camps--teaser ul.links.inline li {
  margin-bottom: 0;
  width: 100%;
  display: block;
}

.node--camps--teaser ul.links.inline li a {
  display: block;
  width: auto;
}

.teaser-grid {
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.teaser-grid .view-inner-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
}

.teaser-grid .view-inner-content .views-row {
  max-width: 30rem;
  position: relative;
}

.teaser-grid .view-inner-content .views-row .node--camps--teaser,
.teaser-grid .view-inner-content .views-row .node--camps--teaser__content {
  height: 100%;
}

.teaser-grid .view-inner-content .teaser-container {
  -ms-flex: 1;
  flex: 1;
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  .teaser-grid .view-inner-content {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .teaser-grid .view-inner-content .views-row {
    max-width: 100%;
  }
}

.teaser-grid .node--camps--teaser__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

article.node--person.full,
article.node--person.teaser {
  padding: 1rem;
}

article.node--person.full img,
article.node--person.teaser img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  max-width: 20rem;
  margin: 0 auto;
}

article.node--person.full h2,
article.node--person.teaser h2 {
  font-size: 1.7rem;
  margin: 0;
  margin-top: 1rem;
  margin-bottom: 0;
}

article.node--person.full h4,
article.node--person.teaser h4 {
  color: #23a2af;
  margin-top: 0;
}

article.node--person.full ul.inline,
article.node--person.teaser ul.inline {
  -ms-flex-pack: center;
  justify-content: center;
}

article.node--person.full .field--body,
article.node--person.teaser .field--body {
  margin-left: auto;
  margin-right: auto;
}

article.node--person.teaser .field--body {
  max-width: 30rem;
}

article.node--person.full h1 {
  margin-bottom: 0.2em;
}

article.node--person.full h1 + h4 {
  text-align: center;
}

article.node--person.full .node--person--full__content {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1rem;
  padding-top: 1rem;
}

article.node--person.full .node--person--full__title,
article.node--person.full .field--tatigkeit {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.decoration-svg-wave.min-height {
  max-height: 236px;
}

@media screen and (min-width: 0px) and (max-width: 860px) {
  .decoration-svg-wave.min-height svg {
    overflow: visible;
  }

  .decoration-svg-wave.min-height #wave-path-3 {
    -webkit-transform: scaleY(2);
    transform: scaleY(2);
  }
}

.paragraph--type--ansicht {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.paragraph--type--ansicht .field--kurzbeschreibung,
.paragraph--type--ansicht .field--titel {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 0 1rem;
}

.paragraph--type--ansicht .gallery-grid .view-inner-content {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 1rem;
}

.paragraph--type--hero-block {
  background-color: #4e5964;
  position: relative;
  overflow: hidden;
}

.paragraph--type--hero-block .decoration-svg-wave {
  display: none;
}

.paragraph--type--hero-block .field--hintergrund .field--mediaimage {
  position: relative;
  /*padding-bottom: 56.25%;*/
  /* 16:9 */
  padding: 0;
  height: 0;
  min-height: 100vh;
}

.paragraph--type--hero-block .field--hintergrund .field--mediaimage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.paragraph--type--hero-block .field--seitentitel + *,
.paragraph--type--hero-block .field--seitentitel h1 {
  text-align: center;
  font-size: 4.375rem;
  line-height: 1.1em;
  margin-bottom: 1rem;
  display: block;
  width: 100%;
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  .paragraph--type--hero-block .field--seitentitel + *,
  .paragraph--type--hero-block .field--seitentitel h1 {
    font-size: 3.75rem;
  }
}

@media screen and (min-width: 0px) and (max-width: 860px) {
  .paragraph--type--hero-block .field--seitentitel + *,
  .paragraph--type--hero-block .field--seitentitel h1 {
    font-size: 2.75rem;
  }
}

.paragraph--type--hero-block .field--titel h2 {
  font-size: 3rem;
  margin-bottom: 0em;
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  .paragraph--type--hero-block .field--titel h2 {
    font-size: 2rem;
  }
}

.paragraph--type--hero-block .field--kurzbeschreibung {
  font-size: 1.4rem;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  width: auto;
}

.paragraph--type--hero-block .field--kurzbeschreibung p:first-child {
  margin-top: 0;
}

.paragraph--type--hero-block .field--kurzbeschreibung a.button {
  margin-top: 0.5rem;
}

@media screen and (min-width: 0px) and (max-width: 860px) {
  .paragraph--type--hero-block .field--kurzbeschreibung {
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 0px) and (max-width: 360px) {
  .paragraph--type--hero-block .field--kurzbeschreibung p {
    display: none;
  }
}

.paragraph--type--hero-block.blur-poster .field--hintergrund {
  -webkit-filter: blur(40px);
  filter: blur(40px);
}

.paragraph--type--hero-block:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    90deg,
    rgba(34, 38, 43, 0.8) 0%,
    rgba(57, 65, 73, 0.2) 100%
  );
  z-index: 3;
}

.paragraph--type--hero-block .iframe-container {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  min-width: 100%;
}

.paragraph--type--hero-block .field--hintergrund {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.paragraph--type--hero-block > .inner {
  /*position: absolute;*/
  position: relative;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  z-index: 4;
  color: #fff;
  /*top: 0;
  left: 0;*/
  min-height: 75vh;
}

.paragraph--type--hero-block .hero--annotation {
  position: relative;
  width: 1140px;
  max-width: calc(100% - 1rem * 4);
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
}

@media screen and (min-width: 0px) and (max-width: 860px) {
  .paragraph--type--hero-block .hero--annotation {
    padding: 1rem;
    max-width: calc(100% - 1rem * 2);
  }
}

.paragraph--type--hero-block .hero--annotation a.button {
  background: #22262b;
  font-size: 1.7rem;
  border-bottom: 6px solid #23a2af;
}

.paragraph--type--hero-block.compact-hero > .inner {
  min-height: auto;
}

.paragraph--type--hero-block.compact-hero
  .field--hintergrund
  .field--mediaimage {
  height: 100%;
  min-height: auto;
  max-height: 100%;
}

.paragraph--type--hero-block.two-col-hero .decoration-svg-wave {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
}

.paragraph--type--hero-block.two-col-hero .decoration-svg-wave svg {
  height: 100%;
}

.paragraph--type--hero-block.text-align-center .field--seitentitel + *,
.paragraph--type--hero-block.text-align-center .field--seitentitel h1 {
  text-align: center;
}

.paragraph--type--hero-block.text-align-center .hero--annotation {
  margin-right: auto;
  margin-left: auto;
}

.paragraph--type--hero-block.text-align-center .hero--annotation > * {
  display: block;
  text-align: center;
  width: 100%;
}

.paragraph--type--hero-block.text-align-left .field--seitentitel + *,
.paragraph--type--hero-block.text-align-left .field--seitentitel h1 {
  text-align: left;
}

.paragraph--type--hero-block.text-align-left .hero--annotation {
  margin-right: auto;
  margin-left: 0;
}

.paragraph--type--hero-block.text-align-left .hero--annotation > * {
  display: block;
  text-align: left;
  width: 100%;
}

.paragraph--type--hero-block.text-align-right .field--seitentitel + *,
.paragraph--type--hero-block.text-align-right .field--seitentitel h1 {
  text-align: right;
}

.paragraph--type--hero-block.text-align-right .hero--annotation {
  margin-right: 0;
  margin-left: auto;
}

.paragraph--type--hero-block.text-align-right .hero--annotation > * {
  display: block;
  text-align: right;
  width: 100%;
}

#wave-path-1 {
  fill: rgba(34, 38, 43, 0.3);
  display: none;
}

#wave-path-2 {
  fill: rgba(34, 38, 43, 0.8);
  -webkit-filter: drop-shadow(-50px 11px 0px rgba(34, 38, 43, 0.7));
  filter: drop-shadow(-50px 11px 0px rgba(34, 38, 43, 0.7));
}

#wave-path-3 {
  fill: #23a2af;
  -webkit-filter: drop-shadow(-31px -25px 0px rgba(35, 162, 175, 0.7));
  filter: drop-shadow(-31px -25px 0px rgba(35, 162, 175, 0.7));
}

.paragraph--type--textblock > .inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  /*padding: $vertical_gutter+$gutter $gutter $vertical_gutter $gutter;*/
  padding: 1rem 1rem 1.5rem 1rem;
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  .paragraph--type--textblock > .inner {
    padding: 1.5rem 1rem 0.75rem 1rem;
  }
}

.paragraph--type--textblock .field--titel h2 {
  margin-top: 0;
}

.paragraph--type--beschreibung-mit-icon {
  max-width: 400px;
  text-align: center;
}

.paragraph--type--beschreibung-mit-icon .inner {
  padding: 1rem;
}

.paragraph--type--beschreibung-mit-icon .inner .field--icon img {
  width: 100%;
  height: auto;
  width: 165px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 140px;
  -o-object-fit: contain;
  object-fit: contain;
}

.paragraph--type--icon-liste {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1rem;
  padding-top: 1.5rem;
}

.paragraph--type--icon-liste .field--iconblock {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (min-width: 1180px) and (max-width: 8880px) {
  .paragraph--type--icon-liste .field--iconblock .field--item {
    width: calc(100% / 3 - 1rem);
  }
}

.paragraph--type--kontaktformular {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  /*background-color: darken($third-color, 25%);*/
}

.paragraph--type--kontaktformular .field--titel h2 {
  margin-top: 0;
}

.paragraph--type--kontaktformular .inner {
  max-width: 1140px;
  padding: 1.5rem 1rem;
  z-index: 2;
}

.paragraph--type--kontaktformular form {
  padding-top: 1rem;
  text-align: left;
}

.paragraph--type--kontaktformular form label:not(.option) {
  display: none;
}

.paragraph--type--kontaktformular form input[type="text"],
.paragraph--type--kontaktformular form input[type="email"],
.paragraph--type--kontaktformular form textarea {
  width: 100%;
}

.paragraph--type--kontaktformular .field--hintergrund {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.paragraph--type--kontaktformular .field--hintergrund img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.paragraph--type--kontaktformular .field--hintergrund:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(
    90deg,
    rgba(34, 38, 43, 0.8) 0%,
    rgba(57, 65, 73, 0.2) 100%
  );
  z-index: 1;
}

.paragraph--type--kontaktformular .field--hintergrund + .inner {
  color: #fff;
}

.paragraph--type--bildergalerie > .inner {
  max-width: calc(1140px + 1rem * 2);
  margin-left: auto;
  margin-right: auto;
  padding: 2.5rem 1rem 1rem 1rem;
}

@media screen and (min-width: 0px) and (max-width: 1180px) {
  .paragraph--type--bildergalerie > .inner {
    padding: 1.5rem 1rem 0.75rem 1rem;
  }
}

.paragraph--type--bildergalerie .field--titel h2 {
  margin-top: 0;
}

.paragraph--type--bildergalerie .field--bildergalerie {
  max-width: calc(1140px + 1rem * 2);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-gap: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 1.5rem;
  grid-auto-rows: auto;
}

@media screen and (min-width: 860px) and (max-width: 1180px) {
  .paragraph--type--bildergalerie .field--bildergalerie {
    grid-template-columns: repeat(2, 1fr);
  }

  .paragraph--type--bildergalerie
    .field--bildergalerie
    .field--item:nth-child(3n + 1) {
    grid-column: span 2;
  }
}

@media screen and (min-width: 1180px) and (max-width: 8880px) {
  .paragraph--type--bildergalerie .field--bildergalerie {
    grid-template-columns: repeat(4, 1fr);
  }

  .paragraph--type--bildergalerie
    .field--bildergalerie
    .field--item:nth-child(4n + 2) {
    grid-column: span 2;
  }
}

.paragraph--type--bildergalerie .field--bildergalerie .field--item {
  max-height: 25rem;
  min-height: 20rem;
}

.paragraph--type--bildergalerie .field--bildergalerie .media--image {
  border-radius: 10px;
  overflow: hidden;
}

.paragraph--type--bildergalerie .field--bildergalerie .media--image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*webform*/
.webform-submission-form {
  background-color: rgba(78, 89, 100, 0.2);
  padding: 1rem;
}

.webform-select2
  .select2-container
  .select2-selection--single
  .select2-selection__rendered
  .select2-container
  .select2-container--default
  .select2-selection--multiple {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  display: block;
  padding: 0.8rem 1rem;
  border: 0 none;
  outline: none;
  border: 1px solid #f3f3f3;
  border-radius: 7px;
  background-color: #f3f3f3;
  color: #000;
  font-size: 1em;
}

webform-select2
  .select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: none;
  outline: 0;
}

.starrating {
  display: inline-block;
}

.select2-container--default .select2-selection--multiple {
  background-color: #f3f3f3;
  border: 0px solid #aaa;
  border-radius: 7px;
  cursor: text;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 63px;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container--default.select2-container--focus
  .select2-selection--multiple {
  border: solid black 0px;
  outline: 0;
}

/*captcha form detail*/
form details {
  padding: 1.4em 1.2em;
  background-color: transparent;
  border-radius: 0;
  border: 0px;
}

/*coach*/
article.node--coach.full,
article.node--coach.teaser {
  /*padding: $gutter;*/
}

article.node--coach.full img,
article.node--coach.teaser img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  max-width: 20rem;
  margin: 0 auto;
}

article.node--coach.full h2,
article.node--coach.teaser h2 {
  font-size: 1.7rem;
  margin: 0;
  margin-top: 1rem;
  margin-bottom: 0;
}

article.node--coach.full h4,
article.node--coach.teaser h4 {
  color: #23a2af;
  margin-top: 0;
}

article.node--coach.full ul.inline,
article.node--coach.teaser ul.inline {
  -ms-flex-pack: center;
  justify-content: center;
}

article.node--coach.full .field--body,
article.node--coach.teaser .field--body {
  margin-left: auto;
  margin-right: auto;
}

article.node--coach.teaser .field--body {
  max-width: 30rem;
}

article.node--coach.full h1 {
  margin-top: 5em;
  /*margin-bottom: 0.1em;*/
}

article.node--coach.full h1 + h4 {
  text-align: center;
}

article.node--coach.full .node--coach--full__content {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 1rem;
  padding-top: 1rem;
}

article.node--coach.full .node--coach--full__title,
article.node--coach.full .field--tatigkeit {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

article.node--coach.full img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  max-width: 20rem;
  margin: 8em auto;
}

.content-hero--block .field--teaserbild {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

div {
  display: block;
}

.content-hero--block {
  overflow: hidden;
  position: relative;
  color: #fff;
}

html,
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5em;
  letter-spacing: 0.025em;
  color: #000;
  background: #fff;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

.content-hero--block .field--teaserbild {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #23a2af;
  z-index: 1;
}

div.more-link {
  padding-top: 1rem;
}

.decoration-svg-wave.min-height {
  max-height: 236px;
}

@media screen and (min-width: 0px) and (max-width: 860px) {
  .decoration-svg-wave.min-height svg {
    overflow: visible;
  }

  .decoration-svg-wave.min-height #wave-path-3 {
    -webkit-transform: scaleY(2);
    transform: scaleY(2);
  }
}

/* sports-resort-section */
.maraleina-sports-section .sam-burns-img img {
  display: block;
  margin-bottom: 28px;
  width: 100%;
  object-fit: cover;
}

.maraleina-sports-section .cal-location {
  gap: 12px;
  flex-wrap: wrap;
  row-gap: 5px;
}

.maraleina-sports-section .sam-burns-img img:nth-child(1) {
  height: 350px;
}

.maraleina-sports-section .sam-burns-img img:nth-child(2) {
  height: 350px;
}

.Keen-find-section.road-to .title-box {
  display: table;
  margin: 0 0 0 auto !important;
}

.What-you-find-section.road-to:after {
  left: auto;
  right: 0;
  height: 45%;
  bottom: -30%;
}

.What-you-find-section.road-to {
  margin-bottom: 55px;
}

.coach-profile-section p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.progressed {
  min-width: 20%;
  height: 5px;
  background-color: #ffffff;
  border-radius: 50px;
}
.progress_main {
  max-width: 160px !important;
  width: 160px !important;
  position: absolute;
  right: calc(100% + 20px);
  bottom: 0;
  padding: 0 !important;
}

.progress_main:after {
  content: "";
  background: white;
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 2px;
  top: 50%;
  right: 0;
}

li.nav-item.active a {
  color: red;
}

li.nav-item.active a.get-touch {
  background-color: white !important;
  color: #ea2127 !important;
}

.about_us_page {
  background-image: url(../image/about_us.png);
}
.owl-carousel .owl-item img {
  object-fit: cover;
}
/*# sourceMappingURL=../css/main.css.map */
.What-you-find-section .col-sm-6 img{
        height: 100%;
    object-fit: cover;
    object-position: center;
}
@media (max-width: 767px){
    .What-you-find-section:after {
        content: "";
        background: transparent !important;
    }
}
/* slider css */
@import url('https://fonts.googleapis.com/css?family=Montserrat');

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.myslider {
  
  .item {
    width: 100%;
    position: relative;
    
    &.c   {
      background-color: #325D7F;
    }
     &.b   {
      background-color: #F2727F;
    }
   &.a   {
      background-color: #F9B294;
    }

    h2 {
      color: #fff;
      font-size: 8vw;
      font-weight: 400;
      line-height: 1.1;
      text-align: center;
      margin: 0 auto;
      max-width: 80%;
      text-transform: uppercase;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      left: 0;
      right: 0;
    }
  }
  
}

.slick-dots {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2%;
  
  li {
    list-style: none;
    margin: 15px 0;
  }
  button {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    border: none;
    background-color: #fff;
    text-indent: -9999px;
    outline: 0;
    &:hover {
      background-color: #000;
    }
  }
}
/* .slick-slide {
    height: 100vh !important;
} */
/* slider */

.slider {
  margin: 0 auto;
  max-width: 640px;
}

 .slider .slide_viewer {
  max-height: 400px;
  overflow: hidden;
  position: relative;
}
.custom-slide .slide{
    height: 100%;
}
.custom-slide{
    height: 100%;
}
.custom-slide .slide img{
    height: 100%;
}
.slide img{
	width: 100%;
	display: block;
    margin-left: auto;
    margin-right: auto;
}

.slide_group {
  height: 100%;
  position: relative;
  width: 100%;
}

.slide {
 display: none;
/* position: absolute;*/
  width: 100%;
}

 .slide_viewer {
  max-height: 400px;
  overflow: hidden;
  position: relative;
}


.slide:first-child {
  display: block;
}



.directional_nav {
  height: 340px;
  margin: 0 auto;
  max-width: 740px;
  position: relative;
  top: -340px;
}

.previous_btn {
  bottom: 0;
  left: 100px;
  margin: auto;
  position: absolute;
  top: 0;
}

.next_btn {
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 100px;
  top: 0;
}

.previous_btn, .next_btn {
  cursor: pointer;
  height: 65px;
  opacity: 0.5;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  width: 65px;
}

.previous_btn:hover, .next_btn:hover {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .previous_btn {
    left: 50px;
  }
  .next_btn {
    right: 50px;
  }
}

 .column-reve .custom-slide .slide img {
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 5px;
}

/* Adding css for style issue fixing */
.What-you-find-section .col-sm-6 img{
    border-radius: 5px;
}
.maraleina-sports-section .sam-burns-img img{
    border-radius: 5px;
}
.our-client-say ul .star-red {
    width: 5% !important; 	
}
.camp-d7-youth-swim-performance-camp .maraleina-sports-section .package-custom ul li {
    list-style: disc !important;
}
@media screen and (min-width: 991px){
    .img-main-div{
        float: right !important;
        margin-left: 20px !important;
    }
}
.package-custom p{
    width: 35%;
    text-align: center;
    padding: 0px 0 25px;
    border: 1px solid #ebe5e5;
    border-radius: 2px;
}
.package-custom strong{
    background: #8c9796;
    display: block;
    padding: 20px;
    color: white;
    font-size: 25px;
}
.package-custom h3 strong {
    background: transparent !important;
    color: black !important;
    font-size: 25px;
}

.related-sites a {
  color: white !important;
  text-decoration: none !important;
}

.related-sites a:hover {
  color: #f44336 !important;
  text-decoration: underline !important;
}

.related-sites img {
  width: auto !important;
}

.related-sites .img-horizontal {
  height: 44px !important;
  margin-bottom: 15px !important;
}

.related-sites .img-vertical {
  height: 135px !important;
  margin-bottom: 5px !important;
}
