@charset "UTF-8";
.sub.business .tabs {
  max-width: 1200px;
  margin: 0 auto;
}

.product-area .main-content .solution-list:after, .product-area .main-content .tabset-nav:after, .product-area .main-content .tabset-content .tl-list:after, .sub.company .introduce:after, .sub.company .history .tab-cont .timeline-cont:after, .sub.company .vision .cont-box .cont-list:after, .sub.company .certify .certify-list:after, .sub.company .notice .notice-list:after, .sub.business .solution .list-type01:after, .sub.business .solution .list-type02 [class*="list-item"]:after, .sub.business .solution .list-type02 .list-item01 .cont-box:after, .sub.business .case .case-list:after, .sub.recruit .talent .talent-list:after, .sub.recruit .guide .guide-list:after, .sub.recruit .guide .guide-info:after, .sub.info .client .client-list:after {
  display: block;
  content: '';
  clear: both;
}

.sub.business .solution .list-type02 .list-item01 .cont-box li p:before, .sub.business .solution .list-type02 .cont-box dt:before, .sub.business .solution .list-type02 .table-box table td span:before, .sub.business .solution .list-type02 .table-box table p:before, .sub.recruit .talent .talent-list .text-box dd:before, .sub.recruit .welfare .welfare-list .text-box dd:before {
  content: '';
  position: absolute;
  left: -10px;
  top: 8px;
  width: 3px;
  height: 3px;
  background-color: #fc6620;
  border-radius: 50%;
}

.sub.business .solution .list-type02 .table-box table, .sub.recruit .guide .table-box table {
  width: 100%;
}

.sub.business .solution .list-type02 .table-box table td, .sub.recruit .guide .table-box table td,
.sub.business .solution .list-type02 .table-box table th,
.sub.recruit .guide .table-box table th {
  text-align: center;
  border: 1px solid #dcdcdc;
}

.sub.business .solution .list-type02 .table-box table .th, .sub.recruit .guide .table-box table .th {
  padding: 10px 0;
  font-weight: 600;
  background-color: rgba(180, 180, 180, 0.2);
}

.sub.business .solution .list-type02 .table-box table thead th, .sub.recruit .guide .table-box table thead th {
  padding: 10px 0;
  font-weight: 600;
  background-color: rgba(180, 180, 180, 0.2);
}

.sub.business .solution .list-type02 .table-box table tbody td, .sub.recruit .guide .table-box table tbody td {
  padding: 12px;
}

.sub.business .solution .list-type02 .table-box table tbody td p, .sub.recruit .guide .table-box table tbody td p {
  text-align: left;
  font-size: 13px;
  line-height: 1.7;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

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

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

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

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

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

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

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

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

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

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

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

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

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

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

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

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

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

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

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

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

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

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

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

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) 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 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
  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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

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

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

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

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

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

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

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

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

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

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

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

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

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

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

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

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,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

body {
  position: relative;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

img {
  vertical-align: top;
  outline: none;
  image-rendering: -moz-auto;
  image-rendering: -o-auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
  -ms-interpolation-mode: nearest-neighbor;
}

/*------------------------------------------------------
/* 폰트 기본 셋팅
/*------------------------------------------------------*/
html {
  font-size: 14px;
  -webkit-text-size-adjust: none;
}

body {
  font-family: "Malgun Gothic", "맑은 고딕", HelveticaNeue, AppleSDGothicNeo-Regular, sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: none;
  color: #282828;
}

input, textarea, keygen, select, button, meter, progress, button {
  font-family: "Malgun Gothic", "맑은 고딕", HelveticaNeue, AppleSDGothicNeo-Regular, sans-serif;
}

.bold {
  font-weight: 700;
}

/*------------------------------------------------------
/* 아이콘 이미지 경로
/*------------------------------------------------------*/
.ico-comm {
  display: inline-block;
  overflow: hidden;
  color: transparent;
  white-space: nowrap;
  vertical-align: top;
}

.ico-comm {
  background-image: url("../images/icon/ico-comm.png");
  background-size: 1000px auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.ico-comm.ico-recruit1 {
  width: 110px;
  height: 110px;
  background-position: 0px 0;
}

.ico-comm.ico-recruit2 {
  width: 110px;
  height: 110px;
  background-position: -120px 0;
}

.ico-comm.ico-recruit3 {
  width: 110px;
  height: 110px;
  background-position: -240px 0;
}

.ico-comm.ico-recruit4 {
  width: 110px;
  height: 110px;
  background-position: -360px 0;
}

.ico-comm.ico-recruit5 {
  width: 110px;
  height: 110px;
  background-position: -480px 0;
}

.ico-comm.ico-recruit6 {
  width: 110px;
  height: 110px;
  background-position: -600px 0;
}

.ico-comm.ico-recruit7 {
  width: 110px;
  height: 110px;
  background-position: -720px 0;
}

.ico-comm.ico-inquiry1 {
  width: 100px;
  height: 100px;
  background-position: 0px -150px;
}

.ico-comm.ico-inquiry2 {
  width: 100px;
  height: 100px;
  background-position: -110px -150px;
}

.ico-comm.ico-inquiry3 {
  width: 100px;
  height: 100px;
  background-position: -220px -150px;
}

.ico-comm.ico-tit-solu1 {
  width: 70px;
  height: 55px;
  background-position: 0px -270px;
}

.ico-comm.ico-tit-solu2 {
  width: 70px;
  height: 55px;
  background-position: -80px -270px;
}

/*------------------------------------------------------
/* input type 기본 디자인
/*------------------------------------------------------*/
input {
  color: #333;
}

input[type=text], input[type=password], input[type=number], input[type=tel], input[type=email], input[type=search] {
  width: 100%;
  border: 0 none;
  font-size: 1.14286rem;
  line-height: 1.15;
  letter-spacing: 1px;
  outline: none;
}

input[type=text]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder {
  color: #b4b4b4;
  letter-spacing: -1px;
}

input[type=text]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder {
  color: #b4b4b4;
  letter-spacing: -1px;
}

input[type=text]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder {
  color: #b4b4b4;
  letter-spacing: -1px;
}

input[type=text]::placeholder, input[type=password]::placeholder, input[type=number]::placeholder, input[type=tel]::placeholder, input[type=email]::placeholder, input[type=search]::placeholder {
  color: #b4b4b4;
  letter-spacing: -1px;
}

input[type=text]:focus, input[type=password]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=email]:focus, input[type=search]:focus {
  border-color: #282828;
}

input[type=checkbox] {
  vertical-align: middle;
}

input[type=search] {
  -webkit-appearance: none;
}

input.keyword {
  display: block;
  background-color: transparent;
  color: #282828;
  vertical-align: top;
  white-space: nowrap;
  z-index: 1;
}

select {
  width: 100%;
  height: 45px;
  line-height: 25px;
  padding: 14px 15px;
  border: none;
  font-size: 1.14286rem;
  line-height: 1.15;
  letter-spacing: 0;
  outline: none;
  -webkit-appearance: none;
  background-color: #fff;
  background-image: url("../images/icon/ico-select.png");
  background-size: 11px auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-position: 96% center;
}

textarea {
  display: block;
  overflow: hidden;
  width: 100%;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  border: 0 none;
  font-size: 1rem;
  color: #282828;
  letter-spacing: -0.5px;
  outline: none;
  resize: none;
}

textarea::-webkit-input-placeholder {
  color: #b4b4b4;
}

textarea:-ms-input-placeholder {
  color: #b4b4b4;
}

textarea::-ms-input-placeholder {
  color: #b4b4b4;
}

textarea::placeholder {
  color: #b4b4b4;
}

/* 설정 토글 */
.toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.toggle input {
  display: none;
}

.toggle input:checked + .slider {
  background-color: #de071a;
}

.toggle input:checked + .slider span.on {
  left: 5px;
}

.toggle input:checked + .slider span.off {
  right: -20px;
}

.toggle input:checked + .slider:before {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

.toggle .slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #888888;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: .4s;
  transition: .4s;
}

.toggle .slider:before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transition: .4s;
  transition: .4s;
}

