@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          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;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          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 {
  -webkit-perspective: 80px;
          perspective: 80px;
}
.hamburger--3dx .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  -webkit-transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
  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;
  -webkit-transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
  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;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}
.hamburger--slider .hamburger-inner::after {
  top: 20px;
}
.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
          transform: rotate(-45deg) translate3d(-5.7142857143px, -6px, 0);
  opacity: 0;
}
.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
          transform: translate3d(0, -20px, 0) rotate(-90deg);
}

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

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

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

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

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

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

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

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

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

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

.weight-ultra {
  font-weight: 900;
}

.green-underline,
.black-left-underline,
.white-left-underline {
  position: relative;
  margin-bottom: 60px;
}
.green-underline:after,
.black-left-underline:after,
.white-left-underline:after {
  content: "";
  position: absolute;
  bottom: -30px;
  width: 62px;
  height: 4px;
  border-radius: 2px;
}

.green-underline:after {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #57bcd1;
}

.black-left-underline:after {
  left: 0;
  background-color: #000;
}
@media (max-width: 767.98px) {
  .black-left-underline {
    text-align: center;
  }
  .black-left-underline:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.white-left-underline:after {
  left: 0;
  background-color: #fff;
}
@media (max-width: 767.98px) {
  .white-left-underline {
    text-align: center;
  }
  .white-left-underline:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.box-overlay {
  position: relative;
}
.box-overlay:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.42);
}

img {
  width: 100%;
  height: auto;
}
img.no-resp {
  width: auto;
  height: auto;
}

.no-gutter-r {
  padding-right: 0;
}

.no-gutter-l {
  padding-left: 0;
}

.over-header {
  text-transform: uppercase;
  font-size: 1.3125rem;
  letter-spacing: 1.5px;
  margin-bottom: 28px;
}
@media (max-width: 767.98px) {
  .over-header {
    margin-bottom: 25px;
    font-size: 1.5625rem;
  }
}

@media (max-width: 767.98px) {
  .mobile-bg {
    background-image: none !important;
  }
  .mobile-bg:after {
    background-image: none !important;
  }
  .mobile-bg:before {
    background-image: none !important;
  }
}

.with-filter .page-header-bg {
  position: relative;
  overflow: hidden;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}
.with-filter .page-header-bg:after {
  content: "";
  position: absolute;
  width: calc((100vw - 1240px) / 2 + 1240px);
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.42);
}

.block-news-date,
.event-date {
  max-width: 65px;
}
.block-news-date .date-wrap,
.event-date .date-wrap {
  color: #fff;
  background: #57bcd1;
  padding: 12px 10px;
  text-align: center;
  line-height: 1;
  width: 65px;
}
.block-news-date .date-wrap .day,
.event-date .date-wrap .day {
  font-size: 1.8125rem;
  font-weight: 700;
  display: block;
  text-align: center;
}
.block-news-date .date-wrap .month,
.event-date .date-wrap .month {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  text-align: center;
}
@media (max-width: 767.98px) {
  .block-news-date .date-wrap,
  .event-date .date-wrap {
    width: 50px;
  }
  .block-news-date .date-wrap .day,
  .event-date .date-wrap .day {
    font-size: 1.3125rem;
  }
  .block-news-date .date-wrap .month,
  .event-date .date-wrap .month {
    font-size: 0.6875rem;
  }
}

.single-content h2,
.single-content h3,
.single-content h4,
.single-content h5,
.single-content h6 {
  margin-bottom: 0;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.single-content h2 {
  font-size: 3rem;
}
@media (max-width: 767.98px) {
  .single-content h2 {
    font-size: 2.2rem;
  }
}
@media (max-width: 575.98px) {
  .single-content h2 {
    font-size: 1.8rem;
  }
}
.single-content h3 {
  font-size: 2.6rem;
}
@media (max-width: 575.98px) {
  .single-content h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .single-content h3 {
    font-size: 2rem;
  }
}
.single-content img {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.single-content p {
  margin-bottom: 1rem;
  line-height: 2;
}
.single-content.page-post p {
  margin-bottom: 1rem;
}
.single-content .top-content {
  margin-bottom: 63px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
}
.single-content ol,
.single-content ul {
  margin-bottom: 1rem;
}
.single-content ul {
  margin-bottom: 1rem;
  padding-right: 40px;
}
@media (max-width: 767.98px) {
  .single-content ul {
    padding-right: 10px;
  }
}
.single-content ul li {
  margin-bottom: 0.875rem;
  line-height: 2;
  font-size: 1rem;
}
.single-content ol li {
  margin-bottom: 0.875rem;
  line-height: 2;
  font-size: 1rem;
}

.program-small-content ul li {
  margin-bottom: 2rem;
}
.program-small-content ol {
  clear: both;
  counter-reset: my-awesome-counter;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.program-small-content ol li {
  counter-increment: my-awesome-counter;
  padding-top: 88px;
  margin-bottom: 54px;
  position: relative;
  font-size: 1rem;
  line-height: 2;
}
.program-small-content ol li:before {
  content: counter(my-awesome-counter) ".";
  text-align: center;
  line-height: 54px;
  position: absolute;
  font-size: 2.3125rem;
  font-weight: 800;
  height: 54px;
  width: 54px;
  background-color: #57bcd1;
  border-radius: 50%;
  top: 0;
  left: 0;
}

blockquote {
  padding-left: 60px;
  max-width: 700px;
  padding-bottom: 2rem;
}
blockquote p {
  position: relative;
  font-style: italic;
  margin-bottom: 0 !important;
  padding-bottom: 0.5rem;
  line-height: 2;
  top: 20px;
  border-left: 4px solid #ededed;
  padding-left: 20px;
}
blockquote p:before {
  content: "“";
  position: absolute;
  top: 0;
  left: -70px;
  color: #ededed;
  font-size: 6em;
  z-index: -1;
  line-height: 1;
}

.modal-dialog {
  top: 20%;
}

.modal-header {
  border: none;
  padding: 10px;
}

.modal-body {
  padding: 0 45px 30px 45px;
  font-size: 1.125rem;
}
.modal-body h5 {
  font-weight: 900;
  padding-bottom: 20px;
  font-size: 1.5rem;
}

#infinite-handle {
  width: 100%;
  margin-top: 150px;
}
#infinite-handle span button {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  padding: 1rem 1.5625rem;
  line-height: 1.5;
  background-color: #000;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#infinite-handle span button:hover {
  background-color: #57bcd1;
  padding: 1rem 1.5625rem !important;
}

.infinite-loader {
  width: 100%;
  margin-top: 150px;
}

.z-index1 {
  z-index: 1;
}

.z-index2 {
  z-index: 2;
}

@media (max-width: 991.98px) {
  .md-w-100 {
    width: calc(100vw - 30px);
    margin: 0 auto;
  }
}

.pagination ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
  width: 100%;
}
.pagination ul li a {
  display: inline-block;
  padding: 10px 0;
  width: 32px;
  text-align: center;
  background-color: #ccc;
  margin: 0 3px;
  color: #000;
  font-weight: #f7f7f7;
}
.pagination ul li a:hover {
  color: #fff;
}
.pagination ul li.active a {
  color: #fff;
}

.fancybox-container {
  z-index: 10;
}

.fb-video {
  display: block !important;
}

.common-header {
  font-weight: 800;
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 0;
}

.btn {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
  -webkit-transition-property: background-color, background, color;
  transition-property: background-color, background, color;
}
.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-lg {
  padding: 1rem 2.75rem;
}

.btn-primary {
  border-color: transparent;
}
.btn-primary:hover {
  background-color: #000;
  border-color: transparent;
}

.btn-black {
  background-color: #000;
  border-color: transparent;
}
.btn-black:hover {
  color: #fff;
  background-color: #57bcd1;
  border-color: transparent;
}
.btn-black.btn-white-hover:hover {
  color: #000;
  background-color: #fff;
  border-color: transparent;
}

.menu-item.menu-item-has-children .sub-menu {
  display: none;
}
.menu-item.menu-item-has-children.active_submenu .sub-menu {
  display: block;
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.125rem;
  }
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../fonts/slick/slick.eot");
  src: url("../fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick/slick.woff") format("woff"), url("../fonts/slick/slick.ttf") format("truetype"), url("../fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.timeline {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.timeline *,
.timeline *::before,
.timeline *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.timeline:not(.timeline--horizontal)::before {
  background-color: #DDD;
  bottom: 0;
  content: "";
  left: 50%;
  margin-left: -2px;
  position: absolute;
  top: 0;
  width: 4px;
  z-index: 1;
}

.timeline__wrap {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.timeline__item {
  font-size: 1rem;
  padding: 10px 40px 10px 0;
  position: relative;
  width: 50%;
  z-index: 2;
}
.timeline__item::after {
  background-color: #FFF;
  border: 4px solid #DDD;
  border-radius: 50%;
  content: "";
  height: 20px;
  position: absolute;
  right: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  width: 20px;
  z-index: 1;
}
.timeline__item.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  opacity: 0;
}
.timeline__item.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.timeline__item--left {
  left: 0;
}

.timeline__item--right {
  left: 50%;
  padding: 10px 0 10px 40px;
}
.timeline__item--right::after {
  left: -10px;
}
.timeline__item--right .timeline__content::before {
  border-bottom: 10px solid transparent;
  border-right: 12px solid #CCC;
  border-left: none;
  border-top: 10px solid transparent;
  left: -12px;
}
.timeline__item--right .timeline__content::after {
  border-bottom: 9px solid transparent;
  border-right: 11px solid #FFF;
  border-left: none;
  border-top: 9px solid transparent;
  left: -10px;
}

.timeline__content {
  background-color: #FFF;
  border: 1px solid #CCC;
  border-radius: 10px;
  color: #333;
  display: block;
  padding: 20px;
  position: relative;
}
.timeline__content::before, .timeline__content::after {
  content: "";
  height: 0;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  width: 0;
}
.timeline__content::before {
  border-bottom: 10px solid transparent;
  border-left: 12px solid #CCC;
  border-top: 10px solid transparent;
  right: -12px;
  z-index: 1;
}
.timeline__content::after {
  border-bottom: 9px solid transparent;
  border-left: 11px solid #FFF;
  border-top: 9px solid transparent;
  right: -10px;
  z-index: 2;
}
.timeline__content h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
}
.timeline__content p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.timeline--horizontal {
  font-size: 0;
  padding: 0 50px;
  overflow: hidden;
  white-space: nowrap;
}
.timeline--horizontal .timeline-divider {
  background-color: #DDD;
  display: block;
  height: 4px;
  left: 40px;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  z-index: 1;
}
.timeline--horizontal .timeline__items {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  will-change: transform;
}
.timeline--horizontal .timeline__item {
  display: inline-block;
  left: 0;
  padding: 0 0 40px;
  position: relative;
  -webkit-transition: none;
  transition: none;
  vertical-align: top;
  white-space: normal;
}
.timeline--horizontal .timeline__item::after {
  left: 50%;
  right: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 100%;
}
.timeline--horizontal .timeline__item .timeline__item__inner {
  display: table;
  height: 100%;
  width: 100%;
}
.timeline--horizontal .timeline__item .timeline__content__wrap {
  display: table-cell;
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}
.timeline--horizontal .timeline__item .timeline__content::before {
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #CCC;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100%;
}
.timeline--horizontal .timeline__item .timeline__content::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #FFF;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100%;
}
.timeline--horizontal .timeline__item--bottom {
  padding: 40px 0 0;
}
.timeline--horizontal .timeline__item--bottom::after {
  top: 0;
}
.timeline--horizontal .timeline__item--bottom .timeline__content__wrap {
  vertical-align: top;
}
.timeline--horizontal .timeline__item--bottom .timeline__content::before {
  border-bottom: 12px solid #CCC;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: none;
  bottom: 100%;
  top: auto;
}
.timeline--horizontal .timeline__item--bottom .timeline__content::after {
  border-bottom: 10px solid #FFF;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: none;
  bottom: 100%;
  top: auto;
}

.timeline-nav-button {
  background-color: #FFF;
  border: 2px solid #DDD;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: block;
  height: 40px;
  outline: none;
  position: absolute;
  text-indent: -9999px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  width: 40px;
  z-index: 10;
}
.timeline-nav-button:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.timeline-nav-button::before {
  background-position: center center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  top: 50%;
  width: 8px;
}
.timeline-nav-button--prev {
  left: 0;
}
.timeline-nav-button--prev::before {
  background-image: url("../images/arrow-left.svg");
}
.timeline-nav-button--next {
  right: 0;
}
.timeline-nav-button--next::before {
  background-image: url("../images/arrow-right.svg");
}

