@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 {
	--px1:0.055804vw;
	--px2:0.111607vw;
	--px3:0.167411vw;
	--px4:0.223214vw;
	--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;
	--px81:4.520089vw;
	--px82:4.575893vw;
	--px83:4.631696vw;
	--px84:4.687500vw;
	--px85:4.743304vw;
	--px86:4.799107vw;
	--px87:4.854911vw;
	--px88:4.910714vw;
	--px89:4.966518vw;
	--px90:5.022321vw;
	--px91:5.078125vw;
	--px92:5.133929vw;
	--px93:5.189732vw;
	--px94:5.245536vw;
	--px95:5.301339vw;
	--px96:5.357143vw;
	--px97:5.412946vw;
	--px98:5.468750vw;
	--px99:5.524554vw;
	--px100:5.580357vw;
}
.rwd:after{
	content: 'ALL';
	display: none;
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
}
body {
    font-family: 'Noto Sans TC', sans-serif;
    background-color: #0f0f0f;
}
body:after{
	content: '';
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 5;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: all .3s;
	pointer-events: none;
}
body.active:after{
	opacity: 1;
}
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;
	bottom: 10px;
	z-index: 99;
	color: #fff;
	font-size: 12px;
	text-shadow: 1px 1px 2px #333;
}
.box{
	width: 90%;
	max-width: 1440px;
	margin: 0 auto;
}


.slick-slide {
    
}

.slick-list {
    
}
.slick-dotted.slick-slider {
    margin-bottom: 0px;
}
.slick-dots {
	bottom: 30px;
}
.slick-dots li button:before{
	font-size: 14px;
	color: #fff;
	opacity: 1;
	content: '○';
	
	
}
.slick-dots li.slick-active button:before{
	color: #00FF47;
	opacity: 1;
	content: '●';
	
}
.slick-one .img{
	position: relative;
}

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

.home-btn{
	position: fixed;
	top: 40px;
	right: 120px;
	z-index: 11;
	display: flex;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: #000;
	transition: all .3s;
}
.home-btn i{
	font-size: 30px;
	color: #fff;
	transition: all .3s;
}
.home-btn:hover{
	background-color: #00ff47;
}
.home-btn:hover i{
	color: #000;
}
.menu-btn{
	position: fixed;
	top: 40px;
	right: 40px;
	z-index: 11;
	display: flex;
	cursor: pointer;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: #000;
	transition: all .3s;
}
.menu-btn .mline{
	width: 30px;
	height: 2px;
	background-color: #fff;
	transform: translateY(0px);
	transition: all .3s;
}
.menu-btn .mline:after{
	content: '';
	width: 30px;
	height: 2px;
	background-color: #fff;
	display: block;
	transform: translateY(-10px);
	transition: all .3s;
}
.menu-btn .mline:before{
	content: '';
	width: 30px;
	height: 2px;
	background-color: #fff;
	display: block;
	transform: translateY(8px);
	transition: all .3s;
}
.menu-btn:hover,
.menu-btn.active{
	background-color: #00ff47;
}
.menu-btn.active .mline{
	height: 0;
	transform: translateY(-6px);
}
.menu-btn.active .mline:after{
	background-color: #000;
	transform: translateY(5px) rotate(-45deg);
}
.menu-btn.active .mline:before{
	background-color: #000;
	transform: translateY(6px) rotate(45deg);
}
.menu-btn:hover .mline:before,
.menu-btn:hover .mline:after,
.menu-btn:hover .mline{
	background-color: #000;
}

.menu-list{
	display: flex;
	flex-direction: column;
	gap: var(--px15);
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 10;
	padding: var(--px70) var(--px40) var(--px80) var(--px50);
	background-color: rgba(9, 15, 12, 0.75);
	border-radius: var(--px50);
	transform: translateX(110%);
	transition: all .6s;
}
.menu-list.active{
	transform: translateX(0%);
}
.menu-list .item{
	display: block;
	text-decoration: none;
	transform: translateY(30px);
	opacity: 0;
}
.menu-list .item.show:nth-child(1){transition: all 1s .2s;}
.menu-list .item.show:nth-child(2){transition: all 1s .3s;}
.menu-list .item.show:nth-child(3){transition: all 1s .4s;}
.menu-list .item.show:nth-child(4){transition: all 1s .5s;}
.menu-list .item.show:nth-child(5){transition: all 1s .6s;}
.menu-list .item.show:nth-child(6){transition: all 1s .7s;}
.menu-list .item.show:nth-child(7){transition: all 1s .8s;}
.menu-list .item.show:nth-child(8){transition: all 1s .9s;}
.menu-list .item.show:nth-child(9){transition: all 1s 1s;}
.menu-list .item.show:nth-child(10){transition: all 1s 1.1s;}
.menu-list .item.show:nth-child(11){transition: all 1s 1.2s;}
.menu-list .item.show{
	transform: translateY(10px);
	opacity: 1;
}
.menu-list .item h2{
	font-family: 'Helvetica Neue', sans-serif;
	font-size: var(--px28);
	font-weight: 400;
	letter-spacing: 0.1em;
	color: #B6B6B6;
	transition: all .3s;
}
.menu-list .item h2 span{
	font-family: Lato;
	font-size: var(--px24);
	font-weight: 400;
	letter-spacing: 0.02em;
	color: #464646;
	transition: all .3s;
}
.menu-list .item:hover h2{
	color: #00FF47;
}
.menu-list .item:hover h2 span{
	color: #A0FFBA;
}

