@charset "UTF-8";
/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap');
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1)
      translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1)
      translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
      translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1)
      translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1)
      translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
      translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.slick-lightbox.slick-hide {
  opacity: 0;
}

.slick-lightbox.slick-hide-init {
  position: absolute;
  top: -9999px;
  opacity: 0;
}

.slick-lightbox.slick-lightbox-ie.slick-hide,
.slick-lightbox.slick-lightbox-ie.slick-hide-init {
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
  filter: alpha(opacity=0);
}

.slick-lightbox .slick-lightbox-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-lightbox
  .slick-lightbox-inner
  .slick-lightbox-slick
  .slick-lightbox-slick-item {
  text-align: center;
  overflow: hidden;
}

.slick-lightbox
  .slick-lightbox-inner
  .slick-lightbox-slick
  .slick-lightbox-slick-item:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.slick-lightbox
  .slick-lightbox-inner
  .slick-lightbox-slick
  .slick-lightbox-slick-item
  .slick-lightbox-slick-item-inner {
  display: inline-block;
  vertical-align: middle;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox
  .slick-lightbox-inner
  .slick-lightbox-slick
  .slick-lightbox-slick-item
  .slick-lightbox-slick-item-inner.iframe {
  width: 70%;
  height: 90%;
}

.slick-lightbox
  .slick-lightbox-inner
  .slick-lightbox-slick
  .slick-lightbox-slick-item
  .slick-lightbox-slick-item-inner
  .slick-lightbox-slick-img {
  margin: 0 auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox
  .slick-lightbox-inner
  .slick-lightbox-slick
  .slick-lightbox-slick-item
  .slick-lightbox-slick-item-inner
  .slick-lightbox-slick-iframe-wrap {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.slick-lightbox
  .slick-lightbox-inner
  .slick-lightbox-slick
  .slick-lightbox-slick-item
  .slick-lightbox-slick-item-inner
  .slick-lightbox-slick-iframe-wrap:before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.slick-lightbox
  .slick-lightbox-inner
  .slick-lightbox-slick
  .slick-lightbox-slick-item
  .slick-lightbox-slick-item-inner
  .slick-lightbox-slick-iframe-wrap
  .slick-lightbox-slick-caption {
  position: relative;
  top: 30px;
}

.slick-lightbox
  .slick-lightbox-inner
  .slick-lightbox-slick
  .slick-lightbox-slick-item
  .slick-lightbox-slick-item-inner
  .slick-lightbox-slick-iframe-wrap
  .slick-lightbox-slick-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slick-lightbox
  .slick-lightbox-inner
  .slick-lightbox-slick
  .slick-lightbox-slick-item
  .slick-lightbox-slick-item-inner
  .slick-lightbox-slick-caption {
  margin-top: 10px;
  color: #fff;
}

.slick-lightbox
  .slick-lightbox-inner
  .slick-lightbox-slick.slick-caption-bottom
  .slick-lightbox-slick-item
  .slick-lightbox-slick-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.slick-lightbox
  .slick-lightbox-inner
  .slick-lightbox-slick.slick-caption-dynamic
  .slick-lightbox-slick-item
  .slick-lightbox-slick-caption {
  display: block;
  text-align: center;
}

.slick-lightbox .slick-lightbox-inner .slick-lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  padding: 0;
  border: none;
}

.slick-lightbox .slick-lightbox-inner .slick-lightbox-close:focus {
  outline: none;
}

.slick-lightbox .slick-lightbox-inner .slick-lightbox-close:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  color: #fff;
  opacity: 0.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '×';
}

.slick-lightbox .slick-loading .slick-list {
  background-color: transparent;
}

.slick-lightbox .slick-prev {
  left: 15px;
}

.slick-lightbox .slick-next {
  right: 15px;
}

.awesomplete [hidden] {
  display: none;
}

.awesomplete .visually-hidden {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.awesomplete {
  display: inline-block;
  position: relative;
}

.awesomplete > input {
  display: block;
}

.awesomplete > ul {
  position: absolute;
  left: 0;
  z-index: 1;
  min-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
}

.awesomplete > ul:empty {
  display: none;
}

.awesomplete > ul {
  border-radius: 0.3em;
  margin: 0.2em 0 0;
  background: hsla(0, 0%, 100%, 0.9);
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(white),
    to(hsla(0, 0%, 100%, 0.8))
  );
  background: linear-gradient(to bottom right, white, hsla(0, 0%, 100%, 0.8));
  border: 1px solid rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0.05em 0.2em 0.6em rgba(0, 0, 0, 0.2);
  box-shadow: 0.05em 0.2em 0.6em rgba(0, 0, 0, 0.2);
  text-shadow: none;
}

@supports (transform: scale(0)) {
  .awesomplete > ul {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0.2, 0.5, 1.4);
    transition: 0.3s cubic-bezier(0.4, 0.2, 0.5, 1.4);
    -webkit-transform-origin: 1.43em -0.43em;
    transform-origin: 1.43em -0.43em;
  }

  .awesomplete > ul[hidden],
  .awesomplete > ul:empty {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    display: block;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
  }
}
/* Pointer */
.awesomplete > ul:before {
  content: '';
  position: absolute;
  top: -0.43em;
  left: 1em;
  width: 0;
  height: 0;
  padding: 0.4em;
  background: white;
  border: inherit;
  border-right: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.awesomplete > ul > li {
  position: relative;
  padding: 0.2em 0.5em;
  cursor: pointer;
}

.awesomplete > ul > li:hover {
  background: hsl(200, 40%, 80%);
  color: black;
}

.awesomplete > ul > li[aria-selected='true'] {
  background: hsl(205, 40%, 40%);
  color: white;
}

.awesomplete mark {
  background: hsl(65, 100%, 50%);
}

.awesomplete li:hover mark {
  background: hsl(68, 100%, 41%);
}

.awesomplete li[aria-selected='true'] mark {
  background: hsl(86, 100%, 21%);
  color: inherit;
}
.is-hidden-desktop {
  display: none;
}
@media (max-width: 1199.98px) {
  .is-hidden-desktop {
    display: block;
  }
}

.is-hidden-mobile {
  display: block;
}
@media (max-width: 1199.98px) {
  .is-hidden-mobile {
    display: none !important;
  }
}

.is-hidden-tablet {
  display: none;
}
@media (max-width: 575.98px) {
  .is-hidden-tablet {
    display: block;
  }
}

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

* {
  margin: 0;
}

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

html,
body {
  height: 100%;
  /* custom scrollbar */
}
html ::-webkit-scrollbar,
body ::-webkit-scrollbar {
  width: 10px;
}
html ::-webkit-scrollbar-track,
body ::-webkit-scrollbar-track {
  background-color: transparent;
}
html ::-webkit-scrollbar-thumb,
body ::-webkit-scrollbar-thumb {
  background-color: #d6dee1;
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}
html ::-webkit-scrollbar-thumb:hover,
body ::-webkit-scrollbar-thumb:hover {
  background-color: #a8bbbf;
}

body {
  font-family: 'Noto Sans TC', sans-serif, 'Kozuka';
  -webkit-transform: none;
  transform: none;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  line-height: 1.5;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  Avoid bullets
*/
ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/*
  Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

button {
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
}

.overflow-hidden {
  overflow: hidden;
}

.cursor-default {
  cursor: default;
}
.cursor-default > * {
  cursor: default;
}

.cursor-pointer {
  cursor: pointer;
}
.cursor-pointer > * {
  cursor: pointer;
}

.is-hidden-desktop {
  display: none;
}
@media (max-width: 1199.98px) {
  .is-hidden-desktop {
    display: block;
  }
}

.is-hidden-mobile {
  display: block;
}
@media (max-width: 1199.98px) {
  .is-hidden-mobile {
    display: none !important;
  }
}

.is-hidden-tablet {
  display: none;
}
@media (max-width: 575.98px) {
  .is-hidden-tablet {
    display: block;
  }
}

.float {
  -webkit-animation: float 3s ease-out infinite;
  animation: float 3s ease-out infinite;
}

@-webkit-keyframes float {
  50% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
  }
}

@keyframes float {
  50% {
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
  }
}
header {
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 30;
  transition: all 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 575.98px) {
  header {
    min-height: 60px;
  }
}
header .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 575.98px) {
  header .header-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
header .header-container .logo {
  width: 65px;
  height: 150px;
  background: url(../images/logo-big.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  transition: all 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 575.98px) {
  header .header-container .logo {
    width: 100px;
    height: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url(../images/logo-small.svg);
  }
}
header .header-container .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 16px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1199.98px) {
  header .header-container .left {
    padding-right: 0;
  }
}
@media (max-width: 575.98px) {
  header .header-container .left {
    display: none;
  }
}
header .header-container .left .header-slogan {
  width: 170px;
  height: 18.3px;
  background: url(../images/slogan.svg) no-repeat center;
}
@media (max-width: 1199.98px) {
  header .header-container .left .header-slogan {
    display: none;
  }
}
header .header-container .left .menu-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .header-container .left .menu-nav ul .menu-item {
  position: relative;
  padding: 8px 12px;
  cursor: pointer;
}
header .header-container .left .menu-nav ul .menu-item .menu-link {
  font-weight: 600;
  color: black;
  font-size: 16px;
  position: relative;
}
header
  .header-container
  .left
  .menu-nav
  ul
  .menu-item
  .menu-link
  .submenu-arrow {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-left: 5px;
  background: url(../images/icon-submenu-arrow.svg) no-repeat center;
}
header
  .header-container
  .left
  .menu-nav
  ul
  .menu-item
  .menu-link
  .submenu-arrow.is-up {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
header .header-container .left .menu-nav ul .menu-item::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  border: 1px solid #000;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%) scale(0.8);
  transform: translate(-50%, -50%) scale(0.8);
}
header .header-container .left .menu-nav ul .menu-item:hover::before {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
}
header .header-container .left .menu-nav ul .menu-item + .menu-item {
  margin-left: 10px;
}
@media (max-width: 1199.98px) {
  header .header-container .left .menu-nav ul .menu-item + .menu-item {
    margin-left: 5px;
  }
}
header .header-container .left .menu-nav ul .menu-item .submenu {
  display: none;
  max-height: 220px;
  overflow-y: auto;
}
header .header-container .left .menu-nav ul .menu-item .submenu.open {
  display: block;
  width: 100%;
  position: absolute;
  background: white;
  top: 40px;
  left: 0;
  -webkit-box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.09);
}
header .header-container .left .menu-nav ul .menu-item .submenu.open ul {
  display: block;
  padding: 0;
}
header
  .header-container
  .left
  .menu-nav
  ul
  .menu-item
  .submenu.open
  ul
  .menu-item {
  margin-left: 0;
  padding: 0;
  text-align: center;
}
header
  .header-container
  .left
  .menu-nav
  ul
  .menu-item
  .submenu.open
  ul
  .menu-item
  .menu-link {
  display: inline-block;
  padding: 12px 0px;
  width: 100%;
}
header
  .header-container
  .left
  .menu-nav
  ul
  .menu-item
  .submenu.open
  ul
  .menu-item:hover
  .menu-link {
  color: #fabf00;
}
header
  .header-container
  .left
  .menu-nav
  ul
  .menu-item
  .submenu.open
  ul
  .menu-item::before {
  display: none;
}
header .header-container .left .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 25px;
}
@media (max-width: 1199.98px) {
  header .header-container .left .search {
    display: none;
  }
}
header .header-container .left .search input {
  width: 170px;
  height: 32px;
  border: 1px solid rgb(23, 23, 23);
  padding: 0 11px;
  line-height: 32px;
  background: transparent;
}
header .header-container .left .search input::-webkit-input-placeholder {
  font-size: 14px;
  color: rgb(52, 52, 50);
}
header .header-container .left .search input::-moz-placeholder {
  font-size: 14px;
  color: rgb(52, 52, 50);
}
header .header-container .left .search input:-ms-input-placeholder {
  font-size: 14px;
  color: rgb(52, 52, 50);
}
header .header-container .left .search input::-ms-input-placeholder {
  font-size: 14px;
  color: rgb(52, 52, 50);
}
header .header-container .left .search input::placeholder {
  font-size: 14px;
  color: rgb(52, 52, 50);
}
header .header-container .left .search > button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: black;
  width: 34px;
  height: 32px;
  position: relative;
  left: -1px;
  pointer-events: none;
}
header .header-container .left .search > button img {
  margin: 0 auto;
}
header .header-container .phone-menu {
  display: none;
  background: white;
  position: fixed;
  width: 100%;
  top: 50px;
  left: 0;
  padding: 20px 0;
  max-height: calc(100vh - 50px);
  overflow: auto;
  -webkit-box-shadow: 10px 10px 20px rgba(74, 68, 62, 0.15);
  box-shadow: 10px 10px 20px rgba(74, 68, 62, 0.15);
}
header .header-container .phone-menu ul {
  padding: 0;
}
header .header-container .phone-menu ul .menu-item {
  padding: 20px 0;
  position: relative;
  text-align: center;
}
header .header-container .phone-menu ul .menu-item .menu-link {
  color: black;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
}
header .header-container .phone-menu ul .menu-item .menu-link .submenu-arrow {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-left: 5px;
  background: url(../images/icon-submenu-arrow.svg) no-repeat center;
}
header
  .header-container
  .phone-menu
  ul
  .menu-item
  .menu-link
  .submenu-arrow.is-up {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
header .header-container .phone-menu ul .menu-item + .menu-item::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 1px;
  background-color: #fde28c;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
header .header-container .phone-menu ul .menu-item .phone-submenu {
  display: none;
  width: 60%;
  margin: 0 auto;
  margin-top: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
}
header .header-container .phone-menu ul .menu-item .phone-submenu .menu-item {
  padding: 15px 0;
}
header
  .header-container
  .phone-menu
  ul
  .menu-item
  .phone-submenu
  .menu-item
  + .menu-item::before {
  background-color: transparent;
}
header
  .header-container
  .phone-menu
  ul
  .menu-item
  .phone-submenu
  .menu-item
  .menu-link {
  color: #fabf00;
}
header.at-top {
  -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
  background: white;
  min-height: 60px;
}
header.at-top .header-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header.at-top .header-container .logo {
  width: 100px;
  height: 25px;
  background: url(../images/logo-small.svg);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
header.at-top .header-container .header-slogan {
  background: url(../images/slogan-primary.svg);
}

header.at-top #fundraisingLink {
  color: #fabf00;
}

footer {
  padding-bottom: 115px;
  background: white;
  position: relative;
  top: -2px;
}
@media (max-width: 1199.98px) {
  footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  footer {
    padding-bottom: 70px;
  }
}
footer .container {
  width: 85%;
  max-width: 1380px;
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  footer .container {
    width: 70%;
  }
}
@media (max-width: 575.98px) {
  footer .container {
    width: 90%;
  }
}
footer .container .slogan {
  margin-bottom: 65px;
  width: 470px;
  height: 50px;
  background: url(../images/slogan-primary.svg) no-repeat center center/contain;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  footer .container .slogan {
    width: 360px;
    height: 36px;
  }
}
@media (max-width: 575.98px) {
  footer .container .slogan {
    width: 240px;
    height: 24px;
  }
}
footer .container .column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1199.98px) {
  footer .container .column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
footer .container .column .contact {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50%;
}
@media (max-width: 1199.98px) {
  footer .container .column .contact {
    width: 100%;
  }
}
footer .container .column .contact .title {
  margin-bottom: 30px;
}
footer .container .column .contact .title h5 {
  font-size: 22px;
  font-weight: bold;
  font-family: 'Kozuka';
}
@media (max-width: 575.98px) {
  footer .container .column .contact .title h5 {
    font-size: 20px;
  }
}
@media (max-width: 575.98px) {
  footer .container .column .contact .title h5 {
    font-size: 18px;
  }
}
footer .container .column .contact .title h5 span {
  color: #fabf00;
  margin-left: 5px;
}
footer .container .column .contact .contact-item-group .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 30px;
}
@media (max-width: 575.98px) {
  footer .container .column .contact .contact-item-group .contact-item {
    line-height: normal;
    margin-top: 10px;
  }
}
footer .container .column .contact .contact-item-group .contact-item .icon {
  display: inline-block;
  width: 18px;
  margin-right: 15px;
}
@media (max-width: 575.98px) {
  footer .container .column .contact .contact-item-group .contact-item .icon {
    padding: 5px 0;
  }
}
footer .container .column .contact .contact-item-group .contact-item .icon img {
  margin: 0 auto;
}
footer .container .column .contact .contact-item-group .contact-item p {
  display: inline-block;
}
footer .container .column .contact .contact-item-group .contact-item-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer
  .container
  .column
  .contact
  .contact-item-group
  .contact-item-col
  .contact-item
  + .contact-item {
  margin-top: 0;
  margin-left: 30px;
}
@media (max-width: 575.98px) {
  footer
    .container
    .column
    .contact
    .contact-item-group
    .contact-item-col
    .contact-item
    + .contact-item {
    margin-top: 10px;
  }
}
footer .container .column .branch {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50%;
}
@media (max-width: 1199.98px) {
  footer .container .column .branch {
    width: 100%;
    margin-top: 50px;
  }
}
footer .container .column .branch .title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 45px;
  font-family: 'Kozuka';
}
@media (max-width: 1199.98px) {
  footer .container .column .branch .title {
    margin-bottom: 25px;
  }
}
footer .container .column .branch .branch-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  footer .container .column .branch .branch-group {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
footer .container .column .branch .branch-group .row {
  line-height: 30px;
  font-size: 16px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  footer .container .column .branch .branch-group .row + .row {
    margin-left: 10%;
  }
}
footer .container .column .branch .branch-group .row a {
  position: relative;
  color: black;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
footer .container .column .branch .branch-group .row a::after {
  content: '';
  position: absolute;
  top: 100%;
  height: 1px;
  width: 0%;
  left: 0;
  background-color: #fabf00;
  -webkit-transition: 0.5s ease all 0s;
  transition: 0.5s ease all 0s;
}
footer .container .column .branch .branch-group .row a:hover::after {
  width: 100%;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
footer .container .column .branch .branch-group .row a p {
  width: auto;
}
footer.in-candidate {
  background: #fabf00;
  padding-top: 160px;
}
@media (max-width: 575.98px) {
  footer.in-candidate {
    padding-top: 90px;
  }
}
footer.in-candidate .container .slogan {
  background: url(../images/slogan.svg) no-repeat center center/contain;
}
footer.in-candidate .container .column .contact .title h5 span {
  color: white;
}
footer.in-candidate .container .column .branch .branch-group .row a::after {
  background-color: white;
}

.slogan-background {
  position: relative;
  overflow: hidden;
  background: white;
}
.slogan-background img {
  position: absolute;
  right: -170px;
  top: -340px;
  z-index: 2;
  width: 800px;
}
@media (max-width: 1199.98px) {
  .slogan-background img {
    right: -400px;
  }
}
.slogan-background .triangle-block {
  position: relative;
  height: 170px;
  background-color: #fef2cc;
  background-image: url(../images/bg-deco-wave-left-white.svg);
  background-position: left -170px top 0;
}
@media (max-width: 1199.98px) {
  .slogan-background .triangle-block {
    height: 100px;
    background-position: left -330px top 0;
  }
}
.slogan-background .triangle-block .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  border-width: 0 685px 170px 0;
  border-color: transparent white transparent transparent;
  top: 0;
  right: 0;
}
@media (max-width: 1199.98px) {
  .slogan-background .triangle-block .triangle {
    border-width: 0 400px 100px 0;
  }
}
@media (max-width: 575.98px) {
  .slogan-background .triangle-block .triangle {
    border-width: 0 180px 40px 0;
  }
}
.slogan-background .triangle-block .anti-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  z-index: 3;
  border-width: 170px 0 0 685px;
  border-color: transparent transparent transparent #fef2cc;
  top: 0;
  right: 0;
}
@media (max-width: 1199.98px) {
  .slogan-background .triangle-block .anti-triangle {
    border-width: 100px 0 0 400px;
  }
}
@media (max-width: 575.98px) {
  .slogan-background .triangle-block .anti-triangle {
    border-width: 40px 0 0 180px;
  }
}

.donate-backgroud {
  position: relative;
  overflow: hidden;
  background: #fabf00;
}
.donate-backgroud img {
  position: absolute;
  right: -170px;
  top: -500px;
  z-index: 2;
  width: 800px;
}
@media (max-width: 1199.98px) {
  .donate-backgroud img {
    right: -400px;
  }
}
.donate-backgroud .triangle-block {
  position: relative;
  height: 170px;
  background-color: white;
}
@media (max-width: 1199.98px) {
  .donate-backgroud .triangle-block {
    height: 100px;
  }
}
@media (max-width: 575.98px) {
  .donate-backgroud .triangle-block {
    height: 40px;
  }
}
.donate-backgroud .triangle-block .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  border-width: 0 685px 170px 0;
  border-color: transparent #fabf00 transparent transparent;
  top: -1px;
  right: 0;
}
@media (max-width: 1199.98px) {
  .donate-backgroud .triangle-block .triangle {
    border-width: 0 400px 100px 0;
  }
}
@media (max-width: 575.98px) {
  .donate-backgroud .triangle-block .triangle {
    border-width: 0 180px 40px 0;
  }
}
.donate-backgroud .triangle-block .anti-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  z-index: 3;
  border-width: 170px 0 0 685px;
  border-color: transparent transparent transparent white;
  top: 0;
  right: 0;
}
@media (max-width: 1199.98px) {
  .donate-backgroud .triangle-block .anti-triangle {
    border-width: 100px 0 0 400px;
  }
}
@media (max-width: 575.98px) {
  .donate-backgroud .triangle-block .anti-triangle {
    border-width: 40px 0 0 180px;
  }
}

.candidate-menu-background {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}
.candidate-menu-background img {
  position: absolute;
  right: -170px;
  top: -340px;
  z-index: 2;
  width: 800px;
}
@media (max-width: 1199.98px) {
  .candidate-menu-background img {
    right: -400px;
  }
}
.candidate-menu-background .triangle-block {
  position: relative;
  height: 170px;
  background-color: white;
}
@media (max-width: 1199.98px) {
  .candidate-menu-background .triangle-block {
    height: 100px;
  }
}
.candidate-menu-background .triangle-block .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  border-width: 0 685px 170px 0;
  border-color: transparent #f8f8f8 transparent transparent;
  top: 0;
  right: 0;
}
@media (max-width: 1199.98px) {
  .candidate-menu-background .triangle-block .triangle {
    border-width: 0 400px 100px 0;
  }
}
@media (max-width: 575.98px) {
  .candidate-menu-background .triangle-block .triangle {
    border-width: 0 180px 40px 0;
  }
}
.candidate-menu-background .triangle-block .anti-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  z-index: 3;
  border-width: 170px 0 0 685px;
  border-color: transparent transparent transparent white;
  top: 0;
  right: 0;
}
@media (max-width: 1199.98px) {
  .candidate-menu-background .triangle-block .anti-triangle {
    border-width: 100px 0 0 400px;
  }
}
@media (max-width: 575.98px) {
  .candidate-menu-background .triangle-block .anti-triangle {
    border-width: 40px 0 0 180px;
  }
}

.o-side-content {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0deg, 0%, 100%, 0.8);
  z-index: 100;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.o-side-content__main {
  overflow: auto;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: 920px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #f8f8f8;
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-box-shadow: 0 2px 8px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 8px 8px rgba(0, 0, 0, 0.08);
}
.o-side-content__main .a-popup-close {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 95px;
  padding: 10px 30px;
  z-index: 1;
  width: 100%;
  background-color: #f8f8f8;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .o-side-content__main .a-popup-close {
    height: auto;
    padding: 20px;
  }
}
.o-side-content__main .a-popup-close:hover img {
  -webkit-transform: translate(5px, 0);
  transform: translate(5px, 0);
}
.o-side-content__main .a-popup-close img {
  margin-right: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 30px;
}
.o-side-content__content {
  padding: 100px 70px 20px;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
@media (max-width: 575.98px) {
  .o-side-content__content {
    padding: 70px 20px 50px;
  }
}
.o-side-content.-open {
  opacity: 1;
  pointer-events: all;
}
.o-side-content.-open .o-side-content__main {
  -webkit-transform: none;
  transform: none;
  -webkit-transition: -webkit-transform 0.3s ease 0.2s;
  transition: -webkit-transform 0.3s ease 0.2s;
  transition: transform 0.3s ease 0.2s;
  transition: transform 0.3s ease 0.2s, -webkit-transform 0.3s ease 0.2s;
}
.o-side-content .m-policy-content__intro {
  margin-bottom: 45px;
}
.o-side-content .m-policy-content__heading {
  font-size: 32px;
  font-weight: 700;
}
.o-side-content .m-policy-content__subheading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  color: #fabf00;
}
.o-side-content .m-policy-content__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: normal;
}
.o-side-content .m-policy-content__split-line {
  width: 100%;
  margin: 45px auto 45px;
}
.o-side-content
  .m-policy-content__split-line
  .callout-menu
  .menu-item-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .o-side-content
    .m-policy-content__split-line
    .callout-menu
    .menu-item-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 10px;
  }
}
@media (max-width: 575.98px) {
  .o-side-content
    .m-policy-content__split-line
    .callout-menu
    .menu-item-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.o-side-content
  .m-policy-content__split-line
  .callout-menu
  .menu-item-container
  a {
  min-width: 120px;
  padding: 8px 8px;
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
  border: 1.5px solid #fabf00;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: black;
  font-size: 16px;
}
@media (max-width: 1199.98px) {
  .o-side-content
    .m-policy-content__split-line
    .callout-menu
    .menu-item-container
    a {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .o-side-content
    .m-policy-content__split-line
    .callout-menu
    .menu-item-container
    a {
    width: 90px;
    padding: 8px 0;
    margin: 5px 0;
    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;
  }
}
.o-side-content
  .m-policy-content__split-line
  .callout-menu
  .menu-item-container
  a
  span {
  display: block;
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
}
.o-side-content
  .m-policy-content__split-line
  .callout-menu
  .menu-item-container
  a
  span
  br {
  display: none;
}
@media (max-width: 575.98px) {
  .o-side-content
    .m-policy-content__split-line
    .callout-menu
    .menu-item-container
    a
    span
    br {
    display: block;
  }
}
.o-side-content
  .m-policy-content__split-line
  .callout-menu
  .menu-item-container
  a:hover {
  background: #fabf00;
  color: white;
  font-weight: bold;
}
.o-side-content
  .m-policy-content__split-line
  .callout-menu
  .menu-item-container
  a
  + a {
  margin-left: 15px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .o-side-content
    .m-policy-content__split-line
    .callout-menu
    .menu-item-container
    a
    + a {
    margin-left: 0;
  }
}
@media (max-width: 575.98px) {
  .o-side-content
    .m-policy-content__split-line
    .callout-menu
    .menu-item-container
    a
    + a {
    margin-left: 10px;
  }
}
.o-side-content .m-policy-content__callout {
  margin-top: 60px;
}
@media (max-width: 575.98px) {
  .o-side-content .m-policy-content__callout {
    margin-top: 30px;
  }
}
.o-side-content .m-policy-content .a-policy-callout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 575.98px) {
  .o-side-content .m-policy-content .a-policy-callout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.o-side-content .m-policy-content .a-policy-callout__feature {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-size: 70px;
  color: #f2b012;
  font-weight: 900;
  margin-right: 20px;
  width: 160px;
}
@media (max-width: 575.98px) {
  .o-side-content .m-policy-content .a-policy-callout__feature {
    font-size: 32px;
    margin-right: 0;
    width: 100%;
  }
}
.o-side-content .m-policy-content .a-policy-callout__feature .power-block {
  background: #f2b012;
  padding: 15px 15px;
  width: 125px;
  text-align: center;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  -webkit-transform: skew(-7deg);
  transform: skew(-7deg);
  position: relative;
}
@media (max-width: 575.98px) {
  .o-side-content .m-policy-content .a-policy-callout__feature .power-block {
    margin-bottom: 15px;
  }
}
.o-side-content
  .m-policy-content
  .a-policy-callout__feature
  .power-block::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 32px 0 0;
  border-color: #f2b012 transparent transparent transparent;
  position: absolute;
  top: 0;
  right: -28px;
}
@media (max-width: 575.98px) {
  .o-side-content
    .m-policy-content
    .a-policy-callout__feature
    .power-block::after {
    border-width: 16px 32px 0 0;
    right: -28px;
  }
}
.o-side-content .m-policy-content .a-policy-callout__feature .power-block span {
  display: block;
  -webkit-transform: skew(7deg);
  transform: skew(7deg);
  line-height: 40px;
  letter-spacing: 2px;
  color: white;
  font-size: 30px;
}
@media (max-width: 575.98px) {
  .o-side-content
    .m-policy-content
    .a-policy-callout__feature
    .power-block
    span {
    font-size: 20px;
    line-height: 27px;
  }
}
@media (max-width: 575.98px) {
  .o-side-content
    .m-policy-content
    .a-policy-callout__feature
    .power-block
    span
    br {
    display: none;
  }
}
.o-side-content .m-policy-content .a-policy-callout__unit {
  font-size: 25px;
  margin-left: 5px;
}
@media (max-width: 575.98px) {
  .o-side-content .m-policy-content .a-policy-callout__unit {
    font-size: 22px;
  }
}
.o-side-content .m-policy-content .a-policy-callout__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-left: 15px;
}
@media (max-width: 575.98px) {
  .o-side-content .m-policy-content .a-policy-callout__main {
    margin-left: 0;
  }
}
.o-side-content .m-policy-content .a-policy-callout__title {
  font-size: 24px;
  font-weight: 700;
  color: #f2b012;
}
@media (max-width: 575.98px) {
  .o-side-content .m-policy-content .a-policy-callout__title {
    font-size: 20px;
  }
}
.o-side-content .m-policy-content .a-policy-callout__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 10px;
  text-align: justify;
}
.o-side-content .m-policy-content .m-editor {
  color: black;
}
.o-side-content .m-policy-content .m-editor * {
  letter-spacing: 0.5px;
  line-height: 1.5;
}
.o-side-content .m-policy-content .m-editor span {
  -webkit-box-shadow: inset 0 -10px #fabf00;
  box-shadow: inset 0 -10px #fabf00;
}
.o-side-content .m-policy-content .m-editor strong {
  font-weight: 700;
  color: #fabf00;
}
.o-side-content .m-policy-content .m-editor ul {
  margin: 20px auto;
  padding-left: 30px;
}
.o-side-content .m-policy-content .m-editor ul li {
  position: relative;
}
.o-side-content .m-policy-content .m-editor ul li::before {
  content: '';
  left: -30px;
  top: 8px;
  display: inline-block;
  position: absolute;
  background: #000;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin-right: 20px;
}
.o-side-content .m-policy-content .m-editor ul.has-title {
  margin-top: 10px;
}

#hoardingTax .a-policy-callout__feature,
#industryAreaHype .a-policy-callout__feature,
#studentDormitory .a-policy-callout__feature,
#socialHousing .a-policy-callout__feature,
#actualSellingPrice .a-policy-callout__feature {
  width: 190px;
}
#hoardingTax .power-block,
#industryAreaHype .power-block,
#studentDormitory .power-block,
#socialHousing .power-block,
#actualSellingPrice .power-block {
  width: 160px;
}

@media (max-width: 575.98px) {
  #policeFireMedicalRight .power-block {
    width: 180px;
  }
}

.section-title {
  margin-bottom: 40px;
}
@media (max-width: 1199.98px) {
  .section-title {
    margin-bottom: 10px;
  }
}
.section-title h2 {
  display: inline-block;
  font-size: 64px;
  font-weight: bold;
  font-family: 'Kozuka';
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .section-title h2 {
    font-size: 54px;
  }
}
@media (max-width: 575.98px) {
  .section-title h2 {
    font-size: 32px;
  }
}
.section-title h2::after {
  content: '';
  position: absolute;
  top: 60%;
  height: 20px;
  width: 0%;
  left: 0;
  background-color: #fabf00;
  -webkit-transition: 0.5s ease all 0s;
  transition: 0.5s ease all 0s;
  z-index: -1;
}
.section-title h2:hover::after {
  width: 100%;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.section-title h2.hover-is-white::after {
  background-color: white;
}

.section-subtitle {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 575.98px) {
  .section-subtitle {
    position: relative;
  }
}
.section-subtitle .text h2 {
  font-size: 98px;
  margin-bottom: 15px;
  line-height: 1;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
@media (max-width: 1199.98px) {
  .section-subtitle .text h2 {
    font-size: 100px;
  }
}
@media (max-width: 575.98px) {
  .section-subtitle .text h2 {
    font-size: 80px;
  }
}
.section-subtitle .text .chinese {
  font-size: 30px;
  /* letter-spacing: 23px; */
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
@media (max-width: 1199.98px) {
  .section-subtitle .text .chinese {
    font-size: 30px;
    /* letter-spacing: 30px; */
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .section-subtitle .text .chinese {
    font-size: 22px;
    letter-spacing: 1px;
  }
}
.section-subtitle .text .english {
  font-size: 30px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
@media (max-width: 575.98px) {
  .section-subtitle .text .english {
    font-size: 18px;
  }
}
@media (max-width: 575.98px) {
  .section-subtitle .icon {
    position: absolute;
    top: -70px;
    right: 9px;
  }
}
.section-subtitle .icon img {
  width: 140px;
}
@media (max-width: 1199.98px) {
  .section-subtitle .icon img {
    width: 140px;
  }
}
@media (max-width: 575.98px) {
  .section-subtitle .icon img {
    width: 100px;
  }
}

button.is-primary {
  background-color: #fabf00;
  color: white;
  font-size: 16px;
  padding: 10px 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
button.is-primary:hover {
  -webkit-transform: skew(-15deg);
  transform: skew(-15deg);
}
button.is-primary:hover span {
  display: block;
  -webkit-transform: skew(15deg);
  transform: skew(15deg);
}
button.donate-btn {
  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;
  background: white;
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
  -webkit-box-shadow: 10px 10px 20px 0 rgba(249, 173, 72, 0.7);
  box-shadow: 10px 10px 20px 0 rgba(249, 173, 72, 0.7);
  padding: 10px 25px;
  position: relative;
  min-height: 107px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

button.donate-btn-black {
  background: #000;
}

@media (max-width: 575.98px) {
  button.donate-btn {
    padding: 8px 20px;
    min-height: 80px;
  }
}
button.donate-btn:hover {
  -webkit-transform: skew(-10deg) translate(-15px, -15px);
  transform: skew(-10deg) translate(-15px, -15px);
  -webkit-box-shadow: 20px 20px 40px 0 rgba(200, 135, 51, 0.5);
  box-shadow: 20px 20px 40px 0 rgba(200, 135, 51, 0.5);
}
button.donate-btn a {
  color: black;
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
button.donate-btn-black a {
  color: #fabf00;
}

button.donate-btn span {
  font-size: 22px;
  font-weight: bold;
  font-family: 'Kozuka';
}
@media (max-width: 575.98px) {
  button.donate-btn span {
    font-size: 18px;
  }
}

button.donate-btn::after {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 22px 0 0;
  border-color: white transparent transparent transparent;
}
button.donate-btn-black::after {
  border-color: #000 transparent transparent transparent;
}
button.social-btn {
  padding: 10px;
  position: relative;
}
button.social-btn img {
  width: 24px;
  height: 24px;
}
button.social-btn + .social-btn {
  margin-left: 20px;
}
button.social-btn::before {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease,
    -webkit-transform 0.3s ease;
  border: 1px solid #000;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate(-50%, -50%) scale(0.8);
  transform: translate(-50%, -50%) scale(0.8);
}
button.social-btn:hover::before {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 1;
}
button.phone-menu-toggle {
  display: none;
}
@media (max-width: 575.98px) {
  button.phone-menu-toggle {
    display: block;
    width: 30px;
    height: 30px;
    background: url(../images/icon-menu-toggle.svg) no-repeat center;
  }
  button.phone-menu-toggle.close {
    background: url(../images/icon-close.svg) no-repeat center;
  }
}
button.to-top {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  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;
  background: rgba(255, 248, 219, 0.9);
  position: fixed;
  bottom: 100px;
  right: 20px;
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}
button.to-top img {
  width: 15px;
}
button.to-top:hover {
  background-color: rgba(251, 243, 208, 0.9);
}
@media (max-width: 575.98px) {
  button.to-top {
    width: 45px;
    height: 45px;
    bottom: 70px;
    right: 15px;
    border-radius: 10px;
  }
  button.to-top img {
    width: 12px;
  }
}

.social-btn-group {
  position: fixed;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 20px;
  z-index: 10;
}
.social-btn-group.in-page {
  background: rgba(252, 249, 237, 0.9);
  border-top-left-radius: 20px;
  -webkit-box-shadow: -10px -10px 20px rgba(44, 42, 40, 0.05);
  box-shadow: -10px -10px 20px rgba(44, 42, 40, 0.05);
}
@media (max-width: 575.98px) {
  .social-btn-group.in-page {
    width: 100%;
    border-top-right-radius: 20px;
    padding: 10px 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .social-btn-group.in-page .social-btn {
    margin-left: 0;
  }
}

.slider {
  padding-left: 15px;
}
@media (max-width: 1199.98px) {
  .slider .slider-container .slick-slide {
    margin: 0 9px;
  }
}
.slider .slider-container .slick-list .slick-track {
  padding: 10px 0;
}
.slider .slider-container .slick-list .slick-track .slider-item {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 700px;
}
.slider .slider-container .slick-list .slick-track .slider-item .video {
  cursor: pointer;
  -webkit-filter: drop-shadow(5px 5px 10px rgba(255, 168, 37, 0.3));
  filter: drop-shadow(5px 5px 10px rgba(255, 168, 37, 0.3));
  width: 480px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slider .slider-container .slick-list .slick-track .slider-item .video img,
.slider .slider-container .slick-list .slick-track .slider-item .video iframe {
  width: 480px;
  height: 320px;
}
.slider .slider-container .slick-list .slick-track .slider-item .video iframe {
  pointer-events: none;
}
@media (max-width: 1199.98px) {
  .slider .slider-container .slick-list .slick-track .slider-item .video {
    width: 100%;
    height: auto;
  }
  .slider .slider-container .slick-list .slick-track .slider-item .video img {
    width: 100%;
    height: auto !important;
    max-height: 270px;
  }
  .slider
    .slider-container
    .slick-list
    .slick-track
    .slider-item
    .video
    iframe {
    width: 100%;
    height: 280px;
  }
}
.slider .slider-container .slick-list .slick-track .slider-item .video:hover {
  -webkit-transform: translate(-10px, -10px);
  transform: translate(-10px, -10px);
  -webkit-filter: drop-shadow(5px 5px 10px rgba(255, 168, 37, 0.4));
  filter: drop-shadow(5px 5px 10px rgba(255, 168, 37, 0.4));
}
@media (max-width: 1199.98px) {
  .slider .slider-container .slick-list .slick-track .slider-item .video:hover {
    -webkit-transform: none;
    transform: none;
  }
}
.slider .slider-container .slick-list .slick-track .slider-item .name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 24px;
}
@media (max-width: 1199.98px) {
  .slider .slider-container .slick-list .slick-track .slider-item .name {
    text-align: center;
  }
}
.slider .slider-control {
  text-align: center;
  margin-top: 80px;
}
.slider .slider-control .slider-btn {
  width: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slider .slider-control .slider-btn svg g path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 575.98px) {
  .slider .slider-control .slider-btn {
    width: 40px;
  }
}
.slider .slider-control .slider-btn + .slider-btn {
  margin-left: 100px;
}
@media (max-width: 575.98px) {
  .slider .slider-control .slider-btn + .slider-btn {
    margin-left: 80px;
  }
}
.slider .slider-control .slider-btn:hover svg g path {
  fill: #fabf00;
  stroke: #fabf00;
}

.slick-lightbox-slick-item-inner.is-video {
  min-width: 50%;
}
.slick-lightbox-slick-item-inner.is-video video {
  width: 100%;
}

.banner-slider .slider-item.iframe {
  cursor: pointer;
}
.banner-slider .slider-item.iframe iframe {
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  margin-top: -60px;
  height: 56.4971751412vw;
}
@media (max-width: 1199.98px) {
  .banner-slider .slider-item.iframe iframe {
    margin-top: 0px;
  }
}

.home-video-area {
  padding-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  background: white;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.home-video-area .iframe-thumbnail {
  width: 45%;
  cursor: pointer;
}
@media (max-width: 1199.98px) {
  .home-video-area .iframe-thumbnail {
    width: 100%;
    padding: 0 30px;
  }
}
.home-video-area .iframe-thumbnail iframe {
  pointer-events: none;
  width: 100%;
  height: 40vh;
}
@media (max-width: 575.98px) {
  .home-video-area .iframe-thumbnail iframe {
    max-height: 250px;
  }
}

.tippy-box {
  background: transparent;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.tippy-box .tippy-arrow {
  display: none;
}
.tippy-box .taiwan-hover-block {
  position: absolute;
  -webkit-box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  left: 0;
  top: 20%;
  background: #fabf00;
  width: 240px;
  -webkit-transform: skew(-7deg);
  transform: skew(-7deg);
}
@media (max-width: 1199.98px) {
  .tippy-box .taiwan-hover-block {
    display: none;
  }
}
.tippy-box .taiwan-hover-block .block-relative {
  position: relative;
  padding: 24px;
}
.tippy-box .taiwan-hover-block .block-relative .container {
  width: 100%;
  -webkit-transform: skew(7deg);
  transform: skew(7deg);
  padding: 0;
}
.tippy-box .taiwan-hover-block .block-relative .container .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.tippy-box .taiwan-hover-block .block-relative .container .title h5 {
  font-size: 30px;
  color: black;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
.tippy-box .taiwan-hover-block .block-relative .container .title span {
  color: white;
  font-size: 30px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  margin-left: 15px;
  display: inline-block;
}
.tippy-box .taiwan-hover-block .block-relative .container .item-group {
  margin-top: 20px;
}
.tippy-box .taiwan-hover-block .block-relative .container .item-group .item {
  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;
}
.tippy-box
  .taiwan-hover-block
  .block-relative
  .container
  .item-group
  .item
  .icon {
  width: 24px;
  height: 14px;
  background: url(../images/deco-power-arrow-white.svg);
}
.tippy-box .taiwan-hover-block .block-relative .container .item-group .item p {
  margin: 0 15px;
  font-size: 18px;
  color: black;
  font-weight: 500;
}
.tippy-box
  .taiwan-hover-block
  .block-relative
  .container
  .item-group
  .item
  span {
  font-size: 16px;
  background: white;
  color: black;
  padding: 4px 5px;
  font-weight: 500;
}
.tippy-box
  .taiwan-hover-block
  .block-relative
  .container
  .item-group
  .item
  + .item {
  margin-top: 5px;
}
.tippy-box .taiwan-hover-block .block-relative::after {
  content: '';
  position: absolute;
  top: 0;
  right: -25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 28px 0 0;
  border-color: #fabf00 transparent transparent transparent;
}

.name-card {
  position: absolute;
  bottom: 0;
  left: 10px;
}
.name-card .card-container {
  position: relative;
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}
.name-card .card-container .card-top {
  background: #fabf00;
  width: 190px;
  padding: 10px 20px 7px 20px;
}
.name-card .card-container .card-top .text {
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
}
.name-card .card-container .card-top .text .name {
  font-weight: bold;
  font-size: 26px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  color: black;
}
@media (max-width: 1199.98px) {
  .name-card .card-container .card-top .text .name {
    font-size: 22px;
  }
}
.name-card .card-container .card-top .text .type {
  font-size: 16px;
  color: black;
}
.name-card .card-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 22px 0 0;
  border-color: #fabf00 transparent transparent transparent;
}
.name-card .card-container .card-bottom {
  position: absolute;
  background: black;
  color: white;
  padding: 10px 20px 8px 20px;
  width: 190px;
}
.name-card .card-container .card-bottom .text {
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
  padding-left: 16px;
}
.name-card .card-container .card-bottom .text .region-no {
  font-size: 18px;
  font-weight: bold;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
.name-card .card-container .card-bottom .text .region-detailed {
  font-size: 16px;
}

.power-block {
  display: inline-block;
  background: black;
  color: white;
  text-align: center;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  -webkit-transform: skew(-7deg);
  transform: skew(-7deg);
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.power-block p {
  -webkit-transform: skew(7deg);
  transform: skew(7deg);
}
.power-block::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 16px 0 0;
  border-color: black transparent transparent transparent;
  position: absolute;
  top: 0;
  right: -14px;
}
@media (max-width: 575.98px) {
  .power-block::after {
    border-width: 8px 15px 0 0;
    right: -15px;
  }
}

.index-page {
  overflow-x: hidden;
}
.index-page .banner {
  max-height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.index-page section {
  position: relative;
}
.index-page section.slogan {
  background-color: transparent;
  z-index: 3;
}
.index-page section.slogan .container {
  width: 85%;
  max-width: 1380px;
  margin: 0 auto;
  padding-top: 200px;
  padding-bottom: 100px;
}
@media (max-width: 1199.98px) {
  .index-page section.slogan .container {
    width: 90%;
    padding-top: 150px;
  }
}
@media (max-width: 575.98px) {
  .index-page section.slogan .container {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.index-page section.slogan .container .slogan-content-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin: 0 -30px;
}
@media (max-width: 1199.98px) {
  .index-page section.slogan .container .slogan-content-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.index-page section.slogan .container .slogan-content-row .slogan-content-col {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50%;
  padding: 0 30px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.slogan
    .container
    .slogan-content-row
    .slogan-content-col {
    width: 100%;
    padding: 20px 30px;
  }
}
@media (max-width: 575.98px) {
  .index-page
    section.slogan
    .container
    .slogan-content-row
    .slogan-content-col {
    padding: 10px 30px;
  }
  .index-page
    section.slogan
    .container
    .slogan-content-row
    .slogan-content-col
    + .slogan-content-col {
    margin-top: 20px;
  }
}
.index-page
  section.slogan
  .container
  .slogan-content-row
  .slogan-content-col
  h3 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1199.98px) {
  .index-page
    section.slogan
    .container
    .slogan-content-row
    .slogan-content-col
    h3 {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  .index-page
    section.slogan
    .container
    .slogan-content-row
    .slogan-content-col
    h3 {
    font-size: 18px;
    text-align: justify;
  }
  .index-page
    section.slogan
    .container
    .slogan-content-row
    .slogan-content-col
    h3
    br {
    display: none;
  }
}
.index-page
  section.slogan
  .container
  .slogan-content-row
  .slogan-content-col
  h3:hover {
  color: #f2b012;
}
.index-page
  section.slogan
  .container
  .slogan-content-row
  .slogan-content-col
  h3.mt-minus35 {
  margin-top: -41px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.slogan
    .container
    .slogan-content-row
    .slogan-content-col
    h3.mt-minus35 {
    margin-top: 0;
  }
}
.index-page
  section.slogan
  .container
  .slogan-content-row
  .slogan-content-col
  p {
  font-size: 16px;
  text-align: justify;
}
.index-page
  section.slogan
  .container
  .slogan-content-row
  .slogan-content-col
  p.mt-30 {
  margin-top: 30px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.slogan
    .container
    .slogan-content-row
    .slogan-content-col
    p.mt-30 {
    margin-top: 15px;
  }
}
.index-page section.common-politics {
  background-color: #fef2cc;
  background-image: url(../images/bg-deco-wave-left-white.svg);
}
@media (max-width: 1199.98px) {
  .index-page section.common-politics {
    background-position: left -240px top 0;
  }
}
.index-page section.common-politics .container {
  width: 85%;
  max-width: 1380px;
  margin: 0 auto;
  padding-bottom: 30px;
  position: relative;
  top: -30px;
  z-index: 4;
}
@media (max-width: 1199.98px) {
  .index-page section.common-politics .container {
    width: 90%;
    top: 0;
    padding-bottom: 50px;
  }
}
.index-page section.common-politics .container .common-politics-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1199.98px) {
  .index-page section.common-politics .container .common-politics-row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.index-page
  section.common-politics
  .container
  .common-politics-row
  .common-politics-col
  .black-block {
  background: url(../images/black-block.svg);
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 115px;
  height: 78px;
  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;
}
@media (max-width: 575.98px) {
  .index-page
    section.common-politics
    .container
    .common-politics-row
    .common-politics-col
    .black-block {
    background-size: 100%;
    width: 100px;
  }
}
.index-page
  section.common-politics
  .container
  .common-politics-row
  .common-politics-col
  .black-block
  p {
  color: white;
  font-weight: bold;
  font-size: 20px;
  padding-right: 25px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
@media (max-width: 575.98px) {
  .index-page
    section.common-politics
    .container
    .common-politics-row
    .common-politics-col
    .black-block
    p {
    font-size: 18px;
    padding-right: 20px;
  }
}
.index-page
  section.common-politics
  .container
  .common-politics-row
  .common-politics-col
  p {
  font-size: 26px;
  font-weight: bold;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 575.98px) {
  .index-page
    section.common-politics
    .container
    .common-politics-row
    .common-politics-col
    p {
    font-size: 20px;
  }
}
.index-page
  section.common-politics
  .container
  .common-politics-row
  .common-politics-col
  p:hover {
  color: #f2b012;
}
.index-page
  section.common-politics
  .container
  .common-politics-row
  .common-politics-col
  + .common-politics-col {
  margin-left: 35px;
}
@media (max-width: 575.98px) {
  .index-page
    section.common-politics
    .container
    .common-politics-row
    .common-politics-col
    + .common-politics-col {
    margin-left: 10px;
  }
}
.index-page section.common-politics .common-policy-block {
  width: 100%;
  padding-bottom: 64px;
}
@media (max-width: 575.98px) {
  .index-page section.common-politics .common-policy-block {
    padding: 0 30px 60px 30px;
  }
}
.index-page section.common-politics .common-policy-block .policy-block-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #fef2cc;
}
@media (max-width: 575.98px) {
  .index-page section.common-politics .common-policy-block .policy-block-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-left-col {
  padding-right: 15px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50%;
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left-col {
    width: 55%;
    padding-right: 0;
  }
}
@media (max-width: 575.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left-col {
    width: 100%;
    padding-right: 0;
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-right-col {
  padding-left: 15px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50%;
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right-col {
    width: 45%;
  }
}
@media (max-width: 575.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right-col {
    width: 100%;
    padding-left: 0;
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-left,
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-right {
  background: white;
  padding: 28px 0;
  position: relative;
  -webkit-box-shadow: 0px 20px 20px -10px rgba(233, 167, 45, 0.4);
  box-shadow: 0px 20px 20px -10px rgba(233, 167, 45, 0.4);
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left,
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right {
    padding: 20px 0;
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-left:hover,
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-right:hover {
  -webkit-box-shadow: 0px 20px 20px -10px rgba(233, 167, 45, 0.5);
  box-shadow: 0px 20px 20px -10px rgba(233, 167, 45, 0.5);
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-left
  .policy-block-container,
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-right
  .policy-block-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 490px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left
    .policy-block-container,
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right
    .policy-block-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left
    .policy-block-container
    .left,
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right
    .policy-block-container
    .left {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-left
  .policy-block-container
  .left
  h6,
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-right
  .policy-block-container
  .left
  h6 {
  font-size: 24px;
  font-weight: bold;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left
    .policy-block-container
    .left
    h6,
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right
    .policy-block-container
    .left
    h6 {
    font-size: 24px;
    margin-top: 10px;
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-left
  .policy-block-container
  .left
  p,
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-right
  .policy-block-container
  .left
  p {
  font-size: 16px;
  margin-top: 14px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left
    .policy-block-container
    .left
    p,
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right
    .policy-block-container
    .left
    p {
    margin-top: 5px;
    text-align: center;
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-left
  .policy-block-container
  .left
  button,
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-right
  .policy-block-container
  .left
  button {
  margin-top: 30px;
  font-weight: bold;
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left
    .policy-block-container
    .left
    button,
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right
    .policy-block-container
    .left
    button {
    margin-top: 10px;
    padding: 10px 0;
    width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left
    .policy-block-container
    .right,
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right
    .policy-block-container
    .right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-left
  .policy-block-container
  .right
  img,
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-right
  .policy-block-container
  .right
  img {
  width: 140px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left
    .policy-block-container
    .right
    img,
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right
    .policy-block-container
    .right
    img {
    width: 100px;
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-left
  .triangle,
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-right
  .triangle {
  display: block;
  height: 145px;
  width: 145px;
  position: absolute;
  top: 29px;
  -webkit-clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 0 0 0 40px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left
    .triangle,
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right
    .triangle {
    height: 190px;
    width: 190px;
    top: 38px;
  }
}
@media (max-width: 575.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left
    .triangle,
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right
    .triangle {
    display: none;
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-left {
  padding-right: 156px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left {
    padding-right: 110px;
  }
}
@media (max-width: 575.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left {
    padding-right: 0;
    -webkit-transform: skew(-5deg);
    transform: skew(-5deg);
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-left:hover {
  -webkit-transform: translate(-10px, -10px);
  transform: translate(-10px, -10px);
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-left
  .policy-block-container {
  padding-left: 50px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left
    .policy-block-container {
    padding-left: 0;
  }
}
@media (max-width: 575.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left
    .policy-block-container {
    -webkit-transform: skew(5deg);
    transform: skew(5deg);
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-left
  .triangle {
  background-color: #fef2cc;
  right: -73px;
  -webkit-box-shadow: inset 7px 0 9px -7px rgba(233, 167, 45, 0.4),
    inset 0 -7px 9px -7px rgba(233, 167, 45, 0.4);
  box-shadow: inset 7px 0 9px -7px rgba(233, 167, 45, 0.4),
    inset 0 -7px 9px -7px rgba(233, 167, 45, 0.4);
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-left
    .triangle {
    right: -95px;
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-right {
  padding-left: 156px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right {
    padding-left: 0;
  }
}
@media (max-width: 575.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right {
    padding-left: 0;
    margin-top: 20px;
    -webkit-transform: skew(-5deg);
    transform: skew(-5deg);
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-right:hover {
  -webkit-transform: translate(10px, -10px);
  transform: translate(10px, -10px);
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-right
  .policy-block-container {
  padding-right: 50px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right
    .policy-block-container {
    padding-right: 0;
  }
}
@media (max-width: 575.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right
    .policy-block-container {
    -webkit-transform: skew(5deg);
    transform: skew(5deg);
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  .policy-block-right
  .triangle {
  background-color: white;
  left: -72px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.common-politics
    .common-policy-block
    .policy-block-row
    .policy-block-right
    .triangle {
    left: -95px;
  }
}
.index-page
  section.common-politics
  .common-policy-block
  .policy-block-row
  + .policy-block-row {
  margin-top: 25px;
}
.index-page section.common-politics .bg-triangle {
  border-width: 170px 685px 0 0;
  border-color: #fef2cc transparent transparent transparent;
  left: 0;
  bottom: -170px;
}
.index-page section.county-mayor {
  position: relative;
  background-image: url('../images/bg-deco-wave-top-primary.svg');
  background-repeat: no-repeat;
  background-position: center 100px;
  padding-bottom: 180px;
  background-color: white;
}
.index-page section.county-mayor .county-mayor-wrapper {
  max-width: 1650px;
  margin: 0 auto;
}
@media (max-width: 575.98px) {
  .index-page section.county-mayor {
    background-size: 180%;
    background-position: center 200px;
  }
}
.index-page section.county-mayor .container {
  width: 85%;
  max-width: 1380px;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 50px;
}
@media (max-width: 1199.98px) {
  .index-page section.county-mayor .container {
    width: 90%;
    padding-top: 100px;
  }
}
.index-page section.county-mayor .mayor-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .index-page section.county-mayor .mayor-row {
    gap: 0 20px;
  }
}
@media (max-width: 575.98px) {
  .index-page section.county-mayor .mayor-row {
    padding: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 140px 0;
  }
}
.index-page section.county-mayor .mayor-row .mayor-column {
  position: relative;
  max-width: 33.33333%;
}
.index-page section.county-mayor .mayor-row .mayor-column:hover .photo img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media (max-width: 1199.98px) {
  .index-page section.county-mayor .mayor-row .mayor-column:hover .photo img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.index-page section.county-mayor .mayor-row .mayor-column:first-child .photo {
  -webkit-clip-path: polygon(0 0, 100% 0%, 93% 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0%, 93% 100%, 0% 100%);
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .index-page section.county-mayor .mayor-row .mayor-column:first-child .photo {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}
@media (max-width: 575.98px) {
  .index-page section.county-mayor .mayor-row .mayor-column:first-child .photo {
    -webkit-clip-path: polygon(7% 0, 100% 0%, 93% 100%, 0% 100%);
    clip-path: polygon(7% 0, 100% 0%, 93% 100%, 0% 100%);
  }
}
.index-page section.county-mayor .mayor-row .mayor-column:last-child .photo {
  -webkit-clip-path: polygon(7% 0, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(7% 0, 100% 0%, 100% 100%, 0% 100%);
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .index-page section.county-mayor .mayor-row .mayor-column:last-child .photo {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}
@media (max-width: 575.98px) {
  .index-page section.county-mayor .mayor-row .mayor-column:last-child .photo {
    -webkit-clip-path: polygon(7% 0, 100% 0%, 93% 100%, 0% 100%);
    clip-path: polygon(7% 0, 100% 0%, 93% 100%, 0% 100%);
  }
}
@media (max-width: 575.98px) {
  .index-page section.county-mayor .mayor-row .mayor-column {
    width: 100%;
    max-width: 100%;
  }
}
.index-page section.county-mayor .mayor-row .mayor-column .photo {
  overflow: hidden;
  -webkit-clip-path: polygon(7% 0, 100% 0%, 93% 100%, 0% 100%);
  clip-path: polygon(7% 0, 100% 0%, 93% 100%, 0% 100%);
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .index-page section.county-mayor .mayor-row .mayor-column .photo {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
}
.index-page section.county-mayor .mayor-row .mayor-column .photo img {
  width: 100%;
  max-height: 1000px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.index-page section.county-mayor .mayor-row .mayor-column .name-card {
  left: 50px;
  z-index: 10;
}
@media (max-width: 1199.98px) {
  .index-page section.county-mayor .mayor-row .mayor-column .name-card {
    left: 35px;
  }
}
.index-page
  section.county-mayor
  .mayor-row
  .mayor-column
  .name-card
  .card-container::after {
  border-width: 20px 37px 0 0;
  right: -35px;
}
@media (max-width: 575.98px) {
  .index-page
    section.county-mayor
    .mayor-row
    .mayor-column
    .name-card
    .card-container::after {
    border-width: 15px 20px 0 0;
    right: -18px;
  }
}
.index-page
  section.county-mayor
  .mayor-row
  .mayor-column
  .name-card
  .card-container
  .card-top {
  width: 230px;
  padding: 10px 35px 7px 35px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.county-mayor
    .mayor-row
    .mayor-column
    .name-card
    .card-container
    .card-top {
    width: 170px;
    padding: 10px 20px 7px 20px;
  }
}
.index-page
  section.county-mayor
  .mayor-row
  .mayor-column
  .name-card
  .card-container
  .card-top
  .name {
  font-size: 32px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.county-mayor
    .mayor-row
    .mayor-column
    .name-card
    .card-container
    .card-top
    .name {
    font-size: 22px;
  }
}
@media (max-width: 575.98px) {
  .index-page
    section.county-mayor
    .mayor-row
    .mayor-column
    .name-card
    .card-container
    .card-top
    .name {
    font-size: 22px;
  }
}
.index-page
  section.county-mayor
  .mayor-row
  .mayor-column
  .name-card
  .card-container
  .card-top
  .type {
  font-size: 20px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.county-mayor
    .mayor-row
    .mayor-column
    .name-card
    .card-container
    .card-top
    .type {
    font-size: 16px;
  }
}
.index-page
  section.county-mayor
  .mayor-row
  .mayor-column
  .name-card
  .card-container
  .card-bottom {
  padding: 10px 35px 12px 35px;
  width: 230px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.county-mayor
    .mayor-row
    .mayor-column
    .name-card
    .card-container
    .card-bottom {
    width: 170px;
    padding: 10px 20px 7px 20px;
  }
}
.index-page
  section.county-mayor
  .mayor-row
  .mayor-column
  .name-card
  .card-container
  .card-bottom
  .region-no {
  font-size: 20px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.county-mayor
    .mayor-row
    .mayor-column
    .name-card
    .card-container
    .card-bottom
    .region-no {
    font-size: 16px;
  }
}
.index-page
  section.county-mayor
  .mayor-row
  .mayor-column
  .name-card
  .card-container
  .card-bottom
  .region-detailed {
  font-size: 18px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.county-mayor
    .mayor-row
    .mayor-column
    .name-card
    .card-container
    .card-bottom
    .region-detailed {
    font-size: 16px;
  }
}
.index-page section.county-mayor .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  border-width: 0 685px 170px 0;
  border-color: transparent white transparent transparent;
  right: 0;
  bottom: -170px;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .index-page section.county-mayor .triangle {
    border-width: 0 400px 100px 0;
    bottom: -100px;
  }
}
@media (max-width: 575.98px) {
  .index-page section.county-mayor .triangle {
    border-width: 0 180px 40px 0;
    bottom: -40px;
  }
}
.index-page section.features {
  background: #fabf00;
  z-index: 0;
}
.index-page section.features .container {
  width: 85%;
  max-width: 1380px;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 80px;
}
@media (max-width: 1199.98px) {
  .index-page section.features .container {
    width: 90%;
    padding-top: 100px;
  }
}
@media (max-width: 575.98px) {
  .index-page section.features .container {
    padding-bottom: 100px;
  }
}
.index-page section.features .container::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  border-width: 170px 685px 0 0;
  border-color: #fabf00 transparent transparent transparent;
  bottom: -170px;
  left: 0;
  z-index: 3;
}
@media (max-width: 1199.98px) {
  .index-page section.features .container::after {
    border-width: 100px 400px 0 0;
    bottom: -100px;
  }
}
@media (max-width: 575.98px) {
  .index-page section.features .container::after {
    border-width: 40px 180px 0 0;
    bottom: -40px;
  }
}
.index-page section.features .setion-subtitle {
  font-size: 22px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  font-weight: bold;
  color: white;
  line-height: 2;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .index-page section.features .setion-subtitle {
    margin-bottom: 50px;
  }
}
@media (max-width: 575.98px) {
  .index-page section.features .setion-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }
}
.index-page section.features .setion-subtitle p {
  z-index: 10;
}
.index-page section.features .features-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 180px;
}
@media (max-width: 1199.98px) {
  .index-page section.features .features-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px 0;
  }
}
.index-page section.features .features-row .feature-item {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -webkit-animation: float 6s ease-in-out infinite;
  animation: float 6s ease-in-out infinite;
  position: relative;
}
@keyframes float {
  0% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
  50% {
    -webkit-transform: translatey(-15px);
    transform: translatey(-15px);
  }
  100% {
    -webkit-transform: translatey(0px);
    transform: translatey(0px);
  }
}
.index-page section.features .features-row .feature-item:hover img {
  -webkit-transform: translate(0, -15px);
  transform: translate(0, -15px);
}
@media (max-width: 1199.98px) {
  .index-page section.features .features-row .feature-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.index-page section.features .features-row .feature-item::after {
  content: '';
  z-index: -1;
  position: absolute;
}
.index-page section.features .features-row .feature-item img {
  width: 95px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.index-page section.features .features-row .feature-item h5 {
  margin-top: 28px;
  font-size: 20px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  font-weight: bold;
}
.index-page section.features .features-row .feature-item p {
  line-height: 2;
  margin-top: 10px;
  font-size: 16px;
}
@media (max-width: 1199.98px) {
  .index-page section.features .features-row .feature-item p {
    text-align: center;
  }
}
.index-page section.features .features-row .feature-item p strong {
  color: #fabf00;
  font-size: 22px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  font-weight: bold;
}
.index-page section.features .features-row .feature-item.pink {
  z-index: 3;
}
.index-page section.features .features-row .feature-item.pink::after {
  width: 620px;
  height: 300px;
  background: #da746a;
  -webkit-transform: rotate(16.5deg) translateZ(-1px);
  transform: rotate(16.5deg) translateZ(-1px);
  top: -1%;
  left: -85%;
}
@media (max-width: 1199.98px) {
  .index-page section.features .features-row .feature-item.pink::after {
    width: 570px;
    height: 270px;
    top: -12%;
    left: -92%;
  }
}
@media (max-width: 575.98px) {
  .index-page section.features .features-row .feature-item.pink::after {
    top: -8%;
    width: 370px;
    left: -55%;
  }
}
.index-page section.features .features-row .feature-item.white {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  z-index: 2;
}
.index-page section.features .features-row .feature-item.white::after {
  width: 660px;
  height: 320px;
  -webkit-clip-path: polygon(
    18% 0,
    82% 0,
    100% 50%,
    82% 100%,
    18% 100%,
    0% 50%
  );
  clip-path: polygon(18% 0, 82% 0, 100% 50%, 82% 100%, 18% 100%, 0% 50%);
  background: white;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 1199.98px) {
  .index-page section.features .features-row .feature-item.white::after {
    width: 630px;
    height: 300px;
  }
}
@media (max-width: 575.98px) {
  .index-page section.features .features-row .feature-item.white::after {
    width: 360px;
    height: 280px;
  }
}
.index-page section.features .features-row .feature-item.black {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  z-index: 1;
}
.index-page section.features .features-row .feature-item.black::after {
  width: 620px;
  height: 430px;
  -webkit-clip-path: ellipse(50% 50% at 50% 50%);
  clip-path: ellipse(50% 50% at 50% 50%);
  background: black;
  -webkit-transform: rotate(340deg) translate(-50%, -50%);
  transform: rotate(340deg) translate(-50%, -50%);
  top: 3%;
  left: 80%;
}
@media (max-width: 1199.98px) {
  .index-page section.features .features-row .feature-item.black::after {
    -webkit-transform: rotate(20deg) translate(-50%, -50%);
    transform: rotate(20deg) translate(-50%, -50%);
    top: 107%;
    left: 45%;
    width: 670px;
    height: 380px;
  }
}
@media (max-width: 575.98px) {
  .index-page section.features .features-row .feature-item.black::after {
    -webkit-transform: rotate(30deg) translate(-50%, -50%);
    transform: rotate(30deg) translate(-50%, -50%);
    top: 90%;
    left: 9%;
    width: 456px;
    height: 329px;
  }
}
.index-page section.features .features-row .feature-item.black h5 {
  color: white;
}
.index-page section.features .features-row .feature-item.black p {
  color: white;
}
.index-page section.features .features-row .feature-item.black p strong {
  display: block;
  line-height: 1.3;
}
.index-page section.features .features-row .feature-item.black span {
  font-size: 14px;
  color: white;
}
.index-page section.features .mp-group {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, -webkit-max-content));
  grid-template-columns: repeat(auto-fit, minmax(180px, max-content));
  grid-gap: 70px 55px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: initial;
}
@media (max-width: 575.98px) {
  .index-page section.features .mp-group {
    grid-gap: 60px 15px;
  }
}
.index-page section.features .mp-group .mp-card {
  background: white;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.index-page section.features .mp-group .mp-card:hover {
  -webkit-box-shadow: 10px 10px 20px rgba(44, 42, 40, 0.2);
  box-shadow: 10px 10px 20px rgba(44, 42, 40, 0.2);
}
.index-page
  section.features
  .mp-group
  .mp-card:hover
  .card-image
  .mp-photo
  img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.index-page section.features .mp-group .mp-card.re-elected .card-image::after {
  content: '';
  background: #da746a;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 55px;
  height: 55px;
  z-index: 2;
}
.index-page section.features .mp-group .mp-card.re-elected .card-image::before {
  position: absolute;
  content: '連任';
  right: 0.5%;
  bottom: 2%;
  font-size: 15px;
  color: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 3;
  letter-spacing: 1px;
}
.index-page section.features .mp-group .mp-card .card-image {
  overflow: hidden;
}
.index-page section.features .mp-group .mp-card .card-image .mp-photo img {
  width: 180px;
  height: 210px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.index-page section.features .mp-group .mp-card .card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px 0;
}
.index-page section.features .mp-group .mp-card .card-content .name {
  font-size: 28px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
  color: black;
}
.index-page section.features .mp-group .mp-card .card-content .region-no {
  font-size: 18px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  font-weight: bold;
  color: black;
}
.index-page section.features .mp-group .mp-card .card-content .region-name {
  margin-top: 5px;
  font-size: 16px;
  color: black;
  width: 180px;
  text-align: center;
}
@media (max-width: 575.98px) {
  .index-page section.features .mp-group .mp-card .card-content .region-name {
    width: 160px;
  }
}
.index-page section.features .mp-group .mp-card .card-tag {
  padding: 7px 15px;
  position: absolute;
  top: -10px;
  left: -10px;
}
@media (max-width: 575.98px) {
  .index-page section.features .mp-group .mp-card .card-tag {
    padding: 3px 9px;
    left: -5px;
  }
}
.index-page section.features .mp-group .mp-card .card-tag p {
  font-size: 16px;
  font-family: 'Noto Sans TC', sans-serif;
}
.index-page section.features .mp-group .mp-card .card-tag.bg-secondary {
  background: #da746a;
}
.index-page section.features .mp-group .mp-card .card-tag.bg-secondary::after {
  border-color: #da746a transparent transparent transparent;
}
.index-page section.features .mp-group .mp-card .card-tag.bg-light {
  background: white;
}
.index-page section.features .mp-group .mp-card .card-tag.bg-light p {
  color: black;
}
.index-page section.features .mp-group .mp-card .card-tag.bg-light::after {
  border-color: white transparent transparent transparent;
}
.index-page section.nomination {
  background: url('../images/bg-deco-wave-right-primary.svg') repeat-y right -200px
    top -600px/50% 50%;
}
.index-page section.nomination .container {
  width: 85%;
  max-width: 1380px;
  margin: 0 auto;
  padding-top: 150px;
  padding-bottom: 50px;
}
@media (max-width: 1199.98px) {
  .index-page section.nomination .container {
    width: 90%;
    padding-top: 100px;
  }
}
@media (max-width: 575.98px) {
  .index-page section.nomination .container {
    padding-bottom: 100px;
  }
}
.index-page section.nomination .container .section-subtitle {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 575.98px) {
  .index-page section.nomination .container .section-subtitle {
    position: relative;
  }
}
.index-page section.nomination .container .section-subtitle .text h2 {
  font-size: 98px;
  margin-bottom: 15px;
  line-height: 1;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
@media (max-width: 1199.98px) {
  .index-page section.nomination .container .section-subtitle .text h2 {
    font-size: 100px;
  }
}
@media (max-width: 575.98px) {
  .index-page section.nomination .container .section-subtitle .text h2 {
    font-size: 80px;
  }
}
.index-page section.nomination .container .section-subtitle .text .chinese {
  font-size: 30px;
  letter-spacing: 0px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
@media (max-width: 1199.98px) {
  .index-page section.nomination .container .section-subtitle .text .chinese {
    font-size: 30px;
    letter-spacing: 0px;
    margin-bottom: 0;
  }
}
@media (max-width: 575.98px) {
  .index-page section.nomination .container .section-subtitle .text .chinese {
    font-size: 22px;
    letter-spacing: 10px;
  }
}
.index-page section.nomination .container .section-subtitle .text .english {
  font-size: 20px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
@media (max-width: 575.98px) {
  .index-page section.nomination .container .section-subtitle .text .english {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .index-page section.nomination .container .section-subtitle .icon {
    position: absolute;
    top: -70px;
    right: 9px;
  }
}
.index-page section.nomination .container .section-subtitle .icon img {
  width: 140px;
}
@media (max-width: 1199.98px) {
  .index-page section.nomination .container .section-subtitle .icon img {
    width: 140px;
  }
}
@media (max-width: 575.98px) {
  .index-page section.nomination .container .section-subtitle .icon img {
    width: 100px;
  }
}
.index-page section.nomination .container .taiwan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 1199.98px) {
  .index-page section.nomination .container .taiwan {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.index-page section.nomination .container .taiwan svg {
  width: 670px;
}
@media (max-width: 1199.98px) {
  .index-page section.nomination .container .taiwan svg {
    margin-left: 0;
    width: 480px;
  }
}
.index-page section.nomination .container .taiwan svg g {
  outline: none;
}
.index-page section.nomination .container .taiwan .taiwan-hover-block {
  position: absolute;
  left: 0;
  top: 20%;
  background: #fabf00;
  width: 240px;
  -webkit-transform: skew(-7deg);
  transform: skew(-7deg);
}
@media (max-width: 1199.98px) {
  .index-page section.nomination .container .taiwan .taiwan-hover-block {
    display: none;
  }
}
.index-page
  section.nomination
  .container
  .taiwan
  .taiwan-hover-block
  .block-relative {
  position: relative;
  padding: 24px;
}
.index-page
  section.nomination
  .container
  .taiwan
  .taiwan-hover-block
  .block-relative
  .container {
  width: 100%;
  -webkit-transform: skew(7deg);
  transform: skew(7deg);
  padding: 0;
}
.index-page
  section.nomination
  .container
  .taiwan
  .taiwan-hover-block
  .block-relative
  .container
  .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.index-page
  section.nomination
  .container
  .taiwan
  .taiwan-hover-block
  .block-relative
  .container
  .title
  h5 {
  font-size: 30px;
  color: black;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
.index-page
  section.nomination
  .container
  .taiwan
  .taiwan-hover-block
  .block-relative
  .container
  .title
  span {
  color: white;
  font-size: 30px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  margin-left: 15px;
  display: inline-block;
}
.index-page
  section.nomination
  .container
  .taiwan
  .taiwan-hover-block
  .block-relative
  .container
  .item-group {
  margin-top: 20px;
}
.index-page
  section.nomination
  .container
  .taiwan
  .taiwan-hover-block
  .block-relative
  .container
  .item-group
  .item {
  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;
}
.index-page
  section.nomination
  .container
  .taiwan
  .taiwan-hover-block
  .block-relative
  .container
  .item-group
  .item
  .icon {
  width: 24px;
  height: 14px;
  background: url(../images/deco-power-arrow-white.svg);
}
.index-page
  section.nomination
  .container
  .taiwan
  .taiwan-hover-block
  .block-relative
  .container
  .item-group
  .item
  p {
  margin: 0 15px;
  font-size: 18px;
  color: black;
  font-weight: 500;
}
.index-page
  section.nomination
  .container
  .taiwan
  .taiwan-hover-block
  .block-relative
  .container
  .item-group
  .item
  span {
  font-size: 16px;
  background: white;
  color: black;
  padding: 4px 5px;
  font-weight: 500;
}
.index-page
  section.nomination
  .container
  .taiwan
  .taiwan-hover-block
  .block-relative
  .container
  .item-group
  .item
  + .item {
  margin-top: 5px;
}
.index-page
  section.nomination
  .container
  .taiwan
  .taiwan-hover-block
  .block-relative::after {
  content: '';
  position: absolute;
  top: 0;
  right: -25px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 28px 0 0;
  border-color: #fabf00 transparent transparent transparent;
}
.index-page section.nomination .region-candidate {
  padding-bottom: 180px;
}
.index-page section.nomination .region-candidate .region-col + .region-col {
  margin-top: 130px;
}
.index-page section.nomination .region-candidate .region-col .region-neme {
  position: relative;
  background: #fabf00;
  height: 57px;
  width: 20%;
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
  margin-left: -5px;
  margin-bottom: -36px;
  padding-right: 40px;
  text-align: right;
}
@media (max-width: 1199.98px) {
  .index-page section.nomination .region-candidate .region-col .region-neme {
    width: 180px;
    height: 40px;
  }
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .region-neme
  .pre-region {
  position: absolute;
  top: -10px;
  right: 120px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.nomination
    .region-candidate
    .region-col
    .region-neme
    .pre-region {
    width: 60px;
    top: -5px;
    left: 10%;
  }
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .region-neme
  .text {
  font-weight: bold;
  font-size: 18px;
  line-height: 57px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
@media (max-width: 1199.98px) {
  .index-page
    section.nomination
    .region-candidate
    .region-col
    .region-neme
    .text {
    line-height: 40px;
  }
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .region-neme::after {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 22px 0 0;
  border-color: #fabf00 transparent transparent transparent;
}
.index-page section.nomination .region-candidate .region-col .candidate-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 95%;
  max-width: 1380px;
  min-width: 1366px;
  margin: 0 auto;
  padding-top: 36px;
  padding-bottom: 130px;
  padding: 0 32px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 1199.98px) {
  .index-page
    section.nomination
    .region-candidate
    .region-col
    .candidate-group {
    min-width: auto;
    padding: 0;
  }
}
@media (max-width: 575.98px) {
  .index-page
    section.nomination
    .region-candidate
    .region-col
    .candidate-group {
    width: 310px;
  }
}
@media (min-width: 1101px) and (max-width: 1199px) {
  .index-page
    section.nomination
    .region-candidate
    .region-col
    .candidate-group {
    gap: 0 64px;
  }
}
@media (min-width: 576px) and (max-width: 896px) {
  .index-page
    section.nomination
    .region-candidate
    .region-col
    .candidate-group {
    width: 650px;
  }
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate {
  position: relative;
  padding: 0 32px;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin: 72px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1311px) and (max-width: 1350px) {
  .index-page
    section.nomination
    .region-candidate
    .region-col
    .candidate-group
    .candidate {
    padding: 0 30px;
  }
}
@media (min-width: 1275px) and (max-width: 1310px) {
  .index-page
    section.nomination
    .region-candidate
    .region-col
    .candidate-group
    .candidate {
    padding: 0 24px;
  }
}
@media (min-width: 1200px) and (max-width: 1274px) {
  .index-page
    section.nomination
    .region-candidate
    .region-col
    .candidate-group
    .candidate {
    padding: 0 12px;
  }
}
@media (min-width: 1050px) and (max-width: 1199px) {
  .index-page
    section.nomination
    .region-candidate
    .region-col
    .candidate-group
    .candidate {
    padding: 0 12px;
  }
}
@media (min-width: 960px) and (max-width: 1023px) {
  .index-page
    section.nomination
    .region-candidate
    .region-col
    .candidate-group
    .candidate {
    padding: 0 22px;
  }
}
@media (min-width: 897px) and (max-width: 959px) {
  .index-page
    section.nomination
    .region-candidate
    .region-col
    .candidate-group
    .candidate {
    padding: 0 12px;
  }
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate:hover {
  -webkit-transform: translate(-10px, -10px);
  transform: translate(-10px, -10px);
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate:hover
  .photo
  img {
  -webkit-box-shadow: 10px 10px 20px rgba(44, 42, 40, 0.2);
  box-shadow: 10px 10px 20px rgba(44, 42, 40, 0.2);
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate:hover
  .name-card
  .card-bottom {
  -webkit-box-shadow: 10px 10px 20px rgba(44, 42, 40, 0.2);
  box-shadow: 10px 10px 20px rgba(44, 42, 40, 0.2);
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate
  .photo
  img {
  width: 260px;
  height: 320px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate
  .name-card {
  position: absolute;
  bottom: 0;
  left: 10px;
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate
  .name-card
  .card-container {
  position: relative;
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate
  .name-card
  .card-container
  .card-top {
  background: #fabf00;
  width: 190px;
  padding: 10px 20px 7px 20px;
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate
  .name-card
  .card-container
  .card-top
  .text {
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate
  .name-card
  .card-container
  .card-top
  .text
  .name {
  font-weight: bold;
  font-size: 26px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  color: black;
}
@media (max-width: 1199.98px) {
  .index-page
    section.nomination
    .region-candidate
    .region-col
    .candidate-group
    .candidate
    .name-card
    .card-container
    .card-top
    .text
    .name {
    font-size: 22px;
  }
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate
  .name-card
  .card-container
  .card-top
  .text
  .type {
  font-size: 16px;
  color: black;
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate
  .name-card
  .card-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 22px 0 0;
  border-color: #fabf00 transparent transparent transparent;
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate
  .name-card
  .card-container
  .card-bottom {
  position: absolute;
  background: black;
  color: white;
  padding: 10px 20px 8px 20px;
  width: 190px;
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate
  .name-card
  .card-container
  .card-bottom
  .text {
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
  padding-left: 16px;
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate
  .name-card
  .card-container
  .card-bottom
  .text
  .region-no {
  font-size: 18px;
  font-weight: bold;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
.index-page
  section.nomination
  .region-candidate
  .region-col
  .candidate-group
  .candidate
  .name-card
  .card-container
  .card-bottom
  .text
  .region-detailed {
  font-size: 16px;
}
.index-page section.nomination .bg-triangle {
  border-width: 0 685px 170px 0;
  border-color: transparent white transparent transparent;
  bottom: -170px;
  right: 0;
}
.index-page section.convention {
  background-color: #fef2cc;
  background-image: url(../images/bg-deco-wave-left-white.svg);
  background-position: left -120px top -20px;
}
@media (max-width: 1199.98px) {
  .index-page section.convention {
    background-position: left -270px top -20px;
  }
}
.index-page section.convention .container {
  width: 85%;
  max-width: 1380px;
  margin: 0 auto;
  padding-top: 130px;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .index-page section.convention .container {
    width: 90%;
  }
}
.index-page section.convention .container .section-subtitle {
  display: block;
}
.index-page section.convention .container .section-subtitle h5 {
  font-size: 26px;
  font-weight: bold;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
@media (max-width: 575.98px) {
  .index-page section.convention .container .section-subtitle h5 {
    font-size: 22px;
  }
}
.index-page section.convention .container .section-subtitle p {
  margin-top: 32px;
  font-size: 16px;
}
@media (max-width: 1199.98px) {
  .index-page section.convention .container .section-subtitle p {
    text-align: justify;
  }
}
.index-page section.convention .container .convention-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
  margin-top: 30px;
}
@media (max-width: 1199.98px) {
  .index-page section.convention .container .convention-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.index-page section.convention .container .convention-col .convention-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 50%;
  padding: 30px 30px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .index-page section.convention .container .convention-col .convention-item {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .index-page section.convention .container .convention-col .convention-item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 30px;
  }
}
.index-page
  section.convention
  .container
  .convention-col
  .convention-item
  .convention-no {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fabf00;
  text-align: center;
  margin-right: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 575.98px) {
  .index-page
    section.convention
    .container
    .convention-col
    .convention-item
    .convention-no {
    width: 40px;
    height: 40px;
  }
}
.index-page
  section.convention
  .container
  .convention-col
  .convention-item
  .convention-no
  span {
  font-size: 42px;
  font-weight: bold;
  line-height: 55px;
  color: white;
}
@media (max-width: 575.98px) {
  .index-page
    section.convention
    .container
    .convention-col
    .convention-item
    .convention-no
    span {
    line-height: 40px;
    font-size: 30px;
  }
}
.index-page
  section.convention
  .container
  .convention-col
  .convention-item
  .convention-text {
  padding-bottom: 14px;
  width: 100%;
}
.index-page
  section.convention
  .container
  .convention-col
  .convention-item
  .convention-text
  p {
  min-height: 48px;
}
@media (max-width: 1199.98px) {
  .index-page
    section.convention
    .container
    .convention-col
    .convention-item
    .convention-text
    p {
    text-align: justify;
  }
}
.index-page
  section.convention
  .container
  .convention-col
  .convention-item::after {
  content: '';
  width: 90%;
  height: 3px;
  background: #fabf00;
  border-radius: 2px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}
@media (max-width: 575.98px) {
  .index-page
    section.convention
    .container
    .convention-col
    .convention-item::after {
    bottom: 20px;
  }
}
.index-page section.convention .container .bg-deco-shine {
  position: absolute;
  right: 0;
  top: 100px;
}
@media (max-width: 575.98px) {
  .index-page section.convention .container .bg-deco-shine {
    top: 30px;
  }
}
.index-page section.convention .container .bg-deco-shine img {
  width: 185px;
}
@media (max-width: 575.98px) {
  .index-page section.convention .container .bg-deco-shine img {
    width: 90px;
  }
}
.index-page section.convention .bg-triangle {
  border-width: 170px 685px 0 0;
  border-color: #fef2cc transparent transparent transparent;
  left: 0;
  bottom: -170px;
}
.index-page section.donate {
  background: transparent;
  z-index: 3;
}
.index-page section.donate .container {
  width: 85%;
  max-width: 1380px;
  margin: 0 auto;
  padding-top: 136px;
  padding-bottom: 177px;
}
@media (max-width: 1199.98px) {
  .index-page section.donate .container {
    width: 90%;
    padding-bottom: 120px;
    padding-top: 100px;
  }
}
@media (max-width: 575.98px) {
  .index-page section.donate .container {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@media (max-width: 1199.98px) {
  .index-page section.donate .container .section-title {
    text-align: center;
  }
}
.index-page section.donate .container .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .index-page section.donate .container .btn-group {
    margin-top: 25px;
  }
}
@media (max-width: 575.98px) {
  .index-page section.donate .container .btn-group {
    padding-right: 10px;
  }
}
.index-page section.donate .container .btn-group .donate-btn {
  margin: 10px 25px;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .index-page section.donate .container .btn-group .donate-btn {
    margin: 10px 25px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 30%;
  }
}
@media (max-width: 575.98px) {
  .index-page section.donate .container .btn-group .donate-btn {
    margin: 10px 15px;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    width: 50%;
  }
}
.index-page section.donate .container .btn-group .bg-deco-cross {
  position: absolute;
  left: 10%;
  bottom: -25px;
}
.index-page section.donate .container .btn-group .bg-deco-cross img {
  width: 84px;
}
.index-page section.donate .container .btn-group .bg-deco-grid {
  position: absolute;
  right: 30%;
  top: -180px;
}
.index-page section.donate .container .btn-group .bg-deco-grid img {
  width: 180px;
}
.index-page section.donate .bg-triangle {
  border-width: 0 685px 170px 0;
  border-color: transparent #fabf00 transparent transparent;
  bottom: -170px;
  right: 0;
}

.candidate-page {
  overflow-x: hidden;
}
.candidate-page section.basic-information {
  width: 100%;
  position: relative;
}
.candidate-page section.basic-information .info-container {
  width: 56%;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
}
@media (max-width: 1199.98px) {
  .candidate-page section.basic-information .info-container {
    width: 100%;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.candidate-page section.basic-information .info-container .name {
  height: 650px;
  background-color: #fabf00;
  background-image: url(../images/bg-deco-wave-primary-dark.svg);
  background-repeat: no-repeat;
  background-position: top -480px left 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 115px;
}
@media (max-width: 1199.98px) {
  .candidate-page section.basic-information .info-container .name {
    padding-bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 55.5%;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page section.basic-information .info-container .name {
    padding-top: 50px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.basic-information .info-container .name {
    height: 835px;
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 20px;
    -webkit-clip-path: none;
    clip-path: none;
    background-position: top -200px left 50px;
    background-size: 90%;
    padding-top: 90px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.candidate-page
  section.basic-information
  .info-container
  .name
  .name-container {
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  max-width: 80%;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container {
    max-width: 80%;
  }
}
@media (max-width: 575.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container {
    max-width: none;
  }
}
.candidate-page
  section.basic-information
  .info-container
  .name
  .name-container
  .region {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container
    .region {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.candidate-page
  section.basic-information
  .info-container
  .name
  .name-container
  .region
  h4 {
  color: white;
  font-size: 38px;
  display: inline-block;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container
    .region
    h4 {
    font-size: 36px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container
    .region
    h4 {
    font-size: 26px;
  }
}
.candidate-page
  section.basic-information
  .info-container
  .name
  .name-container
  .region
  .region-name-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 60px;
  margin-left: 25px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container
    .region
    .region-name-group {
    height: 54px;
    margin-left: 10px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container
    .region
    .region-name-group {
    height: 40px;
    margin-left: 5px;
  }
}
.candidate-page
  section.basic-information
  .info-container
  .name
  .name-container
  .region
  .region-name-group
  span {
  font-size: 20px;
  padding: 0 5px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container
    .region
    .region-name-group
    span {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container
    .region
    .region-name-group
    span {
    font-size: 12px;
  }
}
.candidate-page
  section.basic-information
  .info-container
  .name
  .name-container
  h3 {
  font-size: 97px;
  margin-top: 15px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container
    h3 {
    font-size: 56px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container
    h3 {
    font-size: 44px;
  }
}
.candidate-page
  section.basic-information
  .info-container
  .name
  .name-container
  h3
  img {
  width: 93px;
  display: inline-block;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container
    h3
    img {
    width: 63px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container
    h3
    img {
    width: 50px;
  }
}
.candidate-page
  section.basic-information
  .info-container
  .name
  .name-container
  p {
  font-size: 26px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container
    p {
    font-size: 18px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .name
    .name-container
    p {
    font-size: 16px;
  }
}
.candidate-page section.basic-information .info-container .experience {
  height: auto;
  background: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page section.basic-information .info-container .experience {
    padding: 60px;
    height: auto;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.basic-information .info-container .experience {
    height: auto;
    padding: 60px;
  }
}
.candidate-page
  section.basic-information
  .info-container
  .experience
  .experience-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .experience
    .experience-container {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .experience
    .experience-container {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.candidate-page
  section.basic-information
  .info-container
  .experience
  .experience-container
  .row {
  max-width: 300px;
}
@media (max-width: 575.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .experience
    .experience-container
    .row {
    width: 100%;
  }
}
.candidate-page
  section.basic-information
  .info-container
  .experience
  .experience-container
  .row
  h5 {
  font-size: 22px;
  color: white;
  margin-bottom: 20px;
}
@media (max-width: 1199.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .experience
    .experience-container
    .row
    h5 {
    font-size: 24px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .experience
    .experience-container
    .row
    h5 {
    margin-bottom: 20px;
  }
}
.candidate-page
  section.basic-information
  .info-container
  .experience
  .experience-container
  .row
  h5
  img {
  width: 35px;
  margin-right: 13px;
  display: inline-block;
}
@media (max-width: 1199.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .experience
    .experience-container
    .row
    h5
    img {
    width: 30px;
  }
}
.candidate-page
  section.basic-information
  .info-container
  .experience
  .experience-container
  .row
  p {
  font-size: 18px;
  padding-left: 15px;
  color: white;
  position: relative;
  margin-left: 10px;
}
@media (max-width: 1199.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .experience
    .experience-container
    .row
    p {
    font-size: 18px;
  }
}
.candidate-page
  section.basic-information
  .info-container
  .experience
  .experience-container
  .row
  p::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  position: absolute;
  left: -10px;
  top: 13px;
}
.candidate-page
  section.basic-information
  .info-container
  .experience
  .experience-container
  .row
  p
  + p {
  margin-top: 15px;
}
.candidate-page
  section.basic-information
  .info-container
  .experience
  .experience-container
  .row
  + .row {
  margin-left: 40px;
}
@media (max-width: 1199.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .experience
    .experience-container
    .row
    + .row {
    margin-left: 0;
  }
}
@media (max-width: 575.98px) {
  .candidate-page
    section.basic-information
    .info-container
    .experience
    .experience-container
    .row
    + .row {
    margin-top: 20%;
  }
}
.candidate-page section.basic-information .photo {
  width: 50%;
  max-width: 1090px;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/img-candidate-intro-photo-white-small.png);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page section.basic-information .photo {
    background-position: top 0% right 60%;
    background-size: 140%;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.basic-information .photo {
    z-index: 3;
    width: 100%;
    height: 835px;
    right: auto;
    background-position: top 100% right 100%;
    background-size: 100%;
  }
}
.candidate-page section.candidate-menu {
  background: transparent;
}
.candidate-page section.candidate-menu .menu-item-container {
  width: 75%;
  min-width: 1380px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 30px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1199.98px) {
  .candidate-page section.candidate-menu .menu-item-container {
    width: 100%;
    min-width: 0;
    padding: 40px 30px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.candidate-menu .menu-item-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 15px;
  }
}
.candidate-page section.candidate-menu .menu-item-container a {
  width: 120px;
  padding: 8px 0;
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
  border: 2px solid #fabf00;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: black;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  font-size: 18px;
  z-index: 4;
}
@media (max-width: 1199.98px) {
  .candidate-page section.candidate-menu .menu-item-container a {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.candidate-menu .menu-item-container a {
    width: 90px;
    padding: 8px 0;
    margin: 5px 0;
  }
}
.candidate-page section.candidate-menu .menu-item-container a span {
  display: block;
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
}
.candidate-page section.candidate-menu .menu-item-container a:hover {
  background: #fabf00;
}
.candidate-page section.candidate-menu .menu-item-container a + a {
  margin-left: 34px;
}
@media (max-width: 1199.98px) {
  .candidate-page section.candidate-menu .menu-item-container a + a {
    margin-left: 10px;
  }
}
.candidate-page section.spindle {
  position: relative;
  z-index: 5;
}
.candidate-page section.spindle .container {
  width: 85%;
  max-width: 1380px;
  margin: 0 auto;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 1199.98px) {
  .candidate-page section.spindle .container {
    width: 90%;
  }
}
.candidate-page section.spindle .container .spindle-content h6 {
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  font-size: 20px;
  margin-bottom: 28px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 575.98px) {
  .candidate-page section.spindle .container .spindle-content h6 {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.candidate-page section.spindle .container .spindle-content h6:hover {
  color: #f2b012;
}
.candidate-page section.spindle .container .spindle-content p {
  font-size: 16.5px;
}
.candidate-page section.spindle .container .spindle-content strong {
  padding: 0 5px;
}
.candidate-page section.politics {
  background-color: #fef2cc;
  background-image: url(../images/bg-deco-wave-left-white.svg);
  background-repeat: no-repeat;
  background-position: top -50px left -100px;
  background-size: 130%;
  position: relative;
}
@media (max-width: 1199.98px) {
  .candidate-page section.politics {
    background-repeat: initial;
    background-size: 180%;
  }
}
.candidate-page section.politics .container {
  width: 85%;
  max-width: 1380px;
  margin: 0 auto;
  padding-top: 130px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199.98px) {
  .candidate-page section.politics .container {
    width: 90%;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.politics .container {
    padding-top: 60px;
  }
}
.candidate-page section.politics .container .section-title h2 {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.candidate-page section.politics .container .section-title h2 .power-block {
  display: inline-block;
  background: black;
  padding: 9px 12px;
  width: 80px;
  color: white;
  font-size: 22px;
  text-align: center;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  -webkit-transform: skew(-7deg);
  transform: skew(-7deg);
  position: relative;
  margin-left: 30px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 575.98px) {
  .candidate-page section.politics .container .section-title h2 .power-block {
    padding: 7px 10px;
    width: 63px;
    font-size: 20px;
    margin-left: 15px;
  }
}
.candidate-page section.politics .container .section-title h2 .power-block p {
  -webkit-transform: skew(7deg);
  transform: skew(7deg);
}
.candidate-page
  section.politics
  .container
  .section-title
  h2
  .power-block::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 16px 0 0;
  border-color: black transparent transparent transparent;
  position: absolute;
  top: 0;
  right: -14px;
}
@media (max-width: 575.98px) {
  .candidate-page
    section.politics
    .container
    .section-title
    h2
    .power-block::after {
    border-width: 8px 15px 0 0;
    right: -15px;
  }
}
.candidate-page section.politics .container .politics-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px 6%;
}
@media (max-width: 1199.98px) {
  .candidate-page section.politics .container .politics-group {
    height: auto;
    margin-right: -15px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.politics .container .politics-group {
    margin-right: -24px;
    margin-top: 30px;
  }
}
.candidate-page section.politics .container .politics-group .politic-item {
  padding: 18px 34px;
  width: 47%;
  color: white;
  -webkit-transform: skew(-7deg);
  transform: skew(-7deg);
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page section.politics .container .politics-group .politic-item {
    width: 95%;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.politics .container .politics-group .politic-item {
    width: 90%;
    -webkit-transform: skew(-4deg);
    transform: skew(-4deg);
  }
}
.candidate-page section.politics .container .politics-group .politic-item h6 {
  -webkit-transform: skew(7deg);
  transform: skew(7deg);
  font-size: 22px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  color: black;
}
@media (max-width: 575.98px) {
  .candidate-page section.politics .container .politics-group .politic-item h6 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.politics .container .politics-group .politic-item h6 {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
    text-align: center;
  }
}
.candidate-page section.politics .container .politics-group .politic-item p {
  -webkit-transform: skew(7deg);
  transform: skew(7deg);
  font-size: 16.5px;
  color: black;
  text-align: justify;
  white-space: pre-line;
  margin-top: -15px;
}
@media (max-width: 575.98px) {
  .candidate-page section.politics .container .politics-group .politic-item p {
    -webkit-transform: skew(4deg);
    transform: skew(4deg);
  }
}
.candidate-page
  section.politics
  .container
  .politics-group
  .politic-item::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 30px 0 0;
  position: absolute;
  top: 0;
  right: -30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 575.98px) {
  .candidate-page
    section.politics
    .container
    .politics-group
    .politic-item::after {
    border-width: 8px 15px 0 0;
    right: -13px;
  }
}
.candidate-page
  section.politics
  .container
  .politics-group
  .politic-item:nth-child(4n),
.candidate-page
  section.politics
  .container
  .politics-group
  .politic-item:nth-child(4n + 1) {
  background: white;
}
.candidate-page
  section.politics
  .container
  .politics-group
  .politic-item:nth-child(4n)::after,
.candidate-page
  section.politics
  .container
  .politics-group
  .politic-item:nth-child(4n + 1)::after {
  border-color: white transparent transparent transparent;
}
.candidate-page
  section.politics
  .container
  .politics-group
  .politic-item:nth-child(4n + 2),
.candidate-page
  section.politics
  .container
  .politics-group
  .politic-item:nth-child(4n + 3) {
  background: #fde28c;
}
.candidate-page
  section.politics
  .container
  .politics-group
  .politic-item:nth-child(4n + 2)::after,
.candidate-page
  section.politics
  .container
  .politics-group
  .politic-item:nth-child(4n + 3)::after {
  border-color: #fde28c transparent transparent transparent;
}
@media (max-width: 1199.98px) {
  .candidate-page
    section.politics
    .container
    .politics-group
    .politic-item:nth-child(odd) {
    background: white;
  }
  .candidate-page
    section.politics
    .container
    .politics-group
    .politic-item:nth-child(odd)::after {
    border-color: white transparent transparent transparent;
  }
  .candidate-page
    section.politics
    .container
    .politics-group
    .politic-item:nth-child(even) {
    background: #fde28c;
  }
  .candidate-page
    section.politics
    .container
    .politics-group
    .politic-item:nth-child(even)::after {
    border-color: #fde28c transparent transparent transparent;
  }
}
.candidate-page
  section.politics
  .container
  .politics-group
  .politic-item:hover {
  background: #f2b012;
}
.candidate-page
  section.politics
  .container
  .politics-group
  .politic-item:hover
  h6,
.candidate-page
  section.politics
  .container
  .politics-group
  .politic-item:hover
  p {
  color: white;
  font-weight: bold;
}
.candidate-page
  section.politics
  .container
  .politics-group
  .politic-item:hover::after {
  border-color: #f2b012 transparent transparent transparent;
}
.candidate-page section.politics .bg-deco-cross-1,
.candidate-page section.politics .bg-deco-cross-2,
.candidate-page section.politics .bg-deco-cross-3,
.candidate-page section.politics .bg-deco-cross-4 {
  position: absolute;
  width: 84px;
  height: 80px;
  background-image: url(../images/bg-deco-cross-white.svg);
  background-repeat: no-repeat;
  z-index: 0;
}
.candidate-page section.politics .bg-deco-cross-1 {
  top: 14%;
  right: 20%;
}
.candidate-page section.politics .bg-deco-cross-2 {
  top: 80%;
  right: 5%;
}
.candidate-page section.politics .bg-deco-cross-3 {
  top: 70%;
  right: 50%;
}
.candidate-page section.politics .bg-deco-cross-4 {
  top: 50%;
  right: 90%;
}
.candidate-page section.support {
  position: relative;
  background-image: url(../images/bg-deco-wave-right-primary.svg);
  background-repeat: no-repeat;
  background-position: top -870px right -390px;
  background-size: 50%;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page section.support {
    background-position: 120% 50%;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.support {
    background-position: top 90px right -60px;
    background-size: 60%;
  }
}
.candidate-page section.support .container {
  width: 85%;
  max-width: 1380px;
  margin: 0 auto;
  padding-top: 135px;
  padding-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1199.98px) {
  .candidate-page section.support .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.support .container {
    padding: 65px 0;
  }
}
.candidate-page section.support .container h4 {
  font-size: 24px;
  font-family: 'Kozuka', 'Noto Sans TC', sans-serif;
  margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
  .candidate-page section.support .container h4 {
    text-align: center;
    margin-bottom: 20px;
  }
}
.candidate-page section.support .container .button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px 30px;
}
@media (max-width: 1199.98px) {
  .candidate-page section.support .container .button-group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.support .container .button-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.candidate-page section.support .container .button-group button {
  font-size: 16px;
  font-weight: 600;
  padding-right: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 20px;
  -webkit-transform: skew(-10deg);
  transform: skew(-10deg);
  position: relative;
  -webkit-box-shadow: 5px 5px 10px rgba(255, 168, 37, 0.3);
  box-shadow: 5px 5px 10px rgba(255, 168, 37, 0.3);
}
.candidate-page section.support .container .button-group button:hover {
  -webkit-transform: translate(-5px, -5px) skew(-10deg);
  transform: translate(-5px, -5px) skew(-10deg);
}
.candidate-page section.support .container .button-group button span {
  display: block;
  -webkit-transform: skew(10deg);
  transform: skew(10deg);
}
.candidate-page section.support .container .button-group button::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 16px 0 0;
  position: absolute;
  top: 0;
  right: -14px;
}
@media (max-width: 575.98px) {
  .candidate-page section.support .container .button-group button::after {
    border-width: 8px 15px 0 0;
    right: -15px;
  }
}
.candidate-page section.support .container .button-group button.volunteer {
  background: #fabf00;
}
.candidate-page section.support .container .button-group button.volunteer span {
  color: black;
}
.candidate-page
  section.support
  .container
  .button-group
  button.volunteer::after {
  border-color: #fabf00 transparent transparent transparent;
}
.candidate-page section.support .container .button-group button.donate {
  background: black;
}
.candidate-page section.support .container .button-group button.donate span {
  color: white;
}
.candidate-page section.support .container .button-group button.donate::after {
  border-color: black transparent transparent transparent;
}
.candidate-page section.support .container .contact-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1199.98px) {
  .candidate-page section.support .container .contact-group {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.support .container .contact-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.candidate-page section.support .container .contact-group .contact-item h6 {
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 575.98px) {
  .candidate-page section.support .container .contact-group .contact-item h6 {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.candidate-page section.support .container .contact-group .contact-item h6 img {
  margin-right: 7px;
  display: inline-block;
}
.candidate-page section.support .container .contact-group .contact-item p {
  font-size: 16.5px;
}
.candidate-page
  section.support
  .container
  .contact-group
  .contact-item
  + .contact-item {
  margin-left: 64px;
}
@media (max-width: 575.98px) {
  .candidate-page
    section.support
    .container
    .contact-group
    .contact-item
    + .contact-item {
    margin-left: 0;
    margin-top: 20px;
  }
}
.candidate-page section.support .container .left,
.candidate-page section.support .container .right {
  width: 48%;
}
@media (max-width: 1199.98px) {
  .candidate-page section.support .container .left,
  .candidate-page section.support .container .right {
    width: 100%;
  }
}
.candidate-page section.support .container .right {
  margin-left: 2%;
}
@media (max-width: 1199.98px) {
  .candidate-page section.support .container .right {
    margin-top: 80px;
  }
}
.candidate-page section.support::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  border-width: 170px 685px 0 0;
  border-color: white transparent transparent transparent;
  bottom: -170px;
  left: 0;
  z-index: 3;
}
@media (max-width: 1199.98px) {
  .candidate-page section.support::after {
    border-width: 0 400px 100px 0;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.support::after {
    border-width: 0 180px 40px 0;
  }
}
.candidate-page section.videos {
  background: #f8f8f8;
  padding-bottom: 140px;
  background-image: url(../images/bg-deco-wave-left-white.svg);
  background-repeat: no-repeat;
  background-position: top 0px left 180px;
  background-size: 100%;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page section.videos {
    background-position: top 0px left 0px;
    background-size: 190%;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.videos {
    padding-bottom: 70px;
    background-position: top 0px left 0px;
    background-size: 190%;
  }
}
.candidate-page section.videos .container {
  width: 85%;
  max-width: 1380px;
  margin: 0 auto;
  padding-top: 170px;
  z-index: 5;
}
@media (max-width: 1199.98px) {
  .candidate-page section.videos .container {
    width: 90%;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.videos .container {
    padding-top: 60px;
  }
}
.candidate-page section.videos .bg-deco-grid {
  width: 180px;
  position: absolute;
  top: 20%;
  right: 40%;
}
@media (max-width: 1199.98px) {
  .candidate-page section.videos .bg-deco-grid {
    display: none;
  }
}
.candidate-page section.videos::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  border-width: 0 685px 170px 0;
  border-color: transparent #f8f8f8 transparent transparent;
  bottom: -166px;
  right: 0;
  z-index: 3;
}
@media (max-width: 1199.98px) {
  .candidate-page section.videos::after {
    border-width: 0 400px 100px 0;
    bottom: -97px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page section.videos::after {
    border-width: 0 180px 40px 0;
    bottom: -38px;
  }
}
.candidate-page .bottom-triangle-wrapper {
  position: relative;
}
.candidate-page .bottom-triangle-wrapper .spindle-menu-wrapper {
  position: relative;
  padding-top: 300px;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page .bottom-triangle-wrapper .spindle-menu-wrapper {
    padding-top: 230px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page .bottom-triangle-wrapper .spindle-menu-wrapper {
    padding-top: 200px;
  }
}
.candidate-page
  .bottom-triangle-wrapper
  .spindle-menu-wrapper
  .candidate-menu-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
}
.candidate-page .bottom-triangle-wrapper .spindle-menu-wrapper .bg-wave {
  position: absolute;
  right: -170px;
  top: -340px;
  z-index: 4;
  width: 800px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .candidate-page .bottom-triangle-wrapper .spindle-menu-wrapper .bg-wave {
    right: -399px;
  }
}
@media (max-width: 575.98px) {
  .candidate-page .bottom-triangle-wrapper .spindle-menu-wrapper .bg-wave {
    top: 150px;
  }
}
.candidate-page .bottom-triangle-wrapper::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  border-width: 170px 685px 0 0;
  border-color: white transparent transparent transparent;
  bottom: -170px;
  left: 0;
  z-index: 3;
}
@media (max-width: 1199.98px) {
  .candidate-page .bottom-triangle-wrapper::after {
    border-width: 0 400px 100px 0;
  }
}
@media (max-width: 575.98px) {
  .candidate-page .bottom-triangle-wrapper::after {
    border-width: 0 180px 40px 0;
  }
}
.candidate-page .declarationWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (max-width: 575.98px) {
  .candidate-page .declarationWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.candidate-page .declarationWrap .textContent {
  max-width: 50%;
  margin-right: 20px;
}
@media (max-width: 575.98px) {
  .candidate-page .declarationWrap .textContent {
    margin-right: 0;
    max-width: 100%;
  }
}
.candidate-page .declarationWrap .imageContent {
  max-width: 50%;
}
@media (max-width: 575.98px) {
  .candidate-page .declarationWrap .imageContent {
    max-width: 100%;
  }
}

.slick-lightbox-slick-iframe-wrap svg {
  width: 100%;
  height: 100%;
}
