@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;}

/*!
 * 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(-50px, 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(50px, 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, 50px, 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;
}

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 17px 31px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23989898'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23989898'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: relative;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: -43px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  border: 0;
  margin: 0 5px;
  border: 1px solid #043958;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #043958;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #989898;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
 -webkit-transform: rotate(360deg);
 transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  width: 30px;
  height: 60px;
  margin-top: -30px;
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev {
  background-image: url(../images/swiper-prev.svg);
  left: 6%;
}

.swiper-button-next {
  background-image: url(../images/swiper-next.svg);
  right: 6%;
}

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  border-radius: 0;
  padding: 0;
  border: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.btn:hover, .btn:active {
  filter: brightness(1.1);
}
.btn:before {
  pointer-events: none;
}

.icon {
  width: 24px;
  height: 24px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  background-position: center center;
}
.icon-facebook {
  background-image: url(../images/icon-facebook.svg);
}
.icon-instagram {
  background-image: url(../images/icon-instagram.svg);
}
.icon-line {
  background-image: url(../images/icon-line.svg);
}
.icon-phone {
  background-image: url(../images/icon-phone.svg);
}
.icon-time {
  background-image: url(../images/icon-time.svg);
}
.icon-pin {
  background-image: url(../images/icon-pin.svg);
}
.icon-fax {
  background-image: url(../images/icon-fax.svg);
}
.icon-recruit {
  background-image: url(../images/icon-recruit.svg);
}

/* Mobile first layout SmartMenus Core CSS (it's not recommended editing these rules)
   You need this once per page no matter how many menu trees or different themes you use.
-------------------------------------------------------------------------------------------*/
.sm {
  box-sizing: border-box;
  position: relative;
  z-index: 5;
  -webkit-tap-highlight-color: transparent;
}

.sm, .sm ul, .sm li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  direction: ltr;
}

.sm-rtl, .sm-rtl ul, .sm-rtl li {
  direction: rtl;
  text-align: right;
}

.sm > li > h1, .sm > li > h2, .sm > li > h3, .sm > li > h4, .sm > li > h5, .sm > li > h6 {
  margin: 0;
  padding: 0;
}

.sm ul {
  display: none;
}

.sm li, .sm a {
  position: relative;
}

.sm a {
  display: block;
}

.sm a.disabled {
  cursor: default;
}

.sm::after {
  content: "";
  display: block;
  height: 0;
  font: 0px/0 serif;
  clear: both;
  overflow: hidden;
}

.sm *, .sm *::before, .sm *::after {
  box-sizing: inherit;
}

.sm-blue {
  background: transparent;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}
.sm-blue a:hover,
.sm-blue a:focus,
.sm-blue a:active {
  color: #008AD8;
  text-decoration: none;
}
.sm-blue a:hover:before,
.sm-blue a:focus:before,
.sm-blue a:active:before {
  opacity: 1;
}
.sm-blue a.current {
  color: #008AD8;
}
.sm-blue a.disabled {
  color: #a1d1e8;
}
.sm-blue > li > a {
  padding: 0 20px;
  color: #002D4B;
  font-weight: 300;
  line-height: 30px;
  text-decoration: none;
  letter-spacing: .2em;
  -moz-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
.sm-blue > li > a .sub-arrow {
  display: block;
}
.sm-blue .sub-arrow {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  right: 17px;
  width: 16px;
  height: 16px;
  overflow: hidden;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/menu-arrow.svg);
  background-repeat: no-repeat;
}
.sm-blue ul {
  background: #008AD8;
  border-radius: 0;
  font-size: 17px;
}
.sm-blue ul .has-submenu {
  position: relative;
  padding-right: 36px !important;
}
.sm-blue ul .highlighted {
  color: #cbb8a2;
}
.sm-blue a.highlighted {
  color: #fff;
  text-decoration: none;
}
.sm-blue a.highlighted .sub-arrow {
  background-image: url(../images/menu-arrow-white.svg);
}
.sm-blue a.disabled {
  color: #b3b3b3;
}

@media (min-width: 1024px) {
  .sm-blue {
 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-pack: end;
 -ms-flex-pack: end;
 -webkit-justify-content: flex-end;
 -moz-justify-content: flex-end;
 justify-content: flex-end;
 margin: 0;
  }
  .sm-blue ul {
 position: absolute;
 padding: 0;
 background: #008AD8;
 min-width: 100% !important;
 max-width: 140px !important;
 width: 140px !important;
 border-radius: 0;
  }
  .sm-blue > li > a {
 padding: 20px;
 z-index: 10;
  }
  .sm-blue > li > a:hover, .sm-blue > li > a:focus, .sm-blue > li > a:active {
 color: #008AD8;
  }
  .sm-blue > li > a.active {
 color: #008AD8;
  }
  .sm-blue > li > a[aria-expanded='true'] {
 color: #fff;
  }
  .sm-blue > li > a[aria-expanded='true'] .sub-arrow {
 background-image: url(../images/menu-arrow-white.svg);
  }
  .sm-blue > li > a .sub-arrow {
 display: block;
  }
  .sm-blue > li > .has-submenu {
 padding-right: 36px !important;
  }
  .sm-blue > li > ul {
 top: -11px !important;
 left: 50% !important;
 transform: translateX(-50%);
 padding-top: 70px;
 padding-bottom: 10px;
 z-index: 1;
 -moz-transition: none;
 -o-transition: none;
 -webkit-transition: none;
 transition: none;
  }
  .sm-blue ul ul {
 background: #008AD8;
 border-top: 0;
 position: static;
 margin: 0 !important;
  }
  .sm-blue ul a {
 padding: 10px 5px;
 color: #fff;
 border-top: 1px solid #fff;
 margin: 0 20px;
  }
  .sm-blue ul a:hover, .sm-blue ul a:focus, .sm-blue ul a:active {
 color: rgba(255, 255, 255, 0.5);
  }
  .sm-blue > li {
 position: relative;
  }
}
@media (max-width: 1023px) {
  .sm-blue {
 margin: 0 auto;
  }
  .sm-blue .sub-arrow {
 right: -20px;
 margin-top: -6px;
  }
  .sm-blue > li > a {
 padding: 8px 0;
 font-size: 20px;
 line-height: 40px;
 font-weight: 300;
 display: -webkit-inline-box;
 display: -webkit-inline-flex;
 display: -moz-inline-flex;
 display: -ms-inline-flexbox;
 display: inline-flex;
 -webkit-flex-wrap: nowrap;
 -moz-flex-wrap: nowrap;
 -ms-flex-wrap: none;
 flex-wrap: nowrap;
 -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;
  }
  .sm-blue > li > a.has-submenu.highlighted {
 color: #fff;
  }
  .sm-blue > li > a.highlighted {
 color: #fff;
  }
  .sm-blue > li > a.highlighted .sub-arrow {
 background-image: url(../images/menu-arrow-white.svg);
  }
  .sm-blue ul a {
 padding: 10px;
 color: #fff;
 border-top: 1px solid #fff;
 margin: 0 15px;
  }
  .sm-blue ul a:hover, .sm-blue ul a:focus, .sm-blue ul a:active {
 color: #fff;
  }
  .sm-blue ul {
 margin-top: 0;
 background: #008AD8;
 padding-top: 56px;
 margin-top: -56px;
 border-bottom: 1px solid #fff;
  }
}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #000;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  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: default;
}

.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;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 41px;
  height: 41px;
  line-height: 41px;
  position: absolute;
  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-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;
  padding: 40px 0 40px;
  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 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: 6px;
 padding-right: 6px;
  }
}
.mfp-preloader {
  background-image: url(../images/ajax-loader-b.png);
  width: 32px;
  height: 32px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  margin: 0 auto;
}

html {
  min-width: 100%;
}

body {
  font: 1em/1.6 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', Arial, Helvetica, sans-serif, 'Microsoft YaHei';
  min-width: 320px;
  overflow-x: hidden;
  color: #002D4B;
  -webkit-text-size-adjust: 100%;
  image-rendering: -webkit-optimize-contrast;
}

* {
  -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, opacity, background-color 0.5s ease;
  -o-transition: color, opacity, background-color 0.5s ease;
  -webkit-transition: color, opacity, background-color 0.5s ease;
  transition: color, opacity, background-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;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
  margin: 0 auto;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

p {
  margin: 0;
  word-break: break-all;
}

strong {
  font-weight: 700;
}

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;
  border-radius: 0;
  font-size: 16px;
  font-family: Arial, 'Noto Sans TC', '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;
}

.scroll--hidden {
  overflow: hidden;
}

#container {
  overflow: hidden;
  width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 20px;
  position: relative;
}

.text-block {
  display: inline-block;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.is-toggle {
  display: block;
}

.in-view {
  opacity: 0;
}

.site-content {
  position: relative;
}

.plus-header {
  padding-top: 90px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 5;
  background-color: #fff;
  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.16);
  border-top: 3px solid #008AD8;
}
.site-header .container {
  height: 87px;
  max-width: 1280px;
}
.site-header .logo {
  width: 226px;
  height: 47px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  background-image: url(../images/logo.svg);
  position: absolute;
  display: block;
  top: 21px;
  left: 37px;
  z-index: 6;
}

.site-menu {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  padding: 0 15px;
}
.site-menu .menu-close {
  display: none;
}
.site-menu .menu-toggle {
  display: none;
}