.home .home-btn{
	display: none;
}
.home .kv{
	width: 100%;
	height: 100vh;
	background-image: url(../img/kv-bg.jpg);
	background-size: cover;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.home .kv .box{
	width: 55%;
	margin: 0 auto;
}
.home .kv .title{
	margin-top: var(--px50);
}
.home .kv .round{
	position: absolute;
	width: 20%;
	padding-bottom: 20%;
	border-radius: 50%;
	background: linear-gradient(0deg,rgba(51,51,51,0) 35%,rgba(51,51,51,1) 100%);
	background-size: 100% 200%;
	background-position: 0% 60%;
}
.home .kv .round1{
	top: 10%;
	right: 10%;
	animation: round 1.5s both linear infinite alternate;
	transform: rotate(45deg);
}
.home .kv .round2{
	bottom: 10%;
	left: 10%;
	animation: round 1.5s .5s both linear infinite alternate;
	transform: rotate(225deg);
}
@keyframes round {
	from {
		background-position: 0% 60%;
	}
    to {
    	background-position: 0% 100%;
    }
}
.home .kv .block{
	position: absolute;
	z-index: 2;
}
.home .kv .block.block-rt{
	right: -5%;
	top: -7%;
	width: 15%;
	transform: rotate(20deg);
}
.home .kv .block.block-rt img{
	animation: bounce-down 1.8s .5s linear infinite;
}
.home .kv .block.block-lb{
	left: -2%;
	bottom: -6%;
	width: 15%;
	transform: rotate(342deg);
}
.home .kv .block.block-lb img{
	animation: bounce-down 1.8s linear infinite;
}
.home .kv .block.block-lt{
	left: 10%;
	top: 15%;
	width: 3%;
	transform: rotate(20deg);
}
.home .kv .block.block-rc{
	right: 10%;
	top: 30%;
	width: 5%;
	transform: rotate(20deg);
	animation: bounce-rotate 1.8s linear infinite;
}
.home .kv .block.block-rc .y2024{
	position: absolute;
	width: 120%;
	top: 50%;
	left: 0;
	z-index: 2;
	transform: translateY(-50%) translateX(-50%);
}
@keyframes bounce-down {
	25% {
		transform: translateY(-4px);
	}
    50%,100% {
    	transform: translateY(0px);
    }
    75% {
    	transform: translateY(4px);
    }
}
@keyframes bounce-rotate {
	25% {
		transform: rotate(15deg);
	}
    50%,100% {
    	transform: rotate(20deg);
    }
    75% {
    	transform: rotate(25deg);
    }
}

.home .kv .word{
	position: relative;
	z-index: 3;
	width: 100%;
}
.home .kv .word .element{
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
}
.home .kv .word .kv-1-1{
	animation: kv-1-1 .5s both linear infinite alternate;
	transform-origin: 0% 45%;
}
.home .kv .word .kv-1-2{
	animation: kv-1-2 .5s .5s both linear infinite alternate;
	transform-origin: 0% 45%;
}
.home .kv .word .kv-1-3{
	animation: kv-1-3 .5s both linear infinite alternate;
	transform-origin: 0% 45%;
}
.home .kv .word .kv-1-4{
	animation: kv-1-4 .5s both linear infinite alternate;
	transform-origin: 0% 45%;
}
@keyframes kv-1-1 {
	from {
		transform: scaleY(1.0);
	}
    to {
    	transform: scaleY(0.5);
    }
}
@keyframes kv-1-2 {
	from {
		transform: scaleY(1.0);
	}
    to {
    	transform: scaleY(0.5);
    }
}
@keyframes kv-1-3 {
	from {
		transform: scaleY(1.0);
	}
    to {
    	transform: scaleY(0.85);
    }
}
@keyframes kv-1-4 {
	from {
		transform: translateY(0);
	}
    to {
    	transform: translateY(-15px);
    }
}
.home .kv .word .kv-2-1{
	animation: kv-2-1 .5s .3s both linear infinite alternate;
	transform-origin: 0% 45%;
}
@keyframes kv-2-1 {
	from {
		transform: scaleY(1.0);
	}
    to {
    	transform: scaleY(0.85);
    }
}
.home .kv .word .kv-3-1{
	animation: kv-3-1 .6s both linear infinite alternate;
	transform-origin: 50% 22%;
}
@keyframes kv-3-1 {
	from {
		transform: rotate(0deg);
	}
    to {
    	transform: rotate(30deg);
    }

}
.home .kv .word .kv-4-1{
	animation: kv-4-1 .6s both linear infinite alternate;
	transform-origin: 72% 30%;
}
@keyframes kv-4-1 {
	from {
		transform: rotate(0deg);
	}
    to {
    	transform: rotate(20deg);
    }
}


.home .kv .word .kv-6-1{
	animation: kv-6-1 .8s both linear infinite alternate;
	transform-origin: left bottom;
}
@keyframes kv-6-1 {
	from {
		transform: rotate(-8deg);
	}
    to {
    	transform: rotate(8deg);
    }
}
.home .kv .word .kv-7-1{
	animation: kv-7-1 .7s .3s both linear infinite alternate;
	transform-origin: 30% bottom;
}
@keyframes kv-7-1 {
	from {
		transform: scaleY(1.0) scaleX(1.0);
	}
    to {
    	transform: scaleY(0.9) scaleX(1.1);
    }
}

.home .kv .word .kv-9-1{
	animation: kv-9-1 .6s .2s both linear infinite alternate;
}
@keyframes kv-9-1 {
	from {
		transform: translateY(0px);
	}
    to {
    	transform: translateY(-15px);
    }
}
.home .kv .word .kv-9-2{
	animation: kv-9-2 .6s .4s both linear infinite alternate;
	transform-origin: 60% bottom;
}
@keyframes kv-9-2 {
	from {
		transform: rotate(0deg);
	}
    to {
    	transform: rotate(-7deg);
    }
}



.home .map{
	padding: 0;
	position: relative;
}
.home .map .item{
	position: absolute;
	z-index: 2;
	width: 8%;
}
.home .map .item .t{
	position: absolute;
}
.home .map .item .b{
	position: absolute;
	width: 200%;
	top: 0;
	left: 50%;
	transform: translateY(-110%) translateX(-50%);
}
.home .map .item .map-mark{
	position: relative;
	display: block;
}
.home .map .item .map-mark .m{
	position: absolute;
	width: 20%;
	bottom: 50%;
	left: 50%;
	transform: translateX(-50%);
}
.home .map .item .map-mark .c{
	opacity: 1;
	transform: scale(1);
	animation: map-mark-c 1.2s both linear infinite alternate;
}
.home .map .item:nth-child(2) .map-mark .c{animation-delay: 1s;}
.home .map .item:nth-child(3) .map-mark .c{animation-delay: 1.5s;}
.home .map .item:nth-child(4) .map-mark .c{animation-delay: 2s;}
.home .map .item:nth-child(5) .map-mark .c{animation-delay: 2.5s;}
.home .map .item:nth-child(6) .map-mark .c{animation-delay: 3s;}
.home .map .item:nth-child(7) .map-mark .c{animation-delay: 1s;}
.home .map .item:nth-child(8) .map-mark .c{animation-delay: 1.5s;}
.home .map .item:nth-child(9) .map-mark .c{animation-delay: 2s;}
.home .map .item:nth-child(10) .map-mark .c{animation-delay: 2.5s;}
.home .map .item:nth-child(11) .map-mark .c{animation-delay: 3s;}
@keyframes map-mark-c {
	from {
		opacity: 1;
		transform: scale(1.5);
	}
    to {
    	opacity: .6;
		transform: scale(0.8);
    }
}
.home .map .item .t{
	top: 0;
	transform: translateY(-110%);
}
.home .map .item .t img{
	transform: scale(1);
	transform-origin: bottom center;
	transition: all .3s;
}
.home .map .item .t.active img{
	transform: scale(0);
}
.home .map .item .b img{
	transform: scale(0);
	transform-origin: bottom center;
	transition: all .3s;
}
.home .map .item .b.active img{
	transform: scale(1);
}

.home .map .item-project{left: 39%;bottom: 25%;}
.home .map .item-project .t{width: 110%;left: -5%;}

.home .map .item-guild{left: 10%;bottom: 10%;}
.home .map .item-guild .t{width: 60%;left: 25%;}

.home .map .item-building{right: 35%;bottom: 17%;}
.home .map .item-building .t{width: 85%;left: 25%;}

.home .map .item-media{left: 12%;top: 50%;}
.home .map .item-media .t{width: 70%;left: 5%;}

.home .map .item-construction{left: 30%;top: 45%;}
.home .map .item-construction .t{width: 70%;left: 30%;}

.home .map .item-policy{left: 25%;bottom: 2%;}
.home .map .item-policy .t{width: 60%;left: 15%;}

.home .map .item-planner{right: 38%;top: 45%;}
.home .map .item-planner .t{width: 68%;left: 30%;}

.home .map .item-agent{right: 20%;top: 45%;}
.home .map .item-agent .t{width: 80%;left: -3%;}

.home .map .item-lifestyle{right: 5%;bottom: 10%;}
.home .map .item-lifestyle .t{width: 85%;left: -10%;}

.home .map .item-material{right: 5%;top: 40%;}
.home .map .item-material .t{width: 85%;left: -15%;}

.home .map-m{
	padding: 0;
	display: none;
}
.home .map-m .flex{
	display: flex;
	flex-wrap: wrap;
	gap: 0px;
}
.home .map-m .flex .pic{
	width: calc(50% - 0px);
}
.home .map-m .flex .pic:nth-child(1),
.home .map-m .flex .pic:nth-child(2){
	width: 100%;
}

.home .home-news{
	position: relative;
	background-color: #fff;
	
	overflow: hidden;
}
.home .home-news h2{
	width: fit-content;
	position: relative;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: var(--px40);
	font-weight: 700;
	letter-spacing: var(--px5);
	margin-bottom: var(--px50);
}
.home .home-news h2 .deco-line{
	position: absolute;
	bottom: -5px;
	right: 0;
	width: 250%;
	height: 3px;
}
.home .home-news .items{
	display: flex;
	flex-wrap: wrap;
	gap: 3%;
}
.home .home-news .item{
	position: relative;
	width: calc(25% - 2.25%);
	margin-bottom: var(--px50);
	display: block;
	text-decoration: none;
}
.home .home-news .item .cover-radius{
    position: absolute;
    width: 20%;
    z-index: 4;
    top: -1px;
    right: -1px;
    transform-origin: top right;
    transform: scale(0);
    transition: all .3s;
}
.home .home-news .item:hover .cover-radius{
	transform: scale(1);
}
.home .home-news .item .zone{
	position: absolute;
	z-index: 2;
	top: 10px;
	left: 10px;
	background-color: rgba(16, 19, 17, .8);
	border-radius: 50px;
	
	color: #fff;
	font-family: "Helvetica Neue";
	font-size: var(--px16);
	font-weight: 400;
	padding: var(--px10) var(--px20);
}
.home .home-news .item .cover img{
	border-radius: 0px 50px 0px 0px;
	border-radius: 24px;
}
.home .home-news .item .cover:after{
	content: 'READ MORE';
	color: #00FF47;
	font-family: "Helvetica Neue";
	font-size: var(--px16);
	font-weight: 300;
	letter-spacing: 3.2px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .3s;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0px 50px 0px 0px;
	border-radius: 24px;
}
.home .home-news .item .cover:before{
	content: '↑';
	color: #00FF47;
	font-size: var(--px20);
	font-weight: 300;
	position: absolute;
	z-index: 5;
	top: 10px;
	right: 10px;
	transform: rotate(45deg) translateY(10px);
	opacity: 0;
	transition: all .3s .2s;
}
.home .home-news .item:hover .cover:after{
	background: rgba(0, 0, 0, 0.70);
	backdrop-filter: blur(6px);
	opacity: 1;
}
.home .home-news .item:hover .cover:before{
	transform: rotate(45deg) translateY(0px);
	opacity: 1;
}
.home .home-news .item .desc{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: var(--px10);
}
.home .home-news .item .desc h3{
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: var(--px26);
	font-weight: 700;
}
.home .home-news .item .desc .info{
	color: #8E8E8E;
	font-family: "Helvetica Neue";
	font-size: var(--px18);
	font-weight: 300;
}
.home .home-news h2 .deco-line{
	background: linear-gradient(90deg, #09BFFF 0%, #C0FF00 100%);
}
.home .home-news .item{
	width: calc(33.333333% - 2%);
}
.home .home-news .item .desc{
	flex-direction: column-reverse;
	justify-content: flex-start;
	align-items: flex-start;
	gap: var(--px10);
	margin-top: var(--px15);
}
.home .home-news .item .desc h3{
	font-size: var(--px20);
}

.home .home-project{
	position: relative;
	background-color: #fff;
	border-radius: var(--px50) var(--px50) 0 0;
	overflow: hidden;
}
.home .home-project .deco-en{
	position: absolute;
	width: 13%;
	top: 0;
	left: 0;
	transform: translateY(-5%);
}
.home .home-project .deco-en .bgimg{
	background-image: url(../img/left-title.png);
	background-size: cover;
	width: 100%;
	padding-bottom: 630%;
}
.home .home-project h2{
	width: fit-content;
	position: relative;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: var(--px40);
	font-weight: 700;
	letter-spacing: var(--px5);
	margin-bottom: var(--px50);
}
.home .home-project h2 .deco-line{
	position: absolute;
	bottom: -5px;
	right: 0;
	width: 250%;
	height: 3px;
}
.home .home-project .items{
	display: flex;
	flex-wrap: wrap;
	gap: 3%;
}
.home .home-project .item{
	position: relative;
	width: calc(25% - 2.25%);
	margin-bottom: var(--px50);
	display: block;
	text-decoration: none;
}
.home .home-project .item .cover-radius{
    position: absolute;
    width: 20%;
    z-index: 4;
    top: -1px;
    right: -1px;
    transform-origin: top right;
    transform: scale(0);
    transition: all .3s;
}
.home .home-project .item:hover .cover-radius{
    transform: scale(1);
}
.home .home-project .item .zone{
	position: absolute;
	z-index: 2;
	top: 10px;
	left: 10px;
	background-color: rgba(16, 19, 17, .8);
	border-radius: 50px;
	
	color: #fff;
	font-family: "Helvetica Neue";
	font-size: var(--px16);
	font-weight: 400;
	padding: var(--px10) var(--px20);
}
.home .home-project .item .cover img{
	border-radius: 0px 50px 0px 0px;
	border-radius: 24px;
}
.home .home-project .item .cover:after{
	content: 'READ MORE';
	color: #00FF47;
	font-family: "Helvetica Neue";
	font-size: var(--px16);
	font-weight: 300;
	letter-spacing: 3.2px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .3s;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0px 50px 0px 0px;
	border-radius: 24px;
}
.home .home-project .item .cover:before{
	content: '↑';
	color: #00FF47;
	font-size: var(--px20);
	font-weight: 300;
	position: absolute;
	z-index: 5;
	top: 10px;
	right: 10px;
	transform: rotate(45deg) translateY(10px);
	opacity: 0;
	transition: all .3s .2s;
}
.home .home-project .item:hover .cover:after{
	background: rgba(0, 0, 0, 0.70);
	backdrop-filter: blur(6px);
	opacity: 1;
}
.home .home-project .item:hover .cover:before{
	transform: rotate(45deg) translateY(0px);
	opacity: 1;
}
.home .home-project .item .desc{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: var(--px10);
}
.home .home-project .item .desc h3{
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: var(--px26);
	font-weight: 700;
}
.home .home-project .item .desc .info{
	color: #8E8E8E;
	font-family: "Helvetica Neue";
	font-size: var(--px18);
	font-weight: 300;
}
.home .home-project h2 .deco-line{
	width: 350%;
	background: linear-gradient(90deg, #09BFFF 0%, #C0FF00 100%);
}

.home .footer{
	padding: 10px 0;
	background-color: #000;
	width: 100%;
}
.home .footer p{
	font-family: Arial;
	font-size: 13px;
	font-weight: 400;
	color: #ADADAD;
	line-height: 22px;
	letter-spacing: 0em;
	text-align: center;
}

.space .kv{
	padding: 0;
	width: 100%;
	height: 100vh;
	background-size: cover;
}
.space .kv .scroll{
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	width: var(--px75);
	height: var(--px75);
	border-radius: 50%;
	border: 1px solid #3A3A3A;
	display: flex;
	justify-content: center;
	align-items: center;
}
.space .kv .scroll img{
	width: 35%;
	animation: bounce-scroll 1.8s linear infinite;
}
@keyframes bounce-scroll {
	25% {
		transform: translateY(-4px);
		opacity: 0;
	}
    50%,100% {
    	transform: translateY(0px);
    }
    75% {
    	transform: translateY(4px);
    	opacity: 1;
    }
}
.space .kv .title h1{
	position: absolute;
	width: auto;
	height: auto;
	overflow: visible;
	font-family: 'Helvetica Neue', sans-serif;
	font-size: var(--px40);
	font-weight: 700;
}
.space .kv .title h1 .deco-line{
	height: 1px;
	background-color: #3D3D3D;
	position: absolute;
}

.space .con{
	position: relative;
	background-color: #fff;
	border-radius: var(--px50) var(--px50) 0 0;
	overflow: hidden;
}
.space .con .deco-en{
	position: absolute;
	width: 13%;
	top: 0;
	left: 0;
	transform: translateY(-5%);
}
.space .con .deco-en .bgimg{
	background-image: url(../img/left-title.png);
	background-size: cover;
	width: 100%;
	padding-bottom: 630%;
}
.space .con h2{
	width: fit-content;
	position: relative;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: var(--px40);
	font-weight: 700;
	letter-spacing: var(--px5);
	margin-bottom: var(--px50);
}
.space .con h2 .deco-line{
	position: absolute;
	bottom: -5px;
	right: 0;
	width: 250%;
	height: 3px;
}
.space .con .items{
	display: flex;
	flex-wrap: wrap;
	gap: 3%;
}
.space .con .item{
	position: relative;
	width: calc(25% - 2.25%);
	margin-bottom: var(--px50);
	display: block;
	text-decoration: none;
}
.space .items .item .cover-radius{
    position: absolute;
    width: 20%;
    z-index: 4;
    top: -1px;
    right: -1px;
    transform-origin: top right;
    transform: scale(0);
    transition: all .3s;
}
.space .con .item:hover .cover-radius{
    transform: scale(1);
}
.space .con .item .zone{
	position: absolute;
	z-index: 2;
	top: 10px;
	left: 10px;
	background-color: rgba(16, 19, 17, .8);
	border-radius: 50px;
	
	color: #fff;
	font-family: "Helvetica Neue";
	font-size: var(--px16);
	font-weight: 400;
	padding: var(--px10) var(--px20);
}
.space .con .item .cover img{
	border-radius: 0px 50px 0px 0px;
	border-radius: 24px;
}
.space .con .item .cover:after{
	content: 'READ MORE';
	color: #00FF47;
	font-family: "Helvetica Neue";
	font-size: var(--px16);
	font-weight: 300;
	letter-spacing: 3.2px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	
	
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .3s;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0px 50px 0px 0px;
	border-radius: 24px;
}
.space .con .item .cover:before{
	content: '↑';
	color: #00FF47;
	font-size: var(--px20);
	font-weight: 300;
	position: absolute;
	z-index: 5;
	top: 10px;
	right: 10px;
	transform: rotate(45deg) translateY(10px);
	opacity: 0;
	transition: all .3s .2s;
}
.space .con .item:hover .cover:after{
	background: rgba(0, 0, 0, 0.70);
	
	
	opacity: 1;
}
.space .con .item:hover .cover:before{
	transform: rotate(45deg) translateY(0px);
	opacity: 1;
}
.space .con .item .desc{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: var(--px10);
	flex-wrap: wrap;
}
.space .con .item .desc h3{
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: var(--px26);
	font-weight: 700;
}
.space .con .item .desc .info{
	color: #8E8E8E;
	font-family: "Helvetica Neue";
	font-size: var(--px18);
	font-weight: 300;
}
.space .con .item .desc .pv{
	width: 100%;
	text-align: right;
	text-decoration: none;
	color: #8E8E8E;
	font-family: "Helvetica Neue";
	font-size: var(--px18);
	font-weight: 300;
}
.space .footer{
	padding: 10px 0;
	background-color: #000;
	width: 100%;
}
.space .footer p{
	font-family: Arial;
	font-size: 13px;
	font-weight: 400;
	color: #ADADAD;
	text-align: center;
}

.news .kv{
	background-image: url(../img/kv-news.jpg);
}
.news .kv .title{
	width: 55%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-80%);
}
.news .kv .title h1{
	width: 100%;
	text-align: right;
	right: 0;
	bottom: 0%;
	color: #00FFE0;
	letter-spacing: var(--px5);
	transform: translateY(200%);
}
.news .kv .title h1 .deco-line{
	width: 75%;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(0%);
	background-color: #3FA943;
}

.news .con h2 .deco-line{
	background: linear-gradient(90deg, #09BFFF 0%, #C0FF00 100%);
}
.news .con .item{
	width: calc(33.333333% - 2%);
}
.news .con .item .desc{
	flex-direction: column-reverse;
	justify-content: flex-start;
	align-items: flex-start;
	gap: var(--px10);
	margin-top: var(--px15);
}
.news .con .item .desc h3{
	font-size: var(--px20);
}

.news-detail{
	background-color: #fff;
}
.news-detail .article{
	position: relative;
	background-color: #fff;
	border-radius: var(--px50);
	overflow: hidden;
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
	margin-top: var(--px30);
	margin-bottom: var(--px30);
	filter: drop-shadow(0 0 0.5rem #ccc);
	padding: 0;
}
.news-detail .article .box{
	padding: 5% 0;
}
.news-detail .article h1{
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	font-family: 'Helvetica Neue', sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 10px;
}
.news-detail .article .date{
	color: #8E8E8E;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 300;
}
.news-detail .article article{
	margin-top: 20px;
}
.news-detail .article article .pic{
	margin-bottom: 30px;
}
.news-detail .article article .pic .desc{
	color: #333;
	font-family: "Helvetica Neue";
	font-size: 14px;
	font-weight: 300;
	margin-top: 10px;
	line-height: 1.5;
}
.news-detail .article article h3{
	color: #0f0f0f;
	font-family: "Helvetica Neue";
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 10px;
}
.news-detail .article article p{
	color: #0f0f0f;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
}
.news-detail .article article p + p{
	margin-top: 20px;
}
.news-detail .article article p + .pic{
	margin-top: 20px;
}
.news-detail .tags{
	display: flex;
	align-items: center;
	margin-top: 40px;
}
.news-detail .tags a{
	text-decoration: none;
	border-radius: 5px;
	background-color: #EBEBEB;
	color: #838383;
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	padding: 6px 15px;
	transition: all .3s;
}
.news-detail .tags a:hover{
	background-color: #00FF47;
	color: #222;
}
.news-detail .tags a + a{
	margin-left: 10px;
}
.news-detail .footer{
	padding: 10px 0;
	background-color: #000;
	width: 100%;
}
.news-detail .footer p{
	font-family: Arial;
	font-size: 13px;
	font-weight: 400;
	color: #ADADAD;
	text-align: center;
}
.news-detail .back-btn{
	position: fixed;
	top: 40px;
	left: 40px;
	z-index: 11;
	display: flex;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: #000;
	transition: all .3s;
}
.news-detail .back-btn i{
	font-size: 30px;
	color: #fff;
	transition: all .3s;
}
.news-detail .back-btn:hover{
	background-color: #00ff47;
}
.news-detail .back-btn:hover i{
	color: #000;
}

.news-detail .related h2{
	width: fit-content;
	position: relative;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 50px;
}
.news-detail .related h2 .deco-line{
	position: absolute;
	bottom: -5px;
	right: 0;
	width: 250%;
	height: 3px;
	background: linear-gradient(90deg, #09BFFF 0%, #C0FF00 100%);
}
.news-detail .related .items{
	display: flex;
	flex-wrap: wrap;
	gap: 3%;
}
.news-detail .related .item .cover-radius{
    position: absolute;
    width: 20%;
    z-index: 4;
    top: -1px;
    right: -1px;
    transform-origin: top right;
    transform: scale(0);
    transition: all .3s;
}
.news-detail .related .item:hover .cover-radius{
	transform: scale(1);
}
.news-detail .related .item{
	position: relative;
	width: calc(33.333333% - 2%);
	margin-bottom: 50px;
	display: block;
	text-decoration: none;
}
.news-detail .related .item .zone{
	position: absolute;
	z-index: 2;
	top: 10px;
	left: 10px;
	background-color: rgba(16, 19, 17, .8);
	border-radius: 50px;
	
	color: #fff;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	padding: 10px 20px;
}
.news-detail .related .item .cover img{
	border-radius: 0px 50px 0px 0px;
	border-radius: 24px;
}
.news-detail .related .item .cover:after{
	content: 'READ MORE';
	color: #00FF47;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 3.2px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	
	
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .3s;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0px 50px 0px 0px;
	border-radius: 24px;
}
.news-detail .related .item .cover:before{
	content: '↑';
	color: #00FF47;
	font-size: 20px;
	font-weight: 300;
	position: absolute;
	z-index: 5;
	top: 10px;
	right: 10px;
	transform: rotate(45deg) translateY(10px);
	opacity: 0;
	transition: all .3s .2s;
}
.news-detail .related .item:hover .cover:after{
	background: rgba(0, 0, 0, 0.70);
	backdrop-filter: blur(6px);
	
	opacity: 1;
}
.news-detail .related .item:hover .cover:before{
	transform: rotate(45deg) translateY(0px);
	opacity: 1;
}
.news-detail .related .item .desc{
	display: flex;
	justify-content: space-between;
	flex-direction: column-reverse;
	margin-top: 10px;
	gap: 10px;
}
.news-detail .related .item .desc h3{
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 20px;
	font-weight: 700;
}
.news-detail .related .item .desc .info{
	color: #8E8E8E;
	font-family: "Helvetica Neue";
	font-size: 18px;
	font-weight: 300;
}

.project .kv{
	background-image: url(../img/kv-project.jpg);
}
.project .kv .title{
	width: 66%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-60%);
}
.project .kv .title h1{
	right: 0;
	bottom: 10%;
	color: #00FF47;
	letter-spacing: var(--px5);
}
.project .kv .title h1 .deco-line{
	width: 70%;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(-120%);
}

.project .con h2 .deco-line{
	width: 350%;
	background: linear-gradient(90deg, #09BFFF 0%, #C0FF00 100%);
}

.project-detail{
	background-color: #fff;
}
.project-detail .back-btn{
	position: fixed;
	top: 40px;
	left: 40px;
	z-index: 11;
	display: flex;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: #000;
	transition: all .3s;
}
.project-detail .back-btn i{
	font-size: 30px;
	color: #fff;
	transition: all .3s;
}
.project-detail .back-btn:hover{
	background-color: #00ff47;
}
.project-detail .back-btn:hover i{
	color: #000;
}
.project-detail .overview{
	padding-top: 10%;
}
.project-detail .overview .flex{
	display: flex;
	position: relative;
}
.project-detail .overview .flex .gray-block{
	position: absolute;
	top: 110px;
	right: 0;
	width: 80%;
	height: 88%;
	border-radius: 0px 50px 50px 0px;
	background: linear-gradient(263deg, #EBEBEB 28.42%, #F8F8F8 96.11%);
}
.project-detail .overview .flex .color-block{
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 105%;
	border-radius: 0px 90px 0px 0px;
	background: linear-gradient(90deg, #09BFFF 0%, #C0FF00 100%);
	transform: translateX(-45%) translateY(-10%);
}
.project-detail .overview .flex .image,
.project-detail .overview .flex .text{
	width: 50%;
	position: relative;
}
.project-detail .overview .flex .image .slick-1 .slick-dots{
	bottom: 10px;
    right: auto;
    left: 10px;
    width: auto;
}
.project-detail .overview .flex .image .slick-btn{
	position: absolute;
	z-index: 6;
	right: 10px;
	bottom: 10px;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s;
	cursor: pointer;
}
.project-detail .overview .flex .image .slick-btn.prev{
	right: 80px;
}
.project-detail .overview .flex .image .slick-btn i{
	color: #222;
	font-size: 26px;
}
.project-detail .overview .flex .image .slick-btn:hover{
	background-color: #00FF47;
}
.project-detail .overview .flex .text{
	padding-left: 2%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 2;
}
.project-detail .overview .data h1{
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	font-family: 'Helvetica Neue', sans-serif;
	font-size: 30px;
	color: #0f0f0f;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 20px;
}
.project-detail .overview .data .pin{
	color: #f00;
	font-family: "Helvetica Neue";
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 10px;
}
.project-detail .overview .data .pin span{
	font-size: 16px;
}
.project-detail .overview .data .price{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 20px;
	font-weight: 500;
}
.project-detail .overview .data .info{
	margin-top: 30px;
	padding-right: 10%;
}
.project-detail .overview .data .info .item{
	display: flex;
	
	
}
.project-detail .overview .data .info .item + .item{
	margin-top: 15px;
}
.project-detail .overview .data .info .item .t{
	width: 90px;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 700;
	flex-shrink: 0;
	line-height: 1.4;
}
.project-detail .overview .data .info .item .c{
	width: 87%;
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}
.project-detail .overview .case-btn{
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.project-detail .overview .get-price-btn,
.project-detail .overview .get-life-btn{
	display: block;
	text-decoration: none;
	width: fit-content;
	border-radius: 10px;
	background-color: #222;
	color: #fff;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	padding: 12px 20px;
	transition: all .3s;
}
.project-detail .overview .get-price-btn:hover,
.project-detail .overview .get-life-btn:hover{
	background-color: #00FF47;
	color: #222;
}

.project-detail .infomation h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
}
.project-detail .infomation h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.project-detail .infomation h2:after{
	content: 'Infomation';
	font-size: 100px;
	color: #222;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	opacity: 0.05;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateX(-20%);
}
.project-detail .infomation .data{
	display: flex;
}
.project-detail .infomation .data .items{
	width: 50%;
}
.project-detail .infomation .data .items .item{
	display: flex;
}
.project-detail .infomation .data .items .item + .item{
	margin-top: 15px;
}
.project-detail .infomation .data .items .item .t{
	width: 90px;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 700;
	flex-shrink: 0;
	line-height: 1.4;
}
.project-detail .infomation .data .items .item .c{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}

.project-detail .features h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
}
.project-detail .features h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.project-detail .features h2:after{
	content: 'Features';
	font-size: 100px;
	color: #222;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	opacity: 0.05;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateX(-20%);
}
.project-detail .features .con h3{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1.8px;
	margin-bottom: 10px;
}
.project-detail .features .con p{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 1.8px;
}
.project-detail .features .con p + p{
	margin-top: 20px;
}
.project-detail .features .con .pic{
	margin-top: 20px;
	margin-bottom: 20px;
}
.project-detail .tags{
	display: flex;
	align-items: center;
	margin-top: 40px;
}
.project-detail .tags a{
	text-decoration: none;
	border-radius: 5px;
	background-color: #EBEBEB;
	color: #838383;
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	padding: 6px 15px;
	transition: all .3s;
}
.project-detail .tags a:hover{
	background-color: #00FF47;
	color: #222;
}
.project-detail .tags a + a{
	margin-left: 10px;
}

.project-detail .contact{
	padding-bottom: 0;
}
.project-detail .contact .box{
	border-radius: 50px 50px 0px 0px;
	background: #F1F1F1;
	padding: 5% 10%;
	position: relative;
}
.project-detail .contact .box:before{
	content: 'Contact\AUS';
	white-space: pre;
	font-size: 130px;
	color: #FDFDFD;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	position: absolute;
	left: 0;
	top: 0;
}
.project-detail .contact .box .flex{
	display: flex;
	gap: 20%;
}
.project-detail .contact .box .flex .title{
	width: 25%;
}
.project-detail .contact .box .flex .form{
	width: 55%;
}
.project-detail .contact h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
	margin-left: auto;
}
.project-detail .contact h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.project-detail .contact .related_case{
	background-color: #E5E5E5;
	border-radius: 5px;
	padding: 15px;
	margin-bottom: 30px;
}
.project-detail .contact .related_case .h{
	color: #6d6d6d;
	font-family: "Helvetica Neue";
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 25px;
}
.project-detail .contact .related_case .items{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.project-detail .contact .related_case .items label{
	width: calc(50% - 10px);
	display: flex;
	align-items: center;
}
.project-detail .contact .related_case .items label input{
	margin-right: 5px;
}
.project-detail .contact .related_case .items label span{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
}
.project-detail .contact .form_check_txt{
	color: #222;
	margin-left: 10px;
	line-height: 1.8;
	font-family: "Helvetica Neue";
	font-weight: 400;
}
.project-detail .contact .form_check_txt a{
	text-decoration: none;
	color: #00B031;
}
.project-detail .contact .reg_btn{
	width: 240px;
	padding: 20px 10px;
	border-radius: 60px;
	background-color: #00FF47;
	color: #111;
	font-family: Inter;
	font-size: 22px;
	font-weight: 700;
	border: 0px;
	margin-top: 30px;
}
.project-detail .contact .reg_btn_disabled{
    cursor: no-drop;
    opacity: 0.6;
}
.project-detail .contact .reg_btn:hover{
    background-color: #00e23f;
}
.project-detail .contact .msgerror{
	color: #333;
	font-size: 14px;
	text-align: center;
	margin-top: 10px;
}
.project-detail .contact input,select{
	background-color: #E5E5E5;
	border-radius: 5px;
	color: #000;
	border: 0px solid #333;
	padding-left: 10px;
	font-family: "Helvetica Neue";
}
.project-detail .contact input[type="text"],input[type="phone"],select{
	height: 60px;
	width: 100%;
	margin-bottom: 20px;
}
.project-detail .contact textarea{
	background-color: #E5E5E5;
	border-radius: 5px;
	width: 100%;
	height: 200px;
	color: #000;
	margin-bottom: 15px;
	padding: 10px 0 0 10px;
	border: 0px;
	font-family: "Helvetica Neue";
}
::placeholder { 
  color: #949494 !important;
}
:-ms-input-placeholder { 
  color: #949494 !important;
}
::-ms-input-placeholder { 
  color: #949494 !important;
}
.project-detail .footer{
	padding: 10px 0;
	background-color: #000;
	width: 100%;
}
.project-detail .footer p{
	font-family: Arial;
	font-size: 13px;
	font-weight: 400;
	color: #ADADAD;
	text-align: center;
}

.media .kv{
	background-image: url(../img/kv-media.jpg);
}
.media .kv .title{
	width: 55%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-80%);
}
.media .kv .title h1{
	width: 100%;
	text-align: right;
	right: 0;
	bottom: 0%;
	color: #EBD5F4;
	letter-spacing: var(--px5);
	transform: translateY(200%);
}
.media .kv .title h1 .deco-line{
	width: 70%;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(0%);
	background-color: #BC7EB2;
}

.media .con h2 .deco-line{
	background: linear-gradient(90deg, #FFD2F8 0%, #74EEFF 100%);
}
.media .con .item{
	
}

.planner .kv{
	background-image: url(../img/kv-planner.jpg);
}
.planner .kv .title{
	width: 55%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-80%);
}
.planner .kv .title h1{
	width: 100%;
	text-align: right;
	right: 0;
	bottom: 0%;
	color: #fff;
	letter-spacing: var(--px5);
	transform: translateY(200%);
}
.planner .kv .title h1 .deco-line{
	width: 70%;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(0%);
	background-color: #8D4343;
}

.planner .con h2 .deco-line{
	background: linear-gradient(90deg, #E31737 0%, #EF32FF 100%);
}
.planner .con .item{
	
}

.planner-detail{
	background-color: #fff;
}
.planner-detail .back-btn{
	position: fixed;
	top: 40px;
	left: 40px;
	z-index: 11;
	display: flex;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: #000;
	transition: all .3s;
}
.planner-detail .back-btn i{
	font-size: 30px;
	color: #fff;
	transition: all .3s;
}
.planner-detail .back-btn:hover{
	background-color: #00ff47;
}
.planner-detail .back-btn:hover i{
	color: #000;
}

.planner-detail .profile{
	padding-top: 150px;
}
.planner-detail .profile .logo{
	width: 200px;
	margin-bottom: 50px;
}
.planner-detail .profile h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
}
.planner-detail .profile h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.planner-detail .profile h2:after{
	content: 'Profile';
	font-size: 100px;
	color: #222;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	opacity: 0.05;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateX(-50%);
}
.planner-detail .profile .con h3{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1.8px;
	margin-bottom: 10px;
}
.planner-detail .profile .con p{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 1.8px;
}
.planner-detail .profile .con p + h3{
	margin-top: 20px;
}
.planner-detail .profile .con p + p{
	margin-top: 20px;
}
.planner-detail .profile .con .pic{
	margin-top: 20px;
	margin-bottom: 20px;
}

.planner-detail .contact{
	padding-bottom: 0;
}
.planner-detail .contact .box{
	border-radius: 50px 50px 0px 0px;
	background: #F1F1F1;
	padding: 5% 10%;
	position: relative;
}
.planner-detail .contact .box:before{
	content: 'Contact\AUS';
	white-space: pre;
	font-size: 130px;
	color: #FDFDFD;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	position: absolute;
	left: 0;
	top: 0;
}
.planner-detail .contact .box .flex{
	display: flex;
	gap: 20%;
}
.planner-detail .contact .box .flex .title{
	width: 25%;
}
.planner-detail .contact .box .flex .link{
	width: 55%;
}
.planner-detail .contact h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
	margin-left: auto;
}
.planner-detail .contact h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.planner-detail .contact .box .flex .link .item{
	display: flex;
	align-items: center;
	padding: 15px 0px;
	border-bottom: 1px solid #CECECE;
}
.planner-detail .contact .box .flex .link .item .t,
.planner-detail .contact .box .flex .link .item .c{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 2px;
}
.planner-detail .contact .box .flex .link .item .t{
	padding: 0 30px;
	border-right: 1px solid #cecece;
}
.planner-detail .contact .box .flex .link .item .c{
	padding: 0 30px;
}
.planner-detail .contact .box .flex .link .item .c .pic img{
	width: 35px;
}
.planner-detail .contact .box .flex .link .item .c .pic img + img{
	margin-left: 10px;
}
.planner-detail .footer{
	padding: 10px 0;
	background-color: #000;
	width: 100%;
}
.planner-detail .footer p{
	font-family: Arial;
	font-size: 13px;
	font-weight: 400;
	color: #ADADAD;
	text-align: center;
}

.construction .kv{
	background-image: url(../img/kv-construction.jpg);
}
.construction .kv .title{
	width: 55%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-80%);
}
.construction .kv .title h1{
	width: 100%;
	text-align: right;
	right: 0;
	bottom: 0%;
	color: #FFBE73;
	letter-spacing: var(--px5);
	transform: translateY(200%);
}
.construction .kv .title h1 .deco-line{
	width: 70%;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(0%);
	background-color: #604B00;
}

.construction .con h2 .deco-line{
	background: linear-gradient(90deg, #FFBE73 0%, #9C6693 100%);
}
.construction .con .item{
	
}

.construction-detail{
	background-color: #fff;
}
.construction-detail .back-btn{
	position: fixed;
	top: 40px;
	left: 40px;
	z-index: 11;
	display: flex;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: #000;
	transition: all .3s;
}
.construction-detail .back-btn i{
	font-size: 30px;
	color: #fff;
	transition: all .3s;
}
.construction-detail .back-btn:hover{
	background-color: #00ff47;
}
.construction-detail .back-btn:hover i{
	color: #000;
}

.construction-detail .profile{
	padding-top: 150px;
}
.construction-detail .profile .logo{
	width: 200px;
	margin-bottom: 50px;
}
.construction-detail .profile h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
}
.construction-detail .profile h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.construction-detail .profile h2:after{
	content: 'Profile';
	font-size: 100px;
	color: #222;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	opacity: 0.05;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateX(-50%);
}
.construction-detail .profile .con h3{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1.8px;
	margin-bottom: 10px;
}
.construction-detail .profile .con p{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 1.8px;
}
.construction-detail .profile .con p + h3{
	margin-top: 20px;
}
.construction-detail .profile .con p + p{
	margin-top: 20px;
}
.construction-detail .profile .con .pic{
	margin-top: 20px;
	margin-bottom: 20px;
}

.construction-detail .contact{
	padding-bottom: 0;
}
.construction-detail .contact .box{
	border-radius: 50px 50px 0px 0px;
	background: #F1F1F1;
	padding: 5% 10%;
	position: relative;
}
.construction-detail .contact .box:before{
	content: 'Contact\AUS';
	white-space: pre;
	font-size: 130px;
	color: #FDFDFD;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	position: absolute;
	left: 0;
	top: 0;
}
.construction-detail .contact .box .flex{
	display: flex;
	gap: 20%;
}
.construction-detail .contact .box .flex .title{
	width: 25%;
}
.construction-detail .contact .box .flex .link{
	width: 55%;
}
.construction-detail .contact h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
	margin-left: auto;
}
.construction-detail .contact h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.construction-detail .contact .box .flex .link .item{
	display: flex;
	align-items: center;
	padding: 15px 0px;
	border-bottom: 1px solid #CECECE;
}
.construction-detail .contact .box .flex .link .item .t,
.construction-detail .contact .box .flex .link .item .c{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 2px;
}
.construction-detail .contact .box .flex .link .item .t{
	padding: 0 30px;
	border-right: 1px solid #cecece;
}
.construction-detail .contact .box .flex .link .item .c{
	padding: 0 30px;
}
.construction-detail .contact .box .flex .link .item .c .pic img{
	width: 35px;
}
.construction-detail .contact .box .flex .link .item .c .pic img + img{
	margin-left: 10px;
}
.construction-detail .footer{
	padding: 10px 0;
	background-color: #000;
	width: 100%;
}
.construction-detail .footer p{
	font-family: Arial;
	font-size: 13px;
	font-weight: 400;
	color: #ADADAD;
	text-align: center;
}

.lifestyle2 .kv{
	padding: 0;
	width: 100%;
	height: 100vh;
	background-size: cover;
}
.lifestyle2 .kv .scroll{
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	width: var(--px75);
	height: var(--px75);
	border-radius: 50%;
	border: 1px solid #3A3A3A;
	display: flex;
	justify-content: center;
	align-items: center;
}
.lifestyle2 .kv .scroll img{
	width: 35%;
	animation: bounce-scroll 1.8s linear infinite;
}
@keyframes bounce-scroll {
	25% {
		transform: translateY(-4px);
		opacity: 0;
	}
    50%,100% {
    	transform: translateY(0px);
    }
    75% {
    	transform: translateY(4px);
    	opacity: 1;
    }
}
.lifestyle2 .kv .title h1{
	position: absolute;
	width: auto;
	height: auto;
	overflow: visible;
	font-family: 'Helvetica Neue', sans-serif;
	font-size: var(--px40);
	font-weight: 700;
}
.lifestyle2 .kv .title h1 .deco-line{
	height: 1px;
	background-color: #3D3D3D;
	position: absolute;
}
.lifestyle2 .con{
	position: relative;
	background-color: #fff;
	border-radius: var(--px50) var(--px50) 0 0;
	overflow: hidden;
}
.lifestyle2 .con .deco-en{
	position: absolute;
	width: 13%;
	top: 0;
	left: 0;
	transform: translateY(-5%);
}
.lifestyle2 .con .deco-en .bgimg{
	background-image: url(../img/left-title.png);
	background-size: cover;
	width: 100%;
	padding-bottom: 630%;
}
.lifestyle2 .con h2{
	width: fit-content;
	position: relative;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: var(--px40);
	font-weight: 700;
	letter-spacing: var(--px5);
	margin-bottom: var(--px50);
}
.lifestyle2 .con h2 .deco-line{
	position: absolute;
	bottom: -5px;
	right: 0;
	width: 250%;
	height: 3px;
}
.lifestyle2 .con .items{
	display: flex;
	flex-wrap: wrap;
	gap: 3%;
}
.lifestyle2 .con .item{
	position: relative;
	width: calc(25% - 2.25%);
	margin-bottom: var(--px50);
	display: block;
	text-decoration: none;
	background-color: #f5f5f5;
	border-radius: 24px 24px 0 0;
	display: flex;
	flex-direction: column;
}
.lifestyle2 .con .item .cover{
	overflow: hidden;
	border-radius: 24px 24px 0 0;
}
.lifestyle2 .con .item .cover .img-block{
	border-radius: 0px 50px 0px 0px;
	border-radius: 24px 24px 0 0;
	padding-bottom: 80%;
	background-size: cover;
	background-position: center;
	transition: all .5s;
}
.lifestyle2 .con .item:hover .cover .img-block{
	transform: scale(1.1);
}
.lifestyle2 .con .item .desc{
	display: flex;
	flex-direction: column;
	padding: 20px;
	flex-grow: 1; 
	padding: 20px;
}
.lifestyle2 .con .item .desc h3{
	color: #a6a6a6;
	font-family: "Helvetica Neue";
	font-size: var(--px18);
	font-weight: 500;
	margin-bottom: 5px;
}
.lifestyle2 .con .item .desc .slogan a{
	text-decoration: none;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: var(--px22);
	font-weight: 500;
	line-height: 1.5;
}
.lifestyle2 .con .item .desc .link-icon{
	
	width: fit-content;
	margin-left: auto;
	margin-top: 10px;
	display: flex;
	gap: 5px;
	margin-top: auto;
	padding-top: 10px;
}
.lifestyle2 .con .item .desc .link-icon img{
	width: 20px;
}
.lifestyle2 .footer{
	padding: 10px 0;
	background-color: #000;
	width: 100%;
}
.lifestyle2 .footer p{
	font-family: Arial;
	font-size: 13px;
	font-weight: 400;
	color: #ADADAD;
	text-align: center;
}


.lifestyle .kv{
	background-image: url(../img/kv-lifestyle.jpg);
}
.lifestyle .kv .title{
	width: 55%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-80%);
}
.lifestyle .kv .title h1{
	width: 100%;
	text-align: center;
	right: 0;
	bottom: 0%;
	color: #00FF47;
	letter-spacing: var(--px5);
	transform: translateY(-100%);
}
.lifestyle .kv .title h1 .deco-line{
	width: 35%;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(0%);
	background-color: #424A40;
}
.lifestyle .kv .title h1 .deco-line2{
	position: absolute;
	width: 35%;
	height: 1px;
	top: 50%;
	left: auto;
	right: 0;
	transform: translateY(-50%) translateX(0%);
	background-color: #424A40;
}

.lifestyle .con h2 .deco-line{
	background: linear-gradient(90deg, #09BFFF 0%, #C0FF00 100%);
}
.lifestyle .con .item{
	
}

.lifestyle-detail{
	background-color: #fff;
}
.lifestyle-detail .back-btn{
	position: fixed;
	top: 40px;
	left: 40px;
	z-index: 11;
	display: flex;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: #000;
	transition: all .3s;
}
.lifestyle-detail .back-btn i{
	font-size: 30px;
	color: #fff;
	transition: all .3s;
}
.lifestyle-detail .back-btn:hover{
	background-color: #00ff47;
}
.lifestyle-detail .back-btn:hover i{
	color: #000;
}

.lifestyle-detail .overview{
	padding-top: 150px;
}
.lifestyle-detail .overview .logo-block{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.lifestyle-detail .overview .logo-block .logo{
	width: 200px;
	padding-right: 30px;
	border-right: 1px solid #cecece;
}
.lifestyle-detail .overview .logo-block h1.company-name{
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	padding-left: 30px;
}
.lifestyle-detail .overview .text{
	border-radius: 20px;
	background: #F3F3F3;
	padding: 15px 15px;
}
.lifestyle-detail .overview .text p{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 1.8px;
}

.lifestyle-detail .products h2,
.lifestyle-detail .profile h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
}
.lifestyle-detail .products h2:before,
.lifestyle-detail .profile h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.lifestyle-detail .products h2:after,
.lifestyle-detail .profile h2:after{
	font-size: 100px;
	color: #222;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	opacity: 0.05;
	position: absolute;
	left: 0;
	bottom: 0;
}
.lifestyle-detail .products h2:after{
	content: 'Products';
	left: -130%;
}
.lifestyle-detail .profile h2:after{
	content: 'Profile';
	left: -130%;
}
.lifestyle-detail .products .con h3,
.lifestyle-detail .profile .con h3{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1.8px;
	margin-bottom: 10px;
}
.lifestyle-detail .products .con h4,
.lifestyle-detail .profile .con h4{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1.8px;
	margin-bottom: 10px;
}
.lifestyle-detail .products .con p,
.lifestyle-detail .profile .con p{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 1.8px;
}
.lifestyle-detail .products .con p + h3,
.lifestyle-detail .profile .con p + h3{
	margin-top: 20px;
}
.lifestyle-detail .products .con p + h4,
.lifestyle-detail .profile .con p + h4{
	margin-top: 20px;
}
.lifestyle-detail .products .con p + p,
.lifestyle-detail .profile .con p + p{
	margin-top: 20px;
}
.lifestyle-detail .products .con .pic,
.lifestyle-detail .profile .con .pic{
	margin-top: 20px;
	margin-bottom: 20px;
}
.lifestyle-detail .profile .con a{
	text-decoration: none;
	color: #01a22e;
}

.lifestyle-detail .contact{
	padding-bottom: 0;
}
.lifestyle-detail .contact .box{
	border-radius: 50px 50px 0px 0px;
	background: #F1F1F1;
	padding: 5% 10%;
	position: relative;
}
.lifestyle-detail .contact .box:before{
	content: 'Contact\AUS';
	white-space: pre;
	font-size: 130px;
	color: #FDFDFD;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	position: absolute;
	left: 0;
	top: 0;
}
.lifestyle-detail .contact .box .flex{
	display: flex;
	gap: 20%;
}
.lifestyle-detail .contact .box .flex .title{
	width: 25%;
}
.lifestyle-detail .contact .box .flex .form{
	width: 55%;
}
.lifestyle-detail .contact h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
	margin-left: auto;
}
.lifestyle-detail .contact h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.lifestyle-detail .contact .form_check_txt{
	color: #222;
	margin-left: 10px;
	line-height: 1.8;
	font-family: "Helvetica Neue";
	font-weight: 400;
}
.lifestyle-detail .contact .form_check_txt a{
	text-decoration: none;
	color: #00B031;
}
.lifestyle-detail .contact .reg_btn{
	width: 240px;
	padding: 20px 10px;
	border-radius: 60px;
	background-color: #00FF47;
	color: #111;
	font-family: Inter;
	font-size: 22px;
	font-weight: 700;
	border: 0px;
	margin-top: 30px;
}
.lifestyle-detail .contact .reg_btn_disabled{
    cursor: no-drop;
    opacity: 0.6;
}
.lifestyle-detail .contact .reg_btn:hover{
    background-color: #00e23f;
}
.lifestyle-detail .contact .msgerror{
	color: #333;
	font-size: 14px;
	text-align: center;
	margin-top: 10px;
}
.lifestyle-detail .contact input,select{
	background-color: #E5E5E5;
	border-radius: 5px;
	color: #000;
	border: 0px solid #333;
	padding-left: 10px;
	font-family: "Helvetica Neue";
}
.lifestyle-detail .contact input[type="text"],input[type="phone"],select{
	height: 60px;
	width: 100%;
	margin-bottom: 20px;
}
.lifestyle-detail .contact textarea{
	background-color: #E5E5E5;
	border-radius: 5px;
	width: 100%;
	height: 200px;
	color: #000;
	margin-bottom: 15px;
	padding: 10px 0 0 10px;
	border: 0px;
	font-family: "Helvetica Neue";
}
::placeholder { 
  color: #949494 !important;
}
:-ms-input-placeholder { 
  color: #949494 !important;
}
::-ms-input-placeholder { 
  color: #949494 !important;
}
.lifestyle-detail .contact .box .flex .link{
	margin-top: 30px;
}
.lifestyle-detail .contact .box .flex .link .item{
	display: flex;
	align-items: center;
	padding: 15px 0px;
	border-bottom: 1px solid #CECECE;
}
.lifestyle-detail .contact .box .flex .link .item a{
	text-decoration: none;
	color: #00B031;
}
.lifestyle-detail .contact .box .flex .link .item .t,
.lifestyle-detail .contact .box .flex .link .item .c{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 2px;
}
.lifestyle-detail .contact .box .flex .link .item .t{
	padding: 0 30px;
	border-right: 1px solid #cecece;
}
.lifestyle-detail .contact .box .flex .link .item .c{
	padding: 0 30px;
}
.lifestyle-detail .contact .box .flex .link .item .c .pic img{
	width: 35px;
}
.lifestyle-detail .contact .box .flex .link .item .c .pic img + img{
	margin-left: 10px;
}
.lifestyle-detail .footer{
	padding: 10px 0;
	background-color: #000;
	width: 100%;
}
.lifestyle-detail .footer p{
	font-family: Arial;
	font-size: 13px;
	font-weight: 400;
	color: #ADADAD;
	text-align: center;
}

.material .kv{
	background-image: url(../img/kv-material.jpg);
}
.material .kv .title{
	width: 55%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-70%);
}
.material .kv .title h1{
	width: 100%;
	text-align: right;
	right: 0;
	bottom: 0%;
	color: #FF7E1E;
	letter-spacing: var(--px5);
	transform: translateY(200%);
}
.material .kv .title h1 .deco-line{
	width: 70%;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(0%);
	background-color: #9C611C;
}

