@charset "UTF-8";




.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}



@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}



@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}



@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}



@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}:root {
	--px5:0.279018vw;
	--px6:0.334821vw;
	--px7:0.390625vw;
	--px8:0.446429vw;
	--px9:0.502232vw;
	--px10:0.558036vw;
	--px11:0.613839vw;
	--px12:0.669643vw;
	--px13:0.725446vw;
	--px14:0.781250vw;
	--px15:0.837054vw;
	--px16:0.892857vw;
	--px17:0.948661vw;
	--px18:1.004464vw;
	--px19:1.060268vw;
	--px20:1.116071vw;
	--px21:1.171875vw;
	--px22:1.227679vw;
	--px23:1.283482vw;
	--px24:1.339286vw;
	--px25:1.395089vw;
	--px26:1.450893vw;
	--px27:1.506696vw;
	--px28:1.562500vw;
	--px29:1.618304vw;
	--px30:1.674107vw;
	--px31:1.729911vw;
	--px32:1.785714vw;
	--px33:1.841518vw;
	--px34:1.897321vw;
	--px35:1.953125vw;
	--px36:2.008929vw;
	--px37:2.064732vw;
	--px38:2.120536vw;
	--px39:2.176339vw;
	--px40:2.232143vw;
	--px41:2.287946vw;
	--px42:2.343750vw;
	--px43:2.399554vw;
	--px44:2.455357vw;
	--px45:2.511161vw;
	--px46:2.566964vw;
	--px47:2.622768vw;
	--px48:2.678571vw;
	--px49:2.734375vw;
	--px50:2.790179vw;
	--px51:2.845982vw;
	--px52:2.901786vw;
	--px53:2.957589vw;
	--px54:3.013393vw;
	--px55:3.069196vw;
	--px56:3.125000vw;
	--px57:3.180804vw;
	--px58:3.236607vw;
	--px59:3.292411vw;
	--px60:3.348214vw;
	--px61:3.404018vw;
	--px62:3.459821vw;
	--px63:3.515625vw;
	--px64:3.571429vw;
	--px65:3.627232vw;
	--px66:3.683036vw;
	--px67:3.738839vw;
	--px68:3.794643vw;
	--px69:3.850446vw;
	--px70:3.906250vw;
	--px71:3.962054vw;
	--px72:4.017857vw;
	--px73:4.073661vw;
	--px74:4.129464vw;
	--px75:4.185268vw;
	--px76:4.241071vw;
	--px77:4.296875vw;
	--px78:4.352679vw;
	--px79:4.408482vw;
	--px80:4.464286vw;
}
.rwd:after{
	content: 'ALL';
	display: none;
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
}
body {
    font-family: 'Noto Sans TC', sans-serif;
    background-color: #5e4a3c;
}
section{
	padding: 0px;
}
hr{
	background-color: #555;
	opacity: .7;
}
img{
	vertical-align: middle;
	width: 100%;
}
.pic{
	position: relative;
}
.img_txt{
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 99;
	color: #000;
	font-size: 12px;
}

.read_more{
	border: 1px solid #fff;
	background-color: rgba(255, 255, 255, .3);
	padding: 5px 40px 5px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
	transition: all .3s;
	position: relative;
	text-decoration: none;
}
.read_more:hover{
	background-color: rgba(255, 255, 255, 0);
	color: #fff;
}
.read_more i{
	color: #fff;
	font-size: 12px;
	position: absolute;
	right: 6px;
}
.read_more.dark{
	border: 1px solid #969797;
	background-color: rgba(150, 151, 151, .3);
	color: #969797;
}
.read_more.dark:hover{
	background-color: rgba(150, 151, 151, 0);
	color: #969797;
}
.read_more.dark i{
	color: #969797;
}