.menu-toggle {
  display: block;
  position: absolute;
  top: 25px;
  right: 15px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 11;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/menu-toggle.svg);
}
.menu-toggle.is-hide {
  display: none !important;
}

.menu-close {
  display: block;
  position: fixed;
  top: 25px;
  right: 15px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  cursor: pointer;
  z-index: 20;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/menu-close.svg);
}

.site-footer {
  position: relative;
}
.site-footer__top {
  position: relative;
  padding: 30px 0;
}
.site-footer__bottom {
  background-color: #008AD8;
  color: #fff;
  font-size: 16px;
  letter-spacing: .025em;
  line-height: 43px;
  text-align: center;
}
.site-footer .footer-contact {
  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;
}
.site-footer a {
  color: #cbb8a2;
}
.site-footer a:hover, .site-footer a:active {
  filter: brightness(1.1);
}
.site-footer .footer-contact__header {
  width: 330px;
}
.site-footer .footer-contact__content {
  width: calc(100% - 330px);
  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;
}
.site-footer .footer-contact .main-text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 29px;
}
.site-footer .footer-contact .l-line {
  background-color: #002D4B;
  width: 20px;
  height: 3px;
  display: block;
  margin-top: 4px;
  margin-bottom: 10px;
}
.site-footer .footer-contact .sub-text {
  font-size: 36px;
  line-height: 42px;
  font-weight: 500;
  font-family: 'Ubuntu', sans-serif;
}
.site-footer .contact-info {
  width: 100%;
  letter-spacing: .05em;
  max-width: 410px;
}
.site-footer .contact-info + .contact-info {
  margin-left: 40px;
}
.site-footer .contact-info li {
  padding-left: 25px;
  position: relative;
  line-height: 20px;
}
.site-footer .contact-info li + li {
  margin-top: 8px;
}
.site-footer .contact-info .icon {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.site-footer .social {
  display: none;
}
.site-footer .copyright span {
  display: inline-block;
}
.site-footer a {
  color: #002D4B;
}
.site-footer a:hover, .site-footer a:active {
  color: #008AD8;
}

.side-sticky {
  position: fixed;
  bottom: -100px;
  right: 20px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 3;
}
.side-sticky.is-view {
  bottom: 18px;
}
.side-sticky.change-bottom {
  position: absolute;
}
.side-sticky a {
  display: block;
  cursor: pointer;
}
.side-sticky a:hover, .side-sticky a:active {
  filter: brightness(1.1);
}
.side-sticky .to-top {
  display: block;
}
.side-sticky .icon-top {
  width: 40px;
  height: 40px;
  margin: 0 auto;
  background-image: url(../images/totop.png);
  border-radius: 50%;
  overflow: hidden;
  background-color: #002d4b;
}

.post-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.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;
  }
}
button.mfp-close,
a.mfp-close,
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close,
.popup-modal-dismiss {
  width: 30px;
  height: 30px;
  padding: 0;
  display: block;
  vertical-align: middle;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 1;
  overflow: hidden;
  cursor: pointer;
  z-index: 10;
}
button.mfp-close:before,
a.mfp-close:before,
.mfp-image-holder .mfp-close:before,
.mfp-iframe-holder .mfp-close:before,
.popup-modal-dismiss:before {
  content: "";
  background: url(../images/modal-close.png) no-repeat center center;
  width: 100%;
  height: 100%;
  background-size: contain;
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
button.mfp-close:hover:before, button.mfp-close:active:before,
a.mfp-close:hover:before,
a.mfp-close:active:before,
.mfp-image-holder .mfp-close:hover:before,
.mfp-image-holder .mfp-close:active:before,
.mfp-iframe-holder .mfp-close:hover:before,
.mfp-iframe-holder .mfp-close:active:before,
.popup-modal-dismiss:hover:before,
.popup-modal-dismiss:active:before {
  opacity: .8;
}

.bg-dismiss {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: default;
  pointer-events: none;
}
.bg-dismiss:before {
  display: none;
}

.white-popup-block {
  border-radius: 10px;
  background-color: #fff;
  padding: 15px;
  width: calc(100% - 15px * 2);
  max-width: 645px;
  margin: 20px auto;
  position: relative;
  color: #002D4B;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: .06em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.white-popup-block ::-webkit-scrollbar {
  width: 8px;
}
.white-popup-block ::-webkit-scrollbar-track {
  background: #eee;
}
.white-popup-block ::-webkit-scrollbar-thumb {
  background: #a0a0a0;
  border-radius: 8px;
}
.white-popup-block ::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* 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;
}

.award-modal {
  text-align: center;
}
.award-modal .image {
  position: relative;
  text-align: center;
  min-height: 150px;
  margin: 0 auto 15px;
  z-index: 0;
}
.award-modal .award-swiper {
  width: 100%;
}
.award-modal .swiper-counter {
  font-weight: 500;
}
.award-modal .main-text {
  margin-bottom: 8px;
}
.award-modal .swiper-button-prev,
.award-modal .swiper-button-next {
  width: 36px;
  height: 36px;
  top: calc(50% - 36px / 2);
  margin-top: 0;
  box-shadow: none;
}
.award-modal .swiper-button-prev:hover, .award-modal .swiper-button-prev:active,
.award-modal .swiper-button-next:hover,
.award-modal .swiper-button-next:active {
  opacity: .8;
}
.award-modal .swiper-button-prev {
  background-image: url(../images/award-swiper-prev.svg);
  left: -52px;
}
.award-modal .swiper-button-next {
  background-image: url(../images/award-swiper-next.svg);
  right: -52px;
}

.mfp-container {
  position: fixed;
  overflow: auto;
}

.patents-modal {
  text-align: center;
}
.patents-modal .image {
  position: relative;
  text-align: center;
  min-height: 150px;
  margin: 0 auto 15px;
  z-index: 0;
}
.patents-modal .patents-swiper {
  width: 100%;
}
.patents-modal .swiper-counter {
  font-weight: 500;
}
.patents-modal .main-text {
  margin-bottom: 8px;
}
.patents-modal .swiper-button-prev,
.patents-modal .swiper-button-next {
  width: 36px;
  height: 36px;
  top: calc(50% - 36px / 2);
  margin-top: 0;
  box-shadow: none;
}
.patents-modal .swiper-button-prev:hover, .patents-modal .swiper-button-prev:active,
.patents-modal .swiper-button-next:hover,
.patents-modal .swiper-button-next:active {
  opacity: .8;
}
.patents-modal .swiper-button-prev {
  background-image: url(../images/award-swiper-prev.svg);
  left: -52px;
}
.patents-modal .swiper-button-next {
  background-image: url(../images/award-swiper-next.svg);
  right: -52px;
}

.page {
  border-bottom: 1px solid #002D4B;
}
.page-header {
  background-repeat: no-repeat;
  background-position: center 80px;
  background-size: auto 294px;
/*   background-image: url(../images/page-header-bg.jpg); */
  background-color: #efebe8;
  background-attachment: fixed;
  padding: 92px 0 0;
  height: 294px;
}
.page-header .container {
  padding: 0;
  max-width: 978px;
  width: calc(100% - 20px * 2);
}
.page-header .main-text {
  font-size: 39px;
  line-height: 56px;
  font-weight: 500;
  letter-spacing: .1em;
}
.page-header .l-line {
  width: 26px;
  height: 4px;
  display: block;
  margin-top: 11px;
  margin-bottom: 7px;
  background-color: #002D4B;
}
.page-header .sub-text {
  font-size: 29px;
  line-height: 32px;
  font-weight: 500;
  font-family: 'Ubuntu', sans-serif;
}
.page-content {
  position: relative;
  min-height: calc(100vh - 90px - 294px - 207px);
  padding-top: 40px;
}
.page-content .container {
  max-width: 1184px;
}
.page-content-bg:before, .page-content-bg:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background-size: 460px;
  background-repeat: no-repeat;
}
.page-content-bg:before {
  background-position: left top;
  background-image: url(../images/page-bg-top.png);
}
.page-content-bg:after {
  background-position: right bottom;
  background-image: url(../images/page-bg-bottom.png);
}

.breadcrumb-container {
  background-color: #F9F8F6;
  padding: 0px 20px;
  margin: 0 auto 40px;
  border-radius: 3px;
}

.l-menu-container {
  text-align: center;
  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;
  margin: 0 auto 60px;
}

.tag-container{
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  padding: 0 22px;
  margin: 0 auto 60px;
}

.tag-container .l-menu{
  border: 0;
  border-radius: 0;
  flex-wrap: wrap;
  margin-left: -5.5px;
  margin-right: -5.5px;
}

.tag-container .l-menu li{
  min-width: initial;
  margin: 0 7px;
  margin-bottom: 24px;
}

.tag-container .l-menu a{
  border: 0;
  border-radius: 0;
  border: 1px solid #008AD8;
  border-radius: 21px;
}

.tag-container .l-menu a:hover{
  color: #fff;
  background-color: #008AD8;
}

@media screen and (max-width:750px){
  
  .tag-container {
 display: block;
 padding: 0;
 margin: 0 auto 36px;
}
}

