/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:400,500,700&display=swap");
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -o-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: 30px;
  height: 18px;
  display: inline-block;
  position: relative; }

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

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

.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);
  -o-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);
  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);
    -o-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);
    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, 8px, 0) rotate(45deg);
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

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

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

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

.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);
  -o-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);
  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);
    -o-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);
    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, 8px, 0) rotate(45deg);
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

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

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

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

.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);
  -o-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);
  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);
    -o-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);
    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, 8px, 0) rotate(45deg);
    transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--3dxy.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

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

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

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

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

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

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

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  -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);
  -o-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);
  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);
  -o-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);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

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

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

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

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(6px, 7.5px, 0) rotate(-45deg) scale(0.7, 1);
  transform: translate3d(6px, 7.5px, 0) rotate(-45deg) scale(0.7, 1);
  -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);
  -o-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);
  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);
  -ms-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);
  -ms-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;
  -o-transition-property: none;
  transition-property: none; }

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

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
  -o-transition-duration: 0.13s;
  transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
  -o-transition-delay: 0.13s;
  transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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: -16px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
    -o-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);
    -o-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);
    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, -8px, 0) rotate(-45deg);
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
  -o-transition-delay: 0.22s;
  transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-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;
    -o-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);
    -ms-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);
    -o-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);
    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;
  -o-transition-duration: 0.13s;
  transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
  -o-transition-delay: 0.13s;
  transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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: -16px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
    -o-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);
    -o-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);
    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, -8px, 0) rotate(45deg);
  transform: translate3d(0, -8px, 0) rotate(45deg);
  -webkit-transition-delay: 0.22s;
  -o-transition-delay: 0.22s;
  transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-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;
    -o-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);
    -ms-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);
    -o-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);
    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: 1px;
  -webkit-transition-duration: 0.275s;
  -o-transition-duration: 0.275s;
  transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-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: 8px;
    -webkit-transition: opacity 0.125s 0.275s ease;
    -o-transition: opacity 0.125s 0.275s ease;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 16px;
    -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);
    -o-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);
    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, 8px, 0) rotate(135deg);
  transform: translate3d(0, 8px, 0) rotate(135deg);
  -webkit-transition-delay: 0.075s;
  -o-transition-delay: 0.075s;
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -16px, 0) rotate(-270deg);
    transform: translate3d(0, -16px, 0) rotate(-270deg);
    -webkit-transition-delay: 0.075s;
    -o-transition-delay: 0.075s;
    transition-delay: 0.075s; }

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  -webkit-transition-duration: 0.275s;
  -o-transition-duration: 0.275s;
  transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-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: 8px;
    -webkit-transition: opacity 0.125s 0.275s ease;
    -o-transition: opacity 0.125s 0.275s ease;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 16px;
    -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);
    -o-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);
    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, 8px, 0) rotate(-135deg);
  transform: translate3d(0, 8px, 0) rotate(-135deg);
  -webkit-transition-delay: 0.075s;
  -o-transition-delay: 0.075s;
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -16px, 0) rotate(270deg);
    transform: translate3d(0, -16px, 0) rotate(270deg);
    -webkit-transition-delay: 0.075s;
    -o-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;
    -o-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);
      -o-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;
      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: 8px;
      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);
      -o-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;
      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;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -60px;
      top: -60px;
      -webkit-transform: translate3d(60px, 60px, 0) rotate(45deg);
      transform: translate3d(60px, 60px, 0) rotate(45deg);
      -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);
      -o-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);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -60px;
      top: -60px;
      -webkit-transform: translate3d(-60px, 60px, 0) rotate(-45deg);
      transform: translate3d(-60px, 60px, 0) rotate(-45deg);
      -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);
      -o-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);
      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;
    -o-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);
      -o-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;
      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: 8px;
      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);
      -o-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;
      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;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -60px;
      top: 60px;
      -webkit-transform: translate3d(60px, -60px, 0) rotate(-45deg);
      transform: translate3d(60px, -60px, 0) rotate(-45deg);
      -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);
      -o-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);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -60px;
      top: 60px;
      -webkit-transform: translate3d(-60px, -60px, 0) rotate(45deg);
      transform: translate3d(-60px, -60px, 0) rotate(45deg);
      -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);
      -o-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);
      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;
  -o-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;
  -o-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: 1px; }
  .hamburger--slider .hamburger-inner::before {
    top: 8px;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 16px; }

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

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 1px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 8px;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 16px; }

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

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
  -o-transition-duration: 0.22s;
  transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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;
    -o-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);
    -o-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);
    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);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-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;
    -o-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);
    -ms-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);
    -o-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);
    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;
  -o-transition-duration: 0.22s;
  transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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;
    -o-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);
    -o-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);
    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);
  -ms-transform: rotate(-225deg);
  transform: rotate(-225deg);
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-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;
    -o-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);
    -ms-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);
    -o-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);
    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: 1px;
  -webkit-transition: background-color 0s 0.13s linear;
  -o-transition: background-color 0s 0.13s linear;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 8px;
    -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);
    -o-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);
    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: 16px;
    -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);
    -o-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);
    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;
  -o-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);
    -o-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);
    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, 8px, 0) rotate(45deg);
    transform: translate3d(0, 8px, 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);
    -o-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);
    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, 8px, 0) rotate(-45deg);
    transform: translate3d(0, 8px, 0) rotate(-45deg); }

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
  -o-transition-duration: 0.13s;
  transition-duration: 0.13s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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: -16px;
    -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
    -o-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);
    -o-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);
    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, -8px, 0) rotate(-45deg);
  transform: translate3d(0, -8px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
  -o-transition-delay: 0.22s;
  transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-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;
    -o-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);
    -ms-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);
    -o-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);
    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);
  -o-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;
  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);
    -o-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);
    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);
    -o-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);
    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);
  -ms-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);
  -o-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;
  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);
    -ms-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);
    -o-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);
    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);
    -ms-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);
    -o-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);
    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);
  -o-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;
  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);
    -o-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);
    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);
    -o-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);
    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);
  -ms-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);
  -o-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;
  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);
    -ms-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);
    -o-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);
    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);
    -ms-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);
    -o-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);
    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;
  -o-transition-duration: 0.075s;
  transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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;
    -o-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);
    -o-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);
    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);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-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;
    -o-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);
    -ms-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);
    -o-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);
    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;
  -o-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-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;
    -o-transition-duration: 0s;
    transition-duration: 0s;
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    -webkit-transition-property: top, opacity;
    -o-transition-property: top, opacity;
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, -webkit-transform;
    -o-transition-property: bottom, transform;
    transition-property: bottom, transform;
    transition-property: bottom, transform, -webkit-transform; }

.hamburger--vortex.is-active .hamburger-inner {
  -webkit-transform: rotate(765deg);
  -ms-transform: rotate(765deg);
  transform: rotate(765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-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;
    -o-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);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }

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

.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-765deg);
  -ms-transform: rotate(-765deg);
  transform: rotate(-765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-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;
    -o-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);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg); }