.title_name{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.title_name .en{
	color: #fff;
	font-size: var(--px12);
	margin-bottom: 5px;
	white-space: nowrap;
}
.title_name h2{
	white-space: nowrap;
}


.slick-slide {
    
}

.slick-list {
    
}
.slick-dotted.slick-slider {
    margin-bottom: 0px;
}
.slick-dots {
	bottom: 20px;
}
.slick-dots li button:before{
	font-size: 14px;
	color: #fff;
	opacity: 1;
}
.slick-dots li.slick-active button:before{
	color: #5e4a3c;
	opacity: 1;
}
.slick-one .img{
	position: relative;
}

h1{
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
h2{
    font-size: var(--px30);
    font-weight: 600;
    color: #fff;
}
h3{
    font-size: var(--px24);
    font-weight: 500;
    color: #fff;
}
p{
    font-size: var(--px16);
    font-weight: 400;
    color: #fff;
    text-align: justify;
    text-justify: inter-ideograph;
    line-height: 2;
}

.logo{
	width: 220px;
	-webkit-filter: brightness(10);
	transition: all .3s;
	position: fixed;
	z-index: 10;
	top: 24px;
	left: 20px;
}
.logo a{
	display: block;
	width: 220px;
	height: 33px;
	background-image: url(../img/logo.svg);
	background-size: 100%;
	background-repeat: no-repeat;
}
.logo.active{
	-webkit-filter: brightness(1);
}
.menu_btn{
	width: 20px;
	position: fixed;
	z-index: 10;
	top: 30px;
	right: 20px;
	cursor: pointer;
}
.menu_btn .close{
	opacity: 0;
	transition: all .3s;
	position: absolute;
}
.menu_btn .open{
	opacity: 1;
	transition: all .3s;
	position: absolute;
}
.menu_btn.active .close{
	opacity: 1;
}
.menu_btn.active .open{
	opacity: 0;
}
.menu_btn.active{
	width: 20px;
}
.header_social_icon{
	position: fixed;
	z-index: 10;
	top: 25px;
	right: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
.header_social_icon i{
	font-size: 30px;
	color: #fff;
	transition: all .3s;
}
.header_social_icon.active i{
	color: #5f4b3c;
}
.rqcode_cover{
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 20;
	background-color: rgba(255, 255, 255, .8);
	display: none;
}
.rqcode_cover.active{
	display: block;
}
.rqcode{
	display: none;
	width: 50%;
	gap: 3%;
	position: fixed;
	z-index: 20;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.rqcode.active{
	display: flex;
}
.rqcode .pic{
	width: 100%;
	box-shadow: 2px 2px 10px #ccc;
}
.rqcode .pic a{
	display: block;
	background-color: #fff;
	text-align: center;
	font-size: var(--px16);
	color: #02C755;
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	text-decoration: none;
}

header.active{
	transform: translateY(0%);
}
header{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	position: fixed;
	z-index: 9;
	top: 0;
	width: 100%;
	height: 80px;
	background-color: #fff;
	transform: translateY(-100%);
	transition: all .3s;
}
header .nav .items{
	display: flex;
	align-items: center;
	gap: 30px;
}
header .nav .item{
	position: relative;
	display: block;
	cursor: pointer;
	text-align: center;
}
header .nav .item > a{
	font-size: 16px;
	color: #5f4b3c;
	text-decoration: none;
}
header .nav .item .sub{
	padding-top: 10px;
	position: absolute;
	z-index: 5;
	transform: scaleY(0) translateX(-50%);
	left: 50%;
	transition: all .3s;
	transform-origin: top;
}
header .nav .item:hover .sub{
	transform: scaleY(1) translateX(-50%);
}
header .nav ul{
	background-color: rgba(95, 75, 60, .8);
	padding: 20px;
}
header .nav li + li{
	margin-top: 10px;
}
header .nav li a{
	text-decoration: none;
	font-size: 14px;
	color: #fff;
	white-space: nowrap;
}

.scroll{
	width: 15px;
	position: fixed;
	z-index: 10;
	bottom: 20px;
	right: 20px;
	transition: all .3s;
	transform: translateY(-20px);
	animation: scroll 1s alternate infinite;
}
.scroll.end{
	opacity: 0;
}
@keyframes scroll{
    from{
        transform: translateY(-20px);
    }
    to{
        transform: translateY(0px);
    }
}
.right_line{
	position: fixed;
	width: 40px;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
}
.right_line .line{
	width: 100%;
	height: 1px;
	background-color: #fff;
	transform: scaleX(0.6);
	transform-origin: right;
	transition: all .3s;
}
.right_line .line.active{
	transform: scaleX(1);
}
.right_line .line + .line{
	margin-top: 10px;
}

.index .kv{
	background-image: url(../img/kv1.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}
.index .kv .o{
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, .2);
	position: absolute;
	top: 0;
	left: 0;
}
.index .kv .bg{
	width: 100%;
	height: 100vh;
	position: sticky;
	top: 0;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}
.index .kv .bg .text{
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 3%;
}
.index .kv .bg .text .title{
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--px20);
}
.index .kv .bg .text .title.a{
	align-items: flex-end;
}
.index .kv h2{
	color: #fff;
	font-weight: 600;
	white-space: nowrap;
	opacity: 0;
}
.index .kv h2.en span{
	padding: 0 var(--px20);
}
.index .kv h2.tw span{
	padding: 0 var(--px10);
}
.index .kv h2.en{
	font-size: var(--px70);
}
.index .kv h2.tw{
	font-size: var(--px30);
	line-height: 2.4;
}
.index .kv .bg .text .line{
	display: flex;
}
.index .kv .bg .text .line:before{
	content: '';
	width: 1px;
	height: 100%;
	background-color: #fff;
}
.index .kv .case{
	width: 100%;
	height: 50vh;
	background-color: rgba(0,0,0,.8);
	position: sticky;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.index .kv .case .box{
	width: 50%;
	display: flex;
	gap: 2%;
	margin-bottom: 10vh;
	position: relative;
}
.index .kv .case .box .bi{
	position: absolute;
	z-index: 3;
	font-size: var(--px40);
	color: #fff;
	top: 50%;
	transition: all .3s;
	cursor: pointer;
}
.index .kv .case .box .bi:hover{
	color: #cc9f53;
}
.index .kv .case .box .bi-chevron-left{
	left: 0;
	transform: translateY(-80%) translateX(-110%);
}
.index .kv .case .box .bi-chevron-right{
	right: 0;
	transform: translateY(-80%) translateX(110%);
}
.index .kv .case .box .slick-3{
	width: 100%;
}
.index .kv .case .box .slick-slide {
    margin: 0 5px;
}
.index .kv .case .box .slick-list {
    margin: 0 -5px;
}
.index .kv .case .box .item{
	text-decoration: none;
}
.index .kv .case .box .item p{
	color: #fff;
	text-align: center;
	margin-top: 10px;
}

.index .s1 .item.item0{
	background-image: url(../img/index-s1-0.jpg);
}
.index .s1 .item.item1{
	background-image: url(../img/index-s1-1.jpg);
}
.index .s1 .item.item2{
	background-image: url(../img/index-s1-2.jpg);
}
.index .s1 .item.item3{
	background-image: url(../img/index-s1-3.jpg);
}
.index .s1 .item.item4{
	background-image: url(../img/index-s1-4.jpg);
}

.index .s2 .item.item0{
	background-image: url(../img/index-s2-0.jpg);
}
.index .s2 .item.item1{
	background-image: url(../img/index-s2-0.jpg);
}
.index .s2 h3{
	white-space: nowrap;
}

.index .ss{
	position: relative;
}
.index .ss .item{
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
	position: relative;
}
.index .ss .item .overlayer{
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	
	
	background: -moz-radial-gradient(center, ellipse cover,  rgba(15,15,15,0) 0%, rgba(15,15,15,0) 52%, rgba(15,15,15,1) 100%); 
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(15,15,15,0) 0%,rgba(15,15,15,0) 52%,rgba(15,15,15,1) 100%); 
	background: radial-gradient(ellipse at center,  rgba(15,15,15,0) 0%,rgba(15,15,15,0) 52%,rgba(15,15,15,1) 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000f0f0f', endColorstr='#0f0f0f',GradientType=1 ); 
}
.index .ss .title{
	position: absolute;
	z-index: 2;
	width: 800px;
	bottom: 30px;
	left: 50px;
	display: flex;
	align-items: stretch;
	gap: 5%;
}

.index .ss .title .sub_name{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.index .ss .title .item_name .nav{
	display: flex;
	gap: 10px;
	margin-top: 30px;
}
.index .ss .title .item_name .nav > div{
	border: 1px solid #fff;
	background-color: rgba(255, 255, 255, .3);
	padding: 5px 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .3s;
}
.index .ss .title .item_name .nav > div:hover{
	background-color: rgba(255, 255, 255, 0);
}
.index .ss .title .item_name .nav i{
	color: #fff;
	font-size: 12px;
}
.index .ss .title .sub_name{
	position: relative;
}
.index .ss .title .sub_name .sub{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transform: translateX(100%);
	transition: all .6s;
}
.index .ss .title .sub_name .sub.active{
	opacity: 1;
	transform: translateX(0px);
}
.index .ss .title .sub_name p{
	white-space: nowrap;
	margin-top: 10px;
}
.index .ss .title .sub_name .nav{
	display: flex;
	gap: 10px;
	margin-top: 15px;
}

.index .ss .title .line{
	display: flex;
}
.index .ss .title .line:before{
	content: '';
	width: 1px;
	height: 100%;
	background-color: #fff;
}
.index .ss .title .line.active:before{
	background-color: rgba(0, 0, 0, 0);
}

.index .s3{
	background-image: url(../img/index-s3-0.jpg);
	position: relative;
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.index .s3 .overlayer{
	position: absolute;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 2;
	
	
	background: -moz-radial-gradient(center, ellipse cover,  rgba(15,15,15,0) 0%, rgba(15,15,15,0.3) 100%); 
	background: -webkit-radial-gradient(center, ellipse cover,  rgba(15,15,15,0) 0%,rgba(15,15,15,0.3) 100%); 
	background: radial-gradient(ellipse at center,  rgba(15,15,15,0) 0%,rgba(15,15,15,0.3) 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000f0f0f', endColorstr='#4d0f0f0f',GradientType=1 ); 
}
.index .s3 .box{
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 50%;
	display: flex;
	gap: 15px;
}
.index .s3 .box a{
	display: block;
	width: calc(20% - 15px);
	padding-bottom: 20%;
	border: 1px solid #fff;
	background-color: rgba(255, 255, 255, .3);
	position: relative;
	text-decoration: none;
	transition: all .3s;
}
.index .s3 .box a:hover{
	background-color: rgba(255, 255, 255, 0);
}
.index .s3 .box h2{
	color: #fff;
	font-size: var(--px20);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	white-space: nowrap;
}

.page .title_block{
	width: 100%;
	
	position: relative;
	background-size: 100%;
	
	background-repeat: no-repeat;
	
	background-color: #f00;
}
.page .title_name{
	position: absolute;
	top: 40%;
	left: 20%;
}
.page .main .box{
	width: 90%;
	max-width: 1440px;
	margin: 130px auto;
}

.story{
	background-color: #f5f3f2;
}
.page.story .title_block{
	background-image: url(../img/story-0-title-bg.jpg?v=1);
}
.story .main .box .item{
	display: flex;
	margin-top: 100px;
}
.story .main .box .item:nth-child(1) .image,
.story .main .box .item:nth-child(1) .text{
	opacity: 0;
}
.story .main .box .item.reverse{
	flex-direction: row-reverse;
}
.story .main .box .item + .item{
	margin-top: 120px;
}
.story .main .box .item .image{
	width: 55%;
}
.story .main .box .item .text{
	width: 45%;
	display: flex;
	align-items: flex-end;
}
.story .main .box .item .text .txt{
	width: 100%;
	height: 80%;
	background-color: #fff;
	padding: 0 10%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transform: translateX(-12%) translateY(20%);
}
.story .main .box .item.reverse .text .txt{
	transform: translateX(12%) translateY(20%);
}
.story .main .box .item .text h3,
.story .main .box .item .text p{
	color: #4c4948;
}
.story .main .box .item .text p{
	margin-top: 15px;
}
.story .main .box .item .text .nav{
	margin-top: 15px;
}

.about{
	background-color: #f5f3f2;
}
.page.about .title_block{
	background-image: url(../img/story-1-title-bg.jpg?v=4);
}
.page.about .title_block:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	
	background: -moz-linear-gradient(left,  rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%); 
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%); 
	background: linear-gradient(to right,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3000000', endColorstr='#00000000',GradientType=1 ); 
}
.about .title_block .text .txt{
	position: relative;
	z-index: 3;
	
}
.about .title_block .text .txt p{
	margin-top: 15px;
}
.about .main .box{
	display: flex;
	align-items: center;
	gap: 3%;
}
.about .box .video{
	width: 60%;
}
.about .box .text{
	width: 40%;
}
.about .box .text h2,
.about .box .text h3,
.about .box .text p{
	color: #4c4948;
}
.about .box .text h2{
	font-size: var(--px20);
	margin-top: 15px;
	margin-bottom: 20px;
	line-height: 1.5;
}
.about .box .text p + p{
	margin-top: 15px;
}

.value{
	background-color: #f5f3f2;
}
.page.value .title_block{
	background-image: url(../img/story-2-title-bg.jpg?v=1);
	position: relative;
}
.page.value .title_block:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	
	background: -moz-linear-gradient(left,  rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%); 
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%); 
	background: linear-gradient(to right,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3000000', endColorstr='#00000000',GradientType=1 ); 
}
.value .title_block .text .txt{
	position: relative;
	z-index: 3;
	
}
.value .title_block .text .txt p{
	margin-top: 15px;
}
.value .main .box{
	display: flex;
	align-items: center;
	gap: 0%;
}
.value .box .image{
	width: 60%;
	padding: 0 5%;
	padding-left: 10%;
}
.value .box .text{
	width: 40%;
}
.value .box .text h2,
.value .box .text h3,
.value .box .text p{
	color: #4c4948;
}
.value .box .text h2{
	font-size: var(--px20);
	margin-top: 15px;
	margin-bottom: 20px;
	line-height: 1.5;
}
.value .box .text p + p{
	margin-top: 15px;
}
.value .pc_block{
	display: block;
}

.seek{
	background-color: #f5f3f2;
}
.page.seek .title_block{
	background-image: url(../img/story-3-title-bg.jpg?v=2);
}
.seek .title_block .text .txt{
	
}
.seek .title_block .text .txt p{
	margin-top: 15px;
}
.seek .main .box{
	display: flex;
	align-items: center;
	gap: 0%;
	max-width: 1000px;
}
.seek .box .image{
	width: 50%;
	padding: 0 5%;
}
.seek .box .text{
	width: 50%;
}
.seek .box .text h2,
.seek .box .text h3,
.seek .box .text p{
	color: #4c4948;
}
.seek .box .text h2{
	font-size: var(--px20);
	margin-top: 15px;
	margin-bottom: 20px;
	line-height: 1.5;
}
.seek .box .text p + p{
	margin-top: 15px;
}

.partner{
	background-color: #f5f3f2;
}
.page.partner .title_block{
	background-image: url(../img/story-4-title-bg.jpg?v=2);
}
.partner .title_block .text .txt{
	
}
.partner .title_block .text .txt p{
	margin-top: 15px;
}
.partner .main .box{
	display: flex;
	align-items: center;
	gap: 0%;
	max-width: 1000px;
}
.partner .box .image{
	width: 40%;
	padding: 0 5%;
}
.partner .box .text{
	width: 60%;
}
.partner .box .text h2,
.partner .box .text h3,
.partner .box .text p{
	color: #4c4948;
}
.partner .box .text h2{
	font-size: var(--px20);
	margin-top: 15px;
	margin-bottom: 20px;
	line-height: 1.5;
}
.partner .box .text p + p{
	margin-top: 15px;
}

.classic_case{
	background-color: #f5f3f2;
}
.page.classic_case .title_block{
	background-image: url(../img/case-1-title-bg.jpg?v=1);
}
.classic_case .title_block .text .txt p{
	margin-top: 15px;
}
.classic_case .main .box .items{
	display: flex;
	justify-content: center;
	gap: var(--px30);
	margin: 0 auto;
	margin-bottom: var(--px30);
}
.classic_case .main .box .items .item{
	font-size: var(--px14);
	color: #4c4948;
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0);
	padding-bottom: 5px;
	transition: all .3s;
}
.classic_case .main .box .items .item:hover{
	border-bottom: 1px solid #4c4948;
}
.classic_case .main .box .case{
	display: flex;
	flex-wrap: wrap;
	gap: var(--px20);
}
.classic_case .main .box .case .caseitem{
	display: block;
	width: calc(33.333333% - var(--px20) );
	position: relative;
}
.classic_case .main .box .case .caseitem:after{
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	transition: all .3s;
}
.classic_case .main .box .case .caseitem:hover:after{
	background-color: rgba(0, 0, 0, 0);
	
}
.classic_case .main .box .case .caseitem .txt{
	position: absolute;
	z-index: 3;
	bottom: 5%;
	left: 5%;
	
}
.classic_case .main .box .case .caseitem .txt p{
	text-align: center;
	line-height: 1.5;
}

.classic_detail{
	background-color: #f5f3f2;
}
.page.classic_detail .title_block{
	background-image: url(../img/case-1-title-bg.jpg?v=1);
}
.classic_detail .title_block .text .txt p{
	margin-top: 15px;
}
.classic_detail .main .box{
	display: flex;
	align-items: center;
	gap: 3%;
}
.classic_detail .main .box .image{
	width: 50%;
}
.classic_detail .main .box .image .big{
	margin-bottom: 10px;
}
.classic_detail .main .box .image .min{
	display: flex;
	gap: 10px;
}
.classic_detail .main .box .image .pic i{
	color: #fff;
	font-size: 30px;
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	opacity: 0;
	transition: all .3s;
}
.classic_detail .main .box .image .pic:after{
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(95, 75, 60, .8);
	position: absolute;
	z-index: 2;
	top: 0%;
	left: 0%;
	opacity: 0;
	transition: all .3s;
}
.classic_detail .main .box .image .pic:hover i,
.classic_detail .main .box .image .pic:hover:after{
	opacity: 1;
}

.classic_detail .main .box .info{
	width: 50%;
}
.classic_detail .main .box .info h2{
	color: #4c4948;
	margin-bottom: 30px;
}
.classic_detail .main .box .info h3{
	font-size: var(--px18);
	color: #4c4948;
	margin-bottom: 10px;
}
.classic_detail .main .box .info p{
	color: #4c4948;
}
.classic_detail .main .box .info .txt + .txt{
	margin-top: 20px;
}
.classic_detail .pc_block{
	display: block;
}

.latest_case{
	background-color: #f5f3f2;
}
.page.latest_case .title_block{
	background-image: url(../img/case-2-title-bg.jpg?v=1);
}
.latest_case .title_block .text .txt p{
	margin-top: 15px;
}
.latest_case .main .box .items{
	display: flex;
	justify-content: center;
	gap: var(--px30);
	margin: 0 auto;
	margin-bottom: var(--px30);
}
.latest_case .main .box .items .item{
	font-size: var(--px14);
	color: #4c4948;
	text-decoration: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0);
	padding-bottom: 5px;
	transition: all .3s;
}
.latest_case .main .box .items .item:hover{
	border-bottom: 1px solid #4c4948;
}
.latest_case .main .box .case{
	display: flex;
	flex-wrap: wrap;
	gap: var(--px20);
}
.latest_case .main .box .case .caseitem{
	display: block;
	width: calc(33.333333% - var(--px20) );
	position: relative;
}
.latest_case .main .box .case .caseitem:after{
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0);
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	transition: all .3s;
}
.latest_case .main .box .case .caseitem:hover:after{
	background-color: rgba(0, 0, 0, 0);
	
}

.latest_detail{
	background-color: #f5f3f2;
}
.page.latest_detail .title_block{
	background-image: url(../img/case-2-title-bg.jpg);
}
.latest_detail .title_block .text .txt p{
	margin-top: 15px;
}
.latest_detail .main .box h2{
	color: #4c4948;
	margin-bottom: 30px;
}
.latest_detail .main .box .video{
	margin-top: 30px;
}

.feature{
	background-color: #f5f3f2;
}
.page.feature .title_block{
	background-image: url(../img/feature-1-title-bg.jpg?v=1);
}
.page.feature .title_block:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	
	background: -moz-linear-gradient(left,  rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%); 
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%); 
	background: linear-gradient(to right,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3000000', endColorstr='#00000000',GradientType=1 ); 
}
.feature .title_block .text .txt{
	position: relative;
	z-index: 3;
	
}
.feature .title_block .text .txt p{
	margin-top: 15px;
}
.feature .main .box{
	display: flex;
	justify-content: center;
	align-items: center;
}

.news{
	background-color: #f5f3f2;
}
.page.news .title_block{
	background-image: url(../img/news-0-title-bg.jpg?v=1);
}
.news .main .box .item{
	display: flex;
	margin-top: 100px;
}
.news .main .box .item:nth-child(1) .image,
.news .main .box .item:nth-child(1) .text{
	opacity: 0;
}
.news .main .box .item.reverse{
	flex-direction: row-reverse;
}
.news .main .box .item + .item{
	margin-top: 120px;
}
.news .main .box .item .image{
	width: 55%;
}
.news .main .box .item .text{
	width: 45%;
	display: flex;
	align-items: flex-end;
}
.news .main .box .item .text .txt{
	width: 100%;
	height: 80%;
	background-color: #fff;
	padding: 0 10%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transform: translateX(-12%) translateY(20%);
}
.news .main .box .item.reverse .text .txt{
	transform: translateX(12%) translateY(20%);
}
.news .main .box .item .text h3,
.news .main .box .item .text p{
	color: #4c4948;
}
.news .main .box .item .text p{
	margin-top: 15px;
}
.news .main .box .item .text .nav{
	margin-top: 15px;
}

.media{
	background-color: #f5f3f2;
}
.page.media .title_block{
	background-image: url(../img/media-1-title-bg.jpg);
}
.media .title_block .text .txt{
	
}
.media .title_block .text .txt p{
	margin-top: 15px;
}
.media .box{
	display: flex;
	flex-wrap: wrap;
	gap: 3%;
}
.media .box .item{
	width: calc(33.333333% - 3%);
	margin-bottom: 3%;
}
.media .box .item h2,
.media .box .item h3,
.media .box .item p{
	color: #4c4948;
}
.media .box .item h2{
	font-size: var(--px16);
	margin-top: 15px;
	margin-bottom: 20px;
	line-height: 1.5;
	text-align: center;
}
.media .box .item .nav{
	justify-content: center;
}

.media_con{
	background-color: #f5f3f2;
}

.media_con .main .box{
    max-width: 960px;
}
.media_con .box .news_con h2,
.media_con .box .news_con h3,
.media_con .box .news_con p{
	color: #4c4948;
}
.media_con .box .news_con h2{
	margin-bottom: 40px;
	line-height: 1.5;
}
.media_con .box .news_con .author{
	margin-bottom: 40px;
}
.media_con .box .news_con .author a{
	text-decoration: none;
	font-size: var(--px14);
	color: #5F4B3C;
}
.media_con .box .news_con h3{
	margin-bottom: 15px;
}
.media_con .box .news_con .article_content + .article_content{
	margin-top: 30px;
}
.media_con .box .news_con .article_content p + p{
	margin-top: 15px;
}

.work{
	background-color: #f5f3f2;
}
.page.work .title_block{
	background-image: url(../img/work-1-title-bg.jpg);
}
.page.work .title_block:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	
	background: -moz-linear-gradient(left,  rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%); 
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%); 
	background: linear-gradient(to right,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3000000', endColorstr='#00000000',GradientType=1 ); 
}
.work .title_block .text .txt{
	position: relative;
	z-index: 3;
	
}
.work .title_block .text .txt p{
	margin-top: 15px;
}
.work .box{
	display: flex;
	justify-content: center;
	align-items: center;
}
.work form{
	background-color: #5f4b3c;
	padding: 10px;
}
.work .form{
	border: 1px solid #fff;
	padding: 20px;
}
.work form p{
	margin-bottom: 30px;
}
.work form input{
	font-size: 16px;
	color: #fff !important;
	border: 0px !important;
	border-bottom: 1px solid #fff !important;
	background-color: rgba(0, 0, 0, 0);
	margin-bottom: 30px;
}
.work ::placeholder { 
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9) !important;
}
.work :-ms-input-placeholder { 
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9) !important;
}
.work ::-ms-input-placeholder { 
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9) !important;
}
.work .nav{
	justify-content: flex-end;
}
.work .send{
	display: inline-block;
	padding: 10px 50px;
	font-size: 14px;
	background-color: #fff;
	color: #5f4b3c;
	text-decoration: none;
}

