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

#headerWrapper {
  position: fixed;
  width: 100%;
  background: rgba(128, 128, 128, 0.1);
  z-index: 30000;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#headerWrapper header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.9);
}
#headerWrapper header #headerLogo {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  height: 80px;
  margin-left: 80px;
  z-index: 20000;
  padding: 20px 0;
}
#headerWrapper header #headerLogo img {
  max-height: 100%;
  width: auto;
}
#headerWrapper header #stickyContact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  position: relative;
  text-align: right;
  z-index: 20000;
  font-size: 1.1rem;
}
#headerWrapper header #stickyContact ul.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 100%;
  list-style: none;
}
#headerWrapper header #stickyContact ul.menu li {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
#headerWrapper header #stickyContact ul.menu li a {
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: inline-block;
  height: 100%;
  padding: 0 30px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 1.2rem;
}
#headerWrapper header #stickyContact ul.menu li a:hover {
  color: #C22132;
}
#headerWrapper header #stickyContact .wpml-ls {
  padding: 0;
  border: 0 none;
}
#headerWrapper header #stickyContact .wpml-ls ul {
  position: relative;
  height: 100%;
}
#headerWrapper header #stickyContact .wpml-ls ul li.wpml-ls-item {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
}
#headerWrapper header #stickyContact .wpml-ls ul li.wpml-ls-item a.wpml-ls-link {
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  height: 100%;
  padding: 0 25px;
  text-decoration: none;
  color: black;
  font-weight: normal;
  font-size: 1.2rem;
  border-left: 1px solid rgba(128, 128, 128, 0.1);
}
#headerWrapper header #stickyContact .wpml-ls ul li.wpml-ls-item a.wpml-ls-link:after {
  -o-transition: 0.15s;
  -ms-transition: 0.15s;
  -moz-transition: 0.15s;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  content: "";
  position: absolute;
  height: 100%;
  width: 0;
  bottom: 0;
  left: 0;
  background: #C22132;
  z-index: -1;
}
#headerWrapper header #stickyContact .wpml-ls ul li.wpml-ls-item a.wpml-ls-link:hover span {
  color: white !important;
}
#headerWrapper header #stickyContact .wpml-ls ul li.wpml-ls-item a.wpml-ls-link:hover:after {
  width: 100%;
}
#headerWrapper header #stickyContact .textwidget {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: middle;
  -ms-flex-align: middle;
  -webkit-align-items: middle;
  -moz-align-items: middle;
  align-items: middle;
  height: 100%;
}
#headerWrapper header #stickyContact .textwidget .phone {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  color: black;
  padding: 0 25px;
  height: 100%;
  border-left: 1px solid rgba(128, 128, 128, 0.1);
}
#headerWrapper header #stickyContact .textwidget .phone svg {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  z-index: 10;
}
#headerWrapper header #stickyContact .textwidget .phone span {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  z-index: 10;
  margin-left: 0;
  max-width: 0;
  height: 0;
  overflow: hidden;
  white-space: nowrap;
  display: none;
}
#headerWrapper header #stickyContact .textwidget a {
  position: relative;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  color: black;
  text-decoration: none;
  padding: 0 25px;
  height: 100%;
  border-left: 1px solid rgba(128, 128, 128, 0.1);
}
#headerWrapper header #stickyContact .textwidget a.mail {
  font-size: 21px;
}
#headerWrapper header #stickyContact .textwidget a.mail span {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: white;
  z-index: 10;
  margin-left: 0;
  max-width: 0;
  height: 0;
  overflow: hidden;
  white-space: nowrap;
  display: none;
}
#headerWrapper header #stickyContact .textwidget a:hover {
  color: #C22132;
  cursor: pointer;
}
#headerWrapper header #stickyContact .textwidget a svg {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  z-index: 10;
}
#headerWrapper header #stickyContact .textwidget a span {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  z-index: 10;
  margin-left: 20px;
}
#headerWrapper header #stickyContact .textwidget a:after {
  -o-transition: 0.15s;
  -ms-transition: 0.15s;
  -moz-transition: 0.15s;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  content: "";
  position: absolute;
  height: 100%;
  width: 0;
  bottom: 0;
  left: 0;
  background: #C22132;
}
#headerWrapper header #stickyContact .textwidget a:hover {
  color: white !important;
}
#headerWrapper header #stickyContact .textwidget a:hover:after {
  width: 100%;
}
#headerWrapper.scrolled {
  -webkit-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.3);
}
#headerWrapper.scrolled header {
  background: white;
}

