@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

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

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  height: 50px;
  line-height: 50px;
  border-radius: 0;
  font-size: 24px;
  text-align: center;
  padding: 0;
  border: 0;
  width: 100%;
  max-width: 160px;
  font-weight: 700;
  display: inline-block;
  letter-spacing: .05em;
  -moz-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.btn:hover, .btn:active {
  opacity: .8;
}

.btn-primary {
  background-color: #0d8b38;
  color: #fff;
}

.btn-secondary {
  color: #000;
  border: 1px solid #d0d0d0;
  background-color: #f5f5f5;
}

.btn-search {
  color: #fff;
  background-color: #43515c;
}

.icon {
  width: 60px;
  height: 60px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  border-radius: 0;
  position: relative;
}
.icon-search {
  background-image: url(../images/icon-search.svg);
}
.icon-cart {
  background-image: url(../images/icon-cart.svg);
}
.icon-refresh {
  background-image: url(../images/icon-refresh.svg);
}

.icon-prev:before, .icon-prev:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  display: inline-block;
  vertical-align: middle;
}
.icon-prev:before {
  border-width: 7px 11px 7px 0;
  border-color: transparent #000 transparent transparent;
}
.icon-prev:after {
  display: none;
}
.icon-prev.arrow-double:before {
  border-width: 7px 11px 7px 0;
  border-color: transparent #000 transparent transparent;
}
.icon-prev.arrow-double:after {
  display: inline-block;
  border-width: 7px 11px 7px 0;
  border-color: transparent #000 transparent transparent;
}

.icon-next:before, .icon-next:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  display: inline-block;
  vertical-align: middle;
}
.icon-next:before {
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #000;
}
.icon-next:after {
  display: none;
}
.icon-next.arrow-double:before {
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #000;
}
.icon-next.arrow-double:after {
  display: inline-block;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #000;
}

.form-control {
  padding: 0 .5em;
  border-radius: 0;
  font-size: 24px;
  line-height: 50px;
  height: 50px;
  border: 1px solid #808080;
  color: #000;
  width: 100%;
  font-family: Arial, 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
}
.form-control.size--md {
  max-width: 300px;
}

.radio-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.radio-item {
  position: relative;
  padding-right: 1em;
}
.radio-item input[type="radio"] {
  display: none;
}
.radio-item label {
  position: relative;
  padding-left: 30px;
  font-size: 18px;
  line-height: 50px;
  white-space: nowrap;
  cursor: pointer;
  display: block;
}
.radio-item label:before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid #888;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  margin: 0;
  left: 0;
  top: 8px;
  box-shadow: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.radio-item label:after {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #50beaf;
  position: absolute;
  left: 6px;
  top: 14px;
  display: none;
}
.radio-item input:checked + label:after {
  display: block;
}
.radio-item input + label {
  transition: .7s ease;
}

.checkbox-item {
  position: relative;
}
.checkbox-item input {
  display: none;
}
.checkbox-item label {
  display: inline-block;
  padding: 0 0 0 55px;
  cursor: pointer;
}
.checkbox-item label:before {
  content: '';
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  margin-right: 10px;
  box-sizing: border-box;
  border-radius: 0;
  width: 30px;
  height: 30px;
  border: 2px solid #004257;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.checkbox-item label:after {
  content: '';
  width: 16px;
  height: 16px;
  background: #50beaf;
  position: absolute;
  left: 7px;
  top: 7px;
  display: none;
}
.checkbox-item input:checked + label:after {
  display: block;
}
.checkbox-item input + label {
  transition: .7s ease;
}

textarea.form-control {
  padding: .25em .5em;
  line-height: 36px;
  height: 150px;
  width: 400px;
  border-radius: 0;
  display: block;
}

select.form-control {
  padding: 0 12px;
  line-height: 50px;
  height: 50px;
  background: #fff;
  border: 0;
  border-radius: 0;
}