.l-menu {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #008AD8;
  border-radius: 21px;
  line-height: 35px;
  text-align: center;
}
.l-menu li {
  min-width: 115px;
}
.l-menu a {
  color: #008AD8;
  display: block;
  border-radius: 21px;
  padding: 0 25px;
}
.l-menu .active {
  color: #fff;
  background-color: #008AD8;
}

.l-dropdown {
  width: 100%;
  position: relative;
}
.l-dropdown .dropdown-toggle {
  border: 1px solid #008AD8;
  border-radius: 21px;
  line-height: 35px;
  text-align: center;
  color: #008AD8;
  display: block;
  background-color: #fff;
  width: 100%;
  position: relative;
  /* letter-spacing: 0.6px; */
}
.l-dropdown .dropdown-toggle:after {
  content: "";
  position: absolute;
  top: calc(50% - 9px / 2);
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 6px 0 6px;
  border-color: #0089d8 transparent transparent transparent;
}
.l-dropdown .dropdown-menu {
  border: 1px solid #008AD8;
  border-radius: 21px;
  width: 100%;
  background-color: #fff;
}
.l-dropdown .dropdown-menu a {
  line-height: 35px;
  text-align: center;
  color: #008AD8;
  display: block;
}
.l-dropdown .dropdown-menu a:first-child{
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.l-dropdown .dropdown-menu a:last-child{
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}

.l-dropdown .dropdown-menu .active {
  background-color: #008AD8;
  color: #fff;
}



.pagination-container {
  margin: 50px 0;
}
.pagination-container .pagination {
  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;
  -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;
}
.pagination-container .icon {
  width: 16px;
  height: 16px;
}
.pagination-container .icon-prev {
  background-image: url(../images/page-prev.svg);
}
.pagination-container .icon-next {
  background-image: url(../images/page-next.svg);
}

.index-section {
  position: relative;
  z-index: 0;
  width: 100%;
}
.index-section .bg {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.index-section .section-header .main-text {
  font-size: 30px;
  line-height: 44px;
  font-weight: 500;
  letter-spacing: .03em;
}
.index-section .section-header .l-line {
  width: 20px;
  height: 3px;
  display: block;
  margin-top: 9px;
  margin-bottom: 4px;
  background-color: #002D4B;
}
.index-section .section-header .sub-text {
  font-size: 22px;
  line-height: 25px;
  font-weight: 500;
  font-family: 'Ubuntu', sans-serif;
}
.index-section .section-content {
  position: relative;
  margin: 0 auto;
}
.index-section a {
  display: block;
  text-decoration: none;
  -moz-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
  color: #002D4B;
}
.index-section .btn {
  width: 143px;
  height: 40px;
  background-color: #008AD8;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 0 15px;
  line-height: 32px;
  text-align: left;
  margin: 0;
  display: block;
  font-weight: 500;
  font-family: 'Ubuntu', sans-serif;
  position: relative;
}
.index-section .btn:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 12px;
  height: 9px;
  width: 119px;
  background-image: url(../images/more-arrow-white.svg);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.index-section .btn:hover:before, .index-section .btn:active:before {
  left: 15px;
}

.index-kv {
  position: relative;
}
.index-kv .container {
  max-width: 100%;
  padding: 0;
}
.index-kv img {
  width: 100%;
}
.index-kv .swiper-pagination {
  position: absolute;
  bottom: 12px;
  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;
}
.index-kv .swiper-control {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 122px;
  height: 44px;
  background-color: #fff;
  z-index: 1;
  text-align: center;
  line-height: 44px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .2em;
  font-family: 'Ubuntu', sans-serif;
}
.index-kv .swiper-control span {
  color: #ccc;
}
.index-kv .swiper-button-prev,
.index-kv .swiper-button-next {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background-size: auto;
}
.index-kv .swiper-button-prev:hover, .index-kv .swiper-button-prev:active,
.index-kv .swiper-button-next:hover,
.index-kv .swiper-button-next:active {
  opacity: .8;
}
.index-kv .swiper-button-prev {
  left: 10px;
}
.index-kv .swiper-button-next {
  right: 10px;
}

.index-about {
  padding-top: 55px;
  padding-bottom: 62px;
  background-color: #F9F8F6;
}
.index-about .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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  max-width: 1186px;
  margin: 0 auto;
}
.index-about .section-header {
  margin-bottom: 22px;
}
.index-about .content {
  width: calc(100% - 633px);
  padding-top: 30px;
  padding-right: 56px;
}
.index-about .image {
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  width: 633px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.index-about p {
  text-align: justify;
  letter-spacing: .06em;
  line-height: 28px;
}
.index-about .action {
  padding-top: 30px;
}

.index-section-group {
  position: relative;
  z-index: 1;
}
.index-section-group > .bg {
  background-image: url(../images/index-award-bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 375px;
  background-color: #002d4b;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
}

.index-award {
  padding-top: 90px;
  padding-bottom: 35px;
  z-index: 2;
}
.index-award .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;
  max-width: 1186px;
  margin: 0 auto;
}
.index-award .section-header {
  color: #fff;
  width: 438px;
  padding-top: 30px;
}
.index-award .section-header .l-line {
  background-color: #fff;
}
.index-award .section-content {
  width: calc(100% - 438px);
}
.index-award .list {
  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;
  margin: 0 -24px;
}
.index-award .item {
  position: relative;
  background: #fff;
  text-align: center;
  width: calc(100% / 3 - 24px * 2);
  margin: 0 24px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 18px;
  padding: 15px 10px;
  text-align: center;
  min-height: 266px;
}
.index-award .item .main-text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: .03em;
  text-align: justify;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 52px;
}
.index-award .image {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.index-award .image:before {
  content: "";
  position: relative;
  padding-top: 80%;
  display: block;
}
.index-award .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  object-fit: cover;
}
.index-award .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 10px;
}
.index-award .action {
  padding-top: 30px;
}

.index-rd {
  margin-top: -108px;
  z-index: 1;
  min-height: 570px;
  padding-top: 125px;
  padding-bottom: 75px;
}
.index-rd .bg {
  background-image: url(../images/index-rd-bg.png);
  background-size: auto 571px;
  height: 571px;
}
.index-rd .group {
  max-width: 1186px;
  margin: 0 auto;
}
.index-rd .section-header {
  margin-bottom: 25px;
}
.index-rd .list {
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.index-rd .item {
  position: relative;
  width: calc(100% / 3);
  margin: 0;
  padding: 0 20px;
  text-align: center;
  max-width: 326px;
}
.index-rd .item .main-text {
  font-size: 22px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: .1em;
}
.index-rd .item:before {
  content: "";
  position: absolute;
  top: 40px;
  left: -1px;
  height: 58px;
  width: 2px;
  background-color: #002D4B;
}
.index-rd .item:first-child:before {
  display: none;
}
.index-rd a:hover .main-text, .index-rd a:active .main-text {
  opacity: .9;
}
.index-rd .image {
  position: relative;
  max-width: 110px;
  margin: 0 auto 10px;
}
.index-rd .action {
  padding-top: 40px;
}
.index-rd .btn {
  margin: 0 auto;
}

.index-news {
  padding-top: 100px;
  padding-bottom: 110px;
  margin-top: -75px;
}
.index-news .bg {
  background-image: url(../images/index-news-bg.jpg);
  background-size: cover;
}
.index-news .section-header {
  margin-bottom: 65px;
  text-align: center;
}
.index-news .section-header .l-line {
  margin: 0 auto;
  margin-top: 9px;
  margin-bottom: 4px;
}
.index-news .section-content {
  position: relative;
  max-width: 1112px;
  margin: 0 auto;
  padding: 0 56px;
}
.index-news .swiper-slide {
  width: 50%;
}
.index-news .image {
  position: relative;
  z-index: 0;
}
.index-news .image:before {
  content: "";
  position: relative;
  padding-top: 67%;
  display: block;
}
.index-news .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.index-news .image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 116px;
  display: block;
  z-index: 1;
  background: black;
  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.index-news .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}
.index-news .action {
  position: absolute;
  right: 20px;
  bottom: -20px;
}
.index-news .btn {
  background-color: #fff;
  color: #008AD8;
}
.index-news .btn:before {
  background-image: url(../images/more-arrow.svg);
}
.index-news .item {
  position: relative;
  margin: 0 14px 26px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.index-news .item .main-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  letter-spacing: .05em;
  color: #fff;
  text-align: justify;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 60px;
}
.index-news a:hover .btn:before, .index-news a:active .btn:before {
  left: 15px;
}
.index-news .swiper-button-prev,
.index-news .swiper-button-next {
  width: 35px;
  height: 35px;
  margin-top: -18px;
}
.index-news .swiper-button-prev:hover, .index-news .swiper-button-prev:active,
.index-news .swiper-button-next:hover,
.index-news .swiper-button-next:active {
  opacity: .8;
}
.index-news .swiper-button-prev {
  background-image: url(../images/news-swiper-prev.svg);
  left: 0;
}
.index-news .swiper-button-next {
  background-image: url(../images/news-swiper-next.svg);
  right: 0;
}