.work_list{
	background-color: #f5f3f2;
}
.page.work_list .title_block{
	background-image: url(../img/work-1-title-bg.jpg);
}
.page.work_list .title_block:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	
	background: -moz-linear-gradient(left,  rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%); 
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%); 
	background: linear-gradient(to right,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3000000', endColorstr='#00000000',GradientType=1 ); 
}
.work_list .title_block .text .txt{
	position: relative;
	z-index: 3;
	
}
.work_list .title_block .text .txt p{
	margin-top: 15px;
}
.work_list .box{
	display: flex;
	flex-wrap: wrap;
	gap: 3%;
}
.work_list .box .item .pic i{
	color: #fff;
	font-size: 30px;
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	opacity: 0;
	transition: all .3s;
}
.work_list .box .item .pic:after{
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(95, 75, 60, .8);
	position: absolute;
	z-index: 2;
	top: 0%;
	left: 0%;
	opacity: 0;
	transition: all .3s;
}
.work_list .box .item .pic:hover i,
.work_list .box .item .pic:hover:after{
	opacity: 1;
}
.work_list .box .item{
	width: calc(33.333333% - 3%);
	margin-bottom: 3%;
}
.work_list .box .item h2{
	color: #4c4948;
	font-size: var(--px16);
	line-height: 1.5;
	text-align: center;
	background-color: #dcdddd;
	padding: 40px 0;
}