.form {
  line-height: 30px;
  margin: 0 auto;
  max-width: 740px;
}
.form .required {
  color: #f00;
}
.form .input-item {
  position: relative;
  padding: 10px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.form .input-item__header {
  width: 150px;
  line-height: 50px;
  padding-right: 20px;
  text-align: right;
  white-space: nowrap;
}
.form .input-item__content {
  width: calc(100% - 150px);
}
.form .input-item .form-control {
  width: 100%;
}
.form .btn-row {
  text-align: center;
  padding: 40px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.form .btn-row .btn {
  margin: 0 .5em;
}
.form .btn-row .btn:first-child {
  margin-left: 0;
}
.form .btn-row .btn:last-child {
  margin-right: 0;
}
.form .form-label {
  line-height: 50px;
}

.form-table {
  width: 100%;
}
.form-table td {
  vertical-align: top;
  padding: 10px;
  border-bottom: 1px solid #c0c0c0;
}

.select {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid #808080;
  height: 50px;
  width: 100%;
  max-width: 300px;
  display: block;
}
.select:before {
  content: "";
  width: 50px;
  height: 36px;
  background-color: rgba(249, 249, 249, 0);
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(249, 249, 249, 0)), to(#f9f9f9));
  background-image: -webkit-linear-gradient(left, rgba(249, 249, 249, 0), #f9f9f9);
  background-image: -moz-linear-gradient(left, rgba(249, 249, 249, 0), #f9f9f9);
  background-image: -ms-linear-gradient(left, rgba(249, 249, 249, 0), #f9f9f9);
  background-image: -o-linear-gradient(left, rgba(249, 249, 249, 0), #f9f9f9);
  background-image: linear-gradient(to right, rgba(249, 249, 249, 0), #f9f9f9);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(249, 249, 249, 0)', endColorStr='#f9f9f9', gradientType='1');
  position: absolute;
  top: 50%;
  right: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}
.select:after {
  content: "";
  width: 36px;
  height: 36px;
  background: url(../images/arrow-down.svg) center no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  pointer-events: none;
}
.select .form-control {
  width: calc(100% + 50px);
}
.select:first-child {
  margin-left: 0;
}
.select:last-child {
  margin-right: 0;
}

.verification-code {
  max-width: 360px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.verification-code .form-control {
  max-width: calc(100% - 130px - 60px);
}
.verification-code .image {
  width: 100%;
  max-width: 120px;
  margin-left: 10px;
  height: 50px;
  border: 1px solid #808080;
  display: inline-block;
  position: relative;
}
.verification-code .image img {
  position: relative;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.verification-code .image {
  width: 100%;
  max-width: 120px;
  margin-left: 10px;
  height: 50px;
  border: 1px solid #808080;
  display: inline-block;
  position: relative;
}
.verification-code .image img {
  position: relative;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.verification-code .refresh {
  height: 50px;
  margin-left: 10px;
}
.verification-code .refresh .icon {
  width: 32px;
  height: 32px;
  margin-top: 9px;
}

.pagination {
  display: block;
  color: white;
  text-align: center;
  font-size: 20px;
}
.pagination .pagination-link {
  padding: 50px 0;
}
.pagination .pagination-link li {
  display: inline-block;
  height: 25px;
  padding: 0 2px;
}
.pagination .pagination-link li a,
.pagination .pagination-link li span {
  color: #000;
  background: white;
  padding: 0;
  min-width: 16px;
  height: 25px;
  display: block;
  text-align: center;
  text-decoration: none;
}
.pagination .pagination-link li a.active,
.pagination .pagination-link li span.active {
  text-decoration: none;
  color: #e50013;
}
.pagination .pagination-link li a.current,
.pagination .pagination-link li span.current {
  color: #000;
}
.pagination .pagination-link li a.prev,
.pagination .pagination-link li a.next {
  text-decoration: none;
  width: 25px;
}
.pagination .pagination-link li a:hover,
.pagination .pagination-link li a:active {
  color: #e50013;
  text-decoration: none;
  opacity: .8;
}
.pagination .pagination-link .page-total {
  display: none;
}
.pagination .icon-prev {
  position: relative;
  top: -2px;
}
.pagination .icon-next {
  position: relative;
  top: -2px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 24px;
  height: 24px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  z-index: 2;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: .6;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 20px;
  background: url(../images/slick-prev.svg);
}

[dir='rtl'] .slick-prev {
  right: 20px;
  left: auto;
}

.slick-prev:before {
  content: '←';
}

[dir='rtl'] .slick-prev:before {
  content: '→';
}

.slick-next {
  right: 20px;
  background: url(../images/slick-next.svg);
}

[dir='rtl'] .slick-next {
  right: auto;
  left: 20px;
}

.slick-next:before {
  content: '→';
}

[dir='rtl'] .slick-next:before {
  content: '←';
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

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

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: transparent;
  white-space: nowrap;
  text-indent: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  background-color: #fff;
}

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

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

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

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

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

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

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

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

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

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

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

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

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

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

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

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

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

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

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

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

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

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

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

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

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

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

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

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

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

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

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

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

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

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

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

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

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

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

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

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

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

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

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

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

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

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  overflow: hidden;
  position: fixed;
  background: #1b1b1b;
  opacity: 0.85;
  -webkit-overflow-scrolling: touch;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateZ(0);
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  overflow: auto;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  color: #000;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 0;
    padding-right: 0;
  }
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

/**
 * Fade-zoom animation for first dialog
 */
/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
  opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

html {
  min-width: 100%;
}

body {
  font: 1em/1.6 Arial, 'Microsoft JhengHei', "Microsoft YaHei", Helvetica, sans-serif;
  background: #fff;
  min-width: 320px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  -moz-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

:focus {
  outline: none;
}

a:focus,
a:active,
a:hover {
  outline: 0;
  -moz-outline-style: none;
}

img {
  max-width: 100%;
  height: auto;
  -moz-user-select: none;
  -webkit-user-select: none;
}

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

p {
  margin: 0;
}

strong {
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

textarea,
select,
input[type="text"],
input[type='number'],
input[type="button"],
input[type="search"],
input[type="submit"],
button,
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  font-size: 18px;
  font-family: Arial, 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
}
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type='number']:focus,
input[type="button"]:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
button:focus,
input[type="radio"]:focus {
  outline: 0;
}

ol {
  list-style-type: decimal;
}
ol li {
  margin-left: 1.25em;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.ie-dialog {
  display: none;
}

.scroll--hidden {
  overflow: hidden;
}

.loader {
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  position: fixed;
  z-index: 10;
}

.loader-anim {
  border: 4px solid #eee;
  border-top: 4px solid #53a752;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -18px;
  margin-top: -18px;
  -moz-animation: loader-spin 0.3s linear infinite;
  -webkit-animation: loader-spin 0.3s linear infinite;
  animation: loader-spin 0.3s linear infinite;
}

@keyframes loader-spin {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1080px;
  padding: 0 40px;
  position: relative;
}

.text-block {
  display: inline-block;
}

.site-header {
  width: 100%;
  position: relative;
  z-index: 3;
  height: 170px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}
.site-header .container {
  max-width: 100%;
}
.site-header__top {
  position: absolute;
  top: 28px;
  right: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  z-index: 1;
}
.site-header .logo {
  position: absolute;
  top: 35px;
  left: 50px;
  width: 300px;
  height: 105px;
  background-image: url(../images/logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  z-index: 3;
}
.site-header .language {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
}
.site-header .language li {
  position: relative;
  margin: 0 10px;
}
.site-header .language li:last-child {
  margin-right: 0;
}
.site-header .language a {
  width: 38px;
  height: 38px;
  color: #fff;
  background-color: #43515c;
  text-align: center;
  line-height: 38px;
  display: block;
  font-size: 30px;
  letter-spacing: -.5px;
}
.site-header .top-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.site-header .top-link li {
  position: relative;
  margin: 0 10px;
}
.site-header .top-link li:last-child {
  margin-right: 0;
}
.site-header .top-link a {
  display: block;
}
.site-header nav {
  height: 100%;
}

.landing-header {
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
}
.landing-header .main-menu a {
  color: #fff;
}
.landing-header .language a {
  color: #9a9e9f;
  background-color: #fff;
}
.landing-header .icon-search {
  background-image: url(../images/icon-search-white.svg);
}
.landing-header .icon-cart {
  background-image: url(../images/icon-cart-white.svg);
}
.landing-header.sticky, .landing-header.is-toggle {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  background-color: #fff;
}
.landing-header.sticky .main-menu a, .landing-header.is-toggle .main-menu a {
  color: #000;
}
.landing-header.sticky .main-menu ul a, .landing-header.is-toggle .main-menu ul a {
  color: #fff;
}
.landing-header.sticky .language a, .landing-header.is-toggle .language a {
  color: #fff;
  background-color: #43515c;
}
.landing-header.sticky .icon-search, .landing-header.is-toggle .icon-search {
  background-image: url(../images/icon-search.svg);
}
.landing-header.sticky .icon-cart, .landing-header.is-toggle .icon-cart {
  background-image: url(../images/icon-cart.svg);
}

.search-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  opacity: 0;
  z-index: 3;
  display: none;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.search-box.is-toggle {
  opacity: 1;
  display: block;
}
.search-box__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon-close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}
.search-box__main {
  width: calc(100% - 40px);
  max-width: 560px;
  padding: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: #fff;
}
.search-box .title {
  font-size: 36px;
  color: #44525d;
}
.search-box__form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.search-box__form .form-control {
  width: 75%;
}
.search-box__form .btn-search {
  width: 25%;
}

.site-menu {
  position: absolute;
  top: 110px;
  right: 43px;
}

.downarrow {
  background: none;
  display: none;
  padding: 0;
  text-align: center;
  min-width: 3px;
}

.sub-menu .downarrow {
  position: absolute;
  right: 0;
  padding-right: 10px;
}

.downarrow:before {
  content: '\25be';
  color: inherit;
  display: block;
  font-family: sans-serif;
  font-size: 1em;
  line-height: 1.1;
  width: 1em;
  height: 1em;
  color: #44525d;
}

.main-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  max-width: 100%;
}
.main-menu li {
  position: relative;
}
.main-menu li:hover > a {
  color: #289249;
}
.main-menu li li:hover > a {
  color: #fff;
  background: #289249;
}
.main-menu a {
  position: relative;
  display: block;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
  padding: 5px 7px;
}
.main-menu .active {
  color: #fff;
}
.main-menu ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #666;
  text-align: center;
  width: 11em !important;
}
.main-menu ul li:before {
  display: none;
}
.main-menu ul li:last-child {
  border-bottom: 0;
}
.main-menu ul ul {
  top: 0;
  left: 100%;
  background-color: #999;
  width: 16em !important;
}
.main-menu ul a {
  padding: 5px 15px;
  color: #fff;
}
.main-menu ul a:hover {
  color: #fff;
}

.site-content {
  position: relative;
  background-color: #fff;
  width: 100%;
  overflow: hidden;
  min-height: calc(100vh - 122px - 134px);
  z-index: 0;
}

.landing-hero {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.landing-hero img {
  display: block;
  width: 100%;
  max-width: initial;
}

.marquee {
  background: linear-gradient(to bottom, #660000 0%, #ff1100 100%);
  color: #fff;
  font-size: 28px;
  line-height: 1.1;
  padding: 15px 50px;
  overflow: hidden;
  position: relative;
}
.marquee .marquee-item {
  width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.marquee a {
  color: #fff;
}

.landing-video {
  position: relative;
  height: 85vh;
  height: 900px;
  overflow: hidden;
}
.landing-video__bg {
  pointer-events: none;
}
.landing-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: inherit;
  min-width: 100vw;
  min-height: calc(100vh + 18px);
  z-index: 0;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.landing-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  width: 150vw;
  height: 100%;
  height: 300vh;
  z-index: 0;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.landing-video__content {
  position: absolute;
  bottom: 90px;
  left: 0;
  color: #fff;
  font-family: 'Century Gothic';
  padding: 0 100px;
}
.landing-video h2 {
  font-size: 48px;
  line-height: 1.3;
  font-family: 'Century Gothic';
}
.landing-video p {
  font-size: 48px;
  line-height: 1.3;
  font-family: 'Century Gothic';
}

.landing-section .container {
  width: 100%;
  max-width: initial;
  padding: 0;
}

.landing-featrue {
  background-image: url(../images/bg-featrue.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 60px 0;
}
.landing-featrue .featrue-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  margin: 0 auto;
  max-width: 1080px;
}
.landing-featrue .featrue-item {
  position: relative;
  width: calc(100% / 4 - 80px);
  margin: 0 40px;
}
.landing-featrue .featrue-item:before {
  content: "";
  background-image: url(../images/bg-featrue_item.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.landing-featrue .featrue-item a {
  display: block;
  position: relative;
  padding-top: 114%;
}
.landing-featrue .featrue-item img {
  display: block;
  margin: 0 auto;
  position: absolute;
  top: calc(50% - 20px);
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.landing-featrue .featrue-item .main-text {
  font-size: 32px;
  text-align: center;
  display: block;
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  white-space: nowrap;
  -moz-transform: translateY(150%);
  -ms-transform: translateY(150%);
  -webkit-transform: translateY(150%);
  transform: translateY(150%);
}
.landing-featrue a {
  color: #fff;
  display: block;
}

.landing-product {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.landing-product .product-item {
  position: relative;
  width: calc(100% / 2);
  margin: 0;
}
.landing-product .product-item:first-child a, .landing-product .product-item:nth-child(2) a {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.landing-product .product-item__image {
  position: relative;
  width: 50%;
  overflow: hidden;
  padding-top: 39%;
}
.landing-product .product-item__image img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.landing-product .product-item__content {
  position: relative;
  width: 50%;
  padding-top: 39%;
  background: linear-gradient(to bottom, #660000 0%, #ff1100 100%);
}
.landing-product .product-item .title {
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  display: block;
  width: 100%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.landing-product .product-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.landing-overview {
  padding: 50px 0;
}
.landing-overview .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  max-width: 1040px;
  padding: 0;
}
.landing-overview .col {
  margin: 0 20px;
  width: calc(100% - 40px);
  font-size: 24px;
  letter-spacing: -.5px;
}
.landing-overview .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.landing-overview .info-text {
  width: calc(100% - 31.25%);
  padding-right: 20px;
}
.landing-overview .info-image {
  width: 31.25%;
  display: none;
}

.site-footer {
  width: 100%;
  position: relative;
}
.site-footer__top {
  padding: 50px 0;
  font-size: 18px;
  background: linear-gradient(to bottom, #660000 0%, #ff1100 100%);
  color: #fff;
}
.site-footer__top .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  max-width: 1040px;
  padding: 0;
}
.site-footer__top .col {
  margin: 0 20px;
  width: calc(100% - 40px);
}
.site-footer__top .title {
  font-size: 32px;
}
.site-footer__top .service-time {
  text-align: center;
}
.site-footer__bottom {
  background-color: #fff;
  text-align: center;
  padding: 30px 0;
  color: #000;
  font-size: 18px;
  text-align: center;
}

.customer-service {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 50px;
}
.customer-service .item {
  width: 100px;
  text-align: center;
}
.customer-service img {
  display: block;
  margin: 0 auto 10px;
}

.page {
  font-size: 24px;
  padding: 50px 0;
  position: relative;
  background-image: url(../images/bg-page.jpg);
  background-position: center top;
  background-repeat: no-repeat;
}

.page-header {
  font-size: 44px;
  letter-spacing: -.01em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}
.page-header:before {
  content: "";
  height: 3px;
  width: 30px;
  position: absolute;
  left: 50%;
  bottom: -5px;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  background-color: #ec1c24;
}

.contact .desc {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ccc;
}
.contact .desc p {
  text-align: justify;
}

.result .highlight {
  color: #f21000;
}
.result .result-desc {
  margin-bottom: 20px;
}

.result-item {
  margin-bottom: 20px;
}
.result-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  border: 1px solid #ccc;
  padding: 20px;
}
.result-item a:hover .title {
  color: #666;
}
.result-item__image {
  width: 100px;
}
.result-item__content {
  width: calc(100% - 100px);
  padding-left: 20px;
}
.result-item .title {
  font-size: 24px;
}
.result-item .desc {
  font-size: 18px;
  color: #555;
}

.page-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.page-menu li {
  position: relative;
  padding: 0 .5em;
}
.page-menu a {
  position: relative;
}
.page-menu.secondary li {
  padding: .25em .5em;
}
.page-menu.secondary .active {
  color: #108e3c;
  font-weight: 700;
}
.page-menu.secondary .active:before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 3px;
  width: 100%;
  display: block;
  background-color: #94d272;
}
.page-menu.tertiary {
  margin-top: -40px;
  background-color: #eee;
  padding: 20px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.page-menu.tertiary a {
  padding-left: 16px;
  font-size: 20px;
}
.page-menu.tertiary a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  display: inline-block;
  vertical-align: middle;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent #ec1c24;
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
}
.page-menu.tertiary .active {
  font-weight: 700;
}

.qa-item {
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
  position: relative;
  line-height: 36px;
}
.qa-item .question {
  position: relative;
  padding-left: 60px;
  padding-right: 50px;
  font-weight: 700;
  line-height: 1.5em;
  min-height: 36px;
}
.qa-item .question:before {
  content: "Q";
  width: 36px;
  height: 36px;
  background-color: #e50112;
  text-align: center;
  line-height: 36px;
  display: block;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.qa-item .answer {
  position: relative;
  padding-left: 60px;
  margin-top: 12px;
  line-height: 1.5em;
  min-height: 36px;
}
.qa-item .answer:before {
  content: "A";
  width: 36px;
  height: 36px;
  background-color: #108e3c;
  text-align: center;
  line-height: 36px;
  display: block;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.news-item {
  border-bottom: 1px solid #ccc;
}
.news-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  padding: 25px 0;
  position: relative;
}
.news-item a:before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../images/icon-arrow_left.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 30px;
  right: 10px;
  display: block;
  opacity: .5;
}
.news-item a:hover .title {
  color: #333;
}
.news-item a:hover:before {
  opacity: 1;
}
.news-item .date {
  font-size: 18px;
  color: #e60213;
  width: 120px;
  padding-right: 20px;
  line-height: 2em;
}
.news-item .title {
  font-size: 24px;
  width: calc(100% - 120px);
  padding-right: 50px;
  font-weight: 700;
}

.article-header {
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}
.article-content {
  padding: 2em 0;
}
.article-content p {
  margin-bottom: 1.5em;
  text-align: justify;
}
.article-content p:last-child {
  margin-bottom: 0;
}
.article-footer {
  padding: 50px 0;
}
.article-footer .btn {
  color: #fff;
  background-color: #000;
  margin: 0 auto;
  display: block;
}
.article .title {
  font-size: 32px;
  line-height: 1.3em;
  font-weight: 700;
}
.article .date {
  color: #e60213;
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  vertical-align: middle;
  padding-left: 10px;
}

.to-top {
  position: fixed;
  bottom: 10px;
  right: -36px;
  opacity: 0;
  background-color: #ec1c24;
  border-radius: 50%;
  font-size: 12px;
  line-height: 36px;
  text-align: center;
  width: 36px;
  height: 36px;
  margin-top: -30px;
  color: #fff;
  display: block;
  overflow: hidden;
}
.to-top.animated {
  -moz-animation-duration: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.to-top.fadeIn {
  right: 15px;
}
.to-top.is-hide {
  display: none;
}
.scroll-hide .to-top {
  z-index: 0;
  -moz-animation-duration: initial;
  -webkit-animation-duration: initial;
  animation-duration: initial;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
}
.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.is-toggle {
  display: block;
}

.c-hamburger {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 75px;
  height: 75px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  z-index: 1;
  background-color: #44525d;
  -moz-transition: background 0.3s;
  -o-transition: background 0.3s;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.c-hamburger:focus {
  outline: none;
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 32px;
  left: 15px;
  right: 15px;
  height: 9px;
  background: #fff;
  border-radius: 0;
  -moz-transition: background 0s 0.3s;
  -o-transition: background 0s 0.3s;
  -webkit-transition: background 0s;
  -webkit-transition-delay: 0.3s;
  transition: background 0s 0.3s;
  pointer-events: none;
}
.c-hamburger span::before,
.c-hamburger span::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  height: 9px;
  background-color: #fff;
  border-radius: 0;
  -moz-transition-duration: 0.3s, 0.3s;
  -o-transition-duration: 0.3s, 0.3s;
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -moz-transition-delay: 0.3s, 0s;
  -o-transition-delay: 0.3s, 0s;
  -webkit-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}
.c-hamburger span::before {
  top: -18px;
  right: 0;
  -moz-transition-property: top, -moz-transform;
  -o-transition-property: top, -o-transform;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}
.c-hamburger span::after {
  bottom: -18px;
  right: 0;
  -moz-transition-property: bottom, -moz-transform;
  -o-transition-property: bottom, -o-transform;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}
.c-hamburger.active span {
  background: none;
}
.c-hamburger.active span::before {
  top: 0;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-hamburger.active span::after {
  bottom: 0;
  left: 0;
  right: 0;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-hamburger.active span::before, .c-hamburger.active span::after {
  -moz-transition-delay: 0s, 0.3s;
  -o-transition-delay: 0s, 0.3s;
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
}

.post-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
  z-index: 0;
}

.post-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  .post-iframe {
    padding-top: 0;
  }
}
.is-mobile .search-box__main {
  top: 75px;
  -moz-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  -webkit-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1200px) {
  .site-header .logo {
    top: 45px;
    left: 50px;
    width: 250px;
    height: 83px;
  }
}
@media (max-width: 1080px) {
  .site-header {
    position: fixed;
    height: 75px;
  }
  .site-header__top {
    top: 22px;
    right: 90px;
  }
  .site-header .logo {
    top: 12px;
    left: 20px;
    width: 152px;
    height: 50px;
  }
  .site-header .language {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 5px;
  }
  .site-header .language li {
    margin: 0 5px;
  }
  .site-header .language a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 20px;
  }
  .site-header .top-link li {
    margin: 0 5px;
  }
  .site-header .icon {
    width: 32px;
    height: 32px;
  }
  .site-header nav:after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 75px;
    width: 100%;
    display: block;
    background-color: #fff;
  }

  .header--sticky {
    padding-top: 75px;
  }

  .c-hamburger {
    display: block;
  }

  .menu-panel {
    display: none;
  }

  .is-toggle {
    display: block;
  }

  .menu-panel.is-toggle {
    display: block;
    background-color: #fff;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    max-height: 100%;
    /* with viewportHeight */
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 75px;
  }

  .site-menu ul, .site-menu li {
    position: relative;
  }

  .main-menu {
    top: 0;
    left: 50%;
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100%;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-top: 1px dotted #ccc;
  }
  .main-menu a {
    line-height: 36px;
    height: auto;
    text-align: left;
    padding: 10px 20px;
  }
  .main-menu > li {
    border-bottom: 1px dotted #ccc;
  }
  .main-menu ul {
    border: 0;
    width: 100% !important;
    top: 0 !important;
    left: 0 !important;
  }
  .main-menu ul li {
    width: 100%;
  }
  .main-menu ul a {
    padding: 10px 20px;
  }
  .main-menu ul .downarrow:before {
    color: #fff;
  }
  .main-menu .sub-menu {
    position: relative;
    width: 100% !important;
    left: 0 !important;
  }

  .downarrow {
    display: inline-block;
  }

  .downarrow,
  .sub-menu .downarrow {
    position: absolute;
    right: 0;
    padding-right: 15px;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .landing-header .main-menu a {
    color: #000;
  }
  .landing-header .main-menu ul a {
    color: #fff;
  }
  .landing-header .icon-search {
    background-image: url(../images/icon-search-white.svg);
  }
  .landing-header .icon-cart {
    background-image: url(../images/icon-cart-white.svg);
  }
  .landing-header.sticky {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: #fff;
  }
  .landing-header.sticky .main-menu a {
    color: #000;
  }
  .landing-header.sticky .main-menu ul a {
    color: #fff;
  }
  .landing-header.sticky .language a {
    color: #fff;
    background-color: #43515c;
  }
  .landing-header.sticky .icon-search {
    background-image: url(../images/icon-search.svg);
  }
  .landing-header.sticky .icon-cart {
    background-image: url(../images/icon-cart.svg);
  }

  .landing-featrue .featrue-item .main-text {
    font-size: 24px;
  }

  .landing-video {
    height: 85vh;
  }
  .landing-video__content {
    bottom: 40px;
    padding: 0 20px;
  }
  .landing-video iframe {
    width: 275vw;
    height: 100vh;
  }
  .landing-video h2 {
    font-size: 26px;
  }
  .landing-video p {
    font-size: 26px;
    max-width: 100%;
  }
}
@media (max-width: 940px) {
  .container {
    padding: 0 20px;
  }

  .landing-featrue .featrue-list {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 430px;
    margin: -10px auto;
  }
  .landing-featrue .featrue-item {
    position: relative;
    width: calc(100% / 2 - 60px);
    margin: 10px 30px;
  }
  .landing-featrue .featrue-item a {
    display: block;
    position: relative;
    padding-top: 114%;
  }
  .landing-featrue .featrue-item .main-text {
    font-size: 24px;
  }

  .landing-product {
    display: block;
  }
  .landing-product .product-item {
    width: 100%;
  }
  .landing-product .product-item:first-child a, .landing-product .product-item:nth-child(3) a {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .landing-product .product-item:nth-child(2) a, .landing-product .product-item:nth-child(4) a {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .landing-product .product-item .title {
    font-size: 20px;
  }

  .landing-overview {
    padding: 50px 0;
  }
  .landing-overview .container {
    display: block;
    padding: 0 30px;
  }
  .landing-overview .col {
    width: 100%;
    font-size: 18px;
    margin: 0;
  }
  .landing-overview .col:first-child {
    margin-bottom: 40px;
  }
  .landing-overview .info-image {
    display: block;
  }

  .site-footer {
    width: 100%;
    position: relative;
  }
  .site-footer__top {
    font-size: 15px;
  }
  .site-footer__top .container {
    display: block;
    padding: 0 30px;
  }
  .site-footer__top .col {
    margin: 0;
    width: 100%;
  }
  .site-footer__top .customer-service {
    display: none;
  }
  .site-footer__top .service-time {
    display: none;
  }
  .site-footer__top .title {
    font-size: 25px;
  }
  .site-footer__bottom {
    font-size: 15px;
  }

  .marquee {
    font-size: 18px;
    padding: 10px 20px;
  }

  .page {
    padding: 30px 0;
    font-size: 18px;
  }

  .btn {
    height: 44px;
    line-height: 44px;
    font-size: 18px;
  }

  .form .input-item__header {
    line-height: 44px;
  }
  .form .form-control {
    font-size: 18px;
    height: 44px;
    line-height: 44px;
  }
  .form .select {
    height: 44px;
  }
  .form .select select.form-control {
    height: 44px;
    line-height: 44px;
  }

  .verification-code .image {
    height: 44px;
  }
  .verification-code .refresh {
    height: 44px;
  }
  .verification-code .refresh .icon {
    margin-top: 6px;
  }

  .page-header {
    font-size: 32px;
    margin-bottom: 35px;
  }

  .result-item a {
    padding: 15px;
  }
  .result-item__image {
    width: 80px;
  }
  .result-item__content {
    width: calc(100% - 80px);
    padding-left: 15px;
  }
  .result-item .title {
    font-size: 18px;
    line-height: 1.3em;
  }
  .result-item .desc {
    font-size: 15px;
    margin-top: 5px;
    line-height: 1.45em;
  }

  .pagination .pagination-link {
    padding: 30px 0;
  }

  .qa-item:before {
    top: 0;
    display: none;
  }
  .qa-item .question {
    padding-left: 50px;
    padding-right: 0;
  }
  .qa-item .question:before {
    top: -7px;
  }
  .qa-item .answer {
    padding-left: 50px;
  }
  .qa-item .answer:before {
    top: -7px;
  }

  .search-box .btn {
    height: 50px;
    line-height: 50px;
  }
}
@media (max-width: 640px) {
  .landing-video {
    height: 575px;
  }
  .landing-video iframe {
    width: calc(575px * 2);
    height: 575px;
  }
}
@media (max-width: 480px) {
  .site-header .logo {
    top: 22px;
    width: 100px;
    height: 34px;
  }
  .site-header__top {
    top: 22px;
    right: 70px;
  }
  .site-header .language {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 5px;
  }
  .site-header .language li {
    margin: 0 5px;
  }
  .site-header .language a {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 16px;
  }
  .site-header .top-link li {
    margin: 0 5px;
  }
  .site-header .icon {
    width: 24px;
    height: 24px;
  }

  .c-hamburger {
    top: 12px;
    right: 10px;
    width: 48px;
    height: 48px;
  }
  .c-hamburger span {
    top: 21px;
    left: 8px;
    right: 8px;
    height: 4px;
  }
  .c-hamburger span::before,
  .c-hamburger span::after {
    height: 4px;
  }
  .c-hamburger span::before {
    top: -11px;
  }
  .c-hamburger span::after {
    bottom: -11px;
  }

  .search-box__close {
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
  }
  .search-box__main {
    padding: 30px;
    top: 100px;
    -moz-transform: translateX(-50%) translateY(0);
    -ms-transform: translateX(-50%) translateY(0);
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
  }
  .search-box .title {
    font-size: 28px;
  }

  .landing-featrue {
    padding: 30px 0;
  }
  .landing-featrue .featrue-item {
    width: calc(100% / 2 - 40px);
    margin: 10px 20px;
  }
  .landing-featrue .featrue-item img {
    max-width: 50%;
  }
  .landing-featrue .featrue-item .main-text {
    font-size: 18px;
  }

  .pagination {
    font-size: 18px;
  }
  .pagination .pagination-link .page-numbers {
    display: none;
  }
  .pagination .pagination-link .page-control,
  .pagination .pagination-link .page-total {
    display: inline-block;
  }

  .form .input-item {
    display: block;
    padding: 5px 0;
  }
  .form .input-item__header {
    width: 100%;
    padding-right: 0;
    text-align: left;
  }
  .form .input-item__content {
    width: 100%;
  }
  .form .input-item .form-control {
    width: 100%;
  }
  .form .input-item .form-control.size--md {
    max-width: 100%;
  }
  .form .input-item .select {
    max-width: 100%;
  }
  .form .input-item .required {
    position: absolute;
    left: -.5em;
  }
  .form .verification-code {
    max-width: 100%;
  }

  .news-item a {
    display: block;
    padding: 20px 0;
  }
  .news-item a:before {
    display: none;
  }
  .news-item .date {
    width: 100%;
    padding-right: 0;
    font-size: 15px;
  }
  .news-item .title {
    width: 100%;
    padding-right: 0;
    font-size: 18px;
    line-height: 1.3em;
  }

  .article-content {
    max-width: 100%;
  }
  .article-footer {
    padding: 30px 0;
  }
  .article .title {
    font-size: 24px;
  }
  .article .date {
    font-size: 15px;
  }

  .contact .desc {
    margin-bottom: 20px;
    padding-bottom: 30px;
  }
}
@media (max-width: 375px) {
  .site-header .logo {
    width: 90px;
    height: 30px;
  }
  .site-header__top {
    top: 22px;
    right: 70px;
  }

  .site-footer__top {
    font-size: 14px;
  }
  .site-footer__bottom {
    font-size: 12px;
  }
}