.timeline--mobile {
  padding: 0;
}
.timeline--mobile::before {
  left: 10px !important;
  margin: 0 !important;
}
.timeline--mobile .timeline__item {
  left: 0;
  padding-left: 40px;
  padding-right: 0;
  width: 100%;
}
.timeline--mobile .timeline__item::after {
  left: 2px;
  margin: 0;
}
.timeline--mobile .timeline__item .timeline__content::before {
  left: -12px;
  border-bottom: 12px solid transparent;
  border-right: 12px solid #CCC;
  border-left: none;
  border-top: 12px solid transparent;
}
.timeline--mobile .timeline__item .timeline__content::after {
  left: -10px;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #FFF;
  border-left: none;
  border-top: 10px solid transparent;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    top: 70px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    top: 70px;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@-webkit-keyframes liftUp {
  0% {
    top: 0px;
  }
  100% {
    top: -15px;
  }
}
@keyframes liftUp {
  0% {
    top: 0px;
  }
  100% {
    top: -15px;
  }
}
@font-face {
  font-family: "olano";
  src: url("../fonts/olano//olano.eot?5hjfk7");
  src: url("../fonts/olano//olano.eot?5hjfk7#iefix") format("embedded-opentype"), url("../fonts/olano//olano.ttf?5hjfk7") format("truetype"), url("../fonts/olano//olano.woff?5hjfk7") format("woff"), url("../fonts/olano//olano.svg?5hjfk7#olano") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
i {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "olano" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.olano-clearclose:before {
  content: "\e918";
}

.olano-heart:before {
  content: "\f004";
}

.olano-heart-o:before {
  content: "\f08a";
}

.olano-angle-left:before {
  content: "\f104";
}

.olano-angle-right:before {
  content: "\f105";
}

.olano-angle-up:before {
  content: "\f106";
}

.olano-angle-down:before {
  content: "\f107";
}

.olano-folder-o:before {
  content: "\f114";
}

.olano-folder-open-o:before {
  content: "\f115";
}

.olano-home:before {
  content: "\e900";
}

.olano-bullhorn:before {
  content: "\e91a";
}

.olano-file-empty:before {
  content: "\e924";
}

.olano-files-empty:before {
  content: "\e925";
}

.olano-folder-open:before {
  content: "\e930";
}

.olano-tag:before {
  content: "\e935";
}

.olano-tags:before {
  content: "\e936";
}

.olano-phone:before {
  content: "\e942";
}

.olano-spinner:before {
  content: "\e97b";
}

.olano-search:before {
  content: "\e986";
}

.olano-arrow-right:before {
  content: "\ea3c";
}

.olano-arrow-left:before {
  content: "\ea40";
}

.olano-web_icon:before {
  content: "\e91c";
}

.olano-tick:before {
  content: "\e91d";
}

.olano-logo_olano .path1:before {
  content: "\e905";
  color: rgb(177, 200, 54);
}

.olano-logo_olano .path2:before {
  content: "\e906";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.olano-logo_olano .path3:before {
  content: "\e907";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path4:before {
  content: "\e908";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path5:before {
  content: "\e909";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path6:before {
  content: "\e90a";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path7:before {
  content: "\e90b";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path8:before {
  content: "\e90c";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path9:before {
  content: "\e90d";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path10:before {
  content: "\e90e";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path11:before {
  content: "\e90f";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path12:before {
  content: "\e910";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path13:before {
  content: "\e911";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path14:before {
  content: "\e912";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path15:before {
  content: "\e913";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path16:before {
  content: "\e914";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path17:before {
  content: "\e915";
  margin-left: -1em;
  color: rgb(67, 82, 90);
}

.olano-logo_olano .path18:before {
  content: "\e916";
  margin-left: -1em;
  color: rgb(255, 255, 255);
}

.olano-clock-circular-outline:before {
  content: "\e919";
}

.olano-map-pointer:before {
  content: "\e91b";
}

.olano-facebook-logo-button:before {
  content: "\e901";
}

.olano-instagram-logo-button:before {
  content: "\e902";
}

.olano-left-arrow:before {
  content: "\e903";
}

.olano-linkedin-logo-button:before {
  content: "\e904";
}

.olano-youtube-logo-button:before {
  content: "\e917";
}

body {
  margin-top: 87px;
}

.site-header {
  height: 87px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9;
  background-color: #fff;
}
.admin-bar .site-header {
  margin-top: 32px;
}

.header-wrapper {
  position: relative;
  z-index: 5;
  height: 87px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
}
.header-wrapper .logo-wrapper {
  font-size: 2.8125rem;
  line-height: 1;
  height: 56px;
}
.header-wrapper .logo-wrapper a {
  display: inline-block;
  height: 56px;
  font-size: 3.5rem;
}
.header-wrapper .search-wrap {
  font-size: 1.2rem;
  margin-left: 50px;
}
.header-wrapper .search-wrap a {
  color: #000;
}
.header-wrapper .search-wrap a:hover {
  color: #57bcd1;
}
.header-wrapper #search-fire {
  padding: 10px;
}

.search-fired #search-fire {
  color: #57bcd1;
}

#search-wrapper {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  position: relative;
  z-index: 4;
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
}
.search-fired #search-wrapper {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#search-wrapper .search-holder {
  background-color: #fff;
  position: relative;
  height: 24px;
  margin-top: 11px;
  margin-bottom: 12px;
  padding-bottom: 22px;
  border-bottom: #e3e4e3 1px solid;
}
#search-wrapper .search-holder input,
#search-wrapper .search-holder input[type=text],
#search-wrapper .search-holder button {
  background: none;
  border: none;
}
#search-wrapper .search-holder input[type=text] {
  line-height: 1;
  padding-right: 65px;
}
#search-wrapper .search-holder button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 64px;
  font-size: 1.125rem;
}

.page-footer .top-footer {
  background-image: url(../images/backgrounds/footer-logo.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-color: #2f302f;
}
@media (max-width: 991.98px) {
  .page-footer .top-footer {
    background-size: auto;
  }
}
.page-footer .top-footer h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #57bcd1;
}
.page-footer .top-footer .email {
  color: #fff;
}
@media (max-width: 767.98px) {
  .page-footer .top-footer {
    text-align: center;
  }
}
.page-footer .bottom-footer {
  line-height: 57px;
  background-color: #000;
}
.page-footer .bottom-footer p {
  color: #fff;
  font-size: 0.875rem;
  margin-bottom: 0;
}
.page-footer h2 {
  font-size: 1.6875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .page-footer h2 {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
.page-footer .mc4wp-form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -7px;
  margin-bottom: 9px;
}
.page-footer .mc4wp-form-fields input {
  height: 42px;
  padding-top: 0;
  padding-bottom: 0;
  background: #fff;
}
.page-footer .mc4wp-form-fields input.email {
  color: #000;
}
.page-footer .mc4wp-form-fields .newsletter-btn {
  padding: 10px 25px 6px;
  background-color: #57bcd1;
  border: 1px solid #57bcd1;
}
.page-footer .mc4wp-form-fields .newsletter-btn:hover {
  background-color: #000;
}
.page-footer .fancyradio {
  margin-left: -7px;
  color: #fff;
}

.hamburger {
  margin-left: 30px;
}

.main-menu-wrapper {
  -webkit-transition: opacity 250ms ease-in-out;
  transition: opacity 250ms ease-in-out;
}
.main-menu-wrapper .main-nav {
  margin-left: 1rem;
}
.main-menu-wrapper ul {
  list-style-type: none;
  display: inline-block;
  margin-bottom: 0;
  padding-left: 0;
}
.main-menu-wrapper ul li {
  display: inline-block;
}
.main-menu-wrapper ul li a {
  font-size: 1.25rem;
  font-weight: 800;
  color: #384044;
  display: inline-block;
  position: relative;
  margin-left: 15px;
  margin-right: 16px;
  -webkit-transition: 200ms color ease-in-out;
  transition: 200ms color ease-in-out;
}
.main-menu-wrapper ul li a:after {
  content: "";
  position: absolute;
  background: #384044;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 200ms width ease-in-out;
  transition: 200ms width ease-in-out;
}
@media (min-width: 1200px) {
  .main-menu-wrapper ul li:hover > a:after, .main-menu-wrapper ul li:focus-within > a:after {
    height: 4px;
    width: 80%;
    border-radius: 2px;
  }
}
.main-menu-wrapper ul li.current-menu-item > a:after, .main-menu-wrapper ul li.current-menu-parent > a:after {
  width: 80%;
  height: 4px;
  border-radius: 2px;
}
@media (max-width: 1199.98px) {
  .main-menu-wrapper {
    position: fixed;
    top: -10000px;
    left: -10000px;
    width: 0;
    height: 0;
    opacity: 0;
  }
}

.socials {
  font-size: 24px;
  margin-left: 34px;
}
.socials a {
  margin-left: 11px;
  color: #000;
}
.socials a:hover {
  color: #57bcd1;
}

body.is-active .btn-holder {
  display: block !important;
  margin-top: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 999999;
}
body.is-active .btn-holder #close-menu {
  color: #fff;
  background: transparent;
  border: none;
  font-size: 3rem;
}
body.is-active .main-menu-wrapper {
  display: block !important;
  background-color: #000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  opacity: 1;
  overflow-y: scroll;
  overflow-x: hidden;
}
body.is-active .main-menu-wrapper nav {
  margin-left: 0;
}
@media (max-width: 991.98px) {
  body.is-active .main-menu-wrapper nav {
    padding-bottom: 100px;
  }
}
@media (max-width: 575.98px) {
  body.is-active .main-menu-wrapper nav {
    padding-bottom: 30px;
  }
}
body.is-active .main-menu-wrapper nav ul {
  display: block;
  max-width: 350px;
  margin: auto;
}
body.is-active .main-menu-wrapper nav ul li {
  display: block;
  text-align: center;
  position: relative;
}
body.is-active .main-menu-wrapper nav ul li a {
  color: #fff;
  padding: 10px 20px;
  font-weight: 700;
}
body.is-active .main-menu-wrapper nav ul li.current-menu-parent > a:after {
  width: 0;
  height: 0;
  border-radius: 0;
}
body.is-active .main-menu-wrapper nav ul li.menu-item-has-children > ul li {
  background: rgba(255, 255, 255, 0.03);
}
body.is-active .main-menu-wrapper nav ul.sub-menu a {
  color: #888;
}
@media (max-width: 575.98px) {
  body.is-active .btn-holder {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  body.is-active .socials {
    margin: 0;
    text-align: center;
    padding-bottom: 100px;
  }
  body.is-active .socials a {
    color: #fff;
    font-size: 2.5rem;
    margin-left: 6px;
    margin-right: 6px;
  }
  body.is-active .mobile-search {
    padding-bottom: 30px;
  }
  body.is-active .mobile-search form {
    background-color: #2f302f;
    margin-left: 30px;
    margin-right: 30px;
    padding: 10px 30px;
  }
  body.is-active .mobile-search .search-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0 2px;
    background: #2f302f;
    border-bottom: 1px solid #fff;
    margin-bottom: 5px;
  }
  body.is-active .mobile-search .search-holder button {
    background: #2f302f;
    border: none;
  }
  body.is-active .mobile-search .search-holder input {
    background-color: #2f302f;
    color: #fff;
    border: none;
  }
}

.footer-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer-menu a {
  color: #fff;
}
.footer-menu a:hover {
  text-decoration: underline;
}
@media (max-width: 575.98px) {
  .footer-menu a {
    display: inline-block;
    padding: 4px 0;
  }
}

@media (min-width: 1200px) {
  #menu-hlavne-menu li.menu-item-has-children {
    position: relative;
  }
  #menu-hlavne-menu li.menu-item-has-children .sub-menu {
    visibility: hidden;
    opacity: 0;
    min-width: 200px;
    position: absolute;
    top: 30px;
    left: 0;
    background-color: #fff;
    padding-top: 30px;
    padding-bottom: 16px;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    display: none;
  }
  #menu-hlavne-menu li.menu-item-has-children .sub-menu li {
    display: block;
  }
  #menu-hlavne-menu li.menu-item-has-children .sub-menu li a {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    z-index: 2;
    -webkit-transition: 200ms color ease-in-out;
    transition: 200ms color ease-in-out;
  }
  #menu-hlavne-menu li.menu-item-has-children .sub-menu li a:after {
    content: "";
    position: absolute;
    background-color: transparent;
    bottom: auto;
    top: 0;
    height: 0;
    left: 0;
    width: 0;
    -webkit-transition: 200ms all ease-in-out;
    transition: 200ms all ease-in-out;
    z-index: -1;
  }
  #menu-hlavne-menu li.menu-item-has-children .sub-menu li a:hover {
    color: #57bcd1;
  }
  #menu-hlavne-menu li.menu-item-has-children .sub-menu li.current-menu-item a {
    color: #57bcd1;
  }
  #menu-hlavne-menu li.menu-item-has-children:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    display: block;
  }
}


section.section-green {
    background-color: #57bcd1;
    color: #fff;
}

section.section-green {
  background-color: #57bcd1;
  color: #fff;
}
section.section-t-green {
  background-color: rgba(201, 202, 0, 0.9);
}
section.section-gray {
  background-color: #f7f7f7;
}
section.section-black {
  background-color: #000;
  color: #fff;
}
section.section-black h1,
section.section-black h2,
section.section-black h3,
section.section-black h4,
section.section-black h5 {
  color: #57bcd1;
}
section.section-black p {
  color: #fff;
}
section.section-white-mobile {
  background-color: transparent;
}
@media (max-width: 767.98px) {
  section.section-white-mobile {
    background-color: #f7f7f7 !important;
  }
}

span .wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-form label {
  margin-top: 19px;
}
@media (max-width: 767.98px) {
  .wpcf7-form label {
    margin-top: 35px;
  }
}

.wpcf7-form input {
  height: 54px;
  line-height: 1;
}

.wpcf7-acceptance {
  margin-top: 9px;
  display: inline-block;
}
.wpcf7-acceptance label {
  margin-top: 0;
}
.wpcf7-acceptance label .wpcf7-list-item-label {
  padding-left: 26px;
  position: relative;
  display: inline-block;
}
.wpcf7-acceptance label .wpcf7-list-item-label:hover {
  cursor: pointer;
}
.wpcf7-acceptance label .wpcf7-list-item-label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border: 1px solid #e8e8e8;
}
.wpcf7-acceptance label input[type=checkbox]:checked + .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 1px;
  width: 14px;
  height: 14px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCIgd2lkdGg9IjE0cHgiIGhlaWdodD0iMTRweCI+PHBhdGggZD0iTSAyNi45ODA0NjkgNS45OTAyMzQ0IEEgMS4wMDAxIDEuMDAwMSAwIDAgMCAyNi4yOTI5NjkgNi4yOTI5Njg4IEwgMTEgMjEuNTg1OTM4IEwgNC43MDcwMzEyIDE1LjI5Mjk2OSBBIDEuMDAwMSAxLjAwMDEgMCAxIDAgMy4yOTI5Njg4IDE2LjcwNzAzMSBMIDEwLjI5Mjk2OSAyMy43MDcwMzEgQSAxLjAwMDEgMS4wMDAxIDAgMCAwIDExLjcwNzAzMSAyMy43MDcwMzEgTCAyNy43MDcwMzEgNy43MDcwMzEyIEEgMS4wMDAxIDEuMDAwMSAwIDAgMCAyNi45ODA0NjkgNS45OTAyMzQ0IHoiLz48L3N2Zz4=);
}
.wpcf7-acceptance input[type=checkbox] {
  display: none;
}

