@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;
}body {
    font-family: 'Noto Sans TC', sans-serif;
}
:root{
	--mb: 160px;
	--s1Bar: 50px;
	--s2Bar: 50px;
	--s3Bar: 90px;
	--s4Bar: 90px;
	--bluegreen: #00aec4;
	--bluegreen_a: #00aec4aa;
	--textdark: #231815;
	--textlight: #fff;
}




a{
	text-decoration: none;
	color: var(--bluegreen);
}
a:hover{
	text-decoration: underline;
	color: var(--bluegreen);
}
.btn,.btn:hover{
	background-color: var(--bluegreen);
	color: #fff;
}

.justify {
    text-align: justify;
    text-justify:inter-ideograph;
}
.text-right{
	text-align: right;
}
.text-left{
	text-align: left;
}
h2{
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 1px;
}
h3{
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 1px;
}
h4{
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
}
h5{
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}
p{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}
.vertical_rl{
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
img{
	vertical-align: middle;
}


body{
	background-image: url(../img/sa/bg.jpg?v=1);
	background-size: 100%;
}
section{
	
}
.img_txt_right{
	position: absolute;
	bottom: -20px;
	right: 0;
	z-index: 9;
	color: #fff;
	font-size: 12px;
	border-right: 1px solid #fff;
	padding-right: 5px;
}
.img_txt_left{
	position: absolute;
	bottom: -20px;
	left: 0;
	z-index: 9;
	color: #fff;
	font-size: 12px;
	border-left: 1px solid #fff;
	padding-left: 5px;
}
.img_txt{
	position: absolute;
	bottom: 20px;
	left: 10px;
	z-index: 999;
	color: #fff;
	font-size: 12px;
}
.slick-one .item{
	position: relative;
}
.slick-dots li button:before{
	font-size: 14px;
	color: var(--bluegreen);
	opacity: 1;
}

.btn_float{
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 999;
	-webkit-filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.7));
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.7))
}
.line_icon,
.fb_icon,
.call_icon{
	width: 40px;
	margin: 0px 10px;
	fill: var(--bluegreen);
	transform: all .3s;
}
.line_icon:hover,
.fb_icon:hover,
.call_icon:hover{
	fill: #268491;
}
.kv{
	width: 100%;
	height: 100vh;
	position: relative;
	
	background-image: url(../img/sa/kv_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.kv .logo_block{
	width: 15%;
	position: absolute;
	top: 8%;
	left: 15%;
}
.kv .logo_block div img{
	width: 100%;
	display: block;
}
.kv .logo_block div{
	margin-bottom: 10px;
	opacity: 0;
}
.kv .logo_block div:nth-child(2){
	margin-top: 20px;
}

.video{
	padding: 100px 0;
}
.video .video_border{
	border: 1px solid #07AEC4;
	padding: 30px;
	position: relative;
	z-index: 3;
}
.video .title h2{
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	color: #fff;
	font-size: 30px;
}
.video .ratio{
	position: relative;
	z-index: 3;
}
.video .title{
	position: absolute;
	top: -30px;
	left: -40px;
	padding: 20px 10px 20px 20px;
	width: 120px;
	background-color: #07AEC4;
	z-index: 2;
}

.s1,
.s2,
.s3,
.s4,
.s5{
	position: relative;
}
.s1 h2,
.s2 h2,
.s3 h2,
.s4 h2,
.s5 h2{
	color: var(--textdark);
}
.s1 p,
.s2 p,
.s3 p,
.s4 p{
	color: var(--textlight);
}

.s1{
	margin-bottom: calc(var(--s1Bar) + var(--mb));
}
.s1 .deco{
	font-size: 16px;
	font-weight: 300;
	color: #727171;
	letter-spacing: 10px;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	position: absolute;
	right: 20px;
	bottom: calc(-40px + var(--s1Bar)*-1);
	z-index: 9;
}
.s1 .text_block{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
	.s1 .title{
		margin: auto;
	}
	.s1 h2+h2{
		margin-top: 72px;
		margin-right: 10px;
	}
	.s1 .text{
		width: 100%;
		padding: 40px;
		background-color: #5dc2d0;
	}
	.s1 .text p{
		margin-bottom: 30px;
	}
.s1 .pic_block{
	width: 100%;
	position: relative;
}
.s1 .bar{
	width: 80%;
	background-color: #5dc2d0;
	position: absolute;
	right: 0;
	bottom: calc(var(--s1Bar)*-1);
	height: 50%;
	z-index: -1;
}

.s2{
	margin-bottom: calc(var(--s2Bar) + var(--mb));
}
.s2 .deco{
	font-size: 16px;
	font-weight: 300;
	color: #727171;
	letter-spacing: 10px;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	position: absolute;
	left: 20px;
	bottom: calc(-40px + var(--s2Bar)*-1);
	z-index: 9;
}
.s2 .text_block{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
	.s2 .title{
		margin: auto;
	}
	.s2 h2+h2{
		margin-top: 72px;
		margin-right: 10px;
	}
	.s2 .text{
		width: 100%;
		padding: 40px;
		background-color: #5dc2d0;
	}
	.s2 .text p{
		margin-bottom: 80px;
	}
.s2 .pic_block{
	width: 100%;
	position: relative;
}
.s2 .bar{
	width: 50%;
	background-color: #5dc2d0;
	position: absolute;
	left: 0;
	bottom: calc(var(--s2Bar)*-1);
	height: 50%;
	z-index: -1;
}

.s3{
	margin-bottom: calc(var(--s3Bar) + var(--mb));
}
.s3 .deco{
	font-size: 16px;
	font-weight: 300;
	color: #727171;
	letter-spacing: 10px;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	position: absolute;
	right: 20px;
	bottom: calc(-40px + var(--s3Bar)*-1);
	z-index: 9;
}
.s3 .text_block{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
	.s3 .title{
		margin: auto;
	}
	.s3 h2+h2{
		margin-top: 72px;
		margin-right: 10px;
	}
	.s3 .text{
		width: 100%;
		padding: 40px;
		background-color: #5dc2d0;
	}
	.s3 .text p{
		margin-bottom: 80px;
	}
.s3 .pic_block{
	width: 100%;
	position: relative;
}
.s3 .bar{
	width: 40%;
	background-color: #5dc2d0;
	position: absolute;
	right: 0;
	bottom: calc(var(--s3Bar)*-1);
	height: 50%;
	z-index: -1;
}

.s4{
	margin-bottom: calc(var(--s4Bar) + var(--mb));
}
.s4 .deco{
	font-size: 16px;
	font-weight: 300;
	color: #727171;
	letter-spacing: 10px;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	position: absolute;
	left: 20px;
	bottom: calc(-40px + var(--s4Bar)*-1);
	z-index: 9;
}
.s4 .text_block{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
	.s4 .title{
		margin: auto;
	}
	.s4 h2+h2{
		margin-top: 72px;
		margin-right: 10px;
	}
	.s4 .text{
		width: 100%;
		padding: 40px;
		background-color: #5dc2d0;
	}
	.s4 .text p{
		margin-bottom: 80px;
	}
.s4 .pic_block{
	width: 100%;
	position: relative;
}
.s4 .bar{
	width: 40%;
	background-color: #5dc2d0;
	position: absolute;
	left: 0;
	bottom: calc(var(--s4Bar)*-1);
	height: 50%;
	z-index: -1;
}

.s5{
	margin-bottom: calc(var(--mb));
	background: linear-gradient(to top,  rgba(0,0,0,0) 0px , rgba(0,0,0,0) 20px , var(--bluegreen) 20px , var(--bluegreen) 180px  , rgba(0,0,0,0) 0%);
}
.s5 .col-12{
	background-image: url(../img/sa/s5-1.png);
	background-repeat: no-repeat;
	background-size: 30%;
	background-position: left bottom;
}
.s5 .row{
	margin: 0;
}
.s5 .content{
	position: relative;
	right: 0;
}
.s5 .text{
	width: 60%;
	margin-left: auto;
}
.s5 .text h2{
	margin-bottom: 20px;
}
.s5 .text h2:first-child{
	color: var(--textdark);
}
.s5 .text h2:nth-last-of-type(1){
	color: var(--bluegreen);
}
.s5 h3{
	color: var(--bluegreen);
	margin-bottom: 10px;
}
.s5 p{
	color: var(--textdark);
	margin-bottom: 30px;
}
.s5 .group{
	border: 1px solid #ccc;
	padding: 20px;
	width: 100%;
	margin: 20px 0px 50px 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.s5 hr{
	width: 100%;
	background-color: #ccc;
	opacity: 1;
	margin: 0px 0px 20px 0px;
}
.s5 .group img:first-child{
	width: 30%;
	margin-bottom: 20px;
}
.s5 .group img:last-child{
	width: 100%;
}
.s5 .designer_info{
	height: 150px;
	
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 20px;

}
.s5 .designer_info h5{
	font-size: 20px;
	color: var(--textlight);
	margin-bottom: 10px;
	margin-right: 20px;
}
.s5 .designer_info p{
	color: var(--textlight);
	margin-bottom: 0;
}
.s5 .item_list{
	margin-bottom: 30px;
}
.s5 .item_list .item{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}
.s5 .item_title{
	font-size: 20px;
	font-weight: 500;
}
.s5 .s5line{
	width: 50px;
	height: 1px;
	background-color: #000;
	margin: 0px 10px;
}
.s5 .item p{
	margin-bottom: 0;
}

.s6{
	margin-bottom: calc(var(--mb));
}
.s6 h2{
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	color: var(--bluegreen);
}
.s6 .s6title{
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.s6 .s6title h2:first-child{
	margin-top: 50px;
	margin-right: 10px;
}
.s6 .row{
	margin: 0;
}
.s6 .item{
	position: relative;
	width: 100%;
	padding-top: 30px;
}
.s6 .design{
	position: absolute;
	top: 0;
	left: 0;
	width: 25%;
	z-index: -1;
}
.s6 .name{
	padding: 20px 20px 0px 20px;
}
.s6 .names{
	padding: 10px 10px 0px 10px;
}
.s6 .title{
	background-color: var(--bluegreen);
	padding: 30px 20px 30px 20px;
}
.s6 .title h4{
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	color: var(--textlight);
}
.s6 .name h4,
.s6 .names h4{
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	color: var(--bluegreen);
}
.s6 .names h4{
	font-size: 14px;
	line-height: 1.2;
}
.s6 .pic{
	width: 83%;
	margin-left: auto;
}

.s7{
	margin-bottom: calc(var(--mb)/1.5);
}
.s7 .row{
	margin: 0px;
}
.s7 .content{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	border-bottom:1px solid var(--textdark);
}
.s7 .text{
	width: calc(34px*15);
	text-align: center;
	margin-bottom: 30px;
}
.s7 h2{
	color: var(--bluegreen);
	margin-bottom: 20px;
}
.s7 p{
	color: var(--textdark);
}
.s7 img:first-child{
	width: 25%;
}
.s7 img:last-child{
	width: 25%;
}
.s7 .work{
	margin-top: 50px;
}
.s7 .work img{
	padding: 3px;
}
.s7 .work .item{
	position: relative;
}
.s7 .w1,
.s7 .w2{
	display: flex;
}
.s7 .slick-one{
	display: none;
	margin-top: 50px;
}
.s7 .slick-one .img_txt{
	
}
.s7 .slick-one .text-dark{
	color: #333;
}


.s8{
	margin-bottom: calc(var(--mb));
}
.s8 .row{
	margin: 0;
}
.s8 img{
	box-shadow: 4px 4px 6px #999;
}
.s8 h2{
	color:var(--textlight);
	margin-bottom: 20px;
}
.s8 h4{
	color:var(--bluegreen);
	margin-bottom: 20px;
	line-height: 1.5;
}
.s8 li{
	font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}
.s8 li:before{
	content: '■';
	color: var(--bluegreen);
	margin-right: 3px;
}
.s8 .feel1{
	border: 1px solid var(--bluegreen);
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	position: relative;
}
.s8 .feel1 .feel_img{
	display: flex;
	justify-content: space-between;
}
.s8 .feel1 .feel_img > div{
	margin: 0px 10px;
}
.s8 .feel1 .feel_img img{
	width: 100%;
}
.s8 .feel2{
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}
.s8 .feel2 .feel2-1{
	border: 1px solid var(--bluegreen);
	width: 20%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	position: relative;
}
.s8 .feel2 .feel2-1 p{
	margin-bottom: 20px;
}
.s8 .feel2 .feel2-1 .img_txt{
	bottom: 30px;
	left: 30px;
}
.s8 .feel2 .feel2-2{
	width: 40%;
	display: flex;
	flex-direction: column;
	margin: 0px 20px;
}
.s8 .feel2 .feel2-2 .feel2-2-1{
	height: 40%;
	padding: 20px;
	margin-bottom: 20px;
	background-color: var(--bluegreen);
	color: var(--textlight);
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
.s8 .feel2 .feel2-2 .feel2-2-2{
	height: 60%;
	padding: 50px 50px;
	border: 1px solid var(--bluegreen);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
.s8 .feel2 .feel2-2 .feel2-2-2 .content{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.s8 .feel2 .feel2-2 .feel2-2-2 .content img{
	width: 48%;
}
.s8 .feel2 .feel2-3{
	width: 40%;
	display: flex;
	flex-direction: column;
}
.s8 .feel2 .feel2-3 .feel2-3-1{
	height: 50%;
	padding: 20px;
	border: 1px solid var(--bluegreen);
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
.s8 .feel2 .feel2-3 .feel2-3-1 .content{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.s8 .feel2 .feel2-3 .feel2-3-1 .content img{
	width: 55%;
}
.s8 .feel2 .feel2-3 .feel2-3-2{
	height: 50%;
	padding: 20px 60px;
	border: 1px solid var(--bluegreen);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
}
.s8 .feel2 .feel2-3 .feel2-3-2 .content{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.s8 .feel2 .feel2-3 .feel2-3-2 .content img{
	width: 55%;
}
.s8 .box{
	width: 45px;
	height: 45px;
	background-color: var(--bluegreen);
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
}
.s8 .box > div{
	color: var(--textlight);
	font-size: 16px;
	font-weight: 400;
}
.s8 .feel_m{
	display: none;
}
.s8 .feel_web{
	display: block;
}

.s9{
	margin-bottom: calc(var(--mb));
	position: relative;
}
.s9 .logo{
	width: 70px;
	position: absolute;
	left: 0;
	right: 0;
	top: 5%;
	bottom: 0;
	margin: 0 auto;
}
.s9 .text{
	color: var(--textlight);
	line-height: 1;
	position: absolute;
	top: 15%;
  	left: 20%;
  	text-align: center;
}
.s9 .text h4{
	margin-bottom: 10px;
}

input,select{
	background-color: transparent;
	border-radius: 3px; 
	color: var(--textdark);
	border: 1px solid var(--textdark);
	font-size: 16px;
}
select{
	height: 45px;
	width: 100%;
	margin-bottom: 20px;
	border: 1px solid var(--textdark) !important;
	background-color: transparent !important;
}
option {
    
}
input[type="text"],input[type="phone"]{
	height: 45px;
	width: 100%;
	margin-bottom: 20px;
}
::placeholder { 
  font-size: 16px;
  
}
:-ms-input-placeholder { 
  font-size: 16px;
  
}
::-ms-input-placeholder { 
  font-size: 16px;
  
}
.reservation{
	margin-bottom: calc(var(--mb)/2);
}
.reservation h3{
	text-align: center;
	margin-bottom: 30px;
}
.reservation li{
	font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}
.reservation .info{
	margin-bottom: 50px;
}
.reservation .contact{
	margin-top: 20px;
}
.reservation .radio_block{
	transform: translate(0%, 50%);
}
.btn_block{
	margin-top: 20px;
}
.btn_block .line_icon,
.btn_block .fb_icon,
.btn_block .call_icon{
	width: 60px;
	margin: 0px 10px;
	fill: var(--bluegreen);
}
.btn_block .line_icon:hover,
.btn_block .fb_icon:hover,
.btn_block .call_icon:hover{
	fill: #268491;
}
.reservation .myflex{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.form_check_txt{
	margin-left: 10px;
	line-height: 1.8;
}
.form_check_txt a:hover{
	text-decoration: underline;
}
#send_btn{
	width: 200px;
    height: 70px;
    font-size: 26px;
    font-weight: 400;
    color: #fff ;
    border: 1px solid #fff;
    margin-top: 20px;
}
.reg_btn_disabled {
    background-color: var(--bluegreen);
    cursor: no-drop;
    opacity: 0.6;
}
.reg_btn {
    background-color: var(--bluegreen);
    opacity: 1;
}
.reg_btn:hover {
    background-color: var(--textdark);
    opacity: 1;
}
#msgerror{
	color: #f00;
	font-size: 14px;
	text-align: center;
	margin-top: 10px;
}
.cta{
	background-color: #003a04;
	width: 100%;
	padding: 50px 0px;
	border:1px solid #fff;
	font-size: 20px;
	color: #fff;
	line-height: 30px;
	font-weight: 300;
	transition: all 0.3s;
}
.cta:hover{
	background-color: #002600;
	color: #fff;
}
.cta_block{
	margin-top: 80px;
}
.cta > i{
	font-size: 3rem;
	color: #fff;
	margin-bottom: 10px;
	display: block;
}
.modal-body h5{
	margin-bottom: 10px;
	color: var(--bluegreen);
}
.modal-body li{
	line-height: 2;
}

.footer1,
.footer2{
	width: 100%;
	fill: var(--bluegreen);
}
.footer2-1,.footer2-2{
	fill:var(--bluegreen);
}
.footer2-1{
	stroke:var(--bluegreen);
	stroke-miterlimit:10;
	stroke-width:0.55px;
}
.footer1:hover{
	fill: #268491;
}
.footer2:hover,
.footer2:hover .footer2-1,
.footer2:hover .footer2-2{
	fill: #268491;
}
footer{
	background-color: var(--bluegreen);
	text-align: center;
	font-size: 12px;
	padding: 20px 0px;
}
footer p{
	font-size: 12px;
	color: var(--textlight);
}@media (max-width: 576px) {
	:root{
		--mb: 60px;
		--s1Bar: 0px;
		--s2Bar: 0px;
		--s3Bar: 0px;
		--s4Bar: 0px;
	}
	.btn_float{
		width: 100%;
		position: fixed;
		top: auto;
		bottom: 0px;
		left: 0px;
		background-color: var(--bluegreen);
		z-index: 9999;
		padding: 10px 0px;
		text-align: center;
	}
	.btn_float .line_icon,
	.btn_float .fb_icon,
	.btn_float .call_icon{
		width: 40px;
		margin: 0px 10px;
		fill: var(--textlight);
	}
	h2{
	    font-size: 28px;
	}
	h3{
	    font-size: 20px;
	}
	h4{
	    font-size: 18px;
	}
	h5{
	    font-size: 16px;
	}
	p{
	    font-size: 14px;
	}
	.kv{
		background-image: url(../img/sa/kv_bgm.jpg);
		background-position: left bottom;
	}
	.kv .logo_block{
		width: 100%;
		top: 5%;
		left: 0%;
		text-align: center;
	}
	.kv .logo_block div img{
		width: 100%;
		display: block;
	}
	.kv .logo_block div{
		margin: auto;
		margin-bottom: 10px;
		opacity: 0;
	}
	.kv .logo_block div:nth-child(1){
		width: 45%;
	}
	.kv .logo_block div:nth-child(2){
		width: 70%;
		margin-top: 20px;
	}
	.kv .logo_block div:nth-child(3){
		width: 70%;
	}
	
	
	
	.video{
		padding: 30px 0;
	}
	.video .video_border{
		border: 1px solid #07AEC4;
		padding: 10px;
		position: relative;
		z-index: 3;
	}
	.video .title h2{
		-webkit-writing-mode: unset;
		writing-mode: unset;
		color: #fff;
		font-size: 20px;
		text-align: center;
	}
	.video .ratio{
		position: relative;
		z-index: 3;
	}
	.video .title{
		position: static;
		padding: 20px;
		width: 100%;
		background-color: #07AEC4;
		margin-bottom: 15px;
	}
	
	.s1 .row,
	.s2 .row,
	.s3 .row,
	.s4 .row,
	.s5 .row{
		margin: 0;
	}
	.kv{
		margin-bottom: 0;
	}
	.vertical_rl{
		-webkit-writing-mode: unset;
		writing-mode: unset;
	}
	
	.s1 .bar,
	.s2 .bar,
	.s3 .bar,
	.s4 .bar{
		display: none;
	}
	.s1 .title,
	.s2 .title,
	.s3 .title,
	.s4 .title{
		background-color: #5dc2d0;
		margin: 0;
		padding: 40px 0px 0px 40px;
	}
	.s1 .img_txt_right,
	.s3 .img_txt_right{
		right: 10px;
	}
	.s2 .img_txt_left,
	.s4 .img_txt_left{
		left: auto;
		right: 10px;
		border-left: 0px;
		border-right: 1px solid #fff;
		padding-left: 0px;
		padding-right: 5px;
	}
	.s1 h2,
	.s2 h2,
	.s3 h2,
	.s4 h2{
		color: var(--textlight);
	}
	.s1 h2:after{
		content: ' 散步華山';
	}
	.s2 h2:after{
		content: ' 藝起日常';
	}
	.s3 h2:after{
		content: ' 咫尺收納';
	}
	.s4 h2:after{
		content: ' 智慧核心';
	}
	.ss4 h2:after{
		content: ' 善導寺站';
	}
	.s1 h2+h2,
	.s2 h2+h2,
	.s3 h2+h2,
	.s4 h2+h2{
		display: none;
	}
	.s1 .text,
	.s2 .text,
	.s3 .text,
	.s4 .text{
		display: flex;
		flex-direction: column;
		align-items: center;
		padding-top: 20px;
		padding-bottom: 150px;
		position: relative;
	}
	.s1 .text p,
	.s2 .text p,
	.s3 .text p,
	.s4 .text p{
		width: 100%;
		margin-bottom: 0px;
		padding-right: 0px;
	}
	.s1 .text img,
	.s3 .text img{
		position: absolute;
		left: 20px;
		bottom: 20px;
		margin-top: 20px;
		width: 50% !important;
	}
	.s2 .text img,
	.s4 .text img{
		position: absolute;
		right: 20px;
		bottom: 20px;
		margin-top: 20px;
		width: 50% !important;
	}
	.s4{
		margin-bottom: 60px;
	}
	
	.s5{
		background: linear-gradient(to top,  rgba(0,0,0,0) 0px , rgba(0,0,0,0) 5px , var(--bluegreen) 5px , var(--bluegreen) 30px  , rgba(0,0,0,0) 0%);
		margin-bottom: calc(var(--mb)/2);
	}
	.s5 .text{
		position: static;
		width: 100%;
		padding: 0px 20px;
	}
	.s5 .group{
		margin: 0px 0px 20px 0px;
	}
	.s5 .designer_info{
		display: block;
		width: 80%;
		margin-left: auto;
		margin-bottom: 50px;
		margin-top: 20px;
	}
	.s5 .mobile_block{
		display: block;
		margin-top: 10px;
	}
	.s5 .designer_info h5{
		color: var(--textdark);
	}
	.s5 .designer_info p{
		color: var(--textdark);
	}
	.s5 h2{
		line-height: 1.2;
	}
	.s5 p{
		margin-bottom: 10px;
	}
	.s5 .item_list .item{
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 10px;
	}
	.s5 .item_title{
		font-size: 18px;
		margin-bottom: 10px;
	}
	.s5 .item .s5line{
		display: none;
	}
	
	.s6 .item{
		padding-top: 10px;
		margin-top: 40px;
	}
	.s6 .firstitem{
		margin-top: 10px;
	}
	.s6 .title{
		padding: 15px 10px;
	}
	.s6 .s6title{
		margin-top: 0;
		margin-bottom: 0px;
		flex-direction: column;
		align-items: center;
	}
	.s6 h2{
		-webkit-writing-mode: unset;
		writing-mode: unset;
	}
	.s6 .s6title h2:first-child{
		margin-top: 10px;
		margin-right: 0px;
		order: 2;
	}
	.s6 .set-order{
		order: -1;
	}
	.s6 .names {
		padding: 5px 5px 0px 5px;
	}
	.s6 .names h4{
		font-size: 14px;
	}
	.s7{
		margin-top: 230px;
	}
	.s7 img:first-child,
	.s7 img:last-child {
	    width: 35%;
	}
	.s7 .content {
		
		position: relative;
	}
	.s7 .text{
		width: 100%;
		position: absolute;
		right: 0;
		bottom: 0;
		left: 0;
		margin: 0 auto;
		padding-bottom: 50px;
	}
	.s7 .work .item{
		margin-bottom: 10px;
	}
	.s7 .slick-one{
		display: block;
	}
	.s7 .work{
		display: none;
	}
	
	.m_block{
		display: block;
	}
	.s8 .feel1{
		padding-top: 50px;
	}
	.s8 .feel1 p{
		line-height: 1.5;
		margin-top: 10px;
	}
	.s8 .feel1 .feel_img {
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
	.s8 .feel1 .feel_img > div {
		margin: 0px 6px 20px 6px;
		width: 100%;
	}
	.s8 .feel2 {
		flex-direction: column;
		
	}
	.s8 .feel2 .feel2-1 {
		width: 100%;
		flex-direction: column;
		margin: 20px 0px;
		padding-top: 50px;
	}
	.s8 .feel2 .feel2-1 img{
		width: 100% !important;
	}
	.s8 .feel2 .feel2-2 {
		width: 100%;
		margin: 0px;
		order: -1;
	}
	.s8 .feel2 .feel2-2 .feel2-2-1 {
		height: auto;
		margin-bottom: 0px;
	}
	.s8 .feel2 .feel2-2 .feel2-2-2 {
		height: auto;
		align-items:stretch;
		padding: 20px;
		padding-top: 50px;
	}
	.s8 .feel2 .feel2-2 .feel2-2-2 .content {
		flex-direction: column;
		justify-content: space-around;
		align-items: flex-start;
	}
	.s8 .feel2 .feel2-2 .feel2-2-2 .content img {
	    width: 100%;
	    margin-bottom: 20px;
	}
	.s8 .feel2 .feel2-3 {
		width: 100%;
	}
	.s8 .feel2 .feel2-3 .feel2-3-1 {
		padding-top: 50px;
	}
	.s8 .feel2 .feel2-3 .feel2-3-1 .content {
		flex-direction: column;
		justify-content: space-around;
		align-items: flex-start;
	}
	.s8 .feel2 .feel2-3 .feel2-3-1 .content img {
	    width: 100%;
	    margin-bottom: 20px;
	}
	.s8 .feel2 .feel2-3 .feel2-3-2 .content{
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
	.s8 .feel2 .feel2-3 .feel2-3-2 .content img{
		width: 100%;
		margin-bottom: 20px;
	}
	.s8 .feel_m{
		display: block;
	}
	.s8 .feel_web{
		display: none;
	}
	
	.s9{
		margin-bottom: 0;
	}
	.s9 .logo{
		display: none;
	}
	.s9 .text{
		top:15%;
	  	left: 0%;
	  	right: 0%;
	  	margin: 0 auto;
	}
	
	.reservation .row{
		margin: 0;
	}
	.reservation .contact{
		margin-top: 20px;
	}
	.reservation .contact img{
		margin-top: 25px;
	}
	.reservation .radio_block{
		transform: translate(0%, 0%);
		margin-bottom: 20px;
	}
	.reservation iframe{
		height: 300px;
	}
	.reservation .col-lg-7{
		padding-right: 0; 
		padding-left: 0;
	}
	
	.btn_block{
		text-align: center;
	}
}
@media (min-width: 576px) and (max-width: 767.9px) {
	:root{
		--mb: 80px;
		--s1Bar: 50px;
		--s2Bar: 50px;
		--s3Bar: 50px;
		--s4Bar: 50px;
	}
	.btn_float{
		width: 100%;
		position: fixed;
		top: auto;
		bottom: 0px;
		left: 0px;
		background-color: var(--bluegreen);
		z-index: 9999;
		padding: 10px 0px;
		text-align: center;
	}
	.btn_float .line_icon,
	.btn_float .fb_icon,
	.btn_float .call_icon{
		width: 40px;
		margin: 0px 10px;
		fill: var(--textlight);
	}
	
	.s1 .row,
	.s2 .row,
	.s3 .row,
	.s4 .row,
	.s5 .row{
		margin: 0;
	}
	.kv{
		background-image: url(../img/sa/kv_bgm.jpg);
		background-position: left bottom;
	}
	.kv .logo_block{
		width: 100%;
		top: 5%;
		left: 0%;
		text-align: center;
	}
	.kv .logo_block div img{
		width: 100%;
		display: block;
	}
	.kv .logo_block div{
		margin: auto;
		margin-bottom: 10px;
		opacity: 0;
	}
	.kv .logo_block div:nth-child(1){
		width: 45%;
	}
	.kv .logo_block div:nth-child(2){
		width: 70%;
		margin-top: 20px;
	}
	.kv .logo_block div:nth-child(3){
		width: 70%;
	}
	.vertical_rl{
		-webkit-writing-mode: unset;
		writing-mode: unset;
	}
	
	.s1 .bar,
	.s2 .bar,
	.s3 .bar,
	.s4 .bar{
		display: none;
	}
	.s1 .title,
	.s2 .title,
	.s3 .title,
	.s4 .title{
		background-color: #5dc2d0;
		margin: 0;
		padding: 40px 0px 0px 40px;
	}
	.s1 .img_txt_right,
	.s3 .img_txt_right{
		right: 10px;
	}
	.s2 .img_txt_left,
	.s4 .img_txt_left{
		left: auto;
		right: 10px;
		border-left: 0px;
		border-right: 1px solid #fff;
		padding-left: 0px;
		padding-right: 5px;
	}
	.s1 h2,
	.s2 h2,
	.s3 h2,
	.s4 h2{
		color: var(--textlight);
	}
	.s1 h2:after{
		content: ' 散步華山';
	}
	.s2 h2:after{
		content: ' 藝起日常';
	}
	.s3 h2:after{
		content: ' 咫尺收納';
	}
	.s4 h2:after{
		content: ' 智慧核心';
	}
	.ss4 h2:after{
		content: ' 善導寺站';
	}
	.s1 h2+h2,
	.s2 h2+h2,
	.s3 h2+h2,
	.s4 h2+h2{
		display: none;
	}
	.s1 .text,
	.s2 .text,
	.s3 .text,
	.s4 .text{
		display: flex;
		align-items: center;
		padding-top: 20px;
	}
	.s1 .text p,
	.s2 .text p,
	.s3 .text p,
	.s4 .text p{
		width: 60%;
		margin-bottom: 0px;
		padding-right: 20px;
	}
	.s1 .text img,
	.s2 .text img,
	.s3 .text img,
	.s4 .text img{
		width: 40% !important;
	}
	
	.s5{
		margin-top: calc(var(--mb)*2);
	}
	.s5 .desgin{
		bottom: 1%;
		padding: 20px 0px 20px 40%;
	}
	.s5 .text{
		
		bottom: 0;
		width: 65%;
		right: 5%;
	}
	.s5 .group{
		margin: 0px 0px 20px 0px;
	}
	.s5 .desgin_name{
		bottom: 0%;
		left: 24%;
	}
	.s5 h2{
		line-height: 1.2;
	}
	.s5 p{
		margin-bottom: 10px;
	}
	
	.s6 .s6title{
		margin-bottom: 30px;
	}
	.s6 h2{
		-webkit-writing-mode: unset;
		writing-mode: unset;
	}
	.s6 .set-order{
		order: -1;
	}
	.s6 .names {
		padding: 20px 5px 0px 5px;
	}
	
	.s7{
		position: relative;
		padding-top: 80px;
	}
	.s7 .content{
		padding-top: 30px;
	}
	.s7 .text{
		position: absolute;
		width: 60%;
		left: 0;
		right: 0;
		top: 0px;
		margin: 0 auto;
	}
	.s7 .slick-one{
		display: block;
	}
	.s7 .work{
		display: none;
	}
	
	.m_block{
		display: block;
	}
	.s8 .feel1 p{
		line-height: 1.5;
		margin-top: 10px;
	}
	.s8 .feel1 .feel_img {
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
	.s8 .feel1 .feel_img > div {
		margin: 0px 6px 20px 6px;
		width: 30%;
	}
	.s8 .feel2 {
		flex-direction: column;
	}
	.s8 .feel2 .feel2-1 {
		width: 100%;
		flex-direction: row;
		margin: 20px 0px;
		padding-top: 50px;
	}
	.s8 .feel2 .feel2-1 img{
		width: 30% !important;
		margin-left: 20px;
	}
	.s8 .feel2 .feel2-2 {
		width: 100%;
		margin: 0px;
		order: -1;
	}
	.s8 .feel2 .feel2-2 .feel2-2-1 {
		height: auto;
	}
	.s8 .feel2 .feel2-2 .feel2-2-2 {
		height: auto;
		align-items:stretch;
	}
	.s8 .feel2 .feel2-2 .feel2-2-2 .content {
		justify-content: space-around;
	}
	.s8 .feel2 .feel2-2 .feel2-2-2 .content img {
	    width: 55%;
	}
	.s8 .feel2 .feel2-3 {
		width: 100%;
	}
	.s8 .feel2 .feel2-3 .feel2-3-1 .content {
		justify-content: space-around;
	}
	.s8 .feel2 .feel2-3 .feel2-3-2 .content{
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
	}
	.s8 .feel2 .feel2-3 .feel2-3-2 .content img{
		width: 100%;
		margin-bottom: 20px;
	}
	.s9{
		margin-bottom: 0;
	}
	.s9 .logo{
		display: none;
	}
	.s9 .text{
		top:15%;
	  	left: 0%;
	  	right: 0%;
	  	margin: 0 auto;
	}
	
	.reservation .row{
		margin: 0;
	}
	.reservation .contact{
		margin-top: 20px;
	}
	.reservation .radio_block{
		transform: translate(0%, 0%);
		margin-bottom: 20px;
	}
}
@media (min-width: 768px) and (max-width: 991.9px) {
	.btn_float{
		width: 100%;
		position: fixed;
		top: auto;
		bottom: 0px;
		left: 0px;
		background-color: var(--bluegreen);
		z-index: 9999;
		padding: 10px 0px;
		text-align: center;
	}
	.btn_float .line_icon,
	.btn_float .fb_icon,
	.btn_float .call_icon{
		width: 40px;
		margin: 0px 10px;
		fill: var(--textlight);
	}
	:root{
		--mb: 80px;
		--s1Bar: 50px;
		--s2Bar: 50px;
		--s3Bar: 50px;
		--s4Bar: 50px;
	}
	.kv{
		background-image: url(../img/sa/kv_bgm.jpg);
		background-position: left bottom;
	}
	.kv .logo_block{
		width: 100%;
		top: 5%;
		left: 0%;
		text-align: center;
	}
	.kv .logo_block div img{
		width: 100%;
		display: block;
	}
	.kv .logo_block div{
		margin: auto;
		margin-bottom: 10px;
		opacity: 0;
	}
	.kv .logo_block div:nth-child(1){
		width: 45%;
	}
	.kv .logo_block div:nth-child(2){
		width: 70%;
		margin-top: 20px;
	}
	.kv .logo_block div:nth-child(3){
		width: 70%;
	}
	.s1 .row,
	.s2 .row,
	.s3 .row,
	.s4 .row,
	.s5 .row{
		margin: 0;
	}
	.vertical_rl{
		-webkit-writing-mode: unset;
		writing-mode: unset;
	}
	
	.s1 .bar,
	.s2 .bar,
	.s3 .bar,
	.s4 .bar{
		display: none;
	}
	.s1 .title,
	.s2 .title,
	.s3 .title,
	.s4 .title{
		background-color: #5dc2d0;
		margin: 0;
		padding: 40px 0px 0px 40px;
	}
	.s1 .img_txt_right,
	.s3 .img_txt_right{
		right: 10px;
	}
	.s2 .img_txt_left,
	.s4 .img_txt_left{
		left: auto;
		right: 10px;
		border-left: 0px;
		border-right: 1px solid #fff;
		padding-left: 0px;
		padding-right: 5px;
	}
	.s1 h2,
	.s2 h2,
	.s3 h2,
	.s4 h2{
		color: var(--textlight);
	}
	.s1 h2:after{
		content: ' 散步華山';
	}
	.s2 h2:after{
		content: ' 藝起日常';
	}
	.s3 h2:after{
		content: ' 咫尺收納';
	}
	.s4 h2:after{
		content: ' 智慧核心';
	}
	.ss4 h2:after{
		content: ' 善導寺站';
	}
	.s1 h2+h2,
	.s2 h2+h2,
	.s3 h2+h2,
	.s4 h2+h2{
		display: none;
	}
	.s1 .text,
	.s2 .text,
	.s3 .text,
	.s4 .text{
		display: flex;
		align-items: center;
		padding-top: 20px;
	}
	.s1 .text p,
	.s2 .text p,
	.s3 .text p,
	.s4 .text p{
		width: 60%;
		margin-bottom: 0px;
		padding-right: 20px;
	}
	.s1 .text img,
	.s2 .text img,
	.s3 .text img,
	.s4 .text img{
		width: 40% !important;
	}
	
	.s5{
		margin-top: calc(var(--mb)*2);
	}
	.s5 .desgin{
		margin-top: 30%;
	}
	.s5 .text{
		
		bottom: 0;
		width: 58%;
	}
	.s5 .group{
		margin: 0px 0px 20px 0px;
	}
	.s5 .desgin_name{
		bottom: 0%;
		left: 24%;
	}
	
	.s6 .set-order{
		order: -1;
	}
	.s6 .names {
		padding: 20px 5px 0px 5px;
	}
	.m_block{
		display: block;
	}
	.s8 .feel1 p{
		line-height: 1.5;
		margin-top: 10px;
	}
	.s8 .feel1 .feel_img > div {
		margin: 0px 5px;
	}
	.s8 .feel2 {
		flex-direction: column;
	}
	.s8 .feel2 .feel2-1 {
		width: 100%;
		flex-direction: row;
		margin: 20px 0px;
	}
	.s8 .feel2 .feel2-1 img{
		width: 30% !important;
		margin-left: 20px;
	}
	.s8 .feel2 .feel2-2 {
		width: 100%;
		margin: 0px;
		order: -1;
	}
	.s8 .feel2 .feel2-2 .feel2-2-1 {
		height: auto;
	}
	.s8 .feel2 .feel2-2 .feel2-2-2 {
		height: auto;
		align-items:stretch;
	}
	.s8 .feel2 .feel2-2 .feel2-2-2 .content {
		justify-content: space-around;
	}
	.s8 .feel2 .feel2-2 .feel2-2-2 .content img {
	    width: 55%;
	}
	.s8 .feel2 .feel2-3 {
		width: 100%;
	}
	.s8 .feel2 .feel2-3 .feel2-3-1 .content {
		justify-content: space-around;
	}
	.s9{
		margin-bottom: 0;
	}
	.s9 .text{
		top: 10%;
	}
	.s9 .logo{
		display: none;
	}
	.s9 h3{
		font-size: 20px;
	}
	.s9 h4{
		font-size: 14px;
	}
	
	.reservation .row{
		margin: 0;
	}
	.reservation .contact{
		margin-top: 20px;
	}
	.reservation .radio_block{
		transform: translate(0%, 0%);
		margin-bottom: 20px;
	}
}
@media (min-width: 992px) and (max-width: 1199.9px) {
	.kv .logo_block{
		width: 85%;
		top: 8%;
		left: 15%;
	}
	.kv .logo_block img{
		width: 30%;
		margin-bottom: 1%;
	}
	.kv .logo_block img:nth-child(2),
	.kv .logo_block img:nth-child(4){
		margin-top: 1.5%;
	}
	.s1 .text,
	.s2 .text,
	.s3 .text,
	.s4 .text{
		padding-bottom: 0px;
	}
	.s1 .text p,
	.s2 .text p,
	.s4 .text p {
	    margin-bottom: 30px;
	}
	.s3 .text p{
		margin-bottom: 0px;
	}
	.s1 .title,
	.s2 .title,
	.s3 .title,
	.s4 .title{
		padding-bottom: 20px;
	}
	
	.s5{
		margin-top: calc(var(--mb)*2);
	}
	.s5 .text{
		
		bottom: 0;
	}
	.s5 .group{
		margin: 0px 0px 20px 0px;
	}
	.s5 .desgin_name{
		bottom: 5%;
	}
	
	.s6 .title {
		padding: 30px 15px 30px 15px;
	}
	.s6 .name{
		padding: 10px 15px 0px 15px;
	}
	.s6 .names{
		padding: 10px 0px 0px 0px;
	}
	.s6 .s6title{
		padding-top: 0;
	}
	.s8 .feel2 .feel2-2 .feel2-2-2 .content {
		flex-direction: column;
		align-items: flex-start;
	}
	.s8 .feel2 .feel2-2 .feel2-2-2 .content img {
	    width: 100%;
	    margin-bottom: 10px;
	}
	.s8 .feel2 .feel2-3 .feel2-3-1 .content {
		flex-direction: column;
		align-items: flex-start;
	}
	.s8 .feel2 .feel2-3 .feel2-3-1 .content img {
	    width: 100%;
	    margin-bottom: 10px;
	}
	.s9 .logo{
		width: 50px;
	}
	.s9 .text{
		left: 10%;
	}
	.m_block{
		display: block;
	}
}
@media (min-width: 1200px) and (max-width: 1399.9px) {
	.kv .logo_block{
		width: 85%;
		position: absolute;
		top: 8%;
		left: 15%;
	}
	.kv .logo_block img{
		width: 20%;
		display: block;
		margin-bottom: 0.5%;
		opacity: 0;
	}
	.kv .logo_block img:nth-child(2),
	.kv .logo_block img:nth-child(4){
		margin-top: 1.2%;
	}
	.s1 .text,
	.s2 .text,
	.s3 .text,
	.s4 .text{
		padding: 20px;
	}
	.s1 .title,
	.s2 .title,
	.s3 .title,
	.s4 .title{
		padding-bottom: 20px;
	}
	.s1 .text p,
	.s2 .text p,
	.s4 .text p {
	    margin-bottom: 30px;
	}
	.s3 .text p{
		margin-bottom: 0px;
	}
	
	.s5{
		margin-top: calc(var(--mb)*2);
	}
	.s5 .text{
		
		bottom: 0;
	}
	.s5 .group{
		margin: 0px 0px 20px 0px;
	}
	.s5 .desgin_name{
		bottom: 5%;
	}
	.s6 .names{
		padding: 20px 10px 0px 5px;
	}
	.s8 .feel2 .feel2-2 .feel2-2-2 .content img{
		width: 50%;
	}
	.s8 .feel2 .feel2-3 .feel2-3-1 .content img{
		width: 48%;
	}
	.s9 .text{
		left: 15%;
	}
}
@media (min-width: 1400px) {
	.s5 .text{
		
	}
	.s5 .group{
		margin: 0px 0px 20px 0px;
	}
	.s5 .desgin_name{
		
	}
}