.contact{
	background-color: #f5f3f2;
}
.page.contact .title_block{
	background-image: url(../img/contact-0-title-bg.jpg);
}
.contact .main .box .item{
	display: flex;
	margin-top: 100px;
}
.contact .main .box .item:nth-child(1) .image,
.contact .main .box .item:nth-child(1) .text{
	opacity: 0;
}
.contact .main .box .item.reverse{
	flex-direction: row-reverse;
}
.contact .main .box .item + .item{
	margin-top: 120px;
}
.contact .main .box .item .image{
	width: 55%;
}
.contact .main .box .item .text{
	width: 45%;
	display: flex;
	align-items: flex-end;
}
.contact .main .box .item .text .txt{
	width: 100%;
	height: 80%;
	background-color: #fff;
	padding: 0 10%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transform: translateX(-12%) translateY(20%);
}
.contact .main .box .item.reverse .text .txt{
	transform: translateX(12%) translateY(20%);
}
.contact .main .box .item .text h3,
.contact .main .box .item .text p{
	color: #4c4948;
}
.contact .main .box .item .text p{
	margin-top: 15px;
}
.contact .main .box .item .text .nav{
	margin-top: 15px;
}

.service{
	background-color: #f5f3f2;
}
.page.service .title_block{
	background-image: url(../img/service-1-title-bg.jpg);
}
.page.service .title_block:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	
	background: -moz-linear-gradient(left,  rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%); 
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%); 
	background: linear-gradient(to right,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3000000', endColorstr='#00000000',GradientType=1 ); 
}
.service .title_block .text .txt{
	position: relative;
	z-index: 3;
	
}
.service .title_block .text .txt p{
	margin-top: 15px;
}
.service .main .box{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1200px;
}
.service .main .box .pc{
	display: block;
}
.service .main .box .m{
	display: none;
}

