/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 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: #000;
}

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

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

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

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

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

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

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

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

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}
.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}
.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}
.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}
.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

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

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

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

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 2px;
}
.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}
.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}
.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}
.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

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

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}
.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 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: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

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

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

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

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

/***
****
****  font-family und font-faces
****
 */
/*
* Ab hier sind nur noch Funktionen, Mixins, oder Generation von Klassen
*
 */
@font-face {
  font-display: swap;
  font-family: "RobotoLight";
  src: url("/resources/fonts/roboto-v20-latin-300.eot");
  src: url("/resources/fonts/roboto-v20-latin-300.eot?#iefix") format("embedded-opentype"), url("/resources/fonts/roboto-v20-latin-300.woff2") format("woff2"), url("/resources/fonts/roboto-v20-latin-300.woff") format("woff"), url("/resources/fonts/roboto-v20-latin-300.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "RobotoBlack";
  src: url("/resources/fonts/roboto-v20-latin-900.eot");
  src: url("/resources/fonts/roboto-v20-latin-900.eot?#iefix") format("embedded-opentype"), url("/resources/fonts/roboto-v20-latin-900.woff2") format("woff2"), url("/resources/fonts/roboto-v20-latin-900.woff") format("woff"), url("/resources/fonts/roboto-v20-latin-900.ttf") format("truetype");
}
/**
 * adds resets for buttons that are not covered by reset-and-normalize base
 */
[role='button'],
input[type='button'],
input[type='reset'],
input[type='submit'],
button {
  appearance: button;
  background: none;
  border: 0;
  font: inherit;
  font-size: 100%;
  padding: 0;
  text-align: inherit;
  user-select: none;
}
[role='button']:-moz-focusring,
input[type='button']:-moz-focusring,
input[type='reset']:-moz-focusring,
input[type='submit']:-moz-focusring,
button:-moz-focusring {
  outline: none;
}
[role='button']:focus,
input[type='button']:focus,
input[type='reset']:focus,
input[type='submit']:focus,
button:focus {
  outline: none;
}

/**
 * adds resets for links that are not covered by reset-and-normalize base
 */
a {
  color: inherit;
  text-decoration: none;
}
a:-moz-focusring, a:focus {
  outline: none;
}

/**
 * Based on
 *
 *  - reset.css 2.0 by Eric Meyer
      (public domain)
 *    http://meyerweb.com/eric/tools/css/reset/
 *
 *  - normalize.css 8.0.1 by Nicolas Gallagher and Jonathan Neal
 *    (licensed under MIT)
 *    https://github.com/necolas/normalize.css
 *
 *  - Based on Reboot from Bootstrap 4.2.1
 *    (licensed under MIT)
 *    https://github.com/twbs/bootstrap
 */
/**
 * IE10+ doesn't honor `<meta name='viewport'>` in some cases
 */
@-ms-viewport {
  width: device-width;
}
/**
 * general reset
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
main {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/**
 * HTML5 display-role reset for older browsers
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main,
summary {
  display: block;
}

/**
 * inherit box model for all elements
 */
*,
*:before,
*:after {
  box-sizing: inherit;
}

/**
 * html root rules
 * 1. set border-box for inheritance
 * 2. avoid 300ms click delay on touch devices that support the `touch-action`
 *    CSS property
 * 3. Prevent adjustments of font size after orientation changes in IE, on
 *    Windows Phone and iOS.
 * 4. Setting @viewport causes scrollbars to overlap content in IE11 and Edge,
 *    so we force a non-overlapping, non-auto-hiding scrollbar to counteract.
 * 5. Change the default tap highlight to be completely transparent in iOS.
 */
html {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  /* 3 */
  /* 4 */
  /* 5 */
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  touch-action: manipulation;
}

/**
 * body rules
 * 3. Set an explicit initial text-align value so that we can later use the
 *    `inherit` value on things like `<th>` elements.
 */
body {
  text-align: left;
}

/**
 * Lists
 */
ol,
ul {
  list-style: none;
}

/**
 * Quotes
 */
blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/**
 * Tables
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  caption-side: bottom;
}

/**
 * Table Headers
 * 1. Matches default `<td>` alignment by inheriting from the `<body>`, or the
 *    closest parent with a set `text-align`.
 */
th {
  /* 1 */
  text-align: inherit;
}

/**
 * Horizontal Lines
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  /* 1 */
  box-sizing: content-box;
  height: 0;
  /* 2 */
  overflow: visible;
}

/**
 * Preformatted Text
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Don't allow content to break outside
 * 3. We have @viewport set which causes scrollbars to overlap content in IE11
 *    and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to
 *    counteract.
 */
pre,
code,
kbd,
samp {
  /* 1 */
  font-family: monospace, monospace;
}

pre {
  /* 2 */
  overflow: auto;
  /* 3 */
  -ms-overflow-style: scrollbar;
}

/**
 * Links
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  /* 1 */
  background-color: transparent;
  /* 2 */
  -webkit-text-decoration-skip: objects;
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 * 3. Add explicit cursor to indicate changed behavior.
 * 4. Prevent the text-decoration to be skipped.
 */