.single-vacancy #headerWrapper {
  position: absolute;
  border-bottom: 1px solid rgba(128, 128, 128, 0.1);
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}
.single-vacancy #headerWrapper header #stickyContact {
  margin-right: 90px;
  border-right: 1px solid rgba(128, 128, 128, 0.1);
}
.single-vacancy #headerWrapper header #stickyContact .textwidget a.social {
  display: none;
}
.single-vacancy #headerWrapper header #stickyContact .textwidget .phone span {
  max-width: 100%;
  margin-left: 20px;
  height: auto;
}
.single-vacancy #headerWrapper header #stickyContact .textwidget a.mail span {
  max-width: 100%;
  margin-left: 20px;
  height: auto;
  color: black;
}
.single-vacancy #headerWrapper header #stickyContact .textwidget a.mail:hover {
  color: white !important;
}
.single-vacancy #headerWrapper header #stickyContact .textwidget a.mail:hover span {
  color: white;
}
.single-vacancy #headerWrapper header .externalVacancy {
  text-decoration: none;
  color: black;
  font-size: 1.1rem;
  align-self: center;
}
.single-vacancy #headerWrapper header .externalVacancy span {
  margin: 0 40px 0 20px;
}
.single-vacancy main {
  margin-top: 0;
  padding: 60px 80px 80px 80px;
}
.single-vacancy main h1 {
  margin-bottom: 5px;
}
.single-vacancy main h2 {
  margin: 20px 0 0 0;
}

footer {
  position: relative;
  padding: 40px 80px;
  width: 100vw;
  z-index: 550;
  background: #C22132;
  color: white;
  bottom: 0;
}
footer #footerMenu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
footer #footerMenu ul {
  list-style: none;
  margin-left: 80px;
}
footer #footerMenu ul li {
  display: inline-block;
}
footer #footerMenu ul li a {
  position: relative;
  margin: 0 20px 0 0;
  display: inline-block;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
}
footer #footerMenu ul li a:after {
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  top: 35px;
  height: 2px;
  background: white;
  opacity: 0;
}
footer #footerMenu ul li a:hover:after {
  top: 30px;
  opacity: 1;
}

#stage iframe {
  border: 0;
}
#stage iframe #watermark {
  display: none;
}

#clients #clients-list {
  margin: 0 auto;
  position: relative;
}
#clients #clients-list .border-line {
  display: block;
  clear: both;
  border-top: 1px solid rgba(128, 128, 128, 0.3);
}
#clients #clients-list .border-line.sm, #clients #clients-list .border-line.md {
  display: none;
}
@media (max-width: 991px) {
  #clients #clients-list .border-line.sm {
    display: block;
  }
  #clients #clients-list .border-line.md {
    display: none;
  }
}
@media (min-width: 992px) {
  #clients #clients-list .border-line.md {
    display: block;
  }
}
#clients #clients-list .client-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  min-height: 120px;
  outline: none;
  border-right: 1px solid rgba(128, 128, 128, 0.3);
  padding: 35px;
  float: left;
  width: 25%;
  transition-duration: 0.33s;
}
@media (max-width: 991px) {
  #clients #clients-list .client-item {
    width: 50%;
  }
  #clients #clients-list .client-item:nth-of-type(2n) {
    border-right: none;
  }
}
#clients #clients-list .client-item:nth-of-type(4n) {
  border-right: none;
}
#clients #clients-list .client-item .inner-content {
  width: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
#clients #clients-list .client-item .inner-content:after {
  height: 100%;
  content: "";
  display: block;
}
#clients #clients-list .client-item:hover {
  opacity: 0.6;
}