.index-brands {
  padding-top: 40px;
  padding-bottom: 72px;
}
.index-brands .bg {
  background-image: url(../images/index-brands-bg.png);
  background-size: cover;
}
.index-brands .section-header {
  margin-bottom: 45px;
  color: #fff;
  text-align: center;
}
.index-brands .section-header .l-line {
  background-color: #fff;
  margin: 0 auto;
  margin-top: 9px;
  margin-bottom: 4px;
}
.index-brands .section-content {
  max-width: 1035px;
}
.index-brands a:hover .image img, .index-brands a:active .image img {
  opacity: .8;
}
.index-brands .list {
  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;
  margin: 0 -33px;
}
.index-brands .item {
  position: relative;
  background: #fff;
  text-align: center;
  width: calc(100% / 4 - 33px * 2);
  margin: 0 33px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 18px;
  padding: 20px 30px;
  text-align: center;
  min-height: 209px;
}
.index-brands .item .main-text {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 21px;
  position: relative;
}
.index-brands .item .main-text:before {
  content: "";
  position: absolute;
  bottom: -9px;
  width: 18px;
  height: 2px;
  background-color: #002D4B;
  left: calc(50% - 18px / 2);
}
.index-brands .item .sub-text {
  font-size: 14px;
  line-height: 20px;
}
.index-brands .image {
  position: relative;
  margin-bottom: 6px;
}
.index-brands .image:before {
  content: "";
  position: relative;
  padding-top: 50%;
  display: block;
}
.index-brands .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  object-fit: contain;
}
.index-brands .comingSoon {
  padding-top: 47px;
}
.index-brands .comingSoon .main-text {
  font-size: 32px;
  line-height: 37px;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: 'Ubuntu', sans-serif;
}
.index-brands .comingSoon .main-text:before {
  display: none;
}

@media (max-width: 1280px) {
  .index-section-group > .bg {
 background-image: url(../images/index-award-bg_m.jpg);
 background-size: auto 100%;
 height: 375px;
  }

  .index-rd {
 margin-top: -120px;
 padding-top: 135px;
  }
  .index-rd .bg {
 background-image: url(../images/index-rd-bg_m.png);
 background-size: auto 100%;
 height: 571px;
  }

  .index-news .bg {
 background-image: url(../images/index-news-bg_m.jpg);
  }

  .index-brands .bg {
 background-image: url(../images/index-brands-bg_m.png);
  }
}
@media (max-width: 1226px) and (min-width: 751px) {
  .index-about .content {
 width: calc(100% -  53.4%);
 padding-right: 4.7%;
  }
  .index-about .image {
 width: 53.4%;
  }

  .index-award .section-header {
 width: 30%;
  }
  .index-award .section-content {
 width: calc(100% - 30%);
  }
  .index-award .list {
 margin: 0 -15px;
  }
  .index-award .item {
 width: calc(100% / 3 - 15px * 2);
 margin: 0 15px;
  }

  .index-brands .list {
 margin: 0 -15px;
  }
  .index-brands .item {
 width: calc(100% / 4 - 15px * 2);
 margin: 0 15px;
  }
}
@media (max-width: 750px) {
  .index-section .container {
 max-width: 375px;
 padding: 0 24px;
  }

  .index-kv .container {
 max-width: 100%;
 padding: 0;
  }

  .index-about {
 padding-top: 42px;
 padding-bottom: 0;
  }
  .index-about .group {
 display: block;
  }
  .index-about .content {
 width: 100%;
 padding: 0;
 margin-bottom: 30px;
  }
  .index-about .image {
 border-radius: 0;
 width: 100%;
  }

  .index-section-group > .bg {
 background-image: url(../images/index-award-bg_s.jpg);
 background-size: 750px auto;
 height: 1100px;
  }

  .index-award {
 padding-top: 48px;
 padding-bottom: 55px;
  }
  .index-award .group {
 display: block;
  }
  .index-award .section-header {
 width: 100%;
 padding-top: 0;
 margin-bottom: 60px;
  }
  .index-award .section-content {
 width: 100%;
  }
  .index-award .list {
 display: block;
 margin: 0 auto;
 max-width: 218px;
  }
  .index-award .item {
 width: 100%;
 margin: 0;
  }
  .index-award .item + .item {
 margin-top: 32px;
  }

  .index-rd {
 margin-top: -170px;
 padding-top: 165px;
 padding-bottom: 120px;
  }
  .index-rd .bg {
 background-image: url(../images/index-rd-bg_s.png);
 background-size: 750px auto;
 height: 1267px;
  }
  .index-rd .section-header {
 margin-bottom: 25px;
  }
  .index-rd .list {
 display: block;
  }
  .index-rd .item {
 width: 100%;
 margin: 0;
 padding: 40px 0;
  }
  .index-rd .item:before {
 top: -1px;
 left: calc(50% - 57px / 2);
 height: 2px;
 width: 57px;
  }
  .index-rd .item:first-child:before {
 display: none;
  }
  .index-rd .action {
 padding-top: 30px;
  }

  .index-news {
 padding-top: 75px;
 padding-bottom: 70px;
 margin-top: -30px;
  }
  .index-news .bg {
 background-image: url(../images/index-news-bg_s.jpg);
  }
  .index-news .section-header {
 margin-bottom: 30px;
  }
  .index-news .section-content {
 padding: 0;
  }
  .index-news .swiper-slide {
 width: 100%;
  }
  .index-news .action {
 right: 16px;
  }
  .index-news .item {
 position: relative;
 margin: 0 0 26px;
  }
  .index-news .item .main-text {
 font-size: 18px;
  }
  .index-news .swiper-button-prev,
  .index-news .swiper-button-next {
 margin-top: -38px;
  }
  .index-news .swiper-button-prev {
 left: -8px;
  }
  .index-news .swiper-button-next {
 right: -8px;
  }

  .index-brands {
 padding-top: 45px;
 padding-bottom: 75px;
  }
  .index-brands .bg {
 background-image: url(../images/index-brands-bg_s.png);
  }
  .index-brands .list {
 display: block;
 margin: 0 auto;
 max-width: 209px;
  }
  .index-brands .item {
 width: 100%;
 margin: 0;
  }
  .index-brands .item + .item {
 margin-top: 32px;
  }
}
.about-info {
  position: relative;
  color: #043958;
  padding: 0 20px 20px;
}
.about-info p {
  text-align: justify;
  letter-spacing: .06em;
  line-height: 28px;
  margin-bottom: 30px;
}
.about-info .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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.about-info .col-right {
  width: 571px;
}
.about-info .image {
  border-radius: 8px;
  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.about-info .image img {
  width: 100%;
}
.about-info .col-left {
  width: calc(100% - 571px);
  padding-right: 57px;
}
.about-info .heading {
  margin-bottom: 30px;
}
.about-info .heading .top-text {
  margin-bottom: 30px;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.about-info .heading .top-text:before {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #12352f;
  position: absolute;
  bottom: -18px;
  left: 0;
}
.about-info .heading .top-text span {
  font-family: 'Ubuntu', sans-serif;
  margin-left: 7px;
}
.about-info .heading .main-text {
  font-size: 30px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: .03em;
  text-align: justify;
}
.about-info .sub-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 0;
  padding-left: 28px;
  background-image: url(../images/double-plus.png);
  background-size: 20px;
  background-repeat: no-repeat;
}

.about-mission .circle-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;
  -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: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  max-width: 341px;
  margin-bottom: 22px;
  position: relative;
}
.about-mission .circle-list:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 1.5px dashed #002D4B;
}
.about-mission .circle-list .item {
  width: 84px;
  height: 84px;
  border: 1.5px solid #002D4B;
  border-radius: 50%;
  text-align: center;
  line-height: 84px;
  z-index: 1;
  position: relative;
  background-color: #fff;
}

.about-award .award-top {
  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-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 70px;
  margin-top: -35px;
}
.about-award .award-top .year {
  line-height: 35px;
}
.about-award .award-top .custom-select {
  max-width: 133px;
  margin-left: 10px;
  border: 1px solid #008AD8;
  border-radius: 21px;
  line-height: 35px;
  color: #008AD8;
  padding: 0 32px 0 16px;
  background-color: #fff;
  background: url("../images/select-arrow.svg") no-repeat right 0.75rem center/12px 9px;
}

.award-list {
  /* max-width: 913px;
  margin: 0 auto 105px;
  position: relative; */

  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;
  margin: -18px;
}
/* .award-list:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #002D4B;
  pointer-events: none;
} */
.award-list .item {
  /* position: relative;
  width: 100%;
  margin: 0; */

  width: calc(100% / 4 - 18px * 2);
  margin: 18px;
  border: 1px solid #002D4B;
  border-radius: 13px;
  text-align: center;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: .06em;
}
/* .award-list .item:before {
  content: "";
  position: absolute;
  top: calc(50% - 22px / 2);
  left: calc(50% - 22px / 2);
  width: 22px;
  height: 22px;
  background-color: #008AD8;
  border-radius: 50%;
  z-index: 1;
} */
/* .award-list .item + .item {
  margin-top: -25px;
} */
/* .award-list .item:nth-child(2n) .inner {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.award-list .item:nth-child(2n) .content {
  padding-left: 109px;
  padding-right: 0;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  background-position: left center;
}
.award-list .item:nth-child(2n) .main-text:before {
  right: calc(100% - 1px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 9px 6px 0;
  border-color: transparent #0089d8 transparent transparent;
}
.award-list .inner {
  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;
  -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;
} */