::-moz-selection {
  background-color: #0091DC;
  color: #fff; }

::selection {
  background-color: #0091DC;
  color: #fff; }

html,
body {
  position: relative; }
  @media (max-width: 767.98px) {
    html,
    body {
      font-size: .95rem; } }

a {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease; }
  a:hover {
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease; }

.navbar-toggler {
  padding: 0; }

.navbar {
  padding-top: 0;
  padding-bottom: 0; }

.navbar-brand {
  padding-top: 0;
  padding-bottom: 0; }

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

.line-height-1 {
  line-height: 1; }

.line-height-1-8 {
  line-height: 1.8; }

.line-height-2 {
  line-height: 2; }

.overflow-x-h {
  overflow-x: hidden; }

.overflow-y-h {
  overflow-y: hidden; }

.overflow-h {
  overflow: hidden; }

section {
  padding: 50px 0; }
  @media (min-width: 992px) {
    section {
      padding: 60px 0; } }

.g-recaptcha {
  text-align: center;
  display: inline-block; }

.fs-12 {
  font-size: 0.75rem !important; }

.fs-14 {
  font-size: 0.875rem !important; }

.fs-15 {
  font-size: 0.9375rem !important; }

.fs-16 {
  font-size: 1rem !important; }

.fs-18 {
  font-size: 1.125rem !important; }

.fs-20 {
  font-size: 1.25rem !important; }

.fs-24 {
  font-size: 1.5rem !important; }

.fs-25 {
  font-size: 1.5625rem !important; }

.fs-30 {
  font-size: 1.875rem !important; }

.fs-35 {
  font-size: 2.1875rem !important; }

.fs-40 {
  font-size: 2.5rem !important; }

.fs-50 {
  font-size: 3.125rem !important; }

.fs-55 {
  font-size: 3.4375rem !important; }

.fs-60 {
  font-size: 3.75rem !important; }

.pic {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative; }
  .pic span {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .pic span img {
      max-width: 100%;
      max-height: 100%; }
  .pic.pic-4by3 {
    padding-bottom: 75%; }
  .pic.pic-16by9 {
    padding-bottom: 56.25%; }
  .pic.pic-8by11 {
    padding-bottom: 137.5%; }
  .pic.cover span img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover; }

.main-title {
  display: inline-block;
  position: relative;
  font-weight: bold;
  font-size: 1.5rem; }
  @media (max-width: 991.98px) {
    .main-title {
      font-size: 1.15rem; } }

.main-title-line {
  display: inline-block;
  position: relative;
  font-weight: bold;
  border-bottom: 4px solid #FECC15;
  padding: 0 5px 3px;
  font-size: 1.15rem; }
  @media (max-width: 991.98px) {
    .main-title-line {
      font-size: 1.05rem; } }

.main-btn {
  color: #fff;
  background: #FC745E; }
  .main-btn:hover {
    background: #FECC15;
    color: #2B2533;
    border-color: #FECC15; }

.main-btn-outline {
  color: #FC745E;
  background: #fff; }
  .main-btn-outline:hover {
    color: #2B2533;
    border-color: #FECC15; }

.main-btn, .main-btn-outline {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: bold;
  position: relative;
  padding: 5px 30px;
  -webkit-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s;
  text-transform: capitalize;
  border: 2px #FC745E solid;
  border-radius: 30px;
  outline: none;
  text-align: center; }
  @media (max-width: 991.98px) {
    .main-btn, .main-btn-outline {
      min-width: 115px;
      padding: 4px 20px;
      font-size: 1.1rem; } }

.en .btn-min-width {
  min-width: 275px; }
  @media (max-width: 991.98px) {
    .en .btn-min-width {
      min-width: 240px; } }

.main-btn2 {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: bold;
  position: relative;
  padding: 6px 30px;
  color: #fff;
  background: #FC745E;
  -webkit-transition: ease 0.3s;
  -o-transition: ease 0.3s;
  transition: ease 0.3s;
  text-transform: capitalize;
  border-radius: 30px;
  outline: none;
  min-width: 120px;
  text-align: center; }
  .main-btn2.mc3 {
    background: #FECC15;
    color: #2B2533; }
  .main-btn2:hover {
    background: #0091DC !important;
    color: #fff !important; }
  @media (max-width: 991.98px) {
    .main-btn2 {
      min-width: 95px;
      padding: 5px 20px;
      font-size: 1.1rem; } }

.editor {
  word-break: break-word; }
  .editor ol {
    list-style: decimal;
    padding-left: 25px; }
  .editor ul {
    list-style: inherit;
    padding-left: 25px; }

.embed-responsive {
  display: inline-block; }

.light-box {
  position: relative;
  margin: auto auto 10px;
  padding: 35px 60px 30px;
  border-radius: 16px;
  border: 4px #0091DC solid;
  background: #fff;
  -webkit-box-shadow: 0px 6px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0px 6px 4px 0 rgba(0, 0, 0, 0.25); }
  .light-box.remind-small {
    max-width: 480px;
    margin: 10px auto; }
  .light-box.remind-big {
    max-width: 640px;
    margin: 10px auto; }
  @media (max-width: 991.98px) {
    .light-box {
      padding: 35px 20px;
      border: 2px #0091DC solid; } }

.fancybox-button, .fancybox-infobar {
  display: none !important; }

#job .fancybox-button.fancybox-button--arrow_left, #job .fancybox-button.fancybox-button--arrow_right, #job .fancybox-infobar.fancybox-button--arrow_left, #job .fancybox-infobar.fancybox-button--arrow_right {
  position: absolute;
  display: inline-block !important;
  background: #E8E4CB;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #0091DC;
  font-size: 1.5rem;
  border-radius: 100%;
  text-align: center;
  padding: 0;
  top: 50%; }
  #job .fancybox-button.fancybox-button--arrow_left div, #job .fancybox-button.fancybox-button--arrow_right div, #job .fancybox-infobar.fancybox-button--arrow_left div, #job .fancybox-infobar.fancybox-button--arrow_right div {
    display: none; }
  #job .fancybox-button.fancybox-button--arrow_left[disabled], #job .fancybox-button.fancybox-button--arrow_right[disabled], #job .fancybox-infobar.fancybox-button--arrow_left[disabled], #job .fancybox-infobar.fancybox-button--arrow_right[disabled] {
    display: none !important; }

#job .fancybox-button.fancybox-button--arrow_left, #job .fancybox-infobar.fancybox-button--arrow_left {
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%); }
  #job .fancybox-button.fancybox-button--arrow_left:before, #job .fancybox-infobar.fancybox-button--arrow_left:before {
    position: absolute;
    content: '\f053';
    font-family: "Font Awesome 5 Pro";
    font-size: 0.9rem;
    right: 10px;
    top: 0; }

#job .fancybox-button.fancybox-button--arrow_right, #job .fancybox-infobar.fancybox-button--arrow_right {
  -webkit-transform: translateY(-50%) translateX(50%);
  -ms-transform: translateY(-50%) translateX(50%);
  transform: translateY(-50%) translateX(50%); }
  #job .fancybox-button.fancybox-button--arrow_right:before, #job .fancybox-infobar.fancybox-button--arrow_right:before {
    position: absolute;
    content: '\f054';
    font-family: "Font Awesome 5 Pro";
    font-size: 0.9rem;
    left: 10px;
    top: 0; }

.fancybox-content {
  background: none;
  padding: 0;
  overflow: unset; }
  .fancybox-content .close-btn, .fancybox-content .zoom-btn {
    position: absolute;
    background: #E8E4CB;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #0091DC;
    font-size: 1.5rem;
    border-radius: 100%;
    text-align: center;
    -webkit-transform: translateY(-30%) translateX(30%);
    -ms-transform: translateY(-30%) translateX(30%);
    transform: translateY(-30%) translateX(30%);
    z-index: 99; }
    .fancybox-content .close-btn:focus, .fancybox-content .zoom-btn:focus {
      outline: none; }
  .fancybox-content .zoom-btn {
    -webkit-transform: translateY(-30%) translateX(-80%);
    -ms-transform: translateY(-30%) translateX(-80%);
    transform: translateY(-30%) translateX(-80%); }
  @media (max-width: 991.98px) {
    .fancybox-content {
      overflow: auto; }
      .fancybox-content .close-btn, .fancybox-content .zoom-btn {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 1.25rem; }
      .fancybox-content .zoom-btn {
        font-size: 1.05rem; } }

.fancybox-is-open .fancybox-bg {
  background: rgba(0, 0, 0, 0.25); }

.fancybox-top {
  -webkit-animation: ani-fancybox-top .8s;
  animation: ani-fancybox-top .8s; }

.fancybox-slide {
  padding: 20px 10px; }

@-webkit-keyframes ani-fancybox-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; } }

@keyframes ani-fancybox-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%); }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; } }

.ani {
  visibility: hidden; }
  .ani.animate__animated {
    visibility: visible; }

#top-lang {
  position: absolute;
  right: 10px;
  top: 5px;
  color: #0091DC;
  z-index: 99; }
  #top-lang a {
    display: inline-block; }
    #top-lang a:hover {
      color: #FC745E; }

#index #top-lang {
  z-index: 0; }

#index {
  overflow: hidden;
  background: url(../_img/page/bg-map.jpg) top center no-repeat;
  background-size: cover; }
  #index.fancybox-active {
    overflow: hidden !important; }
  @media screen and (max-width: 1440px) {
    #index {
      background-size: contain; } }
  @media (max-width: 767.98px) {
    #index {
      background: url(../_img/index/bg-map-mobile.svg) top center no-repeat;
      background-size: cover; } }

.intro-bg {
  background: rgba(255, 255, 255, 0);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  -webkit-animation: ani-intro-bg 4s;
  animation: ani-intro-bg 4s; }
  @media (max-width: 767.98px) {
    .intro-bg {
      -webkit-animation: ani-intro-bg 3.5s;
      animation: ani-intro-bg 3.5s; } }

.intro-box {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: ani-intro 4s;
  animation: ani-intro 4s;
  z-index: 9; }
  @media (max-width: 767.98px) {
    .intro-box {
      -webkit-animation: ani-intro 3.5s;
      animation: ani-intro 3.5s; } }
  .intro-box .logo {
    margin: auto; }
    .intro-box .logo img {
      display: none; }
    .intro-box .logo svg {
      width: 360.61px;
      height: 63.71px; }
      @media (max-width: 767.98px) {
        .intro-box .logo svg {
          width: 200px;
          height: auto; } }
      .intro-box .logo svg .left {
        -webkit-animation: ani-left 1.8s;
        animation: ani-left 1.8s; }
        @media (max-width: 767.98px) {
          .intro-box .logo svg .left {
            -webkit-animation: ani-left 1.5s;
            animation: ani-left 1.5s; } }
      .intro-box .logo svg .line {
        -webkit-animation: ani-line 1.8s;
        animation: ani-line 1.8s; }
        @media (max-width: 767.98px) {
          .intro-box .logo svg .line {
            -webkit-animation: ani-line 1.5s;
            animation: ani-line 1.5s; } }
      .intro-box .logo svg .right {
        -webkit-animation: ani-right 1.8s;
        animation: ani-right 1.8s; }
        @media (max-width: 767.98px) {
          .intro-box .logo svg .right {
            -webkit-animation: ani-right 1.5s;
            animation: ani-right 1.5s; } }