section .item-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
}
section .item-list li {
  margin-bottom: 5px;
  overflow: hidden;
}
section .item-list li:before {
  display: none;
}
section .item-list li a {
  display: block;
  padding: 25px;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  transition-duration: 0.2s;
  transition-property: background;
  background: rgba(128, 128, 128, 0.1);
  color: black;
}
section .item-list li a:hover {
  background: #C22132;
  color: #fff;
}
section .item-list li a:hover .meta-info {
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
section .item-list li a:hover .arrow {
  text-align: right;
  padding-right: 20px;
}
section .item-list li a:hover .arrow svg {
  opacity: 1;
}
section .item-list li .inner-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
section .item-list li .arrow {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 120px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 120px;
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: white;
  text-align: right;
  padding-right: 40px;
}
section .item-list li .arrow svg {
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}
section .meta-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  font-size: 13px;
  line-height: 15px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.1);
  margin-top: -7px;
}
section .meta-info .info {
  line-height: 24px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
section .meta-info .info svg {
  font-size: 18px;
  margin-left: 5px;
  position: relative;
  top: 2px;
  margin-right: 5px;
}
section .meta-info .info .author-name {
  white-space: nowrap;
}
section .meta-info .info .author-name:after {
  content: ",";
}
section .meta-info .info .author-name:last-child:after {
  content: "";
}
section .meta-info .sharing svg {
  font-size: 18px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}
section .main-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
section .main-info .image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 175px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 175px;
  -ms-flex: 0 0 175px;
  flex: 0 0 175px;
  padding-right: 20px;
}
section .main-info .image .thumbnail {
  width: 100%;
  background-size: cover;
  background-position: center;
}
section .main-info .image .thumbnail::before, section .main-info .image .thumbnail::after {
  content: "";
  display: table;
  clear: both;
  width: 1px;
  margin-left: -1px;
}
section .main-info .image .thumbnail::before {
  float: left;
  padding-bottom: 100%;
}
section .main-info .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
section .main-info .text h2, section .main-info .text h3 {
  margin: 0 0 10px 0;
}
section .main-info .text .subtitle {
  font-size: 1.1rem;
  line-height: 1.5rem;
}
section:nth-child(2n) .item-list li a {
  background: white;
}
section:nth-child(2n) .item-list li a:hover {
  background: #C22132;
}
section:nth-child(2n) .item-list li .arrow {
  color: white;
}

body.page-template-blog main {
  margin-top: 0;
}
body.page-template-blog main section .content-wrapper .section-content {
  margin: 0 auto;
  max-width: 1280px;
  padding: 80px 40px;
}
body.page-template-blog main section .content-wrapper .section-content h1, body.page-template-blog main section .content-wrapper .section-content h2 {
  margin: 40px 0 20px 0;
  padding: 0;
  color: #C22132;
}
body.page-template-blog main section .content-wrapper .section-content ul, body.page-template-blog main section .content-wrapper .section-content ol, body.page-template-blog main section .content-wrapper .section-content p {
  font-size: 1.1rem;
  line-height: 1.5rem;
  margin: 0 0 40px 0;
  padding: 0;
  max-width: 1200px;
}
body.page-template-blog main section .content-wrapper .section-content p {
  max-width: 1000px;
}

#team .member {
  position: relative;
  float: left;
  width: 25%;
  display: inline-block;
  overflow: hidden;
  cursor: default;
  border-right: 3px solid white;
  border-bottom: 3px solid white;
}
#team .member .memberpic {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -o-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -ms-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 2000ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-filter: saturate(0.6);
  /* Safari 6.0 - 9.0 */
  filter: saturate(0.6);
}
#team .member .memberpic::before, #team .member .memberpic::after {
  content: "";
  display: table;
  clear: both;
  width: 1px;
  margin-left: -1px;
}
#team .member .memberpic::before {
  float: left;
  padding-bottom: 100%;
}
#team .member:hover .memberpic {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
#team .member:hover .membertext {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
#team .member .membertext {
  position: absolute;
  bottom: 0px;
  width: 100%;
  display: block;
  padding: 15px 20px;
  font-size: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  -o-transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -ms-transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 600ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
#team .member .membertext .position {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 18px;
}
#team .member .membertext .info {
  font-size: 12px;
  line-height: 16px;
  font-weight: 300;
  margin-top: 10px;
  display: inline-block;
}
#team .member .membertext .info i {
  position: relative;
  margin-right: 5px;
}
#team .member .membertext .info a {
  color: #de2516;
  text-decoration: none;
}
#team .member .membertext .info a:hover {
  text-decoration: underline;
}