.award-list .image {
  /* position: relative;
  width: 384px;
  background-color: #fff; */

  position: relative;
  margin-bottom: 6px;
}
/* .award-list .image:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 27px;
  background: url(../images/award-shadow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
} */
.award-list .image:before {
  /* content: "";
  position: relative;
  padding-top: 68.75%;
  display: block; */

  content: "";
  position: relative;
  /* padding-top: 141.6666%; */
  padding-top: 129.6666%;
  display: block;
}
.award-list .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  object-fit: contain;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px; */
}
.award-list .content {
  /* width: calc(100% - 384px);
  padding-right: 109px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  background-image: url(../images/award-dashed.svg);
  background-repeat: no-repeat;
  background-position: right center; */
  color: #002D4B;
  padding: 10px 0;
}
/* .award-list .main-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  position: relative;
  padding: 8px 20px;
  border-radius: 8px;
  letter-spacing: .06em;
  background-color: #008AD8;
  color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.award-list .main-text:before {
  content: "";
  position: absolute;
  top: calc(50% - 12px / 2);
  right: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 9px;
  border-color: transparent transparent transparent #0089d8; 
}*/

@media (max-width: 1184px) {
  .about-info .col-left {
 width: calc(100% - 42.82%);
 padding-right: 5.4%;
  }
  .about-info .col-right {
 width: 42.82%;
  }
}
@media (max-width: 960px) {
  /* .award-list .item:nth-child(2n) .content {
 padding-left: 11.84%;
 padding-right: 0;
 background-position: -10px center;
  } */
  /* .award-list .image {
 width: 41.74%;
  } */
  /* .award-list .content {
 width: calc(100% - 41.74%);
 padding-right: 11.84%;
 background-position: calc(100% + 10px) center;
  } */
}
@media (max-width: 750px) {
  .about-info {
 padding: 0 0 60px;
  }
  .about-info p {
 text-align: justify;
 letter-spacing: .06em;
 line-height: 28px;
 margin-bottom: 30px;
  }
  .about-info .group {
 display: block;
  }
  .about-info .col-right {
 width: 100%;
  }
  .about-info .col-left {
 width: 100%;
 padding-right: 0;
 margin-bottom: 34px;
  }
  .about-info .heading {
 margin-bottom: 15px;
  }

  .about-mission .heading {
 margin-bottom: 38px;
  }

  .about-award .award-top {
 margin-bottom: 45px;
 margin-top: -20px;
  }
  .about-award .award-top .year {
 width: 2.5em;
  }
  .about-award .award-top .custom-select {
 width: calc(100% - 3em - 10px);
 max-width: 269px;
  }

  .award-list {
 /* max-width: 328px;
 margin: 0 auto 48px; */

 display: block;
 max-width: 246px;
 margin: 0 auto;
  }
  /* .award-list:before {
 left: 12px;
  } */
  .award-list .item {
 /* padding-left: 38px;
 background-image: url(../images/award-dashed.svg);
 background-repeat: no-repeat;
 background-position: 0 110px; */

 width: 100%;
 margin: 0;
 display: block;
  }
  /* .award-list .item:before {
 content: "";
 position: absolute;
 top: calc(110px - 22px / 2);
 left: 0;
 width: 22px;
 height: 22px;
 background-color: #008AD8;
 border-radius: 50%;
 z-index: 1;
  } */
  .award-list .item + .item {
 margin-top: 28px;
  }
  /* .award-list .item:nth-child(2n) .content {
 padding-left: 0;
 padding-right: 0;
  }
  .award-list .item:nth-child(2n) .main-text:before {
 top: -8px;
 right: calc(50% - 12px / 2);
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 0 6px 9px 6px;
 border-color: transparent transparent #0089d8 transparent;
  }
  .award-list .inner {
 display: block;
  }
  .award-list .image {
 width: 100%;
  }
  .award-list .content {
 width: 100%;
 padding-right: 0;
 display: block;
 background: none;
 margin-top: 25px;
  }
  .award-list .main-text {
 text-align: center;
 display: block;
  }
  .award-list .main-text:before {
 top: -8px;
 right: calc(50% - 12px / 2);
 width: 0;
 height: 0;
 border-style: solid;
 border-width: 0 6px 9px 6px;
 border-color: transparent transparent #0089d8 transparent;
  } */
}
.technoligy-list-container {
  padding: 30px 85px 75px;
}

.technoligy-list {
  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;
  margin: 0 -32px;
}
.technoligy-list .item {
  width: calc(100% / 3 - 32px * 2);
  margin: 0 32px;
  border-radius: 25px;
  text-align: center;
  padding: 20px;
  padding-top: 56px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: #fff;
  position: relative;
  min-height: 324px;
  overflow: hidden;
  margin-bottom: 28px;
}
.technoligy-list .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.technoligy-list .bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  object-fit: cover;
}
.technoligy-list .bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #002D4B;
  opacity: .75;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.technoligy-list .image {
  position: relative;
  max-width: 110px;
  min-height: 110px;
  margin: 0 auto 20px;
}
.technoligy-list .content {
  padding: 10px 0;
}
.technoligy-list a {
  color: #fff;
}
.technoligy-list a:hover .bg:after, .technoligy-list a:active .bg:after {
  opacity: .9;
}
.technoligy-list .main-text {
  font-size: 22px;
  line-height: 30px;
  letter-spacing: .1em;
  min-height: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -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;
  margin-bottom: 25px;
}
.technoligy-list .action {
  font-family: 'Ubuntu', sans-serif;
}