@-webkit-keyframes ani-intro-bg {
  0% {
    background: white;
    z-index: 2; }
  80% {
    background: white;
    z-index: 2; }
  100% {
    background: rgba(255, 255, 255, 0);
    z-index: -1; } }

@keyframes ani-intro-bg {
  0% {
    background: white;
    z-index: 2; }
  80% {
    background: white;
    z-index: 2; }
  100% {
    background: rgba(255, 255, 255, 0);
    z-index: -1; } }

@-webkit-keyframes ani-intro {
  0% {
    height: 100vh; }
  65% {
    height: 100vh; }
  100% {
    height: 15vh; } }

@keyframes ani-intro {
  0% {
    height: 100vh; }
  65% {
    height: 100vh; }
  100% {
    height: 15vh; } }

@-webkit-keyframes ani-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(15%);
    transform: translateX(15%); }
  40% {
    opacity: 1;
    -webkit-transform: translateX(15%);
    transform: translateX(15%); }
  60% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; } }

@keyframes ani-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(15%);
    transform: translateX(15%); }
  40% {
    opacity: 1;
    -webkit-transform: translateX(15%);
    transform: translateX(15%); }
  60% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%); }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1; } }

@-webkit-keyframes ani-line {
  0% {
    opacity: 0; }
  65% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes ani-line {
  0% {
    opacity: 0; }
  65% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes ani-right {
  0% {
    opacity: 0; }
  80% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes ani-right {
  0% {
    opacity: 0; }
  80% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.idx-box {
  position: relative; }
  .idx-box .main-text {
    -webkit-transition: ease 0.3s;
    -o-transition: ease 0.3s;
    transition: ease 0.3s; }
    @media (max-width: 767.98px) {
      .idx-box .main-text {
        width: 302px;
        margin-top: 10px;
        -webkit-transition: ease 0.3s;
        -o-transition: ease 0.3s;
        transition: ease 0.3s; } }
  .idx-box .bg-01 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1; }
    @media (max-width: 767.98px) {
      .idx-box .bg-01 {
        bottom: auto;
        top: 52%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%); } }
    .idx-box .bg-01 .bg {
      -webkit-animation-delay: 3.5s;
      animation-delay: 3.5s; }
      .idx-box .bg-01 .bg img {
        margin: auto; }
    .idx-box .bg-01 .icon {
      position: absolute;
      -webkit-animation-delay: 5.5s;
      animation-delay: 5.5s;
      width: 100%;
      height: 220px;
      bottom: 0;
      left: 0;
      z-index: 10; }
      .idx-box .bg-01 .icon .icon-01 {
        position: absolute;
        left: 6%;
        bottom: 110px;
        -webkit-animation: idx-icon-1 3s infinite;
        animation: idx-icon-1 3s infinite;
        z-index: 9; }
        @media (max-width: 991.98px) {
          .idx-box .bg-01 .icon .icon-01 {
            bottom: 65px;
            left: 2%; } }
      .idx-box .bg-01 .icon .icon-02 {
        position: absolute;
        right: 19.8%;
        bottom: 130px;
        -webkit-animation: idx-icon-2 3s infinite;
        animation: idx-icon-2 3s infinite;
        z-index: 9; }
        @media (max-width: 991.98px) {
          .idx-box .bg-01 .icon .icon-02 {
            bottom: 80px;
            right: 17.5%; } }
      .idx-box .bg-01 .icon .icon-03 {
        position: absolute;
        right: 2.5%;
        bottom: 25px;
        -webkit-animation: idx-icon-1 3s infinite;
        animation: idx-icon-1 3s infinite;
        z-index: 9; }
        @media (max-width: 991.98px) {
          .idx-box .bg-01 .icon .icon-03 {
            right: 0%;
            bottom: 10px; } }
  .idx-box .btn-box {
    -webkit-animation-delay: 4s;
    animation-delay: 4s; }
  .idx-box .people-01 {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s; }

@-webkit-keyframes idx-icon-1 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes idx-icon-1 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@-webkit-keyframes idx-icon-2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

@keyframes idx-icon-2 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(15px);
    transform: translateY(15px); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }

.link-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .link-box .item {
    display: block;
    margin: 5px 7px 0; }
    .link-box .item:hover {
      opacity: .8; }

@media screen and (max-width: 1440px) {
  .idx-box .btn-box {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s; }
  .idx-box .people-01 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s; }
  .idx-box .bg-01 .icon {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s; } }

@media (max-width: 767.98px) {
  .idx-box .btn-box {
    max-width: 200px;
    margin: auto; }
    .idx-box .btn-box a {
      display: block;
      margin: auto; }
  .idx-box .people-01 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s; }
  .en .idx-box .btn-box {
    max-width: 260px; } }

@media screen and (max-width: 330px) {
  .idx-box .people-01 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s; } }

.alumni-box {
  position: relative;
  width: 100%; }
  .alumni-box::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 90.8%;
    background: #F6FFC6;
    bottom: 15px;
    left: 0;
    border-radius: 300px;
    z-index: -1; }
  .alumni-box .item {
    padding: 0;
    -webkit-animation: ani-alumni-item 0.8s;
    animation: ani-alumni-item 0.8s; }
    .alumni-box .item .pc {
      display: block;
      margin: auto; }
      @media (max-width: 575.98px) {
        .alumni-box .item .pc {
          display: none; } }
    .alumni-box .item .moblie {
      display: none;
      margin: auto; }
      @media (max-width: 575.98px) {
        .alumni-box .item .moblie {
          display: block; } }
  @media (max-width: 575.98px) {
    .alumni-box::before {
      content: '';
      background: url(../_img/page/bg-map-mobile.svg) top center no-repeat #fff;
      background-size: cover;
      position: absolute;
      border-radius: 0;
      bottom: auto;
      top: -20px;
      left: -20px;
      height: calc(100% + 60px);
      width: calc(100% + 40px);
      z-index: -1; } }