.fancyradio-default input[type=checkbox] {
  display: none;
}
.fancyradio-default label {
  padding-left: 26px;
  position: relative;
  display: inline-block;
}
.fancyradio-default label:hover {
  cursor: pointer;
}
.fancyradio-default label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border: 1px solid #e8e8e8;
}
.fancyradio-default input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 1px;
  width: 14px;
  height: 14px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCIgd2lkdGg9IjE0cHgiIGhlaWdodD0iMTRweCI+PHBhdGggZD0iTSAyNi45ODA0NjkgNS45OTAyMzQ0IEEgMS4wMDAxIDEuMDAwMSAwIDAgMCAyNi4yOTI5NjkgNi4yOTI5Njg4IEwgMTEgMjEuNTg1OTM4IEwgNC43MDcwMzEyIDE1LjI5Mjk2OSBBIDEuMDAwMSAxLjAwMDEgMCAxIDAgMy4yOTI5Njg4IDE2LjcwNzAzMSBMIDEwLjI5Mjk2OSAyMy43MDcwMzEgQSAxLjAwMDEgMS4wMDAxIDAgMCAwIDExLjcwNzAzMSAyMy43MDcwMzEgTCAyNy43MDcwMzEgNy43MDcwMzEyIEEgMS4wMDAxIDEuMDAwMSAwIDAgMCAyNi45ODA0NjkgNS45OTAyMzQ0IHoiLz48L3N2Zz4=);
  background-repeat: no-repeat;
}
.page-footer .fancyradio-default input[type=checkbox]:checked + label:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmZmZmIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCIgd2lkdGg9IjE0cHgiIGhlaWdodD0iMTRweCI+PHBhdGggZD0iTSAyNi45ODA0NjkgNS45OTAyMzQ0IEEgMS4wMDAxIDEuMDAwMSAwIDAgMCAyNi4yOTI5NjkgNi4yOTI5Njg4IEwgMTEgMjEuNTg1OTM4IEwgNC43MDcwMzEyIDE1LjI5Mjk2OSBBIDEuMDAwMSAxLjAwMDEgMCAxIDAgMy4yOTI5Njg4IDE2LjcwNzAzMSBMIDEwLjI5Mjk2OSAyMy43MDcwMzEgQSAxLjAwMDEgMS4wMDAxIDAgMCAwIDExLjcwNzAzMSAyMy43MDcwMzEgTCAyNy43MDcwMzEgNy43MDcwMzEyIEEgMS4wMDAxIDEuMDAwMSAwIDAgMCAyNi45ODA0NjkgNS45OTAyMzQ0IHoiLz48L3N2Zz4=);
}

.mc4wp-form-fields input[type=checkbox]:checked + .checkmark:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 1px;
  width: 14px;
  height: 14px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjMDAwMDAwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCIgd2lkdGg9IjE0cHgiIGhlaWdodD0iMTRweCI+PHBhdGggZD0iTSAyNi45ODA0NjkgNS45OTAyMzQ0IEEgMS4wMDAxIDEuMDAwMSAwIDAgMCAyNi4yOTI5NjkgNi4yOTI5Njg4IEwgMTEgMjEuNTg1OTM4IEwgNC43MDcwMzEyIDE1LjI5Mjk2OSBBIDEuMDAwMSAxLjAwMDEgMCAxIDAgMy4yOTI5Njg4IDE2LjcwNzAzMSBMIDEwLjI5Mjk2OSAyMy43MDcwMzEgQSAxLjAwMDEgMS4wMDAxIDAgMCAwIDExLjcwNzAzMSAyMy43MDcwMzEgTCAyNy43MDcwMzEgNy43MDcwMzEyIEEgMS4wMDAxIDEuMDAwMSAwIDAgMCAyNi45ODA0NjkgNS45OTAyMzQ0IHoiLz48L3N2Zz4=);
  background-repeat: no-repeat;
}
.page-footer .mc4wp-form-fields input[type=checkbox]:checked + .checkmark:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjZmZmZmZmIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCIgd2lkdGg9IjE0cHgiIGhlaWdodD0iMTRweCI+PHBhdGggZD0iTSAyNi45ODA0NjkgNS45OTAyMzQ0IEEgMS4wMDAxIDEuMDAwMSAwIDAgMCAyNi4yOTI5NjkgNi4yOTI5Njg4IEwgMTEgMjEuNTg1OTM4IEwgNC43MDcwMzEyIDE1LjI5Mjk2OSBBIDEuMDAwMSAxLjAwMDEgMCAxIDAgMy4yOTI5Njg4IDE2LjcwNzAzMSBMIDEwLjI5Mjk2OSAyMy43MDcwMzEgQSAxLjAwMDEgMS4wMDAxIDAgMCAwIDExLjcwNzAzMSAyMy43MDcwMzEgTCAyNy43MDcwMzEgNy43MDcwMzEyIEEgMS4wMDAxIDEuMDAwMSAwIDAgMCAyNi45ODA0NjkgNS45OTAyMzQ0IHoiLz48L3N2Zz4=);
}

.wpcf7-submit {
  margin-top: 24px;
}

input::-webkit-input-placeholder {
  line-height: normal !important;
}

.search-holder input:focus {
  outline: none;
}
.search-holder:focus-within {
  border-bottom-color: #000;
}

input {
  line-height: 1 !important;
}
input:focus {
  outline: none;
}

textarea {
  line-height: 2 !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

textarea:focus {
  outline: none;
}

.newsletter-btn:hover {
  background-color: #000;
  color: #57bcd1;
}

@media (max-width: 576px) {
  .mc4wp-form-fields .email {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.half-half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.half-half label:first-of-type {
  margin-right: 9px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 9px);
          flex: 0 0 calc(50% - 9px);
  width: 100%;
  max-width: calc(50% - 9px);
}
.half-half label:last-of-type {
  margin-left: 9px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 9px);
          flex: 0 0 calc(50% - 9px);
  width: 100%;
  max-width: calc(50% - 9px);
}
@media (max-width: 991.98px) {
  .half-half {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .half-half label:first-of-type {
    margin-right: 0;
  }
  .half-half label:last-of-type {
    margin-left: 0;
  }
  .half-half label:first-of-type, .half-half label:last-of-type {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
}

input:not([type=submit]):not([type=checkbox]):not([type=radio]),
textarea:not([type=submit]):not([type=checkbox]):not([type=radio]) {
  line-height: 54px;
  background-color: #f8f8f8;
  border: 1px solid #e8e8e8;
  padding-left: 24px;
  padding-right: 24px;
  width: 100%;
}

.page-header {
  overflow: hidden;
}

.page-header-wrapper {
  height: 424px;
  position: relative;
}
@media (max-width: 767.98px) {
  .page-header-wrapper {
    height: 220px;
    border-radius: 0 0 0 478px;
  }
}
@media (max-width: 575.98px) {
  .page-header-wrapper {
    margin-left: -15px;
    margin-right: -15px;
    overflow: hidden;
  }
}
.page-header-wrapper .page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc((100vw - 1240px) / 2 + 1240px);
  height: 100%;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 0 0 0 498px;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.page-header-wrapper .page-header-content {
  max-width: 700px;
  margin-left: 370px;
}
.page-header-wrapper .page-header-content .title-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.page-header-wrapper .page-header-content .page-sub-header {
  font-size: 2.9375rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media (max-width: 991.98px) {
  .page-header-wrapper .page-header-content .page-sub-header {
    font-size: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .page-header-wrapper .page-header-content .page-sub-header {
    font-size: 2.2rem;
    text-align: center;
    font-weight: 800;
  }
}
@media (max-width: 575.98px) {
  .page-header-wrapper .page-header-content .page-sub-header {
    font-size: 1.8rem;
  }
}
.page-header-wrapper .page-header-content h1 {
  font-size: 2.9375rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 991.98px) {
  .page-header-wrapper .page-header-content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  .page-header-wrapper .page-header-content h1 {
    font-size: 2.2rem;
    text-align: center;
    font-weight: 800;
  }
}
@media (max-width: 575.98px) {
  .page-header-wrapper .page-header-content h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 991.98px) {
  .page-header-wrapper .page-header-content {
    margin-left: 180px;
  }
}
@media (max-width: 767.98px) {
  .page-header-wrapper .page-header-content {
    margin-left: 50px;
    max-width: 100%;
  }
  .page-header-wrapper .page-header-content img {
    margin-left: 120px;
  }
}
@media (max-width: 575.98px) {
  .page-header-wrapper .page-header-content img {
    margin-left: 20px;
  }
}
.page-header-wrapper .page-header-content a {
  position: absolute;
  top: 50%;
  left: 50%;
}

.full-header {
  position: relative;
}
.full-header .full-header-content {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
.full-header .full-header-content h1 {
  color: #fff;
  font-size: 3.9375rem;
  font-weight: 800;
}
@media (max-width: 991.98px) {
  .full-header .full-header-content h1 {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  .full-header .full-header-content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .full-header .full-header-content h1 {
    font-size: 1.8rem;
    font-weight: 700;
  }
}
.full-header .full-header-bcg {
  position: relative;
}
.full-header .full-header-bcg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.42);
}

.text-page-header h1 {
  font-size: 2.9375rem;
  font-weight: 900;
  text-transform: uppercase;
}
.text-page-header .page-sub-header {
  font-size: 2.9375rem;
  font-weight: 700;
  text-align: center;
}

.section-timeline {
  background-image: url(../images/backgrounds/10rokov.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1199.98px) {
  .section-timeline {
    background-size: 80%;
  }
}
.section-timeline .btn-holder {
  margin-top: 20px;
}
.section-timeline .btn-holder .btn-black:hover {
  background-color: #fff;
  color: #000;
}
.section-timeline .no-btn {
  padding-bottom: 155px;
}
.section-timeline .middle-line {
  padding-left: 27px;
  padding-right: 27px;
}
@media (max-width: 619px) {
  .section-timeline .middle-line {
    padding-left: 26px;
    padding-right: 26px;
  }
}
.section-timeline .middle-line:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -78px);
          transform: translate(-50%, -78px);
  width: calc(100% - 40px);
  height: 4px;
  background: #fff;
}
.section-timeline #timeline-slick {
  z-index: 1;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 619px) {
  .section-timeline #timeline-slick {
    padding-left: 0;
    padding-right: 0;
  }
}
.section-timeline .timeline-item {
  position: relative;
  height: 418px;
}
.section-timeline .timeline-item h4 {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding-top: 13px;
  padding-bottom: 13px;
  color: #000;
}
.section-timeline .timeline-item h6 {
  font-size: 1.25rem;
  font-weight: 900;
  position: absolute;
  bottom: -120px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #000;
  white-space: nowrap;
}
@media (max-width: 619px) {
  .section-timeline .timeline-item h6 {
    font-size: 2.8rem;
  }
}
.section-timeline .timeline-item button {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  width: 100%;
  position: relative;
}
.section-timeline .timeline-item .timeline-content {
  position: relative;
  background-color: #fff;
  border-radius: 14px;
  width: 205px;
}
.section-timeline .timeline-item .timeline-content .tl-detail-info:focus {
  outline: none;
}
.section-timeline .timeline-item .timeline-content img {
  border-radius: 14px 14px 0 0;
}
.section-timeline .timeline-item .timeline-content:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 69px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -70px;
  background: #fff;
}
.section-timeline .timeline-item .timeline-content:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #000;
  border: 4px solid #fff;
  border-radius: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -80px;
}
.section-timeline .timeline-item.even .timeline-content {
  top: 270px;
}
.section-timeline .timeline-item.even .timeline-content h6 {
  bottom: 210px;
}
.section-timeline .timeline-item.even .timeline-content:before {
  bottom: 134px;
}
.section-timeline .timeline-item.even .timeline-content:after {
  bottom: 189px;
}
.section-timeline .timeline-left,
.section-timeline .timeline-right {
  background-color: transparent;
  border: none;
  font-size: 2.5rem;
  position: absolute;
  bottom: 50%;
  transform: translateY(-57px);
  -webkit-transform: translateY(-58px);
  -moz-transform: translateY(-57px);
  color: #fff;
  z-index: 1;
  line-height: 1;
  height: 39px;
  -webkit-font-smoothing: antialiased;
}
.section-timeline .timeline-left svg,
.section-timeline .timeline-right svg {
  height: 36px;
}
.section-timeline .timeline-left.slick-disabled, .section-timeline .timeline-left.swiper-button-disabled,
.section-timeline .timeline-right.slick-disabled,
.section-timeline .timeline-right.swiper-button-disabled {
  opacity: 0;
}
.section-timeline .timeline-left {
  left: 10px;
}
.section-timeline .timeline-right {
  right: 10px;
}
@media (max-width: 619px) {
  .section-timeline .middle-line:after {
    top: calc(50% + 72px);
  }
  .section-timeline .timeline-item {
    height: 331px;
  }
  .section-timeline .timeline-item .timeline-content {
    width: 275px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section-timeline .timeline-item h4 {
    margin-bottom: 5px;
  }
  .section-timeline .timeline-item h6 {
    bottom: -170px !important;
  }
  .section-timeline .timeline-item.even .timeline-content {
    top: 0;
  }
  .section-timeline .timeline-item.even .timeline-content:before {
    bottom: -69px;
  }
  .section-timeline .timeline-item.even .timeline-content:after {
    bottom: -81px;
  }
  .section-timeline .timeline-left,
  .section-timeline .timeline-right {
    bottom: auto;
    top: calc(50% + 35px);
    padding: 0 8px;
    line-height: 0;
  }
  .section-timeline .timeline-left {
    left: 10px;
  }
  .section-timeline .timeline-right {
    right: 10px;
  }
}
.section-timeline .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.section-timeline .modals h5,
.section-timeline .modals p {
  color: #000;
}
.section-timeline .modals .close:focus {
  outline: none;
}

.section-program {
  overflow: hidden;
  background-image: url(../images/backgrounds/porazme.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
}
.page-template-page_program .section-program {
  position: relative;
  background-image: url(../images/backgrounds/logo-bg.svg);
  background-repeat: no-repeat;
  background-size: 700px;
  background-position: center;
}
.page-template-page_program .section-program:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 700px;
  height: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../images/backgrounds/10rokov.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom -220px;
}
.section-program h1 {
  margin-left: -15px;
}
@media (max-width: 767.98px) {
  .section-program h1 {
    font-size: 3rem;
    margin-bottom: 80px;
    margin-left: 0;
  }
}
.section-program .owner-img {
  position: relative;
  z-index: 2;
}
.section-program .program-wrap {
  margin-top: 70px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1199.98px) {
  .section-program .program-wrap {
    margin-top: 50px;
  }
}
.section-program .owner-wrap {
  margin-top: 50px;
  position: relative;
  z-index: 2;
}
.section-program h3,
.section-program h4,
.section-program h5,
.section-program p {
  color: #fff;
  line-height: 1.7;
}
.section-program h3 {
  font-weight: 800;
}
@media (max-width: 767.98px) {
  .section-program h3 {
    font-size: 2.25rem;
  }
}
.section-program h4 {
  font-size: 2.375rem;
  margin-bottom: 0;
  line-height: 1.3;
}
.section-program h5 {
  font-size: 1.875rem;
  line-height: 1;
  margin-bottom: 1rem;
}
@media (max-width: 1199.98px) {
  .section-program h5 {
    font-size: 1.75rem;
  }
}
@media (max-width: 991.98px) {
  .section-program h5 {
    font-size: 1.5rem;
  }
}
@media (max-width: 991.98px) {
  .section-program .owner-wrap {
    margin-top: 15px;
  }
}

.to-right,
.to-left {
  margin-bottom: 20px;
  height: 440px;
}
.to-right .program-bg,
.to-left .program-bg {
  position: absolute;
  z-index: 1;
  overflow: hidden;
  bottom: 0;
  width: calc((100vw - 1240px) / 2 + 1240px);
  height: 400px;
  background-size: cover;
}
.to-right .program-bg:after,
.to-left .program-bg:after {
  content: "";
  position: absolute;
  width: calc((100vw - 1240px) / 2 + 1240px);
  height: 400px;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.42);
}
@media (max-width: 767.98px) {
  .to-right,
  .to-left {
    position: relative;
    height: 435px;
    margin-bottom: 0;
  }
  .to-right .program-wrap,
  .to-right .owner-wrap,
  .to-left .program-wrap,
  .to-left .owner-wrap {
    position: relative;
    z-index: 3;
    text-align: center;
  }
  .to-right .owner-img,
  .to-left .owner-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 2;
    text-align: center !important;
  }
  .to-right .owner-img img,
  .to-left .owner-img img {
    height: 313px;
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .to-right .program-bg,
  .to-left .program-bg {
    border-radius: 0 !important;
    height: 435px;
  }
  .to-right .program-bg:after,
  .to-left .program-bg:after {
    height: 435px;
  }
}