.contact_form{
	background-color: #f5f3f2;
}
.page.contact_form .title_block{
	background-image: url(../img/contactform-1-title-bg.jpg);
}
.page.contact_form .title_block:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	
	background: -moz-linear-gradient(left,  rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%); 
	background: -webkit-linear-gradient(left,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%); 
	background: linear-gradient(to right,  rgba(0,0,0,0.7) 0%,rgba(0,0,0,0) 50%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b3000000', endColorstr='#00000000',GradientType=1 ); 
}
.contact_form .title_block .text .txt{
	position: relative;
	z-index: 3;
	
}
.contact_form .title_block .text .txt p{
	margin-top: 15px;
}
.contact_form .main .box{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1200px;
}
.contact_form form{
	width: 100%;
}
.contact_form form p{
	color: #5f4b3c;
	margin-bottom: 40px;
}
.contact_form form .privacy{
	text-align: center;
	color: #5f4b3c;
	margin-top: 15px;
}
.contact_form form .privacy a{
	color: #5f4b3c;
	text-decoration: none;
}
.contact_form form #msgerror{
	margin-bottom: 0;
	text-align: center;
	margin: 15px 0;
	font-size: 14px;
	color: #f00;
}
.contact_form form .start{
	color: #f00;
	font-size: 14px;
}
.contact_form form .form_row{
	display: flex;
	gap: 3%;
}
.contact_form form .form_row > div{
	width: 50%;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #5f4b3c;
	margin-bottom: 30px;
}
.contact_form form .form_row > div label{
	width: 100px;
	margin-bottom: 0px;
	font-size: 16px;
	color: #5f4b3c;
}
.contact_form form .form_row > div input{
	font-size: 16px;
	color: #5f4b3c;
	border: 0px solid #000;
	background-color: rgba(0, 0, 0, 0);
	margin-bottom: 0px;
}
.contact_form form .form_row > div select{
	border: 0px !important;
	background-color: rgba(0, 0, 0, 0);
	margin-bottom: 0px;
}
.contact_form form .form_row > div input,
.contact_form form .form_row > div select{
	width: 100%;
}
.contact_form form .form_row textarea{
	border: 0px !important;
	background-color: rgba(0, 0, 0, 0);
	border-bottom: 1px solid #5f4b3c !important;
}
.contact_form ::placeholder { 
  font-size: 16px;
  color: #5f4b3c !important;
}
.contact_form :-ms-input-placeholder { 
  font-size: 16px;
  color: #5f4b3c !important;
}
.contact_form ::-ms-input-placeholder { 
  font-size: 16px;
  color: #5f4b3c !important;
}
.contact_form form .nav{
	justify-content: center;
	
}
.contact_form form .send{
	text-decoration: none;
	color: #fff;
	font-size: 16px;
	background-color: #5f4b3c;
	padding: 10px 30px;
	border: 0px;
}