#contact #contact-form-wrapper .wpcf7 .ajax-loader {
  display: none;
}
#contact #contact-form-wrapper .wpcf7 .wpcf7-text {
  line-height: 20px;
  background: none;
  margin-bottom: 2%;
}
#contact #contact-form-wrapper .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
#contact #contact-form-wrapper .wpcf7 .wpcf7-acceptance label {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
#contact #contact-form-wrapper .wpcf7 .wpcf7-acceptance input {
  margin: 10px;
}
#contact #contact-form-wrapper .form-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
#contact #contact-form-wrapper .form-row span {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-right: 2%;
}
@media all and (max-width: 560px) {
  #contact #contact-form-wrapper .form-row span {
    margin-right: 0;
  }
}
#contact #contact-form-wrapper .form-row span:last-child {
  margin-right: 0;
}
@media all and (max-width: 560px) {
  #contact #contact-form-wrapper .form-row {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #contact #contact-form-wrapper .form-row.third {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
  }
}
#contact #contact-form-wrapper input:not([type=checkbox]), #contact #contact-form-wrapper textarea {
  outline: 0;
  text-shadow: none;
  margin: 0;
  width: 100%;
  border: 1px solid rgba(128, 128, 128, 0.3);
  font-size: 16px;
  font-weight: 300;
  padding: 5px 10px;
}
#contact #contact-form-wrapper input:not([type=checkbox])::placeholder, #contact #contact-form-wrapper textarea::placeholder {
  color: #000;
}
#contact #contact-form-wrapper input[type=submit] {
  width: 200px;
}
@media all and (max-width: 560px) {
  #contact #contact-form-wrapper input[type=submit] {
    margin-top: 15px;
  }
}
#contact #contact-form-wrapper input[type=checkbox] {
  -moz-appearance: checkbox;
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

.clearfix:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
}

.centered-vertical {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.boxed, .boxedFull, body #stage {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
}

.boxedFull, body #stage {
  max-width: 100%;
  padding: 0;
}

.centeredContent, body main #teaserWrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
}

a {
  color: #C22132;
}
a.bloglink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 10px 0;
  background: #C22132;
  padding: 5px 20px;
  border-radius: 7px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  width: auto;
}
a.bloglink .icon {
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  -moz-transition: 0.4s;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  top: 2px;
  margin-left: -20px;
  font-size: 10px;
  opacity: 0;
  display: inline;
}
@media screen and (-ms-high-contrast: none) {
  a.bloglink .icon {
    display: inline-block;
  }
}
a.bloglink:hover .icon {
  margin-left: 5px;
  opacity: 1;
}

code {
  font-size: 0.85rem;
  padding: 10px 25px;
  display: block;
  background: #f1f1f1;
  border-radius: 5px;
  border: 1px solid #ddd;
  margin: 10px 0 20px 0;
  word-wrap: break-word;
  white-space: break-spaces;
  max-width: 1000px;
}

img {
  max-width: 100%;
  height: auto;
}