.to-right .owner-wrap,
.to-right .owner-img {
  text-align: right;
}
.to-right .program-wrap {
  padding-left: 130px;
}
.to-right .program-bg {
  border-radius: 0 0 0 498px;
  left: 0;
  background-position: left bottom;
}
@media (max-width: 991.98px) {
  .to-right .program-bg {
    border-radius: 0 0 0 280px;
  }
  .to-right .program-wrap {
    padding-left: 60px;
  }
}
@media (max-width: 767.98px) {
  .to-right .program-bg {
    left: calc((540px - 100vw) / 2);
  }
  .to-right .program-bg:after {
    right: calc((540px - 100vw) / 2);
  }
  .to-right .owner-wrap {
    text-align: center;
    margin-top: 240px;
  }
  .to-right .program-wrap {
    padding: 0;
    margin-top: 35px;
  }
}
@media (max-width: 575.98px) {
  .to-right .program-bg {
    left: 0;
  }
  .to-right .program-bg:after {
    right: 0;
  }
}

.to-left .program-wrap {
  padding-right: 130px;
}
.to-left .program-bg {
  border-radius: 0 0 498px 0;
  right: 0;
  background-position: right bottom;
}
@media (max-width: 991.98px) {
  .to-left .program-wrap {
    padding-right: 60px;
  }
  .to-left .program-bg {
    border-radius: 0 0 280px 0;
  }
  .to-left .owner-img img {
    margin-left: -15px;
  }
}
@media (max-width: 767.98px) {
  .to-left .program-bg {
    right: calc((540px - 100vw) / 2);
  }
  .to-left .program-bg:after {
    right: calc((540px - 100vw) / 2);
  }
  .to-left .owner-wrap {
    text-align: center;
    margin-top: 240px;
  }
  .to-left .program-wrap {
    padding: 0;
    margin-top: 35px;
  }
}
@media (max-width: 575.98px) {
  .to-left .program-bg {
    right: 0;
  }
  .to-left .program-bg:after {
    left: 0;
  }
}