.toggle .slider span {
  position: absolute;
  bottom: 3px;
  line-height: 1.1;
  color: #fff;
  font-size: 0.64286rem;
  -webkit-transition: .4s;
  transition: .4s;
}

.toggle .slider span.on {
  left: -20px;
}

.toggle .slider span.off {
  right: 5px;
}

/* 버튼 */
button {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  font-size: 0.85714rem;
  text-decoration: none;
  cursor: pointer;
}

.btn-line {
  display: inline-block;
  text-align: center;
  padding: 10px 24px;
  border: 1px solid #888888;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn-line:hover, .btn-line:active {
  background-color: #dcdcdc;
  border-color: #b4b4b4;
}

/*------------------------------------------------------
/* list
/*------------------------------------------------------*/
/*------------------------------------------------------
/* carousel
/*------------------------------------------------------*/
.text-b {
  color: #03A9F4 !important;
}

p.text-b {
  font-size: 0.85714rem;
}

.text-r {
  color: #de071a;
}

.hide,
.skip {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}

.no-data {
  text-align: center;
  padding: 20% 0;
}

/*------------------------------------------------------
/* layout
/*------------------------------------------------------*/
.inner {
  max-width: 1200px;
  margin: 0 auto;
}

body {
  position: relative;
  word-break: keep-all;
}

body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body.hidden {
  overflow: hidden;
}

main {
  min-width: 1200px;
}

footer,
.footer {
  width: 100%;
  min-width: 1200px;
  background-color: #282828;
  color: #b4b4b4;
}

footer .ft-cont,
.footer .ft-cont {
  position: relative;
  padding: 65px 0 35px;
}

footer .ft-logo,
.footer .ft-logo {
  position: absolute;
  margin-top: -25px;
}

footer .ft-address,
.footer .ft-address {
  margin-left: 250px;
}

footer .ft-address dl,
.footer .ft-address dl {
  position: relative;
}

footer .ft-address dt,
.footer .ft-address dt {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
}

footer .ft-address dd .line,
.footer .ft-address dd .line {
  display: inline-block;
  margin: 0 10px;
  width: 1px;
  height: 11px;
  background-color: rgba(255, 255, 255, 0.1);
}

footer .ft-copy,
.footer .ft-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  color: #888888;
}

.top-scroll {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: rgba(180, 180, 180, 0.6);
  border: 1px solid rgba(250, 250, 250, 0.3);
}

.top-scroll::after {
  content: '';
  position: absolute;
  height: 0;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}

.top-scroll:hover:after {
  height: 100%;
}