* {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0 none;
  box-sizing: border-box;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  position: relative;
  min-height: 100vh;
  background: black;
}
body #stage {
  position: fixed;
  display: block;
  height: 100vh;
  z-index: 500;
  background: black;
}
body #stage div {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top 10% center;
}
body #stagecontent {
  position: fixed;
  bottom: 160px;
  left: 80px;
  color: black;
  transform: translateY(-100%);
  z-index: 520;
  max-width: 1400px;
  width: calc(100% - 160px);
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
}
body #stagecontent h1 {
  font-family: "Ubuntu";
  font-weight: 500;
  margin-bottom: 40px;
}
body #stagecontent h1 em {
  font-style: normal;
}
body #stagecontent h1 em:before {
  font-family: "Lexend Deca", sans-serif;
  content: "'";
}
body main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: top;
  -ms-flex-pack: top;
  -webkit-justify-content: top;
  -moz-justify-content: top;
  justify-content: top;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  position: relative;
  z-index: 10000;
  background: white;
  padding: 0;
  margin-top: calc(100vh - 80px);
}
body main.scrolled {
  -webkit-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.3);
}
body main .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 75px 0 100px 0;
}
body main .grid .entry {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  flex: 1 0 150px;
  align-items: center;
  margin-bottom: 25px;
}
body main .grid .entry .icon {
  font-size: 1.8rem;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #C22132;
  padding: 25px;
  color: white;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
body main .grid .entry .icon svg {
  margin: 0 auto;
}
body main .grid .entry .title {
  font-size: 1rem;
  line-height: 1.3rem;
  text-align: center;
}
body main .grid.images {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
}
body main .grid.images .entry {
  flex: 0 0 200px;
  margin-bottom: 50px;
}
body main .grid.images .entry .icon {
  background: none;
  padding: 0 20px;
  height: 50px;
  width: auto;
}
body main .grid.images .entry .icon img {
  width: auto;
  max-height: 75px;
  height: 100%;
}
body main section {
  width: 100vw;
  display: block;
}
body main section .content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  min-height: 25vh;
}
body main section .content-wrapper .section-headline {
  position: relative;
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 400px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 400px;
  -ms-flex: 0 0 400px;
  flex: 0 0 400px;
  background: #C22132;
  padding: 80px 40px 80px 80px;
}
body main section .content-wrapper .section-headline h1, body main section .content-wrapper .section-headline h2 {
  color: white;
  margin: 0;
}
body main section .content-wrapper .section-headline .triangle {
  position: absolute;
  z-index: 50;
  right: 0;
  top: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 200px 40px 0 0;
  border-color: #C22132 transparent transparent transparent;
  transform: translateX(100%);
}
body main section .content-wrapper .section-headline:after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("images/redlink-icon.png");
  z-index: 100;
}
body main section .content-wrapper .section-content {
  padding: 80px 80px 80px 140px;
  width: 100%;
  display: block;
}
body main section:nth-child(even) {
  background: rgba(128, 128, 128, 0.1);
}
body main section:nth-child(even) .content-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
body main section:nth-child(even) .content-wrapper .section-headline {
  position: relative;
  margin: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 400px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 400px;
  -ms-flex: 0 0 400px;
  flex: 0 0 400px;
  background: white;
  padding: 80px 40px 80px 80px;
}
body main section:nth-child(even) .content-wrapper .section-headline h1, body main section:nth-child(even) .content-wrapper .section-headline h2 {
  color: #C22132;
  margin: 0;
}
body main section:nth-child(even) .content-wrapper .section-headline .triangle {
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 200px 0 0 40px;
  border-color: transparent transparent transparent white;
  transform: translateX(100%);
}
body main section:nth-child(even) .content-wrapper .section-headline:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -80px;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("images/redlink-icon.png");
  transform: translate(50%, 50%);
  z-index: 100;
}
body main section:last-child .content-wrapper .section-headline:after {
  display: none;
}
body main #logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0 auto 20px auto;
  height: 20vh;
}
body main #logo img {
  width: auto;
  height: 100%;
}
body main h1 {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 40px;
  color: #C22132;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 3.2rem;
}
body main h1 + h2 {
  margin-top: 0;
}
body main h2 {
  text-align: left;
  color: #C22132;
  display: block;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 20px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.4rem;
}
body main h3 {
  text-align: left;
  display: block;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 10px;
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2rem;
}
body main p {
  margin: 10px 0;
  max-width: 1400px;
}
body main ul {
  padding: 20px 40px;
  list-style: none;
}
body main ul li {
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
  margin-bottom: 0;
  display: block;
}
body main ul li:before {
  position: absolute;
  left: -20px;
  top: 13px;
  content: "";
  background: #C22132;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
body main ol {
  padding: 20px 40px;
  list-style: none;
  counter-reset: listCounter;
}
body main ol li {
  position: relative;
  margin-bottom: 0;
  counter-increment: listCounter;
}
body main ol li:before {
  position: absolute;
  content: counter(listCounter);
  font-family: "Lexend Deca", sans-serif;
  font-size: 13px;
  text-align: center;
  left: -20px;
  top: 0;
  color: #C22132;
  border-top: 1px solid #C22132;
  line-height: 2rem;
}
body main #teaserWrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 50px 0;
}
body main #teaserWrapper .teaser {
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 200px;
  -moz-box-flex: 1;
  -moz-flex: 1 0 200px;
  -ms-flex: 1 0 200px;
  flex: 1 0 200px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  background: rgba(128, 128, 128, 0.1);
  padding: 20px;
  width: calc(33.33% - 10px);
  margin: 0 5px 10px 5px;
  border: 1px solid rgba(128, 128, 128, 0.1);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
}
body main #teaserWrapper .teaser:hover {
  border: 1px solid #C22132;
  background: #C22132;
  color: white;
}
body.page-template-default main {
  margin-top: 0;
  padding: 60px 80px 80px 80px;
  width: 100%;
  display: block;
}