.material .con h2 .deco-line{
	background: linear-gradient(90deg, #FFAB09 0%, #FAFF00 100%);
}
.material .con .item{
	
}

.material-detail{
	background-color: #fff;
}
.material-detail .back-btn{
	position: fixed;
	top: 40px;
	left: 40px;
	z-index: 11;
	display: flex;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: #000;
	transition: all .3s;
}
.material-detail .back-btn i{
	font-size: 30px;
	color: #fff;
	transition: all .3s;
}
.material-detail .back-btn:hover{
	background-color: #00ff47;
}
.material-detail .back-btn:hover i{
	color: #000;
}

.material-detail .overview{
	padding-top: 150px;
}
.material-detail .overview .logo-block{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}
.material-detail .overview .logo-block .logo{
	width: 200px;
	padding-right: 30px;
	border-right: 1px solid #cecece;
}
.material-detail .overview .logo-block h1.company-name{
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	padding-left: 30px;
}
.material-detail .overview .text{
	border-radius: 20px;
	background: #F3F3F3;
	padding: 15px 10px;
}
.material-detail .overview .text p{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 1.8px;
}

.material-detail .products h2,
.material-detail .profile h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
}
.material-detail .products h2:before,
.material-detail .profile h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.material-detail .products h2:after,
.material-detail .profile h2:after{
	font-size: 100px;
	color: #222;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	opacity: 0.05;
	position: absolute;
	left: 0;
	bottom: 0;
}
.material-detail .products h2:after{
	content: 'Products';
	left: -130%;
}
.material-detail .profile h2:after{
	content: 'Profile';
	left: -130%;
}
.material-detail .products .con h3,
.material-detail .profile .con h3{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1.8px;
	margin-bottom: 10px;
}
.material-detail .products .con p,
.material-detail .profile .con p{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 1.8px;
}
.material-detail .products .con p + h3,
.material-detail .profile .con p + h3{
	margin-top: 20px;
}
.material-detail .products .con p + p,
.material-detail .profile .con p + p{
	margin-top: 20px;
}
.material-detail .products .con .pic,
.material-detail .profile .con .pic{
	margin-top: 20px;
	margin-bottom: 20px;
}
.material-detail .profile .con a{
	text-decoration: none;
	color: #01a22e;
}