abbr[title] {
  /* 1 */
  /*border-bottom: none;*/
  cursor: help;
  /* 2 */
  text-decoration: underline;
  text-decoration: underline dotted;
  /* 3 */
  /* 4 */
  text-decoration-skip-ink: none;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/**
 * Hide SVG overflow in IE
 */
svg:not(:root) {
  overflow: hidden;
}

/**
 * Remove the default `border-radius` that macOS Chrome adds.
 * Details at https://github.com/twbs/bootstrap/issues/24093
 */
button {
  border-radius: 0;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 * Credit: https://github.com/suitcss/base/
 */
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/**
 * form element resets
 * 1. Remove the margin in Firefox and Safari
 * 2. inherit font rules
 */
input,
button,
select,
optgroup,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type='reset'],
[type='submit'],
[type='button'] {
  /* 2 */
  -webkit-appearance: button;
}

/**
 * Remove the default appearance of temporal inputs to avoid a Mobile Safari
 * bug where setting a custom line-height prevents text from being vertically
 * centered within the input.
 * See https://bugs.webkit.org/show_bug.cgi?id=139848
 * and https://github.com/twbs/bootstrap/issues/11266
 */
input[type='date'],
input[type='time'],
input[type='datetime-local'],
input[type='month'] {
  -webkit-appearance: listbox;
}

/**
 * 1. Remove the default vertical scrollbar in IE.
 * 2. Textareas should really only resize vertically so they don't break their
 *    (horizontal) containers.
 */
textarea {
  overflow: auto;
  resize: vertical;
}

/**
 * Show the overflow in IE.
 */
button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button,
select {
  text-transform: none;
}

/**
 * Remove the inheritance of word-wrap in Safari.
 * See https://github.com/twbs/bootstrap/issues/24990
 */
select {
  word-wrap: normal;
}

/**
 * Remove inner border and padding from Firefox, but don't restore the outline
 * like Normalize.
 */
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * 1. Add the correct box sizing in IE 10-
 * 2. Remove the padding in IE 10-
 */
input[type='radio'],
input[type='checkbox'] {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * Suppress the focus outline on elements that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 * Credit: https://github.com/suitcss/base
 */
[tabindex='-1']:focus {
  outline: 0 !important;
}

/**
 * Browsers set a default `min-width: min-content` on fieldsets,
 * unlike e.g. `<div>`s, which have `min-width: 0` by default.
 * So we reset that to ensure fieldsets behave more like a standard block element.
 * See https://github.com/twbs/bootstrap/issues/12359
 * and https://html.spec.whatwg.org/multipage/#the-fieldset-and-legend-elements
 */
fieldset {
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Set display to block for all browsers
 */
legend {
  /* 2 */
  color: inherit;
  /* 3 */
  display: block;
  /* 1 */
  max-width: 100%;
  white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type='checkbox'],
[type='radio'] {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type='search'] {
  /* 1 */
  -webkit-appearance: textfield;
  /* 2 */
  outline-offset: -2px;
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type='search']::-webkit-search-cancel-button,
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  font: inherit;
}

/**
 * Correct element display for output
 */
output {
  display: inline-block;
}

/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

[hidden] {
  display: none;
}

/*
* Ab hier sind nur noch Funktionen, Mixins, oder Generation von Klassen
*/
:root {
  --color-mekos_blue: #00b5ff;
  --color-blue: #00b5ff;
  --color-grey_1: #e1e1e1;
  --color-grey_2: #f9f9f9;
  --color-grey_3: white;
  --color-grey_4: #f3f3f3;
  --color-mekos_blue2: #99e1ff;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-white-tr: rgba(255, 255, 255, 0.95);
}

.c-mekos_blue {
  color: var(--color-mekos_blue);
}

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

.c-blue, .typo-sub, .htmleditor blockquote {
  color: var(--color-blue);
}

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

.c-grey_1 {
  color: var(--color-grey_1);
}

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

.c-grey_2 {
  color: var(--color-grey_2);
}

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

.c-grey_3 {
  color: var(--color-grey_3);
}

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

.c-grey_4 {
  color: var(--color-grey_4);
}

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

.c-mekos_blue2 {
  color: var(--color-mekos_blue2);
}

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

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

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

.c-white {
  color: var(--color-white);
}

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

.c-white-tr {
  color: var(--color-white-tr);
}

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

html {
  font-size: 16px;
  line-height: 22px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

.row__inner {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
  position: relative;
}

.row__inner--sm {
  max-width: 800px;
}

.row__inner--tw {
  max-width: 1024px;
}

.row__inner--lg {
  max-width: 100%;
}

/*
.col-1{
  width:span(12);
  @include breakpoint(small){
    width:span(10);
  }
  @include breakpoint(medium){
    width:susy-span(6 of 12);
    width: percentage(2/12);
  }
  @include breakpoint(lg){
    width:span(2);
  }
}*/
/*
* Ab hier sind nur noch Funktionen, Mixins, oder Generation von Klassen
*
 */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .col-1 {
    width: 6.7796610169%;
  }
}
@media (min-width: 768px) {
  .col-2 {
    width: 15.2542372881%;
  }
}
@media (min-width: 768px) {
  .col-3 {
    width: 23.7288135593%;
  }
}
@media (min-width: 768px) {
  .col-4 {
    width: 32.2033898305%;
  }
}
@media (min-width: 768px) {
  .col-5 {
    width: 40.6779661017%;
  }
}
@media (min-width: 768px) {
  .col-6 {
    width: 49.1525423729%;
  }
}
@media (min-width: 768px) {
  .col-7 {
    width: 57.6271186441%;
  }
}
@media (min-width: 768px) {
  .col-8 {
    width: 66.1016949153%;
  }
}
@media (min-width: 768px) {
  .col-9 {
    width: 74.5762711864%;
  }
}
@media (min-width: 768px) {
  .col-10 {
    width: 83.0508474576%;
  }
}
@media (min-width: 768px) {
  .col-11 {
    width: 91.5254237288%;
  }
}
@media (min-width: 768px) {
  .col-12 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-1-p {
    width: 8.3333333333%;
  }
}
@media (min-width: 768px) {
  .col-2-p {
    width: 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-3-p {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .col-4-p {
    width: 33.3333333333%;
  }
}
@media (min-width: 768px) {
  .col-5-p {
    width: 41.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-6-p {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .col-7-p {
    width: 58.3333333333%;
  }
}
@media (min-width: 768px) {
  .col-8-p {
    width: 66.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-9-p {
    width: 75%;
  }
}
@media (min-width: 768px) {
  .col-10-p {
    width: 83.3333333333%;
  }
}
@media (min-width: 768px) {
  .col-11-p {
    width: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-12-p {
    width: 100%;
  }
}
@media (min-width: 320px) {
  .col-sm-1 {
    width: 6.7796610169%;
  }

  .col-sm-2 {
    width: 15.2542372881%;
  }

  .col-sm-3 {
    width: 23.7288135593%;
  }

  .col-sm-4 {
    width: 32.2033898305%;
  }

  .col-sm-5 {
    width: 40.6779661017%;
  }

  .col-sm-6 {
    width: 49.1525423729%;
  }

  .col-sm-7 {
    width: 57.6271186441%;
  }

  .col-sm-8 {
    width: 66.1016949153%;
  }

  .col-sm-9 {
    width: 74.5762711864%;
  }

  .col-sm-10 {
    width: 83.0508474576%;
  }

  .col-sm-11 {
    width: 91.5254237288%;
  }

  .col-sm-12 {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    width: 6.7796610169%;
  }

  .col-md-2 {
    width: 15.2542372881%;
  }

  .col-md-3 {
    width: 23.7288135593%;
  }

  .col-md-4 {
    width: 32.2033898305%;
  }

  .col-md-5 {
    width: 40.6779661017%;
  }

  .col-md-6 {
    width: 49.1525423729%;
  }

  .col-md-7 {
    width: 57.6271186441%;
  }

  .col-md-8 {
    width: 66.1016949153%;
  }

  .col-md-9 {
    width: 74.5762711864%;
  }

  .col-md-10 {
    width: 83.0508474576%;
  }

  .col-md-11 {
    width: 91.5254237288%;
  }

  .col-md-12 {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .col-lg-1 {
    width: 6.7796610169%;
  }

  .col-lg-2 {
    width: 15.2542372881%;
  }

  .col-lg-3 {
    width: 23.7288135593%;
  }

  .col-lg-4 {
    width: 32.2033898305%;
  }

  .col-lg-5 {
    width: 40.6779661017%;
  }

  .col-lg-6 {
    width: 49.1525423729%;
  }

  .col-lg-7 {
    width: 57.6271186441%;
  }

  .col-lg-8 {
    width: 66.1016949153%;
  }

  .col-lg-9 {
    width: 74.5762711864%;
  }

  .col-lg-10 {
    width: 83.0508474576%;
  }

  .col-lg-11 {
    width: 91.5254237288%;
  }

  .col-lg-12 {
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xlg-1 {
    width: 6.7796610169%;
  }

  .col-xlg-2 {
    width: 15.2542372881%;
  }

  .col-xlg-3 {
    width: 23.7288135593%;
  }

  .col-xlg-4 {
    width: 32.2033898305%;
  }

  .col-xlg-5 {
    width: 40.6779661017%;
  }

  .col-xlg-6 {
    width: 49.1525423729%;
  }

  .col-xlg-7 {
    width: 57.6271186441%;
  }

  .col-xlg-8 {
    width: 66.1016949153%;
  }

  .col-xlg-9 {
    width: 74.5762711864%;
  }

  .col-xlg-10 {
    width: 83.0508474576%;
  }

  .col-xlg-11 {
    width: 91.5254237288%;
  }

  .col-xlg-12 {
    width: 100%;
  }
}
@media (min-width: 320px) {
  .col-sm-1-p {
    width: 8.3333333333%;
  }

  .col-sm-2-p {
    width: 16.6666666667%;
  }

  .col-sm-3-p {
    width: 25%;
  }

  .col-sm-4-p {
    width: 33.3333333333%;
  }

  .col-sm-5-p {
    width: 41.6666666667%;
  }

  .col-sm-6-p {
    width: 50%;
  }

  .col-sm-7-p {
    width: 58.3333333333%;
  }

  .col-sm-8-p {
    width: 66.6666666667%;
  }

  .col-sm-9-p {
    width: 75%;
  }

  .col-sm-10-p {
    width: 83.3333333333%;
  }

  .col-sm-11-p {
    width: 91.6666666667%;
  }

  .col-sm-12-p {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1-p {
    width: 8.3333333333%;
  }

  .col-md-2-p {
    width: 16.6666666667%;
  }

  .col-md-3-p {
    width: 25%;
  }

  .col-md-4-p {
    width: 33.3333333333%;
  }

  .col-md-5-p {
    width: 41.6666666667%;
  }

  .col-md-6-p {
    width: 50%;
  }

  .col-md-7-p {
    width: 58.3333333333%;
  }

  .col-md-8-p {
    width: 66.6666666667%;
  }

  .col-md-9-p {
    width: 75%;
  }

  .col-md-10-p {
    width: 83.3333333333%;
  }

  .col-md-11-p {
    width: 91.6666666667%;
  }

  .col-md-12-p {
    width: 100%;
  }
}
@media (min-width: 960px) {
  .col-lg-1-p {
    width: 8.3333333333%;
  }

  .col-lg-2-p {
    width: 16.6666666667%;
  }

  .col-lg-3-p {
    width: 25%;
  }

  .col-lg-4-p {
    width: 33.3333333333%;
  }

  .col-lg-5-p {
    width: 41.6666666667%;
  }

  .col-lg-6-p {
    width: 50%;
  }

  .col-lg-7-p {
    width: 58.3333333333%;
  }

  .col-lg-8-p {
    width: 66.6666666667%;
  }

  .col-lg-9-p {
    width: 75%;
  }

  .col-lg-10-p {
    width: 83.3333333333%;
  }

  .col-lg-11-p {
    width: 91.6666666667%;
  }

  .col-lg-12-p {
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xlg-1-p {
    width: 8.3333333333%;
  }

  .col-xlg-2-p {
    width: 16.6666666667%;
  }

  .col-xlg-3-p {
    width: 25%;
  }

  .col-xlg-4-p {
    width: 33.3333333333%;
  }

  .col-xlg-5-p {
    width: 41.6666666667%;
  }

  .col-xlg-6-p {
    width: 50%;
  }

  .col-xlg-7-p {
    width: 58.3333333333%;
  }

  .col-xlg-8-p {
    width: 66.6666666667%;
  }

  .col-xlg-9-p {
    width: 75%;
  }

  .col-xlg-10-p {
    width: 83.3333333333%;
  }

  .col-xlg-11-p {
    width: 91.6666666667%;
  }

  .col-xlg-12-p {
    width: 100%;
  }
}
.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.flex--col {
  flex-direction: column;
}
.flex--full {
  justify-content: space-between;
}
.flex--c-full {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  margin: auto;
}

/* Hide for both screenreaders and browsers
css-discuss.incutio.com/wiki/Screenreader_Visibility */
/* Hide only visually, but have it available for screenreaders
www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden {
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}

/* Hide visually and from screenreaders, but maintain layout */
.block {
  display: block;
  height: auto;
  width: 100%;
}

html {
  font-family: "Gotham Rounded A", "Gotham Rounded B", book, sans-serif;
}

.typo-2-l, .typo-h1 {
  font-size: 28px;
  line-height: 35px;
  font-family: 'Gotham Rounded A', 'Gotham Rounded B', light, sans-serif;
  font-weight: normal;
}

.typo-2, .typo-h1 strong {
  font-size: 28px;
  line-height: 35px;
}

.typo-4, .primary__main, .footer a {
  font-size: 13px;
  line-height: 26px;
}

.typo-5 {
  font-size: 22px;
  line-height: 30px;
}

.typo-3, .btn--contact, .userform .Actions
input.action {
  font-size: 18px;
  line-height: 21px;
}

.typo-8-l, .typo-sub {
  font-size: 12px;
  line-height: 12px;
  font-family: 'Gotham Rounded A', 'Gotham Rounded B', light, sans-serif;
  font-weight: normal;
}

.typo-d {
  font-size: 16px;
  line-height: 22px;
}

.typo-h1 {
  padding-bottom: 55px;
}

.typo-sub {
  display: inline-block;
  padding-bottom: 8px;
  position: relative;
  text-transform: uppercase;
}
.typo-sub:after {
  background: var(--color-blue);
  bottom: 0;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100px;
}
.typo-sub.c-grey_2:after {
  background: var(--color-grey_2);
}
.typo-sub.c-white:after {
  background: var(--color-white);
}
.typo-sub + .typo-h1 {
  margin-top: 28px;
}
.typo-sub.typo-h1--margin {
  margin-bottom: 55px;
}

/*mobile nav*/
.mobile__main {
  font-size: 18px;
  line-height: 21px;
}

.topnav__link {
  font-size: 13px;
  line-height: 26px;
}

.htmleditor ul {
  list-style: disc;
  margin-left: 2em;
}
.htmleditor p + ul, .htmleditor p + p, .htmleditor blockquote + p, .htmleditor p + img, .htmleditor ul + p, .htmleditor h2 + p, .htmleditor h2 + ul, .htmleditor ul + blockquote {
  margin-top: 1em;
}
.htmleditor img {
  display: block;
}
.htmleditor a {
  display: inline-block;
  padding-right: 10px;
  text-decoration: underline;
}
.htmleditor a svg {
  display: inline-block;
  left: 5px;
  position: relative;
  top: 2px;
}
.htmleditor img {
  margin-left: auto;
  margin-right: 0;
}
.htmleditor .ss-htmleditorfield-file.image {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

figcaption {
  font-size: 16px;
  line-height: 22px;
}

a.link:link, .el-news-ticker__more a:link, a.link:visited, .el-news-ticker__more a:visited {
  color: var(--color-blue);
}
a.link:hover, .el-news-ticker__more a:hover, a.link:focus, .el-news-ticker__more a:focus {
  color: var(--color-black);
}

.pswp__custom-caption {
  background: var(--color-blue);
  bottom: 16px;
  color: #fff;
  font-size: 16px;
  left: 50%;
  max-width: 400px;
  padding: 2px 8px;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 32px);
}

.pswp__custom-caption a {
  color: #fff;
  text-decoration: underline;
}

.hidden-caption-content {
  display: none;
}

.no-scroll {
  overflow: hidden;
}

body.fixed-layer {
  -webkit-overflow-scrolling: touch;
  overflow-y: hidden;
}

.footer {
  padding: 2em 0 4em 0;
}
@media (min-width: 960px) {
  .footer__holder {
    display: flex;
    justify-content: space-between;
    position: relative;
  }
}
.footer__nav {
  padding-bottom: 1em;
  position: relative;
}
@media (min-width: 960px) {
  .footer__nav {
    padding-bottom: 0em;
    top: .75em;
  }
}
.footer__nav li {
  display: inline-block;
  margin-bottom: 1.5em;
  margin-right: 2em;
}
.footer__images {
  padding: 1em 15px;
}
.footer__images a, .footer__images img {
  display: block;
  width: 10em;
}

body {
  padding-top: 70px;
}
@media (min-width: 960px) {
  body {
    padding-top: 114px;
  }
}

.header {
  background: var(--color-grey_2);
  height: 70px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 102;
}
@media (min-width: 960px) {
  .header {
    height: 114px;
  }
}
.header__main {
  align-items: flex-end;
  display: flex;
  height: calc(100% - 15px);
  justify-content: space-between;
}

.mt-1 {
  margin-top: 1em;
}

.mt-2 {
  margin-top: 2em;
}

.mt-3 {
  margin-top: 3em;
}

.mt-4 {
  margin-top: 4em;
}

.primary {
  display: none;
  width: 76%;
}
@media (min-width: 960px) {
  .primary {
    display: block;
  }
}
.primary ul.main {
  display: flex;
  justify-content: space-between;
}
.primary ul.main li.main__link {
  width: 18.5%;
  margin-left: 1.5%;
}
.primary .subnav {
  display: none;
  left: -10px;
  padding: 30px 0px;
  position: absolute;
  top: 15px;
  width: calc(100% + 20px);
}
.primary .subnav .inner {
  background: var(--color-white-tr);
  padding: 10px;
}
.primary__main {
  display: block;
  position: relative;
}
.primary__main:before {
  background: var(--color-black);
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.primary .with-sub {
  position: relative;
}
.primary .with-sub:hover .subnav, .primary .with-sub:focus .subnav {
  display: block;
}
.primary .main__sub a {
  display: block;
  padding: .25em 0;
  position: relative;
}
.primary .main__sub a:before {
  background: var(--color-black);
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.primary .main__sub a:before {
  top: 0;
}
.primary .main__sub li.primary__sub--list {
  position: relative;
}
.primary .main__sub li.primary__sub--list.closed .icon--triangle {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: 300ms linear all;
}
.primary .main__sub li.primary__sub--list.open .icon--triangle:after {
  border-color: #00b5ff transparent;
}
.primary .main__sub .open-sub__sub:hover, .primary .main__sub .open-sub__sub:focus {
  cursor: pointer;
}
.primary .main__sub__sub span {
  display: inline-block;
  padding-left: .75em;
}

/*
Farben aktiv etc.
 */
a:link, a:visited {
  color: var(--color-black);
}
a:hover, a:focus {
  color: var(--color-mekos_blue);
}

.main__link.section .primary__main, .main__link.current .primary__main {
  color: var(--color-mekos_blue);
}

.current.primary__sub--list .primary__sub, .section.primary__sub--list .primary__sub {
  color: var(--color-mekos_blue);
}

.current.primary__sub__sub--list .primary__sub__sub, .section.primary__sub__sub--list .primary__sub__sub {
  color: var(--color-mekos_blue);
}

.social--nav li {
  display: inline-block;
  margin-right: 1em;
}
.social--nav .icon--link {
  display: block;
  height: 40px;
  width: 40px;
}
.social--nav .icon--link svg {
  display: block;
  height: 100%;
  width: 100%;
}
.social--nav .icon--link .icon--facebook__inner, .social--nav .icon--link .icon--instagram__inner, .social--nav .icon--link .icon--linkedin__inner, .social--nav .icon--link .icon--xing__inner {
  fill: #000000;
}
.social--nav .icon--link:hover .icon--facebook__inner, .social--nav .icon--link:hover .icon--instagram__inner, .social--nav .icon--link:hover .icon--linkedin__inner, .social--nav .icon--link:hover .icon--xing__inner, .social--nav .icon--link:focus .icon--facebook__inner, .social--nav .icon--link:focus .icon--instagram__inner, .social--nav .icon--link:focus .icon--linkedin__inner, .social--nav .icon--link:focus .icon--xing__inner {
  fill: var(--color-blue);
}

.topnav {
  display: none;
}
@media (min-width: 960px) {
  .topnav {
    display: block;
    position: absolute;
    top: .5em;
    right: 57px;
  }
}
.topnav a:link, .topnav a:visited {
  color: var(--color-black);
}
.topnav a:focus, .topnav a:hover {
  color: var(--color-blue);
}

.mobile-nav-wrapper {
  animation-fill-mode: forwards;
  background-color: var(--color-mekos_blue);
  color: var(--color-white);
  height: 100vh;
  left: 0;
  overflow-x: scroll;
  padding-top: 114px;
  position: fixed;
  text-transform: uppercase;
  top: 0;
  transform: translateY(-100%);
  visibility: hidden;
  width: 100%;
  z-index: 100;
}
@media (min-width: 960px) {
  .mobile-nav-wrapper {
    display: none;
  }
}
.mobile-nav-wrapper .row__inner {
  padding-top: 2em;
}
.mobile-nav-wrapper__open {
  transform: translateY(0%);
  visibility: visible;
}
.mobile-nav-wrapper__postload {
  transition: all 0.4s ease-out 0s;
}

.mobile a {
  line-height: 1.5;
}
.mobile a:link, .mobile a:visited {
  color: var(--color-black);
}
.mobile a:hover, .mobile a:focus {
  color: var(--color-white);
}
.mobile a.current, .mobile a.section {
  color: var(--color-white);
}
.mobile .subnav {
  display: none;
  margin: .5em .5em 1em .5em;
}
.mobile .subnav li {
  padding-bottom: .5em;
}
.mobile__main {
  align-items: center;
  display: flex;
  height: 40px;
  position: relative;
  width: 100%;
}
.mobile .with-sub {
  border-bottom: 1px solid var(--color-black);
  margin-bottom: .5em;
  padding-top: .25em;
}
.mobile__third {
  padding-bottom: .25em;
}
.mobile .icon--triangle {
  height: 40px;
  width: 40px;
}
.mobile .icon--triangle:hover:after, .mobile .icon--triangle:focus:after {
  border-color: #fff transparent;
}
.mobile .with-sub.section .subnav {
  display: block;
}
.mobile .with-sub.section .icon--triangle:after {
  border-color: transparent transparent #fff transparent;
  border-width: 0 6px 6px 6px;
}

.mobile-nav-wrapper .social--nav {
  margin-top: 2em;
}
.mobile-nav-wrapper .social--nav a:hover .icon--facebook__inner, .mobile-nav-wrapper .social--nav a:hover .icon--instagram__inner, .mobile-nav-wrapper .social--nav a:hover .icon--linkedin__inner, .mobile-nav-wrapper .social--nav a:hover .icon--xing__inner, .mobile-nav-wrapper .social--nav a:focus .icon--facebook__inner, .mobile-nav-wrapper .social--nav a:focus .icon--instagram__inner, .mobile-nav-wrapper .social--nav a:focus .icon--linkedin__inner, .mobile-nav-wrapper .social--nav a:focus .icon--xing__inner {
  fill: var(--color-white) !important;
}

.mobile-btn {
  position: fixed;
  right: 10px;
  top: 4px;
  z-index: 110;
}
@media (min-width: 960px) {
  .mobile-btn {
    display: none;
  }
}

.hamburger-open .burger-icon {
  visibility: hidden;
}
.hamburger-open .burger-icon:before {
  opacity: 1;
  right: 0%;
  top: 50%;
  transform: rotate(-45deg);
  visibility: visible;
  width: 40px;
}
.hamburger-open .burger-icon:after {
  opacity: 1;
  right: 0%;
  top: 50%;
  transform: rotate(45deg);
  visibility: visible;
  width: 40px;
}

.btn {
  width: auto;
}
.btn--contact {
  position: fixed;
  bottom: 0;
  left: 75%;
  width: 186px;
  height: 50px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.btn--contact span {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
}
.btn--contact svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

.bg-blue .htmleditor p, .bg-blue .htmleditor a, .bg-gradient-blue .htmleditor p, .bg-gradient-blue .htmleditor a {
  color: var(--color-white);
}
.bg-blue .htmleditor .svg-item, .bg-gradient-blue .htmleditor .svg-item {
  fill: #fff;
}

.bg-gradient-grey {
  background: linear-gradient(to right, #ffffff, #f3f3f3);
}

.bg-gradient-greydark {
  background: linear-gradient(to right, #e1e1e1, #f9f9f9);
}

.bg-gradient-blue {
  background: linear-gradient(to right, #00b5ff, #99e1ff);
}

.userform input.text {
  border: none;
  position: relative;
  width: 100%;
}
.userform div.text {
  padding-top: 1em;
  position: relative;
}
.userform div.text label {
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}
.userform div.text:after {
  background: var(--color-blue);
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.userform ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: black;
  opacity: 1;
  /* Firefox */
}
.userform ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: black;
}
.userform div.file {
  padding: 3em 0;
}
.userform div.file label {
  display: block;
  padding-bottom: .5em;
}
.userform div.textarea {
  position: relative;
}
.userform div.textarea label {
  display: block;
  position: relative;
  width: 100%;
}
.userform div.textarea:after, .userform div.textarea label:before {
  background: var(--color-blue);
  bottom: 0;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.userform div.textarea textarea {
  border: none;
  width: 100%;
}
.userform div.CompositeField {
  padding: 3em 0 0 20px;
}
.userform div.CompositeField a {
  text-decoration: underline;
}
.userform div.checkbox {
  display: flex;
  padding-bottom: 2em;
}
.userform div.checkbox label {
  font-weight: normal;
}
.userform .Actions
input.action {
  color: var(--color-mekos_blue);
  border: 1px solid var(--color-mekos_blue);
  padding: 1em;
}
.userform .Actions
input.action:hover, .userform .Actions
input.action:focus {
  border: 1px solid var(--color-black);
  color: var(--color-black);
  cursor: pointer;
}

.icon--arrow {
  display: inline-block;
  height: 14px;
  width: 14px;
}
.icon--arrow--blue .icon--arrow__inner {
  fill: #00b5ff;
}
.icon--arrow--white .icon--arrow__inner {
  fill: #ffffff;
}
.icon--contact__inner {
  fill: #2E56E1;
}
.icon--blue-l__inner {
  fill: #00B5FF;
}
.icon--accordion {
  height: 28px;
  width: 16px;
}
.icon--blue {
  fill: #00b5ff;
}
.icon--white {
  fill: #ffffff;
}
.icon--triangle {
  height: 25px;
  position: absolute;
  right: 0;
  top: 0;
  width: 25px;
  transition: 300ms linear all;
}
.icon--triangle:after {
  border-color: #000 transparent;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  content: '';
  height: 0;
  position: absolute;
  right: calc(50% - 2px);
  top: calc(50% - 2px);
  width: 0;
}

.link--arrow svg {
  position: relative;
  top: 2px;
}

.icon--arrow--blue .icon--arrow__inner {
  fill: #00b5ff;
}

.svg-bus__text {
  fill: #fff;
}
.svg-bus__cont {
  fill: #00B5FF;
  mix-blend-mode: multiply;
  opacity: 1;
}
.svg-bus__cont:hover {
  mix-blend-mode: inherit;
  opacity: 1;
}

.el {
  padding-top: 50px;
  padding-bottom: 50px;
}

.el-full-image .picture, .el-full-image .img {
  display: block;
  width: 100%;
}
.el-full-image .img--1 {
  max-height: 450px;
  width: auto;
}
.el-full-image .figcaption {
  padding-top: .5em;
}

.el-content__inner .col-6 {
  padding-bottom: 1em;
}
@media (min-width: 768px) {
  .el-content__inner .col-6 {
    padding-bottom: 0em;
  }
}
@media (min-width: 768px) {
  .el-content__inner {
    display: flex;
    justify-content: space-between;
  }
}
.el-content .htmleditor .img--left {
  margin-left: 0;
  margin-right: 0;
}
.el-content .htmleditor .img--center {
  margin-left: auto;
  margin-right: auto;
}

.el-content--home {
  padding-top: 5.5em;
}
.el-content--home__c {
  padding-left: 0;
}
@media (min-width: 960px) {
  .el-content--home__c {
    padding-left: 8.5em;
  }
}
.el-content--home__i {
  display: flex;
  justify-content: flex-end;
  padding-top: 1em;
  text-align: center;
}
@media (min-width: 960px) {
  .el-content--home__i {
    padding-top: 0em;
  }
}
.el-content--home__i img {
  display: inline-block;
  margin: 0 auto;
  max-width: 80%;
}
@media (min-width: 960px) {
  .el-content--home__i img {
    margin: inherit;
    max-width: inherit;
  }
}

.el-partner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.el-partner__inner a {
  display: block;
}
.el-partner__inner a {
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 80%;
  flex-direction: column;
}
.el-partner__inner img {
  display: block;
  width: 100%;
}
.el-partner__inner li {
  position: relative;
}
.el-partner__inner li:before {
  content: ' ';
  display: block;
  padding-top: 100%;
  width: 100%;
}
.el-partner__inner li:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--color-black);
}
.el-partner__inner li:last-child:after {
  display: none;
}
.el-partner__info {
  display: inline-block;
  padding-top: 5px;
}
.el-partner__info svg {
  position: relative;
  top: 3px;
}

.el-news-ticker {
  margin: 2em 0;
}
@media (min-width: 768px) {
  .el-news-ticker__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.el-news-ticker__c {
  margin: 2em auto;
}
.el-news-ticker__entry {
  padding: .5em 0;
  position: relative;
}
@media (min-width: 768px) {
  .el-news-ticker__entry {
    width: 31%;
  }
}
.el-news-ticker__entry:before {
  top: 0;
}
@media (min-width: 768px) {
  .el-news-ticker__entry:before {
    content: '';
    height: 1px;
    width: 100%;
    position: absolute;
    left: 0;
    background: var(--color-blue);
  }
}
.el-news-ticker__entry:after {
  content: '';
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: var(--color-blue);
  bottom: 0;
}
.el-news-ticker__entry:first-of-type:before {
  content: '';
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: var(--color-blue);
}
.el-news-ticker__more {
  display: flex;
  justify-content: flex-end;
}
.el-news-ticker__more a:hover svg, .el-news-ticker__more a:focus svg {
  fill: #000;
}

.el-bus .typo-sub {
  margin-bottom: 20px;
}
.el-bus__l {
  display: none;
}
@media (min-width: 1400px) {
  .el-bus__l {
    display: block;
  }
}
.el-bus__m {
  display: none;
}
@media (min-width: 768px) {
  .el-bus__m {
    display: block;
  }
}
@media (min-width: 1400px) {
  .el-bus__m {
    display: none;
  }
}
.el-bus__l, .el-bus__m {
  width: 100%;
  position: relative;
}
.el-bus__l img, .el-bus__l svg, .el-bus__m img, .el-bus__m svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.el-bus__l:before, .el-bus__m:before {
  content: ' ';
  display: block;
  padding-top: 35.8333333333%;
  width: 100%;
}
.el-bus__m:before {
  padding-top: 50.5%;
}
@media (min-width: 768px) {
  .el-bus__s {
    display: none;
  }
}
.el-bus__s img {
  display: block;
  width: 100%;
}
.el-bus__s__inner {
  position: relative;
  padding-bottom: 25px;
  padding-top: 25px;
}
.el-bus__s__inner svg {
  position: absolute;
}
.el-bus__s__1 svg {
  width: 59%;
  height: auto;
  left: 0;
  top: 0;
}
.el-bus__s__1 img {
  padding-top: 15px;
}
.el-bus__s__2 svg {
  width: 40%;
  height: auto;
  bottom: 0;
  right: 0;
}
.el-bus__s__3 svg {
  width: 41%;
  height: auto;
  bottom: 0;
  left: 0;
}

.el-video__inner {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}
.el-video__inner iframe,
.el-video__inner object,
.el-video__inner embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.el-teaser {
  padding-top: 40px;
}
.el-teaser__inner {
  margin-bottom: 50px;
  margin-top: 20px;
  padding-top: 20px;
  position: relative;
}
.el-teaser__title {
  color: var(--color-blue);
  padding-bottom: 1em;
}
@media (min-width: 768px) {
  .el-teaser__title {
    color: var(--color-white);
    left: 40px;
    padding-bottom: 0;
    position: absolute;
    top: 40px;
    z-index: 2;
    z-index: 2;
  }
}
.el-teaser__img {
  position: relative;
}
.el-teaser__img img {
  display: block;
  width: 100%;
}
.el-teaser .svg-item {
  left: 0;
  mix-blend-mode: multiply;
  opacity: 1;
  position: absolute;
  top: -15px;
  width: 50%;
  z-index: 1;
}

.el-job-ticker__list {
  position: relative;
}
.el-job-ticker__list:last-child:after {
  content: '';
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: var(--color-blue);
  bottom: 0;
}
.el-job-ticker__list a {
  display: block;
  padding: .5em 0;
  position: relative;
}
.el-job-ticker__list a:before {
  content: '';
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: var(--color-blue);
  top: 0;
}

.el-accord__list {
  margin-top: 2em;
}
.el-accord__title {
  color: var(--color-blue);
  cursor: pointer;
  display: block;
  padding: .5em;
  padding-right: 35px;
  position: relative;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.el-accord__title span {
  padding-bottom: 0 !important;
}
.el-accord__title:before {
  content: '';
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: var(--color-blue);
  top: 0;
}
.el-accord__title svg {
  position: absolute;
  right: 10px;
  top: 10px;
  transform: rotate(0deg);
  transition: 0.5s;
}
.el-accord__content {
  padding: 1em;
}
@media (min-width: 768px) {
  .el-accord__content {
    display: flex;
    justify-content: space-between;
  }
}
.el-accord__entry {
  background-color: white;
  position: relative;
  transition: background-color 1000ms linear;
}
.el-accord__entry.open {
  background-image: linear-gradient(to right, #00b5ff, #99e1ff);
  transition: background-color 1000ms linear;
}
.el-accord__entry.open .el-accord__title {
  color: var(--color-white);
}
.el-accord__entry.open svg {
  transform: rotate(180deg);
  transition: 0.5s;
}
.el-accord__entry:last-child:after {
  content: '';
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: var(--color-blue);
  bottom: 0;
}
.el-accord a {
  color: var(--color-white);
  text-decoration: underline;
}

.el-contact .svg {
  display: block;
  height: 80%;
  width: 80%;
}
.el-contact__inner {
  display: flex;
  justify-content: space-between;
}
.el-contact__img {
  display: none;
}
@media (min-width: 768px) {
  .el-contact__img {
    display: block;
  }
}
.el-contact .typo-sub:after {
  background: var(--color-white);
}

.el-page-list__list {
  position: relative;
  width: 100%;
}
.el-page-list__list:last-child:after {
  content: '';
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: var(--color-blue);
  bottom: 0;
}
.el-page-list__list a {
  display: block;
  padding: .5em 0;
  position: relative;
}
.el-page-list__list a:before {
  content: '';
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  background: var(--color-blue);
  top: 0;
}

@media (min-width: 768px) {
  .el-nbor__inner {
    display: grid;
    gap: 10px 10px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .el-nbor__inner--half {
    grid-template-columns: 1fr 1fr;
  }
}
.el-nbor img {
  display: block;
  width: 100%;
  height: auto;
}
.el-nbor__entry {
  margin-bottom: 20px;
  overflow-x: hidden;
  padding: 10px 0;
  position: relative;
}
.el-nbor__entry svg {
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  z-index: 1;
}
.el-nbor__entry:nth-child(1) svg, .el-nbor__entry:nth-child(4) svg {
  left: auto;
  right: -30%;
  top: 0;
  transform: scaleX(-1);
  width: 114%;
}
.el-nbor__entry:nth-child(1) .el-nbor__title, .el-nbor__entry:nth-child(4) .el-nbor__title {
  right: 20px;
  top: 10%;
}
.el-nbor__entry:nth-child(2) svg, .el-nbor__entry:nth-child(5) svg {
  bottom: 0;
  top: auto;
  transform: scaleY(-1);
  width: 70%;
}
.el-nbor__entry:nth-child(2) .el-nbor__title, .el-nbor__entry:nth-child(5) .el-nbor__title {
  bottom: 10%;
  left: 10px;
}
.el-nbor__entry:nth-child(3) svg, .el-nbor__entry:nth-child(6) svg {
  left: auto;
  right: 0%;
  top: 0;
  transform: scale(-1);
  width: 65%;
}
.el-nbor__entry:nth-child(3) .el-nbor__title, .el-nbor__entry:nth-child(6) .el-nbor__title {
  left: 52%;
  top: 40%;
}
.el-nbor__title {
  color: var(--color-white);
  position: absolute;
  z-index: 2;
}

.el-partner-teaser {
  padding-top: 110px;
}
.el-partner-teaser .typo-sub {
  margin-bottom: 20px;
}
.el-partner-teaser__content {
  padding-top: 20px;
  padding-bottom: 20px;
}
.el-partner-teaser__inner {
  display: flex;
  justify-content: space-between;
}
.el-partner-teaser__img {
  text-align: right;
}
.el-partner-teaser__img img {
  display: inline-block;
  width: 60%;
}

/*# sourceMappingURL=screen.css.map */