.fancybox-close-small {
  color: black;
  padding: 20px;
  height: 80px;
  width: 90px;
  top: 0;
  right: 0;
}
.fancybox-close-small:hover {
  color: black;
}

#map {
  width: 100%;
  height: 50vh;
  min-height: 300px;
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
}

#cookie-notice .cookie-notice-container {
  display: inline-block !important;
  position: fixed !important;
  right: 20px !important;
  bottom: 0 !important;
  background: black !important;
  padding: 20px 30px 0 30px !important;
  max-width: 400px !important;
  width: 100%;
  text-align: left !important;
}
#cookie-notice .cookie-notice-container #cn-notice-text {
  font-family: Consolas, Courier !important;
  color: lightgray !important;
  margin-bottom: 20px !important;
  display: inline-block;
}
#cookie-notice .cookie-notice-container #cn-accept-cookie.button.wp-default,
#cookie-notice .cookie-notice-container #cn-more-info.cn-more-info.button.wp-default {
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  color: lightgrey !important;
  font-family: Consolas, Courier !important;
}
#cookie-notice .cookie-notice-container #cn-accept-cookie.button.wp-default:hover,
#cookie-notice .cookie-notice-container #cn-more-info.cn-more-info.button.wp-default:hover {
  color: white;
}
#cookie-notice .cookie-notice-container #cn-accept-cookie.button.wp-default {
  margin-bottom: 10px !important;
}
#cookie-notice .cookie-notice-container #cn-accept-cookie.button.wp-default:before {
  content: "+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+";
  position: relative;
  display: block;
  margin-bottom: 5px;
}
#cookie-notice .cookie-notice-container #cn-more-info.cn-more-info.button.wp-default:after {
  content: "+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~+";
  position: relative;
  display: block;
  margin-top: 5px;
}
#cookie-notice #cmd {
  display: block;
  margin-top: 10px;
  background: none;
  color: lightgrey;
  padding: 5px;
  overflow: hidden;
  font-family: Menlo, Consolas, Courier !important;
}
#cookie-notice #cmd:before {
  content: "~ root#";
  float: left;
  margin-right: 5px;
}
#cookie-notice #cmd span {
  float: left;
  padding-left: 3px;
  white-space: pre;
}
#cookie-notice #cursor {
  float: left;
  width: 5px;
  height: 14px;
  background: lightgrey;
  margin-top: 3px;
}
#cookie-notice input {
  width: 0;
  height: 0;
  opacity: 0;
}

body.single-post #headerWrapper header {
  background: white;
  border-bottom: 1px solid rgba(128, 128, 128, 0.1);
}
body.single-post main {
  margin-top: 80px;
}
body.single-post main section .content-wrapper .section-content {
  margin: 0 auto;
  max-width: 1280px;
  padding: 32px 40px;
}
body.single-post main section .content-wrapper .section-content .meta-info {
  margin-top: 0;
  padding-bottom: 27px;
  font-size: 17px;
  line-height: 20px;
}
body.single-post main section .content-wrapper .section-content h1 {
  margin: 40px 0 20px 0;
  word-wrap: break-word;
}
body.single-post main section .content-wrapper .section-content h2 {
  margin-top: 40px;
  word-wrap: break-word;
}