@-webkit-keyframes ani-alumni-item {
  0% {
    opacity: 0; }
  60% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes ani-alumni-item {
  0% {
    opacity: 0; }
  60% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@media (max-width: 991.98px) {
  .alumni-bg {
    overflow: unset; } }

.fancy-alumni {
  position: relative;
  border-radius: 8px;
  border: 4px #0091DC solid;
  background: #fff;
  max-width: 550px;
  padding: 25px 30px;
  font-size: 0.96rem; }
  @media (max-width: 991.98px) {
    .fancy-alumni {
      padding: 25px 20px 0; } }
  .fancy-alumni .item {
    margin-bottom: 20px; }
    .fancy-alumni .item:last-child {
      margin-bottom: 0; }
    .fancy-alumni .item .title {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      position: relative;
      font-weight: bold;
      border-bottom: 2px solid #FC745E;
      padding: 0 2px 2px;
      font-size: 1.05rem;
      margin-bottom: 12px; }
      .fancy-alumni .item .title img {
        margin-right: 5px; }
  .fancy-alumni .end-text {
    color: #0091DC; }
  @media (max-width: 991.98px) {
    .fancy-alumni .album-img {
      margin: 20px 0 10px; } }
  .fancy-alumni .album-img img {
    border-radius: 4px;
    border: 4px #0091DC solid;
    -webkit-box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25); }
  .fancy-alumni .album-img .picture-01 {
    width: 100%;
    max-width: 260px;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateY(-60%) translateX(98%) rotate(-3.51deg);
    -ms-transform: translateY(-60%) translateX(98%) rotate(-3.51deg);
    transform: translateY(-60%) translateX(98%) rotate(-3.51deg);
    -webkit-animation: ani-picture-01 1.1s;
    animation: ani-picture-01 1.1s;
    z-index: 10; }
    @media (max-width: 991.98px) {
      .fancy-alumni .album-img .picture-01 {
        -webkit-animation: ani-picture-01 0.6s;
        animation: ani-picture-01 0.6s;
        max-width: 208px;
        position: relative;
        margin: auto;
        -webkit-transform: translateY(0) translateX(0) rotate(-3.51deg);
        -ms-transform: translateY(0) translateX(0) rotate(-3.51deg);
        transform: translateY(0) translateX(0) rotate(-3.51deg); } }
  .fancy-alumni .album-img .picture-02 {
    width: 100%;
    max-width: 330px;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transform: translateY(35%) translateX(91%) rotate(7.25deg);
    -ms-transform: translateY(35%) translateX(91%) rotate(7.25deg);
    transform: translateY(35%) translateX(91%) rotate(7.25deg);
    -webkit-animation: ani-picture-02 0.6s;
    animation: ani-picture-02 0.6s;
    z-index: 9; }
    @media (max-width: 991.98px) {
      .fancy-alumni .album-img .picture-02 {
        -webkit-animation: ani-picture-02 1.3s;
        animation: ani-picture-02 1.3s;
        max-width: 264px;
        position: relative;
        margin: auto;
        -webkit-transform: translateY(0%) translateX(0) rotate(9.39deg);
        -ms-transform: translateY(0%) translateX(0) rotate(9.39deg);
        transform: translateY(0%) translateX(0) rotate(9.39deg); } }

.people-img-pc {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-9%) translateX(-90%);
  -ms-transform: translateY(-9%) translateX(-90%);
  transform: translateY(-9%) translateX(-90%); }
  @media (max-width: 991.98px) {
    .people-img-pc {
      display: none; } }

.people-img-m {
  display: none; }
  @media (max-width: 991.98px) {
    .people-img-m {
      position: relative;
      display: block;
      margin-left: 20px;
      margin-bottom: -20px;
      z-index: 9; } }
  @media (max-width: 575.98px) {
    .people-img-m img {
      max-width: 155px; } }

@-webkit-keyframes ani-picture-01 {
  0% {
    opacity: 0; }
  80% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes ani-picture-01 {
  0% {
    opacity: 0; }
  80% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes ani-picture-02 {
  0% {
    opacity: 0; }
  65% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes ani-picture-02 {
  0% {
    opacity: 0; }
  65% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.fancy-vote {
  width: 98%;
  max-width: 1400px;
  margin: auto; }
  .fancy-vote .fade-mask {
    -webkit-animation: ani-vote 1s;
    animation: ani-vote 1s; }
  @media screen and (max-width: 1440px) {
    .fancy-vote {
      width: 95%;
      margin-right: 3%; } }
  @media screen and (max-width: 1320px) {
    .fancy-vote {
      margin-right: 5%; } }
  @media (max-width: 1199.98px) {
    .fancy-vote {
      width: 100%;
      margin: auto;
      padding-top: 10px; } }

.vote-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%; }
  .vote-box .vote-mobile-text {
    width: 100%;
    padding: 20px;
    font-weight: bold; }
    @media (max-width: 991.98px) {
      .vote-box .vote-mobile-text {
        padding: 15px 15px 0; } }
  .vote-box .people {
    position: absolute;
    right: 0;
    top: 27%;
    -webkit-transform: translateX(29%);
    -ms-transform: translateX(29%);
    transform: translateX(29%);
    -webkit-animation: ani-vote 1.2s;
    animation: ani-vote 1.2s; }
    @media screen and (max-width: 1320px) {
      .vote-box .people {
        -webkit-transform: translateX(35%);
        -ms-transform: translateX(35%);
        transform: translateX(35%); } }
    @media (max-width: 1199.98px) {
      .vote-box .people {
        top: 30px;
        right: 10px;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0); } }
  .vote-box .item {
    width: calc(100% / 8);
    position: relative;
    margin-bottom: 8px;
    -webkit-animation: ani-vote 1s;
    animation: ani-vote 1s; }
    @media (max-width: 1199.98px) {
      .vote-box .item {
        width: calc(100% / 6); }
        .vote-box .item.not {
          display: none; } }
    @media (max-width: 991.98px) {
      .vote-box .item {
        width: calc(100% / 5); } }
    @media (max-width: 767.98px) {
      .vote-box .item {
        width: calc(100% / 4); } }
    @media (max-width: 575.98px) {
      .vote-box .item {
        width: calc(100% / 3); } }
    @media screen and (max-width: 480px) {
      .vote-box .item {
        width: calc(100% / 2); } }
    .vote-box .item::before {
      position: absolute;
      content: '';
      background: url(../_img/vote/item-bg.svg) center bottom no-repeat;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 0; }
    .vote-box .item.not::before {
      display: none; }
    .vote-box .item .icon {
      position: relative;
      z-index: 9; }
    .vote-box .item .btn-box {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      position: relative;
      z-index: 9; }
      .vote-box .item .btn-box .quantity-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background: #fff;
        color: #FC745E;
        padding: 8px 10px;
        border-radius: 30px;
        margin: 7px 3px 10px;
        font-weight: bold;
        line-height: 1.2;
        word-break: keep-all; }
        .vote-box .item .btn-box .quantity-box small {
          margin-right: 5px;
          font-weight: bold; }
        @media (max-width: 991.98px) {
          .vote-box .item .btn-box .quantity-box {
            padding: 7px 9px; }
            .vote-box .item .btn-box .quantity-box small {
              margin-right: 3px;
              margin-top: 1px; } }
      .vote-box .item .btn-box .vote-btn {
        margin: 7px 3px 10px;
        display: block;
        outline: none; }
        .vote-box .item .btn-box .vote-btn img {
          width: 36px;
          min-width: 36px; }
          @media (max-width: 991.98px) {
            .vote-box .item .btn-box .vote-btn img {
              width: 32px;
              min-width: 32px; } }
        .vote-box .item .btn-box .vote-btn .default {
          display: block; }
        .vote-box .item .btn-box .vote-btn .hover {
          display: none; }
        .vote-box .item .btn-box .vote-btn .active {
          display: none; }
        .vote-box .item .btn-box .vote-btn:hover .hover {
          display: block; }
        .vote-box .item .btn-box .vote-btn:hover .default {
          display: none; }
        .vote-box .item .btn-box .vote-btn:hover .active {
          display: none; }
        .vote-box .item .btn-box .vote-btn.active .active {
          display: block; }
        .vote-box .item .btn-box .vote-btn.active .default {
          display: none; }
        .vote-box .item .btn-box .vote-btn.active .hover {
          display: none; }

.fancy-vote-send {
  padding: 50px 160px 45px 170px;
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none; }
  .fancy-vote-send .text-box {
    font-weight: bold;
    font-size: 1.15rem;
    text-align: center; }
  .fancy-vote-send .send-01 {
    position: absolute;
    left: 8px;
    bottom: -2px;
    z-index: 0;
    -webkit-animation: ani-vote .8s;
    animation: ani-vote .8s; }
  .fancy-vote-send .send-02 {
    position: absolute;
    right: 12px;
    bottom: -2px;
    z-index: 0;
    -webkit-animation: ani-vote 1.4s;
    animation: ani-vote 1.4s; }
  @media (max-width: 991.98px) {
    .fancy-vote-send {
      padding: 45px 145px 40px 155px; } }
  @media (max-width: 767.98px) {
    .fancy-vote-send {
      padding: 20px 15px;
      margin: 180px auto 60px; }
      .fancy-vote-send .text-box {
        font-size: 14px; }
      .fancy-vote-send .send-01 {
        top: 0;
        left: 50%;
        z-index: -1;
        -webkit-transform: translateY(-73%) translateX(-75%);
        -ms-transform: translateY(-73%) translateX(-75%);
        transform: translateY(-73%) translateX(-75%); }
      .fancy-vote-send .send-02 {
        top: 0;
        right: 50%;
        z-index: -1;
        -webkit-transform: translateY(-69%) translateX(75%);
        -ms-transform: translateY(-69%) translateX(75%);
        transform: translateY(-69%) translateX(75%); } }

@-webkit-keyframes ani-vote {
  0% {
    opacity: 0; }
  70% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes ani-vote {
  0% {
    opacity: 0; }
  70% {
    opacity: 0; }
  100% {
    opacity: 1; } }

#test {
  position: relative;
  background: url(../_img/page/bg-map.jpg) top center no-repeat;
  background-size: cover; }
  @media screen and (max-width: 1440px) {
    #test {
      background-size: contain; } }
  @media (max-width: 991.98px) {
    #test::before {
      position: absolute;
      content: '';
      top: 15%;
      right: 20%;
      width: 50px;
      height: 50px;
      background: url(../_img/test/cloud-03.svg) center no-repeat;
      background-size: cover;
      -webkit-animation: ani-test-01 2.5s;
      animation: ani-test-01 2.5s; }
    #test::after {
      position: absolute;
      content: '';
      bottom: 7%;
      left: 20%;
      width: 102.84px;
      height: 62.61px;
      background: url(../_img/test/cloud-04.svg) center no-repeat;
      background-size: cover;
      -webkit-animation: ani-test-01 3s;
      animation: ani-test-01 3s; } }
  @media (max-width: 767.98px) {
    #test {
      background: url(../_img/page/bg-map-mobile.svg) top center no-repeat;
      background-size: cover; }
      #test::before {
        top: 14%;
        width: 30px;
        height: 30px; }
      #test::after {
        left: 10%;
        width: 68.56px;
        height: 41.74px; } }