.top-scroll:before {
  content: '';
  display: block;
  position: absolute;
  width: 26px;
  height: 18px;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -13px;
  background-image: url("../images/icon/ico-top.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

/*------------------------------------------------------
/* header
/*------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background-color: #de071a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  z-index: 100;
  -webkit-transition: background 0.3s ease-out, border-bottom 0.3s ease-out;
  transition: background 0.3s ease-out, border-bottom 0.3s ease-out;
  font-weight: 600;
}

#header.h-show, #header:hover, #header:active, #header:focus {
  background-color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #282828;
  -webkit-transition: background 0.3s ease-out, border-bottom 0.3s ease-out;
  transition: background 0.3s ease-out, border-bottom 0.3s ease-out;
}

#header.h-show .header-logo, #header:hover .header-logo, #header:active .header-logo, #header:focus .header-logo {
  background-image: url("../images/icon/logo.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

#header .header-logo {
  position: absolute;
  top: 7px;
  width: 226px;
  height: 62px;
  background-image: url("../images/icon/logo2.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

#header .gnb-area {
  margin-left: 520px;
  width: 680px;
  z-index: 100;
}

#header .gnb-area .gnb-list {
  display: block;
  vertical-align: top;
}

#header .gnb-area .gnb-list__item {
  position: relative;
  float: left;
  width: 25%;
  height: 80px;
  text-align: center;
}

#header .gnb-area .gnb-list__item > .item-link {
  display: block;
  height: 80px;
  line-height: 80px;
  font-size: 17px;
}

#header .gnb-area .gnb-list__item:after {
  content: '';
  display: block;
  position: absolute;
  overflow: hidden;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 3px;
  background-color: #de071a;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

#header .gnb-area .gnb-list__item:hover {
  color: #de071a;
}

#header .gnb-area .gnb-list__item:hover:after {
  right: -8px;
  left: -8px;
}

#header .gnb-area .submenu {
  display: none;
  padding-top: 25px;
  width: 100%;
}

#header .gnb-area .submenu .item-link {
  display: block;
  padding: 5px 0;
  line-height: inherit;
  color: #888888;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -1px;
}

#header .gnb-area .submenu .item-link:hover, #header .gnb-area .submenu .item-link:active {
  color: #aa000f;
}

#header .gnb-area .submenu.on {
  display: block;
}

#header .gnb-bg {
  display: none;
  position: absolute;
  left: 0;
  top: 80px;
  width: 100%;
  height: 275px;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  z-index: -1;
}

/*------------------------------------------------------
/* popup
/*------------------------------------------------------*/
.popup {
  display: block;
  position: fixed;
  padding: 15px;
  width: 290px;
  z-index: 9999;
  top: 50%;
  left: 50%;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 101;
}

.popup .pop-area .txt-tit {
  font-size: 1.07143rem;
  margin-bottom: 7px;
}

.popup .pop-area .pop-cont {
  margin-bottom: 10px;
}

.popup .pop-area .pop-cont .wirte-box {
  padding: 5px;
  border: 1px solid #dcdcdc;
}

.popup .pop-area .pop-cont .wirte-box textarea {
  height: 100px;
  overflow-y: auto;
}

.layer-scroll {
  overflow: hidden;
}

.main_popup {
  width: 350px;
  height: 430px;
  border: 3px solid #442c2c;
  background-color: white;
}

.main_popup .popup_bottom {
  background-color: #442c2c;
  color: white;
  height: 25px;
  padding: 2px 10px 3px 10px;
}

.main_popup .pull-right {
  float: right;
}

/*------------------------------------------------------
/* main
/*------------------------------------------------------*/
#slide-canvas {
  position: absolute;
  z-index: 9;
}

.visual-area {
  position: relative;
  overflow: hidden;
}

.visual-area .slide-bg {
  position: relative;
  width: 100%;
  height: 100%;
  height: 100vh;
  background-position: center center !important;
  background-color: #000;
  background-size: cover !important;
}

.visual-area .slide-bg.v01 {
  background-image: url("../images/main/main-slide01.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.visual-area .slide-bg.v02 {
  background-image: url("../images/main/main-slide02.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.visual-area .slide-bg.v03 {
  background-image: url("../images/main/main-slide03.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.visual-area .slide-bg.v04 {
  background-image: url("../images/main/main-slide04.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.visual-area .slide-bg.v05 {
  background-image: url("../images/main/main-slide05.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.visual-area .slide-bg .cont-text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.visual-area .slide-bg .cont-text p {
  margin-top: 350px;
  font-size: 112px;
  letter-spacing: 3px;
}

.visual-area .slide-bg .cont-text span {
  font-size: 20px;
}

.visual-area .slick-active .cont-text {
  -webkit-animation: fadeIn 3s;
          animation: fadeIn 3s;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.8);
}

.visual-area .slick-dots {
  position: absolute;
  bottom: 30px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 100;
}

.visual-area .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 7px;
  padding: 0;
  cursor: pointer;
}

.visual-area .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background-color: rgba(255, 255, 255, 0.3);
}

.visual-area .slick-dots li.slick-active button {
  background-color: #de071a;
  border: 3px solid #fff;
}

.main-area {
  margin: 140px auto;
}

.main-area .main-header {
  text-align: center;
}

.main-area .main-header .main-title {
  font-size: 38px;
  font-weight: 600;
}

.main-area .main-header p {
  margin-top: 20px;
  font-size: 18px;
  margin-bottom: 70px;
}

.product-area .main-content {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.product-area .main-content .solution-list .list-item {
  display: block;
  float: left;
  width: 40%;
  height: 340px;
  margin: 3.2% 0 0 3.2%;
  background-color: #b4b4b4;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.product-area .main-content .solution-list .list-item:before, .product-area .main-content .solution-list .list-item:after {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.product-area .main-content .solution-list .list-item:after {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.product-area .main-content .solution-list .list-item:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(75%, black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 75%);
  z-index: 1;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) translateY(50%);
          transform: translate3d(0, 0, 0) translateY(50%);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.product-area .main-content .solution-list .list-item:hover:after {
  opacity: 0;
}

.product-area .main-content .solution-list .list-item:hover:before {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) translateY(0);
          transform: translate3d(0, 0, 0) translateY(0);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease 0.25s;
  transition: opacity 1s ease, -webkit-transform 1s ease 0.25s;
  transition: opacity 1s ease, transform 1s ease 0.25s;
  transition: opacity 1s ease, transform 1s ease 0.25s, -webkit-transform 1s ease 0.25s;
}

.product-area .main-content .solution-list .list-item:hover .text-box {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.75s ease 0.5s;
  transition: all 0.75s ease 0.5s;
}

.product-area .main-content .solution-list .list-item:nth-child(-n+2) {
  margin-top: 0;
}

.product-area .main-content .solution-list .list-item:nth-child(odd) {
  margin-left: 0;
}

.product-area .main-content .solution-list .list-item:nth-child(3n+1) {
  width: 56.8%;
}

.product-area .main-content .solution-list .list-item:nth-child(4n+1) {
  width: 56.8%;
}

.product-area .main-content .solution-list .list-item .title {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 30px;
  font-weight: 600;
}

.product-area .main-content .solution-list .list-item .text-box {
  position: absolute;
  top: 100px;
  width: 92%;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  opacity: 0;
  z-index: 10;
  -webkit-transform: translate3d(0, 0, 0) translateY(50%);
          transform: translate3d(0, 0, 0) translateY(50%);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.product-area .main-content .solution-list .item-link {
  display: block;
  position: relative;
  height: 340px;
  padding: 25px;
  z-index: 10;
}

.product-area .main-content .tabset-nav {
  position: relative;
  width: 600px;
  margin: 65px auto;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.product-area .main-content .tabset-nav .nav-item {
  float: left;
  width: 25%;
  padding-bottom: 15px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.product-area .main-content .tabset-nav .nav-item .ico {
  display: block;
  margin: 0 auto 20px;
  width: 110px;
  height: 110px;
  border-radius: 55px;
  background-color: #fafafa;
}

.product-area .main-content .tabset-nav .nav-item.active {
  color: #fc6620;
  font-weight: 700;
}

.product-area .main-content .tabset-nav .nav-item.active .ico {
  background-color: #fc6620;
}

.product-area .main-content .tabset-nav .active-tab__marker {
  position: absolute;
  width: 25%;
  bottom: 0;
  height: 3px;
  background-color: #fc6620;
  -webkit-transition: 0.24s;
  transition: 0.24s;
}

.product-area .main-content .tabset-nav .nav-item {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

.product-area .main-content .tabset-nav .nav-item:nth-of-type(1).active ~ .active-tab__marker {
  left: 0;
}

.product-area .main-content .tabset-nav .nav-item:nth-of-type(2).active ~ .active-tab__marker {
  left: 25%;
}

.product-area .main-content .tabset-nav .nav-item:nth-of-type(3).active ~ .active-tab__marker {
  left: 50%;
}

.product-area .main-content .tabset-nav .nav-item:nth-of-type(4).active ~ .active-tab__marker {
  left: 75%;
}

.product-area .main-content .tabset-content {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}

.product-area .main-content .tabset-content .tl-list {
  position: relative;
  height: 600px;
  width: 100%;
  background-color: #fafafa;
  overflow: hidden;
}

.product-area .main-content .tabset-content .tl-list:hover .tl-item {
  width: 23.3333%;
}

.product-area .main-content .tabset-content .tl-list .tl-item {
  display: block;
  position: relative;
  float: left;
  width: 25%;
  height: 600px;
  color: #fff;
  overflow: hidden;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.product-area .main-content .tabset-content .tl-list .tl-item:before, .product-area .main-content .tabset-content .tl-list .tl-item:after {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.product-area .main-content .tabset-content .tl-list .tl-item:after {
  background: rgba(3, 22, 37, 0.9);
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.product-area .main-content .tabset-content .tl-list .tl-item:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(75%, black));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 75%);
  z-index: 1;
  opacity: 0;
  -webkit-transform: translate3d(0, 0, 0) translateY(50%);
          transform: translate3d(0, 0, 0) translateY(50%);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.product-area .main-content .tabset-content .tl-list .tl-item:hover {
  width: 30% !important;
}

.product-area .main-content .tabset-content .tl-list .tl-item:hover:after {
  opacity: 0;
}

.product-area .main-content .tabset-content .tl-list .tl-item:hover:before {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) translateY(0);
          transform: translate3d(0, 0, 0) translateY(0);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease 0.25s;
  transition: opacity 1s ease, -webkit-transform 1s ease 0.25s;
  transition: opacity 1s ease, transform 1s ease 0.25s;
  transition: opacity 1s ease, transform 1s ease 0.25s, -webkit-transform 1s ease 0.25s;
}

.product-area .main-content .tabset-content .tl-list .tl-item:hover .tl-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.75s ease 0.5s;
  transition: all 0.75s ease 0.5s;
}

.product-area .main-content .tabset-content .tl-list .tl-item:hover .tl-bg {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.product-area .main-content .tabset-content .tl-list .tl-title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  padding: 8px 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  word-break: keep-all;
}

.product-area .main-content .tabset-content .tl-list .tl-title p {
  font-size: 24px;
  text-align: center;
}

.product-area .main-content .tabset-content .tl-list .tl-content {
  -webkit-transform: translate3d(0, 0, 0) translateY(25px);
          transform: translate3d(0, 0, 0) translateY(25px);
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0 1.618em;
  top: 60%;
  opacity: 0;
}

.product-area .main-content .tabset-content .tl-list .tl-bg {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  -webkit-transition: -webkit-filter 0.5s ease;
  transition: -webkit-filter 0.5s ease;
  transition: filter 0.5s ease;
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

/*------------------------------------------------------
/* sub
/*------------------------------------------------------*/
.sub .sub-header {
  position: relative;
  height: 460px;
  background-color: #243e57;
  background-size: cover !important;
}

.sub .sub-header .sub-title {
  margin: auto;
  text-align: center;
  font-size: 52px;
  color: #fff;
  padding-top: 200px;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  -webkit-animation: fadeIn 1.2s;
          animation: fadeIn 1.2s;
}

.sub .sub-header .sub-nav {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
}

.sub .sub-header .sub-nav .sub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1200px;
  margin: 0 auto;
}

.sub .sub-header .sub-nav .sub-list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.sub .sub-header .sub-nav .sub-list__item .item-link {
  display: block;
  color: #fff;
  line-height: 54px;
  font-size: 16px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.sub .sub-header .sub-nav .sub-list__item .item-link:hover, .sub .sub-header .sub-nav .sub-list__item .item-link:active {
  background-color: rgba(255, 255, 255, 0.7);
  color: #282828;
}

.sub .sub-header .sub-nav .sub-list__item .item-link.on {
  background-color: #fff !important;
  color: #282828;
  font-weight: 700;
}

.sub .sub-header .sub-nav .sub-list__item:last-child .item-link {
  border-right: none;
}

.sub .sub-content .tit-area {
  width: 1200px;
  margin: 70px auto;
  text-align: center;
}

.sub .sub-content .tit-area .title {
  position: relative;
  font-size: 32px;
  padding-bottom: 10px;
}

.sub .sub-content .tit-area .title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 3px;
  background-color: #de071a;
}

.sub .sub-content .tit-area p {
  margin-top: 30px;
  color: #888888;
  font-size: 16px;
  letter-spacing: -0.5px;
}

.sub .sub-content .cont-area {
  margin-bottom: 200px;
}

.sub .tabs {
  display: table;
  table-layout: fixed;
  margin: auto;
}

.sub .tabs li {
  display: table-cell;
  width: 300px;
  padding: 10px;
  border: 1px solid #dcdcdc;
  border-right: 0;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
}

.sub .tabs li:last-child {
  border-right: 1px solid #dcdcdc;
}

.sub .tabs li.active {
  border: 2px solid #282828;
  background: #fff;
  border-width: 2px;
}

.sub .tabs li:hover {
  background-color: rgba(180, 180, 180, 0.4);
}

.sub .tab-cont {
  padding: 20px 0;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
}

.sub.company .sub-header {
  background-image: url("../images/bg/bg-company.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.sub.company .introduce {
  width: 100%;
}

.sub.company .introduce .img-box {
  float: left;
  width: 50%;
}

.sub.company .introduce .text-box {
  float: left;
  width: 50%;
  padding-left: 50px;
  margin: 90px 0;
}

.sub.company .introduce .text-box p {
  font-size: 16px;
  padding: 10px 0;
  letter-spacing: -0.5px;
}

.sub.company .introduce .text-box p.point {
  font-size: 33px;
  line-height: 1.4em;
  letter-spacing: -2px;
}

.sub.company .introduce .text-box p.point em {
  font-weight: 700;
}

.sub.company .history .tab-cont:before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 100%;
  background: #dcdcdc;
  z-index: 1;
}

.sub.company .history .tab-cont .timeline-cont {
  width: calc(50% + 8px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.sub.company .history .tab-cont .timeline-cont.right {
  float: right;
}

.sub.company .history .tab-cont .timeline-cont.left {
  float: left;
  direction: rtl;
}

.sub.company .history .tab-cont .marker {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #dcdcdc;
  background: #888888;
  margin-top: 10px;
  z-index: 10;
}

.sub.company .history .tab-cont .time-list {
  width: 95%;
  padding: 0 15px;
  color: #de071a;
}

.sub.company .history .tab-cont .time-list h5 {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
}

.sub.company .history .tab-cont .time-list__item {
  margin-bottom: 7px;
  line-height: 1.2em;
  color: #888888;
  font-size: 15px;
  word-spacing: 1px;
}

.sub.company .history .tab-cont .time-list__item span {
  font-size: 13px;
  color: #fc6620;
  margin-left: 8px;
  letter-spacing: -.5px;
}

.sub.company .vision {
  position: relative;
}

.sub.company .vision .vision-bg {
  position: relative;
  width: 100%;
  height: 900px;
  background-image: url("../images/company/vision-bg.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  background-repeat-x: repeat;
  background-position: top;
}

.sub.company .vision .img-box {
  height: 700px;
  text-align: center;
}

.sub.company .vision .img-box p {
  position: absolute;
  top: 120px;
  left: 50%;
  margin-left: -500px;
  width: 1000px;
  font-size: 26px;
  color: #fff;
  letter-spacing: -2px;
}

.sub.company .vision .img-box p em {
  font-size: 40px;
}

.sub.company .vision .cont-box {
  position: absolute;
  top: 485px;
  height: 440px;
  width: 1140px;
  margin: 0 30px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0 5px rgba(0, 0, 0, 0.1);
}

.sub.company .vision .cont-box .cont-list {
  padding: 70px 0;
}

.sub.company .vision .cont-box .cont-list__item {
  float: left;
  position: relative;
  width: 33.3334%;
  text-align: center;
}

.sub.company .vision .cont-box .cont-list__item + li:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #dcdcdc;
}

.sub.company .vision .cont-box .cont-list__item p {
  font-size: 17px;
  margin-top: 25px;
}

.sub.company .vision .cont-box .cont-list__item p.title {
  font-size: 34px;
  margin-top: 35px;
  font-weight: 600;
}

.sub.company .certify .certify-list__item {
  float: left;
  position: relative;
  width: 33.3%;
}

.sub.company .certify .certify-list__item:nth-child(n+4) {
  margin-top: 50px;
}

.sub.company .certify .certify-list__item .img-box {
  float: left;
  width: 160px;
}

.sub.company .certify .certify-list__item .img-box img {
  width: 100%;
  border: 1px solid rgba(220, 220, 220, 0.5);
}

.sub.company .certify .certify-list__item .cont-box {
  margin: 0 30px 0 180px;
  line-height: 1.3;
}

.sub.company .certify .certify-list__item .cont-box p {
  font-size: 16px;
  font-weight: 600;
  padding: 20px 0 25px;
  color: #de071a;
}

.sub.company .certify .certify-list__item .cont-box dl {
  position: absolute;
  bottom: 10px;
  font-size: 13px;
  color: #888888;
}

.sub.company .certify .certify-list__item .cont-box dt {
  font-weight: 600;
}

.sub.company .map .map-cont {
  position: relative;
}

.sub.company .map .map-cont .map-info {
  position: relative;
  padding: 40px 15px;
  border-top: 1px solid #dcdcdc;
  line-height: 1.9em;
}

.sub.company .map .map-cont .map-info dt {
  position: absolute;
  font-weight: 600;
}

.sub.company .map .map-cont .map-info dd {
  margin-left: 140px;
}

.sub.company .map .map-cont .map-info dd .line {
  display: inline-block;
  margin: 0 10px;
  width: 1px;
  height: 11px;
  background-color: rgba(0, 0, 0, 0.1);
}

.sub.company .map .map-cont .map-info .line2 {
  color: #169816;
}

.sub.company .map .map-cont .map-info .line7 {
  color: #747d2b;
}

.sub.company .map .map-cont .map-info em {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 18px;
  border-radius: 10px;
  background-color: #333;
  color: #fff;
  text-align: center;
}

.sub.company .map .map-cont .img-box {
  overflow: hidden;
  border: 1px solid #dcdcdc;
}

.sub.company .map .map-cont .img-box img {
  vertical-align: top;
}

.sub.company .map .btn-line {
  position: absolute;
  top: 45px;
  right: 0;
}

.sub.company .map .btn-line .ico-point {
  display: inline-block;
  width: 14px;
  height: 20px;
  margin-left: 10px;
  vertical-align: middle;
  background-image: url("../images/icon/ico-point.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.sub.company .notice .notice-list {
  margin-left: -24px;
  overflow: hidden;
}

.sub.company .notice .notice-list__item {
  position: relative;
  float: left;
  width: 25%;
}

.sub.company .notice .notice-list__item .wrap {
  margin-left: 24px;
}

.sub.company .notice .notice-list__item .item-link {
  display: block;
  position: relative;
  height: 320px;
  overflow: hidden;
  border: 1px solid #dcdcdc;
}

.sub.company .notice .notice-list__item .item-link:before, .sub.company .notice .notice-list__item .item-link:after {
  content: '';
  position: absolute;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  right: 0;
  bottom: 0;
  background: rgba(222, 7, 26, 0.4);
}

.sub.company .notice .notice-list__item .item-link:before {
  width: 100%;
  height: 2px;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.sub.company .notice .notice-list__item .item-link:after {
  width: 2px;
  height: 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.sub.company .notice .notice-list__item .item-link > span {
  display: block;
  position: relative;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.sub.company .notice .notice-list__item .item-link > span:before, .sub.company .notice .notice-list__item .item-link > span:after {
  content: '';
  position: absolute;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
  left: 0;
  top: 0;
  background: rgba(222, 7, 26, 0.4);
  z-index: 10;
}

.sub.company .notice .notice-list__item .item-link > span:before {
  width: 100%;
  height: 2px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.sub.company .notice .notice-list__item .item-link > span:after {
  width: 2px;
  height: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.sub.company .notice .notice-list__item .item-link:hover:before, .sub.company .notice .notice-list__item .item-link:hover:after,
.sub.company .notice .notice-list__item .item-link:hover > span:before,
.sub.company .notice .notice-list__item .item-link:hover > span:after {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.sub.company .notice .notice-list__item .img-box {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.sub.company .notice .notice-list__item .img-box img {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow: hidden;
}

.sub.company .notice .notice-list__item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.sub.company .notice .notice-list__item .title {
  padding: 15px 20px 0;
  font-size: 15px;
  line-height: 1.4;
}

.sub.company .notice .notice-list__item .title .year {
  color: #de071a;
  display: block;
  font-size: 20px;
  font-weight: 600;
}

.sub.company .notice .notice-list__item .time {
  position: absolute;
  bottom: 10px;
  left: 20px;
  color: #888888;
}

.sub.business .sub-header {
  background-image: url("../images/bg/bg-business.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.sub.business .tabs li {
  font-size: 16px;
}

.sub.business .solution h5 {
  padding: 60px 0 130px;
  text-align: center;
}

.sub.business .solution h5 .title {
  position: relative;
  margin: 0 auto;
  font-size: 32px;
  letter-spacing: -1px;
  z-index: 10;
}

.sub.business .solution h5 .title:before, .sub.business .solution h5 .title:after {
  content: '';
  display: block;
  position: absolute;
  width: 70px;
  height: 55px;
  background-image: url("../images/icon/ico-comm.png");
  background-size: 1000px auto;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
}

.sub.business .solution h5 .title:before {
  background-position: 0 -270px;
  top: -35px;
  left: -55px;
}

.sub.business .solution h5 .title:after {
  background-position: -80px -270px;
  bottom: -35px;
  right: -60px;
}

.sub.business .solution .list-type01 {
  position: relative;
  height: 520px;
  overflow: hidden;
  background-attachment: fixed;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}

.sub.business .solution .list-type01 h5 {
  padding-top: 100px;
  color: rgba(255, 255, 255, 0.82);
}

.sub.business .solution .list-type01 h5 .title {
  font-size: 36px;
  text-shadow: 0 0 2px #000;
}

.sub.business .solution .list-type01 .list-wrap {
  position: absolute;
  bottom: 50px;
  left: 0;
  margin: 0 50px;
}

.sub.business .solution .list-type01 li {
  padding: 4px 10px;
  margin-top: 3px;
  background-color: rgba(0, 0, 0, 0.32);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
}

.sub.business .solution .list-type02 [class*="list-item"] {
  padding: 120px 0;
}

.sub.business .solution .list-type02 [class*="list-item"] .title {
  float: left;
  width: 180px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -1px;
}

.sub.business .solution .list-type02 [class*="list-item"] .cont-box,
.sub.business .solution .list-type02 [class*="list-item"] .img-box {
  margin-left: 190px;
}

.sub.business .solution .list-type02 li:last-child {
  padding-bottom: 0;
}

.sub.business .solution .list-type02 .list-item01 .cont-box li {
  float: left;
  width: 27%;
  margin-right: 5%;
  font-size: 17px;
}

.sub.business .solution .list-type02 .list-item01 .cont-box li p {
  position: relative;
  margin-left: 10px;
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.2;
  color: #6b7786;
}

.sub.business .solution .list-type02 .list-item01 .cont-box .line {
  display: block;
  position: relative;
  width: 50px;
  height: 1px;
  margin-bottom: 10px;
  background-color: rgba(0, 0, 0, 0.1);
}

.sub.business .solution .list-type02 .list-item01 .cont-box .line:after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: #de071a;
  top: 0;
}

.sub.business .solution .list-type02 .list-item02 {
  background-color: #fafafa;
}

.sub.business .solution .list-type02 .list-item04 {
  padding-top: 0;
}

.sub.business .solution .list-type02 .cont-box dl {
  position: relative;
  margin-top: 30px;
}

.sub.business .solution .list-type02 .cont-box dt {
  position: relative;
  float: left;
  width: 115px;
  margin-left: 20px;
  font-weight: 600;
}

.sub.business .solution .list-type02 .cont-box dt:after {
  content: ':';
  position: absolute;
  right: 0;
}

.sub.business .solution .list-type02 .cont-box dd {
  margin-left: 140px;
  margin-bottom: 5px;
}

.sub.business .solution .list-type02 .table-box > p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #de071a;
}

.sub.business .solution .list-type02 .table-box > p:before {
  content: '*';
  padding-right: 5px;
}

.sub.business .solution .list-type02 .table-box > p span {
  display: block;
  margin-left: 15px;
  font-size: 13px;
  color: #888888;
  letter-spacing: -1px;
}

.sub.business .solution .list-type02 .table-box table {
  font-size: 13px;
}

.sub.business .solution .list-type02 .table-box table .text-left {
  text-align: left;
  padding-left: 10px;
}

.sub.business .solution .list-type02 .table-box table .th {
  height: 40px;
}

.sub.business .solution .list-type02 .table-box table td {
  padding: 7px !important;
}

.sub.business .solution .list-type02 .table-box table td span {
  display: block;
  position: relative;
  margin-left: 15px;
  text-align: left;
}

.sub.business .solution .list-type02 .table-box table img {
  padding: 30px 0;
}

.sub.business .solution .list-type02 .table-box table p {
  position: relative;
  text-align: left;
  margin: 0 10px 15px 30px;
  color: #fc6620;
  font-weight: 600;
}

.sub.business .solution .list-type02 .table-box + .table-box {
  margin-top: 60px;
}

.sub.business .solution .prepar {
  padding: 120px 0 0;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
}

.sub.business .case .case-list {
  margin-left: -26px;
}

.sub.business .case .case-list__item {
  position: relative;
  float: left;
  width: 280px;
  height: 280px;
  margin-left: 26px;
  margin-bottom: 26px;
  background-color: #fafafa;
  overflow: hidden;
}

.sub.business .case .case-list__item .wrap {
  display: table;
  width: inherit;
  height: inherit;
}

.sub.business .case .case-list__item .img-box {
  display: table-cell;
  padding-bottom: 20px;
  vertical-align: middle;
  text-align: center;
}

.sub.business .case .case-list__item .img-box img {
  vertical-align: middle;
}

.sub.business .case .case-list__item .cover {
  content: '';
  position: absolute;
  width: inherit;
  height: inherit;
  padding: 20px;
  margin-top: -280px;
  background-color: rgba(222, 7, 26, 0.96);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 2;
}

.sub.business .case .case-list__item .cover .text {
  margin-top: 10px;
  text-align: center;
}

.sub.business .case .case-list__item .cover .text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
}

.sub.business .case .case-list__item .cover .text .title {
  color: white;
  font-size: 17px;
  letter-spacing: -1px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sub.business .case .case-list__item .cover .text span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
}

.sub.business .case .case-list__item .cover + .title {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: #888888;
  z-index: 10;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.sub.business .case .case-list__item:hover .cover, .sub.business .case .case-list__item:active .cover, .sub.business .case .case-list__item:focus .cover {
  margin-top: 0;
  -webkit-animation: fadeIn .8s;
          animation: fadeIn .8s;
}

.sub.business .case .case-list__item:hover .cover + .title, .sub.business .case .case-list__item:active .cover + .title, .sub.business .case .case-list__item:focus .cover + .title {
  color: #fff;
}

.sub.recruit .sub-header {
  background-image: url("../images/bg/bg-recruit.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.sub.recruit .talent .talent-top {
  padding-top: 150px;
  height: 400px;
  background-image: url("../images/bg/bg-recruit2.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-attachment: fixed;
  text-align: center;
}

.sub.recruit .talent .talent-top p {
  color: #fff;
  font-size: 25px;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.4);
}

.sub.recruit .talent .talent-list {
  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  margin-top: 100px;
}

.sub.recruit .talent .talent-list li {
  float: left;
  position: relative;
  width: 50%;
  height: 245px;
  padding: 60px 30px;
  border-top: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
}

.sub.recruit .talent .talent-list .ico-comm {
  float: left;
}

.sub.recruit .talent .talent-list .text-box {
  margin-left: 150px;
}

.sub.recruit .talent .talent-list .text-box dt {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 600;
}

.sub.recruit .talent .talent-list .text-box dd {
  position: relative;
  margin-left: 10px;
}

.sub.recruit .talent .talent-list .text-box dd + dd {
  margin-top: 5px;
}

.sub.recruit .welfare .welfare-list {
  display: table;
  table-layout: fixed;
  width: 100%;
}

.sub.recruit .welfare .welfare-list li {
  display: table-cell;
  padding: 30px;
}

.sub.recruit .welfare .welfare-list .ico-comm {
  display: block;
  margin: 0 auto 20px;
}

.sub.recruit .welfare .welfare-list .text-box dt {
  margin-bottom: 30px;
  text-align: center;
  font-size: 20px;
  color: #de071a;
  font-weight: 600;
}

.sub.recruit .welfare .welfare-list .text-box dd {
  position: relative;
  margin-left: 20px;
  margin-bottom: 5px;
}

.sub.recruit .guide .title {
  margin-bottom: 40px;
  border-bottom: 2px solid #b4b4b4;
  font-size: 24px;
  color: #282828;
}

.sub.recruit .guide .guide-list {
  margin-bottom: 100px;
}

.sub.recruit .guide .guide-list li {
  float: left;
  width: 281.25px;
  height: 250px;
  padding: 40px 20px;
  border: 1px solid #dcdcdc;
}

.sub.recruit .guide .guide-list li + li {
  margin-left: 25px;
}

.sub.recruit .guide .guide-list li p {
  font-size: 12px;
  color: #888888;
}

.sub.recruit .guide .guide-list li .list-tit {
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #282828;
}

.sub.recruit .guide .table-box {
  margin-bottom: 100px;
}

.sub.recruit .guide .guide-info dl + dl {
  margin-top: 25px;
}

.sub.recruit .guide .guide-info dt {
  float: left;
  font-weight: 600;
}

.sub.recruit .guide .guide-info dd {
  margin-left: 140px;
}

.sub.info .sub-header {
  background-image: url("../images/bg/bg-info.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.sub.info .sub-header.v02 {
  background-image: url("../images/bg/bg-info2.jpg");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.sub.info .surport .contact p {
  margin-bottom: 10px;
  font-size: 24px;
}

.sub.info .surport .contact dl {
  position: relative;
}

.sub.info .surport .contact dt {
  position: absolute;
  font-weight: 600;
}

.sub.info .surport .contact dd {
  margin-left: 100px;
}

.sub.info .surport .inquiry {
  margin-top: 40px;
}

.sub.info .surport .inquiry .inquiry-list {
  display: table;
  table-layout: fixed;
  width: 100%;
  border: 1px solid #dcdcdc;
}

.sub.info .surport .inquiry .inquiry-list li {
  display: table-cell;
  position: relative;
  padding: 20px 20px 40px;
}

.sub.info .surport .inquiry .inquiry-list li + li {
  border-left: 1px solid #dcdcdc;
}

.sub.info .surport .inquiry .inquiry-list .text-box {
  margin-left: 120px;
  color: #888888;
  font-size: 13px;
}

.sub.info .surport .inquiry .inquiry-list .text-box .title {
  margin-bottom: 5px;
  color: #de071a;
  font-size: 17px;
  font-weight: 600;
}

.sub.info .surport .inquiry .inquiry-list .ico-comm {
  position: absolute;
  top: 35px;
}

.sub.info .surport .inquiry .inquiry-list .btn {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 7px 20px;
  font-weight: 600;
  text-align: center;
  background-color: #dcdcdc;
}

.sub.info .surport .inquiry .inquiry-list .btn:hover, .sub.info .surport .inquiry .inquiry-list .btn:active {
  background-color: #de071a;
  color: #fff;
}

.sub.info .client .title {
  margin-bottom: 30px;
  border-bottom: 2px solid #b4b4b4;
  font-size: 24px;
  color: #282828;
}

.sub.info .client .client-list {
  text-align: center;
}

.sub.info .client .client-list + .title {
  margin-top: 40px;
}

.sub.info .client .client-list li {
  float: left;
  height: 173px;
  margin-left: 25px;
}

.sub.info .client .client-list li .img-box {
  position: relative;
}

.sub.info .client .client-list li .img-box img {
  width: 150px;
  height: 120px;
}

.sub.info .client .client-list li .img-box:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #dcdcdc;
}

.sub.info .client .client-list li:nth-child(7n+1) {
  margin: 0;
}

.sub.info .client .client-list li p {
  letter-spacing: -1px;
  margin-top: 3px;
  color: #888888;
}
/*# sourceMappingURL=style.css.map */