@media screen and (max-width: 1279px) {
  a.bloglink {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    display: inline-block;
    margin: 10px 0;
    background: none;
    padding: 0;
    border-radius: 7px;
    color: #C22132;
  }
  a.bloglink .icon {
    -o-transition: 0.4s;
    -ms-transition: 0.4s;
    -moz-transition: 0.4s;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #C22132;
    margin-left: 5px;
    opacity: 1;
  }
  a.bloglink:hover {
    text-decoration: underline;
  }
  a.bloglink:hover .icon {
    margin-left: 5px;
    opacity: 1;
  }

  #headerWrapper header #headerLogo {
    margin-left: 40px;
  }

  #team .member {
    width: 33.33%;
  }

  .single-vacancy main {
    padding: 40px;
  }

  body:not(.page-template-blog):not(.single-post) #stage {
    height: 100vh;
  }
  body:not(.page-template-blog):not(.single-post) #stagecontent {
    bottom: calc(25vh + 40px);
    left: 15px;
    width: calc(100% - 30px);
  }
  body:not(.page-template-blog):not(.single-post) #stagecontent h1 {
    font-size: 1.8rem;
    line-height: 2.2rem;
    margin-bottom: 20px;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-headline,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-headline {
    padding: 60px 40px 40px 40px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 290px;
    -moz-box-flex: 0;
    -moz-flex: 0 0 290px;
    -ms-flex: 0 0 290px;
    flex: 0 0 290px;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-headline h2,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-headline h2 {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-content,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-content {
    padding: 50px 40px 40px 130px;
  }
}
@media screen and (max-width: 1023px) {
  section#blog h2 {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: auto;
  }
  section#blog a.bloglink {
    color: white;
  }
  section#blog a.bloglink .icon {
    color: white;
  }

  body.single-post main section .section-headline h2 {
    display: none;
  }

  body:not(.page-template-blog):not(.single-post) main section .content-wrapper,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-headline,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-headline {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 100%;
    padding: 25px 30px;
    margin: 0 0 1px 0;
    background: #C22132;
    color: white;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-headline .triangle,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-headline .triangle {
    left: 0;
    right: auto;
    top: auto;
    bottom: 1px;
    transform: translateY(100%);
    border-width: 40px 100vw 0 0 !important;
    border-color: #C22132 transparent transparent transparent !important;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-headline:after,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-headline:after {
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-headline h2,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-headline h2 {
    -webkit-align-self: center;
    -moz-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    color: white;
    width: fit-content;
    height: fit-content;
    margin: 0 40px 0 0 !important;
    padding: 0;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-headline ul,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-headline ul {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -moz-box-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-headline ul li,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-headline ul li {
    margin: 0;
    padding: 0 10px;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-headline ul li strong,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-headline ul li strong {
    display: none;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-headline ul li ul,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-headline ul li ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-headline ul li ul li,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-headline ul li ul li {
    padding: 0;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-headline ul li ul li:nth-child(odd),
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-headline ul li ul li:nth-child(odd) {
    padding: 0 40px 0 0;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-headline ul li ul li:last-child,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-headline ul li ul li:last-child {
    display: block;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-headline ul li:last-child,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-headline ul li:last-child {
    display: none;
  }
  body:not(.page-template-blog):not(.single-post) main section .content-wrapper .section-content,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even) .content-wrapper .section-content {
    padding: 60px 40px;
  }
  body:not(.page-template-blog):not(.single-post) main section#blog .section-content, body:not(.page-template-blog):not(.single-post) main section#team .section-content,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even)#blog .section-content,
body:not(.page-template-blog):not(.single-post) main section:nth-child(even)#team .section-content {
    padding: 3px 0 0 0;
  }

  body.single-post main.skewedSidebar .section-content, body.archive main.skewedSidebar .section-content, body.page-template-blog main.skewedSidebar .section-content, body.page-template-default main.skewedSidebar .section-content {
    padding: 20px !important;
    max-width: 100%;
    overflow: hidden;
  }
  body.single-post main.skewedSidebar .section-content img, body.archive main.skewedSidebar .section-content img, body.page-template-blog main.skewedSidebar .section-content img, body.page-template-default main.skewedSidebar .section-content img {
    max-width: 100%;
    height: auto;
  }
  body.single-post main.skewedSidebar .section-content .postPreview a, body.archive main.skewedSidebar .section-content .postPreview a, body.page-template-blog main.skewedSidebar .section-content .postPreview a, body.page-template-default main.skewedSidebar .section-content .postPreview a {
    padding: 20px;
  }

  footer {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 767px) {
  body.single-post main section .content-wrapper .section-headline h2,
body.single-post main section:nth-child(even) .content-wrapper .section-headline h2 {
    display: none;
  }

  .item-list .arrow {
    display: none;
  }

  body {
    font-size: 1.1rem;
    line-height: 1.6rem;
  }
  body #stage {
    height: 100vh;
  }
  body #stagecontent {
    position: relative;
    top: 79px;
    width: calc(100% - 30px);
    left: 15px;
    padding: 15px 30px 15px 30px;
    margin-bottom: 45px;
    min-height: calc(100vh - 239px);
    bottom: 20px;
  }
  body main {
    margin-top: 55px;
  }
  body main.skewedSidebar {
    margin: 60px 0 0 0;
  }
  body main section .content-wrapper .section-headline,
body main section:nth-child(even) .content-wrapper .section-headline {
    padding: 30px 30px;
  }
  body main section .content-wrapper .section-headline ul,
body main section:nth-child(even) .content-wrapper .section-headline ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
  }
  body main section .content-wrapper .section-headline ul li,
body main section:nth-child(even) .content-wrapper .section-headline ul li {
    margin: 0;
    padding: 5px 0;
  }
  body main section .content-wrapper .section-headline ul li ul,
body main section:nth-child(even) .content-wrapper .section-headline ul li ul {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  body main section .content-wrapper .section-headline ul li ul li, body main section .content-wrapper .section-headline ul li ul li:nth-child(odd),
body main section:nth-child(even) .content-wrapper .section-headline ul li ul li,
body main section:nth-child(even) .content-wrapper .section-headline ul li ul li:nth-child(odd) {
    padding: 0 30px 0 0;
  }
  body main section .content-wrapper .section-headline ul li ul li div, body main section .content-wrapper .section-headline ul li ul li:nth-child(odd) div,
body main section:nth-child(even) .content-wrapper .section-headline ul li ul li div,
body main section:nth-child(even) .content-wrapper .section-headline ul li ul li:nth-child(odd) div {
    margin: -1px 0 0 0;
  }
  body main section .content-wrapper .section-headline ul li ul li:last-child,
body main section:nth-child(even) .content-wrapper .section-headline ul li ul li:last-child {
    display: block;
  }
  body main section .content-wrapper .section-content,
body main section:nth-child(even) .content-wrapper .section-content {
    padding: 40px 20px 0 20px;
  }
  body #team .member {
    width: 50%;
  }
  body.page-template-default main {
    padding: 20px 20px 40px 20px;
  }
  body.single-vacancy main {
    padding: 0 20px 80px 20px;
  }

  #headerWrapper header #headerLogo {
    padding: 10px 0;
    height: 45px;
    margin-left: 20px;
  }
  #headerWrapper header #stickyContact .textwidget div {
    padding: 0 20px;
  }
  #headerWrapper header #stickyContact .textwidget div span {
    display: none !important;
  }
  #headerWrapper header #stickyContact .textwidget a {
    padding: 0 20px;
  }
  #headerWrapper header #stickyContact .textwidget a.social {
    display: none;
  }
  #headerWrapper header #stickyContact .textwidget a span {
    display: none !important;
  }

  footer {
    padding: 25px 30px 0 30px;
    width: unset;
  }
  footer #footerMenu {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer #footerMenu div {
    margin-bottom: 20px;
  }
  footer #footerMenu ul {
    margin-left: 0;
  }
  footer #footerMenu ul li {
    margin-bottom: 10px;
    display: block;
  }

  body.single-post main {
    margin-top: 60px;
  }
  body.single-post main section .content-wrapper .section-content {
    padding: 32px 20px;
  }
}
@media screen and (max-width: 579px) {
  section .item-list li .inner-content .main-info {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  section .item-list li .inner-content .main-info .image {
    padding: 10px 0 20px 0;
  }
}
@media screen and (max-width: 379px) {
  body #team .member {
    width: 100%;
  }

  #headerWrapper header #stickyContact .wpml-ls ul li.wpml-ls-item a.wpml-ls-link {
    padding: 0 15px;
  }
  #headerWrapper header #stickyContact .textwidget a, #headerWrapper header #stickyContact .textwidget .phone {
    padding: 0 15px;
  }

  section#blog a {
    margin-top: 0;
  }
  section#blog a .icon {
    display: none;
  }
}
@media screen and (max-width: 320px) {
  section .item-list li .inner-content .main-info {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  section .item-list li .inner-content .main-info .image {
    padding: 10px 0 20px 0;
  }
}
@media print {
  #headerWrapper header #headerLogo img {
    height: auto;
    width: 3cm;
    margin-top: 0.3cm;
  }
}

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