#result {
  position: relative;
  background: url(../_img/page/bg-map.jpg) top center no-repeat;
  background-size: cover; }
  @media screen and (max-width: 1440px) {
    #result {
      background-size: contain; } }
  @media (max-width: 767.98px) {
    #result {
      background: url(../_img/page/bg-map-mobile.svg) top center no-repeat;
      background-size: cover; } }

.fancy-form {
  position: relative;
  max-width: 880px; }
  .fancy-form .form-people {
    position: absolute;
    right: 0;
    bottom: -12px;
    -webkit-transform: translateX(54%);
    -ms-transform: translateX(54%);
    transform: translateX(54%); }
    @media (max-width: 1199.98px) {
      .fancy-form .form-people {
        max-width: 150px;
        -webkit-transform: translateX(30%);
        -ms-transform: translateX(30%);
        transform: translateX(30%);
        bottom: -5px; } }
    @media (max-width: 991.98px) {
      .fancy-form .form-people {
        display: none; } }

.form-people-m {
  position: relative;
  margin-bottom: -8px;
  z-index: 9;
  width: 125px; }

@media (max-width: 991.98px) {
  .en .test-box .test-item .test-bg {
    padding: 20px 5%; }
    .en .test-box .test-item .test-bg .main-title {
      font-size: 1.05rem; } }

.test-box {
  padding: 0; }
  .test-box .test-list {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 991.98px) {
      .test-box .test-list {
        height: 90vh; } }
    .test-box .test-list.swiper-slide-active .test-item .test-bg .people-01, .test-box .test-list.swiper-slide-active .test-item .test-bg .people-02 {
      display: block;
      -webkit-animation: ani-test-01 1s;
      animation: ani-test-01 1s; }
    .test-box .test-list.swiper-slide-active .test-item .text-01, .test-box .test-list.swiper-slide-active .test-item .text-02 {
      display: block;
      -webkit-animation: ani-test-02 1.8s;
      animation: ani-test-02 1.8s; }
    .test-box .test-list.swiper-slide-active.test-style-01 .cloud-01 {
      opacity: 1;
      -webkit-animation: ani-style01-1 1s;
      animation: ani-style01-1 1s;
      -webkit-transform: translateX(-40%) translateY(80%);
      -ms-transform: translateX(-40%) translateY(80%);
      transform: translateX(-40%) translateY(80%); }
    .test-box .test-list.swiper-slide-active.test-style-01 .cloud-02 {
      opacity: 1;
      -webkit-animation: ani-style01-2 1s;
      animation: ani-style01-2 1s;
      -webkit-transform: translateX(25%) translateY(-80%);
      -ms-transform: translateX(25%) translateY(-80%);
      transform: translateX(25%) translateY(-80%); }
    .test-box .test-list.swiper-slide-active.test-style-02 .cloud-01 {
      opacity: 1;
      -webkit-animation: ani-style02-1 1s;
      animation: ani-style02-1 1s;
      -webkit-transform: translateX(160%) translateY(140%);
      -ms-transform: translateX(160%) translateY(140%);
      transform: translateX(160%) translateY(140%); }
    .test-box .test-list.swiper-slide-active.test-style-02 .cloud-02 {
      opacity: 1;
      -webkit-animation: ani-style02-2 1s;
      animation: ani-style02-2 1s;
      -webkit-transform: translateX(-330%) translateY(-135%);
      -ms-transform: translateX(-330%) translateY(-135%);
      transform: translateX(-330%) translateY(-135%); }
    .test-box .test-list.swiper-slide-active.test-style-03 .cloud-01 {
      opacity: 1;
      -webkit-animation: ani-style03-1 1s;
      animation: ani-style03-1 1s;
      -webkit-transform: translateX(440%) translateY(-410%);
      -ms-transform: translateX(440%) translateY(-410%);
      transform: translateX(440%) translateY(-410%); }
    .test-box .test-list.swiper-slide-active.test-style-03 .cloud-02 {
      opacity: 1;
      -webkit-animation: ani-style03-2 1s;
      animation: ani-style03-2 1s;
      -webkit-transform: translateX(-520%) translateY(420%);
      -ms-transform: translateX(-520%) translateY(420%);
      transform: translateX(-520%) translateY(420%); }
    .test-box .test-list .cloud-box .cloud-01 {
      opacity: 0;
      position: absolute;
      bottom: 0;
      left: 0; }
    .test-box .test-list .cloud-box .cloud-02 {
      opacity: 0;
      position: absolute;
      top: 0;
      right: 0; }
    @media (max-width: 991.98px) {
      .test-box .test-list .cloud-box {
        display: none; } }
  .test-box .test-item {
    position: relative;
    width: 100%;
    max-width: 1060px;
    height: 380px;
    margin: auto; }
    @media (max-width: 767.98px) {
      .test-box .test-item {
        max-width: 750px;
        height: 340px; } }
    .test-box .test-item .test-bg {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 88%;
      height: 100%;
      margin: auto;
      padding: 20px 15%;
      border-radius: 190px;
      border: 4px #0091DC solid;
      background: #fff;
      -webkit-box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.25);
      box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.25);
      text-align: center;
      overflow: hidden; }
      @media (max-width: 767.98px) {
        .test-box .test-item .test-bg {
          border-radius: 8px;
          width: 84%;
          border: 2px #0091DC solid;
          padding: 40px 11%; } }
      .test-box .test-item .test-bg .test-content {
        margin: auto;
        width: 100%; }
        .test-box .test-item .test-bg .test-content .test-btn {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -ms-flex-pack: distribute;
          justify-content: space-around; }
          @media (max-width: 575.98px) {
            .test-box .test-item .test-bg .test-content .test-btn {
              -ms-flex-wrap: wrap;
              flex-wrap: wrap;
              width: 140px; }
              .test-box .test-item .test-bg .test-content .test-btn .main-btn2 {
                margin-bottom: 10px;
                margin-top: 25px;
                display: block; }
                .test-box .test-item .test-bg .test-content .test-btn .main-btn2:last-child {
                  margin-bottom: 15px; } }
      .test-box .test-item .test-bg .people-01 {
        position: absolute;
        bottom: -5%;
        left: 5%;
        display: none; }
        @media (max-width: 767.98px) {
          .test-box .test-item .test-bg .people-01 {
            width: 105px;
            bottom: -3px;
            left: 5px; } }
      .test-box .test-item .test-bg .people-02 {
        position: absolute;
        bottom: -4%;
        right: 4%;
        display: none; }
        @media (max-width: 767.98px) {
          .test-box .test-item .test-bg .people-02 {
            width: 95px;
            bottom: -3px;
            right: -6px; } }
    .test-box .test-item .text-01 {
      position: absolute;
      z-index: 9;
      top: 12%;
      left: 7%;
      display: none; }
      @media (max-width: 767.98px) {
        .test-box .test-item .text-01 {
          width: 120px;
          top: 30%;
          left: 1%; } }
    .test-box .test-item .text-02 {
      position: absolute;
      z-index: 9;
      top: 14%;
      right: 8%;
      display: none; }
      @media (max-width: 767.98px) {
        .test-box .test-item .text-02 {
          width: 120px;
          top: 30.5%;
          right: 1.5%; } }
    .test-box .test-item .test-num {
      position: absolute;
      bottom: -10px;
      right: 0;
      -webkit-transform: translateX(-170%) translateY(100%);
      -ms-transform: translateX(-170%) translateY(100%);
      transform: translateX(-170%) translateY(100%);
      color: #0091DC;
      font-weight: bold;
      font-size: 1.35rem;
      z-index: 10; }
      @media (max-width: 767.98px) {
        .test-box .test-item .test-num {
          bottom: -15px;
          right: 50%;
          -webkit-transform: translateX(50%) translateY(100%);
          -ms-transform: translateX(50%) translateY(100%);
          transform: translateX(50%) translateY(100%); } }
  .test-box .swiper-slide {
    opacity: 0 !important;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease; }
  .test-box .swiper-slide-active {
    opacity: 1 !important;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease; }