.technoligy-info {
  position: relative;
  color: #043958;
  padding: 0 20px 50px;
}
.technoligy-info p {
  text-align: justify;
  letter-spacing: .06em;
  line-height: 28px;
  margin-bottom: 30px;
}
.technoligy-info .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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.technoligy-info .image {
  margin: 0 auto;
}
.technoligy-info .image img {
  width: 100%;
}
.technoligy-info .image-shadow {
  border-radius: 8px;
  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.technoligy-info .image-shadow img {
  width: 100%;
}
.technoligy-info .col-left {
  width: calc(100% - 571px);
  padding-right: 57px;
}
.technoligy-info .col-right {
  width: 571px;
}
.technoligy-info .heading {
  margin-bottom: 30px;
}
.technoligy-info .heading .top-text {
  margin-bottom: 30px;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.technoligy-info .heading .top-text:before {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #12352f;
  position: absolute;
  bottom: -18px;
  left: 0;
}
.technoligy-info .heading .top-text span {
  font-family: 'Ubuntu', sans-serif;
  margin-left: 7px;
}
.technoligy-info .heading .main-text {
  font-size: 30px;
  font-weight: 500;
  line-height: 48px;
  letter-spacing: .03em;
  text-align: justify;
}
.technoligy-info .sub-title {
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-left: 39px;
  background-image: url(../images/double-plus.png);
  background-size: 27px;
  background-repeat: no-repeat;
}
.technoligy-info .action {
  margin-top: 50px;
}
.technoligy-info .action .btn {
  width: 116px;
  height: 40px;
  background-color: #008AD8;
  color: #fff;
  padding: 0 15px;
  line-height: 32px;
  text-align: left;
  margin: 0;
  display: block;
  font-weight: 500;
  position: relative;
}
.technoligy-info .action .btn:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 10px;
  height: 9px;
  width: 95px;
  background-position: right top;
  background-image: url(../images/more-arrow-white.svg);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.technoligy-info .action .btn:hover:before, .technoligy-info .action .btn:active:before {
  left: 12px;
}

.technoligy-a .a-1 {
  margin-bottom: 32px;
}
.technoligy-a .a-2 {
  max-width: 381px;
}
.technoligy-a .a-3 {
  max-width: 579px;
  margin-bottom: 48px;
}
.technoligy-a .a-4 {
  max-width: 530px;
}

.technoligy-b .group {
  margin-bottom: 20px;
}
.technoligy-b .group:last-child {
  margin-bottom: 0;
}
.technoligy-b .action {
  margin-top: 20px;
}

.technoligy-c p:last-child {
  margin-bottom: 0;
}

.technoligy-patents {
  padding-bottom: 75px;
}
.technoligy-patents .heading {
  font-size: 20px;
  line-height: 29px;
  letter-spacing: .06em;
  font-weight: 700;
  margin-bottom: 35px;
  padding-left: 39px;
  background-image: url(../images/double-plus.png);
  background-size: 27px;
  background-repeat: no-repeat;
}

.patents-list {
  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;
  margin: -18px;
}
.patents-list .item {
  width: calc(100% / 4 - 18px * 2);
  margin: 18px;
  border: 1px solid #002D4B;
  border-radius: 13px;
  text-align: center;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: .06em;
}
.patents-list .image {
  position: relative;
  margin-bottom: 6px;
}
.patents-list .image:before {
  content: "";
  position: relative;
  padding-top: 141.6666%;
  display: block;
}
.patents-list .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  object-fit: contain;
}
.patents-list .content {
  padding: 10px 0;
}
.patents-list a {
  color: #002D4B;
}

.mfp-gallery .mfp-content {
  padding: 14px;
  border-radius: 10px;
  background-color: #fff;
  max-width: 434px;
  width: calc(100% - 50px * 2);
  margin-top: 20px;
  margin-bottom: 20px;
}
.mfp-gallery .mfp-figure::after {
  display: none;
}
.mfp-gallery img.mfp-img {
  padding: 0;
  margin-bottom: 14px;
}
.mfp-gallery .mfp-bottom-bar {
  margin-top: 0;
  position: relative;
  top: 0;
}
.mfp-gallery .mfp-title {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .06em;
  text-align: center;
  color: #002D4B;
  padding-right: 0;
  margin-bottom: 8px;
}
.mfp-gallery .mfp-counter {
  position: relative;
  color: #002D4B;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .06em;
  text-align: center;
}

.mfp-arrow {
  position: fixed;
}

button.mfp-arrow-left,
button.mfp-arrow-right {
  width: 36px;
  height: 36px;
  top: calc(50% - 36px / 2);
  margin-top: 0;
  box-shadow: none;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
button.mfp-arrow-left:before, button.mfp-arrow-left:after,
button.mfp-arrow-right:before,
button.mfp-arrow-right:after {
  display: none;
}
button.mfp-arrow-left:active,
button.mfp-arrow-right:active {
  margin-top: 0;
}

button.mfp-arrow-left {
  left: calc(50% - 434px / 2 - 52px);
  background-image: url(../images/award-swiper-prev.svg);
}

button.mfp-arrow-right {
  right: calc(50% - 434px / 2 - 52px);
  background-image: url(../images/award-swiper-next.svg);
}

@media (max-width: 1184px) {
  .technoligy-info .col-right {
 width: 42.82%;
  }
  .technoligy-info .col-left {
 width: calc(100% - 42.82%);
 padding-right: 5.4%;
  }
}
@media (max-width: 1024px) {
  .technoligy-list-container {
 padding: 30px 20px 75px;
  }

  .technoligy-list {
 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;
 margin: 0 -2.5%;
  }
  .technoligy-list .item {
 width: calc(100% / 3 - 2.5% * 2);
 margin: 0 2.5%;

  }

  .technoligy-list .item + .item{
 margin-top: 28px;
  }

  .patents-list {
 margin: 0 auto;
 max-width: calc(246px * 2 + 18px * 4);
  }
  .patents-list .item {
 width: calc(100% / 2 - 18px * 2);
 margin: 18px;
  }
}
@media (max-width: 750px) {
  .technoligy-list-container {
 padding: 20px 0 80px;
  }

  .technoligy-list {
 display: block;
 max-width: 282px;
 margin: 0 auto;
  }
  .technoligy-list .item {
 width: 100%;
 display: block;
 margin: 0 auto;
  }
  .technoligy-list .item + .item {
 margin-top: 36px;
  }

  .technoligy-info {
 padding: 0 0 60px;
  }
  .technoligy-info .group {
 display: block;
  }
  .technoligy-info .col-right {
 width: 100%;
  }
  .technoligy-info .col-left {
 width: 100%;
 padding-right: 0;
 margin-bottom: 34px;
  }
  .technoligy-info .heading {
 margin-bottom: 15px;
  }
  .technoligy-info .action {
 margin-top: 45px;
  }

  .technoligy-a .col-right {
 display: -webkit-box;
 display: -webkit-flex;
 display: -moz-flex;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-direction: normal;
 -webkit-box-orient: vertical;
 -webkit-flex-direction: column;
 -moz-flex-direction: column;
 -ms-flex-direction: column;
 flex-direction: column;
  }
  .technoligy-a .a-1 {
 margin-bottom: 0;
 order: 10;
  }
  .technoligy-a .a-2 {
 margin-bottom: 40px;
  }
  .technoligy-a .a-3 {
 margin-bottom: 38px;
  }
  .technoligy-a .a-4 {
 margin-bottom: 32px;
  }

  .technoligy-b .group {
 margin-bottom: 32px;
  }
  .technoligy-b .group:last-child {
 margin-bottom: 0;
  }
  .technoligy-b .action {
 margin-top: 45px;
  }

  .technoligy-c p:last-child {
 margin-bottom: 0;
  }
  .technoligy-c .action {
 margin-top: 32px;
  }

  .technoligy-patents {
 padding-bottom: 60px;
  }

  .patents-list {
 display: block;
 max-width: 246px;
 margin: 0 auto;
  }
  .patents-list .item {
 width: 100%;
 margin: 0;
 display: block;
  }
  .patents-list .item + .item {
 margin-top: 28px;
  }
}
@media (max-width: 640px) {
  .mfp-gallery .mfp-content {
 width: calc(100% - 20px * 2);
 padding: 8px;
 max-width: 295px;
  }
  .mfp-gallery img.mfp-img {
 margin-bottom: 8px;
  }
  .mfp-gallery .mfp-title {
 margin-bottom: 14px;
  }

  button.mfp-arrow-left {
 left: calc(50% - 295px / 2 - 30px);
  }

  button.mfp-arrow-right {
 right: calc(50% - 295px / 2 - 30px);
  }
}
.news-list {
  max-width: 1028px;
  margin: 0 auto 72px;
}
.news-list .item {
  width: 100%;
  margin: 0;
}
.news-list .item + .item {
  margin-top: 32px;
}
.news-list .item:nth-child(2n) .inner {
  -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;
}
.news-list .item:nth-child(2n) .content {
  padding-left: 44px;
  padding-right: 22px;
}
.news-list .item:nth-child(2n) .action {
  left: 44px;
}
.news-list .inner {
  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;
}
.news-list a {
  color: #002D4B;
}
.news-list a:hover .btn:before, .news-list a:active .btn:before {
  left: 15px;
}
.news-list .btn {
  width: 143px;
  height: 40px;
  background-color: #008AD8;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 0 15px;
  line-height: 32px;
  text-align: left;
  margin: 0;
  display: block;
  font-weight: 500;
  font-family: 'Ubuntu', sans-serif;
  position: relative;
}
.news-list .btn:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 12px;
  height: 9px;
  width: 119px;
  background-image: url(../images/more-arrow-white.svg);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.news-list .btn:hover:before, .news-list .btn:active:before {
  left: 15px;
}
.news-list .image {
  position: relative;
  width: 471px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 1;
}
.news-list .image:before {
  content: "";
  position: relative;
  padding-top: 66.878%;
  display: block;
}
.news-list .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  object-fit: cover;
}
.news-list .date {
  font-size: 14px;
  line-height: 16px;
  font-family: 'Ubuntu', sans-serif;
  margin-bottom: 9px;
}
.news-list .content {
  width: calc(100% - 471px);
  padding: 30px;
  padding-left: 36px;
  padding-bottom: 47px;
  background-color: #F9F8F6;
  margin: 16px 0;
  position: relative;
}
.news-list .action {
  position: absolute;
  left: 39px;
  bottom: -16px;
}
.news-list .main-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: justify;
  margin-bottom: 39px;
  position: relative;
}
.news-list .main-text:before {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #12352f;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.news-list .sub-text {
  font-size: 16px;
  line-height: 28px;
  max-height: 84px;
  letter-spacing: .06em;
  text-align: justify;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}


.health-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
  /* max-width: 1100px; */
  
}
.health-list .item {
  padding-right: 25.5px;
  padding-left: 25.5px;
  margin-bottom: 39px;
  flex: 0 0 auto;
  width: 33.33333333%;
}

@media screen and (max-width:992px){
  .health-list .item {

 width: 50%;
  }
}

#health .pagination-container{
  margin: 25px 0;
  margin-bottom: 50px;
}

@media screen and (max-width:750px){

  #health .pagination-container{
 margin: 0;
 margin-top: -13px;
 margin-bottom: 60px;
  }
  .health-list .item {
 padding: 0;
 width: 100%;
  }
}

.health-list .item:hover .image{
  filter: brightness(0.8);
}

.health-list .item:hover .btn{
  filter: brightness(1.1);
}

.health-list .inner {
  display: block;
  
  width: 100%;
}
.health-list a {
  color: #002D4B;
}
.health-list a:hover .btn:before, .news-list a:active .btn:before {
  left: 15px;
}
.health-list .btn {

  background-color: #008AD8;
  color: #fff;
  line-height: 1;
  padding: 8px 14px 6px 16px;
  display: block;
  position: relative;
}

.health-list .btn:hover:before, .health-list .btn:active:before {
  left: 15px;
}
.health-list .image {
  border-radius: 13px;
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  transition: all .3s;
}
.health-list .image:before {
  content: "";
  position: relative;
  padding-top: 66.878%;
  display: block;
}


.health-list .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  object-fit: cover;
}

.health-list .btm{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.health-list .date {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #008AD8;

}
.health-list .content {
  padding-top: 10px;
  position: relative;
}

.health-list .main-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 25px;
  letter-spacing: 1px;
  text-align: justify;
  margin-bottom: 10px;
  position: relative;
  min-height: 50px;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #053736;
}

.health-list .sub-text {
  font-size: 16px;
  line-height: 24px;
  min-height: 72px;
  color: #053736;
  letter-spacing: .7px;
  text-align: justify;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  min-height: 72px;
}





.article {
  position: relative;
  margin: 0 auto;
  max-width: 990px;
  color: #043958;
}
.article-header {
  margin-bottom: 50px;
}
.article-header .group {
  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-bottom: 28px;
  position: relative;
}
.article-header .group:before {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #12352f;
  position: absolute;
  bottom: -16px;
  left: 0;
}
.article-header .date {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  font-family: 'Ubuntu', sans-serif;
  margin-right: 15px;
}
.article-header .tag {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  border-radius: 13px;
  border: 1px solid #002D4B;
  line-height: 26px;
  padding: 0 10px;
}