.section-text.with-logo {
  position: relative;
  background-image: url(../images/backgrounds/logo-bg.svg);
  background-repeat: no-repeat;
  background-size: 800px;
  background-position: top 50px center;
}
.section-text .section-title {
  font-size: 4.375rem;
}
.section-text h1,
.section-text h2,
.section-text h3,
.section-text h4,
.section-text h5,
.section-text h6 {
  font-weight: 800;
  padding-bottom: 1rem;
}
.section-text h2,
.section-text h1 {
  font-size: 2.1875rem;
}
.section-text h3 {
  font-size: 2rem;
}
.section-text h4 {
  font-size: 1.8rem;
}
.section-text h5 {
  font-size: 1.2rem;
}
.section-text h6 {
  font-size: 1rem;
}
.section-text .text-title {
  padding-bottom: 2rem;
  position: relative;
  margin-bottom: 2rem;
  font-size: 4.375rem;
}
@media (max-width: 991.98px) {
  .section-text .text-title {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  .section-text .text-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 575.98px) {
  .section-text .text-title {
    font-size: 1.8rem;
  }
}
.section-text .text-title:after {
  content: "";
  position: absolute;
  width: 62px;
  height: 4px;
  background-color: #57bcd1;
  left: calc(50% - 32px);
  bottom: 0;
  border-radius: 2px;
}

.section-brochure {
  overflow: hidden;
}
.section-brochure .brochure-wrapper {
  height: 434px;
  width: 100%;
  max-width: 900px;
  float: right;
}
.section-brochure:not(.section-wide) .brochure-wrapper {
  float: none;
  max-width: none;
}
.section-brochure .brochure-img,
.section-brochure .brochure-info {
  width: 50%;
}
.section-brochure .brochure-img {
  position: relative;
  width: 100%;
}
.section-brochure .brochure-img img {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 20px;
  margin-left: 15px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 417px;
  height: auto;
}
@media (max-width: 1199.98px) {
  .section-brochure .brochure-img img {
    width: 370px;
  }
}
@media (max-width: 991.98px) {
  .section-brochure .brochure-img img {
    width: 270px;
  }
}
.section-brochure .brochure-info {
  padding-left: 27px;
}
@media (max-width: 991.98px) {
  .section-brochure .brochure-info {
    padding-left: 0;
  }
}
.section-brochure .brochure-info h3 {
  font-size: 2.1875rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.section-brochure .image-holder {
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.section-brochure .image-holder .brochure-info {
  z-index: 2;
}
.section-brochure .image-holder .brochure-info p,
.section-brochure .image-holder .brochure-info h3 {
  color: #fff;
}
@media (max-width: 991.98px) {
  .section-brochure .image-holder .brochure-info {
    width: 90%;
  }
  .section-brochure .image-holder .brochure-info h3 {
    margin-bottom: 170px;
  }
}
.section-brochure:not(.section-two) {
  overflow: visible;
}
@media (max-width: 767.98px) {
  .section-brochure:not(.section-two) {
    overflow: hidden;
  }
}
.section-brochure:not(.section-two) .brochure-img img {
  height: 110%;
  width: auto;
  margin-top: 50px;
}
@media (max-width: 991.98px) {
  .section-brochure:not(.section-two) .brochure-img img {
    height: 90%;
  }
}
@media (max-width: 767.98px) {
  .section-brochure {
    background: transparent !important;
  }
  .section-brochure .brochure-wrapper {
    height: auto;
  }
  .section-brochure .no-gutter-r {
    padding-left: 0;
  }
  .section-brochure .brochure-info,
  .section-brochure .brochure-img {
    text-align: center;
    height: auto;
  }
  .section-brochure .brochure-info h3,
  .section-brochure .brochure-img h3 {
    margin-bottom: 202px;
  }
  .section-brochure .image-holder {
    margin-top: 60px;
    height: auto !important;
  }
  .section-brochure .image-holder .brochure-info {
    padding-top: 65px;
    padding-bottom: 65px;
    width: 100% !important;
  }
  .section-brochure .brochure-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-brochure .brochure-wrapper .brochure-info {
    z-index: 2;
    width: 100% !important;
  }
  .section-brochure .brochure-wrapper .brochure-img {
    bottom: -80px;
    z-index: 1;
    position: absolute;
    width: auto !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section-brochure .brochure-wrapper .brochure-img img {
    width: 320px;
    height: auto;
    margin: 0;
    position: relative;
    left: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
  }
  .section-brochure .btn {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 575.98px) {
  .section-brochure .image-holder {
    background-position: left -50px top;
  }
}

.section-news {
  background-image: url(../images/backgrounds/logo-bg.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: auto;
}
.section-news .news-block-holder {
  position: relative;
}
.section-news h2 {
  font-size: 3.75rem;
  font-weight: 800;
}
.section-news .block-news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
}
.section-news .block-news-content:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #e3e3e3;
  border-radius: 2px;
  bottom: 0;
  z-index: 1;
  -webkit-transition: 200ms background-color ease-in-out;
  transition: 200ms background-color ease-in-out;
}
.section-news .block-news-content .block-news-text {
  padding-left: 27px;
}
.section-news .block-news-content .block-news-text h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: #000;
  min-height: 132px;
  margin-bottom: 24px;
}
.section-news .block-news-content .block-news-text p {
  font-size: 0.875rem;
  color: #000;
  margin-bottom: 0;
  min-height: 105px;
}
.section-news .news-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -15px;
  margin-left: -15px;
}
.section-news .news-holder .news-item {
  width: 33.3333333333%;
  padding-left: 15px;
  padding-right: 15px;
}
.section-news .news-holder .news-item img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: -webkit-filter 250ms linear;
  transition: -webkit-filter 250ms linear;
  transition: filter 250ms linear;
  transition: filter 250ms linear, -webkit-filter 250ms linear;
}
.section-news a:hover .block-news-content:after {
  background-color: #57bcd1;
}
.section-news a:hover img {
  -webkit-filter: grayscale(0) !important;
          filter: grayscale(0) !important;
}
.section-news .slick-left,
.section-news .slick-right {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 1.8rem;
  position: absolute;
  top: 50%;
  visibility: hidden;
}
.section-news .slick-left.slick-arrow,
.section-news .slick-right.slick-arrow {
  visibility: visible;
}
.section-news .slick-left {
  left: 10px;
}
.section-news .slick-right {
  right: 10px;
}
@media (max-width: 767.98px) {
  .section-news .news-holder {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-news .news-holder .news-item {
    padding-left: 60px;
    padding-right: 60px;
    width: 100%;
  }
  .section-news .block-news-content .block-news-text h3 {
    font-size: 1.0625rem;
  }
}
.section-news .btn-holder {
  margin-top: 60px;
}

@media (max-width: 991.98px) {
  .section-newsletter .over-header {
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .section-newsletter .over-header {
    font-size: 1.875rem;
  }
}
.section-newsletter .newsletter-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-newsletter .newsletter-wrap > div {
  width: 50%;
}
@media (max-width: 991.98px) {
  .section-newsletter .newsletter-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-newsletter .newsletter-wrap > div {
    width: 100%;
  }
  .section-newsletter .newsletter-wrap h3 {
    text-align: center;
  }
  .section-newsletter .newsletter-wrap .newsletter-form {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.section-newsletter .newsletter-wrap h3 {
  font-size: 3rem;
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .section-newsletter .newsletter-wrap h3 {
    margin-bottom: 50px;
  }
}
@media (max-width: 575.98px) {
  .section-newsletter .newsletter-wrap h3 {
    font-size: 2.25rem;
  }
}
.section-newsletter .newsletter-wrap .fancyradio-default {
  margin-top: 18px;
  color: #000;
}
.section-newsletter .newsletter-wrap .fancyradio-default a {
  color: #000;
  text-decoration: underline;
}
.section-newsletter .newsletter-wrap .fancyradio-default a:hover {
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .section-newsletter .newsletter-wrap .fancyradio-default {
    text-align: center;
    margin-top: 30px;
  }
}
.section-newsletter .newsletter-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.section-newsletter .newsletter-form .mc4wp-form-fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media (max-width: 575.98px) {
  .section-newsletter .newsletter-form .mc4wp-form-fields {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-newsletter .newsletter-form .mc4wp-form-fields .btn-wrap {
    text-align: center;
    margin-top: 30px;
  }
  .section-newsletter .newsletter-form .mc4wp-form-fields .newsletter-btn {
    margin-left: 0;
  }
}
.section-newsletter .newsletter-form input[type=email] {
  line-height: 54px;
  border: none;
  padding-left: 30px;
  padding-right: 10px;
  max-width: 100%;
  width: 310px;
}
.section-newsletter .newsletter-form .newsletter-btn {
  padding: 0;
  padding-left: 26px;
  padding-right: 26px;
  line-height: 54px;
  margin-left: -3px;
}
@media (max-width: 575.98px) {
  .section-newsletter .newsletter-form {
    width: 100%;
  }
  .section-newsletter .newsletter-form form {
    width: 100%;
  }
  .section-newsletter .newsletter-form input[type=email] {
    width: 100%;
  }
}

.section-connect-us {
  background-image: url(../images/backgrounds/pridaj-sa.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
}
.section-connect-us .form-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-connect-us .form-header h3 {
  font-size: 3.75rem;
  font-weight: 900;
  max-width: 390px;
  padding-bottom: 69px;
}
@media (max-width: 991.98px) {
  .section-connect-us .form-header h3 {
    font-size: 3.25rem;
  }
}
@media (max-width: 767.98px) {
  .section-connect-us .form-header h3 {
    text-align: center;
    margin: 0 auto 7px auto;
    max-width: 450px;
    padding-bottom: 0;
  }
}
.section-connect-us .form-header .olano-group-img {
  background-image: url(../images/olano-group.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 360px;
  height: 320px;
  margin-top: -90px;
}
@media (max-width: 991.98px) {
  .section-connect-us .form-header .olano-group-img {
    display: none;
  }
}
.section-connect-us textarea {
  height: 200px;
}
.section-connect-us .fb-container {
  width: 100%;
}
@media (max-width: 767.98px) {
  .section-connect-us .fb-container {
    margin-top: 64px;
  }
}
@media (max-width: 991.98px) {
  .section-connect-us form {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.section-connect-us .facebook-title {
  font-size: 2.8125rem;
  font-weight: 900;
  color: #57bcd1;
  max-width: 300px;
  margin: 0 auto;
  text-align: left;
}
.section-connect-us .facebook-title span {
  color: #000;
}
@media (max-width: 767.98px) {
  .section-connect-us .facebook-title {
    text-align: center;
  }
}

.section-video {
  background-image: url(../images/backgrounds/spolu2.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
}
.section-video h3 {
  font-size: 2.25rem;
  font-weight: 700;
}
.section-video .content {
  font-size: 0.875rem;
}
.section-video .btn-primary:hover {
  background-color: #fff;
  color: #000;
  border-color: transparent;
}
@media (max-width: 767.98px) {
  .section-video h3 {
    text-align: center;
  }
  .section-video h3:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section-video .over-header {
    text-align: center;
    margin-top: 30px;
  }
  .section-video .content {
    text-align: center;
    margin-bottom: 30px;
  }
  .section-video .btn-wrap {
    text-align: center;
  }
}

.section-instagram-feed h1 {
  font-size: 2.8125rem;
  font-weight: 900;
  color: #57bcd1;
}
.section-instagram-feed h1 span {
  color: #000;
}
.section-instagram-feed .insta-wrap {
  max-width: 100vw;
  overflow: hidden;
}
.section-instagram-feed .insta-item {
  display: inline-block;
  text-align: center;
  width: auto;
}
.section-instagram-feed .insta-item img {
  height: 186px;
  width: auto;
}

.section-kontakt .top-contacts {
  padding-bottom: 72px;
  border-bottom: 1px solid #e3e4e3;
}
.section-kontakt .contact-offices {
  padding-top: 62px;
}
.section-kontakt .contact-offices.with-free {
  border-top: 1px solid #e3e4e3;
  margin-top: 62px;
}
.section-kontakt .contact-offices h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 60px;
}
.section-kontakt .free-content h2,
.section-kontakt .free-content h3 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.section-kontakt .free-content h4,
.section-kontakt .free-content h5,
.section-kontakt .free-content h6 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.section-kontakt .main-contacts h2,
.section-kontakt .rest-contact h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .section-kontakt .main-contacts h2,
  .section-kontakt .rest-contact h2 {
    text-align: center;
  }
}
.section-kontakt .main-contacts .contact-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
@media (max-width: 575.98px) {
  .section-kontakt .main-contacts .contact-item-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.section-kontakt .main-contacts .contact-item-wrap .contact-item-name {
  background-color: #57bcd1;
  padding: 10px 15px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  height: 36px;
  min-width: 360px;
  margin-right: 30px;
}
@media (max-width: 575.98px) {
  .section-kontakt .main-contacts .contact-item-wrap .contact-item-name {
    margin-right: 0;
    min-width: auto;
    height: auto;
    margin-bottom: 20px;
  }
}
.section-kontakt .main-contacts .contact-item-wrap .contact-item-value {
  font-size: 1rem;
}
.section-kontakt .rest-contact p {
  font-size: 1rem;
}
@media (max-width: 991.98px) {
  .section-kontakt .rest-contact {
    text-align: center;
  }
}
.section-kontakt .btn-contact {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  padding: 0.625rem 1.5625rem;
}
.section-kontakt .btn-contact:focus {
  outline: none;
}
.section-kontakt .office-wrap {
  background-color: #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 11px;
  padding: 30px 47px 34px 40px;
  margin-bottom: 23px;
}
@media (max-width: 767.98px) {
  .section-kontakt .office-wrap {
    padding: 15px 23px 17px 20px;
  }
}
@media (max-width: 575.98px) {
  .section-kontakt .office-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.section-kontakt .office-wrap .office-img {
  padding-right: 40px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media (max-width: 767.98px) {
  .section-kontakt .office-wrap .office-img {
    padding-right: 20px;
  }
}
@media (max-width: 575.98px) {
  .section-kontakt .office-wrap .office-img {
    padding-right: 0;
    padding-bottom: 20px;
  }
}
.section-kontakt .office-wrap .office-img img {
  width: 78px;
  border-radius: 50%;
}
.section-kontakt .office-wrap .office-info {
  padding-right: 40px;
  padding-top: 2px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 575.98px) {
  .section-kontakt .office-wrap .office-info {
    padding-right: 0;
  }
}
.section-kontakt .office-wrap .office-info .office-more {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: 250ms max-height ease-in-out;
  transition: 250ms max-height ease-in-out;
}
@media (max-width: 991.98px) {
  .section-kontakt .office-wrap .office-info .office-more {
    margin-left: -100px;
    margin-right: -130px;
  }
}
@media (max-width: 767.98px) {
  .section-kontakt .office-wrap .office-info .office-more {
    margin-left: -60px;
    margin-right: -140px;
  }
}
@media (max-width: 575.98px) {
  .section-kontakt .office-wrap .office-info .office-more {
    margin: 0;
  }
}
.section-kontakt .office-wrap .office-info .office-more .office-more-wrapper {
  padding-top: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575.98px) {
  .section-kontakt .office-wrap .office-info .office-more .office-more-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 20px;
  }
}
.section-kontakt .office-wrap .office-info .office-more .office-more-wrapper p {
  font-weight: 400;
}
.section-kontakt .office-wrap .office-info .office-more .office-more-wrapper .office-address {
  margin-right: 60px;
}
@media (max-width: 991.98px) {
  .section-kontakt .office-wrap .office-info .office-more .office-more-wrapper .office-address {
    margin-right: 40px;
  }
}
@media (max-width: 767.98px) {
  .section-kontakt .office-wrap .office-info .office-more .office-more-wrapper .office-address {
    margin-right: 20px;
  }
}
@media (max-width: 575.98px) {
  .section-kontakt .office-wrap .office-info .office-more .office-more-wrapper .office-address {
    margin-right: 0;
    padding-bottom: 20px;
  }
}
.section-kontakt .office-wrap .office-btn {
  padding-top: 20px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.section-kontakt .office-wrap .office-btn .btn-more-contact {
  font-weight: 400;
  border-radius: 11px;
  padding-top: 0.375rem;
  font-size: 1.125rem;
  min-width: 100px;
}
.section-kontakt .office-wrap h5 {
  font-weight: 800;
  font-size: 1.375rem;
  margin-bottom: 0;
}
.section-kontakt .office-wrap p {
  margin-bottom: 0;
  font-weight: 700;
}
.section-kontakt .office-wrap.eu-can {
  color: #fff;
  background-color: #074d9f;
  background-image: url(../images/backgrounds/stars.svg);
  background-repeat: no-repeat;
  background-position: top 3px right -68px;
  background-size: auto 136px;
}
.section-kontakt .office-wrap.eu-can h5 {
  color: #fff;
}

.section-modul-kandidati {
  overflow: hidden;
  background-image: url(../images/backgrounds/porazme.svg);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .container {
    max-width: 100%;
  }
}
.section-modul-kandidati h1 {
  font-weight: 900;
  color: #57bcd1;
  position: relative;
}
.section-modul-kandidati h1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62px;
  height: 4px;
  border-radius: 2px;
  background-color: #313131;
}
@media (max-width: 991.98px) {
  .section-modul-kandidati h1 {
    text-align: center;
  }
  .section-modul-kandidati h1:after {
    left: calc(50% - 32px);
  }
}
.section-modul-kandidati h3 {
  font-size: 2.875rem;
  font-weight: 400;
  line-height: 1.2;
  padding-bottom: 20px;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .section-modul-kandidati h3 {
    font-size: 2.2rem;
  }
}
@media (max-width: 991.98px) {
  .section-modul-kandidati h3 {
    position: absolute;
    right: 70px;
    top: 70px;
    white-space: nowrap;
  }
}
@media (max-width: 575.98px) {
  .section-modul-kandidati h3 {
    right: auto;
    left: auto;
    top: 45px;
    width: 100%;
    text-align: center;
    font-size: 1.5rem;
    margin-left: -15px;
  }
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .even {
    margin-right: -15px;
    margin-left: -15px;
  }
}
.section-modul-kandidati .even .row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .odd {
    margin-left: -15px;
    margin-right: -15px;
  }
  .section-modul-kandidati .odd h3 {
    right: auto;
    left: 80px;
  }
}
@media (max-width: 991.98px) and (max-width: 575.98px) {
  .section-modul-kandidati .odd h3 {
    left: auto;
  }
}
.section-modul-kandidati .kandidat-wrapper {
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 575.98px) {
  .section-modul-kandidati .kandidat-wrapper {
    overflow: hidden;
  }
}
.section-modul-kandidati .backgrounds {
  position: relative;
  height: 400px;
  width: 100%;
}
.section-modul-kandidati .backgrounds .green-bg,
.section-modul-kandidati .backgrounds .gray-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100vw - (100vw - 1300px) / 2);
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .backgrounds .green-bg,
  .section-modul-kandidati .backgrounds .gray-bg {
    border-radius: 0 !important;
  }
}
.section-modul-kandidati .backgrounds .green-bg {
  height: 400px;
  border-radius: 0 0 0 498px;
  background-color: #57bcd1;
}
.section-modul-kandidati .backgrounds .gray-bg {
  height: 400px;
  left: 65px;
  border-radius: 0 0 0 498px;
  background-color: #313131;
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .backgrounds .gray-bg {
    left: 0;
  }
}
.section-modul-kandidati .kandidat-content {
  position: absolute;
  top: 0;
  padding-left: 65px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .kandidat-content {
    padding-left: 0;
  }
}
@media (max-width: 575.98px) {
  .section-modul-kandidati .kandidat-content {
    width: 100%;
  }
}
.section-modul-kandidati .kandidat-content > div {
  height: 400px;
}
.section-modul-kandidati .kandidat-content .kandidat-img {
  height: 100%;
  width: 100%;
  text-align: center;
}
.section-modul-kandidati .kandidat-content .kandidat-img img {
  height: 100%;
  width: auto;
}
@media (max-width: 767.98px) {
  .section-modul-kandidati .kandidat-content .kandidat-img img {
    position: relative;
    left: -30px;
    right: auto;
  }
}
@media (max-width: 575.98px) {
  .section-modul-kandidati .kandidat-content .kandidat-img img {
    left: auto;
    right: auto;
  }
}
.section-modul-kandidati .kandidat-content .kandidat-text {
  color: #fff;
  padding-top: 70px;
  padding-left: 100px;
  text-align: right;
}
@media (max-width: 1199.98px) {
  .section-modul-kandidati .kandidat-content .kandidat-text {
    padding-top: 40px;
  }
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .kandidat-content .kandidat-text {
    height: 100%;
    padding-top: 0;
    padding-left: 0;
  }
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .kandidat-content .kandidat-text .text-kandidat-box {
    display: none;
    padding-top: 70px;
    padding-left: 70px;
  }
}
.section-modul-kandidati .kandidat-content .kandidat-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 40px;
}
@media (max-width: 1199.98px) {
  .section-modul-kandidati .kandidat-content .kandidat-info {
    padding-top: 30px;
  }
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .kandidat-content .kandidat-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.section-modul-kandidati .kandidat-content .kandidat-info .kandidat-number {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border: 3px solid #57bcd1;
  border-radius: 50%;
  background-color: #313131;
  text-align: center;
  font-size: 3.125rem;
  font-weight: 800;
  color: #c7c7c7;
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .kandidat-content .kandidat-info .kandidat-number {
    margin-bottom: 30px;
    margin-top: 90px;
  }
}
@media (max-width: 575.98px) {
  .section-modul-kandidati .kandidat-content .kandidat-info .kandidat-number {
    margin: 0;
    position: absolute;
    right: 0;
    top: 50%;
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 2.5rem;
  }
}
.section-modul-kandidati .kandidat-content .kandidat-info .kandidat-number span {
  margin-right: -13px;
}
@media (max-width: 575.98px) {
  .section-modul-kandidati .kandidat-content .kandidat-info .kandidat-number span {
    margin-right: -8px;
  }
}
.section-modul-kandidati .kandidat-content .kandidat-info .kandidat-btn {
  padding-left: 25px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .kandidat-content .kandidat-info .kandidat-btn {
    padding-left: 0;
  }
}
@media (max-width: 575.98px) {
  .section-modul-kandidati .kandidat-content .kandidat-info .kandidat-btn {
    position: absolute;
    bottom: 20px;
  }
}
.section-modul-kandidati .even .backgrounds .green-bg,
.section-modul-kandidati .even .backgrounds .gray-bg {
  left: auto;
  right: 0;
}
.section-modul-kandidati .even .backgrounds .gray-bg {
  right: 65px;
  border-radius: 0 0 498px 0;
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .even .backgrounds .gray-bg {
    right: 0;
  }
}
.section-modul-kandidati .even .backgrounds .green-bg {
  border-radius: 0 0 498px 0;
}
@media (max-width: 767.98px) {
  .section-modul-kandidati .even .kandidat-img img {
    position: relative;
    right: -30px;
    left: auto;
  }
}
@media (max-width: 575.98px) {
  .section-modul-kandidati .even .kandidat-img img {
    right: auto;
    left: auto;
  }
}
.section-modul-kandidati .even .kandidat-content .kandidat-text {
  padding-left: 0;
  padding-right: 100px;
  text-align: left;
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .even .kandidat-content .kandidat-text {
    padding-right: 0;
  }
}
.section-modul-kandidati .even .kandidat-content .kandidat-text .kandidat-info {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .even .kandidat-content .kandidat-text .kandidat-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 575.98px) {
  .section-modul-kandidati .even .kandidat-content .kandidat-text .kandidat-info .kandidat-number {
    margin: 0;
    position: absolute;
    left: 0;
    right: auto;
    top: 50%;
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 2.5rem;
  }
}
.section-modul-kandidati .even .kandidat-content .kandidat-text .kandidat-info .kandidat-btn {
  padding-left: 0;
  padding-right: 25px;
}
@media (max-width: 991.98px) {
  .section-modul-kandidati .even .kandidat-content .kandidat-text .kandidat-info .kandidat-btn {
    padding-right: 0;
  }
}
@media (max-width: 575.98px) {
  .section-modul-kandidati .k-img {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100vw;
    padding: 0;
    margin-left: -15px;
  }
  .section-modul-kandidati .even .k-img {
    margin-right: -15px;
  }
}

.section-countdown.section-green {
  color: #fff;
}
.section-countdown.section-green .countdown-title {
  color: #fff;
}
.section-countdown.section-gray {
  color: #000;
}
.section-countdown.section-gray .countdown-title {
  color: #000;
}
.section-countdown .countdown-title {
  text-transform: uppercase;
  font-weight: 800;
}
.section-countdown .counter-time {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 250px;
  text-align: center;
  font-size: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 768px) {
  .section-countdown .counter-time {
    font-size: 20px;
  }
}
.section-countdown .counter-time .cwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 10px;
}
.section-countdown .counter-time .cwrap #day,
.section-countdown .counter-time .cwrap #hour,
.section-countdown .counter-time .cwrap #min,
.section-countdown .counter-time .cwrap #sec {
  min-width: 50px;
  text-align: right;
  padding-right: 10px;
}

.section-green .btn-countdown {
  background-color: #000;
  color: #fff;
}
.section-green .btn-countdown:hover {
  background-color: #fff;
  color: #000;
}

.section-gray .btn-countdown,
.section-transparent .btn-countdown {
  background-color: #57bcd1;
  color: #fff;
}
.section-gray .btn-countdown:hover,
.section-transparent .btn-countdown:hover {
  background-color: #000;
}

.section-black .btn-countdown {
  background-color: #57bcd1;
  color: #fff;
}
.section-black .btn-countdown:hover {
  background-color: #fff;
  color: #000;
}

.positions-header {
  font-weight: 800;
  font-size: 3rem;
  text-transform: uppercase;
}

.position-wrap .position-name {
  font-weight: 800;
  font-size: 1.8rem;
  text-transform: uppercase;
  padding-bottom: 10px;
  -webkit-transition: 250ms linear color;
  transition: 250ms linear color;
}
@media (max-width: 1299.98px) {
  .position-wrap .position-name {
    font-size: 1.7rem;
  }
}
@media (max-width: 1199.98px) {
  .position-wrap .position-name {
    font-size: 1.4rem;
  }
}
@media (max-width: 991.98px) {
  .position-wrap .position-name {
    font-size: 1.7rem;
  }
}
@media (max-width: 767.98px) {
  .position-wrap .position-name {
    font-size: 1.6rem;
  }
}
.position-wrap .name-of-candidate {
  font-size: 1.5rem;
  font-weight: 800;
  padding-top: 20px;
  margin-bottom: 0;
}
@media (max-width: 1299.98px) {
  .position-wrap .name-of-candidate {
    font-size: 1.4rem;
  }
}
@media (max-width: 1199.98px) {
  .position-wrap .name-of-candidate {
    font-size: 1.2rem;
  }
}
@media (max-width: 991.98px) {
  .position-wrap .name-of-candidate {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .position-wrap .name-of-candidate {
    font-size: 1.4rem;
  }
}
.position-wrap .item-wrap {
  -webkit-box-shadow: 0 3px 32px -7px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 32px -7px rgba(0, 0, 0, 0.16);
  position: relative;
}
.position-wrap .item-wrap img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.position-wrap .item-wrap:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-color: #57bcd1;
}
.position-wrap .btn-wrap {
  padding-top: 20px;
}
.position-wrap .btn-black {
  width: 100%;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
}
.position-wrap:hover .position-name {
  color: #57bcd1;
}
.position-wrap:hover .item-wrap:before {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.section-cta .cta-text {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section-cta .cta-text h3 {
  font-size: 2.875rem;
  text-transform: uppercase;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  margin: auto !important;
  white-space: normal;
}
@media (max-width: 991.98px) {
  .section-cta .cta-text h3 {
    font-size: 2.3rem;
  }
}
.section-cta .cta-text .btn {
  padding: 17px 52px;
}
.section-cta .cta-text .btn-primary {
  color: #fff;
}

.top-404-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 100px;
}
@media (max-width: 991.98px) {
  .top-404-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.logo-404 {
  width: 33%;
  border-right: 3px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 991.98px) {
  .logo-404 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    border-right: none;
    width: 100%;
  }
  .logo-404 div {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 575.98px) {
  .logo-404 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.info-404 {
  width: 67%;
}
.info-404 h1 {
  font-size: 2.125rem;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .info-404 {
    width: 100%;
  }
}

.logo-404-wrap {
  margin-bottom: 27px;
}
.logo-404-wrap svg {
  height: auto;
  width: 122px;
  margin: 0 auto;
}

.logo-404 {
  font-size: 8rem;
  line-height: 1;
  font-weight: 800;
}

.search-404 {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}
.search-404 .search-holder {
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #000;
  padding-right: 20px;
}
.search-404 .search-holder input {
  line-height: 1 !important;
  background-color: transparent !important;
  border-color: transparent !important;
}
.search-404 .search-holder button {
  background-color: transparent;
  border: none;
}

.front-slider .item-slider {
  position: relative;
  height: 39vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  min-height: 440px;
}
@media (max-width: 991.98px) {
  .front-slider .item-slider {
    min-height: auto;
    height: 89vw;
    max-height: 100vh;
  }
}
.front-slider .content-holder {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.front-slider .content-holder.only-btn {
  top: auto;
  bottom: 15%;
}
@media (max-width: 575.98px) {
  .front-slider .content-holder.only-btn {
    bottom: 5px;
  }
}
.front-slider .content-holder h1 {
  font-size: 5.5rem;
  color: #fff;
}
@media (max-width: 991.98px) {
  .front-slider .content-holder h1 {
    font-size: 4rem;
  }
}
@media (max-width: 767.98px) {
  .front-slider .content-holder h1 {
    font-size: 3rem;
  }
}
@media (max-width: 575.98px) {
  .front-slider .content-holder h1 {
    font-size: 2rem;
  }
}
.front-slider .content-holder h1.with-bcg {
  font-weight: 900;
  text-transform: uppercase;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-left: 50px;
  margin-right: 50px;
  line-height: 1;
}
.front-slider .content-holder h1.with-bcg .highlight {
  background-color: #000;
  padding: 22px 0 9px 0;
  display: inline-block;
  color: white;
  -webkit-box-decoration-break: clone;
  -ms-box-decoration-break: clone;
  -o-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media (max-width: 991.98px) {
  .front-slider .content-holder h1.with-bcg .highlight {
    padding-top: 17px;
  }
}
@media (max-width: 575.98px) {
  .front-slider .content-holder h1.with-bcg .highlight {
    padding: 6px 0 4px 0;
    display: inline;
  }
}
.front-slider .content-holder h1.with-bcg.step-1 .highlight {
  -webkit-box-shadow: 35px 0 0 #000, -35px 0 0 #000;
          box-shadow: 35px 0 0 #000, -35px 0 0 #000;
}
.front-slider .content-holder h1.with-bcg.step-2 .highlight {
  -webkit-box-shadow: 35px 0 0 #000, -35px 0 0 #000;
          box-shadow: 35px 0 0 #000, -35px 0 0 #000;
}
@media (max-width: 991.98px) {
  .front-slider .content-holder h1.with-bcg.step-1 .highlight {
    -webkit-box-shadow: 20px 0 0 #000, -20px 0 0 #000;
            box-shadow: 20px 0 0 #000, -20px 0 0 #000;
  }
  .front-slider .content-holder h1.with-bcg.step-2 .highlight {
    -webkit-box-shadow: 20px 0 0 #000, -20px 0 0 #000;
            box-shadow: 20px 0 0 #000, -20px 0 0 #000;
  }
}
@media (max-width: 575.98px) {
  .front-slider .content-holder h1.with-bcg {
    line-height: 40px;
  }
  .front-slider .content-holder h1.with-bcg.step-1 .highlight {
    -webkit-box-shadow: 17px 0 0 #000, -17px 0 0 #000;
            box-shadow: 17px 0 0 #000, -17px 0 0 #000;
  }
  .front-slider .content-holder h1.with-bcg.step-2 .highlight {
    -webkit-box-shadow: 17px 0 0 #000, -17px 0 0 #000;
            box-shadow: 17px 0 0 #000, -17px 0 0 #000;
  }
}
.front-slider .slick-dots {
  bottom: 40px;
}
@media (max-width: 767.98px) {
  .front-slider .slick-dots {
    bottom: 10px;
  }
}
.front-slider .slick-dots li button:before {
  content: "";
  width: 14px;
  height: 14px;
  background-color: #57bcd1;
  border-radius: 50%;
  border-width: 7px;
  border-color: #fff;
  border-style: solid;
  opacity: 1 !important;
  -webkit-transition: border-width 200ms ease-in-out;
  transition: border-width 200ms ease-in-out;
}
.front-slider .slick-dots li button:hover:before {
  border-width: 2px;
  opacity: 0.65;
}
.front-slider .slick-dots li.slick-active button:before {
  border-width: 2px;
  opacity: 1;
}
.front-slider .slider-wrapper {
  position: relative;
}
.front-slider #header-slick-nav button {
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 4;
}
.front-slider #header-slick-nav button i {
  color: #fff;
  font-size: 4rem;
}
.front-slider #header-slick-nav button#header-left {
  left: 30px;
}
.front-slider #header-slick-nav button#header-right {
  right: 30px;
}
@media (max-width: 991.98px) {
  .front-slider #header-slick-nav button#header-left {
    left: 15px;
  }
  .front-slider #header-slick-nav button#header-right {
    right: 15px;
  }
}
@media (max-width: 767.98px) {
  .front-slider #header-slick-nav button#header-left {
    left: 10px;
    display: none !important;
  }
  .front-slider #header-slick-nav button#header-right {
    right: 10px;
    display: none !important;
  }
}

#header-slider:not(.slick-initialized) .slide-wrap:not(:first-of-type) {
  display: none;
}

.section-program.page-program {
  position: relative;
  background-image: url(../images/backgrounds/logo-bg.svg);
  background-repeat: no-repeat;
  background-size: 800px;
  background-position: center;
}
.section-program.page-program:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 800px;
  height: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../images/backgrounds/10rokov.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom -220px;
}

h2 {
  font-weight: 700;
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 2.875rem;
  }
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.grid .grid-item {
  width: calc(33.3333333333% - 10px);
  margin: 5px;
  overflow: hidden;
}
.grid .grid-item:nth-child(3n+2) {
  -webkit-transform: translateY(110px);
          transform: translateY(110px);
}
@media (max-width: 991.98px) {
  .grid .grid-item {
    width: calc(50% - 10px);
  }
  .grid .grid-item:nth-child(3n+2) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .grid .grid-item:nth-child(2n+2) {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
}
@media (max-width: 991.98px) {
  .grid .grid-item:nth-child(2n+2) {
    -webkit-transform: translateY(60px);
            transform: translateY(60px);
  }
}
@media (max-width: 767.98px) {
  .grid .grid-item .program-info {
    background-color: rgba(201, 202, 0, 0.7) !important;
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
    z-index: 1;
  }
  .grid .grid-item .program-info h3 {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.grid .grid-item .program-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(201, 202, 0, 0.86);
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 450ms ease-in-out;
  transition: all 450ms ease-in-out;
}
.grid .grid-item .program-info .program-content {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.grid .grid-item .program-info .program-content h3 {
  font-size: 2.125rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 33px;
}
@media (max-width: 767.98px) {
  .grid .grid-item .program-info .program-content h3 {
    font-size: 1.7rem;
  }
}
@media (max-width: 575.98px) {
  .grid .grid-item .program-info .program-content h3 {
    font-size: 1.3rem;
  }
}
.grid .grid-item .program-info .btn-small {
  padding: 0.5rem 1.5625rem;
}
.grid .grid-item .program-info .btn-small:hover {
  background: #fff !important;
  border-color: transparent;
  color: #000;
}
.grid .grid-item .grid-item-content {
  position: relative;
}
.grid .grid-item .grid-item-content:hover .program-info {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.program-small-content {
  position: relative;
  background-image: url(../images/backgrounds/porazme.svg);
  background-repeat: no-repeat;
  background-position: left top 90px;
  background-size: 100% auto;
}
.program-small-content:before {
  position: absolute;
  content: "";
  width: 100%;
  background-image: url(../images/backgrounds/spolu-w.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% auto;
  bottom: 0;
  min-height: 370px;
  z-index: 0;
}
.program-small-content .green-underline:after {
  bottom: -60px;
}
.program-small-content h2,
.program-small-content h3,
.program-small-content h4,
.program-small-content h5,
.program-small-content h6 {
  color: #57bcd1;
  margin-bottom: 43px;
  text-align: center;
}

@media (max-width: 991.98px) {
  .full-header {
    height: 300px;
    overflow: hidden;
  }
  .full-header .full-header-bcg img {
    height: 300px;
    width: auto;
  }
}
@media (max-width: 767.98px) {
  .full-header {
    height: 250px;
  }
  .full-header .full-header-bcg img {
    height: 250px;
  }
}
@media (max-width: 767.98px) {
  .full-header {
    height: 170px;
  }
  .full-header .full-header-bcg img {
    height: 170px;
  }
}

.article-post {
  position: relative;
  background-image: url(../images/backgrounds/pridaj-sa.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: bottom center;
}
.article-post .article-header h1 {
  font-size: 2.1875rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.article-post .article-header .block-news-date {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media (max-width: 767.98px) {
  .article-post .article-header .block-news-date {
    max-width: 45px;
  }
}

.section-events {
  position: relative;
  background-image: url(../images/backgrounds/pridaj-sa.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
.section-events .month-header {
  margin-top: 60px;
  margin-bottom: 27px;
  font-size: 2.625rem;
  font-weight: 800;
}
.section-events .event-item {
  padding: 22px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fafafa;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}
.section-events .event-item .event-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section-events .event-date {
  margin-right: 30px;
}
.section-events .event-button {
  min-width: 170px;
}
.section-events .event-content h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 30px;
  max-width: 511px;
}
.section-events .event-content .event-time,
.section-events .event-content .event-place {
  position: relative;
  padding-left: 22px;
}
.section-events .event-content .event-time i,
.section-events .event-content .event-place i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1rem;
  display: inline-block;
  width: 1rem;
  text-align: center;
}
.section-events .btn-event {
  background-color: #000;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMS42MzUiIGhlaWdodD0iMTcuOTciIHZpZXdCb3g9IjAgMCAyMS42MzUgMTcuOTciPgogIDxnIGlkPSJsZWZ0LWFycm93XzVfIiBkYXRhLW5hbWU9ImxlZnQtYXJyb3cgKDUpIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyMS42MzUgNTkuNjQ0KSByb3RhdGUoMTgwKSI+CiAgICA8ZyBpZD0iR3JvdXBfMTYxIiBkYXRhLW5hbWU9Ikdyb3VwIDE2MSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCA0MS42NzQpIj4KICAgICAgPHBhdGggaWQ9IlBhdGhfMTI2IiBkYXRhLW5hbWU9IlBhdGggMTI2IiBkPSJNMjAuNDE5LDQ4Ljk2MmwuMDM0LjAwN0g1Ljk3NWw0LjU1MS00LjU2MWExLjIsMS4yLDAsMCwwLDAtMS42OGwtLjcwOC0uNzA5YTEuMTg1LDEuMTg1LDAsMCwwLTEuNjcyLDBsLTcuOCw3LjhhMS4xOTMsMS4xOTMsMCwwLDAsMCwxLjY3OGw3LjgsNy44YTEuMTg2LDEuMTg2LDAsMCwwLDEuNjcyLDBsLjcwOC0uNzA5YTEuMTcyLDEuMTcyLDAsMCwwLC4zNDUtLjgzNiwxLjEzNywxLjEzNywwLDAsMC0uMzQ1LS44MmwtNC42LTQuNTg3SDIwLjQzNWExLjIyNiwxLjIyNiwwLDAsMCwxLjItMS4yMTR2LTFBMS4yLDEuMiwwLDAsMCwyMC40MTksNDguOTYyWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAtNDEuNjc0KSIgZmlsbD0iI2M5Y2EwMCIvPgogICAgPC9nPgogIDwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-position: center right 22px;
  text-transform: none;
  padding: 13px 66px 13px 25px;
  width: 170px;
}
.section-events .btn-event:hover {
  color: #fff;
  background-position: center right 10px;
}
@media (max-width: 767.98px) {
  .section-events .event-holder {
    padding-right: 10px;
  }
  .section-events .event-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
  }
  .section-events .btn-event {
    padding: 10px 36px 10px 10px;
    width: 140px;
    background-position: center right 12px;
  }
  .section-events .btn-event:hover {
    background-position: center right 6px;
  }
}
@media (max-width: 575.98px) {
  .section-events .event-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-events .event-holder {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-events .event-date {
    margin-bottom: 10px;
  }
  .section-events .event-content h3 {
    margin-bottom: 10px;
  }
  .section-events .btn-event {
    width: auto;
    margin-top: 15px;
    padding-right: 50px;
  }
}
.section-events .events-oldies .date-wrap,
.section-events .events-oldies .btn-event {
  background-color: #b3b3b3 !important;
}
.section-events .events-oldies h3,
.section-events .events-oldies .event-time,
.section-events .events-oldies .event-place {
  color: #b3b3b3 !important;
}
.section-events .events-oldies #oldiesHolder {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s ease-out;
  transition: max-height 0.35s ease-out;
}
.section-events .events-oldies #btnOldies {
  position: sticky;
  top: 20px;
  z-index: 1;
}

.section-candidate {
  position: relative;
  background-image: url(../images/backgrounds/pridaj-sa.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
.section-candidate:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/backgrounds/logo-bg.svg);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: top -150px center;
  z-index: -1;
}
@media (max-width: 1299.98px) {
  .section-candidate:before {
    background-size: 55%;
  }
}
@media (max-width: 991.98px) {
  .section-candidate:before {
    background-size: 75%;
  }
}
.section-candidate:after {
  content: "";
  position: absolute;
  bottom: 50%;
  width: 100%;
  height: 520px;
  background-image: url(../images/backgrounds/10rokov.png);
  background-repeat: no-repeat;
  background-size: 860px;
  background-position: center;
  z-index: -1;
  bottom: 300px;
}
@media (max-width: 1299.98px) {
  .section-candidate:after {
    bottom: 190px;
  }
}
@media (max-width: 991.98px) {
  .section-candidate:after {
    background-size: 550px;
  }
}
.section-candidate .search-holder {
  background-color: #fff;
  -webkit-box-shadow: 0 3px 32px -7px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 32px -7px rgba(0, 0, 0, 0.16);
  position: relative;
  height: 64px;
  margin-bottom: 42px;
}
.section-candidate .search-holder input,
.section-candidate .search-holder input[type=text],
.section-candidate .search-holder button {
  background: none;
  border: none;
}
.section-candidate .search-holder input[type=text] {
  height: 64px;
  padding-right: 65px;
}
.section-candidate .search-holder button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 64px;
  font-size: 1.125rem;
}
.section-candidate .candidate-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.section-candidate .candidate-wrapper .candidate-item {
  width: calc(25% - 30px);
  margin: 15px;
  position: relative;
}
.section-candidate .candidate-wrapper .candidate-item:nth-child(4n+2) {
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
.section-candidate .candidate-wrapper .candidate-item:nth-child(4n+4) {
  -webkit-transform: translateY(20%);
          transform: translateY(20%);
}
.section-candidate .candidate-wrapper .candidate-item .item-wrap {
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0 3px 32px -7px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 32px -7px rgba(0, 0, 0, 0.16);
  width: 100%;
  height: 0;
  padding-top: 126.2745%;
}
.section-candidate .candidate-wrapper .candidate-item .item-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.section-candidate .candidate-wrapper .candidate-item .item-wrap:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  background-color: #57bcd1;
}
.section-candidate .candidate-wrapper .candidate-item > a:hover .item-wrap:before {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.section-candidate .candidate-wrapper .candidate-item > a:hover h3 {
  color: #000;
}
.section-candidate .candidate-wrapper .candidate-item > a:hover .candidate-kruzky {
  color: #fff;
}
.section-candidate .candidate-wrapper .candidate-item .candidate-socials {
  position: absolute;
  top: 0;
  left: 0;
  margin: 16px 0 0 21px;
  z-index: 4;
}
.section-candidate .candidate-wrapper .candidate-item .candidate-socials:hover + a .item-wrap:before {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.section-candidate .candidate-wrapper .candidate-item .candidate-socials a {
  color: #e3e4e3;
  font-size: 1.375rem;
  padding-left: 5px;
  padding-right: 5px;
}
.section-candidate .candidate-wrapper .candidate-item .candidate-socials a:hover {
  color: #000;
}
.section-candidate .candidate-wrapper .candidate-item .candidate-number {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 20px 0 0;
  font-size: 3.125rem;
  font-weight: 800;
  color: #e3e4e3;
}
.section-candidate .candidate-wrapper .candidate-item .candidate-kruzky {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 20px 0 0;
  font-size: 2rem;
  font-weight: 800;
  color: #e3e4e3;
  -webkit-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
  z-index: 4;
}
@media (max-width: 1199.98px) {
  .section-candidate .candidate-wrapper .candidate-item .candidate-kruzky {
    top: -4px;
    right: -13px;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  }
}
@media (max-width: 767.98px) {
  .section-candidate .candidate-wrapper .candidate-item .candidate-kruzky {
    top: 0;
    text-shadow: none;
    font-size: 1.8rem;
    padding-top: 4px;
  }
}
@media (max-width: 474px) {
  .section-candidate .candidate-wrapper .candidate-item .candidate-kruzky {
    top: -4px;
    right: -13px;
    font-size: 1.8rem;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  }
}
.section-candidate .candidate-wrapper .candidate-item h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-top: 17px;
  color: #000;
}
.section-candidate .btn-wrap {
  margin-top: 150px;
}
@media (max-width: 1199.98px) {
  .section-candidate .candidate-wrapper .candidate-item .candidate-socials {
    margin: 11px 0 0 10px;
  }
  .section-candidate .candidate-wrapper .candidate-item .candidate-socials a {
    padding-left: 4px;
    padding-right: 4px;
  }
  .section-candidate .candidate-wrapper .candidate-item .candidate-number {
    font-size: 2.5rem;
  }
}
@media (max-width: 991.98px) {
  .section-candidate .candidate-wrapper .candidate-item {
    width: calc(33.3333333333% - 30px);
    margin: 15px;
    position: relative;
  }
  .section-candidate .candidate-wrapper .candidate-item:nth-child(4n+2) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .section-candidate .candidate-wrapper .candidate-item:nth-child(4n+4) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .section-candidate .candidate-wrapper .candidate-item:nth-child(3n+2) {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  .section-candidate .candidate-wrapper .candidate-item .item-wrap .candidate-number {
    padding-top: 0;
  }
}
@media (max-width: 767.98px) {
  .section-candidate .candidate-wrapper .candidate-item {
    width: calc(50% - 14px);
    margin: 7px;
    position: relative;
  }
  .section-candidate .candidate-wrapper .candidate-item:nth-child(3n+2) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .section-candidate .candidate-wrapper .candidate-item:nth-child(2n+2) {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
  }
  .section-candidate .candidate-wrapper .candidate-item .item-wrap .candidate-number {
    font-size: 1.6875rem;
    padding-top: 4px;
  }
}

.post-type-archive .search-wrapper {
  margin-left: -8px;
  margin-right: -8px;
}

@media (max-width: 450px) {
  .term-zvoleni-poslanci .section-candidate .candidate-wrapper .candidate-item {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .term-zvoleni-poslanci .section-candidate .candidate-wrapper .candidate-item .candidate-socials {
    margin: 11px 0 0 22px;
  }
}

.nrsr-position {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  padding: 5px 5px;
  background: #57bcd1;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 2;
  line-height: 1;
}
.nrsr-position br,
.nrsr-position br:after {
  content: " ";
}

.olano_kandidati-template-default .page-header {
  display: none;
}

.section-single-candidate {
  position: relative;
  background-image: url(../images/backgrounds/mame.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
.section-single-candidate:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/backgrounds/logo-bg.svg);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: top 5px center;
  z-index: -1;
}
@media (max-width: 1299.98px) {
  .section-single-candidate:before {
    background-size: 55%;
  }
}
@media (max-width: 991.98px) {
  .section-single-candidate:before {
    background-size: 75%;
  }
}
.section-single-candidate .single-candidate-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section-single-candidate .single-candidate-wrap .mobile-name {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  width: 100%;
}
@media (max-width: 767.98px) {
  .section-single-candidate .single-candidate-wrap .mobile-name {
    font-size: 2.5rem;
  }
}
@media (max-width: 575.98px) {
  .section-single-candidate .single-candidate-wrap .mobile-name {
    font-size: 1.8rem;
  }
}
.section-single-candidate .single-candidate-wrap .candidate-item {
  width: calc(45% - 50px);
  position: relative;
  margin-right: 50px;
}
.section-single-candidate .single-candidate-wrap .candidate-item .item-wrap {
  position: relative;
  background-color: #57bcd1;
  -webkit-box-shadow: 0 3px 32px -7px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 32px -7px rgba(0, 0, 0, 0.16);
}
.section-single-candidate .single-candidate-wrap .candidate-item .item-wrap img {
  position: relative;
  z-index: 2;
}
.section-single-candidate .single-candidate-wrap .candidate-item .item-wrap .candidate-number {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 20px 0 0;
  font-size: 4.3125rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.43);
}
.section-single-candidate .single-candidate-wrap .candidate-content {
  width: 55%;
}
.section-single-candidate .single-candidate-wrap .candidate-content h2 {
  font-size: 3rem;
  font-weight: 800;
}
@media (max-width: 767.98px) {
  .section-single-candidate .single-candidate-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section-single-candidate .single-candidate-wrap .candidate-item {
    width: 100%;
    margin-right: 0;
  }
  .section-single-candidate .single-candidate-wrap .candidate-content {
    width: 100%;
  }
}
.section-single-candidate .single-candidate-sociels a {
  font-size: 2rem;
  margin-right: 10px;
  color: #000;
}
.section-single-candidate .single-candidate-sociels a:first-of-type {
  margin-left: 10px;
}
.section-single-candidate .single-candidate-sociels a:hover {
  color: #57bcd1;
}
.section-single-candidate .candidate-gov {
  color: #57bcd1;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .section-single-candidate .candidate-gov {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}
@media (max-width: 575.98px) {
  .section-single-candidate .candidate-gov {
    font-size: 1.6rem;
  }
}
.section-single-candidate .candidate-kruzky-single {
  color: #57bcd1;
  font-size: 3rem;
  font-weight: 800;
  padding-left: 20px;
}
@media (max-width: 767.98px) {
  .section-single-candidate .candidate-kruzky-single {
    padding-left: 0;
  }
}
.section-single-candidate .candidate-video-wrapper {
  max-width: 560px;
  margin: auto;
}
.section-single-candidate .candidate-header-video {
  font-weight: 800;
}

.bg-gray {
  background-color: #f7f7f7;
}

.archive-content {
  position: relative;
  background-image: url(../images/backgrounds/pridaj-sa.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
.archive-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/backgrounds/logo-bg.svg);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position: top center;
  z-index: -1;
}
@media (max-width: 1299.98px) {
  .archive-content:before {
    background-size: 55%;
  }
}
@media (max-width: 991.98px) {
  .archive-content:before {
    background-size: 75%;
  }
}
.archive-content.aktuality-archive .page-header-wrapper {
  height: auto;
}
.archive-content.aktuality-archive .page-header-wrapper h1 {
  color: #000;
  font-size: 2.9375rem;
  font-weight: 900;
  text-transform: uppercase;
}
.archive-content .block-news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 2.5rem;
  position: relative;
}
.archive-content .block-news-content:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #e3e3e3;
  border-radius: 2px;
  bottom: 0;
  z-index: 1;
  -webkit-transition: 200ms background-color ease-in-out;
  transition: 200ms background-color ease-in-out;
}
.archive-content .block-news-content .block-news-text {
  padding-left: 27px;
}
.archive-content .block-news-content .block-news-text h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: #000;
  min-height: 132px;
  margin-bottom: 24px;
}
.archive-content .block-news-content .block-news-text p {
  font-size: 0.875rem;
  color: #000;
  margin-bottom: 0;
  min-height: 105px;
}
.archive-content .news-item {
  margin-bottom: 2rem;
}
.archive-content .news-item img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: -webkit-filter 250ms linear;
  transition: -webkit-filter 250ms linear;
  transition: filter 250ms linear;
  transition: filter 250ms linear, -webkit-filter 250ms linear;
}
.archive-content a:hover .block-news-content:after {
  background-color: #57bcd1;
}
.archive-content a:hover img {
  -webkit-filter: grayscale(0) !important;
          filter: grayscale(0) !important;
}

.page-post {
  background-image: url(../images/backgrounds/logo-bg.svg), url(../images/backgrounds/pridaj-sa.svg);
  background-repeat: no-repeat;
  background-position: center top 50px, left bottom;
  background-size: auto, 100% auto;
}
.page-post h2 {
  font-size: 4.375rem;
  font-weight: 900;
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  .page-post h2 {
    font-size: 3.8rem;
  }
}
@media (max-width: 767.98px) {
  .page-post h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 575.98px) {
  .page-post h2 {
    font-size: 2.2rem;
    font-weight: 800;
  }
}
.page-post h2:after {
  width: 62px;
  height: 4px;
  content: "";
  background-color: #57bcd1;
  position: absolute;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section-program-big {
  position: relative;
  background-image: url(../images/backgrounds/logo-bg.svg);
  background-repeat: no-repeat;
  background-size: 700px;
  background-position: center;
}
.section-program-big:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 800px;
  max-width: 100%;
  height: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../images/backgrounds/10rokov.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center bottom;
}

.program-wrapper {
  position: relative;
}
.program-wrapper .btn-wrap a {
  position: relative;
  z-index: 2;
}

.program-line {
  width: 4px;
  height: 0;
  position: absolute;
  top: 0;
  left: calc(50% - 2px);
  background-color: #57bcd1;
  -webkit-transition: height 250ms linear;
  transition: height 250ms linear;
  z-index: 1;
}
@media (max-width: 991.98px) {
  .program-line {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .program-line {
    height: 100% !important;
  }
}

.program-holder {
  position: relative;
}
.program-holder:before {
  content: "";
  height: 100%;
  width: 4px;
  left: calc(50% - 2px);
  background-color: #f7f7f7;
  position: absolute;
  top: 0;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .program-holder:before {
    display: none;
  }
}

.point-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: -70px;
  margin-right: 500px;
}
@media (max-width: 1299.98px) {
  .point-wrap {
    margin-right: 466px;
  }
}
@media (max-width: 1199.98px) {
  .point-wrap {
    margin-right: 405px;
  }
}
@media (max-width: 991.98px) {
  .point-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.point-wrap.even {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-right: 0;
  margin-left: 500px;
}
@media (max-width: 1299.98px) {
  .point-wrap.even {
    margin-left: 466px;
  }
}
@media (max-width: 1199.98px) {
  .point-wrap.even {
    margin-left: 405px;
  }
}
@media (max-width: 991.98px) {
  .point-wrap.even {
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.point-wrap.even:after {
  left: 104px;
  background-position: -200px 0;
}
@media (max-width: 1199.98px) {
  .point-wrap.even:after {
    width: 60px;
    left: 70px;
  }
}
.point-wrap:after {
  content: "";
  height: 4px;
  width: 200px;
  background-color: #f7f7f7;
  top: calc(50% - 2px);
  right: 104px;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  background-image: url(../images/backgrounds/primary.png);
  background-repeat: no-repeat;
  background-position: 200px 0;
  background-size: 200px 4px;
  -webkit-transition: background-position 250ms linear;
  transition: background-position 250ms linear;
}
@media (max-width: 1199.98px) {
  .point-wrap:after {
    width: 60px;
    right: 70px;
  }
}
@media (max-width: 991.98px) {
  .point-wrap:after {
    display: none;
  }
}
.point-wrap.active:after {
  -webkit-transition-delay: 350ms;
          transition-delay: 350ms;
  background-position: 0 0;
}

.point-text {
  padding: 48px 30px 28px;
  border-radius: 26px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.09);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.09);
  position: relative;
  background: #fff;
  -webkit-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  z-index: 10;
}
.point-text:hover {
  cursor: pointer;
  background-color: #57bcd1;
}
.point-text:hover a {
  color: #fff;
}
@media (max-width: 991.98px) {
  .point-text:hover {
    background-color: #fff;
  }
  .point-text:hover a {
    color: #57bcd1;
  }
}
.point-text h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 26px;
}
.point-text p {
  font-size: 0.875rem;
  font-weight: 400;
}

.point-part {
  width: 400px;
}
@media (max-width: 575.98px) {
  .point-part {
    width: 100%;
  }
}

.point-icon {
  width: 110px;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media (max-width: 991.98px) {
  .point-icon {
    width: 220px;
  }
}
.point-icon .point-icon-wrap {
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 74px;
  margin: 4px auto;
  position: relative;
  z-index: 10;
}
@media (max-width: 991.98px) {
  .point-icon .point-icon-wrap {
    margin-bottom: -30px;
    -webkit-box-shadow: 0 0 10px 8px rgba(0, 0, 0, 0.08);
            box-shadow: 0 0 10px 8px rgba(0, 0, 0, 0.08);
  }
}
.point-icon img {
  width: 42px;
  height: auto;
}

.point-icon-under,
.point-icon-outer {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.point-icon-outer {
  background-color: #9f9f9e;
}
@media (max-width: 991.98px) {
  .point-icon-outer {
    background-color: #57bcd1;
  }
}

.point-icon-under {
  background-color: transparent;
}
.active .point-icon-under {
  background-color: #57bcd1;
  -webkit-animation: fill-right linear 500ms;
          animation: fill-right linear 500ms;
}
@media (max-width: 767.98px) {
  .active .point-icon-under {
    -webkit-animation: none;
            animation: none;
  }
}
.inactive .point-icon-under {
  background-color: #57bcd1;
  -webkit-animation: fill-right-out linear 500ms;
          animation: fill-right-out linear 500ms;
  -webkit-clip-path: polygon(50% 50%, 0 50%, 0 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
          clip-path: polygon(50% 50%, 0 50%, 0 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
}
@media (max-width: 767.98px) {
  .inactive .point-icon-under {
    -webkit-animation: none;
            animation: none;
  }
}

.active.even .point-icon-under {
  -webkit-animation: fill-left linear 500ms;
          animation: fill-left linear 500ms;
}
@media (max-width: 767.98px) {
  .active.even .point-icon-under {
    -webkit-animation: none;
            animation: none;
  }
}
.inactive.even .point-icon-under {
  -webkit-animation: fill-left-out linear 500ms;
          animation: fill-left-out linear 500ms;
  -webkit-clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%);
          clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%);
}
@media (max-width: 767.98px) {
  .inactive.even .point-icon-under {
    -webkit-animation: none;
            animation: none;
  }
}

@-webkit-keyframes fill-right {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
  }
  12.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  37.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
  }
  62.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 50% 100%, 50% 100%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 50% 100%, 50% 100%);
  }
  87.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
  }
}

@keyframes fill-right {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
  }
  12.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  37.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
  }
  62.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 50% 100%, 50% 100%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 50% 100%, 50% 100%);
  }
  87.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
  }
}
@-webkit-keyframes fill-right-out {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
  }
  12.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 100%);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 50% 100%, 50% 100%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 50% 100%, 50% 100%);
  }
  37.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
  }
  62.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  87.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
  }
}
@keyframes fill-right-out {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 50%);
  }
  12.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 0% 100%, 0% 100%);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 50% 100%, 50% 100%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 50% 100%, 50% 100%, 50% 100%);
  }
  37.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
  }
  62.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  87.5% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
            clip-path: polygon(50% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
  }
}
@-webkit-keyframes fill-left {
  0% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
  }
  12.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  37.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
  }
  62.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 0% 100%, 0% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 0% 100%, 0% 100%, 0% 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 50% 100%, 50% 100%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 50% 100%, 50% 100%);
  }
  87.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 100%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 50%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 50%);
  }
}
@keyframes fill-left {
  0% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
  }
  12.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  37.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
  }
  62.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 0% 100%, 0% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 0% 100%, 0% 100%, 0% 100%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 50% 100%, 50% 100%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 50% 100%, 50% 100%);
  }
  87.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 100%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 50%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 50%);
  }
}
@-webkit-keyframes fill-left-out {
  0% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 50%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 50%);
  }
  12.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 100%);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 50% 100%, 50% 100%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 50% 100%, 50% 100%);
  }
  37.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 0% 100%, 0% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 0% 100%, 0% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
  }
  62.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  87.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
  }
}
@keyframes fill-left-out {
  0% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 50%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 50%);
  }
  12.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 100% 100%, 100% 100%);
  }
  25% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 50% 100%, 50% 100%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 50% 100%, 50% 100%, 50% 100%);
  }
  37.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 0% 100%, 0% 100%, 0% 100%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 100%, 0% 100%, 0% 100%, 0% 100%);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 50%, 0% 50%, 0% 50%, 0% 50%, 0% 50%);
  }
  62.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%);
  }
  75% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  87.5% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
            clip-path: polygon(50% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%, 100% 50%);
  }
}
.search-result-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 30px;
  margin-bottom: 40px;
  background-color: #fafafa;
}
@media (max-width: 767.98px) {
  .search-result-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.page-title-search {
  font-size: 3.125rem;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 60px;
}

.search-404 {
  margin-bottom: 60px;
}

.btn-search {
  padding: 5px 17px 2px;
  font-weight: 500;
  font-size: 0.875rem;
}

.search-result-text h2 {
  font-size: 2rem;
  color: #000;
  -webkit-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
.search-result-text .search-result-excerpt {
  font-size: 1rem;
  color: #313131;
  padding-right: 60px;
  -webkit-transition: color 250ms ease-in-out;
  transition: color 250ms ease-in-out;
}
@media (max-width: 767.98px) {
  .search-result-text .search-result-excerpt {
    padding-right: 0;
    padding-bottom: 20px;
  }
}
.search-result-text a:hover h2,
.search-result-text a:hover .search-result-excerpt {
  color: #57bcd1;
}

.section-search-result {
  background-image: url(../images/backgrounds/logo-bg.svg);
  background-repeat: no-repeat;
  background-position: top 80px center;
  background-size: auto 300px;
  padding-bottom: 60px;
  min-height: 500px;
}
.section-search-result .section-news {
  background: none;
}

.info-text-no-result {
  padding-bottom: 50px;
}

.gallery-holder {
  padding-bottom: 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gallery-holder a:focus {
  outline: none;
}

.gallery-single h1 {
  font-weight: 900;
  font-size: 2.9375rem;
}

.soc-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 575.98px) {
  .soc-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.soc-wrap .btn-search {
  border-radius: 5px;
  max-height: 28px;
  padding: 4px 17px 2px;
}
@media (max-width: 575.98px) {
  .soc-wrap .btn-search {
    margin-top: 15px;
  }
}

.gallery-archive .no-bg .page-header-wrapper {
  height: auto;
}
.gallery-archive .no-bg .page-header-wrapper .page-header-content {
  max-width: none;
  margin: auto;
}
.gallery-archive .no-bg .page-header-wrapper .page-header-content .title-wrap {
  position: relative;
}
.gallery-archive .no-bg .page-header-wrapper .page-header-content .title-wrap h1 {
  text-align: center;
  color: #000;
}
.gallery-archive .gallery-item {
  padding-bottom: 2rem;
}
.gallery-archive .gallery-item .item-wrap {
  position: relative;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
}
.gallery-archive .gallery-item .item-wrap img {
  position: absolute;
  width: 100%;
  top: 0;
}
.gallery-archive .gallery-item h3 {
  font-size: 2rem;
  padding-top: 1rem;
  color: #000;
  font-weight: 800;
}

@media (max-width: 575.98px) {
  .page-program-header .page-header-bg,
  .page-program-header .page-header-wrapper {
    width: 100vw;
    border-radius: 0;
  }
}
.page-program-header .overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc((100vw - 1240px) / 2 + 1240px);
  height: 100%;
  border-radius: 0 0 0 498px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.1)), color-stop(54%, rgba(255, 255, 255, 0.9)), color-stop(80%, rgb(255, 255, 255)), to(rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.9) 54%, rgb(255, 255, 255) 80%, rgb(255, 255, 255) 100%);
}
@media (max-width: 575.98px) {
  .page-program-header .overlay-bg {
    width: 100vw;
    border-radius: 0;
  }
}
.page-program-header .program-owner {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc((100vw - 1240px) / 2 + 1240px);
  text-align: right;
  padding-right: 60px;
}
.page-program-header .program-owner img {
  height: 100%;
  width: auto;
}
@media (max-width: 991.98px) {
  .page-program-header .program-owner img {
    position: absolute;
    right: 140px;
  }
}
@media (max-width: 767.98px) {
  .page-program-header .program-owner img {
    right: 330px;
  }
}
@media (max-width: 575.98px) {
  .page-program-header .program-owner img {
    display: none;
  }
}
.page-program-header .buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 991.98px) {
  .page-program-header .buttons {
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .page-program-header .buttons {
    width: 100%;
  }
}
.page-program-header .buttons .btn {
  margin-left: 18px;
  margin-right: 18px;
}
@media (max-width: 991.98px) {
  .page-program-header .buttons .btn {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
@media (max-width: 767.98px) {
  .page-program-header .buttons .btn {
    margin-bottom: 5px;
    margin-top: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .page-program-header .buttons .btn:first-of-type {
    margin-bottom: 10px;
  }
}
.page-program-header .buttons .program-title,
.page-program-header .buttons .program-subtitle {
  color: #fff;
  font-size: 2.9375rem;
}
.page-program-header .buttons .program-title.with-candidate,
.page-program-header .buttons .program-subtitle.with-candidate {
  text-shadow: 0 0 6px #000;
}
.page-program-header .buttons .program-title {
  font-weight: 900;
  text-transform: uppercase;
}
.page-program-header .buttons .program-subtitle {
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .page-program-header .buttons .program-title,
  .page-program-header .buttons .program-subtitle {
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .page-program-header .buttons .program-subtitle {
    display: none;
  }
}

.detail-poslanec .accordion .card {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #000;
}
.detail-poslanec .accordion .card .card-header {
  background: #fff;
  border-bottom: 0;
}
.detail-poslanec .accordion .card .card-header .btn {
  padding: 0 !important;
  color: #000 !important;
}