@-webkit-keyframes ani-test-01 {
  0% {
    opacity: 0; }
  80% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes ani-test-01 {
  0% {
    opacity: 0; }
  80% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes ani-test-02 {
  0% {
    opacity: 0; }
  65% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes ani-test-02 {
  0% {
    opacity: 0; }
  65% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@-webkit-keyframes ani-style01-1 {
  0% {
    -webkit-transform: translateX(60%) translateY(100%);
    transform: translateX(60%) translateY(100%); }
  100% {
    -webkit-transform: translateX(-40%) translateY(80%);
    transform: translateX(-40%) translateY(80%); } }

@keyframes ani-style01-1 {
  0% {
    -webkit-transform: translateX(60%) translateY(100%);
    transform: translateX(60%) translateY(100%); }
  100% {
    -webkit-transform: translateX(-40%) translateY(80%);
    transform: translateX(-40%) translateY(80%); } }

@-webkit-keyframes ani-style01-2 {
  0% {
    -webkit-transform: translateX(-50%) translateY(-95%);
    transform: translateX(-50%) translateY(-95%); }
  100% {
    -webkit-transform: translateX(25%) translateY(-80%);
    transform: translateX(25%) translateY(-80%); } }

@keyframes ani-style01-2 {
  0% {
    -webkit-transform: translateX(-50%) translateY(-95%);
    transform: translateX(-50%) translateY(-95%); }
  100% {
    -webkit-transform: translateX(25%) translateY(-80%);
    transform: translateX(25%) translateY(-80%); } }

@-webkit-keyframes ani-style02-1 {
  0% {
    -webkit-transform: translateX(-60%) translateY(100%);
    transform: translateX(-60%) translateY(100%); }
  100% {
    -webkit-transform: translateX(160%) translateY(140%);
    transform: translateX(160%) translateY(140%); } }

@keyframes ani-style02-1 {
  0% {
    -webkit-transform: translateX(-60%) translateY(100%);
    transform: translateX(-60%) translateY(100%); }
  100% {
    -webkit-transform: translateX(160%) translateY(140%);
    transform: translateX(160%) translateY(140%); } }

@-webkit-keyframes ani-style02-2 {
  0% {
    -webkit-transform: translateX(50%) translateY(-95%);
    transform: translateX(50%) translateY(-95%); }
  100% {
    -webkit-transform: translateX(-330%) translateY(-135%);
    transform: translateX(-330%) translateY(-135%); } }

@keyframes ani-style02-2 {
  0% {
    -webkit-transform: translateX(50%) translateY(-95%);
    transform: translateX(50%) translateY(-95%); }
  100% {
    -webkit-transform: translateX(-330%) translateY(-135%);
    transform: translateX(-330%) translateY(-135%); } }

@-webkit-keyframes ani-style03-1 {
  0% {
    -webkit-transform: translateX(250%) translateY(-200%);
    transform: translateX(250%) translateY(-200%); }
  100% {
    -webkit-transform: translateX(440%) translateY(-410%);
    transform: translateX(440%) translateY(-410%); } }

@keyframes ani-style03-1 {
  0% {
    -webkit-transform: translateX(250%) translateY(-200%);
    transform: translateX(250%) translateY(-200%); }
  100% {
    -webkit-transform: translateX(440%) translateY(-410%);
    transform: translateX(440%) translateY(-410%); } }

@-webkit-keyframes ani-style03-2 {
  0% {
    -webkit-transform: translateX(-200%) translateY(0%);
    transform: translateX(-200%) translateY(0%); }
  100% {
    -webkit-transform: translateX(-520%) translateY(420%);
    transform: translateX(-520%) translateY(420%); } }

@keyframes ani-style03-2 {
  0% {
    -webkit-transform: translateX(-200%) translateY(0%);
    transform: translateX(-200%) translateY(0%); }
  100% {
    -webkit-transform: translateX(-520%) translateY(420%);
    transform: translateX(-520%) translateY(420%); } }

.test-result-box {
  position: relative;
  height: 100vh;
  overflow: hidden; }
  .test-result-box .result-box {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 30px 6% 0 6%;
    border-radius: 16px;
    border: 4px #0091DC solid;
    background: #fff;
    -webkit-box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.25);
    max-height: 83vh;
    overflow: auto;
    z-index: 9; }
    @media (max-width: 767.98px) {
      .test-result-box .result-box {
        border-radius: 8px;
        width: 95%;
        border: 2px #0091DC solid;
        padding: 25px 15px 0 15px; } }
    .test-result-box .result-box .result-list .item {
      background: #E8E4CB;
      padding: 20px 25px;
      border-radius: 8px;
      margin-top: 20px; }
      @media (max-width: 767.98px) {
        .test-result-box .result-box .result-list .item {
          padding: 20px; } }
    .test-result-box .result-box.mobile {
      margin: auto;
      overflow: unset; }
      @media (max-width: 575.98px) {
        .test-result-box .result-box.mobile {
          max-width: 300px; } }
      .test-result-box .result-box.mobile .result-people .r-01 {
        bottom: auto;
        top: -4px;
        left: 12.5%;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        display: block; }
        @media (max-width: 991.98px) {
          .test-result-box .result-box.mobile .result-people .r-01 {
            max-height: 150px; } }
        @media (max-width: 767.98px) {
          .test-result-box .result-box.mobile .result-people .r-01 {
            top: -2px; } }
        @media (max-width: 575.98px) {
          .test-result-box .result-box.mobile .result-people .r-01 {
            max-height: 100px; } }
      .test-result-box .result-box.mobile .result-people .r-02 {
        bottom: auto;
        top: -4px;
        left: 6%;
        -webkit-transform: translateX(100%) translateY(-100%);
        -ms-transform: translateX(100%) translateY(-100%);
        transform: translateX(100%) translateY(-100%);
        display: block; }
        @media (max-width: 991.98px) {
          .test-result-box .result-box.mobile .result-people .r-02 {
            max-height: 150px; } }
        @media (max-width: 767.98px) {
          .test-result-box .result-box.mobile .result-people .r-02 {
            top: -2px; } }
        @media (max-width: 575.98px) {
          .test-result-box .result-box.mobile .result-people .r-02 {
            max-height: 100px; } }
      .test-result-box .result-box.mobile .result-people .r-03 {
        bottom: auto;
        top: -4px;
        right: 1%;
        -webkit-transform: translateX(-100%) translateY(-100%);
        -ms-transform: translateX(-100%) translateY(-100%);
        transform: translateX(-100%) translateY(-100%);
        display: block; }
        @media (max-width: 991.98px) {
          .test-result-box .result-box.mobile .result-people .r-03 {
            max-height: 150px; } }
        @media (max-width: 767.98px) {
          .test-result-box .result-box.mobile .result-people .r-03 {
            top: -2px; } }
        @media (max-width: 575.98px) {
          .test-result-box .result-box.mobile .result-people .r-03 {
            max-height: 100px; } }
      .test-result-box .result-box.mobile .result-people .r-04 {
        bottom: auto;
        top: -4px;
        right: 11%;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        display: block; }
        @media (max-width: 991.98px) {
          .test-result-box .result-box.mobile .result-people .r-04 {
            max-height: 150px; } }
        @media (max-width: 767.98px) {
          .test-result-box .result-box.mobile .result-people .r-04 {
            top: -2px; } }
        @media (max-width: 575.98px) {
          .test-result-box .result-box.mobile .result-people .r-04 {
            max-height: 100px; } }
  .test-result-box .result-bottom {
    text-align: center;
    border-top: 1px #D2D2D2 solid;
    margin-top: 20px;
    padding: 20px 0;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff; }
  .test-result-box .result-people .r-01 {
    position: absolute;
    bottom: 0;
    left: 4.1%;
    z-index: 3;
    -webkit-animation: ani-result-people 2s;
    animation: ani-result-people 2s; }
    @media (max-width: 991.98px) {
      .test-result-box .result-people .r-01 {
        display: none; } }
  .test-result-box .result-people .r-02 {
    position: absolute;
    bottom: 0;
    left: 1%;
    z-index: 2;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-animation: ani-result-people 3.6s;
    animation: ani-result-people 3.6s; }
    @media (max-width: 1199.98px) {
      .test-result-box .result-people .r-02 {
        display: none; } }
  .test-result-box .result-people .r-03 {
    position: absolute;
    bottom: 0;
    right: -2%;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 1;
    -webkit-animation: ani-result-people 2.8s;
    animation: ani-result-people 2.8s; }
    @media (max-width: 1199.98px) {
      .test-result-box .result-people .r-03 {
        display: none; } }
  .test-result-box .result-people .r-04 {
    position: absolute;
    bottom: 0;
    right: 3%;
    z-index: 0;
    -webkit-animation: ani-result-people 4.3s;
    animation: ani-result-people 4.3s; }
    @media (max-width: 991.98px) {
      .test-result-box .result-people .r-04 {
        display: none; } }

.share-btn {
  border: 2px #FC745E solid;
  border-radius: 30px;
  padding: 0 1px;
  width: 40px;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease; }
  .share-btn i {
    font-size: 1.25rem;
    color: #0091DC;
    padding: 9px 7px 7px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease; }
    .share-btn i:hover {
      color: #FC745E;
      -webkit-transition: 0.3s ease;
      -o-transition: 0.3s ease;
      transition: 0.3s ease; }
  @media (min-width: 768px) {
    .share-btn:hover {
      width: 111px;
      padding: 0 5px;
      -webkit-transition: 0.3s ease;
      -o-transition: 0.3s ease;
      transition: 0.3s ease; } }
  @media (max-width: 767.98px) {
    .share-btn {
      margin-left: 5px;
      padding: 0 5px;
      width: auto; }
      .share-btn i {
        font-size: 1.2rem;
        padding: 8px 7px 7px; } }

@-webkit-keyframes ani-result-people {
  0% {
    opacity: 0; }
  70% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes ani-result-people {
  0% {
    opacity: 0; }
  70% {
    opacity: 0; }
  100% {
    opacity: 1; } }

#job {
  position: relative;
  background: url(../_img/page/bg-dot.jpg) top center no-repeat;
  background-size: cover; }
  @media screen and (max-width: 1440px) {
    #job {
      background-size: contain; } }
  @media (max-width: 767.98px) {
    #job {
      background: url(../_img/page/bg-map-mobile.svg) top center no-repeat;
      background-size: 100%;
      background-attachment: fixed; } }

.en .job-box-pc .bottom-text {
  margin: 110px auto 0;
  text-align: left;
  max-width: 1100px; }

.en .job-box-pc .introduce-box {
  bottom: -85px; }

.job-box-pc .bottom-text {
  max-width: 800px;
  margin: 30px auto 0;
  font-weight: bold;
  font-size: 0.9rem;
  color: #666565;
  text-align: center;
  line-height: 1.4; }
  @media (max-width: 1199.98px) {
    .job-box-pc .bottom-text {
      text-align: left;
      padding-left: 10px;
      margin: 0 auto; } }
  @media (max-width: 991.98px) {
    .job-box-pc .bottom-text {
      padding-left: 5px; } }

.job-box-pc .introduce-box {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 15px;
  border-radius: 16px;
  border: 4px #0091DC solid;
  background: #fff;
  -webkit-box-shadow: 0px 6px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0px 6px 4px 0 rgba(0, 0, 0, 0.25);
  width: 335px;
  -webkit-transform: translateX(-25.5%);
  -ms-transform: translateX(-25.5%);
  transform: translateX(-25.5%);
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: bold;
  z-index: 1; }
  .job-box-pc .introduce-box .people-01 {
    position: absolute;
    left: 8%;
    top: -4px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); }
  @media screen and (max-width: 1440px) {
    .job-box-pc .introduce-box {
      -webkit-transform: translateX(-22%);
      -ms-transform: translateX(-22%);
      transform: translateX(-22%);
      width: 300px; } }
  @media screen and (max-width: 1320px) {
    .job-box-pc .introduce-box {
      -webkit-transform: translateX(-4%);
      -ms-transform: translateX(-4%);
      transform: translateX(-4%);
      width: 270px; } }
  @media (max-width: 1199.98px) {
    .job-box-pc .introduce-box {
      position: static;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
      width: 100%; } }