.material-detail .contact{
	padding-bottom: 0;
}
.material-detail .contact .box{
	border-radius: 50px 50px 0px 0px;
	background: #F1F1F1;
	padding: 5% 10%;
	position: relative;
}
.material-detail .contact .box:before{
	content: 'Contact\AUS';
	white-space: pre;
	font-size: 130px;
	color: #FDFDFD;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	position: absolute;
	left: 0;
	top: 0;
}
.material-detail .contact .box .flex{
	display: flex;
	gap: 20%;
}
.material-detail .contact .box .flex .title{
	width: 25%;
}
.material-detail .contact .box .flex .form{
	width: 55%;
}
.material-detail .contact h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
	margin-left: auto;
}
.material-detail .contact h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.material-detail .contact .form_check_txt{
	color: #222;
	margin-left: 10px;
	line-height: 1.8;
	font-family: "Helvetica Neue";
	font-weight: 400;
}
.material-detail .contact .form_check_txt a{
	text-decoration: none;
	color: #00B031;
}
.material-detail .contact .reg_btn{
	width: 240px;
	padding: 20px 10px;
	border-radius: 60px;
	background-color: #00FF47;
	color: #111;
	font-family: Inter;
	font-size: 22px;
	font-weight: 700;
	border: 0px;
	margin-top: 30px;
}
.material-detail .contact .reg_btn_disabled{
    cursor: no-drop;
    opacity: 0.6;
}
.material-detail .contact .reg_btn:hover{
    background-color: #00e23f;
}
.material-detail .contact .msgerror{
	color: #333;
	font-size: 14px;
	text-align: center;
	margin-top: 10px;
}
.material-detail .contact input,select{
	background-color: #E5E5E5;
	border-radius: 5px;
	color: #000;
	border: 0px solid #333;
	padding-left: 10px;
	font-family: "Helvetica Neue";
}
.material-detail .contact input[type="text"],input[type="phone"],select{
	height: 60px;
	width: 100%;
	margin-bottom: 20px;
}
.material-detail .contact textarea{
	background-color: #E5E5E5;
	border-radius: 5px;
	width: 100%;
	height: 200px;
	color: #000;
	margin-bottom: 15px;
	padding: 10px 0 0 10px;
	border: 0px;
	font-family: "Helvetica Neue";
}
::placeholder { 
  color: #949494 !important;
}
:-ms-input-placeholder { 
  color: #949494 !important;
}
::-ms-input-placeholder { 
  color: #949494 !important;
}
.material-detail .contact .box .flex .link{
	margin-top: 30px;
}
.material-detail .contact .box .flex .link .item{
	display: flex;
	align-items: center;
	padding: 15px 0px;
	border-bottom: 1px solid #CECECE;
}
.material-detail .contact .box .flex .link .item a{
	text-decoration: none;
	color: #00B031;
}
.material-detail .contact .box .flex .link .item .t,
.material-detail .contact .box .flex .link .item .c{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 2px;
}
.material-detail .contact .box .flex .link .item .t{
	padding: 0 30px;
	border-right: 1px solid #cecece;
}
.material-detail .contact .box .flex .link .item .c{
	padding: 0 30px;
}
.material-detail .contact .box .flex .link .item .c .pic img{
	width: 35px;
}
.material-detail .contact .box .flex .link .item .c .pic img + img{
	margin-left: 10px;
}
.material-detail .footer{
	padding: 10px 0;
	background-color: #000;
	width: 100%;
}
.material-detail .footer p{
	font-family: Arial;
	font-size: 13px;
	font-weight: 400;
	color: #ADADAD;
	text-align: center;
}

