@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;
}
section{
	padding: 80px 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;
}


.slick-slide {
    
}

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

h1{
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
h2{
	font-weight: 300;
	color: #000;
	font-size: var(--px32);
	letter-spacing: 10px;
}
h3{
	font-weight: 300;
	color: #000;
	font-size: var(--px26);
	letter-spacing: 5px;
}
p{
	font-weight: 300;
	color: #000;
	font-size: var(--px16);
	line-height: 1.8;
	letter-spacing: 3px;
	text-align: justify;
}
.sub_t{
	color: #b3b3b3;
	font-size: var(--px20);
	font-weight: 300;
	letter-spacing: 5px;
}
.en_t{
	color: #b3b3b3;
	font-size: var(--px24);
	font-weight: 300;
	letter-spacing: 10px;
	font-family: 'Century Gothic', sans-serif;
}

.tag{
	
	background: -moz-linear-gradient(left,  rgba(174,174,174,1) 0%, rgba(174,174,174,0) 100%); 
	background: -webkit-linear-gradient(left,  rgba(174,174,174,1) 0%,rgba(174,174,174,0) 100%); 
	background: linear-gradient(to right,  rgba(174,174,174,1) 0%,rgba(174,174,174,0) 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#aeaeae', endColorstr='#00aeaeae',GradientType=1 ); 
	padding: 5px 0px 5px 5px;
}

body.index .kv{
	width: 100%;
	height: 100vh;
	background-image: url(../img/kv-bg.png) , url(../img/kv-bg2.png);
	background-position: bottom , center;
	background-size: 20% 30% , 100%;
	background-repeat: repeat-x , repeat;
	position: relative;
	padding: 0;
}
body.index .kv .logo{
	position: absolute;
	top: 20px;
	left: 30px;
	width: 12%;
}
body.index .kv .box{
	display: flex;
	gap: 15%;
	width: 58%;
	margin: auto;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
body.index .kv .box .image{
	width: 75%;
	position: relative;
}
body.index .kv .box .text{
	width: 25%;
}
body.index .kv .box .text .box_t{
	display: flex;
	gap: 5%;
	position: relative;
}
body.index .kv .box .text .box_t .t:nth-child(1){
	width: 25%;
}
body.index .kv .box .text .box_t .t:nth-child(2){
	width: 75%;
	display: flex;
	flex-direction: column;
	
}
body.index .kv .box .text .box_t .t1{
	margin-top: 50%;
}
body.index .kv .box .text .box_t .t2{
	width: 14%;
}
body.index .kv .box .text .box_t .t3{
	margin-top: 40%;
}
body.index .kv .enter{
	width: 45%;
	margin-left: auto;
	margin-top: 50px;
	-webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
    transform: translateX(0px);
    transition: all .3s;
    animation: enter 1s infinite alternate-reverse;
}
@keyframes enter{
    from{
        transform: translateX(0px);
    }
    to{
        transform: translateX(10px);
    }
}
body.index .kv .enter:hover{
	
}
body.index .kv .tree{
	position: absolute;
	width: 50%;
	bottom: 0;
	left: 35%;
	transform-origin: bottom center;
	animation: tree 2s infinite alternate-reverse ease-in-out;
}
@keyframes tree{
    from{
        transform: skew(0deg, 0deg);
    }
    to{
        transform: skew(3deg, 0deg);
    }
}
body.index .kv .cat1{
	position: absolute;
	width: 20%;
	bottom: 20%;
	right: -30%;
	transform-origin: bottom center;
	animation: cat1 1s infinite alternate-reverse ease-in-out;
}
@keyframes cat1{
    from{
        transform: scale(1, 1);
    }
    to{
        transform: scale(1, 0.95);
    }
}
body.index .kv .cat2{
	position: absolute;
	width: 40%;
	bottom: 10%;
	left: -10%;
}
body.index .kv .bird1{
	position: absolute;
	width: 10%;
	top: 35%;
	left: 0%;
	transform-origin: 200% 200%;
	animation: bird1 4.5s infinite linear;
}
@keyframes bird1{
    0%{
    	transform: rotate(0deg);
    }
    100%{
    	transform: rotate(-360deg);
    }
}
body.index .kv .bird3{
	position: absolute;
	width: 8%;
	top: 30%;
	left: 0%;
	opacity: 0;
	animation: bird3 3s infinite linear;
}
@keyframes bird3{
    0%{
    	opacity: 0;
        transform: translateX(0px);
    }
    5%{
    	opacity: 1;
    }
    55%{
    	opacity: 1;
    }
    60%{
    	opacity: 0;
        transform: translateX(-600%);
    }
    100%{
    	opacity: 0;
        transform: translateX(-600%);
    }
}


header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 90%;
	margin-left: auto;
	height: 100px;
	background-color: #f4f4f4;
	position: sticky;
	z-index: 995;
	top: 0;
	transition: all .3s;
	margin-top: -50px;
	padding: 0 var(--px50);
	padding-right: var(--px80);
	border-radius: 30px 0 0 0;
}
header .icon{
	width: var(--px80);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
header .menu_btn{
	display: none;
}
header .logo{
	width: 120px;
}
header .menu{
	display: flex;
}
header .menu .items{
	display: flex;
	align-items: center;
	padding-bottom: 10px;
	border-bottom: 1px solid #a88e73;
}
header .menu .items .item{
	color: #64513d;
	font-size: var(--px16);
	font-weight: 300;
	padding: 0 var(--px16);
	text-decoration: none;
	letter-spacing: 2px;
	position: relative;
}
header .menu .items .item:before{
	content: '';
	width: 70%;
	height: 2px;
	background-color: rgba(0, 0, 0, 0);
	position: absolute;
	bottom: -11px;
	left: 50%;
	transform: translateX(-50%);
	transition: all .4s;
}
header .menu .items .item.active:before,
header .menu .items .item:hover:before{
	background-color: #64513d;
}
header .menu .items .item + .item{
	border-left: 1px solid #64513d;
}

footer{
	background-image: url(../img/footer-bg.jpg);
	background-size: cover;
	padding: 30px 0%;
}
footer .footer_box{
	width: 90%;
	max-width: 1440px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5%;
}
footer .footer_box .name,
footer .footer_box .info{
	
}
footer .footer_box .name > div,
footer .footer_box .info > p{
	color: #fff;
}
footer .footer_box .name > div:nth-child(1){
	font-size: var(--px18);
	letter-spacing: 2px;
	margin-bottom: 10px;
}
footer .footer_box .name > div:nth-child(2){
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
footer .footer_box .name > div:nth-child(2) span:nth-child(1){
	font-size: var(--px14);
	letter-spacing: 4px;
	white-space:nowrap;
}
footer .footer_box .name > div:nth-child(2) span:nth-child(2){
	width: 100%;
	height: 1px;
	background-color: #fff;
}
footer .footer_box .info > p{
	font-size: var(--px12);
}

body.about .box{
	width: 90%;
	max-width: 1440px;
	margin: auto;
}
body.about .kv{
	width: 100%;
	height: calc(100vh - 50px);
	background-image: url(../img/about-1.jpg);
	background-size: cover;
}
body.about .kv h3{
	color: #fff;
	writing-mode: vertical-rl;
	margin: 0 auto;
	text-shadow: 0px 0px 8px #aaa;
	letter-spacing: 10px;
}

body.about .s1 .title{
	background-image: url(../img/about-icon1.png);
	background-position: right bottom;
	background-size: 20%;
	background-repeat: no-repeat;
	padding-bottom: 8vw;
}
body.about .s1 .title h2,
body.about .s1 .title .sub_t{
	margin-bottom: 20px;
}
body.about .s1 .text{
	width: 50%;
	margin-left: auto;
	padding-left: var(--px30);
	border-left: 1px solid #333;
}
body.about .s1 .text h3{
	margin-bottom: 20px;
}
body.about .s1 .icon2{
	width: 50%;
	margin-top: calc(var(--px30) * -1);
}
body.about .s1 .icon21{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	transform-origin: bottom center;
	animation: icon21 2s infinite alternate-reverse ease-in-out;
}
@keyframes icon21{
    0%{
        transform: skew(5deg, 0deg);
    }
    100%{
        transform: skew(-5deg, 0deg);
    }
}

body.about .s2 .box{
	position: relative;
}
body.about .s2 .image{
	position: absolute;
	z-index: 3;
	right: 0;
	top: 0;
	width: 35%;
}
body.about .s2 .image .icon3{
	transform: translateY(-30%);
}
body.about .s2 .image .txt{
	display: inline-block;
	position: relative;
	z-index: 2;
	left: 100%;
	transform: translateX(-100%);
}
body.about .s2 .image .txt p{
	writing-mode: vertical-rl;
	border: 1px solid #ccc;
	padding: 15px 15px;
	letter-spacing: 5px;
}
body.about .s2 .text{
	width: 50%;
}
body.about .s2 .text .en_t,
body.about .s2 .text h2,
body.about .s2 .text h3{
	margin-bottom: 20px;
}

body.about .s3{
	padding: 0;
	position: relative;
}
body.about .s3 .box{
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translateX(-50%)  translateY(-50%);
}
body.about .s3 .box h3{
	text-align: right;
}
body.about .s3 .icon4{
	position: absolute;
	z-index: 2;
	width: 35%;
	left: 0;
	bottom: 0;
	transform: translateY(25%) skew(0deg, 2deg);
	transform-origin: center left;
	animation: icon4 2s infinite alternate-reverse ease-in-out;
}
@keyframes icon4{
    0%{
        transform: translateY(25%) skew(0deg, 2deg);
    }
    100%{
        transform: translateY(25%) skew(0deg, -2deg);
    }
}

body.about .s4{
	padding: 160px 0;
}
body.about .s4 .title h2,
body.about .s4 .title .sub_t,
body.about .s4 .text .txt h3{
	margin-bottom: 20px;
}
body.about .s4 .text{
	display: flex;
	flex-wrap: wrap;
	margin-top: var(--px50);
}
body.about .s4 .text .txt{
	width: 50%;
	background-color: #dcdddd;
	padding: 3% 4% 3% 3%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
body.about .s4 .text .image{
	position: relative;
	width: calc(50% + 20px);
	transform: translateY(-20%);
	margin-left: -20px;
}
body.about .s4 .text .image .icon5{
	position: absolute;
	z-index: 2;
	width: 20%;
	bottom: 0;
	right: 0;
	transform: translateX(50%) translateY(50%);
}
body.about .s4 .text .icon5m{
	display: none;
}
body.about .s4 .slick-dots{
	bottom: -25px;
}

body.about .s5{
	padding: 0;
	position: relative;
}
body.about .s5 .box{
	position: absolute;
	z-index: 2;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
body.about .s5 .box .icon7{
	width: 15%;
	transform: translateY(30%);
}
body.about .s5 .icon71{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	transform-origin: bottom center;
	animation: icon71 2s infinite alternate-reverse ease-in-out;
}
@keyframes icon71{
    0%{
        transform: skew(5deg, 0deg);
    }
    100%{
        transform: skew(-5deg, 0deg);
    }
}

body.about .s6 .box{
	display: flex;
	align-items: flex-end;
}
body.about .s6 .box .image,
body.about .s6 .text{
	width: 50%;
}
body.about .s6 .box .image{
	position: relative;
}
body.about .s6 .box .image .icon6{
	position: absolute;
	z-index: 2;
	width: 25%;
	bottom: -20%;
	left: 45%;
}
body.about .s6 .image .en_t{
	line-height: 1.5;
	margin-bottom: 35px;
}
body.about .s6 .text h2{
	margin-bottom: 20px;
}
body.about .s6 .text h3{
	margin-bottom: 35px;
}
body.about .s6 .text span{
	display: block;
}

body.about .s7{
	padding: 80px 0 160px 0;
}
body.about .s7 .text .txt h2{
	margin-bottom: 20px;
}
body.about .s7 .text .txt h3{
	margin-bottom: 30px;
}
body.about .s7 .text{
	display: flex;
	flex-wrap: wrap;
	margin-top: var(--px50);
}
body.about .s7 .text .txt{
	position: relative;
	background-color: #dcdddd;
	padding: 3% 3% 3% 4%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
}
body.about .s7 .text .txt .icon8{
	position: absolute;
	width: 25%;
	right: 0;
	bottom: -12%;

    transform: translateY(-20px);
    animation: icon8 2s 0s infinite alternate;
}
body.about .s7 .text .image{
	position: relative;
	width: calc(50% + 20px);
	margin-right: -20px;
	transform: translateY(10%);
}
@keyframes icon8 {
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

body.aesthetics .box{
	width: 90%;
	height: 100%;
	max-width: 1440px;
	margin: auto;
	position: relative;
}
body.aesthetics .kv{
	width: 100%;
	height: calc(100vh - 50px);
	background-image: url(../img/aesthetics-1.jpg);
	background-size: cover;
}
body.aesthetics .kv h3{
	color: #fff;
	margin: 0 auto;
	line-height: 1.5;
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 10%;
}
body.aesthetics .kv h3 span{
	display: block;
	font-size: var(--px20);
}

body.aesthetics .s1{
	padding-top: 160px;
}
body.aesthetics .s1 .box{
	display: flex;
	gap: 5%;
}
body.aesthetics .s1 .box .text{
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
body.aesthetics .s1 .title h2,
body.aesthetics .s1 .title .sub_t{
	margin-bottom: 20px;
}
body.aesthetics .s1 .box .text .txt .icon1{
	width: 40%;
	transform: translateX(-40%);
}
body.aesthetics .s1 .box .items{
	width: 50%;
}
body.aesthetics .s1 .box .items .items_box{
	padding: 1px;
	padding-right: 0;
	background-color: #808080;
	display: flex;
	flex-wrap: wrap;
	gap: 1px;
}
body.aesthetics .s1 .box .items .item{
	width: calc(33.333333% - 1px);
	padding-bottom: 25%;
	background-color: #f2f2f2;
	position: relative;
}
body.aesthetics .s1 .box .items .item .con{
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}
body.aesthetics .s1 .box .items .item .pic{
	width: 25%;
	margin: 0 auto 15px auto;
}
body.aesthetics .s1 .box .items .item .item_c2,
body.aesthetics .s1 .box .items .item .item_c3{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transform-origin: center center;
	animation: item_c23 4s 2s infinite;
}
body.aesthetics .s1 .box .items .item .item_c1{
	transform-origin: center center;
	animation: item_c1 4s 0s infinite;
}
@keyframes item_c1{
    0%,59%{
        transform: rotate(360deg);
    }
    60%{
    	transform: rotate(360deg);
    }
    100%{
        transform: rotate(0deg);
    }
}
@keyframes item_c23{
    0%,44%{
        opacity: 0;
        transform: translateY(0);
    }
    45%{
    	opacity: 0;
        transform: translateY(10px);
    }
    65%{
    	opacity: 1;
        transform: translateY(0);
    }
    96%{
    	opacity: 1;
        transform: translateY(0);
    }
    100%{
        opacity: 0;
        transform: translateY(0);
    }
}
body.aesthetics .s1 .box .items .item:nth-child(1) .pic{
	width: 40%;
}
body.aesthetics .s1 .box .items .item .t,
body.aesthetics .s1 .box .items .item .s{
	color: #64513d;
	text-align: center;
	line-height: 1.2;
}
body.aesthetics .s1 .box .items .item .t{
	font-size: var(--px20);
	font-weight: 500;
}
body.aesthetics .s1 .box .items .item .s{
	font-size: var(--px16);
	font-weight: 300;
	margin-top: 10px;
}

body.aesthetics .s2 .bg{
	width: 100%;
	padding-bottom: 41.35vw;
	background-image: url(../img/aesthetics-2.jpg);
	background-size: cover;
}

body.aesthetics .s3 .box:nth-child(1){
	display: flex;
	align-items: center;
}
body.aesthetics .s3 .box .title,
body.aesthetics .s3 .box .text{
	width: 50%;
}
body.aesthetics .s3 .title .en_t,
body.aesthetics .s3 .title h2{
	margin-bottom: 20px;
}
body.aesthetics .s3 .text .txt{
	border-left: 1px solid #000;
	padding-left: var(--px30);
}
body.aesthetics .s3 .box:nth-child(2){
	display: flex;
	gap: 4%;
	padding: 160px 0;
	position: relative;
}
body.aesthetics .s3 .box:nth-child(2) .icon2{
	position: absolute;
	width: 8%;
	top: 5%;
	left: 0;
	transform: translateX(-70%);
}
body.aesthetics .s3 .box:nth-child(2) .icon3{
	position: absolute;
	width: 30%;
	right: -5%;
	bottom: 0;
}

body.aesthetics .s4 .items{
	display: flex;
}
body.aesthetics .s4 .items .item:before{
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(100, 81, 61, 0);
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	transition: all .3s;
}
body.aesthetics .s4 .items .item:hover:before{
	background-color: rgba(100, 81, 61, .9);
}
body.aesthetics .s4 .items .item{
	position: relative;
	width: 20%;
	height: 42vw;
	min-height: 400px;
	background-size: cover;
	overflow: hidden;
	cursor: pointer;
	transform: scale(1);
	transition: all .3s;
}
body.aesthetics .s4 .items .item:nth-child(1){
	background-image: url(../img/aesthetics-4-1.jpg);
	background-position: bottom center;
}
body.aesthetics .s4 .items .item:nth-child(2){
	background-image: url(../img/aesthetics-4-2.jpg);
	background-position: bottom center;
}
body.aesthetics .s4 .items .item:nth-child(3){
	background-image: url(../img/aesthetics-4-3.jpg);
	background-position: bottom center;
}
body.aesthetics .s4 .items .item:nth-child(4){
	background-image: url(../img/aesthetics-4-4.jpg);
	background-position: bottom center;
}
body.aesthetics .s4 .items .item:nth-child(5){
	background-image: url(../img/aesthetics-4-5.jpg);
	background-position: bottom center;
}
body.aesthetics .s4 .items .item:hover{
	transform: scale(1.03);
	z-index: 3;
}
body.aesthetics .s4 .items .item .text{
	position: relative;
	z-index: 3;
	padding: var(--px40);
}
body.aesthetics .s4 .items .item .text h2,
body.aesthetics .s4 .items .item .text h3,
body.aesthetics .s4 .items .item .text p{
	color: #fff;
}
body.aesthetics .s4 .items .item .text h3,
body.aesthetics .s4 .items .item .text p{
	opacity: 0;
	transition: all .3s;
}
body.aesthetics .s4 .items .item .text p span{
	display: block;
	font-size: var(--px20);
}
body.aesthetics .s4 .items .item:hover .text h3,
body.aesthetics .s4 .items .item:hover .text p{
	opacity: 1;
}
body.aesthetics .s4 .items .item .text h2{
	margin-bottom: var(--px50);
	line-height: 1.2;
	letter-spacing: 5px;
}
body.aesthetics .s4 .items .item .text h3{
	margin-bottom: var(--px30);
	position: relative;
}
body.aesthetics .s4 .items .item .text h3:before{
	content: '';
	width: 115%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	right: -15%;
	bottom: -15px;
}
body.aesthetics .s4 .items .item .text h3:after{
	content: '';
	width: 50%;
	height: 3px;
	background-color: #fff;
	position: absolute;
	left: 0;
	bottom: -15.5px;
}

body.aesthetics .s5{
	padding-bottom: 160px;
}
body.aesthetics .s5 .title{
	position: relative;
	margin-bottom: 50px;
}
body.aesthetics .s5 .title .icon4{
	position: absolute;
	z-index: 2;
	bottom: -50px;
	right: 30px;
	width: 30%;
}
body.aesthetics .s5 .title .icon4 .icon42{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	transform-origin: bottom center;
	animation: aesthetics_icon42 2s infinite alternate-reverse ease-in-out;
}
@keyframes aesthetics_icon42{
    0%{
        transform: skew(5deg, 0deg);
    }
    100%{
        transform: skew(-5deg, 0deg);
    }
}
body.aesthetics .s5 .title h2,
body.aesthetics .s5 .title .sub_t,
body.aesthetics .s5 .text .txt h3{
	margin-bottom: 20px;
}
body.aesthetics .s5 .text{
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	margin-top: var(--px50);
}
body.aesthetics .s5 .text .txt{
	width: 50%;
}
body.aesthetics .s5 .text .txt .con{
	background-color: #dcdddd;
	padding: 10% 15% 10% 10%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
body.aesthetics .s5 .text .image{
	position: relative;
	width: calc(50% + 20px);
	transform: translateY(-5%);
	margin-left: -20px;
}
body.aesthetics .s5 .slick-dots{
	bottom: -25px;
}

body.case .box{
	width: 90%;
	height: 100%;
	max-width: 1440px;
	margin: auto;
	padding: 80px 0;
	position: relative;
	display: flex;
}
body.case .s1,
body.case .s2{
	padding: 0;
}
body.case .box .sub_t,
body.case .box .en_t{
	color: #000;
	position: relative;
}
body.case .box .sub_t{
	margin-bottom: 10px;
}
body.case .box .sub_t:after{
	content: '';
	width: 38%;
	height: 1px;
	background-color: #999;
	position: absolute;
	bottom: 0;
}
body.case .box .en_t{
	white-space: nowrap;
}

body.case .s1 .box{
	justify-content: flex-start;
}
body.case .s1 .box .icon1{
	position: absolute;
	z-index: 2;
	width: 10%;
	right: 0;
	top: -20%;
	animation: wobble 3s infinite alternate-reverse ease-in-out;
}
body.case .s1 .box .en_t{
	transform: translateX(40%);
}
body.case .s1 .box .sub_t:after{
	left: 40%;
}

body.case .s2 .box{
	justify-content: flex-end;
}
body.case .s2 .box .sub_t{
	transform: translateX(-55%);
}
body.case .s2 .box .sub_t:after{
	left: 55%;
}
body.case .s2 .box .icon2{
	position: absolute;
	z-index: 2;
	width: 15%;
	left: 0;
	top: -20%;
}
body.case .s2 .box .icon2 .icon21{
	transform-origin: bottom center;
	animation: case_icon21 2s infinite alternate-reverse ease-in-out;
}
body.case .s2 .box .icon2 .icon22{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}
@keyframes case_icon21{
    0%{
        transform: skew(5deg, 0deg);
    }
    100%{
        transform: skew(-5deg, 0deg);
    }
}

body.case_new .box{
	width: 90%;
	height: 100%;
	max-width: 1440px;
	margin: auto;
	padding: 80px 0;
	position: relative;
	display: flex;
	justify-content: flex-end;
}
body.case_new .box2{
	padding: 0 0 30px 0;
}
body.case_new .s1{
	padding: 0;
}
body.case_new .s1 .box .title{
	position: absolute;
	z-index: 2;
	top: -40px;
	left: 0;
}
body.case_new .s1 .box .title h2{
	writing-mode: vertical-rl;
	color: #000;
	border: 1px solid #000;
	padding: 60px 15px 10px 15px;
}
body.case_new .s1 .box .title .en_t{
	font-size: var(--px12);
	letter-spacing: 1px;
	margin-top: 10px;
	line-height: 1.2;
}
body.case_new .s1 .box .info{
	width: 40%;
}
body.case_new .s1 .box .more{
	border: 1px solid #a5a5a5;
	font-size: var(--px16);
	letter-spacing: 2px;
	padding: 8px 15px;
	color: #808080;
	background-color: #eaeaea;
	text-decoration: none;
	transition: all .3s;
}
body.case_new .s1 .box .more:hover{
	background-color: #505050;
	color: #fff;
}

body.news .s1{
	padding: 160px 0 80px 0;
	min-height: calc(100vh - 120px);
	overflow: hidden;
}
body.news .s1 .box{
	width: 90%;
	height: 100%;
	max-width: 1440px;
	margin: auto;
	display: flex;
	gap: 3%;
}
body.news .s1 .box .image{
	width: 60%;
}
body.news .s1 .box .lists{
	width: 40%;
	position: relative;
}
body.news .s1 .box .lists .icon1{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 35%;
}
body.news .s1 .box .lists .icon1 .icon12{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	transform-origin: bottom center;
	animation: news_icon12 5s infinite ease-in-out;
}
@keyframes news_icon12{
    0%{
        transform: translateX(100%);
        opacity: 0;
    }
    10%,80%{
    	opacity: 1;
    }
    100%{
        transform: translateX(0%);
        opacity: 0;
    }
}
body.news .s1 .box .image .title{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
	margin-bottom: 30px;
}
body.news .s1 .box .image .title h2,
body.news .s1 .box .image .title .en_t{
	color: #000;
}
body.news .s1 .box .image .line{
	width: 20%;
	height: 1px;
	background-color: #999;
	display: inline-block;
}
body.news .s1 .box .lists .search{
	display: flex;
	align-items: center;
	gap: 10px;
	border: 1px solid #999;
	margin-bottom: 30px;
	padding-left: 10px;
}
body.news .s1 .box .lists .search input{
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0px !important;
	height: 40px;
	border-style: none !important;
	outline:none;
}
body.news .s1 .box .lists .search i{
	font-size: var(--px20);
	padding: 0 5px;
}
body.news .s1 .box .lists .t{
	font-size: var(--px20);
	font-weight: 300;
	padding-bottom: 20px;
}
body.news .s1 .box .lists .t:after{
	content: '';
	width: 100%;
	height: 1px;
	display: block;
	margin-top: 20px;
	background: -moz-linear-gradient(left, rgba(185,185,185,1) 0%, rgba(185,185,185,0) 100%);
    background: -webkit-linear-gradient(left, rgba(185,185,185,1) 0%,rgba(185,185,185,0) 100%);
    background: linear-gradient(to right, rgba(185,185,185,1) 0%,rgba(185,185,185,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b9b9b9', endColorstr='#00b9b9b9',GradientType=1 );
}
body.news .s1 .box .lists .items{
	height: 60%;
	overflow-y: auto;
}

body.news .s1 .box .lists .items::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #b7e2d3;
}

body.news .s1 .box .lists .items::-webkit-scrollbar {
  width: 6px;
  background-color: black;
}

body.news .s1 .box .lists .items::-webkit-scrollbar-thumb {
  background-color: #139D6B;
}
body.news .s1 .box .lists .items .item{
	padding-bottom: 20px;
	display: block;
	text-decoration: none;
}
body.news .s1 .box .lists .items .item:after{
	content: '';
	width: 100%;
	height: 1px;
	display: block;
	margin-top: 20px;
	background: -moz-linear-gradient(left, rgba(185,185,185,1) 0%, rgba(185,185,185,0) 100%);
    background: -webkit-linear-gradient(left, rgba(185,185,185,1) 0%,rgba(185,185,185,0) 100%);
    background: linear-gradient(to right, rgba(185,185,185,1) 0%,rgba(185,185,185,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b9b9b9', endColorstr='#00b9b9b9',GradientType=1 );
}
body.news .s1 .box .lists .items .item .text{
	display: flex;
	align-items: center;
}
body.news .s1 .box .lists .items .item .text .date,
body.news .s1 .box .lists .items .item .text .txt{
	font-size: var(--px16);
	font-weight: 300;
	color: #666;
	text-decoration: none;
}
body.news .s1 .box .lists .items .item .text .txt{
	line-height: 1.5;
	transition: all .3s;
}
body.news .s1 .box .lists .items .item .text .txt:hover{
	color: #000;
}
body.news .s1 .box .lists .items .item .text .date{
	position: relative;
}
body.news .s1 .box .lists .items .item .text .line{
	width: 30px;
	height: 1px;
	margin: 0 10px;
	background: -moz-linear-gradient(left, rgba(185,185,185,1) 0%, rgba(185,185,185,0) 100%);
    background: -webkit-linear-gradient(left, rgba(185,185,185,1) 0%,rgba(185,185,185,0) 100%);
    background: linear-gradient(to right, rgba(185,185,185,1) 0%,rgba(185,185,185,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b9b9b9', endColorstr='#00b9b9b9',GradientType=1 );
}
body.news .slick-news .pic .img_txt{
	right: auto;
	top: auto;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, .5);
	padding: 15px;
	color: #fff;
	font-size: var(--px16);
}


body.online .s1{
	padding: 160px 0 80px 0;
	min-height: calc(100vh - 120px);
}
body.online .s1 .box{
	width: 90%;
	height: 100%;
	max-width: 1440px;
	margin: auto;
	display: flex;
	gap: 1%;
}
body.online .s1 .box .icon1{
	width: 22%;
	transform: translateY(-20%);
}
body.online .s1 .box .icon1 img{
	animation: pulse 3s infinite alternate-reverse ease-in-out;
}
body.online .s1 .box .title{
	display: flex;
	gap: 20px;
	flex-direction: column;
	align-items: center;
}
body.online .s1 .box .title .t,
body.online .s1 .box .title .en_t{
	writing-mode: vertical-rl;
}
body.online .s1 .box .title .t{
	font-size: var(--px24);
	font-weight: 300;
	letter-spacing: 5px;
	color: #000;
}
body.online .s1 .box .title .line{
	width: 1px;
	height: 50%;
	background-color: #999;
}
body.online .s1 .box .items{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 1px;
	position: relative;
}
body.online .s1 .box .items .item{
	width: calc(33.333333% - 1px);
	position: relative;
}
body.online .s1 .box .items .item:before{
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	transition: all .3s;
}
body.online .s1 .box .items .item.soon:before{
	background-color: rgba(0, 0, 0, 0);
}
body.online .s1 .box .items .item:hover:before{
	background-color: rgba(0, 0, 0, .3);
}
body.online .s1 .box .items .item.soon:hover:before{
	background-color: rgba(0, 0, 0, 0);
}
body.online .s1 .box .items .item h2{
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	color: #fff;
	text-shadow: 2px 2px 2px #333;
	white-space: nowrap;
	letter-spacing: 5px;
}

body.contact .s1{
	padding: 0;
	background-image: url(../img/contact-1.jpg);
	background-size: cover;
	width: 100%;
	padding-bottom: 33.41vw;
	position: relative;
}
body.contact .s1 .box{
	width: 90%;
	max-width: 1440px;
	position: absolute;
	z-index: 2;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
}
body.contact .s1 .box h2{
	color: #999;
}

body.contact .s2 .box{
	width: 90%;
	max-width: 1440px;
	margin: auto;
}
body.contact .s2 .box:nth-child(1){
	display: flex;
	gap: 2%;
}
body.contact .s2 .box:nth-child(1) .info{
	width: 55%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
}
body.contact .s2 .box:nth-child(1) .info .icon1{
	position: absolute;
	z-index: 2;
	width: 15%;
	right: 0;
	bottom: 0;
}
body.contact .s2 .box:nth-child(1) .form{
	width: 45%;
}
body.contact .s2 .box:nth-child(1) .form .input_block{
	display: flex;
	gap: 2%;
}
body.contact .s2 .box:nth-child(1) .form textarea{
	width: 100%;
	height: 300px;
}
body.contact .s2 .box:nth-child(2) .check_block{
	margin-top: 30px;
}
body.contact .s2 .box:nth-child(2) .check_block label{
    color: #767474;
    margin-left: 5px;
    font-size: var(--px16);
    font-weight: 300;
    letter-spacing: 1px;
}
body.contact .s2 .box:nth-child(2) .check_block label a{
	text-decoration: none;
	color: #767474;
}
body.contact .s2 .box:nth-child(2) button{
	width: 100%;
	background-color: #dbdcdc;
	color: #595757;
	border: 0px;
	padding: 10px;
	font-size: var(--px20);
	font-weight: 300;
	margin-top: 30px;
	cursor: pointer;
}

input,select{
	background-color: rgba(0, 0, 0, 0);
	border-radius: 3px; 
	color: #595757 !important;
	border: 1px solid #323232 !important;
	font-size: 16px;
	
}
input[type="text"],input[type="phone"],select{
	height: 45px;
	width: 100%;
	margin-bottom: 20px;
}
textarea{
	width: 100%;
	color: #595757;
	font-size: 16px;
	background-color: rgba(0, 0, 0, 0);
	
}
::placeholder { 
  font-size: 16px;
  color: #9d9c9c !important;
}
:-ms-input-placeholder { 
  font-size: 16px;
  color: #9d9c9c !important;
}
::-ms-input-placeholder { 
  font-size: 16px;
  color: #9d9c9c !important;
}

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



body.contact .reg_btn_disabled {
    
    cursor: no-drop;
    opacity: 0.3;
    
}
body.contact .reg_btn {

    
}

body.contact #msgerror{
	color: #333;
	font-size: 14px;
	text-align: center;
	margin-top: 10px;
}


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

@media (max-width: 1200px) {
    .rwd:after{
        content: 'mx1200';
    }
}
 
@media (max-width: 992px) {
    .rwd:after{
        content: 'mx992';
    }
    
    h2{
        font-size: 24px;
        letter-spacing: 5px;
    }
    h3{
        font-size: 20px;
        letter-spacing: 5px;
    }
    p{
        font-size: 14px;
        letter-spacing: 2px;
    }
    .sub_t{
        font-size: 16px;
        letter-spacing: 3px;
    }
    .en_t{
        font-size: 20px;
        letter-spacing: 5px;
    }
    
    body.index .kv{
        background-size: 20% 16% , 100%;
        overflow: hidden;
    }
    body.index .kv .logo{
        position: absolute;
        top: 10px;
        left: 10px;
        width: 30%;
    }
    body.index .kv .box{
        display: flex;
        flex-direction: column-reverse;
        gap: 50px;
        width: 100%;
        margin: auto;
        position: absolute;
        bottom: 0;
        left: 0%;
        transform: translateX(0%);
    }
    body.index .kv .box .image{
        width: 70%;
        position: relative;
        left: 40%;
    }
    body.index .kv .box .text{
        width: 40%;
        margin: auto;
    }
    body.index .kv .box .text .box_t{
        display: flex;
        gap: 10%;
        position: relative;
    }
    body.index .kv .box .text .box_t .t:nth-child(1){
        width: 25%;
    }
    body.index .kv .box .text .box_t .t:nth-child(2){
        width: 75%;
        display: flex;
        flex-direction: column;
        
    }
    body.index .kv .box .text .box_t .t1{
        margin-top: 50%;
    }
    body.index .kv .box .text .box_t .t2{
        width: 14%;
    }
    body.index .kv .box .text .box_t .t3{
        margin-top: 40%;
    }
    body.index .kv .enter{
        width: 45%;
        margin-left: auto;
        margin-top: 0px;
        -webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
        filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
        transform: translateX(0px);
        transition: all .3s;
    }
    body.index .kv .enter:hover{
        transform: translateX(10px);
    }
    body.index .kv .tree{
        position: absolute;
        width: 50%;
        bottom: 0;
        left: 35%;
    }
    body.index .kv .cat1{
        position: absolute;
        width: 20%;
        bottom: 20%;
        right: auto;
        left: -40%;
    }
    body.index .kv .cat2{
        position: absolute;
        width: 40%;
        bottom: 10%;
        left: -10%;
    }
    body.index .kv .bird1{
        position: absolute;
        width: 10%;
        top: 35%;
        left: 0%;
    }
    body.index .kv .bird3{
        position: absolute;
        width: 8%;
        top: 30%;
        left: 0%;
    }
    
    
    
    header{
        display: block;
        width: 100%;
        height: auto;
        position: fixed;
        margin-top: 0px;
        padding: 0;
        border-radius: 0;
    }
    header .icon{
        display: none;
    }
    header .logo{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 15px 0;
    }
    header .logo .pic{
        width: 20%;
        margin: auto;
    }
    header .menu{
        position: absolute;
        z-index: 10;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;

        background: linear-gradient(rgba(85, 82, 83, 0.9), rgba(85, 82, 83, 0.9));
        background-position: 0% 50%;
        background-size: cover;

        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: all .3s;
    }
    header .menu.active{
        transform: translateX(0%);
    }
    header .menu:after{
        display: none;
    }
    header .menu .items{
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        border-bottom: 0px;
    }
    header .menu .items .item{
        color: #fff;
        font-size: 16px;
        padding: 0 16px;
        margin-top: 20px;
    }
    header .menu .items .item.active:before,
    header .menu .items .item:hover:before{
        background-color: #fff;
    }
    header .menu .items .item + .item{
        border-left: 0px solid #64513d;
    }
    header .menu_btn{
        display: block;
        position: absolute;
        z-index: 999;
        width: 30px;
        height: 100%;
        background-color: rgba(0, 0, 0, 0);
        top: 0;
        right: 15px;
    }
    header .menu_btn .line{
        width: 100%;
        height: 1px;
        background-color: #333;
        position: absolute;
        top: 50%;
    }
    header .menu_btn:before{
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        z-index: 9;
        top: 50%;
        transform: translateY(-10px);
        background-color: #333;
        transition: all .3s;
    }
    header .menu_btn:after{
        content: '';
        width: 100%;
        height: 1px;
        position: absolute;
        z-index: 9;
        top: 50%;
        transform: translateY(10px);
        background-color: #333;
        transition: all .3s;
    }
    header .menu_btn.active .line{
        display: none;
    }
    header .menu_btn.active:before{
        transform: translateY(-5px) translateX(5px) rotate(45deg);
        background-color: #fff;
    }
    header .menu_btn.active:after{
        transform: translateY(-5px) translateX(5px) rotate(-45deg);
        background-color: #fff;
    }
    
    footer .footer_box{
        display: block;
    }
    footer .footer_box .name > div:nth-child(1){
        font-size: 14px;
    }
    footer .footer_box .name > div:nth-child(2) span:nth-child(1){
        font-size: 14px;
    }
    footer .footer_box .info{
        margin-top: 20px;
    }
    footer .footer_box .info > p{
        font-size: 12px;
    }
    
    body.about .kv{
        height: 100vh;
        background-position: center;
    }
    body.about .kv h3{
        margin-top: 20px;
        letter-spacing: 8px;
    }
    
    body.about .s1{
        padding: 50px 0;
    }
    body.about .s1 .title{
        background-size: 30%;
    }
    body.about .s1 .title h2,
    body.about .s1 .title .sub_t{
        margin-bottom: 10px;
    }
    body.about .s1 .text{
        width: 100%;
        padding-left: 20px;
        margin-top: 20px;
    }
    body.about .s1 .text h3{
        margin-bottom: 10px;
    }
    body.about .s1 .icon2{
        width: 90%;
        margin: 30px auto 0 auto;
    }
    
    body.about .s2{
        padding: 50px 0;
        padding-top: 0;
        overflow: hidden;
    }
    body.about .s2 .image{
        position: static;
        width: 100%;
        margin-left: auto;
        display: flex;
        align-items: flex-end;
        margin-top: 30px;
    }
    body.about .s2 .image .icon3{
        width: 45%;
        transform: translateY(0%);
    }
    body.about .s2 .image .icon3 img{
        width: 120%;
        transform: translateX(-30px);
    }
    body.about .s2 .image .txt{
        width: 55%;
        left: 0%;
        transform: translateX(0%);
    }
    body.about .s2 .image .txt p{
        writing-mode: horizontal-tb;
        padding: 10px 15px;
    }
    body.about .s2 .text{
        width: 100%;
    }
    body.about .s2 .text .en_t,
    body.about .s2 .text h2,
    body.about .s2 .text h3{
        margin-bottom: 10px;
    }
    body.about .s2 .text h3{
        line-height: 1.5;
    }
    body.about .s2 .text h3 span{
        display: block;
    }
    
    body.about .s3{
        width: 100%;
        height: 50vh;
        background-image: url(../img/about-2.jpg);
        background-position: center center;
        background-size: cover;
    }
    body.about .s3 .bg{
        display: none;
    }
    body.about .s3 .box h3{
        line-height: 1.5;
    }
    body.about .s3 .box h3 span{
        display: block;
    }
    body.about .s3 .icon4{
        width: 50%;
        transform: translateY(60%) skew(0deg, 2deg);
        animation: icon4m 2s infinite alternate-reverse ease-in-out;
    }
    @keyframes icon4m{
        0%{
            transform: translateY(60%) skew(0deg, 2deg);
        }
        100%{
            transform: translateY(60%) skew(0deg, -2deg);
        }
    }
    
    body.about .s4{
        padding: 100px 0;
    }
    body.about .s4 .title{
        margin-bottom: 20px;
    }
    body.about .s4 .title h2,
    body.about .s4 .title .sub_t,
    body.about .s4 .text .txt h3{
        margin-bottom: 10px;
    }
    body.about .s4 .text .txt h3{
        line-height: 1.5;
    }
    body.about .s4 .text .txt h3 span{
        display: block;
    }
    body.about .s4 .text{
        flex-direction: column-reverse;
        margin-top: 0;
        position: relative;
    }
    body.about .s4 .text .txt{
        width: 100%;
        padding: 10% 5% 10% 5%;
        display: block;
    }
    body.about .s4 .text .image{
        position: static;
        width: 100%;
        transform: translateY(0%);
        margin-left: 0px;
    }
    body.about .s4 .text .image .icon5{
        display: none;
    }
    body.about .s4 .text .icon5m{
        display: block;
        position: absolute;
        z-index: 2;
        width: 20%;
        bottom: 0;
        right: 0;
        transform: translateX(0%) translateY(60%);
    }
    
    body.about .s5{
        width: 100%;
        height: 50vh;
        background-image: url(../img/about-6.jpg);
        background-position: center left;
        background-size: cover;
    }
    body.about .s5 .bg{
        display: none;
    }
    body.about .s5 .box .icon7{
        width: 30%;
        transform: translateY(30%);
    }
    
    body.about .s6{
        padding-bottom: 50px;
        padding-top: 100px;
    }
    body.about .s6 .box{
        display: block;
    }
    body.about .s6 .box .image,
    body.about .s6 .text{
        width: 100%;
    }
    body.about .s6 .box .image{
        position: relative;
    }
    body.about .s6 .box .image .icon6{
        width: 30%;
        left: auto;
        right: 0;
    }
    body.about .s6 .image .en_t{
        margin-bottom: 25px;
    }
    body.about .s6 .text{
        margin-top: 40px;
    }
    body.about .s6 .text h2{
        margin-bottom: 10px;
    }
    body.about .s6 .text h3{
        margin-bottom: 25px;
    }
    body.about .s6 .text span{
        display: none;
    }
    
    body.about .s7{
        padding: 0px 0 80px 0;
    }
    body.about .s7 .text .txt h2{
        margin-bottom: 10px;
    }
    body.about .s7 .text .txt h3{
        margin-bottom: 20px;
        line-height: 1.5;
    }
    body.about .s7 .text .txt h3 span{
        display: block;
    }
    body.about .s7 .text{
        flex-direction: column;
        margin-top: 0;
    }
    body.about .s7 .text .txt{
        padding: 5%;
        width: 100%;
    }
    body.about .s7 .text .txt .icon8{
        width: 35%;
        bottom: -15%;
    }
    body.about .s7 .text .image{
        width: 100%;
        transform: translateY(0%);
    }
    
    body.aesthetics .kv{
        height: 100vh;
        background-position: 26%;
    }
    body.aesthetics .kv h3{
        width: 100%;
        bottom: 0%;
    }
    body.aesthetics .kv h3 span{
        font-size: 12px;
    }
    
    body.aesthetics .s1{
        padding-top: 50px;
    }
    body.aesthetics .s1 .box{
        display: block;
    }
    body.aesthetics .s1 .box .text{
        width: 100%;
        display: block;
    }
    body.aesthetics .s1 .title h2,
    body.aesthetics .s1 .title .sub_t{
        margin-bottom: 10px;
    }
    body.aesthetics .s1 .box .text .txt .icon1{
        width: 30%;
        transform: translateX(0%);
        margin-left: auto;
    }
    body.aesthetics .s1 .box .items{
        width: 100%;
        margin-top: 30px;
    }
    body.aesthetics .s1 .box .items .item{
        width: calc(50% - 1px);
        padding-bottom: 40%;
    }
    body.aesthetics .s1 .box .items .item .pic{
        width: 30%;
        margin: 0 auto 10px auto;
    }
    body.aesthetics .s1 .box .items .item:nth-child(1) .pic{
        width: 40%;
    }
    body.aesthetics .s1 .box .items .item .t{
        font-size: 14px;
    }
    body.aesthetics .s1 .box .items .item .s{
        font-size: 12px;
        margin-top: 5px;
    }
    
    body.aesthetics .s2{
        padding: 0;
    }
    body.aesthetics .s2 .bg{
        padding-bottom: 50vh;
        background-position: center;
    }
    
    body.aesthetics .s3{
        padding: 50px 0;
    }
    body.aesthetics .s3 .box:nth-child(1){
        display: block;
    }
    body.aesthetics .s3 .box .title,
    body.aesthetics .s3 .box .text{
        width: 100%;
    }
    body.aesthetics .s3 .title .en_t,
    body.aesthetics .s3 .title h2{
        margin-bottom: 10px;
    }
    body.aesthetics .s3 .text .txt{
        padding-left: 20px;
        margin-top: 20px;
    }
    body.aesthetics .s3 .box:nth-child(2){
        display: block;
        padding: 80px 0 0px 0px;
    }
    body.aesthetics .s3 .box:nth-child(2) .pic:nth-child(2){
        margin-top: 30px;
    }
    body.aesthetics .s3 .box:nth-child(2) .icon2{
        width: 16%;
        top: 2%;
        transform: translateX(-20%);
    }
    body.aesthetics .s3 .box:nth-child(2) .icon3{
        width: 55%;
        right: 0%;
        bottom: -15%;
    }
    
    body.aesthetics .s4{
        padding-bottom: 50px;
    }
    body.aesthetics .s4 .items{
        display: block;
    }
    body.aesthetics .s4 .items .item:before{
        background-color: rgba(100, 81, 61, .8);
    }
    body.aesthetics .s4 .items .item:hover:before{
        background-color: rgba(100, 81, 61, .8);
    }
    body.aesthetics .s4 .items .item{
        width: 100%;
        height: auto;
        min-height: auto;
    }
    body.aesthetics .s4 .items .item:nth-child(odd):before{
        background-color: rgba(92, 80, 67, .8);
    }
    body.aesthetics .s4 .items .item:hover{
        transform: scale(1);
    }
    body.aesthetics .s4 .items .item .text{
        padding: 20px;
    }
    body.aesthetics .s4 .items .item .text h3,
    body.aesthetics .s4 .items .item .text p{
        opacity: 1;
    }
    body.aesthetics .s4 .items .item .text p span{
        font-size: 18px;
    }
    body.aesthetics .s4 .items .item:hover .text h3,
    body.aesthetics .s4 .items .item:hover .text p{
        opacity: 1;
    }
    body.aesthetics .s4 .items .item .text h2{
        margin-bottom: 30px;
    }
    body.aesthetics .s4 .items .item .text h3{
        margin-bottom: 20px;
    }
    
    body.aesthetics .s5{
        padding: 0 0 50px 0;
    }
    body.aesthetics .s5 .title{
        position: relative;
        margin-bottom: 50px;
    }
    body.aesthetics .s5 .title .icon4{
        right: 0px;
    }
    body.aesthetics .s5 .title h2,
    body.aesthetics .s5 .title .sub_t,
    body.aesthetics .s5 .text .txt h3{
        margin-bottom: 10px;
    }
    body.aesthetics .s5 .text .txt h3{
        line-height: 1.5;
    }
    body.aesthetics .s5 .text .txt h3 span{
        display: block;
    }
    body.aesthetics .s5 .text{
        display: block;
        margin-top: 0;
    }
    body.aesthetics .s5 .text .txt{
        width: 100%;
    }
    body.aesthetics .s5 .text .txt .con{
        padding: 5%;
        display: block;
    }
    body.aesthetics .s5 .text .image{
        width: 100%;
        transform: translateY(0%);
        margin-left: 0px;
    }
    
    body.case .box{
        padding: 50px 0;
        display: block;
    }
    body.case .box .sub_t{
        margin-bottom: 10px;
    }
    
    body.case .s1{
        margin-top: 30px;
    }
    body.case .s1 .box .icon1{
        width: 20%;
    }
    body.case .s1 .box .en_t{
        transform: translateX(0%);
    }
    body.case .s1 .box .sub_t:after{
        left: 0%;
        transform: translateX(110%);
    }
    
    body.case .s2 .box .sub_t{
        transform: translateX(0%);
    }
    body.case .s2 .box .sub_t:after{
        left: 0%;
        transform: translateX(110%);
    }
    body.case .s2 .box .icon2{
        width: 28%;
        left: auto;
        right: 0;
    }
    
    body.case_new .box{
        padding: 50px 0;
        display: block;
    }
    body.case_new .box2{
        padding: 0px 0 50px 0;
    }
    body.case_new .s1{
        margin-top: 30px;
    }
    body.case_new .s1 .box .title{
        position: static;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    body.case_new .s1 .box .title h2{
        width: 100%;
        writing-mode: unset;
        padding: 10px 15px;
    }
    body.case_new .s1 .box .title .en_t{
        font-size: 12px;
        margin-top: 0px;
    }
    body.case_new .s1 .box .info{
        width: 100%;
    }
    body.case_new .s1 .box .info_1{
        margin-top: 20px;
    }
    body.case_new .s1 .box .more{
        font-size: 14px;
    }
    
    body.news .s1{
        padding: 100px 0 50px 0;
    }
    body.news .s1 .box{
        display: block;
    }
    body.news .s1 .box .image{
        width: 100%;
    }
    body.news .s1 .box .lists{
        width: 100%;
    }
    body.news .s1 .box .lists .icon1{
        position: relative;
        width: 30%;
        margin-left: auto;
        margin-top: 30px;
    }
    body.news .s1 .box .image .title{
        display: block;
        margin-bottom: 20px;
    }
    body.news .s1 .box .image .line{
        width: 25%;
        margin: 10px 0 5px 0;
    }
    body.news .s1 .box .lists .search{
        margin-top: 20px;
    }
    body.news .s1 .box .lists .search input{
        height: 30px;
    }
    body.news .s1 .box .lists .search i{
        font-size: 16px;
    }
    body.news .s1 .box .lists .t{
        font-size: 18px;
        padding-bottom: 15px;
    }
    body.news .s1 .box .lists .t:after{
        margin-top: 15px;
    }
    body.news .s1 .box .lists .items .item{
        padding-bottom: 15px;
    }
    body.news .s1 .box .lists .items .item:after{
        margin-top: 15px;
    }
    body.news .s1 .box .lists .items .item .text{
        display: flex;
        align-items: center;
    }
    body.news .s1 .box .lists .items .item .text .date,
    body.news .s1 .box .lists .items .item .text .txt{
        font-size: 14px;
    }
    
    body.online .s1{
        padding: 100px 0 50px 0;
    }
    body.online .s1 .box{
        display: block;
    }
    body.online .s1 .box .icon1{
        width: 55%;
        transform: translateY(0%);
        margin-top: 20px;
    }
    body.online .s1 .box .title{
        flex-direction: row;
        margin-bottom: 20px;
    }
    body.online .s1 .box .title .t,
    body.online .s1 .box .title .en_t{
        writing-mode: unset;
    }
    body.online .s1 .box .title .t{
        font-size: 18px;
    }
    body.online .s1 .box .title .line{
        width: 20%;
        height: 1px;
    }
    body.online .s1 .box .items .item{
        width: calc(50% - 1px);
    }
    body.online .s1 .box .items .item h2{
        font-size: 16px;
        letter-spacing: 2px;
    }
    
    body.contact .s1{
        padding-bottom: 33.41vh;
        background-position: right;
    }
    
    body.contact .s2{
        padding: 50px 0;
    }
    body.contact .s2 .box:nth-child(1){
        display: block;
    }
    body.contact .s2 .box:nth-child(1) .info{
        width: 100%;
        display: block;
    }
    body.contact .s2 .box:nth-child(1) .info .txt{
        margin-top: 30px;
    }
    body.contact .s2 .box:nth-child(1) .info .txt p{
        font-size: 12px;
        letter-spacing: 1px;
    }
    body.contact .s2 .box:nth-child(1) .info .icon1{
        width: 20%;
        bottom: -10%;
    }
    body.contact .s2 .box:nth-child(1) .form{
        width: 100%;
        margin-top: 60px;
    }
    body.contact .s2 .box:nth-child(1) .form textarea{
        height: 150px;
    }
    body.contact .s2 .box:nth-child(2) .check_block{
        margin-top: 20px;
    }
    body.contact .s2 .box:nth-child(2) .check_block label{
        font-size: 14px;
    }
    body.contact .s2 .box:nth-child(2) button{
        font-size: 16px;
        margin-top: 20px;
    }
    
}


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


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