footer{
	background-color: #fff;
}
footer .box{
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: var(--px40);
	margin: 0 auto;
	padding: 40px 0;
}
footer .nav .items{
	display: flex;
	align-items: center;
	gap: var(--px60);
}
footer .line{
	display: flex;
}
footer .line:before{
	content: '';
	width: 1px;
	height: 100%;
	background-color: #5f4b3c;
}
footer .nav .item{
	font-size: var(--px16);
	color: #5f4b3c;
	position: relative;
	display: block;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
}
footer .footer_logo{
	width: 200px;
}
footer .info{
	background-color: #5f4b3c;
	text-align: center;
	padding: 20px;
}
footer .info .copyright{
	color: #fff;
	font-size: var(--px12);
	letter-spacing: 1.5px;
}
footer .info .copyright span:before{
	content: '｜';
}
footer .info .lang{
	color: #fff;
	display: flex;
	align-items: center;
	gap: 6px;
}
footer .info .lang a{
	color: #fff;
	font-size: var(--px12);
	text-decoration: none;
}
footer .social_icon{
	margin-top: 15px;
	display: none;
	justify-content: center;
	align-items: center;
	gap: 10px;
}
footer .social_icon i{
	font-size: 30px;
	color: #fff;
}

input,select{
	background-color: #fff;
	border-radius: 3px; 
	color: #000;
	border: 1px solid #333;
	font-size: 16px;
}
input[type="text"],input[type="phone"],select{
	height: 45px;
	width: 100%;
	margin-bottom: 20px;
}
textarea{
	width: 100%;
	color: #000;
	font-size: 16px;
	margin-bottom: 15px;
}
::placeholder { 
  font-size: 16px;
  color: rgba(0, 0, 0, .5) !important;
}
:-ms-input-placeholder { 
  font-size: 16px;
  color: rgba(0, 0, 0, .5) !important;
}
::-ms-input-placeholder { 
  font-size: 16px;
  color: rgba(0, 0, 0, .5) !important;
}
.reservation{
	position: relative;
	background-color: #fff;
	padding: 80px 0px;
}
.reservation h2{
	color: #333;
	margin-bottom: 50px;
}
.reservation .form_check_txt{
	color: #333;
	margin-left: 10px;
	line-height: 1.8;
}
.reservation .form_check_txt a{
	text-decoration: none;
	color: #333;
}
.reservation .form_check_txt a:hover{
	text-decoration: underline;
	color: #333;
}
.reservation .send_btn,
.reservation .send_btn:hover{
	background-color: #a48b78;
	color: #fff;
}
.reservation #send_btn{
	width: 160px;
    height: 55px;
    font-size: 26px;
    font-weight: 400;
    border: 1px solid #fff;
    margin-top: 20px;
}
.reservation .reg_btn_disabled {
    background-color: #a48b78;
    cursor: no-drop;
    opacity: 0.6;
    color: #fff;
}
.reservation .reg_btn {
    background-color: #a48b78;
    opacity: 1;
    color: #fff;
}
.reservation .reg_btn:hover {
    background-color: #062247;
    color: #fff;
    opacity: 1;
}
.reservation #msgerror{
	color: #333;
	font-size: 14px;
	text-align: center;
	margin-top: 10px;
}
.reservation .cta_block a{
	text-decoration: none;
}
.reservation .cta{
	background-color: #fff;
	width: 100%;
	padding: 50px 0px;
	border:1px solid #333;
	font-size: 20px;
	color: #333;
	line-height: 30px;
	font-weight: 300;
	transition: all 0.3s;
}
.reservation .cta:hover{
	background-color: #333;
	color: #fff;
}
.reservation .cta:hover i{
	color: #fff;
}
.reservation .cta_block{
	margin-bottom: 80px;
}
.reservation .cta > i{
	font-size: 3rem;
	color: #333;
	margin-bottom: 10px;
	display: block;
	transition: all 0.3s;
}

.modal.fade h3{
	color: #333;
}
.modal-body h5{
	margin-bottom: 10px;
	color: #333;
}
.modal-body li{
	line-height: 2;
}