.agent .kv{
	background-image: url(../img/kv-agent.jpg);
}
.agent .kv .title{
	width: 35%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.agent .kv .title h1{
	width: fit-content;
	text-align: right;
	right: 0;
	bottom: 0%;
	color: #36DBFF;
	letter-spacing: var(--px5);
	transform: translateY(-200%) translateX(190%);
}
.agent .kv .title h1 .deco-line{
	width: 100%;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(-110%);
	background-color: #179BB8;
}

.agent .con h2 .deco-line{
	background: linear-gradient(90deg, #09BFFF 0%, #1225D2 100%);
}
.agent .con .item{
	
}

.agent-detail{
	background-color: #fff;
}
.agent-detail .back-btn{
	position: fixed;
	top: 40px;
	left: 40px;
	z-index: 11;
	display: flex;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: #000;
	transition: all .3s;
}
.agent-detail .back-btn i{
	font-size: 30px;
	color: #fff;
	transition: all .3s;
}
.agent-detail .back-btn:hover{
	background-color: #00ff47;
}
.agent-detail .back-btn:hover i{
	color: #000;
}

.agent-detail .profile{
	padding-top: 150px;
}
.agent-detail .profile .logo{
	width: 200px;
	margin-bottom: 50px;
}
.agent-detail .profile h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
}
.agent-detail .profile h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.agent-detail .profile h2:after{
	content: 'Profile';
	font-size: 100px;
	color: #222;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	opacity: 0.05;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateX(-50%);
}
.agent-detail .profile .con h3{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1.8px;
	margin-bottom: 10px;
}
.agent-detail .profile .con p{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 1.8px;
}
.agent-detail .profile .con p + h3{
	margin-top: 20px;
}
.agent-detail .profile .con p + p{
	margin-top: 20px;
}
.agent-detail .profile .con .pic{
	margin-top: 20px;
	margin-bottom: 20px;
}

.agent-detail .contact{
	padding-bottom: 0;
}
.agent-detail .contact .box{
	border-radius: 50px 50px 0px 0px;
	background: #F1F1F1;
	padding: 5% 10%;
	position: relative;
}
.agent-detail .contact .box:before{
	content: 'Contact\AUS';
	white-space: pre;
	font-size: 130px;
	color: #FDFDFD;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	position: absolute;
	left: 0;
	top: 0;
}
.agent-detail .contact .box .flex{
	display: flex;
	gap: 20%;
}
.agent-detail .contact .box .flex .title{
	width: 25%;
}
.agent-detail .contact .box .flex .link{
	width: 55%;
}
.agent-detail .contact h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
	margin-left: auto;
}
.agent-detail .contact h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.agent-detail .contact .box .flex .link .item{
	display: flex;
	align-items: center;
	padding: 15px 0px;
	border-bottom: 1px solid #CECECE;
}
.agent-detail .contact .box .flex .link .item .t,
.agent-detail .contact .box .flex .link .item .c{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 2px;
}
.agent-detail .contact .box .flex .link .item .t{
	padding: 0 30px;
	border-right: 1px solid #cecece;
}
.agent-detail .contact .box .flex .link .item .c{
	padding: 0 30px;
}
.agent-detail .contact .box .flex .link .item .c .pic img{
	width: 35px;
}
.agent-detail .contact .box .flex .link .item .c .pic img + img{
	margin-left: 10px;
}
.agent-detail .footer{
	padding: 10px 0;
	background-color: #000;
	width: 100%;
}
.agent-detail .footer p{
	font-family: Arial;
	font-size: 13px;
	font-weight: 400;
	color: #ADADAD;
	text-align: center;
}

.policy .kv{
	background-image: url(../img/kv-policy.jpg);
}
.policy .kv .title{
	width: 55%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-80%);
}
.policy .kv .title h1{
	width: 80%;
	text-align: right;
	left: 0;
	bottom: 0%;
	color: #47A7FF;
	letter-spacing: var(--px5);
	transform: translateY(0%);
}
.policy .kv .title h1 .deco-line{
	width: 70%;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(0%);
	background-color: #608BDF;
}