.job-box-mobile .bg-box {
  background: #E8E4CB;
  padding: 18px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 0px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 0px 0 rgba(0, 0, 0, 0.25); }

.job-box-mobile .job-mobile-result .item, .job-box-mobile .job-mobile-all .item {
  padding: 0; }

.job-box-mobile .job-mobile-all {
  background: #E5FFFA;
  padding: 18px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 0px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 0px 0 rgba(0, 0, 0, 0.25); }

.fancy-job-mobile {
  position: relative;
  margin: 10px auto;
  padding: 0;
  background: #E8E4CB;
  width: 94%;
  max-width: 350px; }
  .fancy-job-mobile .item {
    padding: 18px 15px; }
  .fancy-job-mobile img {
    width: 100%; }

.fancy-job-mobile-img {
  position: relative; }
  .fancy-job-mobile-img .close-btn {
    top: 10px;
    right: 10px;
    -webkit-transform: translateY(0) translateX(0);
    -ms-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
    border-radius: 0 30px 30px 0;
    width: 35px;
    padding-right: 5px; }
  .fancy-job-mobile-img .zoom-btn {
    top: 10px;
    right: 10px;
    -webkit-transform: translateY(0) translateX(-100%);
    -ms-transform: translateY(0) translateX(-100%);
    transform: translateY(0) translateX(-100%);
    border-radius: 30px 0 0 30px;
    padding-left: 5px;
    width: 35px; }
  .fancy-job-mobile-img.active {
    width: 700px; }

#work-shop {
  background: url(../_img/page/bg-map.jpg) top center no-repeat;
  background-size: cover; }
  @media screen and (max-width: 1440px) {
    #work-shop {
      background-size: contain; } }
  @media (max-width: 767.98px) {
    #work-shop {
      background: url(../_img/index/bg-map-mobile.svg) top center no-repeat;
      background-size: cover; } }

.work-shop-box-pc svg {
  max-width: 1470px; }

.work-detail-item {
  display: block;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none; }