@media (min-width: 2000px) {
    .rwd:after{
        content: 'min2000';
    }
    
    :root {
        --px5:5px;
        --px6:6px;
        --px7:7px;
        --px8:8px;
        --px9:9px;
        --px10:10px;
        --px11:11px;
        --px12:12px;
        --px13:13px;
        --px14:14px;
        --px15:15px;
        --px16:16px;
        --px17:17px;
        --px18:18px;
        --px19:19px;
        --px20:20px;
        --px21:21px;
        --px22:22px;
        --px23:23px;
        --px24:24px;
        --px25:25px;
        --px26:26px;
        --px27:27px;
        --px28:28px;
        --px29:29px;
        --px30:30px;
        --px31:31px;
        --px32:32px;
        --px33:33px;
        --px34:34px;
        --px35:35px;
        --px36:36px;
        --px37:37px;
        --px38:38px;
        --px39:39px;
        --px40:40px;
        --px41:41px;
        --px42:42px;
        --px43:43px;
        --px44:44px;
        --px45:45px;
        --px46:46px;
        --px47:47px;
        --px48:48px;
        --px49:49px;
        --px50:50px;
        --px51:51px;
        --px52:52px;
        --px53:53px;
        --px54:54px;
        --px55:55px;
        --px56:56px;
        --px57:57px;
        --px58:58px;
        --px59:59px;
        --px60:60px;
        --px61:61px;
        --px62:62px;
        --px63:63px;
        --px64:64px;
        --px65:65px;
        --px66:66px;
        --px67:67px;
        --px68:68px;
        --px69:69px;
        --px70:70px;
        --px71:71px;
        --px72:72px;
        --px73:73px;
        --px74:74px;
        --px75:75px;
        --px76:76px;
        --px77:77px;
        --px78:78px;
        --px79:79px;
        --px80:80px;
    }
}


@media (max-width: 1400px) {
    .rwd:after{
        content: 'mx1400';
    }
}

@media (max-width: 1200px) {
    .rwd:after{
        content: 'mx1200';
    }
}
 
