@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.71429px, -6px, 0);
            transform: rotate(-45deg) translate3d(-5.71429px, -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.71429px, -6px, 0);
            transform: rotate(45deg) translate3d(5.71429px, -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); }

/***
    The new CSS reset - version 1.8.2 (last updated 23.12.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert; }

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert; }

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none; }

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%; }

/* removes spacing between cells in tables */
table {
  border-collapse: collapse; }

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto; }

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert; }

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert; }

/* preformatted text - use only for this feature */
pre {
  all: revert; }

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset; }
::-moz-placeholder {
  color: unset; }
:-ms-input-placeholder {
  color: unset; }
::-ms-input-placeholder {
  color: unset; }
::placeholder {
  color: unset; }

/* remove default dot (•) sign */
::marker {
  content: ''; }

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none; }

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable='false'])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto; }

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable='true']) {
  -webkit-user-drag: element; }

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert; }

@font-face {
  font-family: "Monument Grotesk";
  src: url("../../assets/fonts/MonumentGrotesk-Regular.woff2") format("woff2"), url("../../assets/fonts/MonumentGrotesk-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Monument Grotesk";
  src: url("../../assets/fonts/MonumentGrotesk-Medium.woff2") format("woff2"), url("../../assets/fonts/MonumentGrotesk-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Monument Grotesk";
  src: url("../../assets/fonts/MonumentGrotesk-Bold.woff2") format("woff2"), url("../../assets/fonts/MonumentGrotesk-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Future Forces";
  src: url("../../assets/fonts/FutureForces.woff2") format("woff2"), url("../../assets/fonts/FutureForces.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

body,
html {
  font-family: "Monument Grotesk", sans-serif; }

body,
html {
  font-size: 10px;
  max-width: 100vw;
  overflow-x: hidden; }
  body.lock,
  html.lock {
    overflow: hidden; }

.container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto; }
  .container .row {
    padding: 0 6rem; }
    @media screen and (max-width: 1439px) {
      .container .row {
        padding: 0 5rem; } }
    @media screen and (max-width: 767px) {
      .container .row {
        padding: 0 4rem; } }
    @media screen and (max-width: 500px) {
      .container .row {
        padding: 0 3.5rem; } }

header {
  padding: 5rem 0;
  position: relative;
  z-index: 99; }
  @media screen and (max-width: 1439px) {
    header {
      padding: 4rem 0; } }
  @media screen and (max-width: 767px) {
    header {
      padding: 3rem 0; } }
  @media screen and (max-width: 500px) {
    header {
      padding: 2.5rem 0; } }
  header .container .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    header .container .row .hamburger {
      margin: 0 0 0 auto;
      padding: 0; }
      @media screen and (max-width: 1599px) {
        header .container .row .hamburger {
          -webkit-transform: scale(0.9);
                  transform: scale(0.9);
          -webkit-transform-origin: right top;
                  transform-origin: right top; } }
      @media screen and (max-width: 1279px) {
        header .container .row .hamburger {
          -webkit-transform-origin: right center;
                  transform-origin: right center;
          margin-top: 1.5rem; } }
      @media screen and (max-width: 639px) {
        header .container .row .hamburger {
          -webkit-transform: scale(0.8);
                  transform: scale(0.8);
          margin-top: 1rem; } }
      header .container .row .hamburger.is-active .hamburger-inner {
        background: white; }
        header .container .row .hamburger.is-active .hamburger-inner::before, header .container .row .hamburger.is-active .hamburger-inner::after {
          background: white; }
      header .container .row .hamburger .hamburger-inner {
        border-radius: 0; }
        header .container .row .hamburger .hamburger-inner::before, header .container .row .hamburger .hamburger-inner::after {
          border-radius: 0; }

.absolute header {
  position: absolute;
  top: 0;
  width: 100%; }
  .absolute header .container .row .hamburger .hamburger-inner {
    background: white; }
    .absolute header .container .row .hamburger .hamburger-inner::before, .absolute header .container .row .hamburger .hamburger-inner::after {
      background: white; }

nav {
  position: absolute;
  top: 0;
  z-index: 98;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  visibility: hidden; }
  nav .container {
    height: 100%; }
    nav .container .row {
      height: 100%;
      padding-top: 7.5rem;
      padding-bottom: 7.5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 5rem; }
      @media screen and (max-width: 1919px) {
        nav .container .row {
          padding-bottom: 5rem; } }
      @media screen and (max-width: 1599px) {
        nav .container .row {
          gap: 4rem; } }
      @media screen and (max-width: 1439px) {
        nav .container .row {
          padding-top: 6rem;
          padding-bottom: 3rem; } }
      @media screen and (max-width: 1279px) {
        nav .container .row {
          padding-top: 8rem;
          padding-bottom: 2.5rem;
          gap: 2.5rem; } }
      @media screen and (max-width: 767px) {
        nav .container .row {
          padding-top: 7rem; } }
      @media screen and (max-width: 639px) {
        nav .container .row {
          padding-bottom: 2rem;
          gap: 1.5rem; } }
      nav .container .row .video-wrapper {
        position: relative;
        width: 100%; }
        nav .container .row .video-wrapper video {
          -o-object-fit: cover;
             object-fit: cover;
          -o-object-position: center;
             object-position: center;
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          width: 100%; }
      nav .container .row .navigation {
        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: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 4rem 0;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end; }
        @media screen and (max-width: 1919px) {
          nav .container .row .navigation {
            padding-bottom: 2.5rem; } }
        @media screen and (max-width: 1439px) {
          nav .container .row .navigation {
            padding-top: 3rem; } }
        @media screen and (max-width: 1279px) {
          nav .container .row .navigation {
            padding-bottom: 2rem; } }
        @media screen and (max-width: 1023px) {
          nav .container .row .navigation {
            padding-bottom: 3rem; } }
        @media screen and (max-width: 767px) {
          nav .container .row .navigation {
            padding-bottom: 2.25rem; } }
        @media screen and (max-width: 639px) {
          nav .container .row .navigation {
            padding-bottom: 2rem; } }
        nav .container .row .navigation > a svg {
          width: 11rem; }
          @media screen and (max-width: 1919px) {
            nav .container .row .navigation > a svg {
              width: 10rem; } }
          @media screen and (max-width: 1439px) {
            nav .container .row .navigation > a svg {
              width: 9.5rem; } }
          @media screen and (max-width: 1439px) {
            nav .container .row .navigation > a svg {
              width: 9rem; } }
          @media screen and (max-width: 1023px) {
            nav .container .row .navigation > a svg {
              width: 8.5rem; } }
          @media screen and (max-width: 767px) {
            nav .container .row .navigation > a svg {
              width: 8rem; } }
          @media screen and (max-width: 639px) {
            nav .container .row .navigation > a svg {
              width: 7rem; } }
          @media screen and (max-width: 500px) {
            nav .container .row .navigation > a svg {
              width: 6.5rem; } }
          nav .container .row .navigation > a svg path {
            fill: white; }
            nav .container .row .navigation > a svg path:last-child {
              fill: #00ff00; }
        nav .container .row .navigation ul {
          color: white;
          font-size: 2.1rem;
          line-height: 1.5; }
          @media screen and (max-width: 1439px) {
            nav .container .row .navigation ul {
              font-size: 1.9rem; } }
          @media screen and (max-width: 639px) {
            nav .container .row .navigation ul {
              font-size: 1.8rem; } }
          @media screen and (max-width: 500px) {
            nav .container .row .navigation ul {
              font-size: 1.6rem; } }
          nav .container .row .navigation ul li a {
            -webkit-transition: color 0.3s ease;
            transition: color 0.3s ease; }
            nav .container .row .navigation ul li a:hover, nav .container .row .navigation ul li a.active {
              color: #00ff00; }

footer {
  background: black;
  color: white;
  padding: 5rem 0; }
  @media screen and (max-width: 1439px) {
    footer {
      padding: 4rem 0; } }
  @media screen and (max-width: 500px) {
    footer {
      padding: 3.5rem 0; } }
  footer a {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease; }
    footer a:hover {
      color: #00ff00; }
  footer .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media screen and (max-width: 1279px) {
      footer .row {
        display: block; } }
    footer .row h3 {
      font-weight: 500;
      font-size: 4rem;
      margin-bottom: 1em; }
      @media screen and (max-width: 1599px) {
        footer .row h3 {
          font-size: 3.6rem; } }
      @media screen and (max-width: 1023px) {
        footer .row h3 {
          font-size: 3.2rem; } }
      @media screen and (max-width: 767px) {
        footer .row h3 {
          font-size: 3rem; } }
      @media screen and (max-width: 639px) {
        footer .row h3 {
          font-size: 2.8rem; } }
      @media screen and (max-width: 500px) {
        footer .row h3 {
          font-size: 2.4rem; } }
    footer .row .agent > a {
      display: inline-block;
      width: 17.5rem;
      margin-bottom: 4rem; }
      @media screen and (max-width: 1919px) {
        footer .row .agent > a {
          width: 15rem;
          margin-bottom: 3rem; } }
      @media screen and (max-width: 1599px) {
        footer .row .agent > a {
          width: 14rem; } }
      @media screen and (max-width: 1439px) {
        footer .row .agent > a {
          width: 13rem;
          margin-bottom: 2.5rem; } }
    footer .row .agent .details {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 7.5rem; }
      @media screen and (max-width: 1919px) {
        footer .row .agent .details {
          gap: 5rem; } }
      @media screen and (max-width: 1599px) {
        footer .row .agent .details {
          gap: 4rem; } }
      @media screen and (max-width: 1439px) {
        footer .row .agent .details {
          gap: 2.5rem; } }
      @media screen and (max-width: 1279px) {
        footer .row .agent .details {
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          gap: 0; } }
      @media screen and (max-width: 767px) {
        footer .row .agent .details {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          row-gap: 3rem; } }
      @media screen and (max-width: 500px) {
        footer .row .agent .details {
          grid-template-columns: repeat(1, 1fr);
          row-gap: 2rem; } }
      footer .row .agent .details p {
        font-size: 1.4rem;
        font-weight: 500;
        line-height: 1.45; }
        @media screen and (max-width: 1439px) {
          footer .row .agent .details p {
            font-size: 1.3rem; } }
        footer .row .agent .details p a {
          font-weight: 400; }
    footer .row .developer {
      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: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; }
      @media screen and (max-width: 1279px) {
        footer .row .developer {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
              -ms-flex-direction: row;
                  flex-direction: row;
          margin-top: 3rem; } }
      @media screen and (max-width: 767px) {
        footer .row .developer {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          gap: 2rem;
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start;
          margin-top: 3.5rem; } }
      footer .row .developer a {
        font-family: "Future Forces", sans-serif;
        font-size: 2rem;
        text-decoration: underline;
        line-height: 1;
        text-align: right; }
        @media screen and (max-width: 1599px) {
          footer .row .developer a {
            font-size: 1.8rem; } }
        @media screen and (max-width: 1439px) {
          footer .row .developer a {
            font-size: 1.7rem; } }
        @media screen and (max-width: 767px) {
          footer .row .developer a {
            text-align: left; } }
        footer .row .developer a img {
          width: 17.5rem; }
          @media screen and (max-width: 1919px) {
            footer .row .developer a img {
              width: 15rem; } }
          @media screen and (max-width: 1599px) {
            footer .row .developer a img {
              width: 14rem; } }
          @media screen and (max-width: 1439px) {
            footer .row .developer a img {
              width: 13rem; } }

.hero {
  position: relative; }
  @media screen and (max-width: 1919px) {
    .hero {
      aspect-ratio: 4/3; } }
  @media screen and (max-width: 1439px) {
    .hero {
      aspect-ratio: 4/3.25; } }
  @media screen and (max-width: 1279px) {
    .hero {
      aspect-ratio: 1/1; } }
  @media screen and (max-width: 1023px) {
    .hero {
      aspect-ratio: 1/1.125; } }
  @media screen and (max-width: 639px) {
    .hero {
      aspect-ratio: 1/1.25; } }
  @media screen and (max-width: 500px) {
    .hero {
      aspect-ratio: unset; } }
  .hero > img {
    display: block;
    width: 100%; }
    @media screen and (max-width: 1919px) {
      .hero > img {
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%; } }
    @media screen and (max-width: 1279px) {
      .hero > img {
        -o-object-position: center bottom;
           object-position: center bottom; } }
    @media screen and (max-width: 500px) {
      .hero > img {
        position: static;
        -o-object-fit: unset;
           object-fit: unset; } }
    @media screen and (max-width: 1279px) {
      .hero > img.desktop {
        display: none; } }
    .hero > img.mobile {
      display: none; }
      @media screen and (max-width: 1279px) {
        .hero > img.mobile {
          display: block; } }
  .hero a.logo {
    position: absolute;
    width: 25rem;
    z-index: 2;
    top: 5rem;
    left: 6rem; }
    @media screen and (max-width: 1599px) {
      .hero a.logo {
        width: 20rem; } }
    @media screen and (max-width: 1439px) {
      .hero a.logo {
        top: 4rem;
        left: 5rem; } }
    @media screen and (max-width: 767px) {
      .hero a.logo {
        top: 3rem;
        left: 4rem; } }
    @media screen and (max-width: 639px) {
      .hero a.logo {
        width: 17.5rem; } }
    @media screen and (max-width: 500px) {
      .hero a.logo {
        left: 3.5rem;
        width: 16rem;
        top: 2.5rem; } }
    .hero a.logo svg path {
      fill: white; }
      .hero a.logo svg path:last-child {
        fill: #00ff00; }
  .hero .container {
    position: absolute;
    z-index: 1;
    padding-top: 5rem;
    left: 0;
    top: 0;
    width: 100%; }
    @media screen and (max-width: 1439px) {
      .hero .container {
        padding-top: 4rem; } }
    .hero .container .text {
      width: 40%;
      margin: 0 auto;
      text-align: center; }
      @media screen and (max-width: 1919px) {
        .hero .container .text {
          width: 45%; } }
      @media screen and (max-width: 1279px) {
        .hero .container .text {
          width: 100%;
          margin-top: 8rem; } }
      @media screen and (max-width: 1023px) {
        .hero .container .text {
          margin-top: 9rem; } }
      @media screen and (max-width: 767px) {
        .hero .container .text {
          margin-top: 7.5rem; } }
      @media screen and (max-width: 500px) {
        .hero .container .text {
          margin-top: 7rem; } }
    .hero .container h1 {
      font-weight: 700;
      font-size: 6rem;
      margin-bottom: 0.25em; }
      @media screen and (max-width: 1919px) {
        .hero .container h1 {
          font-size: 5rem; } }
      @media screen and (max-width: 1599px) {
        .hero .container h1 {
          font-size: 4.4rem; } }
      @media screen and (max-width: 1439px) {
        .hero .container h1 {
          font-size: 4rem;
          margin-bottom: 0.35em; } }
      @media screen and (max-width: 1023px) {
        .hero .container h1 {
          font-size: 3.6rem; } }
      @media screen and (max-width: 767px) {
        .hero .container h1 {
          font-size: 3.2rem; } }
      @media screen and (max-width: 639px) {
        .hero .container h1 {
          font-size: 2.9rem; } }
      @media screen and (max-width: 500px) {
        .hero .container h1 {
          font-size: 2.5rem; } }
    .hero .container p {
      color: white;
      font-size: 1.8rem;
      line-height: 1.5;
      font-weight: 500; }
      @media screen and (max-width: 1439px) {
        .hero .container p {
          font-size: 1.7rem; } }
      @media screen and (max-width: 1279px) {
        .hero .container p {
          width: 60%;
          margin: 0 auto; } }
      @media screen and (max-width: 1023px) {
        .hero .container p {
          font-size: 1.6rem;
          width: 75%; } }
      @media screen and (max-width: 767px) {
        .hero .container p {
          width: 100%; } }
      @media screen and (max-width: 639px) {
        .hero .container p {
          font-size: 1.4rem; } }
      @media screen and (max-width: 500px) {
        .hero .container p {
          font-size: 1.3rem; } }

.building-page .building-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (max-width: 1023px) {
    .building-page .building-intro {
      display: block; } }
  .building-page .building-intro > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    position: relative; }
    @media screen and (max-width: 500px) {
      .building-page .building-intro > div {
        aspect-ratio: 1/1.65; } }
    @media screen and (max-width: 767px) {
      .building-page .building-intro > div:last-child .text {
        top: 5rem; } }
    @media screen and (max-width: 500px) {
      .building-page .building-intro > div:last-child .text {
        top: 4rem; } }
    .building-page .building-intro > div > img {
      width: 100%;
      display: block; }
      @media screen and (max-width: 500px) {
        .building-page .building-intro > div > img {
          -o-object-fit: cover;
             object-fit: cover;
          -o-object-position: center;
             object-position: center;
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          width: 100%;
          z-index: 1; } }
    .building-page .building-intro > div::before {
      position: absolute;
      top: 0;
      left: 0;
      height: 75%;
      width: 100%;
      content: "";
      background: -webkit-gradient(linear, left top, left bottom, from(#3ba0da), to(rgba(59, 160, 218, 0)));
      background: linear-gradient(to bottom, #3ba0da, rgba(59, 160, 218, 0)); }
      @media screen and (max-width: 1023px) {
        .building-page .building-intro > div::before {
          content: none; } }
      @media screen and (max-width: 500px) {
        .building-page .building-intro > div::before {
          content: "";
          z-index: 2; } }
    .building-page .building-intro > div .text {
      width: 60%;
      left: 0;
      right: 0;
      margin: 0 auto;
      position: absolute;
      z-index: 2;
      top: 10rem; }
      @media screen and (max-width: 1919px) {
        .building-page .building-intro > div .text {
          top: 7.5rem; } }
      @media screen and (max-width: 1599px) {
        .building-page .building-intro > div .text {
          top: 6.5rem;
          width: 75%; } }
      @media screen and (max-width: 1439px) {
        .building-page .building-intro > div .text {
          width: 100%;
          padding: 0 5rem; } }
      @media screen and (max-width: 1279px) {
        .building-page .building-intro > div .text {
          top: 8rem; } }
      @media screen and (max-width: 639px) {
        .building-page .building-intro > div .text {
          padding: 0 4rem; } }
      .building-page .building-intro > div .text h2 {
        font-weight: 700;
        font-size: 6rem;
        margin-bottom: 0.5em;
        color: white; }
        @media screen and (max-width: 1919px) {
          .building-page .building-intro > div .text h2 {
            font-size: 5rem; } }
        @media screen and (max-width: 1599px) {
          .building-page .building-intro > div .text h2 {
            font-size: 4.4rem;
            width: 75%;
            margin: 0 auto 0.4em; } }
        @media screen and (max-width: 1439px) {
          .building-page .building-intro > div .text h2 {
            font-size: 4rem; } }
        @media screen and (max-width: 1279px) {
          .building-page .building-intro > div .text h2 {
            width: 100%; } }
        @media screen and (max-width: 1023px) {
          .building-page .building-intro > div .text h2 {
            font-size: 3.6rem; } }
        @media screen and (max-width: 767px) {
          .building-page .building-intro > div .text h2 {
            font-size: 3.2rem; } }
        @media screen and (max-width: 639px) {
          .building-page .building-intro > div .text h2 {
            font-size: 2.9rem; } }
        @media screen and (max-width: 500px) {
          .building-page .building-intro > div .text h2 {
            font-size: 2.5rem; } }
    .building-page .building-intro > div p {
      font-size: 1.8rem;
      line-height: 1.5;
      font-weight: 500; }
      @media screen and (max-width: 1439px) {
        .building-page .building-intro > div p {
          font-size: 1.7rem; } }
      @media screen and (max-width: 1279px) {
        .building-page .building-intro > div p {
          margin: 0 auto; } }
      @media screen and (max-width: 1023px) {
        .building-page .building-intro > div p {
          font-size: 1.6rem;
          width: 75%; } }
      @media screen and (max-width: 639px) {
        .building-page .building-intro > div p {
          font-size: 1.4rem;
          width: 100%; } }
      @media screen and (max-width: 500px) {
        .building-page .building-intro > div p {
          font-size: 1.3rem; } }
      .building-page .building-intro > div p span {
        color: white; }

.building-page .sustainability {
  position: relative; }
  @media screen and (max-width: 1023px) {
    .building-page .sustainability {
      aspect-ratio: 1/1; } }
  @media screen and (max-width: 639px) {
    .building-page .sustainability {
      aspect-ratio: 1/2.2; } }
  @media screen and (max-width: 500px) {
    .building-page .sustainability {
      aspect-ratio: 1/2.6; } }
  .building-page .sustainability > img {
    width: 100%;
    display: block; }
    @media screen and (max-width: 1023px) {
      .building-page .sustainability > img {
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        z-index: 1; } }
  .building-page .sustainability .container {
    position: absolute;
    top: 7rem; }
    @media screen and (max-width: 1919px) {
      .building-page .sustainability .container {
        top: 6rem; } }
    @media screen and (max-width: 1279px) {
      .building-page .sustainability .container {
        top: 5rem; } }
    @media screen and (max-width: 1023px) {
      .building-page .sustainability .container {
        position: relative;
        z-index: 2;
        top: 0;
        padding-top: 5rem; } }
    @media screen and (max-width: 767px) {
      .building-page .sustainability .container {
        padding-top: 4rem; } }
    @media screen and (max-width: 500px) {
      .building-page .sustainability .container {
        padding-top: 3.5rem; } }
    .building-page .sustainability .container h2 {
      color: white;
      font-weight: 700;
      margin-bottom: 1em;
      text-align: center;
      font-size: 6rem; }
      @media screen and (max-width: 1919px) {
        .building-page .sustainability .container h2 {
          font-size: 5rem; } }
      @media screen and (max-width: 1599px) {
        .building-page .sustainability .container h2 {
          font-size: 4.4rem;
          margin-bottom: 1.25em; } }
      @media screen and (max-width: 1439px) {
        .building-page .sustainability .container h2 {
          font-size: 4rem; } }
      @media screen and (max-width: 1279px) {
        .building-page .sustainability .container h2 {
          margin-bottom: 1em; } }
      @media screen and (max-width: 1023px) {
        .building-page .sustainability .container h2 {
          font-size: 3.6rem;
          margin-bottom: 1.25em; } }
      @media screen and (max-width: 767px) {
        .building-page .sustainability .container h2 {
          font-size: 3.2rem; } }
      @media screen and (max-width: 639px) {
        .building-page .sustainability .container h2 {
          font-size: 2.9rem; } }
      @media screen and (max-width: 500px) {
        .building-page .sustainability .container h2 {
          font-size: 2.4rem;
          margin-bottom: 1em; } }
    .building-page .sustainability .container ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      width: 90%;
      margin: 0 auto; }
      @media screen and (max-width: 1919px) {
        .building-page .sustainability .container ul {
          width: 95%; } }
      @media screen and (max-width: 1599px) {
        .building-page .sustainability .container ul {
          width: 100%; } }
      @media screen and (max-width: 1439px) {
        .building-page .sustainability .container ul {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          row-gap: 5rem; } }
      @media screen and (max-width: 767px) {
        .building-page .sustainability .container ul {
          row-gap: 4rem; } }
      @media screen and (max-width: 639px) {
        .building-page .sustainability .container ul {
          grid-template-columns: repeat(2, 1fr); } }
      .building-page .sustainability .container ul li img {
        max-width: 12rem;
        max-height: 11rem;
        display: block;
        margin: 0 auto;
        width: 100%; }
        @media screen and (max-width: 1919px) {
          .building-page .sustainability .container ul li img {
            max-width: 11rem;
            max-height: 10rem; } }
        @media screen and (max-width: 1279px) {
          .building-page .sustainability .container ul li img {
            max-width: 10rem;
            max-height: 9rem; } }
        @media screen and (max-width: 639px) {
          .building-page .sustainability .container ul li img {
            max-width: 11rem;
            max-height: 10rem; } }
        @media screen and (max-width: 500px) {
          .building-page .sustainability .container ul li img {
            max-width: 10rem;
            max-height: 9rem; } }

.building-page .accommodation {
  background: black;
  padding: 5rem 0; }
  @media screen and (max-width: 1439px) {
    .building-page .accommodation {
      padding: 4rem 0 3rem; } }
  @media screen and (max-width: 1279px) {
    .building-page .accommodation {
      padding: 3rem 0 2rem; } }
  @media screen and (max-width: 1023px) {
    .building-page .accommodation {
      padding-bottom: 1rem; } }
  @media screen and (max-width: 639px) {
    .building-page .accommodation {
      padding-bottom: 0; } }
  @media screen and (max-width: 500px) {
    .building-page .accommodation {
      padding-top: 2.5rem; } }
  .building-page .accommodation video {
    width: 100%; }

.location-page .intro,
.demographics-page .intro {
  position: relative; }
  @media screen and (max-width: 1279px) {
    .location-page .intro,
    .demographics-page .intro {
      aspect-ratio: 2/1.75; } }
  @media screen and (max-width: 1023px) {
    .location-page .intro,
    .demographics-page .intro {
      aspect-ratio: 2/1.85; } }
  @media screen and (max-width: 639px) {
    .location-page .intro,
    .demographics-page .intro {
      aspect-ratio: 2/1.6; } }
  @media screen and (max-width: 500px) {
    .location-page .intro,
    .demographics-page .intro {
      aspect-ratio: 2/2.2;
      overflow: hidden; } }
  .location-page .intro > img,
  .demographics-page .intro > img {
    display: block;
    width: 100%; }
    @media screen and (max-width: 1279px) {
      .location-page .intro > img,
      .demographics-page .intro > img {
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%; } }
    @media screen and (max-width: 639px) {
      .location-page .intro > img,
      .demographics-page .intro > img {
        -o-object-position: center bottom;
           object-position: center bottom; } }
    @media screen and (max-width: 500px) {
      .location-page .intro > img,
      .demographics-page .intro > img {
        -webkit-transform: scale(1.35);
                transform: scale(1.35);
        -webkit-transform-origin: center bottom;
                transform-origin: center bottom; } }
    @media screen and (max-width: 639px) {
      .location-page .intro > img.desktop,
      .demographics-page .intro > img.desktop {
        display: none; } }
    .location-page .intro > img.mobile,
    .demographics-page .intro > img.mobile {
      display: none; }
      @media screen and (max-width: 639px) {
        .location-page .intro > img.mobile,
        .demographics-page .intro > img.mobile {
          display: block; } }
  .location-page .intro .container,
  .demographics-page .intro .container {
    position: absolute;
    z-index: 2;
    text-align: center;
    left: 0;
    right: 0;
    top: 7.5rem; }
    @media screen and (max-width: 1919px) {
      .location-page .intro .container,
      .demographics-page .intro .container {
        top: 6.5rem; } }
    @media screen and (max-width: 1439px) {
      .location-page .intro .container,
      .demographics-page .intro .container {
        top: 6rem; } }
    @media screen and (max-width: 1279px) {
      .location-page .intro .container,
      .demographics-page .intro .container {
        top: 5rem; } }
    @media screen and (max-width: 767px) {
      .location-page .intro .container,
      .demographics-page .intro .container {
        top: 4rem; } }
    @media screen and (max-width: 500px) {
      .location-page .intro .container,
      .demographics-page .intro .container {
        top: 3rem; } }
    .location-page .intro .container h1,
    .demographics-page .intro .container h1 {
      color: white;
      font-weight: 700;
      font-size: 6rem; }
      @media screen and (max-width: 1919px) {
        .location-page .intro .container h1,
        .demographics-page .intro .container h1 {
          font-size: 5rem; } }
      @media screen and (max-width: 1599px) {
        .location-page .intro .container h1,
        .demographics-page .intro .container h1 {
          font-size: 4.4rem; } }
      @media screen and (max-width: 1439px) {
        .location-page .intro .container h1,
        .demographics-page .intro .container h1 {
          font-size: 4rem; } }
      @media screen and (max-width: 1023px) {
        .location-page .intro .container h1,
        .demographics-page .intro .container h1 {
          font-size: 3.6rem; } }
      @media screen and (max-width: 767px) {
        .location-page .intro .container h1,
        .demographics-page .intro .container h1 {
          font-size: 3rem; } }
      @media screen and (max-width: 639px) {
        .location-page .intro .container h1,
        .demographics-page .intro .container h1 {
          font-size: 2.4rem;
          width: 81%;
          margin: 0 auto; } }
      @media screen and (max-width: 500px) {
        .location-page .intro .container h1,
        .demographics-page .intro .container h1 {
          font-size: 2.1rem;
          width: 70%; } }
      @media screen and (max-width: 639px) {
        .location-page .intro .container h1 br,
        .demographics-page .intro .container h1 br {
          display: none; } }

.location-page > .text,
.demographics-page > .text {
  padding: 4rem 0; }
  @media screen and (max-width: 1279px) {
    .location-page > .text,
    .demographics-page > .text {
      padding: 3.5rem 0; } }
  @media screen and (max-width: 767px) {
    .location-page > .text,
    .demographics-page > .text {
      padding: 3rem 0; } }
  @media screen and (max-width: 500px) {
    .location-page > .text,
    .demographics-page > .text {
      padding: 3rem 0 3.5rem; } }
  .location-page > .text .row,
  .demographics-page > .text .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media screen and (max-width: 1023px) {
      .location-page > .text .row,
      .demographics-page > .text .row {
        display: block;
        text-align: center; } }
    .location-page > .text .row > *,
    .demographics-page > .text .row > * {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
    .location-page > .text .row h2,
    .demographics-page > .text .row h2 {
      color: #00ff00;
      font-size: 6rem;
      font-weight: 500; }
      @media screen and (max-width: 1919px) {
        .location-page > .text .row h2,
        .demographics-page > .text .row h2 {
          font-size: 5rem; } }
      @media screen and (max-width: 1599px) {
        .location-page > .text .row h2,
        .demographics-page > .text .row h2 {
          font-size: 4.4rem; } }
      @media screen and (max-width: 1439px) {
        .location-page > .text .row h2,
        .demographics-page > .text .row h2 {
          font-size: 4rem; } }
      @media screen and (max-width: 1023px) {
        .location-page > .text .row h2,
        .demographics-page > .text .row h2 {
          font-size: 3.6rem;
          margin-bottom: 0.75em; } }
      @media screen and (max-width: 767px) {
        .location-page > .text .row h2,
        .demographics-page > .text .row h2 {
          font-size: 3.2rem; } }
      @media screen and (max-width: 639px) {
        .location-page > .text .row h2,
        .demographics-page > .text .row h2 {
          font-size: 2.8rem; } }
    .location-page > .text .row .text p,
    .demographics-page > .text .row .text p {
      margin-bottom: 1.5em;
      font-size: 1.8rem;
      line-height: 1.5; }
      @media screen and (max-width: 1439px) {
        .location-page > .text .row .text p,
        .demographics-page > .text .row .text p {
          font-size: 1.7rem; } }
      @media screen and (max-width: 1023px) {
        .location-page > .text .row .text p,
        .demographics-page > .text .row .text p {
          font-size: 1.6rem; } }
      @media screen and (max-width: 639px) {
        .location-page > .text .row .text p,
        .demographics-page > .text .row .text p {
          font-size: 1.4rem; } }
      .location-page > .text .row .text p:last-child,
      .demographics-page > .text .row .text p:last-child {
        margin-bottom: 0; }

.location-page #map,
.demographics-page #map {
  background: grey;
  aspect-ratio: 3/1;
  position: relative;
  border-top: 3px solid black;
  border-bottom: 3px solid black; }
  @media screen and (max-width: 1279px) {
    .location-page #map,
    .demographics-page #map {
      aspect-ratio: 2/1; } }
  @media screen and (max-width: 1023px) {
    .location-page #map,
    .demographics-page #map {
      aspect-ratio: 2/1.5; } }
  @media screen and (max-width: 500px) {
    .location-page #map,
    .demographics-page #map {
      aspect-ratio: 1/1; } }
  .location-page #map iframe,
  .demographics-page #map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.location-page .icon-list,
.demographics-page .icon-list {
  padding: 7.5rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem; }
  @media screen and (max-width: 1919px) {
    .location-page .icon-list,
    .demographics-page .icon-list {
      -webkit-column-gap: 4rem;
         -moz-column-gap: 4rem;
              column-gap: 4rem;
      padding: 6.5rem 0; } }
  @media screen and (max-width: 1599px) {
    .location-page .icon-list,
    .demographics-page .icon-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 4rem;
      padding: 5.5rem 0 4rem; } }
  @media screen and (max-width: 1023px) {
    .location-page .icon-list,
    .demographics-page .icon-list {
      gap: 3rem;
      padding: 4rem 0 3rem; } }
  @media screen and (max-width: 767px) {
    .location-page .icon-list,
    .demographics-page .icon-list {
      grid-template-columns: repeat(1, 1fr); } }
  @media screen and (max-width: 639px) {
    .location-page .icon-list,
    .demographics-page .icon-list {
      padding-bottom: 4rem;
      gap: 3.5rem;
      padding-top: 3.5rem; } }
  .location-page .icon-list li,
  .demographics-page .icon-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2.5rem; }
    @media screen and (max-width: 1599px) {
      .location-page .icon-list li,
      .demographics-page .icon-list li {
        gap: 5rem; } }
    @media screen and (max-width: 1023px) {
      .location-page .icon-list li,
      .demographics-page .icon-list li {
        gap: 4rem; } }
    @media screen and (max-width: 767px) {
      .location-page .icon-list li,
      .demographics-page .icon-list li {
        gap: 5rem; } }
    @media screen and (max-width: 639px) {
      .location-page .icon-list li,
      .demographics-page .icon-list li {
        gap: 4rem; } }
    @media screen and (max-width: 500px) {
      .location-page .icon-list li,
      .demographics-page .icon-list li {
        gap: 3rem;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
    @media screen and (max-width: 1599px) {
      .location-page .icon-list li:first-child img, .location-page .icon-list li:last-child img,
      .demographics-page .icon-list li:first-child img,
      .demographics-page .icon-list li:last-child img {
        -webkit-transform: scale(0.8);
                transform: scale(0.8); } }
    .location-page .icon-list li img,
    .demographics-page .icon-list li img {
      height: 7.5rem; }
      @media screen and (max-width: 1919px) {
        .location-page .icon-list li img,
        .demographics-page .icon-list li img {
          height: 6.5rem; } }
      @media screen and (max-width: 1599px) {
        .location-page .icon-list li img,
        .demographics-page .icon-list li img {
          height: auto;
          width: 8rem; } }
      @media screen and (max-width: 1279px) {
        .location-page .icon-list li img,
        .demographics-page .icon-list li img {
          width: 7rem; } }
      @media screen and (max-width: 767px) {
        .location-page .icon-list li img,
        .demographics-page .icon-list li img {
          width: 8rem; } }
      @media screen and (max-width: 639px) {
        .location-page .icon-list li img,
        .demographics-page .icon-list li img {
          width: 7rem; } }
      @media screen and (max-width: 500px) {
        .location-page .icon-list li img,
        .demographics-page .icon-list li img {
          width: 6rem; } }
    .location-page .icon-list li .text,
    .demographics-page .icon-list li .text {
      font-weight: 500;
      font-size: 1.8rem;
      line-height: 1.4;
      margin-top: -1rem; }
      @media screen and (max-width: 1919px) {
        .location-page .icon-list li .text,
        .demographics-page .icon-list li .text {
          font-size: 1.6rem; } }
      @media screen and (max-width: 1599px) {
        .location-page .icon-list li .text,
        .demographics-page .icon-list li .text {
          -webkit-box-flex: 0;
              -ms-flex: 0 1 calc(100% - 15rem);
                  flex: 0 1 calc(100% - 15rem); } }
      @media screen and (max-width: 1279px) {
        .location-page .icon-list li .text,
        .demographics-page .icon-list li .text {
          -webkit-box-flex: 0;
              -ms-flex: 0 1 calc(100% - 12.5rem);
                  flex: 0 1 calc(100% - 12.5rem); } }
      @media screen and (max-width: 1023px) {
        .location-page .icon-list li .text,
        .demographics-page .icon-list li .text {
          -webkit-box-flex: 0;
              -ms-flex: 0 1 calc(100% - 5rem);
                  flex: 0 1 calc(100% - 5rem); } }
      @media screen and (max-width: 767px) {
        .location-page .icon-list li .text,
        .demographics-page .icon-list li .text {
          -webkit-box-flex: 0;
              -ms-flex: 0 1 calc(100% -15rem);
                  flex: 0 1 calc(100% -15rem);
          padding-right: 3rem;
          font-size: 1.8rem; } }
      @media screen and (max-width: 639px) {
        .location-page .icon-list li .text,
        .demographics-page .icon-list li .text {
          font-size: 1.6rem; } }
      @media screen and (max-width: 500px) {
        .location-page .icon-list li .text,
        .demographics-page .icon-list li .text {
          -webkit-box-flex: 0;
              -ms-flex: 0 1 calc(100% -10rem);
                  flex: 0 1 calc(100% -10rem);
          padding-right: 0; } }
      .location-page .icon-list li .text figure,
      .demographics-page .icon-list li .text figure {
        color: #00ff00;
        font-family: "Future Forces", sans-serif;
        font-size: 3em;
        line-height: 1; }
        @media screen and (max-width: 1023px) {
          .location-page .icon-list li .text figure,
          .demographics-page .icon-list li .text figure {
            font-size: 2.5em; } }
        @media screen and (max-width: 767px) {
          .location-page .icon-list li .text figure,
          .demographics-page .icon-list li .text figure {
            font-size: 2.75em; } }

.location-page .connectivity,
.demographics-page .connectivity {
  padding: 0 0 7.5rem;
  text-align: center; }
  @media screen and (max-width: 1599px) {
    .location-page .connectivity,
    .demographics-page .connectivity {
      padding-bottom: 5rem; } }
  @media screen and (max-width: 1439px) {
    .location-page .connectivity,
    .demographics-page .connectivity {
      padding-bottom: 4rem; } }
  @media screen and (max-width: 1279px) {
    .location-page .connectivity,
    .demographics-page .connectivity {
      padding-bottom: 3.5rem; } }
  @media screen and (max-width: 1023px) {
    .location-page .connectivity,
    .demographics-page .connectivity {
      padding-bottom: 5rem; } }
  @media screen and (max-width: 500px) {
    .location-page .connectivity,
    .demographics-page .connectivity {
      padding-bottom: 4rem; } }
  .location-page .connectivity h2,
  .demographics-page .connectivity h2 {
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 0.5em; }
    @media screen and (max-width: 1919px) {
      .location-page .connectivity h2,
      .demographics-page .connectivity h2 {
        font-size: 5rem; } }
    @media screen and (max-width: 1599px) {
      .location-page .connectivity h2,
      .demographics-page .connectivity h2 {
        font-size: 4.4rem; } }
    @media screen and (max-width: 1439px) {
      .location-page .connectivity h2,
      .demographics-page .connectivity h2 {
        font-size: 4rem; } }
    @media screen and (max-width: 1023px) {
      .location-page .connectivity h2,
      .demographics-page .connectivity h2 {
        font-size: 3.6rem; } }
    @media screen and (max-width: 767px) {
      .location-page .connectivity h2,
      .demographics-page .connectivity h2 {
        font-size: 3.2rem; } }
    @media screen and (max-width: 639px) {
      .location-page .connectivity h2,
      .demographics-page .connectivity h2 {
        font-size: 2.9rem; } }
    @media screen and (max-width: 500px) {
      .location-page .connectivity h2,
      .demographics-page .connectivity h2 {
        font-size: 2.5rem; } }
  .location-page .connectivity p,
  .demographics-page .connectivity p {
    font-size: 1.8rem;
    line-height: 1.5;
    width: 40%;
    margin: 0 auto 3.5em; }
    @media screen and (max-width: 1919px) {
      .location-page .connectivity p,
      .demographics-page .connectivity p {
        width: 50%; } }
    @media screen and (max-width: 1439px) {
      .location-page .connectivity p,
      .demographics-page .connectivity p {
        font-size: 1.7rem;
        width: 60%;
        margin-bottom: 3em; } }
    @media screen and (max-width: 1279px) {
      .location-page .connectivity p,
      .demographics-page .connectivity p {
        width: 70%;
        margin-bottom: 2.5em; } }
    @media screen and (max-width: 1023px) {
      .location-page .connectivity p,
      .demographics-page .connectivity p {
        font-size: 1.6rem; } }
    @media screen and (max-width: 767px) {
      .location-page .connectivity p,
      .demographics-page .connectivity p {
        width: 80%;
        margin-bottom: 2em; } }
    @media screen and (max-width: 639px) {
      .location-page .connectivity p,
      .demographics-page .connectivity p {
        font-size: 1.4rem;
        width: 100%; } }
    @media screen and (max-width: 500px) {
      .location-page .connectivity p,
      .demographics-page .connectivity p {
        margin-bottom: 1.5em; } }
  @media screen and (max-width: 1023px) {
    .location-page .connectivity img,
    .demographics-page .connectivity img {
      width: 40%;
      margin: 0 auto; } }
  @media screen and (max-width: 767px) {
    .location-page .connectivity img,
    .demographics-page .connectivity img {
      width: 50%; } }
  @media screen and (max-width: 639px) {
    .location-page .connectivity img,
    .demographics-page .connectivity img {
      width: 75%; } }
  @media screen and (max-width: 500px) {
    .location-page .connectivity img,
    .demographics-page .connectivity img {
      width: 85%; } }
  @media screen and (max-width: 1023px) {
    .location-page .connectivity img.desktop,
    .demographics-page .connectivity img.desktop {
      display: none; } }
  .location-page .connectivity img.mobile,
  .demographics-page .connectivity img.mobile {
    display: none; }
    @media screen and (max-width: 1023px) {
      .location-page .connectivity img.mobile,
      .demographics-page .connectivity img.mobile {
        display: block; } }

.demographics-page .intro {
  position: relative;
  aspect-ratio: 2/1.65; }
  @media screen and (max-width: 1279px) {
    .demographics-page .intro {
      aspect-ratio: 2/1.75; } }
  @media screen and (max-width: 1023px) {
    .demographics-page .intro {
      aspect-ratio: 2/1.85; } }
  @media screen and (max-width: 639px) {
    .demographics-page .intro {
      aspect-ratio: 2/1.95; } }
  @media screen and (max-width: 500px) {
    .demographics-page .intro {
      aspect-ratio: 2/2.1; } }
  .demographics-page .intro img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-position: center bottom;
       object-position: center bottom; }
    @media screen and (max-width: 500px) {
      .demographics-page .intro img {
        -webkit-transform: scale(1);
                transform: scale(1); } }
    .demographics-page .intro img.desktop {
      display: block; }
      @media screen and (max-width: 500px) {
        .demographics-page .intro img.desktop {
          display: none; } }
    .demographics-page .intro img.mobile {
      display: none; }
      @media screen and (max-width: 500px) {
        .demographics-page .intro img.mobile {
          display: block; } }
  .demographics-page .intro .container h1 {
    margin-bottom: 0.5em; }
  .demographics-page .intro .container p {
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 500;
    color: white;
    width: 30%;
    margin: 0 auto; }
    @media screen and (max-width: 1439px) {
      .demographics-page .intro .container p {
        font-size: 1.7rem; } }
    @media screen and (max-width: 1279px) {
      .demographics-page .intro .container p {
        width: 60%;
        margin: 0 auto; } }
    @media screen and (max-width: 1023px) {
      .demographics-page .intro .container p {
        font-size: 1.6rem;
        width: 75%; } }
    @media screen and (max-width: 767px) {
      .demographics-page .intro .container p {
        width: 100%; } }
    @media screen and (max-width: 639px) {
      .demographics-page .intro .container p {
        font-size: 1.4rem; } }
    @media screen and (max-width: 500px) {
      .demographics-page .intro .container p {
        font-size: 1.3rem;
        line-height: 1.4; } }

.demographics-page #map {
  aspect-ratio: 2.5/1; }
  @media screen and (max-width: 1279px) {
    .demographics-page #map {
      aspect-ratio: 2.5/1.5; } }
  @media screen and (max-width: 767px) {
    .demographics-page #map {
      aspect-ratio: 2.5/2; } }

@media screen and (max-width: 1599px) {
  .demographics-page .icon-list {
    padding-bottom: 6rem; } }

.demographics-page .icon-list li {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }
  @media screen and (max-width: 1599px) {
    .demographics-page .icon-list li:first-child .icon-wrapper {
      width: 8rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  @media screen and (max-width: 1279px) {
    .demographics-page .icon-list li:first-child .icon-wrapper {
      width: 7rem; } }
  @media screen and (max-width: 767px) {
    .demographics-page .icon-list li:first-child .icon-wrapper {
      width: 8rem; } }
  @media screen and (max-width: 639px) {
    .demographics-page .icon-list li:first-child .icon-wrapper {
      width: 7rem; } }
  @media screen and (max-width: 500px) {
    .demographics-page .icon-list li:first-child .icon-wrapper {
      width: 6rem; } }
  @media screen and (max-width: 1279px) {
    .demographics-page .icon-list li:first-child .text {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 calc(100% - 11rem);
              flex: 0 1 calc(100% - 11rem); } }
  @media screen and (max-width: 767px) {
    .demographics-page .icon-list li:first-child .text {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 calc(100% - 15rem);
              flex: 0 1 calc(100% - 15rem); } }
  @media screen and (max-width: 1599px) {
    .demographics-page .icon-list li:first-child img {
      width: 2.5rem;
      -webkit-transform: translateY(1rem);
              transform: translateY(1rem); } }
  @media screen and (max-width: 767px) {
    .demographics-page .icon-list li:first-child img {
      -webkit-transform: none;
              transform: none; } }
  @media screen and (max-width: 639px) {
    .demographics-page .icon-list li:first-child img {
      width: 2rem; } }

 

.timelapse {
  padding: 0 0 5rem; }
  @media screen and (max-width: 1439px) {
    .timelapse {
      padding-bottom: 4rem; } }
  @media screen and (max-width: 1279px) {
    .timelapse {
      padding-bottom: 5rem; } }
  @media screen and (max-width: 1023px) {
    .timelapse {
      padding-bottom: 2rem; } }
  @media screen and (max-width: 767px) {
    .timelapse {
      padding-bottom: 3.5rem; } }
  @media screen and (max-width: 500px) {
    .timelapse {
      padding-bottom: 2rem; } }



  .timelapse .timelapse-container {
    position: relative;
    padding-bottom: 877px; }
    @media only screen and (min-width: 1518px) and (max-width: 1580px) {
      .timelapse .timelapse-container {
        padding-bottom: 55.6%; } }
    @media only screen and (min-width: 1205px) and (max-width: 1517px) {
      .timelapse .timelapse-container {
        padding-bottom: calc(49.3% + 94px); } }
    @media only screen and (min-width: 1025px) and (max-width: 1204px) {
      .timelapse .timelapse-container {
        padding-bottom: calc(49.2% + 96px); } }
    @media only screen and (min-width: 1025px) and (max-width: 1135px) {
      .timelapse .timelapse-container {
        padding-bottom: calc(49.2% + 92px); } }
    @media only screen and (min-width: 768px) and (max-width: 1024px) {
      .timelapse .timelapse-container {
        padding-bottom: calc(71.6% + 465px); } }
    @media only screen and (min-width: 565px) and (max-width: 767px) {
      .timelapse .timelapse-container {
        padding-bottom: calc(65.3% + 465px); } }
    @media only screen and (min-width: 481px) and (max-width: 564px) {
      .timelapse .timelapse-container {
        padding-bottom: calc(66.66% + 824px); } }
    @media only screen and (max-width: 480px), screen and (max-device-width: 480px) {
      .timelapse .timelapse-container {
        padding-bottom: calc(80.3% + 800px); } }
    .timelapse .timelapse-container iframe {
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: center;
         object-position: center;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%; }


 

 
.contact-page {
  background: black;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media screen and (max-width: 1919px) {
    .contact-page {
      padding: 10rem 0 5rem;
      display: block; } }
  @media screen and (max-width: 1599px) {
    .contact-page {
      padding: 7.5rem 0 4rem; } }
  @media screen and (max-width: 1279px) {
    .contact-page {
      padding: 6.5rem 0 3rem; } }
  @media screen and (max-width: 767px) {
    .contact-page {
      padding: 7.5rem 0 3rem;
      min-height: 0 !important; } }
  @media screen and (max-width: 639px) {
    .contact-page {
      padding-bottom: 2rem; } }
  @media screen and (max-width: 500px) {
    .contact-page {
      padding: 8rem 0 1rem; } }
  .contact-page .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .contact-page .row .form-wrapper {
      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-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 55rem; }
      @media screen and (max-width: 1023px) {
        .contact-page .row .form-wrapper {
          width: 45rem; } }
      @media screen and (max-width: 767px) {
        .contact-page .row .form-wrapper {
          width: 40rem; } }
      @media screen and (max-width: 639px) {
        .contact-page .row .form-wrapper {
          width: 90%; } }
      .contact-page .row .form-wrapper h2,
      .contact-page .row .form-wrapper h3 {
        font-weight: 700;
        color: white;
        text-align: center;
        font-size: 6rem; }
        @media screen and (max-width: 1919px) {
          .contact-page .row .form-wrapper h2,
          .contact-page .row .form-wrapper h3 {
            font-size: 5rem; } }
        @media screen and (max-width: 1599px) {
          .contact-page .row .form-wrapper h2,
          .contact-page .row .form-wrapper h3 {
            font-size: 4.4rem; } }
        @media screen and (max-width: 1439px) {
          .contact-page .row .form-wrapper h2,
          .contact-page .row .form-wrapper h3 {
            font-size: 4rem; } }
        @media screen and (max-width: 1023px) {
          .contact-page .row .form-wrapper h2,
          .contact-page .row .form-wrapper h3 {
            font-size: 3.6rem; } }
        @media screen and (max-width: 767px) {
          .contact-page .row .form-wrapper h2,
          .contact-page .row .form-wrapper h3 {
            font-size: 3.2rem; } }
        @media screen and (max-width: 639px) {
          .contact-page .row .form-wrapper h2,
          .contact-page .row .form-wrapper h3 {
            font-size: 2.9rem; } }
        @media screen and (max-width: 500px) {
          .contact-page .row .form-wrapper h2,
          .contact-page .row .form-wrapper h3 {
            font-size: 2.5rem; } }
      .contact-page .row .form-wrapper h2 {
        margin-bottom: 6rem; }
        @media screen and (max-width: 639px) {
          .contact-page .row .form-wrapper h2 {
            margin-bottom: 4rem; } }
      .contact-page .row .form-wrapper form {
        color: white;
        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-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 3rem;
        font-family: "Future Forces", sans-serif;
        font-size: 3.2rem;
        width: 100%;
        margin-bottom: 4rem; }
        @media screen and (max-width: 1439px) {
          .contact-page .row .form-wrapper form {
            font-size: 2.8rem; } }
        @media screen and (max-width: 1279px) {
          .contact-page .row .form-wrapper form {
            font-size: 2.4rem;
            margin-bottom: 3rem; } }
        @media screen and (max-width: 639px) {
          .contact-page .row .form-wrapper form {
            font-size: 2.2rem; } }
        .contact-page .row .form-wrapper form .field-wrap {
          width: 100%;
          position: relative;
          margin-bottom: 6rem; }
          @media screen and (max-width: 1279px) {
            .contact-page .row .form-wrapper form .field-wrap {
              margin-bottom: 5rem; } }
          @media screen and (max-width: 639px) {
            .contact-page .row .form-wrapper form .field-wrap {
              margin-bottom: 4rem; } }
          @media screen and (max-width: 500px) {
            .contact-page .row .form-wrapper form .field-wrap {
              margin-bottom: 2rem; } }
          .contact-page .row .form-wrapper form .field-wrap:last-of-type {
            margin-bottom: 4rem; }
            @media screen and (max-width: 639px) {
              .contact-page .row .form-wrapper form .field-wrap:last-of-type {
                margin-bottom: 2.5rem; } }
            @media screen and (max-width: 500px) {
              .contact-page .row .form-wrapper form .field-wrap:last-of-type {
                margin-bottom: 1rem; } }
          .contact-page .row .form-wrapper form .field-wrap input {
            width: 100%; }
          .contact-page .row .form-wrapper form .field-wrap img {
            position: absolute;
            width: 100%;
            left: 0;
            max-block-size: none;
            max-inline-size: none;
            -webkit-transform: scale(1.08);
                    transform: scale(1.08);
            -webkit-transform-origin: right top;
                    transform-origin: right top; }
        .contact-page .row .form-wrapper form [type="submit"] {
          background: #00ff00;
          border-radius: 0.5rem;
          line-height: 1;
          color: black;
          padding: 0.5em 1em;
          cursor: pointer;
          border: 1px solid #00ff00;
          -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease; }
          .contact-page .row .form-wrapper form [type="submit"]:hover {
            background: black;
            color: #00ff00; }
      .contact-page .row .form-wrapper > a {
        color: white;
        font-size: 2.8rem;
        border-radius: 0.5rem;
        line-height: 1;
        font-family: "Future Forces", sans-serif;
        text-decoration: underline;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease; }
        @media screen and (max-width: 1279px) {
          .contact-page .row .form-wrapper > a {
            font-size: 2.4rem; } }
        @media screen and (max-width: 767px) {
          .contact-page .row .form-wrapper > a {
            font-size: 2.1rem; } }
        .contact-page .row .form-wrapper > a:hover {
          color: #00ff00; }

.news-page {
  background: black;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white; }
  @media screen and (max-width: 1919px) {
    .news-page {
      padding: 10rem 0 5rem;
      display: block; } }
  @media screen and (max-width: 1599px) {
    .news-page {
      padding: 7.5rem 0 4rem; } }
  @media screen and (max-width: 1279px) {
    .news-page {
      padding: 6.5rem 0 3rem; } }
  @media screen and (max-width: 767px) {
    .news-page {
      padding: 7.5rem 0 3rem;
      min-height: 0 !important; } }
  @media screen and (max-width: 639px) {
    .news-page {
      padding-bottom: 2rem; } }
  @media screen and (max-width: 500px) {
    .news-page {
      padding: 8rem 0 1rem; } }
  .news-page .container {
    max-width: 1440px; }
  .news-page h1 {
    font-weight: 700;
    text-align: center;
    font-size: 6rem;
    margin-bottom: 1.5em; }
    @media screen and (max-width: 1919px) {
      .news-page h1 {
        font-size: 5rem; } }
    @media screen and (max-width: 1599px) {
      .news-page h1 {
        font-size: 4.4rem; } }
    @media screen and (max-width: 1439px) {
      .news-page h1 {
        font-size: 4rem; } }
    @media screen and (max-width: 1023px) {
      .news-page h1 {
        font-size: 3.6rem; } }
    @media screen and (max-width: 767px) {
      .news-page h1 {
        font-size: 3.2rem; } }
    @media screen and (max-width: 639px) {
      .news-page h1 {
        font-size: 3rem; } }
  .news-page article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #00ff00;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    @media screen and (max-width: 1439px) {
      .news-page article {
        gap: 5rem; } }
    @media screen and (max-width: 1023px) {
      .news-page article {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 3.5rem; } }
    @media screen and (max-width: 639px) {
      .news-page article {
        margin-bottom: 3rem;
        padding-bottom: 3rem; } }
    .news-page article:last-child {
      padding-bottom: 0;
      border-bottom: none;
      margin-bottom: 0; }
    .news-page article .image-wrapper {
      position: relative;
      aspect-ratio: 4/3;
      background: white;
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
      @media screen and (max-width: 1279px) {
        .news-page article .image-wrapper {
          -webkit-box-flex: 2.5;
              -ms-flex: 2.5;
                  flex: 2.5; } }
      @media screen and (max-width: 1023px) {
        .news-page article .image-wrapper {
          -webkit-box-flex: unset;
              -ms-flex: unset;
                  flex: unset;
          width: 100%;
          -webkit-box-ordinal-group: 3;
              -ms-flex-order: 2;
                  order: 2; } }
      .news-page article .image-wrapper video,
      .news-page article .image-wrapper img {
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%; }
    .news-page article .text {
      -webkit-box-flex: 2;
          -ms-flex: 2;
              flex: 2;
      font-size: 1.6rem; }
      @media screen and (max-width: 1279px) {
        .news-page article .text {
          -webkit-box-flex: 3;
              -ms-flex: 3;
                  flex: 3;
          font-size: 1.5rem; } }
      @media screen and (max-width: 1023px) {
        .news-page article .text {
          -webkit-box-flex: unset;
              -ms-flex: unset;
                  flex: unset;
          width: 100%;
          -webkit-box-ordinal-group: 2;
              -ms-flex-order: 1;
                  order: 1; } }
      @media screen and (max-width: 500px) {
        .news-page article .text {
          font-size: 1.4rem; } }
      .news-page article .text time {
        color: #00ff00;
        font-weight: 300;
        margin-bottom: 1em;
        display: block; }
      .news-page article .text h2 {
        font-size: 2em;
        font-weight: 500;
        margin-bottom: 0.5em; }
      .news-page article .text p {
        margin-bottom: 1.5em;
        line-height: 1.3; }
        .news-page article .text p:last-child {
          margin-bottom: 0; }
        @media screen and (max-width: 1279px) {
          .news-page article .text p {
            line-height: 1.4; } }
      .news-page article .text .more {
        display: none; }
        .news-page article .text .more p:last-child {
          margin-bottom: 1.5em; }
      .news-page article .text button {
        color: #00ff00;
        font-weight: 500;
        cursor: pointer;
        -webkit-transition: color 0.3s ease;
        transition: color 0.3s ease; }
        .news-page article .text button:hover {
          color: white; }