.policy .con h2 .deco-line{
	background: linear-gradient(90deg, #096BFF 0%, #00FFD1 100%);
}
.policy .con .item{
	width: calc(33.333333% - 2%);
}
.policy .con .item .desc{
	flex-direction: column-reverse;
	justify-content: flex-start;
	align-items: flex-start;
	gap: var(--px10);
	margin-top: var(--px15);
}
.policy .con .item .desc h3{
	font-size: var(--px20);
}

.policy-detail{
	background-color: #fff;
}
.policy-detail .article{
	position: relative;
	background-color: #fff;
	border-radius: var(--px50);
	overflow: hidden;
	width: 90%;
	max-width: 1300px;
	margin: 0 auto;
	margin-top: var(--px30);
	margin-bottom: var(--px30);
	filter: drop-shadow(0 0 0.5rem #ccc);
	padding: 0;
}
.policy-detail .article .box{
	padding: 5% 0;
}
.policy-detail .article h1{
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	font-family: 'Helvetica Neue', sans-serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 10px;
}
.policy-detail .article .date{
	color: #8E8E8E;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 300;
}
.policy-detail .article article{
	margin-top: 20px;
}
.policy-detail .article article .pic{
	margin-bottom: 30px;
}
.policy-detail .article article .pic .desc{
	color: #333;
	font-family: "Helvetica Neue";
	font-size: 14px;
	font-weight: 300;
	margin-top: 10px;
	line-height: 1.5;
}
.policy-detail .article article p{
	color: #0f0f0f;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
}
.policy-detail .article article p + p{
	margin-top: 20px;
}
.policy-detail .article article p + .pic{
	margin-top: 20px;
}
.policy-detail .tags{
	display: flex;
	align-items: center;
	margin-top: 40px;
}
.policy-detail .tags a{
	text-decoration: none;
	border-radius: 5px;
	background-color: #EBEBEB;
	color: #838383;
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	padding: 6px 15px;
	transition: all .3s;
}
.policy-detail .tags a:hover{
	background-color: #00FF47;
	color: #222;
}
.policy-detail .tags a + a{
	margin-left: 10px;
}
.policy-detail .footer{
	padding: 10px 0;
	background-color: #000;
	width: 100%;
}
.policy-detail .footer p{
	font-family: Arial;
	font-size: 13px;
	font-weight: 400;
	color: #ADADAD;
	text-align: center;
}
.policy-detail .back-btn{
	position: fixed;
	top: 40px;
	left: 40px;
	z-index: 11;
	display: flex;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: #000;
	transition: all .3s;
}
.policy-detail .back-btn i{
	font-size: 30px;
	color: #fff;
	transition: all .3s;
}
.policy-detail .back-btn:hover{
	background-color: #00ff47;
}
.policy-detail .back-btn:hover i{
	color: #000;
}

.policy-detail .related h2{
	width: fit-content;
	position: relative;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 50px;
}
.policy-detail .related h2 .deco-line{
	position: absolute;
	bottom: -5px;
	right: 0;
	width: 250%;
	height: 3px;
	background: linear-gradient(90deg, #09BFFF 0%, #C0FF00 100%);
}
.policy-detail .related .items{
	display: flex;
	flex-wrap: wrap;
	gap: 3%;
}
.policy-detail .related .item .cover-radius{
    position: absolute;
    width: 20%;
    z-index: 4;
    top: -1px;
    right: -1px;
    transform-origin: top right;
    transform: scale(0);
    transition: all .3s;
}
.policy-detail .related .item:hover .cover-radius{
	transform: scale(1);
}
.policy-detail .related .item{
	position: relative;
	width: calc(33.333333% - 2%);
	margin-bottom: 50px;
	display: block;
	text-decoration: none;
}
.policy-detail .related .item .zone{
	position: absolute;
	z-index: 2;
	top: 10px;
	left: 10px;
	background-color: rgba(16, 19, 17, .8);
	border-radius: 50px;
	
	color: #fff;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	padding: 10px 20px;
}
.policy-detail .related .item .cover img{
	border-radius: 0px 50px 0px 0px;
	border-radius: 24px;
}
.policy-detail .related .item .cover:after{
	content: 'READ MORE';
	color: #00FF47;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 300;
	letter-spacing: 3.2px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	
	
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transition: all .3s;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0px 50px 0px 0px;
	border-radius: 24px;
}
.policy-detail .related .item .cover:before{
	content: '↑';
	color: #00FF47;
	font-size: 20px;
	font-weight: 300;
	position: absolute;
	z-index: 5;
	top: 10px;
	right: 10px;
	transform: rotate(45deg) translateY(10px);
	opacity: 0;
	transition: all .3s .2s;
}
.policy-detail .related .item:hover .cover:after{
	background: rgba(0, 0, 0, 0.70);
	backdrop-filter: blur(6px);
	
	opacity: 1;
}
.policy-detail .related .item:hover .cover:before{
	transform: rotate(45deg) translateY(0px);
	opacity: 1;
}
.policy-detail .related .item .desc{
	display: flex;
	justify-content: space-between;
	flex-direction: column-reverse;
	margin-top: 10px;
	gap: 10px;
}
.policy-detail .related .item .desc h3{
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 20px;
	font-weight: 700;
}
.policy-detail .related .item .desc .info{
	color: #8E8E8E;
	font-family: "Helvetica Neue";
	font-size: 18px;
	font-weight: 300;
}

.guild .kv{
	background-image: url(../img/kv-guild.jpg);
}
.guild .kv .title{
	width: 55%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-80%);
}
.guild .kv .title h1{
	width: 100%;
	text-align: right;
	right: 0;
	bottom: 0%;
	color: #FFF700;
	letter-spacing: var(--px5);
	transform: translateY(200%);
}
.guild .kv .title h1 .deco-line{
	width: 70%;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(0%);
	background-color: #593F31;
}

.guild .con h2 .deco-line{
	background: linear-gradient(90deg, #FFBA09 0%, #C0FF00 100%);
}
.guild .con .item{
	
}

.guild-detail{
	background-color: #fff;
}
.guild-detail .back-btn{
	position: fixed;
	top: 40px;
	left: 40px;
	z-index: 11;
	display: flex;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: #000;
	transition: all .3s;
}
.guild-detail .back-btn i{
	font-size: 30px;
	color: #fff;
	transition: all .3s;
}
.guild-detail .back-btn:hover{
	background-color: #00ff47;
}
.guild-detail .back-btn:hover i{
	color: #000;
}

.guild-detail .profile{
	padding-top: 150px;
}
.guild-detail .profile .logo{
	width: 200px;
	margin-bottom: 50px;
}
.guild-detail .profile h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
}
.guild-detail .profile h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.guild-detail .profile h2:after{
	content: 'Profile';
	font-size: 100px;
	color: #222;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	opacity: 0.05;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateX(-50%);
}
.guild-detail .profile .con h3{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1.8px;
	margin-bottom: 10px;
}
.guild-detail .profile .con p{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 1.8px;
}
.guild-detail .profile .con p + h3{
	margin-top: 20px;
}
.guild-detail .profile .con p + p{
	margin-top: 20px;
}
.guild-detail .profile .con .pic{
	margin-top: 20px;
	margin-bottom: 20px;
}
.guild-detail .profile .con .pic .desc{
	color: #333;
	font-family: "Helvetica Neue";
	font-size: 14px;
	font-weight: 300;
	margin-top: 10px;
	line-height: 1.5;
}

.guild-detail .contact{
	padding-bottom: 0;
}
.guild-detail .contact .box{
	border-radius: 50px 50px 0px 0px;
	background: #F1F1F1;
	padding: 5% 10%;
	position: relative;
}
.guild-detail .contact .box:before{
	content: 'Contact\AUS';
	white-space: pre;
	font-size: 130px;
	color: #FDFDFD;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	position: absolute;
	left: 0;
	top: 0;
}
.guild-detail .contact .box .flex{
	display: flex;
	gap: 20%;
}
.guild-detail .contact .box .flex .title{
	width: 25%;
}
.guild-detail .contact .box .flex .link{
	width: 55%;
}
.guild-detail .contact h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
	margin-left: auto;
}
.guild-detail .contact h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.guild-detail .contact .box .flex .link .item{
	display: flex;
	align-items: center;
	padding: 15px 0px;
	border-bottom: 1px solid #CECECE;
}
.guild-detail .contact .box .flex .link .item .t,
.guild-detail .contact .box .flex .link .item .c{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 2px;
}
.guild-detail .contact .box .flex .link .item .t{
	padding: 0 30px;
	border-right: 1px solid #cecece;
}
.guild-detail .contact .box .flex .link .item .c{
	padding: 0 30px;
}
.guild-detail .contact .box .flex .link .item .c .pic img{
	width: 35px;
}
.guild-detail .contact .box .flex .link .item .c .pic img + img{
	margin-left: 10px;
}
.guild-detail .footer{
	padding: 10px 0;
	background-color: #000;
	width: 100%;
}
.guild-detail .footer p{
	font-family: Arial;
	font-size: 13px;
	font-weight: 400;
	color: #ADADAD;
	text-align: center;
}

.commercial .kv{
	background-image: url(../img/kv-commercial.jpg);
}
.commercial .kv .title{
	width: 55%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-80%);
}
.commercial .kv .title h1{
	width: 100%;
	text-align: right;
	right: 0;
	bottom: 0%;
	color: #CC00FF;
	letter-spacing: var(--px5);
	transform: translateY(200%);
}
.commercial .kv .title h1 .deco-line{
	width: 70%;
	top: 50%;
	left: 0;
	transform: translateY(-50%) translateX(0%);
	background-color: #3D3D3D;
}