@media (max-width: 992px) {
    .rwd:after{
        content: 'mx992';
    }
    
    .title_name .en{
        font-size: 12px;
    }
    
    .logo{
        width: 100%;
        -webkit-filter: brightness(1);
        position: sticky;
        left: 0px;
        top: 0;
        padding: 20px 20px;
        background-color: #5f4b3c;
    }
    .logo img{
        width: 200px;
        -webkit-filter: brightness(10);
    }
    .logo a{
        width: 200px;
        height: 30px;
        background-image: url(../img/load-logo.svg);
    }
    .menu_btn{
        top: 23px;
    }
    .menu_btn .close{
         -webkit-filter: brightness(10);
    }
    header{
        display: block;
        height: 100vh;
    }
    header .nav{
        display: block;
        margin-top: 120px;
    }
    header .nav .items{
        gap: 30px;
        flex-direction: column;
    }
    header .nav .item{
        
        
        text-align: center;
        position: relative;
    }
    header .nav .item:after{
        content: '';
        position: absolute;
        right: -3px;
        top: 8px;
        width: 5px;
        height: 5px;
        border-right: 1px solid #000;
        border-bottom: 1px solid #000;
        -webkit-transform: rotate(-45deg);
        transition: all .3s;
    }
    header .nav .item.active:after{
        -webkit-transform: rotate(0deg);
    }
    header .nav .item > a{
        font-size: 20px;
        font-weight: 400;
    }
    header .nav .item .sub{
        padding-top: 0;
        position: static;
        transform: none;
        width: 100px;
        margin-top: 20px;
        overflow: hidden;
        height: 0px;
        transition: height .5s ease-in;
    }
    header .nav .item:hover .sub{
        transform: none;
    }
    header .nav .item .sub.open{
        transition: height .5s ease-in;
    }
    header .nav .item:nth-child(1) .sub.open{height: 124px;}
    header .nav .item:nth-child(2) .sub.open{height: 52px;}
    header .nav .item:nth-child(3) .sub.open{height: 16px;}
    header .nav .item:nth-child(4) .sub.open{height: 52px;}
    header .nav .item:nth-child(5) .sub.open{height: 52px;}
    header .nav ul{
        background-color: rgba(95, 75, 60, 0);
        padding: 0px;
    }
    header .nav li + li{
        margin-top: 20px;
    }
    header .nav li a{
        font-size: 15px;
        color: #5f4b3c;
    }
    .header_social_icon{
        display: none;
    }
    .rqcode{
        width: 60%;
        flex-direction: column;
        gap: 20px;
    }
    .rqcode .pic a{
        font-size: 14px;
        bottom: 10px;
    }
    
    h2{
        font-size: 30px;
    }
    h3{
        font-size: 24px;
    }
    p{
        font-size: 14px;
    }
    
    .right_line{
        display: none;
    }
    
    .index .kv{
        background-position: 58%;
        background-attachment: scroll;
    }
    .index .kv .bg .text{
        flex-direction: column;
        margin-bottom: 30px;
    }
    .index .kv .bg .text .title{
        width: 100%;
        gap: 0px;
    }
    .index .kv .bg .text .title.a{
        align-items: normal;
        flex-direction: column-reverse;
        margin-bottom: 30px;
    }
    .index .kv h2{
        text-align: center;
    }
    .index .kv h2.en{
        font-size: 30px;
    }
    .index .kv h2.tw{
        font-size: 20px;
    }
    .index .kv .bg .text .line{
        display: none;
    }
    .index .kv .case{
        height: 54vh;
    }
    .index .kv .case .box{
        width: 80%;
        margin-bottom: 20px;
    }
    .index .kv .case .box .bi{
        font-size: 30px;
    }
    
    .index .s1,
    .index .s2{
        overflow: hidden;
    }
    .index .s1 .item.item0{
        background-position: 80%;
    }
    .index .s1 .item.item1{
        background-position: 80%;
    }
    .index .ss .item{
        height: calc(100vh - 100px);
    }
    .index .ss .item .overlayer{
        height: calc(100vh - 100px);
    }
    .index .ss .title{
        width: 90%;
        bottom: 200px;
        left: 15px;
        flex-direction: column;
    }
    .index .ss .title .sub_name{
        margin-top: 30px;
    }
    .index .ss .title .sub_name p{
        white-space: normal;
    }
    .index .ss .title .line{
        display: none;
    }
    
    .index .s3{
        height: calce(100vh - 100px);
    }
    .index .s3 .box{
        width: 90%;
        flex-wrap: wrap;
        justify-content: center;
    }
    .index .s3 .box a{
        width: calc(33.333333% - 15px);
        padding: 0 15px;
        padding-bottom: 30%;
    }
    .index .s3 .box h2{
        font-size: 18px;
    }
    
    .page .title_block{
        padding-bottom: 50%;
        background-size: cover;
    }
    .page .title_name{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 90%;
        z-index: 2;
    }
    .page .title_name h3{
        font-size: 15px;
    }
    .page .main .box{
        width: 80%;
        margin: 50px auto;
    }
    
    .story .main .box .item{
        flex-direction: column;
        margin-top: 80px;
    }
    .story .main .box .item.reverse{
        flex-direction: column;
    }
    .story .main .box .item + .item{
        margin-top: 80px;
    }
    .story .main .box .item .image{
        width: 100%;
    }
    .story .main .box .item .text{
        width: 100%;
    }
    .story .main .box .item .text .txt{
        padding: 10%;
        transform: translateX(0%) translateY(0%);
    }
    .story .main .box .item.reverse .text .txt{
        transform: translateX(0%) translateY(0%);
    }
    .story .main .box .item .text h3{
        line-height: 1.5;
    }
    
    .about .main .box{
        gap: 0%;
        flex-direction: column;
    }
    .about .box .video{
        width: 100%;
    }
    .about .box .text{
        width: 100%;
        margin-top: 30px;
    }
    .about .box .text h2{
        font-size: 20px;
    }
    
    
    .value .main .box{
        gap: 0%;
        flex-direction: column;
    }
    .value .box .image{
        width: 100%;
        padding: 0%;
        padding-left: 0%;
    }
    .value .box .text{
        width: 100%;
        margin-top: 30px;
    }
    .value .box .text h2{
        font-size: 20px;
    }
    .value .pc_block{
        display: none;
    }
    
    .seek .main .box{
        gap: 0%;
        flex-direction: column;
    }
    .seek .box .image{
        width: 90%;
        margin: 0 auto;
        padding: 0%;
    }
    .seek .box .text{
        width: 100%;
        margin-top: 30px;
    }
    .seek .box .text h2{
        font-size: 20px;
    }
    
    .partner .main .box{
        gap: 0%;
        flex-direction: column;
    }
    .partner .box .image{
        width: 60%;
        padding: 0%;
    }
    .partner .box .text{
        width: 100%;
        margin-top: 30px;
    }
    .partner .box .text h2{
        font-size: 20px;
    }
    .partner .box .text p + p{
        margin-top: 15px;
    }
    
    .page.classic_case .title_block{
        background-position: center;
    }
    .classic_case .main .box .items{
        gap: 15px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }
    .classic_case .main .box .items .item{
        font-size: 14px;
    }
    .classic_case .main .box .case{
        gap: 6px;
    }
    .classic_case .main .box .case .caseitem{
        width: calc(50% - 3px);
    }
    .classic_case .main .box .case .caseitem .txt p{
        white-space: nowrap;
    }
    
    .page.classic_detail .title_block{
         background-position: center;
    }
    .classic_detail .main .box{
        gap: 0%;
        flex-direction: column;
    }
    .classic_detail .main .box .image{
        width: 100%;
    }
    .classic_detail .main .box .info{
        width: 100%;
        margin-top: 30px;
    }
    .classic_detail .main .box .info h3{
        font-size: 18px;
    }
    .classic_detail .pc_block{
        display: none;
    }
    
    .latest_case .main .box .items{
        gap: 15px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }
    .latest_case .main .box .items .item{
        font-size: 14px;
    }
    .latest_case .main .box .case{
        gap: 6px;
    }
    .latest_case .main .box .case .caseitem{
        width: calc(50% - 3px);
    }
    
    .news .main .box .item{
        flex-direction: column;
        margin-top: 80px;
    }
    .news .main .box .item.reverse{
        flex-direction: column;
    }
    .news .main .box .item + .item{
        margin-top: 80px;
    }
    .news .main .box .item .image{
        width: 100%;
    }
    .news .main .box .item .text{
        width: 100%;
    }
    .news .main .box .item .text .txt{
        padding: 10%;
        transform: translateX(0%) translateY(0%);
    }
    .news .main .box .item.reverse .text .txt{
        transform: translateX(0%) translateY(0%);
    }
    .news .main .box .item .text h3{
        line-height: 1.5;
    }
    
    .media .box{
        gap: 0px;
    }
    .media .box .item{
        width: calc(100% - 0px);
        margin-bottom: 30px;
    }
    .media .box .item h2{
        font-size: 16px;
    }
    .media .box .item .nav{
        justify-content: center;
    }
    
    .media_con .box .news_con h2{
        margin-bottom: 30px;
        font-size: 24px;
    }
    .media_con .box .news_con .author{
        margin-bottom: 20px;
    }
    .media_con .box .news_con .author a{
        font-size: 14px;
    }
    .media_con .box .news_con h3{
        margin-bottom: 15px;
        line-height: 1.5;
        font-size: 20px;
    }
    .media_con .box .news_con .article_content + .article_content{
        margin-top: 20px;
    }
    
    .contact .main .box .item{
        flex-direction: column;
        margin-top: 80px;
    }
    .contact .main .box .item.reverse{
        flex-direction: column;
    }
    .contact .main .box .item + .item{
        margin-top: 80px;
    }
    .contact .main .box .item .image{
        width: 100%;
    }
    .contact .main .box .item .text{
        width: 100%;
    }
    .contact .main .box .item .text .txt{
        padding: 10%;
        transform: translateX(0%) translateY(0%);
    }
    .contact .main .box .item.reverse .text .txt{
        transform: translateX(0%) translateY(0%);
    }
    .contact .main .box .item .text h3{
        line-height: 1.5;
    }
    
    .service .main .box .pc{
        display: none;
    }
    .service .main .box .m{
        display: block;
    }
    
    .contact_form form .form_row{
        display: block;
    }
    .contact_form form .form_row > div{
        width: 100%;
        margin-bottom: 30px;
    }
    
    footer .box{
        gap: 30px;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
    }
    footer .nav .items{
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    footer .line{
        display: none;
    }
    footer .nav .item{
        font-size: 14px;
    }
    footer .footer_logo{
        width: 130px;
    }
    footer .info{
        justify-content: center;
    }
    footer .info .copyright{
        font-size: 12px;
        text-align: center;
        line-height: 1.8;
    }
    footer .info .copyright span{
        display: block;
    }
    footer .info .copyright span:before{
        content: '';
    }
    footer .social_icon{
        display: flex;
    }
}


@media (max-width: 768px) {
    .rwd:after{
        content: 'mx768';
    }
}


@media (max-width: 576px) {
    .rwd:after{
        content: 'mx576';
    }    
}