.article-header .health-tag{
  border: 0;
  background-color: #008AD8;
  color: #fff;
}

.article-header .title {
  font-size: 30px;
  font-weight: 500;
  line-height: 50px;
  letter-spacing: .03em;
  text-align: justify;
}
.article-content {
  position: relative;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: .06em;
  margin-bottom: 38px;
}
.article-content .image {
  max-width: 735px;
  margin: 0 auto 50px;
}
.article-content .heading {
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
  margin-bottom: 32px;
  padding-left: 39px;
  background-image: url(../images/double-plus.png);
  background-size: 27px;
  background-repeat: no-repeat;
  text-align: justify;
}
.article-content p {
  text-align: justify;
  margin-bottom: 32px;
}
.article-footer {
  padding-bottom: 52px;
}
.article-footer .btn {
  width: 116px;
  height: 40px;
  background-color: #008AD8;
  color: #fff;
  padding: 0 15px;
  line-height: 32px;
  text-align: left;
  margin: 0 auto;
  display: block;
  font-weight: 500;
  position: relative;
}
.article-footer .btn:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 10px;
  height: 9px;
  width: 95px;
  background-position: right top;
  background-image: url(../images/more-arrow-white.svg);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.article-footer .btn:hover:before, .article-footer .btn:active:before {
  left: 12px;
}

@media (max-width: 750px) {
  .news-list {
 max-width: 327px;
 margin: 0 auto 60px;
  }
  .news-list .item {
 width: 100%;
 margin: 0;
 padding-bottom: 15px;
  }
  .news-list .item + .item {
 margin-top: 32px;
  }
  .news-list .item:nth-child(2n) .content {
 padding: 20px 15px 42px;
  }
  .news-list .item:nth-child(2n) .action {
 left: calc(100% - 143px - 17px);
  }
  .news-list .inner {
 display: block;
  }
  .news-list .image {
 width: 100%;
  }
  .news-list .content {
 width: calc(100% - 8px * 2);
 padding: 20px 15px 42px;
 margin: 0 8px;
  }
  .news-list .action {
 left: calc(100% - 143px - 17px);
 bottom: -15px;
  }

  .article-header {
 margin-bottom: 32px;
  }
  .article-content .image {
 margin: 0 auto 16px;
  }
  .article-footer {
 padding-bottom: 60px;
  }
}
.brands-list-container {
  padding: 30px 50px 76px;
}

.brands-list {
  margin: 0 -14px;
  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;
}
.brands-list a {
  color: #002D4B;
}
.brands-list a:hover .image img, .brands-list a:active .image img {
  opacity: .8;
}
.brands-list .item {
  position: relative;
  background: #fff;
  text-align: center;
  width: calc(100% / 4 - 14px * 2);
  margin: 0 14px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 18px;
  padding: 25px 30px;
  text-align: center;
  min-height: 324px;
}
.brands-list .item .main-text {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}
.brands-list .item .main-text:before {
  content: "";
  position: absolute;
  bottom: -17px;
  width: 18px;
  height: 2px;
  background-color: #002D4B;
  left: calc(50% - 18px / 2);
}
.brands-list .item .sub-text {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}
.brands-list .item .action {
  text-align: center;
  font-family: 'Ubuntu', sans-serif;
}
.brands-list .image {
  position: relative;
  margin-bottom: 6px;
}
.brands-list .image:before {
  content: "";
  position: relative;
  padding-top: 66.6666%;
  display: block;
}
.brands-list .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  object-fit: contain;
}
.brands-list .comingSoon {
  padding-top: 70px;
}
.brands-list .comingSoon .main-text {
  font-size: 34px;
  line-height: 39px;
  font-weight: 700;
  margin-bottom: 73px;
  font-family: 'Ubuntu', sans-serif;
}
.brands-list .comingSoon .main-text:before {
  display: none;
}
.brands-list .comingSoon .sub-text {
  margin-bottom: 32px;
}

.brands-info {
  position: relative;
  color: #043958;
}
.brands-info p {
  text-align: justify;
  letter-spacing: .06em;
  line-height: 28px;
}
.brands-info p + p {
  margin-top: 30px;
}
.brands-info .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;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}
.brands-info .image {
  border-radius: 8px;
  overflow: hidden;
}
.brands-info .image img {
  width: 100%;
}
.brands-info .brands-top {
  padding: 0 20px;
  padding-bottom: 50px;
}
.brands-info .brands-top .col-right {
  width: 507px;
  margin-top: 58px;
}
.brands-info .brands-top .col-left {
  width: calc(100% - 507px);
  padding-right: 64px;
}
.brands-info .brands-top .image {
  border-radius: 29px;
  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.brands-info .brands-top .heading {
  margin-bottom: 18px;
}
.brands-info .brands-top .heading .top-text {
  margin-bottom: 30px;
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.brands-info .brands-top .heading .top-text:before {
  content: "";
  width: 20px;
  height: 3px;
  background-color: #12352f;
  position: absolute;
  bottom: -18px;
  left: 0;
}
.brands-info .brands-top .heading .top-text span {
  font-family: 'Ubuntu', sans-serif;
  margin-left: 7px;
}
.brands-info .brands-top .heading .main-text {
  font-size: 30px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: .03em;
  text-align: justify;
}
.brands-info .brands-bottom {
  padding: 50px 20px;
  background-color: #F9F8F6;
  position: relative;
}
.brands-info .brands-bottom:before, .brands-info .brands-bottom:after {
  content: "";
  background-color: #F9F8F6;
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  pointer-events: none;
}
.brands-info .brands-bottom:before {
  left: 100%;
}
.brands-info .brands-bottom:after {
  right: 100%;
}
.brands-info .brands-bottom .col-left {
  width: 571px;
}
.brands-info .brands-bottom .col-right {
  width: calc(100% - 571px);
  padding-left: 50px;
  padding-top: 80px;
}
.brands-info .brands-bottom .heading {
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
  margin-bottom: 30px;
  padding-left: 39px;
  background-image: url(../images/double-plus.png);
  background-size: 27px;
  background-repeat: no-repeat;
}
.brands-info .brands-bottom .action {
  padding-top: 40px;
}
.brands-info .action {
  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;
}
.brands-info .action .btn {
  width: 116px;
  height: 40px;
  background-color: #008AD8;
  color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 0 15px;
  line-height: 32px;
  text-align: left;
  margin: 0 35px 0 0;
  display: block;
  font-weight: 500;
  position: relative;
}
.brands-info .action .btn:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 10px;
  height: 9px;
  width: 95px;
  background-position: right top;
  background-image: url(../images/more-arrow-white.svg);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.brands-info .action .btn:hover:before, .brands-info .action .btn:active:before {
  left: 12px;
}

@media (max-width: 1184px) {
  .brands-info .brands-top .col-right {
 width: 42.82%;
  }
  .brands-info .brands-top .col-left {
 width: calc(100% - 42.82%);
 padding-right: 5.4%;
  }
  .brands-info .brands-bottom .col-left {
 width: 48.22%;
  }
  .brands-info .brands-bottom .col-right {
 width: calc(100% - 48.22%);
 padding-left: 4.2%;
  }
}
@media (max-width: 1023px) and (min-width: 751px) {
  .brands-list {
 max-width: calc(240px * 2 + 14px * 2);
 margin: -14px auto;
  }
  .brands-list .item {
 width: calc(100% / 2 - 14px * 2);
 margin: 14px;
  }
}
@media (max-width: 750px) {
  .brands-list-container {
 padding: 30px 0 74px;
  }

  .brands-list {
 max-width: 282px;
 margin: 0 auto;
 display: block;
  }
  .brands-list .item {
 width: 100%;
 display: block;
 margin: 0;
  }
  .brands-list .item + .item {
 margin-top: 36px;
  }

  .brands-info .brands-top {
 padding: 0 0 46px;
  }
  .brands-info .brands-top .group {
 display: block;
  }
  .brands-info .brands-top .col-right {
 width: 100%;
 margin-top: 33px;
  }
  .brands-info .brands-top .col-left {
 width: 100%;
 padding-right: 0;
  }
  .brands-info .brands-bottom {
 position: relative;
 padding: 30px 0 107px;
  }
  .brands-info .brands-bottom .col-left {
 width: 100%;
 order: 1;
  }
  .brands-info .brands-bottom .col-right {
 width: 100%;
 padding-left: 0;
 padding-top: 0;
 margin-bottom: 33px;
  }
  .brands-info .brands-bottom .action {
 padding-top: 0;
  }
  .brands-info .action {
 position: absolute;
 bottom: 40px;
 left: 0;
 width: 100%;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 -webkit-justify-content: center;
 -moz-justify-content: center;
 justify-content: center;
  }
  .brands-info .action .btn {
 margin: 0 10px;
  }
}
.contact {
  max-width: 720px;
  margin: 0 auto;
  letter-spacing: .06em;
  line-height: 28px;
  padding-top: 10px;
  padding-bottom: 72px;
}
.contact .top-text {
  margin-bottom: 42px;
  text-align: justify;
}
.contact .contact-form__footer {
  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: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  padding-left: 20px;
}
.contact .required {
  color: #008AD8;
}
.contact .section-group {
  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 -18px;
}
.contact .section-group .form-section {
  width: calc(100% / 2 - 18px * 2);
  margin: 0 18px 23px;
}
.contact .form-section {
  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-bottom: 23px;
}
.contact .form-label {
  font-size: 20px;
  line-height: 35px;
  font-weight: 500;
  width: 136px;
}
.contact .form-content {
  width: calc(100% - 136px);
}
.contact .form-control {
  border-radius: 5px;
  border: 1px solid #002D4B;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 25px;
  height: 35px;
}
.contact .form-control::placeholder {
  color: #E1E1E1;
}
.contact .inquiry {
  display: block;
}
.contact .inquiry .form-label {
  width: 100%;
  margin-bottom: 20px;
}
.contact .inquiry .form-content {
  width: 100%;
  padding-left: 20px;
}
.contact .inquiry .form-control {
  height: 175px;
}
.contact .captcha {
  width: calc(100% - 116px);
  max-width: 314px;
}
.contact .action {
  width: 116px;
}
.contact .btn-submit {
  width: 116px;
  height: 40px;
  background-color: #008AD8;
  color: #fff;
  padding: 0 15px;
  line-height: 32px;
  text-align: left;
  margin: 0;
  display: block;
  font-weight: 500;
  position: relative;
}
.contact .btn-submit:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 10px;
  height: 9px;
  width: 95px;
  background-position: right top;
  background-image: url(../images/more-arrow-white.svg);
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.contact .btn-submit:hover:before, .contact .btn-submit:active:before {
  left: 12px;
}

.contact-section {
  max-width: 720px;
  margin: 0 auto;
}

.contact-section iframe{
  width: 100%;
  /* min-height: 510px; */
  min-height: 610px;
}



.contact-section + .contact-section {
  margin-top: -50px;
}
.contact-section .section-header {
  font-size: 20px;
  line-height: 29px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-left: 39px;
  background-image: url(../images/double-plus.png);
  background-size: 27px;
  background-repeat: no-repeat;
}

.store-list .item {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  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;
  background-color: #F9F8F6;
  color: #043958;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: .06em;
}
.store-list .item + .item {
  margin-top: 20px;
}
.store-list a {
  color: #008AD7;
  border-bottom: 1px solid #008AD7;
  display: inline-block;
  line-height: 24px;
}
.store-list a:hover, .store-list a:active {
  opacity: .8;
}
.store-list .image {
  position: relative;
  width: 320px;
  overflow: hidden;
}
.store-list .image:before {
  content: "";
  position: relative;
  padding-top: 56.5%;
  display: block;
}
.store-list .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  object-fit: cover;
}
.store-list .content {
  width: calc(100% - 320px);
  padding: 18px 40px;
  position: relative;
}
.store-list .main-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}
.store-list .sub-text {
  margin-top: 8px;
}
.store-list .action {
  margin-top: 8px;
}
.store-list .icon-pin {
  background-image: url(../images/icon-pin_blue.svg);
  width: 11px;
  height: 15px;
  margin-right: 3px;
  margin-top: -2px;
}