.job-map-box .j-item {
  cursor: pointer; }
  .job-map-box .j-item .j-circle {
    display: none; }
  .job-map-box .j-item.active .j-circle {
    display: block; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-1, .job-map-box .j-item.active .j-circle .circle-01 .c2-1, .job-map-box .j-item.active .j-circle .circle-02 .c1-1, .job-map-box .j-item.active .j-circle .circle-02 .c2-1 {
      -webkit-animation: ani-c-1 1.9s infinite;
      animation: ani-c-1 1.9s infinite;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-2, .job-map-box .j-item.active .j-circle .circle-01 .c2-2, .job-map-box .j-item.active .j-circle .circle-02 .c1-2, .job-map-box .j-item.active .j-circle .circle-02 .c2-2 {
      -webkit-animation: ani-c-2 1.9s infinite;
      animation: ani-c-2 1.9s infinite;
      -webkit-animation-delay: 0.1s;
      animation-delay: 0.1s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-3, .job-map-box .j-item.active .j-circle .circle-01 .c2-3, .job-map-box .j-item.active .j-circle .circle-02 .c1-3, .job-map-box .j-item.active .j-circle .circle-02 .c2-3 {
      -webkit-animation: ani-c-3 1.9s infinite;
      animation: ani-c-3 1.9s infinite;
      -webkit-animation-delay: 0.2s;
      animation-delay: 0.2s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-4, .job-map-box .j-item.active .j-circle .circle-01 .c2-4, .job-map-box .j-item.active .j-circle .circle-02 .c1-4, .job-map-box .j-item.active .j-circle .circle-02 .c2-4 {
      -webkit-animation: ani-c-4 1.9s infinite;
      animation: ani-c-4 1.9s infinite;
      -webkit-animation-delay: 0.3s;
      animation-delay: 0.3s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-5, .job-map-box .j-item.active .j-circle .circle-01 .c2-5, .job-map-box .j-item.active .j-circle .circle-02 .c1-5, .job-map-box .j-item.active .j-circle .circle-02 .c2-5 {
      -webkit-animation: ani-c-5 1.9s infinite;
      animation: ani-c-5 1.9s infinite;
      -webkit-animation-delay: 0.4s;
      animation-delay: 0.4s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-6, .job-map-box .j-item.active .j-circle .circle-01 .c2-6, .job-map-box .j-item.active .j-circle .circle-02 .c1-6, .job-map-box .j-item.active .j-circle .circle-02 .c2-6 {
      -webkit-animation: ani-c-6 1.9s infinite;
      animation: ani-c-6 1.9s infinite;
      -webkit-animation-delay: 0.5s;
      animation-delay: 0.5s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-7, .job-map-box .j-item.active .j-circle .circle-01 .c2-7, .job-map-box .j-item.active .j-circle .circle-02 .c1-7, .job-map-box .j-item.active .j-circle .circle-02 .c2-7 {
      -webkit-animation: ani-c-7 1.9s infinite;
      animation: ani-c-7 1.9s infinite;
      -webkit-animation-delay: 0.6s;
      animation-delay: 0.6s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-8, .job-map-box .j-item.active .j-circle .circle-01 .c2-8, .job-map-box .j-item.active .j-circle .circle-02 .c1-8, .job-map-box .j-item.active .j-circle .circle-02 .c2-8 {
      -webkit-animation: ani-c-8 1.9s infinite;
      animation: ani-c-8 1.9s infinite;
      -webkit-animation-delay: 0.7s;
      animation-delay: 0.7s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-9, .job-map-box .j-item.active .j-circle .circle-01 .c2-9, .job-map-box .j-item.active .j-circle .circle-02 .c1-9, .job-map-box .j-item.active .j-circle .circle-02 .c2-9 {
      -webkit-animation: ani-c-9 1.9s infinite;
      animation: ani-c-9 1.9s infinite;
      -webkit-animation-delay: 0.8s;
      animation-delay: 0.8s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-10, .job-map-box .j-item.active .j-circle .circle-01 .c2-10, .job-map-box .j-item.active .j-circle .circle-02 .c1-10, .job-map-box .j-item.active .j-circle .circle-02 .c2-10 {
      -webkit-animation: ani-c-10 1.9s infinite;
      animation: ani-c-10 1.9s infinite;
      -webkit-animation-delay: 0.9s;
      animation-delay: 0.9s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-11, .job-map-box .j-item.active .j-circle .circle-01 .c2-11, .job-map-box .j-item.active .j-circle .circle-02 .c1-11, .job-map-box .j-item.active .j-circle .circle-02 .c2-11 {
      -webkit-animation: ani-c-11 1.9s infinite;
      animation: ani-c-11 1.9s infinite;
      -webkit-animation-delay: 1s;
      animation-delay: 1s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-12, .job-map-box .j-item.active .j-circle .circle-01 .c2-12, .job-map-box .j-item.active .j-circle .circle-02 .c1-12, .job-map-box .j-item.active .j-circle .circle-02 .c2-12 {
      -webkit-animation: ani-c-12 1.9s infinite;
      animation: ani-c-12 1.9s infinite;
      -webkit-animation-delay: 1.1s;
      animation-delay: 1.1s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-13, .job-map-box .j-item.active .j-circle .circle-01 .c2-13, .job-map-box .j-item.active .j-circle .circle-02 .c1-13, .job-map-box .j-item.active .j-circle .circle-02 .c2-13 {
      -webkit-animation: ani-c-13 1.9s infinite;
      animation: ani-c-13 1.9s infinite;
      -webkit-animation-delay: 1.2s;
      animation-delay: 1.2s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-14, .job-map-box .j-item.active .j-circle .circle-01 .c2-14, .job-map-box .j-item.active .j-circle .circle-02 .c1-14, .job-map-box .j-item.active .j-circle .circle-02 .c2-14 {
      -webkit-animation: ani-c-14 1.9s infinite;
      animation: ani-c-14 1.9s infinite;
      -webkit-animation-delay: 1.3s;
      animation-delay: 1.3s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-15, .job-map-box .j-item.active .j-circle .circle-01 .c2-15, .job-map-box .j-item.active .j-circle .circle-02 .c1-15, .job-map-box .j-item.active .j-circle .circle-02 .c2-15 {
      -webkit-animation: ani-c-15 1.9s infinite;
      animation: ani-c-15 1.9s infinite;
      -webkit-animation-delay: 1.4s;
      animation-delay: 1.4s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-16, .job-map-box .j-item.active .j-circle .circle-01 .c2-16, .job-map-box .j-item.active .j-circle .circle-02 .c1-16, .job-map-box .j-item.active .j-circle .circle-02 .c2-16 {
      -webkit-animation: ani-c-16 1.9s infinite;
      animation: ani-c-16 1.9s infinite;
      -webkit-animation-delay: 1.5s;
      animation-delay: 1.5s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-17, .job-map-box .j-item.active .j-circle .circle-01 .c2-17, .job-map-box .j-item.active .j-circle .circle-02 .c1-17, .job-map-box .j-item.active .j-circle .circle-02 .c2-17 {
      -webkit-animation: ani-c-17 1.9s infinite;
      animation: ani-c-17 1.9s infinite;
      -webkit-animation-delay: 1.6s;
      animation-delay: 1.6s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-18, .job-map-box .j-item.active .j-circle .circle-01 .c2-18, .job-map-box .j-item.active .j-circle .circle-02 .c1-18, .job-map-box .j-item.active .j-circle .circle-02 .c2-18 {
      -webkit-animation: ani-c-18 1.9s infinite;
      animation: ani-c-18 1.9s infinite;
      -webkit-animation-delay: 1.7s;
      animation-delay: 1.7s;
      opacity: 0; }
    .job-map-box .j-item.active .j-circle .circle-01 .c1-19, .job-map-box .j-item.active .j-circle .circle-01 .c2-19, .job-map-box .j-item.active .j-circle .circle-02 .c1-19, .job-map-box .j-item.active .j-circle .circle-02 .c2-19 {
      -webkit-animation: ani-c-19 1.9s infinite;
      animation: ani-c-19 1.9s infinite;
      -webkit-animation-delay: 1.8s;
      animation-delay: 1.8s;
      opacity: 0; }

@-webkit-keyframes ani-c-1 {
  0% {
    opacity: 0; }
  5% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-1 {
  0% {
    opacity: 0; }
  5% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-2 {
  0% {
    opacity: 0; }
  10% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-2 {
  0% {
    opacity: 0; }
  10% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-3 {
  0% {
    opacity: 0; }
  15% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-3 {
  0% {
    opacity: 0; }
  15% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-4 {
  0% {
    opacity: 0; }
  20% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-4 {
  0% {
    opacity: 0; }
  20% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-5 {
  0% {
    opacity: 0; }
  25% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-5 {
  0% {
    opacity: 0; }
  25% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-6 {
  0% {
    opacity: 0; }
  30% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-6 {
  0% {
    opacity: 0; }
  30% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-7 {
  0% {
    opacity: 0; }
  35% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-7 {
  0% {
    opacity: 0; }
  35% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-8 {
  0% {
    opacity: 0; }
  40% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-8 {
  0% {
    opacity: 0; }
  40% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-9 {
  0% {
    opacity: 0; }
  45% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-9 {
  0% {
    opacity: 0; }
  45% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-10 {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-10 {
  0% {
    opacity: 0; }
  50% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-11 {
  0% {
    opacity: 0; }
  55% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-11 {
  0% {
    opacity: 0; }
  55% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-12 {
  0% {
    opacity: 0; }
  60% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-12 {
  0% {
    opacity: 0; }
  60% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-13 {
  0% {
    opacity: 0; }
  65% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-13 {
  0% {
    opacity: 0; }
  65% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-14 {
  0% {
    opacity: 0; }
  70% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-14 {
  0% {
    opacity: 0; }
  70% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-15 {
  0% {
    opacity: 0; }
  75% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-15 {
  0% {
    opacity: 0; }
  75% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-16 {
  0% {
    opacity: 0; }
  80% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-16 {
  0% {
    opacity: 0; }
  80% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-17 {
  0% {
    opacity: 0; }
  85% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-17 {
  0% {
    opacity: 0; }
  85% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-18 {
  0% {
    opacity: 0; }
  90% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-18 {
  0% {
    opacity: 0; }
  90% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@-webkit-keyframes ani-c-19 {
  0% {
    opacity: 0; }
  95% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

@keyframes ani-c-19 {
  0% {
    opacity: 0; }
  95% {
    opacity: 0; }
  100% {
    opacity: 0.5; } }

.form .form-group {
  margin-bottom: 8px; }
  .form .form-group label {
    font-weight: bold; }
  .form .form-group .form-control, .form .form-group select {
    border: 2px #ccc solid;
    border-radius: 4px;
    background: #D2D2D2;
    padding: 5px 10px; }
    .form .form-group .form-control:focus, .form .form-group select:focus {
      -webkit-box-shadow: 0 0 4px #0091DC;
      box-shadow: 0 0 4px #0091DC;
      border: 2px #0091DC solid; }
  .form .form-group select {
    padding: 5px 30px 5px 10px; }
  .form .form-group .select-box {
    position: relative; }
    .form .form-group .select-box:before {
      position: absolute;
      content: '\f078';
      right: 10px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      font-family: "Font Awesome 5 Pro";
      z-index: 9;
      color: #0091DC;
      pointer-events: none; }
  .form .form-group textarea {
    height: 180px;
    background: none; }
    @media (max-width: 991.98px) {
      .form .form-group textarea {
        height: 120px; } }
  .form .form-group .form-error-message {
    display: none;
    color: #CE1D00;
    text-align: right;
    font-size: 12px; }
  .form .form-group.form-error .form-control, .form .form-group.form-error select {
    border-color: #CE1D00; }
    .form .form-group.form-error .form-control:focus, .form .form-group.form-error select:focus {
      -webkit-box-shadow: none;
      box-shadow: none; }
  .form .form-group.form-error .form-error-message {
    display: block; }

.form .radio-check {
  display: block;
  position: relative; }
  .form .radio-check .form-check-inline {
    position: relative;
    padding-left: 30px;
    margin-right: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 5px; }
    @media (max-width: 991.98px) {
      .form .radio-check .form-check-inline {
        padding-left: 20px;
        margin-right: 15px; } }
  .form .radio-check input {
    display: none; }
    .form .radio-check input:checked + label::before {
      background: #B8F2FF; }
    .form .radio-check input:checked + label::after {
      background: #0091DC; }
  .form .radio-check label {
    display: inline-block; }
    .form .radio-check label::before {
      content: '';
      width: 24px;
      height: 24px;
      border: 2px solid #0091DC;
      border-radius: 50%;
      position: absolute;
      left: 0;
      top: 0;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .form .radio-check label::after {
      -webkit-transition: all .5s ease;
      -o-transition: all .5s ease;
      transition: all .5s ease;
      cursor: pointer;
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      top: 7px;
      left: 7px;
      z-index: 1;
      content: ''; }
    @media (max-width: 991.98px) {
      .form .radio-check label::before {
        top: 3px;
        width: 16px;
        height: 16px; }
      .form .radio-check label::after {
        top: 8px;
        left: 5px;
        width: 6px;
        height: 6px; } }