.commercial .con h2 .deco-line{
	width: 350%;
	background: linear-gradient(90deg, #C509FF 0%, #DBFF00 100%);
}
.commercial .con .item{
	
}

.commercial-detail{
	background-color: #fff;
}
.commercial-detail .back-btn{
	position: fixed;
	top: 40px;
	left: 40px;
	z-index: 11;
	display: flex;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	background-color: #000;
	transition: all .3s;
}
.commercial-detail .back-btn i{
	font-size: 30px;
	color: #fff;
	transition: all .3s;
}
.commercial-detail .back-btn:hover{
	background-color: #00ff47;
}
.commercial-detail .back-btn:hover i{
	color: #000;
}
.commercial-detail .overview{
	padding-top: 10%;
}
.commercial-detail .overview .flex{
	display: flex;
	position: relative;
}
.commercial-detail .overview .flex .gray-block{
	position: absolute;
	top: 110px;
	right: 0;
	width: 80%;
	height: 88%;
	border-radius: 0px 50px 50px 0px;
	background: linear-gradient(263deg, #EBEBEB 28.42%, #F8F8F8 96.11%);
}
.commercial-detail .overview .flex .color-block{
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 105%;
	border-radius: 0px 90px 0px 0px;
	background: linear-gradient(90deg, #09BFFF 0%, #C0FF00 100%);
	transform: translateX(-45%) translateY(-10%);
}
.commercial-detail .overview .flex .image,
.commercial-detail .overview .flex .text{
	width: 50%;
	position: relative;
}
.commercial-detail .overview .flex .image .slick-1 .slick-dots{
	bottom: 10px;
    right: auto;
    left: 10px;
    width: auto;
}
.commercial-detail .overview .flex .image .slick-btn{
	position: absolute;
	z-index: 6;
	right: 10px;
	bottom: 10px;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all .3s;
	cursor: pointer;
}
.commercial-detail .overview .flex .image .slick-btn.prev{
	right: 80px;
}
.commercial-detail .overview .flex .image .slick-btn i{
	color: #222;
	font-size: 26px;
}
.commercial-detail .overview .flex .image .slick-btn:hover{
	background-color: #00FF47;
}
.commercial-detail .overview .flex .text{
	padding-left: 2%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 2;
}
.commercial-detail .overview .data h1{
	position: static;
	width: auto;
	height: auto;
	overflow: visible;
	font-family: 'Helvetica Neue', sans-serif;
	font-size: 30px;
	color: #0f0f0f;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 20px;
}
.commercial-detail .overview .data .pin{
	color: #f00;
	font-family: "Helvetica Neue";
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 10px;
}
.commercial-detail .overview .data .pin span{
	font-size: 16px;
}
.commercial-detail .overview .data .price{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 20px;
	font-weight: 500;
}
.commercial-detail .overview .data .info{
	margin-top: 30px;
	padding-right: 10%;
}
.commercial-detail .overview .data .info .item{
	display: flex;
	
	
}
.commercial-detail .overview .data .info .item + .item{
	margin-top: 15px;
}
.commercial-detail .overview .data .info .item .t{
	width: 90px;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 700;
	flex-shrink: 0;
	line-height: 1.4;
}
.commercial-detail .overview .data .info .item .c{
	width: 87%;
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}
.commercial-detail .overview .case-btn{
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.commercial-detail .overview .get-price-btn,
.commercial-detail .overview .get-life-btn{
	display: block;
	text-decoration: none;
	width: fit-content;
	border-radius: 10px;
	background-color: #222;
	color: #fff;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	padding: 12px 20px;
	transition: all .3s;
}
.commercial-detail .overview .get-price-btn:hover,
.commercial-detail .overview .get-life-btn:hover{
	background-color: #00FF47;
	color: #222;
}

.commercial-detail .infomation h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
}
.commercial-detail .infomation h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.commercial-detail .infomation h2:after{
	content: 'Infomation';
	font-size: 100px;
	color: #222;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	opacity: 0.05;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateX(-20%);
}
.commercial-detail .infomation .data{
	display: flex;
	gap: 2%;
}
.commercial-detail .infomation .data .items{
	width: 50%;
}
.commercial-detail .infomation .data .items .item{
	display: flex;
}
.commercial-detail .infomation .data .items .item + .item{
	margin-top: 15px;
}
.commercial-detail .infomation .data .items .item .t{
	width: 90px;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 700;
	flex-shrink: 0;
	line-height: 1.4;
}
.commercial-detail .infomation .data .items .item .c{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}

.commercial-detail .features h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
}
.commercial-detail .features h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.commercial-detail .features h2:after{
	content: 'Features';
	font-size: 100px;
	color: #222;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	opacity: 0.05;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: translateX(-20%);
}
.commercial-detail .features .con h3{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 1.8px;
	margin-bottom: 10px;
}
.commercial-detail .features .con p{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 1.8px;
}
.commercial-detail .features .con p + p{
	margin-top: 20px;
}
.commercial-detail .features .con .pic{
	margin-top: 20px;
	margin-bottom: 20px;
}
.commercial-detail .tags{
	display: flex;
	align-items: center;
	margin-top: 40px;
}
.commercial-detail .tags a{
	text-decoration: none;
	border-radius: 5px;
	background-color: #EBEBEB;
	color: #838383;
	font-family: Inter;
	font-size: 16px;
	font-weight: 400;
	padding: 6px 15px;
	transition: all .3s;
}
.commercial-detail .tags a:hover{
	background-color: #00FF47;
	color: #222;
}
.commercial-detail .tags a + a{
	margin-left: 10px;
}

.commercial-detail .contact{
	padding-bottom: 0;
}
.commercial-detail .contact .box{
	border-radius: 50px 50px 0px 0px;
	background: #F1F1F1;
	padding: 5% 10%;
	position: relative;
}
.commercial-detail .contact .box:before{
	content: 'Contact\AUS';
	white-space: pre;
	font-size: 130px;
	color: #FDFDFD;
	font-family: "Helvetica Neue";
	font-weight: 700;
	line-height: 1;
	position: absolute;
	left: 0;
	top: 0;
}
.commercial-detail .contact .box .flex{
	display: flex;
	gap: 20%;
}
.commercial-detail .contact .box .flex .title{
	width: 25%;
}
.commercial-detail .contact .box .flex .form{
	width: 55%;
}
.commercial-detail .contact h2{
	width: fit-content;
	color: #0F0F0F;
	font-family: "Helvetica Neue";
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	position: relative;
	z-index: 2;
	margin-left: auto;
}
.commercial-detail .contact h2:before{
	content: '';
	width: 23px;
	height: 3px;
	background-color: #00FF47;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) translateX(150%);
}
.commercial-detail .contact .related_case{
	background-color: #E5E5E5;
	border-radius: 5px;
	padding: 15px;
	margin-bottom: 30px;
}
.commercial-detail .contact .related_case .h{
	color: #6d6d6d;
	font-family: "Helvetica Neue";
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
}
.commercial-detail .contact .related_case .items{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1%;
}
.commercial-detail .contact .related_case .items label{
	width: calc(25% - 0.75%);
	display: flex;
	align-items: center;
}
.commercial-detail .contact .related_case .items label input{
	margin-right: 5px;
}
.commercial-detail .contact .related_case .items label span{
	color: #222;
	font-family: "Helvetica Neue";
	font-size: 16px;
	font-weight: 400;
}
.commercial-detail .contact .form_check_txt{
	color: #222;
	margin-left: 10px;
	line-height: 1.8;
	font-family: "Helvetica Neue";
	font-weight: 400;
}
.commercial-detail .contact .form_check_txt a{
	text-decoration: none;
	color: #00B031;
}
.commercial-detail .contact .reg_btn{
	width: 240px;
	padding: 20px 10px;
	border-radius: 60px;
	background-color: #00FF47;
	color: #111;
	font-family: Inter;
	font-size: 22px;
	font-weight: 700;
	border: 0px;
	margin-top: 30px;
}
.commercial-detail .contact .reg_btn_disabled{
    cursor: no-drop;
    opacity: 0.6;
}
.commercial-detail .contact .reg_btn:hover{
    background-color: #00e23f;
}
.commercial-detail .contact .msgerror{
	color: #333;
	font-size: 14px;
	text-align: center;
	margin-top: 10px;
}
.commercial-detail .contact input,select{
	background-color: #E5E5E5;
	border-radius: 5px;
	color: #000;
	border: 0px solid #333;
	padding-left: 10px;
	font-family: "Helvetica Neue";
}
.commercial-detail .contact input[type="text"],input[type="phone"],select{
	height: 60px;
	width: 100%;
	margin-bottom: 20px;
}
.commercial-detail .contact textarea{
	background-color: #E5E5E5;
	border-radius: 5px;
	width: 100%;
	height: 200px;
	color: #000;
	margin-bottom: 15px;
	padding: 10px 0 0 10px;
	border: 0px;
	font-family: "Helvetica Neue";
}
::placeholder { 
  color: #949494 !important;
}
:-ms-input-placeholder { 
  color: #949494 !important;
}
::-ms-input-placeholder { 
  color: #949494 !important;
}
.commercial-detail .footer{
	padding: 10px 0;
	background-color: #000;
	width: 100%;
}
.commercial-detail .footer p{
	font-family: Arial;
	font-size: 13px;
	font-weight: 400;
	color: #ADADAD;
	text-align: center;
}
@media (max-width: 1400px) {
    .rwd:after{
        content: 'mx1400';
    }
}

@media (max-width: 1200px) {
    .rwd:after{
        content: 'mx1200';
    }
}
 
@media (max-width: 992px) {
    .rwd:after{
        content: 'mx992';
    }
    
    
    .home-btn{
        top: 20px;
        right: 80px;
        width: 50px;
        height: 50px;
    }
    .home-btn i{
        font-size: 20px;
    }
    .menu-btn{
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .menu-btn .mline{
        width: 20px;
    }
    .menu-btn .mline:after{
        width: 20px;
    }
    .menu-btn .mline:before{
        width: 20px;
    }
    
    .menu-list{
        gap: 15px;
        top: 10px;
        right: 10px;
        padding: 80px 40px 50px 30px;
        border-radius: 30px;
    }
    .menu-list .item h2{
        font-size: 20px;
    }
    .menu-list .item h2 span{
        font-size: 18px;
    }
    
    .home .kv .box{
        width: 90%;
    }
    .home .kv .title{
        margin-top: 30px;
    }
    .home .kv .round{
        width: 50%;
        padding-bottom: 50%;
    }
    .home .kv .round1{
        top: 20%;
        right: -10%;
    }
    .home .kv .round2{
        bottom: 25%;
        left: -10%;
    }
    .home .kv .block.block-rt{
        right: -10%;
        top: -3%;
        width: 45%;
    }
    .home .kv .block.block-lb{
        left: -2%;
        bottom: 0%;
        width: 45%;
    }
    .home .kv .block.block-lt{
        left: 20%;
        top: 15%;
        width: 10%;
    }
    .home .kv .block.block-rc{
        right: 1%;
        top: 25%;
        width: 15%;
    }
    
    .home .map{
        display: none;
    }
    .home .map-m{
        display: block;
    }
    
    .home .home-news{
        
        padding: 50px 0;
    }
    .home .home-news h2{
        font-size: 30px;
        letter-spacing: 3px;
        margin: 0 auto;
        margin-bottom: 40px;
    }
    .home .home-news h2 .deco-line{
        width: 100%;
    }
    .home .home-news .items{
        gap: 0;
    }
    .home .home-news .item{
        width: 100%;
        margin-bottom: 30px;
    }
    .home .home-news .item .zone{
        font-size: 16px;
        padding: 10px 20px;
    }
    .home .home-news .item .cover:after{
        font-size: 16px;
    }
    .home .home-news .item .cover:before{
        font-size: 20px;
    }
    .home .home-news .item .desc{
        margin-top: 10px;
    }
    .home .home-news .item .desc h3{
        font-size: 22px;
    }
    .home .home-news .item .desc .info{
        font-size: 16px;
    }
    .home .home-news .item{
        width: 100%;
    }
    .home .home-news .item .desc{
        gap: 10px;
        margin-top: 15px;
    }
    .home .home-news .item .desc h3{
        font-size: 18px;
    }
    
    .home .home-project{
        border-radius: 30px 30px 0 0;
        padding: 50px 0;
        margin-top: 50px;
    }
    .home .home-project .deco-en{
        width: 90%;
        left: 50%;
        transform: translateY(-15%) translateX(-50%);
    }
    .home .home-project .deco-en .bgimg{
        background-image: url(../img/left-title-m.png);
        padding-bottom: 20%;
    }
    .home .home-project h2{
        font-size: 30px;
        letter-spacing: 3px;
        margin: 0 auto;
        margin-bottom: 40px;
    }
    .home .home-project h2 .deco-line{
        width: 100%;
    }
    .home .home-project .items{
        gap: 0;
    }
    .home .home-project .item{
        width: 100%;
        margin-bottom: 30px;
    }
    .home .home-project .item .zone{
        font-size: 16px;
        padding: 10px 20px;
    }
    .home .home-project .item .cover:after{
        font-size: 16px;
    }
    .home .home-project .item .cover:before{
        font-size: 20px;
    }
    .home .home-project .item .desc{
        margin-top: 10px;
    }
    .home .home-project .item .desc h3{
        font-size: 22px;
    }
    .home .home-project .item .desc .info{
        font-size: 16px;
    }
    
    .space .kv .scroll{
        bottom: 5%;
        width: 50px;
        height: 50px;
    }
    .space .kv .title h1{
        font-size: 30px;
    }
    
    .space .con{
        border-radius: 30px 30px 0 0;
        padding: 50px 0;
    }
    .space .con .deco-en{
        width: 90%;
        left: 50%;
        transform: translateY(-15%) translateX(-50%);
    }
    .space .con .deco-en .bgimg{
        background-image: url(../img/left-title-m.png);
        padding-bottom: 20%;
    }
    .space .con h2{
        font-size: 30px;
        letter-spacing: 3px;
        margin: 0 auto;
        margin-bottom: 40px;
    }
    .space .con h2 .deco-line{
        width: 100%;
    }
    .space .con .items{
        gap: 0;
    }
    .space .con .item{
        width: 100%;
        margin-bottom: 30px;
    }
    .space .con .item .zone{
        font-size: 16px;
        padding: 10px 20px;
    }
    .space .con .item .cover:after{
        font-size: 16px;
    }
    .space .con .item .cover:before{
        font-size: 20px;
    }
    .space .con .item .desc{
        margin-top: 10px;
    }
    .space .con .item .desc h3{
        font-size: 22px;
    }
    .space .con .item .desc .info{
        font-size: 16px;
    }
    
    .news .kv{
        background-image: url(../img/kv-news-m.jpg);
    }
    .news .kv .title{
        width: 90%;
    }
    .news .kv .title h1{
        width: 100%;
        text-align: right;
        bottom: 0;
        letter-spacing: 3px;
        transform: translateY(150%);
    }
    .news .kv .title h1 .deco-line{
        width: 50%;
        top: 50%;
        left: 0;
        transform: translateY(-50%) translateX(0%);
    }
    
    .news .con .item{
        width: 100%;
    }
    .news .con .item .desc{
        gap: 10px;
        margin-top: 15px;
    }
    .news .con .item .desc h3{
        font-size: 18px;
    }
    
    .news-detail .article{
        border-radius: 30px;
        margin-top: 100px;
        margin-bottom: 30px;
    }
    .news-detail .article .box{
        padding: 10% 0;
    }
    .news-detail .article h1{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .news-detail .article .date{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .news-detail .article article{
        margin-top: 15px;
    }
    .news-detail .article article .pic{
        margin-bottom: 20px;
    }
    .news-detail .article article .pic .desc{
        font-size: 12px;
        margin-top: 5px;
    }
    .news-detail .article article h3{
        font-size: 18px;
    }
    .news-detail .article article p{
        font-size: 16px;
    }
    .news-detail .article article p + p{
        margin-top: 15px;
    }
    .news-detail .back-btn{
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .news-detail .back-btn i{
        font-size: 20px;
    }
    
    .news-detail .related h2{
        margin: 0 auto;
        margin-bottom: 40px;
    }
    .news-detail .related h2 .deco-line{
        width: 100%;
    }
    .news-detail .related .items{
        gap: 0;
    }
    .news-detail .related .item{
        width: 100%;
        margin-bottom: 30px;
    }
    .news-detail .related .item .desc .info{
        font-size: 16px;
    }
    
    .project .kv{
        background-image: url(../img/kv-project-m.jpg);
    }
    .project .kv .title{
        width: 90%;
    }
    .project .kv .title h1{
        width: 100%;
        text-align: right;
        bottom: 0;
        letter-spacing: 3px;
        transform: translateY(110%);
    }
    .project .kv .title h1 .deco-line{
        width: 50%;
        top: 50%;
        left: 0;
        transform: translateY(-50%) translateX(0%);
    }
    
    .project-detail .back-btn{
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .project-detail .back-btn i{
        font-size: 20px;
    }
    .project-detail .overview{
        padding-top: 25%;
    }
    .project-detail .overview .flex{
        flex-direction: column;
    }
    .project-detail .overview .flex .image,
    .project-detail .overview .flex .text{
        width: 100%;
    }
    .project-detail .overview .flex .gray-block{
        top: auto;
        right: auto;
        bottom: 0;
        left: -6%;
        width: 110%;
        height: 75%;
    }
    .project-detail .overview .flex .color-block{
        top: 0;
        left: 0;
        width: 80%;
        height: 25%;
        transform: translateX(-10%) translateY(-20%);
    }
    .project-detail .overview .flex .text{
        padding-left: 0%;
        justify-content: flex-start;
    }
    .project-detail .overview .data h1{
        margin-top: 20px;
    }
    .project-detail .overview .data .info{
        padding-right: 0%;
    }
    .project-detail .overview .data .info .item + .item{
        margin-top: 20px;
    }
    .project-detail .overview .data .info .item .t{
        line-height: 1.5;
    }
    .project-detail .overview .data .info .item .c{
        line-height: 1.5;
    }
    .project-detail .overview .case-btn{
        transform: translateY(50%);
    }
    
    .project-detail .infomation{
        padding-top: 50px;
    }
    .project-detail .infomation h2:after{
        font-size: 70px;
        transform: translateX(-5%);
    }
    .project-detail .infomation .data{
        display: block;
    }
    .project-detail .infomation .data .items{
        width: 100%;
    }
    .project-detail .infomation .data .items + .items{
        margin-top: 20px;
    }
    .project-detail .infomation .data .items .item + .item{
        margin-top: 20px;
    }
    .project-detail .infomation .data .items .item .t{
        line-height: 1.5;
    }
    .project-detail .infomation .data .items .item .c{
        text-align: justify;
        text-justify: inter-ideograph;
        line-height: 1.5;
    }
    
    .project-detail .features{
        padding-top: 50px;
    }
    .project-detail .features h2:after{
        font-size: 70px;
        transform: translateX(-5%);
    }
    
    .project-detail .contact{
        padding-top: 50px;
        padding-bottom: 0px;
    }
    .project-detail .contact .box{
        width: 100%;
        max-width: 100%;
        padding: 5%;
    }
    .project-detail .contact .box:before{
        content: 'Contact US';
        font-size: 60px;
        position: static;
    }
    .project-detail .contact .box .flex{
        display: block;
    }
    .project-detail .contact .box .flex .title{
        width: 100%;
    }
    .project-detail .contact .box .flex .form{
        width: 100%;
    }
    .project-detail .contact h2{
        margin-left: 0;
        margin-bottom: 10px;
    }
    .project-detail .contact .related_case .items label{
        width: 100%;
    }
    
    .media .kv{
        background-image: url(../img/kv-media-m.jpg);
    }
    .media .kv .title{
        width: 90%;
    }
    .media .kv .title h1{
        width: 100%;
        text-align: right;
        bottom: 0;
        letter-spacing: 3px;
        transform: translateY(150%);
    }
    .media .kv .title h1 .deco-line{
        width: 50%;
        top: 50%;
        left: 0;
        transform: translateY(-50%) translateX(0%);
    }
    
    .planner .kv{
        background-image: url(../img/kv-planner-m.jpg);
    }
    .planner .kv .title{
        width: 90%;
    }
    .planner .kv .title h1{
        width: 100%;
        text-align: right;
        bottom: 0;
        letter-spacing: 3px;
        transform: translateY(150%);
    }
    .planner .kv .title h1 .deco-line{
        width: 50%;
        top: 50%;
        left: 0;
        transform: translateY(-50%) translateX(0%);
    }
    
    .planner-detail .back-btn{
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .planner-detail .back-btn i{
        font-size: 20px;
    }
    
    .planner-detail .profile{
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .planner-detail .profile h2:after{
        font-size: 70px;
        transform: translateX(-5%) translateY(-10%);
    }
    
    .planner-detail .contact{
        padding-top: 50px;
        padding-bottom: 0px;
    }
    .planner-detail .contact .box{
        width: 100%;
        max-width: 100%;
        padding: 5%;
    }
    .planner-detail .contact .box:before{
        content: 'Contact US';
        font-size: 60px;
        position: static;
    }
    .planner-detail .contact .box .flex{
        display: block;
    }
    .planner-detail .contact .box .flex .title{
        width: 100%;
    }
    .planner-detail .contact .box .flex .link{
        width: 100%;
        padding: 8% 0;
    }
    .planner-detail .contact h2{
        margin-left: 0;
        margin-bottom: 10px;
    }
    .planner-detail .contact .box .flex .link .item .t{
        width: 20%;
        padding: 0;
        padding-right: 20px;
        text-align: right;
    }
    .planner-detail .contact .box .flex .link .item .c{
        width: 80%;
        padding: 0 20px;
    }
    
    .construction .kv{
        background-image: url(../img/kv-construction-m.jpg);
    }
    .construction .kv .title{
        width: 90%;
    }
    .construction .kv .title h1{
        width: 100%;
        text-align: right;
        bottom: 0;
        letter-spacing: 3px;
        transform: translateY(150%);
    }
    .construction .kv .title h1 .deco-line{
        width: 50%;
        top: 50%;
        left: 0;
        transform: translateY(-50%) translateX(0%);
    }
    
    .construction-detail .back-btn{
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .construction-detail .back-btn i{
        font-size: 20px;
    }
    
    .construction-detail .profile{
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .construction-detail .profile h2:after{
        font-size: 70px;
        transform: translateX(-5%) translateY(-10%);
    }
    
    .construction-detail .contact{
        padding-top: 50px;
        padding-bottom: 0px;
    }
    .construction-detail .contact .box{
        width: 100%;
        max-width: 100%;
        padding: 5%;
    }
    .construction-detail .contact .box:before{
        content: 'Contact US';
        font-size: 60px;
        position: static;
    }
    .construction-detail .contact .box .flex{
        display: block;
    }
    .construction-detail .contact .box .flex .title{
        width: 100%;
    }
    .construction-detail .contact .box .flex .link{
        width: 100%;
        padding: 8% 0;
    }
    .construction-detail .contact h2{
        margin-left: 0;
        margin-bottom: 10px;
    }
    .construction-detail .contact .box .flex .link .item .t{
        width: 20%;
        padding: 0;
        padding-right: 20px;
        text-align: right;
    }
    .construction-detail .contact .box .flex .link .item .c{
        width: 80%;
        padding: 0 20px;
    }
    
    .lifestyle .kv{
        background-image: url(../img/kv-lifestyle-m.jpg);
    }
    .lifestyle .kv .title{
        width: 90%;
    }
    .lifestyle .kv .title h1{
        width: 100%;
        text-align: right;
        bottom: 0;
        letter-spacing: 3px;
        transform: translateY(150%);
    }
    .lifestyle .kv .title h1 .deco-line{
        width: 50%;
        top: 50%;
        left: 0;
        transform: translateY(-50%) translateX(0%);
    }
    .lifestyle .kv .title h1 .deco-line2{
        display: none;
    }

    .lifestyle2 .kv .scroll{
        bottom: 5%;
        width: 50px;
        height: 50px;
    }
    .lifestyle2 .kv .title h1{
        font-size: 30px;
    }

    .lifestyle2 .con{
        border-radius: 30px 30px 0 0;
        padding: 50px 0;
    }
    .lifestyle2 .con .deco-en{
        width: 90%;
        left: 50%;
        transform: translateY(-15%) translateX(-50%);
    }
    .lifestyle2 .con .deco-en .bgimg{
        background-image: url(../img/left-title-m.png);
        padding-bottom: 20%;
    }
    .lifestyle2 .con h2{
        font-size: 30px;
        letter-spacing: 3px;
        margin: 0 auto;
        margin-bottom: 40px;
    }
    .lifestyle2 .con h2 .deco-line{
        width: 100%;
    }
    .lifestyle2 .con .items{
        gap: 0;
    }
    .lifestyle2 .con .item{
        width: 100%;
        margin-bottom: 30px;
    }
    .lifestyle2 .con .item .zone{
        font-size: 16px;
        padding: 10px 20px;
    }
    .lifestyle2 .con .item .cover:after{
        font-size: 16px;
    }
    .lifestyle2 .con .item .cover:before{
        font-size: 20px;
    }
    .lifestyle2 .con .item .desc{
        margin-top: 10px;
    }
    .lifestyle2 .con .item .desc h3{
        font-size: 22px;
    }
    .lifestyle2 .con .item .desc .slogan a{
        font-size: 22px;
    }
    .lifestyle2 .con .item .desc .info{
        font-size: 16px;
    }
    .lifestyle2 .con .item .desc .link-icon{
        margin-top: 30px;
    }
    .lifestyle2 .con .item .desc .link-icon img{
        width: 30px;
    }
    
    .lifestyle-detail .back-btn{
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .lifestyle-detail .back-btn i{
        font-size: 20px;
    }
    
    .lifestyle-detail .overview{
        padding-top: 100px;
    }
    
    .lifestyle-detail .overview .logo-block{
        display: block;
    }
    .lifestyle-detail .overview .logo-block .logo{
        padding-right: 0px;
        border-right: 0px solid #cecece;
        margin-bottom: 20px;
    }
    .lifestyle-detail .overview .logo-block h1.company-name{
        padding-left: 0px;
    }
    
    .lifestyle-detail .products,
    .lifestyle-detail .profile{
        padding-top: 0;
    }
    .lifestyle-detail .products h2:after,
    .lifestyle-detail .profile h2:after{
        font-size: 70px;
    }
    .lifestyle-detail .products h2:after{
        left: 0%;
    }
    .lifestyle-detail .profile h2:after{
        left: 0%;
    }
    
    .lifestyle-detail .contact{
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .lifestyle-detail .contact .box{
        width: 100%;
        max-width: 100%;
        padding: 5%;
    }
    .lifestyle-detail .contact .box:before{
        content: 'Contact US';
        font-size: 60px;
        position: static;
    }
    .lifestyle-detail .contact .box .flex{
        display: block;
    }
    .lifestyle-detail .contact .box .flex .title{
        width: 100%;
    }
    .lifestyle-detail .contact .box .flex .form{
        width: 100%;
    }
    .lifestyle-detail .contact h2{
        margin-left: 0;
        margin-bottom: 10px;
    }
    .lifestyle-detail .contact .box .flex .link{
        width: 100%;
        padding: 8% 0;
        margin-top: 0;
    }
    .lifestyle-detail .contact .box .flex .link .item .t{
        width: 20%;
        padding: 0;
        padding-right: 20px;
        text-align: right;
    }
    .lifestyle-detail .contact .box .flex .link .item .c{
        width: 80%;
        padding: 0 20px;
    }
    .lifestyle-detail .footer{
        padding: 10px 0;
        background-color: #000;
        width: 100%;
    }
    .lifestyle-detail .footer p{
        font-family: Arial;
        font-size: 13px;
        font-weight: 400;
        color: #ADADAD;
        text-align: center;
    }
    
    .material .kv{
        background-image: url(../img/kv-material-m.jpg);
    }
    .material .kv .title{
        width: 90%;
    }
    .material .kv .title h1{
        width: 100%;
        text-align: right;
        bottom: 0;
        letter-spacing: 3px;
        transform: translateY(150%);
    }
    .material .kv .title h1 .deco-line{
        width: 50%;
        top: 50%;
        left: 0;
        transform: translateY(-50%) translateX(0%);
    }
    
    .material-detail .back-btn{
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .material-detail .back-btn i{
        font-size: 20px;
    }
    
    .material-detail .overview{
        padding-top: 100px;
    }
    
    .material-detail .overview .logo-block{
        display: block;
    }
    .material-detail .overview .logo-block .logo{
        padding-right: 0px;
        border-right: 0px solid #cecece;
        margin-bottom: 20px;
    }
    .material-detail .overview .logo-block h1.company-name{
        padding-left: 0px;
    }
    
    .material-detail .products,
    .material-detail .profile{
        padding-top: 0;
    }
    .material-detail .products h2:after,
    .material-detail .profile h2:after{
        font-size: 70px;
    }
    .material-detail .products h2:after{
        left: 0%;
    }
    .material-detail .profile h2:after{
        left: 0%;
    }
    
    .material-detail .contact{
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .material-detail .contact .box{
        width: 100%;
        max-width: 100%;
        padding: 5%;
    }
    .material-detail .contact .box:before{
        content: 'Contact US';
        font-size: 60px;
        position: static;
    }
    .material-detail .contact .box .flex{
        display: block;
    }
    .material-detail .contact .box .flex .title{
        width: 100%;
    }
    .material-detail .contact .box .flex .form{
        width: 100%;
    }
    .material-detail .contact h2{
        margin-left: 0;
        margin-bottom: 10px;
    }
    .material-detail .contact .box .flex .link{
        width: 100%;
        padding: 8% 0;
        margin-top: 0;
    }
    .material-detail .contact .box .flex .link .item .t{
        width: 20%;
        padding: 0;
        padding-right: 20px;
        text-align: right;
    }
    .material-detail .contact .box .flex .link .item .c{
        width: 80%;
        padding: 0 20px;
    }
    .material-detail .footer{
        padding: 10px 0;
        background-color: #000;
        width: 100%;
    }
    .material-detail .footer p{
        font-family: Arial;
        font-size: 13px;
        font-weight: 400;
        color: #ADADAD;
        text-align: center;
    }
    
    .agent .kv{
        background-image: url(../img/kv-agent-m.jpg);
    }
    .agent .kv .title{
        width: 90%;
    }
    .agent .kv .title h1{
        width: 100%;
        text-align: right;
        bottom: 0;
        letter-spacing: 3px;
        transform: translateY(150%);
    }
    .agent .kv .title h1 .deco-line{
        width: 50%;
        top: 50%;
        left: 0;
        transform: translateY(-50%) translateX(0%);
    }
    
    .agent-detail .back-btn{
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .agent-detail .back-btn i{
        font-size: 20px;
    }
    
    .agent-detail .profile{
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .agent-detail .profile h2:after{
        font-size: 70px;
        transform: translateX(-5%) translateY(-10%);
    }
    
    .agent-detail .contact{
        padding-top: 50px;
        padding-bottom: 0px;
    }
    .agent-detail .contact .box{
        width: 100%;
        max-width: 100%;
        padding: 5%;
    }
    .agent-detail .contact .box:before{
        content: 'Contact US';
        font-size: 60px;
        position: static;
    }
    .agent-detail .contact .box .flex{
        display: block;
    }
    .agent-detail .contact .box .flex .title{
        width: 100%;
    }
    .agent-detail .contact .box .flex .link{
        width: 100%;
        padding: 8% 0;
    }
    .agent-detail .contact h2{
        margin-left: 0;
        margin-bottom: 10px;
    }
    .agent-detail .contact .box .flex .link .item .t{
        width: 20%;
        padding: 0;
        padding-right: 20px;
        text-align: right;
    }
    .agent-detail .contact .box .flex .link .item .c{
        width: 80%;
        padding: 0 20px;
    }
    
    .policy .kv{
        background-image: url(../img/kv-policy-m.jpg);
    }
    .policy .kv .title{
        width: 90%;
    }
    .policy .kv .title h1{
        width: 100%;
        text-align: right;
        bottom: 0;
        letter-spacing: 3px;
        transform: translateY(150%);
    }
    .policy .kv .title h1 .deco-line{
        width: 50%;
        top: 50%;
        left: 0;
        transform: translateY(-50%) translateX(0%);
    }
    
    .policy .con .item{
        width: 100%;
    }
    .policy .con .item .desc{
        gap: 10px;
        margin-top: 15px;
    }
    .policy .con .item .desc h3{
        font-size: 18px;
    }
    
    .policy-detail .article{
        border-radius: 30px;
        margin-top: 100px;
        margin-bottom: 30px;
    }
    .policy-detail .article .box{
        padding: 10% 0;
    }
    .policy-detail .article h1{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .policy-detail .article .date{
        font-size: 14px;
        margin-bottom: 10px;
    }
    .policy-detail .article article{
        margin-top: 15px;
    }
    .policy-detail .article article .pic{
        margin-bottom: 20px;
    }
    .policy-detail .article article .pic .desc{
        font-size: 12px;
        margin-top: 5px;
    }
    .policy-detail .article article p{
        font-size: 16px;
    }
    .policy-detail .article article p + p{
        margin-top: 15px;
    }
    .policy-detail .back-btn{
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .policy-detail .back-btn i{
        font-size: 20px;
    }
    
    .policy-detail .related h2{
        margin: 0 auto;
        margin-bottom: 40px;
    }
    .policy-detail .related h2 .deco-line{
        width: 100%;
    }
    .policy-detail .related .items{
        gap: 0;
    }
    .policy-detail .related .item{
        width: 100%;
        margin-bottom: 30px;
    }
    .policy-detail .related .item .desc .info{
        font-size: 16px;
    }
    
    .guild .kv{
        background-image: url(../img/kv-guild-m.jpg);
    }
    .guild .kv .title{
        width: 90%;
    }
    .guild .kv .title h1{
        width: 100%;
        text-align: right;
        bottom: 0;
        letter-spacing: 3px;
        transform: translateY(150%);
    }
    .guild .kv .title h1 .deco-line{
        width: 50%;
        top: 50%;
        left: 0;
        transform: translateY(-50%) translateX(0%);
    }
    
    .guild-detail .back-btn{
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .guild-detail .back-btn i{
        font-size: 20px;
    }
    
    .guild-detail .profile{
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .guild-detail .profile h2:after{
        font-size: 70px;
        transform: translateX(-5%) translateY(-10%);
    }
    
    .guild-detail .contact{
        padding-top: 50px;
        padding-bottom: 0px;
    }
    .guild-detail .contact .box{
        width: 100%;
        max-width: 100%;
        padding: 5%;
    }
    .guild-detail .contact .box:before{
        content: 'Contact US';
        font-size: 60px;
        position: static;
    }
    .guild-detail .contact .box .flex{
        display: block;
    }
    .guild-detail .contact .box .flex .title{
        width: 100%;
    }
    .guild-detail .contact .box .flex .link{
        width: 100%;
        padding: 8% 0;
    }
    .guild-detail .contact h2{
        margin-left: 0;
        margin-bottom: 10px;
    }
    .guild-detail .contact .box .flex .link .item .t{
        width: 20%;
        padding: 0;
        padding-right: 20px;
        text-align: right;
    }
    .guild-detail .contact .box .flex .link .item .c{
        width: 80%;
        padding: 0 20px;
    }
    
    .commercial .kv{
        background-image: url(../img/kv-commercial-m.jpg);
    }
    .commercial .kv .title{
        width: 90%;
    }
    .commercial .kv .title h1{
        width: 100%;
        text-align: right;
        bottom: 0;
        letter-spacing: 3px;
        transform: translateY(150%);
    }
    .commercial .kv .title h1 .deco-line{
        width: 50%;
        top: 50%;
        left: 0;
        transform: translateY(-50%) translateX(0%);
    }
    
    .commercial-detail .back-btn{
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    .commercial-detail .back-btn i{
        font-size: 20px;
    }
    .commercial-detail .overview{
        padding-top: 25%;
    }
    .commercial-detail .overview .flex{
        flex-direction: column;
    }
    .commercial-detail .overview .flex .image,
    .commercial-detail .overview .flex .text{
        width: 100%;
    }
    .commercial-detail .overview .flex .gray-block{
        top: auto;
        right: auto;
        bottom: 0;
        left: -6%;
        width: 110%;
        height: 75%;
    }
    .commercial-detail .overview .flex .color-block{
        top: 0;
        left: 0;
        width: 80%;
        height: 25%;
        transform: translateX(-10%) translateY(-20%);
    }
    .commercial-detail .overview .flex .text{
        padding-left: 0%;
        justify-content: flex-start;
    }
    .commercial-detail .overview .data h1{
        margin-top: 20px;
    }
    .commercial-detail .overview .data .info{
        padding-right: 0%;
    }
    .commercial-detail .overview .data .info .item + .item{
        margin-top: 20px;
    }
    .commercial-detail .overview .data .info .item .t{
        line-height: 1.5;
    }
    .commercial-detail .overview .data .info .item .c{
        line-height: 1.5;
    }
    .commercial-detail .overview .case-btn{
        transform: translateY(50%);
    }
    
    .commercial-detail .infomation{
        padding-top: 50px;
    }
    .commercial-detail .infomation h2:after{
        font-size: 70px;
        transform: translateX(-5%);
    }
    .commercial-detail .infomation .data{
        display: block;
    }
    .commercial-detail .infomation .data .items{
        width: 100%;
    }
    .commercial-detail .infomation .data .items + .items{
        margin-top: 20px;
    }
    .commercial-detail .infomation .data .items .item + .item{
        margin-top: 20px;
    }
    .commercial-detail .infomation .data .items .item .t{
        line-height: 1.5;
    }
    .commercial-detail .infomation .data .items .item .c{
        text-align: justify;
        text-justify: inter-ideograph;
        line-height: 1.5;
    }
    
    .commercial-detail .features{
        padding-top: 50px;
    }
    .commercial-detail .features h2:after{
        font-size: 70px;
        transform: translateX(-5%);
    }
    
    .commercial-detail .contact{
        padding-top: 50px;
        padding-bottom: 0px;
    }
    .commercial-detail .contact .box{
        width: 100%;
        max-width: 100%;
        padding: 5%;
    }
    .commercial-detail .contact .box:before{
        content: 'Contact US';
        font-size: 60px;
        position: static;
    }
    .commercial-detail .contact .box .flex{
        display: block;
    }
    .commercial-detail .contact .box .flex .title{
        width: 100%;
    }
    .commercial-detail .contact .box .flex .form{
        width: 100%;
    }
    .commercial-detail .contact h2{
        margin-left: 0;
        margin-bottom: 10px;
    }
}


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


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