@media (max-width: 750px) {
  .contact {
 padding-top: 0;
 padding-bottom: 60px;
  }
  .contact .top-text {
 margin-bottom: 36px;
  }
  .contact .contact-form__footer {
 display: block;
 padding-left: 0;
  }
  .contact .section-group {
 display: block;
 margin: 0;
  }
  .contact .section-group .form-section {
 width: 100%;
 margin: 0 0 16px;
  }
  .contact .form-section {
 display: block;
 margin: 0 0 16px;
  }
  .contact .form-label {
 width: 100%;
 line-height: 30px;
 margin-bottom: 8px;
  }
  .contact .form-content {
 width: 100%;
  }
  .contact .inquiry {
 display: block;
 margin-bottom: 24px;
  }
  .contact .inquiry .form-label {
 width: 100%;
 margin-bottom: 8px;
  }
  .contact .inquiry .form-content {
 padding-left: 0;
  }
  .contact .captcha {
 width: 100%;
 margin-bottom: 40px;
  }
  .contact .action {
 width: 100%;
  }

  .contact-section {
 max-width: 323px;
  }

  .store-list {
 max-width: 100%;
  }
  .store-list .item {
 display: block;
  }
  .store-list .image {
 width: 100%;
  }
  .store-list .content {
 width: 100%;
 padding: 20px 26px;
  }
  .store-list .sub-text {
 margin-top: 13px;
  }
  .store-list .sub-text span {
 display: inline-block;
  }
  .store-list .sub-text .hd {
 display: block;
  }
  .store-list .action {
 margin-top: 18px;
  }
}
@media (max-width: 1280px) {
  .site-footer .footer-contact__header {
 width: 28%;
  }
  .site-footer .footer-contact__content {
 width: calc(100% - 28%);
  }
}
@media (max-width: 1200px) and (min-width: 1023px) {
  .site-header .logo {
 left: 24px;
  }

  .sm-blue {
 font-size: 18px;
  }
  .sm-blue > li > a {
 padding: 20px 10px;
  }
  .sm-blue > li > .has-submenu {
 padding-right: 26px !important;
  }
  .sm-blue .sub-arrow {
 right: 7px;
  }
  .sm-blue ul {
 width: 130px !important;
  }
  .sm-blue ul a {
 margin: 0 10px;
  }
}
@media (max-width: 1023px) {
  .site-header .logo {
 left: 24px;
  }
  .site-header .site-menu {
 position: static;
  }
  .site-header .menu-panel {
 display: none;
  }
  .site-header .menu-toggle {
 display: block;
  }

  .menu-view .site-header .site-main-menu {
 position: relative;
 top: 0;
 width: 100%;
 padding-top: 0;
 height: auto;
  }
  .menu-view .site-header .logo {
 display: none;
  }
  .menu-view .menu-panel {
 position: fixed;
 top: 0;
 right: 0;
 padding: 0;
 width: 100%;
 height: 100%;
 background-color: #fff;
 -moz-transition: ease 0.5s;
 -o-transition: ease 0.5s;
 -webkit-transition: ease 0.5s;
 transition: ease 0.5s;
 overflow: auto;
 display: block;
 padding-top: 90px;
 display: -webkit-box;
 display: -webkit-flex;
 display: -moz-flex;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-direction: normal;
 -webkit-box-orient: vertical;
 -webkit-flex-direction: column;
 -moz-flex-direction: column;
 -ms-flex-direction: column;
 flex-direction: column;
 -webkit-flex-wrap: nowrap;
 -moz-flex-wrap: nowrap;
 -ms-flex-wrap: none;
 flex-wrap: nowrap;
  }
  .menu-view .site-main-menu {
 width: 100%;
 left: 0;
  }
  .menu-view .menu-close {
 display: block;
  }
}
@media (max-width: 750px) {
  .lg-view {
 display: none;
  }

  .sm-view {
 display: block;
  }

  .site-header .logo {
 width: 148px;
 height: 38px;
 top: 30px;
 left: 24px;
  }

  .side-sticky {
 right: 10px;
  }
  .side-sticky.is-view {
 bottom: 10px;
  }

  .site-footer__top {
 padding: 40px 0;
  }
  .site-footer__top .container {
 padding: 0 24px;
  }
  .site-footer__bottom {
 font-size: 15px;
 letter-spacing: .05em;
 line-height: 28px;
 padding: 20px 0;
  }
  .site-footer__bottom .container {
 padding: 0 24px;
  }
  .site-footer .footer-contact {
 display: block;
  }
  .site-footer .footer-contact__header {
 width: 100%;
 margin-bottom: 25px;
  }
  .site-footer .footer-contact__content {
 width: 100%;
 padding-right: 0;
 display: block;
  }
  .site-footer .contact-info {
 letter-spacing: .05em;
 font-size: 14px;
 max-width: 100%;
  }
  .site-footer .contact-info + .contact-info {
 margin-left: 0;
 margin-top: 8px;
  }

  .page-header {
 background-position: right 80px;
 background-size: auto 262px;
/*  background-image: url(../images/page-header-bg_s.jpg); */ 
 padding: 124px 0 0;
 height: 262px;
  }
  .page-header .container {
 width: calc(100% - 24px * 2);
  }
  .page-content {
 min-height: calc(100vh - 90px - 262px);
 padding-top: 28px;
  }
  .page-content-bg:before, .page-content-bg:after {
 background-size: 300px;
  }

  .breadcrumb-container {
 margin: 0 auto 20px;
  }

  .l-menu-container {
 display: block;
 margin: 0 auto 36px;
  }

  .pagination-container {
 margin: 60px 0;
  }

  button.mfp-close,
  a.mfp-close,
  .mfp-image-holder .mfp-close,
  .mfp-iframe-holder .mfp-close,
  .popup-modal-dismiss {
 top: 12px;
 right: 12px;
 width: 30px;
 height: 30px;
  }

  .white-popup-block {
 max-width: 295px;
 width: calc(100% - 40px * 2);
 padding: 8px;
  }

  .award-modal .main-text,
  .patents-modal .main-text {
 margin-bottom: 14px;
  }
  .award-modal .swiper-counter,
  .patents-modal .swiper-counter {
 margin-bottom: 8px;
  }
  .award-modal .swiper-button-prev,
  .patents-modal .swiper-button-prev {
 left: -36px;
  }
  .award-modal .swiper-button-next,
  .patents-modal .swiper-button-next {
 right: -36px;
  }
}
