@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

------------------------------------------------------------- */
.icon {
  width: 24px;
  height: 24px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.icon-menu {
  background-image: url(../images/menu-trigger.svg);
}
.icon-close {
  background-image: url(../images/icon-close.svg);
}
.icon-facebook {
  background-image: url(../images/icon-facebook.svg);
}
.icon-line {
  background-image: url(../images/icon-line.svg);
}
.icon-twitter {
  background-image: url(../images/icon-twitter.svg);
}
.icon-phone {
  background-image: url(../images/icon-phone.svg);
}
.icon-fax {
  background-image: url(../images/icon-fax.svg);
}
.icon-time {
  background-image: url(../images/icon-time.svg);
}
.icon-mail {
  background-image: url(../images/icon-mail.svg);
}
.icon-pin {
  background-image: url(../images/icon-pin.svg);
}

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  border-radius: 0;
  padding: 0;
  border: 0;
  text-align: center;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.btn.disabled {
  color: #565570;
  background: #353451;
  pointer-events: none;
}

.btn-primary {
  font-size: 22px;
  line-height: 36px;
  height: 60px;
  font-weight: 500;
  padding: 12px 16px;
  width: 100%;
  border-radius: 0;
  color: #fff;
  background-color: #505C7D;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.btn-primary:active {
  color: #fff;
  background-color: #505C7D;
  filter: brightness(1.1);
}
@media (hover: hover) {
  .btn-primary:hover {
    color: #fff;
    background-color: #505C7D;
    filter: brightness(1.1);
  }
}

.btn-secondary {
  font-size: 22px;
  line-height: 36px;
  height: 60px;
  font-weight: 500;
  padding: 12px 16px;
  width: 100%;
  border-radius: 0;
  color: #1A1A1A;
  background-color: #F2CB05;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.btn-secondary:active {
  color: #1A1A1A;
  background-color: #F2CB05;
  filter: brightness(1.1);
}
@media (hover: hover) {
  .btn-secondary:hover {
    color: #1A1A1A;
    background-color: #F2CB05;
    filter: brightness(1.1);
  }
}

/*!
 * 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, -50px, 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, 100px, 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;
}

/* 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: 9999;
  -webkit-tap-highlight-color: transparent;
}

.sm, .sm ul, .sm li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  line-height: normal;
  direction: ltr;
  text-align: left;
}

.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-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active {
  padding: 20px;
  /* make room for the toggle button (sub indicator) */
  padding-right: 48px;
  color: #000;
  font-size: 18px;
  font-weight: normal;
  line-height: 18px;
  text-decoration: none;
  transition: none;
}

.sm-simple a.current {
  color: #fff;
}

.sm-simple a.disabled {
  color: #cccccc;
}

.sm-simple a .sub-arrow {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  left: auto;
  right: 15px;
  width: 16px;
  height: 16px;
  overflow: hidden;
  font: bold 14px/34px monospace !important;
  text-align: center;
  text-shadow: none;
  display: none;
}

.sm-simple a .sub-arrow::before {
  content: '';
  background-position: center;
  background-size: 100%;
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../images/menu-arrow.png);
}

.sm-simple a.highlighted .sub-arrow::before {
  transform: rotate(90deg);
}

@media (min-width: 1024px) {
  /* Switch to desktop layout
  -----------------------------------------------
     These transform the menu tree from
     collapsible to desktop (navbar + dropdowns)
  -----------------------------------------------*/
  /* start... (it's not recommended editing these rules) */
  .sm-simple ul {
    position: absolute;
    width: 165px;
  }

  .sm-simple li {
    float: left;
  }

  .sm-simple.sm-rtl li {
    float: right;
  }

  .sm-simple ul li, .sm-simple.sm-rtl ul li, .sm-simple.sm-vertical li {
    float: none;
  }

  .sm-simple a {
    white-space: nowrap;
  }

  .sm-simple ul a, .sm-simple.sm-vertical a {
    white-space: normal;
  }

  .sm-simple .sm-nowrap > li > a, .sm-simple .sm-nowrap > li > :not(ul) a {
    white-space: nowrap;
  }

  /* ...end */
  .sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active, .sm-simple a.highlighted {
    padding: 0;
    color: #000;
    line-height: 18px;
    border-radius: 0;
  }

  .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active, .sm-simple a.highlighted {
    color: #0caf76;
  }

  .sm-simple a.current {
    color: #fff;
  }

  .sm-simple a.disabled {
    color: #cccccc;
  }

  .sm-simple a .sub-arrow {
    top: 50%;
    margin-top: -8px;
    right: 20px;
    width: 8px;
    height: 16px;
    font: 14px/16px monospace !important;
    background: transparent;
    display: none;
  }

  .sm-simple a.highlighted .sub-arrow::before {
    content: '+';
  }

  .sm-simple > li {
    border-top: 0;
  }

  .sm-simple > li:first-child {
    border-left: 0;
  }

  .sm-simple ul {
    background: #fff;
  }

  .sm-simple ul a {
    border: 0 !important;
  }

  .sm-simple ul a.has-submenu {
    padding-right: 20px;
  }

  .sm-simple ul a .sub-arrow {
    left: 8px;
    right: auto;
  }

  .sm-simple ul > li {
    border-left: 0;
  }

  .sm-simple ul > li:first-child {
    border-top: 0;
  }

  .sm-simple .scroll-up,
  .sm-simple .scroll-down {
    position: absolute;
    display: none;
    visibility: hidden;
    overflow: hidden;
    background: #fff;
    height: 20px;
  }

  .sm-simple .scroll-up-arrow,
  .sm-simple .scroll-down-arrow {
    position: absolute;
    top: -2px;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-width: 8px;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #555555 transparent;
  }

  .sm-simple .scroll-down-arrow {
    top: 6px;
    border-style: solid dashed dashed dashed;
    border-color: #555555 transparent transparent transparent;
  }

  .sm-simple.sm-rtl a.has-submenu {
    padding-right: 20px;
    padding-left: 32px;
  }

  .sm-simple.sm-rtl a .sub-arrow {
    left: 20px;
    right: auto;
  }

  .sm-simple.sm-rtl.sm-vertical a.has-submenu {
    padding: 11px 20px;
  }

  .sm-simple.sm-rtl.sm-vertical a .sub-arrow {
    left: auto;
    right: 8px;
  }

  .sm-simple.sm-rtl > li:first-child {
    border-left: 1px solid #eeeeee;
  }

  .sm-simple.sm-rtl > li:last-child {
    border-left: 0;
  }

  .sm-simple.sm-rtl ul a.has-submenu {
    padding: 11px 20px;
  }

  .sm-simple.sm-rtl ul a .sub-arrow {
    left: auto;
    right: 8px;
  }

  .sm-simple.sm-vertical a .sub-arrow {
    left: 8px;
    right: auto;
  }

  .sm-simple.sm-vertical li {
    border-left: 0;
    border-top: 1px solid #eeeeee;
  }

  .sm-simple.sm-vertical > li:first-child {
    border-top: 0;
  }
}
/*# sourceMappingURL=sm-simple.css.map */
@media (max-width: 1023px) {
  .sm-simple a, .sm-simple a:hover, .sm-simple a:focus, .sm-simple a:active {
    padding: 20px 0;
    font-size: 26px;
    line-height: 30px;
    letter-spacing: .06em;
    text-align: center;
    font-weight: 500;
    border-radius: 0;
    height: 70px;
    color: #505C7D;
    background-color: #E9E9E9;
  }
  .sm-simple a .sub-arrow, .sm-simple a:hover .sub-arrow, .sm-simple a:focus .sub-arrow, .sm-simple a:active .sub-arrow {
    margin-top: -12px;
    right: 24px;
    width: 24px;
    height: 24px;
    background-image: url(../images/menu-sub-arrow.svg);
    display: block;
  }

  .sm-simple {
    font-size: 26px;
    line-height: 30px;
    width: calc(100% - 10px * 2);
    max-width: 100%;
    margin: 0 auto;
  }
  .sm-simple > li + li {
    margin-top: 10px;
  }
  .sm-simple > li + .has-mega-menu {
    margin-top: 10px;
  }
  .sm-simple > li:last-child {
    border-bottom: 0;
  }
  .sm-simple .has-mega-menu {
    max-width: 100%;
    margin: 0 auto;
  }
  .sm-simple .has-mega-menu .has-submenu.highlighted .sub-arrow {
    background-image: url(../images/menu-sub-arrow-close.svg);
  }
  .sm-simple .has-mega-menu .mega-menu {
    padding: 0;
    background-color: #fff;
    border-radius: 0;
    box-shadow: 0;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    margin-top: 0 !important;
  }
  .sm-simple .has-mega-menu .mega-menu > li {
    position: relative;
  }
  .sm-simple .has-mega-menu .mega-menu a {
    font-size: 22px;
    line-height: 36px;
    padding: 12px 0;
    letter-spacing: .06em;
    height: inherit;
  }
  .sm-simple .has-mega-menu .mega-menu .active {
    background-color: #F2ED04;
  }
  .sm-simple .has-mega-menu ul ul {
    display: block;
    margin-left: 0;
  }
  .sm-simple .has-mega-menu ul ul li {
    padding: 0;
  }
  .sm-simple .has-mega-menu ul ul a:active {
    color: #505C7D;
    background-color: #F2ED04;
  }
}
@media (max-width: 1023px) and (hover: hover) {
  .sm-simple .has-mega-menu ul ul a:hover {
    color: #505C7D;
    background-color: #F2ED04;
  }
}

/**
 * Swiper 9.2.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 17, 2023
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #666;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  /*ADD_HOST*/
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-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: flex;
  justify-content: 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%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification,
swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.swiper-pagination {
  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;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: none;
  opacity: .5;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  width: 80px;
  height: 80px;
  margin-top: -40px;
  border-radius: 0;
  background-size: 80px auto;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 100;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}
.swiper-button-prev:before, .swiper-button-prev:after,
.swiper-button-next:before,
.swiper-button-next:after {
  display: none;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 1;
  filter: grayscale(1);
}
.swiper-button-prev:active,
.swiper-button-next:active {
  opacity: .8;
}
@media (hover: hover) {
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: .8;
  }
}

.swiper-button-prev {
  background-image: url(../images/swiper-prev.svg);
  left: 0;
}

.swiper-button-next {
  background-image: url(../images/swiper-next.svg);
  right: 0;
}

html,
body {
  scroll-padding-top: 90px;
  /* set to the height of your header */
}

html {
  min-width: 100%;
}

body {
  font: 1em/1.5 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', Arial, Helvetica, sans-serif;
  min-width: 320px;
  overflow-x: hidden;
  color: #505C7D;
  image-rendering: -webkit-optimize-contrast;
}

a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  cursor: pointer;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  text-decoration: none;
  color: #505C7D;
}

#container {
  position: relative;
  width: 100%;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1366px;
  padding: 0 16px;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  -moz-user-select: none;
  -webkit-user-select: none;
}

.scroll--hidden {
  overflow: hidden;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.opacity {
  opacity: 0;
}

.in-view {
  opacity: 0;
}

p:last-child {
  margin-bottom: 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;
}
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;
}

.post-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}
.post-iframe iframe,
.post-iframe video {
  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;
  }
}
.site-content {
  min-height: calc(100vh - 80px);
  position: relative;
}

.page {
  position: relative;
}
.page-header {
  position: relative;
  padding: 70px 0;
}
.page-header .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-header .bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header .title {
  font-size: 40px;
  line-height: 58px;
  font-weight: 500;
  letter-spacing: .08em;
  text-align: center;
  color: #fff;
  margin: 0;
}
.page-header .title .text-en {
  font-family: "Lexend", serif;
  font-weight: 600;
  display: block;
}

.pagination .icon {
  width: 30px;
  height: 30px;
  background-size: 6px 21px;
  background-color: #b3b3b3;
}

.pagination .icon-prev {
  background-image: url(../images/icon-prev.svg);
}

.pagination .icon-next {
  background-image: url(../images/icon-next.svg);
}

.pagination .page-link:hover .icon {
  background-color: #6156a3;
}

tr.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;
  width: 100%;
  margin-top: 100px;
}

tr.pagination table tr {
  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;
}

tr.pagination td {
  padding: 0;
  margin: 0;
}

tr.pagination a,
tr.pagination span {
  position: relative;
  display: block;
  padding: 0;
  margin: 0 5px;
  color: #b3b3b3;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  min-width: 30px;
  min-height: 30px;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
}
tr.pagination a:hover,
tr.pagination span:hover {
  color: #505C7D;
  font-weight: 700;
  background-color: transparent;
}
tr.pagination a:hover:before,
tr.pagination span:hover:before {
  opacity: 1;
}
tr.pagination a:before,
tr.pagination span:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #505C7D;
  opacity: 0;
}

tr.pagination span {
  font-weight: 700;
  z-index: 1;
  color: #6156a3;
}
tr.pagination span:before {
  opacity: 1;
}

tr.pagination a {
  text-decoration: none;
}

tr.pagination a:hover {
  font-weight: 700;
  z-index: 1;
  color: #6156a3;
}

tr.pagination a:hover .icon {
  background-color: #6156a3;
}

@media (max-width: 1023px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .site-content {
    min-height: calc(100vh - 65px);
  }

  .page-header .title .text-en {
    font-family: "Roboto", serif;
    font-size: 24px;
    line-height: 29px;
    font-weight: 700;
    letter-spacing: .03em;
    margin-top: 3px;
  }
}
@media (max-width: 767px) {
  tr.pagination {
    margin-top: 66px;
  }
}
.headroom {
  -moz-transition: -moz-transform 0.25s ease-in-out;
  -o-transition: -o-transform 0.25s ease-in-out;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  will-change: transform;
}
.headroom.headroom--pinned {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.headroom.headroom--unpinned {
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  height: 83px;
  border-bottom: 6px solid #F2ED04;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #fff;
}
.site-header .container {
  max-width: 100%;
  padding: 0 16px;
}

.header-sticky {
  padding-top: 80px;
}

.logo {
  position: absolute;
  top: 16px;
  left: 36px;
  width: 170px;
  height: 45px;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/logo.svg);
  font-size: 0;
  z-index: 10;
}

.site-menu {
  position: absolute;
  top: 0;
  right: 100px;
}

.menu-trigger {
  position: fixed;
  top: 12px;
  right: 8px;
  cursor: pointer;
  display: none;
  z-index: 2;
}
.menu-trigger .icon {
  width: 40px;
  height: 40px;
}
.menu-trigger.active .icon {
  background-image: url(../images/menu-close.svg);
}

.menu-close {
  position: fixed;
  top: 12px;
  right: 8px;
  cursor: pointer;
  display: none;
  z-index: 10;
  opacity: 0;
  -moz-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  transition-delay: 1s;
}
.menu-close .icon {
  width: 40px;
  height: 40px;
}

@media (max-width: 1366px) {
  .logo {
    left: 30px;
  }

  .site-menu {
    right: 10px;
  }
}
@media (min-width: 1024px) {
  #main-menu {
    border: 0;
    box-shadow: none;
    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 -8px;
  }
  #main-menu > .has-mega-menu .scroll-up,
  #main-menu > .has-mega-menu .scroll-down {
    margin-left: 0 !important;
  }
  #main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #main-menu > li {
    position: relative;
    list-style: none;
    padding: 0 8px;
    float: none;
  }
  #main-menu > li:before {
    content: "";
    position: absolute;
    top: calc(50% - 18px / 2);
    left: 0;
    width: 1px;
    height: 20px;
    background-color: #505C7D;
  }
  #main-menu > li:first-child:before {
    display: none;
  }
  #main-menu .menu-item {
    color: #505C7D;
    font-size: 18px;
    line-height: 80px;
    font-weight: 300;
    margin: 0;
    padding: 0 8px;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
  }
  #main-menu .menu-item:active {
    color: #505C7D;
    background-color: #F2ED04;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  #main-menu .menu-item:hover {
    color: #505C7D;
    background-color: #F2ED04;
  }
}
@media (min-width: 1024px) {
  #main-menu .menu-item.active {
    color: #505C7D;
    background-color: #F2ED04;
  }
  #main-menu .has-submenu.highlighted {
    color: #505C7D;
    background-color: #F2ED04;
    transition: none;
  }
  #main-menu .mega-menu {
    top: calc(100% + 3px) !important;
    left: calc(50% - 200px / 2) !important;
    margin: 0 !important;
    width: 200px !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 0;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  #main-menu .mega-menu:after {
    display: none;
  }
  #main-menu .mega-menu ul {
    position: static;
    display: block;
    margin: 0;
    border: 0;
    padding: 0;
    width: auto;
    background: transparent;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  #main-menu .mega-menu li {
    overflow: visible;
    margin: 0;
  }
  #main-menu .mega-menu li + li {
    margin-top: 0;
  }
  #main-menu .mega-menu a {
    border: 0;
    padding: 8px 0;
    text-decoration: none;
    color: #505C7D;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
    display: block;
    text-align: center;
  }
  #main-menu .mega-menu a:active, #main-menu .mega-menu a.active {
    color: #505C7D;
    background-color: #F2ED04;
  }
}
@media (min-width: 1024px) and (hover: hover) {
  #main-menu .mega-menu a:hover {
    color: #505C7D;
    background-color: #F2ED04;
  }
}

@media (max-width: 1023px) {
  .headroom.headroom--pinned {
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
  .headroom.headroom--unpinned {
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }

  .header-sticky {
    padding-top: 65px;
  }

  .site-header {
    height: 65px;
    border-bottom: 3px solid #F2ED04;
  }

  .logo {
    top: 10px;
    left: 14px;
    width: 142px;
    height: 45px;
    background-image: url(../images/logo_s.svg);
  }

  .site-menu {
    top: 0;
    right: 0;
  }

  .menu-trigger {
    display: block;
  }

  .menu-close {
    display: none;
  }

  .has-mega-menu .menu-item:before {
    display: none;
  }

  #main-menu .menu-item {
    position: relative;
  }
  #main-menu .menu-item.active {
    color: #505C7D;
    background-color: #F2ED04;
  }

  .menu-panel {
    background-color: #EFEFEF;
    display: block;
    padding: 0;
    padding-top: 124px;
    padding-bottom: 40px;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 6;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
  }
  .menu-panel:before {
    content: "";
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 66px;
    background-color: #EFEFEF;
    z-index: 8;
    display: block;
    position: fixed;
    -moz-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    -webkit-transition: ease 0.5s;
    transition: ease 0.5s;
  }
  .menu-panel.is-toggle {
    left: 0;
  }
  .menu-panel.is-toggle .menu-close {
    display: block;
    opacity: 1;
  }
  .menu-panel.is-toggle:before {
    left: 0;
  }
  .menu-panel.is-toggle:before {
    display: block;
  }
}
.site-footer {
  position: relative;
  color: #505C7D;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .06em;
  background-color: #F3F3F3;
  padding-top: 58px;
  padding-bottom: 25px;
}
.site-footer__top {
  margin-bottom: 28px;
  padding: 0 145px;
}
.site-footer .container {
  max-width: 1280px;
}
.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.site-footer a {
  color: #505C7D;
  text-decoration: none;
}
.site-footer a:active {
  filter: brightness(1.2);
}
@media (hover: hover) {
  .site-footer a:hover {
    filter: brightness(1.2);
  }
}
.site-footer .menu {
  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: -8px;
  font-weight: 300;
}
.site-footer .menu .item {
  margin: 8px;
  width: calc(100% / 8 - 8px * 2);
  min-width: 85px;
}
.site-footer .menu .item-header {
  font-size: 20px;
  line-height: 29px;
  font-weight: 500;
  margin-bottom: 14px;
}
.site-footer .menu li {
  padding: 0;
  position: relative;
}
.site-footer .menu li + li {
  margin-top: 10px;
}
.site-footer .copyright {
  font-weight: 300;
  line-height: 21px;
  letter-spacing: .044em;
  text-align: center;
  font-family: "Lexend", sans-serif;
}
.site-footer .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 36px;
  border-bottom: 1px solid #505C7D;
}
.site-footer .grid-left {
  margin-right: 0;
}
.site-footer .grid-right {
  width: 100%;
}
.site-footer .footer-logo {
  width: 100px;
  position: absolute;
  top: 0;
  left: 0;
}
.site-footer .footer-info {
  max-width: 980px;
  margin: 0 auto 15px;
  font-weight: 300;
  line-height: 30px;
}
.site-footer .footer-info ul {
  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;
  margin: -.25em -.5em;
}
.site-footer .footer-info ul li {
  margin: .25em .5em;
}
.site-footer .footer-link {
  margin-bottom: 14px;
}
.site-footer .footer-link ul {
  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;
  margin: 0 -8px;
}
.site-footer .footer-link ul li {
  margin: 0 8px;
}
.site-footer .footer-link a {
  text-decoration: underline;
}
.site-footer .footer-link a:active {
  text-decoration: none;
}
@media (hover: hover) {
  .site-footer .footer-link a:hover {
    text-decoration: none;
  }
}

.to-top {
  position: fixed;
  bottom: -150px;
  right: 20px;
  z-index: 1;
  -moz-transition: bottom 0.5s ease;
  -o-transition: bottom 0.5s ease;
  -webkit-transition: bottom 0.5s ease;
  transition: bottom 0.5s ease;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  display: block;
  background-image: url(../images/totop.svg);
  background-color: #fff;
}
.to-top.is-view {
  bottom: 20px;
}

@media (max-width: 1280px) and (min-width: 1024px) {
  .site-footer__top {
    margin: 0 auto 28px;
    padding: 0 145px;
  }
  .site-footer .container {
    width: calc(100% - 20px * 2);
  }
  .site-footer .menu {
    margin: -16px -8px;
  }
  .site-footer .menu .item {
    margin: 16px 8px;
    width: calc(100% / 5 - 8px * 2);
  }
}
@media (max-width: 1023px) {
  .site-footer {
    padding-top: 42px;
    padding-bottom: 14px;
  }
  .site-footer__top {
    padding: 0;
    margin-bottom: 30px;
  }
  .site-footer .copyright {
    font-size: 14px;
  }
  .site-footer .grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .site-footer .grid-left {
    width: 100%;
    margin-right: 0;
  }
  .site-footer .grid-right {
    display: none;
  }
  .site-footer .footer-logo {
    position: relative;
    width: 100px;
    margin: 0 auto;
  }
  .site-footer .footer-info {
    margin-bottom: 30px;
  }
  .site-footer .footer-info ul {
    display: block;
    margin: 0;
  }
  .site-footer .footer-info ul li {
    margin: 0;
    text-align: center;
  }
  .site-footer .footer-link {
    margin-bottom: 30px;
  }
  .site-footer .footer-link ul {
    margin: 0 -10px;
  }
  .site-footer .footer-link ul li {
    margin: 0 10px;
  }

  .to-top {
    right: 8px;
  }
  .to-top.is-view {
    bottom: 70px;
  }
}
.modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 750px;
  margin: 0 auto;
}
.modal-content {
  position: relative;
  border: 0;
  border-radius: 0;
  padding: 0;
}
.modal .btn-close {
  width: 32px;
  height: 32px;
  padding: 0;
  background: url(../images/modal-close.svg);
  background-size: 14px auto;
  background-position: center center;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 0;
  opacity: 1;
  position: absolute;
  top: 15px;
  right: 30px;
}

.modal-backdrop {
  background-color: #EED88D;
}

.modal-backdrop.show {
  opacity: .93;
}

.vote-modal .modal-dialog {
  width: calc(100% - 20px * 2);
  max-width: 750px;
  margin: 20px auto;
}
.vote-modal .modal-content {
  background-color: #E5BB79;
  border-radius: 21px;
  padding: 0 18px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.vote-modal .inner {
  background-color: #fff;
  padding: 64px 70px;
  border-radius: 15px;
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  letter-spacing: .12em;
  color: #6E4E0D;
  text-align: justify;
}
.vote-modal .image {
  margin-bottom: 24px;
}
.vote-modal .logo {
  margin-bottom: 10px;
}
.vote-modal .logo img {
  max-height: 50px;
}
.vote-modal .main-text {
  font-size: 25px;
  line-height: 36px;
  font-weight: 900;
  letter-spacing: .12em;
}
.vote-modal .sub-text {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 5px;
}
.vote-modal .sub-text .highlight {
  color: #231B0B;
}
.vote-modal .text {
  font-size: 15px;
  line-height: 21px;
  font-weight: 500;
  letter-spacing: .12em;
  color: #231B0B;
  margin-bottom: 27px;
}
.vote-modal .info + .info {
  margin-top: 27px;
}
.vote-modal .info-title {
  color: #231B0B;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 9px;
}
.vote-modal .list {
  list-style: disc;
  padding-left: 1.25em;
}
.vote-modal .action {
  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-top: 45px;
}
.vote-modal .btn {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 36px;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  border-radius: 72px;
  letter-spacing: .05em;
  padding: 5px 0;
  color: #fff;
  text-align: center;
  background-image: url(../images/news-btn.png);
  background-size: 100% 100%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.vote-modal .btn:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .vote-modal .btn:hover {
    filter: brightness(1.1);
  }
}
.vote-modal .landing-swiper-container {
  overflow: hidden;
  position: relative;
  margin-bottom: 24px;
}
.vote-modal .landing-swiper-container .image {
  margin-bottom: 0;
}
.vote-modal .landing-swiper-container .swiper-button-prev,
.vote-modal .landing-swiper-container .swiper-button-next {
  display: none;
}
.vote-modal .landing-swiper-container .swiper-pagination {
  position: absolute;
  display: block;
  bottom: 10px;
  right: 6px;
  top: inherit;
  left: inherit;
  width: auto;
  margin: -4px;
}
.vote-modal .landing-swiper-container .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: #fff;
  display: block;
}
.vote-modal .landing-swiper-container .swiper-pagination-bullet-active {
  background-color: #F17B63;
}
.vote-modal .landing-swiper-container .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 9px;
}
.vote-modal .image {
  opacity: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.vote-modal .swiper-slide-active .image {
  opacity: 1;
}

@media (max-width: 767px) {
  .modal .btn-close {
    right: 24px;
  }

  .vote-modal .modal-dialog {
    max-width: 300px;
  }
  .vote-modal .modal-content {
    border-radius: 15px;
    padding: 0 12px;
  }
  .vote-modal .inner {
    padding: 58px 32px 32px;
  }
  .vote-modal .landing-swiper-container {
    margin-bottom: 10px;
  }
  .vote-modal .logo {
    margin-bottom: 10px;
  }
  .vote-modal .text {
    margin-bottom: 18px;
  }
  .vote-modal .info + .info {
    margin-top: 18px;
  }
  .vote-modal .action {
    margin-top: 24px;
  }
}
.index-kv {
  background-color: #fff;
}
.index-kv .container {
  padding-top: 92px;
  padding-bottom: 92px;
  min-height: 560px;
}
.index-kv .main-text {
  font-size: 50px;
  line-height: 70px;
  font-weight: 700;
  margin-bottom: 20px;
  max-width: 50%;
}
.index-kv .sub-text {
  font-size: 22px;
  line-height: 36px;
  letter-spacing: .06em;
  max-width: 50%;
}
.index-kv .action {
  margin-top: 50px;
}
.index-kv .btn-primary {
  width: 200px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  color: #1A1A1A;
  background-color: #F2CB05;
}
.index-kv .btn-primary .icon-arrow {
  background-image: url(../images/icon-arrow.svg);
  width: 42px;
  height: 15px;
  margin-left: 8px;
}
.index-kv .btn-primary:active {
  color: #1A1A1A;
  background-color: #F2CB05;
  filter: brightness(1.1);
}
@media (hover: hover) {
  .index-kv .btn-primary:hover {
    color: #1A1A1A;
    background-color: #F2CB05;
    filter: brightness(1.1);
  }
}

.index-main {
  position: relative;
}
.index-main .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/index-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center top;
}
.index-main .list {
  position: relative;
  margin: 0 -16px;
  padding: 10px 0 280px;
}
.index-main .grid-sizer,
.index-main .grid-item {
  width: 50%;
  padding: 20px 16px;
}
.index-main .grid-sizer + .grid-item {
  margin-top: -330px !important;
}
.index-main .item {
  position: relative;
  min-height: 424px;
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.index-main .item:active {
  filter: brightness(1.05);
}
.index-main .item:active .image {
  filter: brightness(1.1);
}
.index-main .item:active .image img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media (hover: hover) {
  .index-main .item:hover {
    filter: brightness(1.05);
  }
  .index-main .item:hover .image {
    filter: brightness(1.1);
  }
  .index-main .item:hover .image img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.index-main .item .image {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  position: relative;
  overflow: hidden;
}
.index-main .item .image img {
  width: 100%;
  display: block;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.index-main .item .content {
  padding: 24px 48px 112px;
  position: relative;
  min-height: 424px;
}
.index-main .item .main-text {
  font-size: 50px;
  line-height: 66px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-height: 132px;
  -webkit-line-clamp: 2;
  margin: 0;
}
.index-main .item .main-text + .sub-text {
  margin-top: 24px;
}
.index-main .item .sub-text {
  font-size: 20px;
  line-height: 36px;
  letter-spacing: .05em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-height: 144px;
  -webkit-line-clamp: 4;
  margin: 0;
}
.index-main .item-a .content {
  background-color: #fff;
}
.index-main .item-b {
  background-color: #505C7D;
}
.index-main .item-b .content {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
}
.index-main .item-b .main-text {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
}
.index-main .item-b .sub-text {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
}
.index-main .item-c .content {
  background-color: #505C7D;
  color: #fff;
}
.index-main .action {
  position: absolute;
  bottom: 0;
  right: 0;
}
.index-main .btn-primary {
  width: 160px;
  font-size: 16px;
  line-height: 36px;
  height: 60px;
  font-weight: 500;
  padding: 12px 16px;
  color: #1A1A1A;
  background-color: #E9E9E9;
}
.index-main .btn-primary:before {
  content: "";
  position: absolute;
  bottom: 16px;
  left: calc(50% - 84px / 2);
  width: 84px;
  height: 1px;
  background-color: #1A1A1A;
}
.index-main .btn-primary .icon-arrow {
  background-image: url(../images/icon-arrow3.svg);
  width: 14px;
  height: 14px;
  margin-left: 5px;
}
.index-main .btn-primary:active {
  color: #1A1A1A;
  background-color: #E9E9E9;
  filter: brightness(1);
}
@media (hover: hover) {
  .index-main .btn-primary:hover {
    color: #1A1A1A;
    background-color: #E9E9E9;
    filter: brightness(1);
  }
}

.index-sticky-menu {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: calc(100% - 16px * 2);
  max-width: 600px;
  height: 80px;
  background-color: #F2CB05;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
.index-sticky-menu ul {
  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;
  list-style: none;
  margin: 0;
  padding: 0;
}
.index-sticky-menu li {
  position: relative;
  list-style: none;
  padding: 0 12px;
  float: none;
  width: calc(100% / 3);
  text-align: center;
}
.index-sticky-menu li:before {
  content: "";
  position: absolute;
  top: calc(50% - 40px / 2);
  left: 0;
  width: 1px;
  height: 40px;
  background-color: #1A1A1A;
}
.index-sticky-menu li:first-child:before {
  display: none;
}
.index-sticky-menu a {
  position: relative;
  color: #1A1A1A;
  font-size: 22px;
  line-height: 80px;
  letter-spacing: .04em;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.index-sticky-menu a:before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: calc(50% - 10px / 2);
  width: 10px;
  height: 1px;
  background-color: #1A1A1A;
  opacity: 0;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.index-sticky-menu a .icon-arrow {
  background-image: url(../images/icon-arrow2.svg);
  width: 24px;
  height: 14px;
  margin-left: 10px;
}
.index-sticky-menu a:active:before {
  left: calc(50% - 100px / 2);
  width: 100px;
  opacity: 1;
}
@media (hover: hover) {
  .index-sticky-menu a:hover:before {
    left: calc(50% - 100px / 2);
    width: 100px;
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .index-kv .container {
    padding-top: 42px;
    padding-bottom: 265px;
    min-height: inherit;
  }
  .index-kv .main-text {
    max-width: 100%;
    margin-bottom: 15px;
  }
  .index-kv .sub-text {
    max-width: 100%;
  }
  .index-kv .action {
    margin-top: 28px;
  }

  .index-main .bg {
    background-image: url(../images/index-bg_s.jpg);
  }
  .index-main .list {
    margin: 0 -12px;
    padding: 10px 0 195px;
  }
  .index-main .grid-sizer,
  .index-main .grid-item {
    width: 100%;
    padding: 5px 12px;
  }
  .index-main .grid-sizer + .grid-item {
    margin-top: -155px !important;
  }
  .index-main .item {
    min-height: inherit;
  }
  .index-main .item .content {
    padding: 20px 10px 76px;
    min-height: inherit;
  }
  .index-main .item .main-text {
    font-size: 40px;
    line-height: 50px;
    max-height: 100px;
  }
  .index-main .item .main-text + .sub-text {
    margin-top: 10px;
  }
  .index-main .item .sub-text {
    font-size: 20px;
    line-height: 28px;
    max-height: 112px;
  }
  .index-main .btn-primary {
    width: 140px;
    font-size: 18px;
    line-height: 36px;
    font-weight: 300;
    height: 56px;
    padding: 10px 16px;
  }
  .index-main .btn-primary:before {
    bottom: 13px;
    left: calc(50% - 94px / 2);
    width: 94px;
  }

  .index-sticky-menu {
    bottom: 10px;
    height: 50px;
    max-width: 380px;
    width: calc(100% - 8px * 2);
  }
  .index-sticky-menu li {
    padding: 0 10px;
    width: calc(100% / 3);
  }
  .index-sticky-menu li:before {
    top: calc(50% - 32px / 2);
    height: 32px;
  }
  .index-sticky-menu a {
    font-size: 18px;
    line-height: 50px;
  }
  .index-sticky-menu a:before {
    bottom: 10px;
  }
  .index-sticky-menu a .icon-arrow {
    width: 16px;
    height: 16px;
    margin-left: 5px;
  }
  .index-sticky-menu a:active:before {
    left: calc(50% - 75px / 2);
    width: 75px;
  }
}
@media (max-width: 767px) and (hover: hover) {
  .index-sticky-menu a:hover:before {
    left: calc(50% - 75px / 2);
    width: 75px;
  }
}

.page-about p {
  margin: 0;
}
.page-about .page-header {
  height: 520px;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
}
.page-about .page-header .container {
  padding: 0 30px;
  max-width: 1030px;
}
.page-about .page-header .main-text {
  font-size: 50px;
  line-height: 72px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}
.page-about .page-header .l-line {
  display: block;
  width: 100%;
  height: 5px;
  background-color: #F2ED04;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 300px;
}
.page-about .page-header .sub-text {
  font-size: 30px;
  line-height: 44px;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
}
.page-about .page-header .text {
  letter-spacing: .06em;
  text-align: justify;
}

.about-section {
  position: relative;
}
.about-section .section-anchor {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.about-section .container {
  padding: 110px 30px 130px;
  max-width: 1366px;
}
.about-section .section-header {
  margin: 0 auto 80px;
  color: #1A1A1A;
  text-align: center;
}
.about-section .section-header .title {
  font-size: 50px;
  line-height: 72px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  margin: 0;
  font-family: "Lexend", 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', Arial, Helvetica, sans-serif;
}
.about-section .section-header .title span + span {
  margin-left: 12px;
}
.about-section .section-header .l-line {
  display: block;
  width: 100%;
  height: 5px;
  background-color: #F2ED04;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.about-section .section-header .sub-title {
  font-size: 40px;
  line-height: 54px;
  font-weight: 600;
  font-family: "Lexend", serif;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  margin: 0;
}
.about-section .section-content {
  margin: 0 auto;
}

.about-a1 .section-header .l-line {
  max-width: 500px;
}
.about-a1 .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: -17px -34px;
}
.about-a1 .item {
  width: calc(100% / 3 - 34px * 2);
  margin: 17px 34px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 28px 15px 24px;
  min-height: 250px;
}
.about-a1 .item .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 18px;
}
.about-a1 .item .image {
  width: 74px;
}
.about-a1 .item .main-text {
  width: calc(100% - 74px);
  padding-left: 30px;
  font-size: 50px;
  line-height: 72px;
  font-weight: 500;
}
.about-a1 .item .content {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
  letter-spacing: .05em;
  color: #1A1A1A;
  margin: 0 -5px;
}
.about-a1 .item ul {
  list-style: disc;
  margin: 0;
  padding-left: 1.25em;
}

.about-a2 {
  background-color: #F9F9F9;
}
.about-a2 .container {
  max-width: 1920px;
  padding-left: 20px;
  padding-right: 20px;
}
.about-a2 .section-header .l-line {
  max-width: 350px;
}
.about-a2 .list {
  position: relative;
  padding: 18px 0;
  max-width: 680px;
  margin: 0 auto;
}
.about-a2 .list:before {
  content: "";
  position: absolute;
  top: 0;
  left: 175px;
  width: 1px;
  height: 100%;
  background-color: #1A1A1A;
}
.about-a2 .item {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 12px 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  background-color: #fff;
  min-height: 60px;
  position: relative;
}
.about-a2 .item:before {
  content: "";
  position: absolute;
  top: calc(50% - 15px / 2);
  left: calc(175px - 15px / 2);
  background-color: #1A1A1A;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.about-a2 .item + .item {
  margin-top: 50px;
}
.about-a2 .item-left {
  width: 160px;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: .06em;
  font-weight: 700;
  color: #505C7D;
  font-family: "Roboto", serif;
}
.about-a2 .item-right {
  width: calc(100% - 160px);
  padding-left: 30px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  letter-spacing: .05em;
  color: #1A1A1A;
}
.about-a2 .item .text-lg {
  font-size: 26px;
  line-height: 36px;
  letter-spacing: .06em;
  font-weight: 900;
  color: #505C7D;
}

.about-b .container {
  padding: 110px 0 130px;
  max-width: 1366px;
}
.about-b .section-header .l-line {
  max-width: 300px;
}
.about-b .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.about-b .grid-left {
  width: calc(100% - 52.635431918%);
  padding-left: 30px;
  padding-right: 23px;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .06em;
  font-weight: 300;
  color: #1A1A1A;
  text-align: justify;
}
.about-b .grid-right {
  width: 52.635431918%;
}
.about-b .jv-holding {
  width: 196px;
  margin-bottom: 30px;
}
.about-b .action {
  margin-top: 64px;
}
.about-b .btn-primary {
  width: 250px;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
  font-weight: 300;
  color: #fff;
  background-color: #505C7D;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 0;
}
.about-b .btn-primary span {
  border-right: 1px solid #fff;
  width: calc(100% - 48px);
}
.about-b .btn-primary .icon-arrow {
  background-image: url(../images/icon-arrow-white.svg);
  background-size: 25px auto;
  width: 48px;
  height: 42px;
}
.about-b .btn-primary:active {
  color: #fff;
  background-color: #505C7D;
  filter: brightness(1.1);
}
@media (hover: hover) {
  .about-b .btn-primary:hover {
    color: #fff;
    background-color: #505C7D;
    filter: brightness(1.1);
  }
}

@media (max-width: 1200px) and (min-width: 767px) {
  .about-a1 .item {
    width: calc(100% / 3 - 2.833333333vw * 2);
    margin: 17px 2.833333333vw;
  }
  .about-a1 .item .image {
    width: 6.166666666vw;
  }
  .about-a1 .item .main-text {
    width: calc(100% - 6.166666666vw);
    font-size: 4.166666666vw;
    padding-left: 2.5vw;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .page-about .page-header {
    height: 720px;
  }
  .page-about .page-header .container {
    padding: 0 12px;
    max-width: 375px;
  }

  .about-section .container {
    padding: 110px 12px 130px;
  }
  .about-section .section-header .title {
    font-size: 40px;
    line-height: 52px;
  }
  .about-section .section-header .title span {
    display: block;
    width: 100%;
  }
  .about-section .section-header .title span + span {
    margin-left: 0;
  }
  .about-section .section-header .sub-title {
    font-size: 30px;
    line-height: 36px;
  }

  .about-a1 .section-header .l-line {
    max-width: 369px;
  }
  .about-a1 .section-content {
    max-width: 369px;
  }
  .about-a1 .list {
    display: block;
    margin: 0;
  }
  .about-a1 .item {
    width: 100%;
    margin: 0;
    padding: 28px 15px 24px;
  }
  .about-a1 .item + .item {
    margin-top: 20px;
  }

  .about-a2 .container {
    max-width: 375px;
  }
  .about-a2 .section-header .l-line {
    max-width: 369px;
  }
  .about-a2 .list {
    padding: 40px 0;
    max-width: 100%;
  }
  .about-a2 .list:before {
    left: 154px;
  }
  .about-a2 .item {
    padding: 15px 10px 10px;
    display: block;
    min-height: 130px;
  }
  .about-a2 .item:before {
    top: 26px;
    left: calc(154px - 15px / 2);
  }
  .about-a2 .item + .item {
    margin-top: 45px;
  }
  .about-a2 .item-left {
    width: 100%;
  }
  .about-a2 .item-right {
    width: 100%;
    padding-left: 0;
  }

  .about-b .section-header .l-line {
    max-width: 369px;
  }
  .about-b .grid {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .about-b .grid-left {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: .02em;
  }
  .about-b .grid-right {
    width: calc(100% + 12px * 2);
    margin: 0 -12px 25px;
  }
  .about-b .jv-holding {
    width: 196px;
    margin: 0 auto 25px;
  }
  .about-b .action {
    margin-top: 50px;
  }
  .about-b .btn-primary {
    margin: 0 auto;
  }
}
.page-news .page-header {
  height: 250px;
}
.page-news .page-content {
  padding-top: 40px;
  padding-bottom: 300px;
}
.page-news .page-content .container {
  max-width: 1338px;
}

.menu-filter {
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid #505C7D;
  margin-bottom: 40px;
  z-index: 2;
}
.menu-filter .menu-filter-trigger {
  border: 1px solid #505C7D;
  height: 46px;
  padding: 7px 12px;
  position: relative;
  color: #505C7D;
  font-size: 22px;
  line-height: 30px;
  display: none;
}
.menu-filter .menu-filter-trigger .icon-arrow {
  background-image: url(../images/menu-filter-arrow.svg);
  position: absolute;
  top: calc(50% - 24px / 2);
  right: 10px;
}
.menu-filter .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  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: -5px -10px;
  background-color: #fff;
}
.menu-filter .menu li {
  margin: 5px 10px;
}
.menu-filter .menu a {
  display: block;
  border: 1px solid #505C7D;
  color: #505C7D;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: .06em;
  padding: 7px 16px;
  min-width: 100px;
  text-align: center;
  font-family: "Lexend", 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', Arial, Helvetica, sans-serif;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.menu-filter .menu a.active {
  color: #fff;
  background-color: #505C7D;
}
.menu-filter .menu a:active {
  color: #fff;
  background-color: #505C7D;
}
@media (hover: hover) {
  .menu-filter .menu a:hover {
    color: #fff;
    background-color: #505C7D;
  }
}

.news-list .item {
  position: relative;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}
.news-list .item:active .image img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media (hover: hover) {
  .news-list .item:hover .image img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.news-list .item .image {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  width: 45.941807044%;
  position: relative;
  overflow: hidden;
}
.news-list .item .image:before {
  content: "";
  position: relative;
  display: block;
  padding-top: 66.666666666%;
}
.news-list .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.news-list .item .content {
  width: calc(100% - 45.941807044%);
  padding-left: 30px;
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.news-list .item .date {
  font-size: 32px;
  line-height: 44px;
  color: #959595;
  font-family: "Lexend", serif;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.news-list .item .main-text {
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-height: 80px;
  -webkit-line-clamp: 2;
  margin: 0;
  text-align: justify;
}
.news-list .item .main-text + .sub-text {
  margin-top: 10px;
}
.news-list .item .main-text:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .news-list .item .main-text:hover {
    filter: brightness(1.1);
  }
}
.news-list .item .sub-text {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .06em;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-height: 180px;
  -webkit-line-clamp: 6;
  margin: 0;
  text-align: justify;
  margin-bottom: auto;
}
.news-list .item .tags {
  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: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: -5px -10px;
  margin-top: 30px;
}
.news-list .item .tag {
  font-size: 16px;
  line-height: 22px;
  height: 40px;
  color: #505C7D;
  border-radius: 0;
  border: 1px solid #505C7D;
  background-color: #fff;
  padding: 8px 16px;
  margin: 5px 10px;
  font-weight: 400;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.news-list .item .tag:active {
  color: #fff;
  background-color: #505C7D;
}
@media (hover: hover) {
  .news-list .item .tag:hover {
    color: #fff;
    background-color: #505C7D;
  }
}

.news-detail .container {
  max-width: 1032px;
}
.news-detail .page-header {
  padding: 0;
  margin-bottom: 40px;
}
.news-detail .page-header .container {
  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: 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;
}
.news-detail .page-header .bg {
  display: none;
}
.news-detail .page-header .title {
  font-size: 30px;
  line-height: 44px;
  font-weight: 700;
  text-align: left;
  color: #505C7D;
}
.news-detail .page-header .btn-back {
  color: #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .04em;
  padding-bottom: 4px;
}
.news-detail .page-header .btn-back .icon-arrow {
  background-image: url(../images/icon-back.svg);
  margin-right: 3px;
  width: 24px;
  height: 14px;
}
.news-detail .page-header .btn-back:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .news-detail .page-header .btn-back:hover {
    filter: brightness(1.1);
  }
}
.news-detail .page-content {
  margin-bottom: 300px;
}

.article img {
  height: auto !important;
}
.article-header {
  margin-bottom: 40px;
}
.article-header .title {
  color: #505C7D;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
}
.article-header .date {
  font-size: 16px;
  line-height: 21px;
  font-weight: 300;
  color: #959595;
  font-family: "Lexend", serif;
  letter-spacing: .06em;
  margin-top: 10px;
  text-align: center;
}
.article-header .tags {
  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;
  margin: -5px -10px;
  margin-top: 25px;
}
.article-header .tag {
  font-size: 16px;
  line-height: 22px;
  height: 40px;
  color: #505C7D;
  border-radius: 0;
  border: 1px solid #505C7D;
  background-color: #fff;
  padding: 8px 16px;
  margin: 5px 10px;
  font-weight: 400;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.article-header .tag:active {
  color: #fff;
  background-color: #505C7D;
}
@media (hover: hover) {
  .article-header .tag:hover {
    color: #fff;
    background-color: #505C7D;
  }
}
.article-content {
  color: #505C7D;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .06em;
  text-align: justify;
  margin-bottom: 30px;
}
.article-content h3 {
  color: #505C7D;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  margin-bottom: 20px;
}
.article-content h3:after {
  content: "";
  width: 200px;
  height: 4px;
  background-color: #505C7D;
  display: block;
  margin: 8px auto 0;
}
.article-content p {
  margin-bottom: 30px;
}
.article-content .video,
.article-content .image {
  margin: 40px 0;
}
.article-content .video img + .description,
.article-content .image img + .description {
  margin-top: 10px;
}
.article-content .video .post-iframe + .description,
.article-content .image .post-iframe + .description {
  margin-top: 10px;
}
.article-content .video p,
.article-content .image p {
  margin-bottom: 0;
}
.article-content .description {
  color: #8F8F8F;
  text-align: center;
  font-weight: 300;
}
.article-content a {
  color: #505C7D;
  text-decoration: underline;
}
.article-content a:active {
  text-decoration: none;
}
@media (hover: hover) {
  .article-content a:hover {
    text-decoration: none;
  }
}
.article-footer .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-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.article-footer .tags {
  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;
  margin: -5px -10px;
}
.article-footer .tags + .share {
  margin: -5px;
  margin-left: 45px;
}
.article-footer .tag {
  font-size: 16px;
  line-height: 22px;
  height: 40px;
  color: #505C7D;
  border-radius: 0;
  border: 1px solid #505C7D;
  background-color: #fff;
  padding: 8px 16px;
  margin: 5px 10px;
  font-weight: 400;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.article-footer .tag:active {
  color: #fff;
  background-color: #505C7D;
}
@media (hover: hover) {
  .article-footer .tag:hover {
    color: #fff;
    background-color: #505C7D;
  }
}
.article-footer .share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.article-footer .share .icon {
  width: 38px;
  height: 38px;
  background-size: 40px auto;
}
.article-footer .share .icon-facebook {
  background-image: url(../images/icon-facebook_gray.svg);
}
.article-footer .share .icon-line {
  background-image: url(../images/icon-line_gray.svg);
}
.article-footer .share .icon-twitter {
  background-image: url(../images/icon-twitter_gray.svg);
}
.article-footer .share a {
  width: 40px;
  height: 40px;
  border: 1px solid #BEBEBE;
  margin: 5px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.article-footer .share a:active {
  border: 1px solid #505C7D;
}
.article-footer .share a:active .icon-facebook {
  background-image: url(../images/icon-facebook.svg);
}
.article-footer .share a:active .icon-line {
  background-image: url(../images/icon-line.svg);
}
.article-footer .share a:active .icon-twitter {
  background-image: url(../images/icon-twitter.svg);
}
@media (hover: hover) {
  .article-footer .share a:hover {
    border: 1px solid #505C7D;
  }
  .article-footer .share a:hover .icon-facebook {
    background-image: url(../images/icon-facebook.svg);
  }
  .article-footer .share a:hover .icon-line {
    background-image: url(../images/icon-line.svg);
  }
  .article-footer .share a:hover .icon-twitter {
    background-image: url(../images/icon-twitter.svg);
  }
}
.article-footer .action {
  margin-top: 40px;
}
.article-footer .btn-back {
  border: 1px solid #1A1A1A;
  height: 40px;
  width: 100%;
  max-width: 453px;
  margin: 0 auto;
  color: #1A1A1A;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 8px;
  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;
}
.article-footer .btn-back .icon-arrow {
  background-image: url(../images/icon-back.svg);
  margin-right: 3px;
  width: 24px;
  height: 14px;
}
.article-footer .btn-back:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .article-footer .btn-back:hover {
    filter: brightness(1.1);
  }
}
.article + .related-news {
  margin-top: 70px;
}

.related-news .title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #505C7D;
  margin-bottom: 20px;
}
.related-news .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: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin: -10px -13px;
}
.related-news .item {
  position: relative;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  width: calc(100% / 2 - 13px * 2);
  margin: 10px 13px;
}
.related-news .item:active .image img {
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media (hover: hover) {
  .related-news .item:hover .image img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.related-news .item .image {
  position: relative;
  overflow: hidden;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  margin-bottom: 20px;
}
.related-news .item .image:before {
  content: "";
  position: relative;
  display: block;
  padding-top: 66.666666666%;
}
.related-news .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.related-news .item .main-text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 56px;
  -webkit-line-clamp: 2;
  margin: 0;
}
.related-news .item .main-text:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .related-news .item .main-text:hover {
    filter: brightness(1.1);
  }
}
.related-news .item .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-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  margin-top: 10px;
}
.related-news .item .date {
  font-size: 16px;
  line-height: 24px;
  color: #959595;
  font-family: "Lexend", serif;
  letter-spacing: .06em;
  width: 120px;
}
.related-news .item .tags {
  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;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin: -5px -10px;
  width: calc(100% - 120px);
  overflow: hidden;
  height: 50px;
}
.related-news .item .tag {
  font-size: 16px;
  line-height: 22px;
  height: 40px;
  color: #505C7D;
  border-radius: 0;
  border: 1px solid #505C7D;
  background-color: #fff;
  padding: 8px 16px;
  margin: 5px 10px;
  font-weight: 400;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.related-news .item .tag:active {
  color: #fff;
  background-color: #505C7D;
}
@media (hover: hover) {
  .related-news .item .tag:hover {
    color: #fff;
    background-color: #505C7D;
  }
}

@media (max-width: 767px) {
  .page-news .page-content {
    padding-top: 20px;
    padding-bottom: 200px;
  }

  .menu-filter {
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 20px;
  }
  .menu-filter .menu-filter-trigger {
    display: block;
  }
  .menu-filter .menu {
    position: absolute;
    top: 100%;
    margin: 0;
    border: 1px solid #505C7D;
    display: none;
    width: 100%;
  }
  .menu-filter .menu li {
    margin: 0;
  }
  .menu-filter .menu a {
    border: 0;
    text-align: left;
    padding: 7px 12px;
    font-size: 22px;
    line-height: 30px;
  }
  .menu-filter.is-view .menu {
    display: block;
  }

  .news-list .item {
    display: block;
    margin-bottom: 36px;
  }
  .news-list .item .image {
    width: 100%;
    margin-bottom: 8px;
  }
  .news-list .item .content {
    width: 100%;
    padding-left: 0;
  }
  .news-list .item .main-text {
    max-height: 120px;
    -webkit-line-clamp: 3;
  }
  .news-list .item .sub-text {
    display: none;
  }
  .news-list .item .tags {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    margin: -5px -10px;
    margin-top: 5px;
  }

  .news-detail .container {
    max-width: 100%;
    padding: 0 12px;
  }
  .news-detail .page-header {
    padding-top: 20px;
  }
  .news-detail .page-header .title {
    display: none;
  }
  .news-detail .page-header .btn-back {
    margin-left: auto;
  }
  .news-detail .page-content {
    margin-bottom: 200px;
  }

  .article-header {
    margin-bottom: 40px;
  }
  .article-header .tags {
    margin-top: 15px;
  }
  .article-content {
    font-size: 18px;
    line-height: 30px;
  }
  .article-content h3 {
    margin-bottom: 16px;
  }
  .article-footer .group {
    display: block;
  }
  .article-footer .tags {
    margin: -5px -10px;
  }
  .article-footer .tags + .share {
    margin: 0 auto;
    margin-top: 40px;
  }
  .article-footer .share {
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
  }
  .article-footer .share .icon {
    width: 62px;
    height: 62px;
    background-size: 62px auto;
  }
  .article-footer .share a {
    width: 64px;
    height: 64px;
    margin: 0 10px;
  }

  .related-news .title {
    text-align: center;
  }
  .related-news .list {
    display: block;
    margin: 0;
  }
  .related-news .item {
    width: 100%;
    margin: 0;
  }
  .related-news .item + .item {
    margin-top: 20px;
  }
  .related-news .item .group {
    display: block;
    margin-top: 10px;
  }
  .related-news .item .date {
    width: 100%;
    margin-bottom: 10px;
  }
  .related-news .item .tags {
    margin: -5px -10px;
    width: calc(100% + 10px * 2);
  }
}
.page-service p {
  margin: 0;
}
.page-service .page-header {
  height: 872px;
  color: #fff;
}
.page-service .page-header .container {
  padding: 0 30px;
}
.page-service .page-header .title {
  margin-bottom: 130px;
}
.page-service .page-header .main-text {
  font-size: 60px;
  line-height: 88px;
  font-weight: 700;
  margin: 0;
}
.page-service .page-header .main-text + .sub-text {
  margin-top: 40px;
}
.page-service .page-header .sub-text {
  font-size: 20px;
  line-height: 36px;
  font-weight: 300;
  max-width: 700px;
}
.page-service .page-header .action {
  margin-top: 40px;
}
.page-service .page-header .btn-primary {
  font-size: 18px;
  letter-spacing: .1em;
  line-height: 55px;
  width: 200px;
  height: 55px;
  padding: 0;
  color: #1A1A1A;
  background-color: #F2CB05;
}
.page-service .page-header .btn-primary:active {
  color: #1A1A1A;
  background-color: #F2CB05;
  filter: brightness(1.1);
}
@media (hover: hover) {
  .page-service .page-header .btn-primary:hover {
    color: #1A1A1A;
    background-color: #F2CB05;
    filter: brightness(1.1);
  }
}

.service-section {
  position: relative;
}
.service-section .container {
  padding: 110px 30px 130px;
  max-width: 1366px;
}
.service-section .section-header {
  margin: 0 auto 80px;
  color: #1A1A1A;
  text-align: center;
}
.service-section .section-header .title {
  font-size: 50px;
  line-height: 72px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  margin: 0;
  font-family: "Lexend", 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', Arial, Helvetica, sans-serif;
}
.service-section .section-header .title span + span {
  margin-left: 12px;
}
.service-section .section-header .l-line {
  display: block;
  width: 100%;
  height: 5px;
  background-color: #F2ED04;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.service-section .section-header .sub-title {
  font-size: 40px;
  line-height: 54px;
  font-weight: 600;
  font-family: "Lexend", serif;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  margin: 0;
}
.service-section .section-content {
  margin: 0 auto;
}

.service-a1 {
  background-color: #F9F9F9;
}
.service-a1 .section-header .l-line {
  max-width: 712px;
}
.service-a1 .section-content {
  max-width: 1000px;
}
.service-a1 .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: -25px;
}
.service-a1 .list .item {
  width: calc(100% / 3 - 25px * 2);
  padding: 15px;
  margin: 25px;
}
.service-a1 .list .item .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
.service-a1 .list .item .number {
  font-size: 100px;
  line-height: 120px;
  font-weight: 700;
  width: 58px;
  font-family: "Roboto", serif;
}
.service-a1 .list .item .main-text {
  font-size: 36px;
  line-height: 52px;
  font-weight: 500;
  width: calc(100% - 58px);
  padding-left: 51px;
}
.service-a1 .list .item .main-text span {
  display: block;
}
.service-a1 .list .item .sub-text {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .05em;
  font-weight: 300;
  color: #1A1A1A;
  text-align: justify;
}

.service-a2 .container {
  max-width: 1920px;
  padding-left: 20px;
  padding-right: 20px;
}
.service-a2 .section-header .l-line {
  max-width: 312px;
}
.service-a2 .section-footer {
  margin-top: 80px;
}
.service-a2 .btn-border {
  font-size: 20px;
  line-height: 55px;
  height: 55px;
  font-weight: 500;
  padding: 0 20px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  border-radius: 0;
  color: #505C7D;
  border: 1px solid #505C7D;
  background-color: transparent;
  display: block;
  text-align: center;
}
.service-a2 .btn-border:active {
  color: #fff;
  background-color: #505C7D;
  filter: brightness(1.1);
}
@media (hover: hover) {
  .service-a2 .btn-border:hover {
    color: #fff;
    background-color: #505C7D;
    filter: brightness(1.1);
  }
}
.service-a2 .l-swiper {
  position: relative;
  margin: 0;
}
.service-a2 .swiper-slide {
  width: calc(100% / 4);
  padding: 0 15px;
}
.service-a2 .swiper-button-group {
  position: absolute;
  top: 120px;
  right: 35px;
  width: 180px;
  height: 80px;
  z-index: 0;
}
.service-a2 .swiper-button-prev,
.service-a2 .swiper-button-next {
  width: 80px;
  height: 80px;
}
.service-a2 .swiper-pagination {
  display: none;
}
.service-a2 .item {
  width: 100%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  color: #1A1A1A;
  background-color: #fff;
  min-height: 604px;
  font-family: "Roboto", 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', Arial, Helvetica, sans-serif;
}
.service-a2 .item .image {
  position: relative;
  overflow: hidden;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.service-a2 .item .image:before {
  content: "";
  position: relative;
  display: block;
  padding-top: 66.666666666%;
}
.service-a2 .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-a2 .item .content {
  padding: 15px 20px 20px;
}
.service-a2 .item .top-text {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: .02em;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 2px;
}
.service-a2 .item .main-text {
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  height: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 8px;
}
.service-a2 .item .info-group {
  margin-bottom: 28px;
}
.service-a2 .item .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 24px;
}
.service-a2 .item .info + .info {
  margin-top: 12px;
}
.service-a2 .item .info-header {
  color: #505C7D;
  font-size: 16px;
  font-weight: 500;
  width: 88px;
}
.service-a2 .item .info-content {
  width: calc(100% - 88px);
  font-size: 20px;
  font-weight: 700;
}
.service-a2 .item .bottom-text {
  font-weight: 100;
  letter-spacing: .06em;
}

.service-a3 {
  background-color: #F9F9F9;
}
.service-a3 .section-header .l-line {
  max-width: 264px;
}
.service-a3 .section-content {
  max-width: 720px;
}
.service-a3 .top-text {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  margin-bottom: 16px;
  font-family: "Roboto", serif;
}
.service-a3 .bottom-text {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  font-family: "Roboto", serif;
}
.service-a3 .list {
  background-image: url(../images/flow-line.png);
  background-size: 2px auto;
  background-position: center top;
  background-repeat: repeat-y;
  padding-top: 42px;
  padding-bottom: 74px;
}
.service-a3 .list .item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background-color: #F8F8F8;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.service-a3 .list .item:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 100px;
  width: 1px;
  height: calc(100% - 20px * 2);
  background-color: #BCC4DC;
}
.service-a3 .list .item + .item {
  margin-top: 60px;
}
.service-a3 .list .item .number {
  font-size: 60px;
  line-height: 72px;
  font-weight: 700;
  width: 80px;
  font-family: "Roboto", serif;
  padding-left: 10px;
}
.service-a3 .list .item .content {
  width: calc(100% - 80px);
  padding-left: 40px;
  min-height: 111px;
}
.service-a3 .list .item .main-text {
  font-size: 30px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.service-a3 .list .item .main-text span {
  display: block;
}
.service-a3 .list .item ul {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .06em;
  font-weight: 300;
  color: #1A1A1A;
  text-align: justify;
  margin: 0;
  padding-left: 1.25em;
}

.service-a4 {
  position: relative;
  color: #fff;
}
.service-a4.fadeInUp {
  animation-name: fadeIn;
}
.service-a4 .container {
  padding-top: 88px;
  padding-bottom: 76px;
}
.service-a4 .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.service-a4 .bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-a4 .main-text {
  font-size: 60px;
  line-height: 72px;
  font-weight: 500;
  letter-spacing: .04em;
  font-family: "Roboto", serif;
  max-width: 1029px;
  margin-bottom: 0;
}
.service-a4 .main-text + .sub-text {
  margin-top: 30px;
}
.service-a4 .sub-text {
  font-size: 30px;
  line-height: 44px;
  font-weight: 300;
}
.service-a4 .action {
  margin-top: 40px;
}
.service-a4 .btn-primary {
  font-size: 18px;
  letter-spacing: .1em;
  width: 200px;
  height: 55px;
  padding: 0;
  color: #1A1A1A;
  background-color: #F2CB05;
}
.service-a4 .btn-primary:active {
  color: #1A1A1A;
  background-color: #F2CB05;
  filter: brightness(1.1);
}
@media (hover: hover) {
  .service-a4 .btn-primary:hover {
    color: #1A1A1A;
    background-color: #F2CB05;
    filter: brightness(1.1);
  }
}

.service-b1 {
  background-color: #F9F9F9;
}
.service-b1 .section-header .l-line {
  max-width: 690px;
}
.service-b1 .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: -20px;
}
.service-b1 .list .item {
  width: calc(100% / 2 - 20px * 2);
  padding: 15px;
  margin: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  background-color: #F2F2F2;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}
.service-b1 .list .item .number {
  width: 70px;
  height: 70px;
  background-color: #F2ED04;
  text-align: center;
  font-size: 36px;
  line-height: 70px;
  font-weight: 700;
  font-family: "Roboto", serif;
}
.service-b1 .list .item .main-text {
  font-size: 30px;
  line-height: 44px;
  font-weight: 300;
  width: calc(100% - 70px);
  padding-left: 12px;
}

.service-b2 .section-header .l-line {
  max-width: 854px;
}
.service-b2 .section-content {
  max-width: 1000px;
}
.service-b2 .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: -25px;
}
.service-b2 .list .item {
  width: calc(100% / 3 - 25px * 2);
  padding: 15px;
  margin: 25px;
}
.service-b2 .list .item .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
.service-b2 .list .item .number {
  font-size: 100px;
  line-height: 120px;
  font-weight: 700;
  width: 58px;
  font-family: "Roboto", serif;
}
.service-b2 .list .item .main-text {
  font-size: 36px;
  line-height: 52px;
  font-weight: 500;
  width: calc(100% - 58px);
  padding-left: 51px;
}
.service-b2 .list .item .main-text span {
  display: block;
}
.service-b2 .list .item .sub-text {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .05em;
  font-weight: 300;
  color: #1A1A1A;
  text-align: justify;
}

.service-b3 {
  background-color: #F9F9F9;
}
.service-b3 .container {
  padding: 110px 30px 300px;
}
.service-b3 .section-header .l-line {
  max-width: 264px;
}
.service-b3 .section-content {
  max-width: 720px;
}
.service-b3 .top-text {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  margin-bottom: 16px;
  font-family: "Roboto", serif;
}
.service-b3 .bottom-text {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  font-family: "Roboto", serif;
}
.service-b3 .list {
  background-image: url(../images/flow-line.png);
  background-size: 2px auto;
  background-position: center top;
  background-repeat: repeat-y;
  padding-top: 42px;
  padding-bottom: 74px;
}
.service-b3 .list .item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background-color: #F8F8F8;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.service-b3 .list .item:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 100px;
  width: 1px;
  height: calc(100% - 20px * 2);
  background-color: #BCC4DC;
}
.service-b3 .list .item + .item {
  margin-top: 40px;
}
.service-b3 .list .item .number {
  font-size: 60px;
  line-height: 72px;
  font-weight: 700;
  width: 80px;
  font-family: "Roboto", serif;
  padding-left: 10px;
}
.service-b3 .list .item .content {
  width: calc(100% - 80px);
  padding-left: 40px;
  min-height: 111px;
}
.service-b3 .list .item .main-text {
  font-size: 30px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.service-b3 .list .item .main-text span {
  display: block;
}
.service-b3 .list .item ul {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .06em;
  font-weight: 300;
  color: #1A1A1A;
  text-align: justify;
  margin: 0;
  padding-left: 1.25em;
}

.service-c1 .section-header .l-line {
  max-width: 794px;
}
.service-c1 .section-content {
  max-width: 1000px;
}
.service-c1 .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: -25px;
}
.service-c1 .list .item {
  width: calc(100% / 3 - 25px * 2);
  padding: 15px;
  margin: 25px;
}
.service-c1 .list .item .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  margin-bottom: 10px;
}
.service-c1 .list .item .number {
  font-size: 100px;
  line-height: 120px;
  font-weight: 700;
  width: 58px;
  font-family: "Roboto", serif;
}
.service-c1 .list .item .main-text {
  font-size: 36px;
  line-height: 52px;
  font-weight: 500;
  width: calc(100% - 58px);
  padding-left: 51px;
}
.service-c1 .list .item .main-text span {
  display: block;
}
.service-c1 .list .item .sub-text {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .05em;
  font-weight: 300;
  color: #1A1A1A;
  text-align: justify;
}

.service-c2 {
  background-color: #F9F9F9;
}
.service-c2 .container {
  padding: 110px 30px 300px;
}
.service-c2 .section-header .l-line {
  max-width: 264px;
}
.service-c2 .section-content {
  max-width: 720px;
}
.service-c2 .top-text {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  margin-bottom: 16px;
  font-family: "Roboto", serif;
}
.service-c2 .bottom-text {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  font-family: "Roboto", serif;
}
.service-c2 .list {
  background-image: url(../images/flow-line.png);
  background-size: 2px auto;
  background-position: center top;
  background-repeat: repeat-y;
  padding-top: 42px;
  padding-bottom: 74px;
}
.service-c2 .list .item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background-color: #F8F8F8;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.service-c2 .list .item:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 100px;
  width: 1px;
  height: calc(100% - 20px * 2);
  background-color: #BCC4DC;
}
.service-c2 .list .item + .item {
  margin-top: 40px;
}
.service-c2 .list .item .number {
  font-size: 60px;
  line-height: 72px;
  font-weight: 700;
  width: 80px;
  font-family: "Roboto", serif;
  padding-left: 10px;
}
.service-c2 .list .item .content {
  width: calc(100% - 80px);
  padding-left: 40px;
  min-height: 111px;
}
.service-c2 .list .item .main-text {
  font-size: 30px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.service-c2 .list .item .main-text span {
  display: block;
}
.service-c2 .list .item ul {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .06em;
  font-weight: 300;
  color: #1A1A1A;
  text-align: justify;
  margin: 0;
  padding-left: 1.25em;
}

@media (max-width: 1140px) and (min-width: 1025px) {
  .service-a2 .swiper-slide {
    width: calc(100% / 2);
  }
}
@media (max-width: 1024px) and (min-width: 767px) {
  .service-a1 .list {
    margin: -10px;
  }
  .service-a1 .list .item {
    width: calc(100% / 3 - 10px * 2);
    margin: 10px;
  }
  .service-a1 .list .item .main-text {
    font-size: 3.515625vw;
    padding-left: 4.98vw;
    white-space: nowrap;
  }

  .service-a2 .swiper-slide {
    width: calc(100% / 2);
  }

  .service-b2 .list {
    margin: -10px;
  }
  .service-b2 .list .item {
    width: calc(100% / 3 - 10px * 2);
    margin: 10px;
  }
  .service-b2 .list .item .main-text {
    font-size: 3.515625vw;
    padding-left: 4.98vw;
    white-space: nowrap;
  }

  .service-c1 .list {
    margin: -10px;
  }
  .service-c1 .list .item {
    width: calc(100% / 3 - 10px * 2);
    margin: 10px;
  }
  .service-c1 .list .item .main-text {
    font-size: 3.515625vw;
    padding-left: 4.98vw;
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .page-service .page-header {
    height: 720px;
  }
  .page-service .page-header .container {
    padding: 0 12px;
    max-width: 375px;
  }
  .page-service .page-header .main-text {
    font-size: 50px;
    line-height: 72px;
    text-align: center;
  }
  .page-service .page-header .sub-text {
    font-size: 20px;
    line-height: 28px;
  }
  .page-service .page-header .btn-primary {
    width: 300px;
    display: block;
    margin: 0 auto;
  }

  .service-section .container {
    padding: 110px 12px 130px;
  }
  .service-section .section-header .title {
    font-size: 40px;
    line-height: 52px;
  }
  .service-section .section-header .title span {
    display: block;
    width: 100%;
  }
  .service-section .section-header .title span + span {
    margin-left: 0;
  }
  .service-section .section-header .sub-title {
    font-size: 30px;
    line-height: 36px;
  }

  .service-a1 .section-header .l-line {
    max-width: 369px;
  }
  .service-a1 .section-content {
    max-width: 300px;
  }
  .service-a1 .list {
    display: block;
    margin: 0;
  }
  .service-a1 .list .item {
    width: 100%;
    padding: 15px;
    margin: 0;
  }
  .service-a1 .list .item + .item {
    margin-top: 20px;
  }

  .service-a2 .container {
    max-width: 375px;
    padding-left: 0;
    padding-right: 0;
  }
  .service-a2 .section-header .title span {
    display: inline;
    width: auto;
  }
  .service-a2 .section-header .title span + span {
    margin-left: 10px;
  }
  .service-a2 .section-header .l-line {
    max-width: 369px;
  }
  .service-a2 .swiper-slide {
    width: 100%;
    padding: 0 12px;
  }
  .service-a2 .swiper-button-group {
    position: static;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
  }
  .service-a2 .swiper-button-prev,
  .service-a2 .swiper-button-next {
    top: 40%;
  }
  .service-a2 .item {
    min-height: inherit;
  }
  .service-a2 .item .info-group {
    margin-bottom: 28px;
  }
  .service-a2 .item .info + .info {
    margin-top: 8px;
  }

  .service-a3 .section-header .l-line {
    max-width: 369px;
  }
  .service-a3 .section-content {
    max-width: 375px;
  }
  .service-a3 .list {
    padding-top: 66px;
    padding-bottom: 66px;
  }
  .service-a3 .list .item {
    padding: 15px 10px;
  }
  .service-a3 .list .item:before {
    top: 10px;
    left: 50px;
    height: calc(100% - 10px * 2);
  }
  .service-a3 .list .item + .item {
    margin-top: 40px;
  }
  .service-a3 .list .item .number {
    font-size: 44px;
    line-height: 52px;
    width: 40px;
    padding-left: 4px;
  }
  .service-a3 .list .item .content {
    width: calc(100% - 40px);
    padding-left: 15px;
    min-height: 145px;
  }
  .service-a3 .list .item .main-text {
    font-size: 26px;
    line-height: 38px;
  }
  .service-a3 .list .item ul {
    font-size: 18px;
    line-height: 30px;
  }

  .service-a4 .container {
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 375px;
  }
  .service-a4 .main-text {
    font-size: 40px;
    line-height: 48px;
    letter-spacing: .03em;
  }
  .service-a4 .action {
    margin-top: 60px;
  }
  .service-a4 .btn-primary {
    width: 100%;
  }

  .service-b1 .container {
    max-width: 375px;
  }
  .service-b1 .section-header .l-line {
    max-width: 369px;
  }
  .service-b1 .list {
    display: block;
    margin: 0;
  }
  .service-b1 .list .item {
    width: 100%;
    padding: 10px;
    margin: 0;
  }
  .service-b1 .list .item + .item {
    margin-top: 20px;
  }
  .service-b1 .list .item .number {
    width: 50px;
    height: 50px;
    font-size: 30px;
    line-height: 50px;
  }
  .service-b1 .list .item .main-text {
    font-size: 22px;
    line-height: 32px;
    width: calc(100% - 50px);
    padding-left: 10px;
  }

  .service-b2 .section-header .l-line {
    max-width: 369px;
  }
  .service-b2 .section-content {
    max-width: 300px;
  }
  .service-b2 .list {
    display: block;
    margin: 0;
  }
  .service-b2 .list .item {
    width: 100%;
    padding: 15px;
    margin: 0;
  }
  .service-b2 .list .item + .item {
    margin-top: 20px;
  }

  .service-b3 .container {
    max-width: 375px;
    padding-bottom: 200px;
  }
  .service-b3 .section-header .l-line {
    max-width: 369px;
  }
  .service-b3 .section-content {
    max-width: 375px;
  }
  .service-b3 .list {
    padding-top: 66px;
    padding-bottom: 66px;
  }
  .service-b3 .list .item {
    padding: 15px 10px;
  }
  .service-b3 .list .item:before {
    top: 10px;
    left: 50px;
    height: calc(100% - 10px * 2);
  }
  .service-b3 .list .item + .item {
    margin-top: 40px;
  }
  .service-b3 .list .item .number {
    font-size: 44px;
    line-height: 52px;
    width: 40px;
    padding-left: 4px;
  }
  .service-b3 .list .item .content {
    width: calc(100% - 40px);
    padding-left: 15px;
    min-height: 145px;
  }
  .service-b3 .list .item .main-text {
    font-size: 26px;
    line-height: 38px;
  }
  .service-b3 .list .item ul {
    font-size: 18px;
    line-height: 30px;
  }

  .service-c1 .section-header .l-line {
    max-width: 369px;
  }
  .service-c1 .section-content {
    max-width: 300px;
  }
  .service-c1 .list {
    display: block;
    margin: 0;
  }
  .service-c1 .list .item {
    width: 100%;
    padding: 15px;
    margin: 0;
  }
  .service-c1 .list .item + .item {
    margin-top: 20px;
  }

  .service-c2 .container {
    max-width: 375px;
    padding-bottom: 200px;
  }
  .service-c2 .section-header .l-line {
    max-width: 369px;
  }
  .service-c2 .section-content {
    max-width: 375px;
  }
  .service-c2 .list {
    padding-top: 66px;
    padding-bottom: 66px;
  }
  .service-c2 .list .item {
    padding: 15px 10px;
  }
  .service-c2 .list .item:before {
    top: 10px;
    left: 50px;
    height: calc(100% - 10px * 2);
  }
  .service-c2 .list .item + .item {
    margin-top: 40px;
  }
  .service-c2 .list .item .number {
    font-size: 44px;
    line-height: 52px;
    width: 40px;
    padding-left: 4px;
  }
  .service-c2 .list .item .content {
    width: calc(100% - 40px);
    padding-left: 15px;
    min-height: 145px;
  }
  .service-c2 .list .item .main-text {
    font-size: 26px;
    line-height: 38px;
  }
  .service-c2 .list .item ul {
    font-size: 18px;
    line-height: 30px;
  }
}
.page-case .page-header {
  height: 250px;
}
.page-case .page-content {
  padding-top: 40px;
  padding-bottom: 300px;
}
.page-case .page-content .container {
  max-width: 1338px;
}
.page-case .top-text {
  font-size: 20px;
  line-height: 36px;
  font-weight: 500;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 110px;
}

.case-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: -20px -10px;
}
.case-list .item {
  position: relative;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: block;
  width: calc(100% / 5 - 10px * 2);
  margin: 20px 10px;
}
.case-list .item .image {
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  position: relative;
  overflow: hidden;
}
.case-list .item .image:before {
  content: "";
  position: relative;
  display: block;
  padding-top: 41.666666666%;
}
.case-list .item .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-list .item:active {
  filter: brightness(1.1);
}
@media (hover: hover) {
  .case-list .item:hover {
    filter: brightness(1.1);
  }
}

@media (max-width: 767px) {
  .page-case .page-content {
    padding-top: 20px;
    padding-bottom: 200px;
  }
  .page-case .page-content .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-case .top-text {
    font-weight: 300;
    letter-spacing: .02em;
  }

  .case-list {
    margin: -5px -6px;
  }
  .case-list .item {
    width: calc(100% / 2 - 6px * 2);
    margin: 5px 6px;
  }
}
.page-faq .page-header {
  height: 250px;
}
.page-faq .page-content {
  padding-top: 37px;
  padding-bottom: 300px;
}
.page-faq .page-content .container {
  max-width: 1338px;
}
.page-faq .faq-top {
  padding-top: 94px;
  margin-bottom: 110px;
}
.page-faq .top-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 100;
  text-align: center;
  color: #000;
}

.faq-menu {
  position: absolute;
  top: 0;
  left: calc(50% - 312px / 2);
  z-index: 2;
}
.faq-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  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;
  background-color: #fff;
  width: 312px;
}
.faq-menu ul li {
  width: 50%;
}
.faq-menu ul li + li {
  margin-left: -2px;
}
.faq-menu ul a {
  display: block;
  color: #505C7D;
  border: 2px solid #505C7D;
  color: #505C7D;
  font-size: 20px;
  line-height: 50px;
  letter-spacing: .025em;
  color: #505C7D;
  text-align: center;
}
.faq-menu ul a.active, .faq-menu ul a.mPS2id-highlight-first, .faq-menu ul a:active {
  color: #fff;
  background-color: #505C7D;
}
@media (hover: hover) {
  .faq-menu ul a:hover {
    color: #fff;
    background-color: #505C7D;
  }
}

.faq-section {
  position: relative;
}
.faq-section .section-anchor {
  position: absolute;
  top: -200px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.faq-section + .faq-section {
  margin-top: 110px;
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.faq-section .section-header .title {
  font-size: 30px;
  line-height: 44px;
  font-weight: 700;
  text-align: center;
  border-bottom: 4px solid #505C7D;
  margin: 0 auto;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.faq-section .item {
  position: relative;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: block;
  background-color: #F8F8F8;
  padding: 0;
  font-size: 16px;
  line-height: 30px;
}
.faq-section .item.active .item-content {
  display: block;
  -moz-animation: fadeIn 0.5s both;
  -webkit-animation: fadeIn 0.5s both;
  animation: fadeIn 0.5s both;
}
.faq-section .item.active .item-header .icon-plus {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.faq-section .item:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 60px;
  width: 1px;
  height: calc(100% - 10px * 2);
  background-color: #BCC4DC;
}
.faq-section .item + .item {
  margin-top: 15px;
}
.faq-section .item-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
}
.faq-section .item-header .icon-plus {
  position: absolute;
  top: calc(50% - 24px / 2);
  right: 17px;
  width: 24px;
  height: 24px;
  background-image: url(../images/icon-plus.svg);
}
.faq-section .item-content {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .06em;
  font-weight: 300;
  padding-top: 5px;
  padding-left: 72px;
  padding-right: 12px;
  padding-bottom: 30px;
  color: #1A1A1A;
  display: none;
  text-align: justify;
}
.faq-section .item .number {
  width: 60px;
  font-size: 30px;
  line-height: 26px;
  font-weight: 500;
  font-family: "Lexend", serif;
  text-align: center;
}
.faq-section .item .main-text {
  width: calc(100% - 60px);
  position: relative;
  padding: 0 12px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}
.faq-section .item a {
  color: #1A1A1A;
}
.faq-section .item a:active {
  opacity: .5;
}
@media (hover: hover) {
  .faq-section .item a:hover {
    opacity: .5;
  }
}

@media (max-width: 767px) {
  .page-faq .page-content {
    padding-top: 40px;
    padding-bottom: 200px;
  }
  .page-faq .page-content .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-faq .top-text {
    font-size: 20px;
    line-height: 28px;
  }

  .faq-section .item {
    font-size: 18px;
    line-height: 28px;
  }
  .faq-section .item.active .item-header .icon-plus {
    right: 12px;
  }
  .faq-section .item-header {
    padding: 12px 0;
  }
  .faq-section .item-header .icon-plus {
    top: calc(50% - 27px / 2);
    right: 8px;
    width: 27px;
    height: 27px;
    background-image: url(../images/icon-plus_s.svg);
  }
  .faq-section .item-content {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: .04em;
    padding-top: 0;
    padding-right: 15px;
    padding-bottom: 24px;
  }
  .faq-section .item .main-text {
    font-size: 22px;
    line-height: 32px;
    padding-right: 50px;
  }
}
.page-contact .page-header {
  height: 250px;
}
.page-contact .page-content {
  padding-top: 40px;
  padding-bottom: 300px;
}
.page-contact .page-content .container {
  max-width: 1338px;
}

.contact .grid {
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.contact .grid-left {
  width: 43.185298621%;
}
.contact .grid-right {
  width: calc(100% - 43.185298621%);
  padding-left: 85px;
}
.contact .contact-info {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: .06em;
}
.contact .contact-info .main-text {
  font-size: 30px;
  line-height: 44px;
  font-weight: 700;
  margin-bottom: 40px;
}
.contact .contact-info .sub-text {
  margin-bottom: 80px;
}
.contact .contact-info .list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Lexend", 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', Arial, Helvetica, sans-serif;
}
.contact .contact-info .list li {
  position: relative;
  padding-left: 33px;
}
.contact .contact-info .list li + li {
  margin-top: 10px;
}
.contact .contact-info .list .icon {
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
}

.contact-form {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  padding: 20px 20px 40px;
}
.contact-form .section-header {
  margin-bottom: 45px;
}
.contact-form .title {
  font-size: 30px;
  line-height: 44px;
  font-weight: 700;
  text-align: center;
  border-bottom: 4px solid #505C7D;
  width: 146px;
  margin: 0 auto;
}
.contact-form .form-section {
  border-bottom: 1px solid #E9E9E9;
  max-width: 440px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 10px;
}
.contact-form .form-section + .form-section {
  margin-top: 20px;
}
.contact-form .form-label {
  width: 90px;
}
.contact-form .form-content {
  width: calc(100% - 90px);
}
.contact-form .form-control {
  padding: 0;
  height: 24px;
  line-height: 24px;
  border: 0;
}
.contact-form .checkbox-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;
  margin: -10px;
  margin-top: 20px;
  margin-bottom: 35px;
  padding: 0 10px;
}
.contact-form .checkbox-group .form-checkbox {
  margin: 10px;
}
.contact-form .note {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E9E9E9;
}
.contact-form .note-header {
  width: 90px;
  font-weight: 500;
}
.contact-form .note-content {
  width: calc(100% - 90px);
  color: #000;
  font-weight: 300;
}
.contact-form .note .form-control {
  height: 100px;
  font-weight: 300;
}
.contact-form .action {
  padding-top: 58px;
}
.contact-form .btn-primary {
  max-width: 278px;
  padding: 0;
  height: 40px;
  line-height: 40px;
  display: block;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .025em;
}
.contact-form .captcha {
  margin-top: 10px;
  padding-right: 0;
  max-width: 440px;
}
.contact-form .captcha .form-content {
  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: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.contact-form .captcha .form-control {
  width: calc(100% - 119px - 20px);
  margin-right: 20px;
}
.contact-form .captcha .image {
  max-width: 119px;
}

.contact-map {
  margin-top: 88px;
}
.contact-map .post-iframe {
  padding-bottom: 412px;
}

.form-control {
  padding: 8px;
  font-size: 16px;
  height: 40px;
  line-height: 24px;
  border: 1px solid #505C7D;
  background-color: #fff;
  color: #000;
  overflow: hidden;
  font-family: 'Noto Sans TC', 'Microsoft JhengHei', '微軟正黑體', 'Microsoft YaHei', Arial, Helvetica, sans-serif;
}
.form-control::placeholder {
  color: #a9a9a9;
}
.form-control:focus {
  border-color: #505C7D;
  box-shadow: 0;
}
.form-control.is-invalid {
  background: none;
  color: #ff4500;
}
.form-control:disabled, .form-control.disabled {
  border-color: #e9e9e9;
  background-color: #f8f8f8;
  color: #c2c2c2;
}
.form-control:disabled::placeholder, .form-control.disabled::placeholder {
  color: #c2c2c2;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0;
}

.form-select {
  padding: 8px 32px 8px 10px;
  font-size: 13px;
  line-height: 24px;
  color: #595757;
  background-color: #fff;
  background-image: url(../images/select-arrow2.svg);
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px 18px;
  border: 1px solid #e4edee;
  border-radius: 10px;
}
.form-select:disabled, .form-select.disabled {
  background-color: #f8f8f8;
  background-image: url(../images/select-arrow.svg);
}

.form-check {
  position: relative;
  padding: 0;
  margin: 0;
}
.form-check .form-check-input {
  display: none;
}
.form-check .form-check-input:checked + .form-check-label:after {
  display: block;
}
.form-check.checked .form-check-label:after {
  display: block;
}
.form-check .form-check-input + .form-check-label {
  transition: .7s ease;
}

.form-radio .form-check-input:disabled + .form-check-label {
  color: #505C7D;
}
.form-radio .form-check-input:disabled + .form-check-label:before {
  border-color: #505C7D;
  background-color: #f8f8f8;
}
.form-radio .form-check-label {
  position: relative;
  padding: 3px 0;
  padding-left: 40px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  display: block;
  color: #505C7D;
}
.form-radio .form-check-label:before {
  content: '';
  display: inline-block;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 0;
  border: 2px solid #505C7D;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.form-radio .form-check-label:after {
  content: '';
  background-color: #505C7D;
  position: absolute;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border-radius: 50%;
  top: 5px;
  left: 5px;
  display: none;
}

.form-checkbox .form-check-input:disabled + .form-check-label {
  color: #505C7D;
}
.form-checkbox .form-check-input:disabled + .form-check-label:before {
  border-color: #505C7D;
  background-color: #f8f8f8;
}
.form-checkbox .form-check-label {
  position: relative;
  padding: 3px 0;
  padding-left: 40px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  cursor: pointer;
  display: block;
  color: #505C7D;
}
.form-checkbox .form-check-label:before {
  content: '';
  display: inline-block;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  border-radius: 0;
  width: 30px;
  height: 30px;
  border: 0;
  border: 2px solid #505C7D;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.form-checkbox .form-check-label:after {
  content: '';
  background-color: #505C7D;
  position: absolute;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  top: 5px;
  left: 5px;
  display: none;
}

@media (max-width: 767px) {
  .page-contact .page-content {
    padding-top: 40px;
    padding-bottom: 200px;
  }
  .page-contact .page-content .container {
    padding: 0 12px;
  }

  .contact .grid {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .contact .grid-left {
    width: 100%;
  }
  .contact .grid-right {
    width: 100%;
    padding-left: 0;
    margin-bottom: 40px;
  }

  .contact-form {
    padding: 20px 20px 40px;
  }
  .contact-form .form-section {
    padding: 10px 0;
  }
  .contact-form .form-label {
    width: 104px;
  }
  .contact-form .form-content {
    width: calc(100% - 104px);
  }
  .contact-form .checkbox-group {
    margin: -7px;
    margin-top: 20px;
    margin-bottom: 24px;
    padding: 0;
  }
  .contact-form .checkbox-group .form-checkbox {
    margin: 7px;
  }
  .contact-form .note {
    padding: 0;
    padding-bottom: 10px;
  }
  .contact-form .note-header {
    width: 96px;
  }
  .contact-form .note-content {
    width: calc(100% - 96px);
  }
  .contact-form .captcha {
    margin-top: 5px;
  }
  .contact-form .action {
    padding-top: 44px;
  }

  .contact-map {
    margin-top: 40px;
    margin-left: -12px;
    margin-right: -12px;
    width: calc(100% + 12px * 2);
  }
}
.page-other .page-header {
  height: 250px;
}
.page-other .page-content {
  padding-top: 110px;
  padding-bottom: 300px;
}
.page-other .page-content .container {
  max-width: 1338px;
}

.other-list .item {
  position: relative;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: block;
  border: 1px solid #BCC4DC;
  background-color: #F8F8F8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 15px 0;
  font-size: 18px;
  line-height: 26px;
}
.other-list .item + .item {
  margin-top: 20px;
}
.other-list .item-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-left: 25px;
  width: calc(100% - 108px);
  position: relative;
  min-height: 30px;
}
.other-list .item-right {
  position: relative;
  padding: 2px 0;
  padding-right: 36px;
  text-align: right;
  width: 108px;
  font-weight: 500;
  color: #1A1A1A;
  min-height: 30px;
}
.other-list .item .year {
  width: 66px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: .06em;
  font-family: "Roboto", serif;
}
.other-list .item .main-text {
  width: calc(100% - 66px);
  position: relative;
  font-weight: 500;
  padding: 2px 16px;
  min-height: 30px;
}
.other-list .item .main-text:before, .other-list .item .main-text:after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #BCC4DC;
}
.other-list .item .main-text:before {
  left: 0;
}
.other-list .item .main-text:after {
  right: 0;
}
.other-list .item a {
  color: #1A1A1A;
}
.other-list .item a:active {
  opacity: .5;
}
@media (hover: hover) {
  .other-list .item a:hover {
    opacity: .5;
  }
}

@media (max-width: 767px) {
  .page-other .page-content {
    padding-top: 110px;
    padding-bottom: 200px;
  }
  .page-other .page-content .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .other-list .item-left {
    padding-left: 10px;
    width: calc(100% - 62px);
  }
  .other-list .item-right {
    padding-right: 13px;
    width: 62px;
  }
  .other-list .item .year {
    width: 64px;
  }
  .other-list .item .main-text {
    width: calc(100% - 64px);
    padding: 2px 15px;
  }
}
.page-privacy .page-header {
  height: 250px;
}
.page-privacy .page-content {
  padding-top: 40px;
  padding-bottom: 300px;
}
.page-privacy .page-content .container {
  max-width: 1338px;
}

.privacy {
  max-width: 1100px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .06em;
  font-weight: 300;
  color: #1A1A1A;
  text-align: justify;
}
.privacy .privacy-section + .privacy-section {
  margin-top: 40px;
}
.privacy .heading {
  color: #505C7D;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.privacy .heading span {
  border-bottom: 4px solid #505C7D;
  padding-bottom: 8px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.privacy ol {
  list-style: decimal;
  padding-left: 1.25em;
  margin: 0;
}
.privacy ol ol {
  list-style: none;
  counter-reset: my-counter;
  padding-left: 1.5em;
}
.privacy ol ol li {
  counter-increment: my-counter;
  position: relative;
}
.privacy ol ol li:before {
  content: "(" counter(my-counter) ")";
  position: absolute;
  top: 0;
  left: -1.5em;
}

@media (max-width: 767px) {
  .page-privacy .page-content {
    padding-top: 40px;
    padding-bottom: 200px;
  }
  .page-privacy .page-content .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.page-IR .page-header {
  height: 250px;
}
.page-IR .page-content {
  padding-top: 40px;
  padding-bottom: 300px;
}
.page-IR .page-content .container {
  max-width: 1338px;
}
.page-IR .top-menu {
  margin-bottom: 40px;
}
.page-IR .nav {
  margin: -5px -10px;
}
.page-IR .nav .nav-link {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: #505C7D;
  padding: 0;
  margin: 5px 10px;
  position: relative;
}
.page-IR .nav .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #505C7D;
  display: block;
  opacity: 0;
}
.page-IR .nav .nav-link.active:before {
  opacity: 1;
}

.IR-section {
  max-width: 982px;
  margin: 0 auto;
}
.IR-section .title {
  font-size: 30px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 0;
  color: #1A1A1A;
}
.IR-section .title span {
  border-bottom: 3px solid #F2ED04;
  display: inline-block;
}

.financial-a {
  max-width: 832px;
}
.financial-a .section-header {
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 20px;
}
.financial-a .section-header__left {
  width: calc(100% - 240px);
}
.financial-a .section-header__right {
  width: 240px;
}
.financial-a .select-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-weight: 300;
  color: #4D4F5C;
}
.financial-a .select-menu span {
  width: calc(100% - 167px);
}
.financial-a .select-menu .form-select {
  width: 167px;
}
.financial-a .form-select {
  padding: 4px 32px 4px 8px;
  font-size: 16px;
  line-height: 24px;
  color: #7D7F8D;
  background-color: #fff;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 16px 16px;
  border: 1px solid #D7DAE2;
  border-radius: 0;
}
.financial-a .table {
  border: 1px solid #F1F1F3;
  background-color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.financial-a .table th {
  vertical-align: middle;
  font-weight: 300;
  background-color: #505C7D;
  color: #fff;
}
.financial-a .table th,
.financial-a .table td {
  padding: 12px 20px;
  border: 0;
}
.financial-a .table th:nth-child(2),
.financial-a .table td:nth-child(2) {
  text-align: right;
}
.financial-a .table th:nth-child(3),
.financial-a .table td:nth-child(3) {
  text-align: right;
}
.financial-a .table tr:nth-child(2n - 1) td {
  background-color: #F5F6FA;
}
.financial-a .bottom-text {
  text-align: right;
  color: #505C7D;
  font-weight: 300;
  letter-spacing: .06em;
  margin-top: 10px;
}

.financial-b .section-header {
  margin-bottom: 20px;
}
.financial-b .list .item {
  position: relative;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: block;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 15px 0;
  font-size: 18px;
  line-height: 26px;
}
.financial-b .list .item + .item {
  margin-top: 20px;
}
.financial-b .list .item-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-left: 25px;
  width: calc(100% - 108px);
  position: relative;
  min-height: 30px;
}
.financial-b .list .item-right {
  position: relative;
  padding: 2px 0;
  padding-right: 36px;
  text-align: right;
  width: 108px;
  font-weight: 500;
  color: #1A1A1A;
  min-height: 30px;
}
.financial-b .list .item .year {
  width: 66px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: .06em;
  font-family: "Roboto", serif;
}
.financial-b .list .item .main-text {
  width: calc(100% - 66px);
  position: relative;
  font-weight: 500;
  padding: 2px 16px;
  min-height: 30px;
}
.financial-b .list .item .main-text:before, .financial-b .list .item .main-text:after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #BCC4DC;
}
.financial-b .list .item .main-text:before {
  left: 0;
}
.financial-b .list .item .main-text:after {
  right: 0;
}
.financial-b .list .item a {
  color: #1A1A1A;
}
.financial-b .list .item a:active {
  opacity: .5;
}
@media (hover: hover) {
  .financial-b .list .item a:hover {
    opacity: .5;
  }
}

.shareholder-a {
  margin-bottom: 40px;
}
.shareholder-a .section-content {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 10px 28px 70px;
}
.shareholder-a .main-title {
  font-size: 40px;
  line-height: 58px;
  font-weight: 700;
  margin-bottom: 25px;
}
.shareholder-a .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;
}
.shareholder-a .info-group + .info {
  margin-top: 20px;
}
.shareholder-a .info-group .info {
  width: 100%;
  max-width: 245px;
}
.shareholder-a .info-group .info + .info {
  margin-top: 0;
}
.shareholder-a .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  line-height: 29px;
}
.shareholder-a .info + .info {
  margin-top: 20px;
}
.shareholder-a .info-header {
  width: 56px;
  font-weight: 700;
  letter-spacing: .06em;
  border-right: 1px solid #BCC4DC;
}
.shareholder-a .info-content {
  width: calc(100% - 56px);
  padding-left: 15px;
  font-weight: 300;
}

.shareholder-a2 .section-header {
  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: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 20px;
}
.shareholder-a2 .section-header__left {
  margin-right: 50px;
}
.shareholder-a2 .section-header__right {
  width: 240px;
}
.shareholder-a2 .title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 500;
}
.shareholder-a2 .select-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-weight: 300;
  color: #4D4F5C;
}
.shareholder-a2 .select-menu span {
  width: calc(100% - 167px);
}
.shareholder-a2 .select-menu .form-select {
  width: 167px;
}
.shareholder-a2 .form-select {
  padding: 4px 32px 4px 8px;
  font-size: 16px;
  line-height: 24px;
  color: #7D7F8D;
  background-color: #fff;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 16px 16px;
  border: 1px solid #D7DAE2;
  border-radius: 0;
}
.shareholder-a2 .list .item {
  position: relative;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: block;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 15px 0;
  font-size: 18px;
  line-height: 26px;
}
.shareholder-a2 .list .item + .item {
  margin-top: 20px;
}
.shareholder-a2 .list .item-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-left: 25px;
  width: calc(100% - 108px);
  position: relative;
  min-height: 30px;
}
.shareholder-a2 .list .item-right {
  position: relative;
  padding: 2px 0;
  padding-right: 36px;
  text-align: right;
  width: 108px;
  font-weight: 500;
  color: #1A1A1A;
  min-height: 30px;
}
.shareholder-a2 .list .item .year {
  width: 66px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: .06em;
  font-family: "Roboto", serif;
}
.shareholder-a2 .list .item .main-text {
  width: calc(100% - 66px);
  position: relative;
  font-weight: 500;
  padding: 2px 16px;
  min-height: 30px;
}
.shareholder-a2 .list .item .main-text:before, .shareholder-a2 .list .item .main-text:after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #BCC4DC;
}
.shareholder-a2 .list .item .main-text:before {
  left: 0;
}
.shareholder-a2 .list .item .main-text:after {
  right: 0;
}
.shareholder-a2 .list .item a {
  color: #1A1A1A;
}
.shareholder-a2 .list .item a:active {
  opacity: .5;
}
@media (hover: hover) {
  .shareholder-a2 .list .item a:hover {
    opacity: .5;
  }
}

.shareholder-b .section-header {
  margin-bottom: 0;
}
.shareholder-b .section-header .text {
  margin-top: 8px;
  font-weight: 300;
}
.shareholder-b .section-header .top-text {
  text-align: right;
  margin-bottom: 5px;
  font-weight: 300;
}
.shareholder-b .section-content {
  overflow-x: auto;
  margin: 0 auto;
}
.shareholder-b .table {
  border: 1px solid #F1F1F3;
  background-color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  color: #4D4F5C;
  min-width: 750px;
  word-break: break-all;
}
.shareholder-b .table th {
  vertical-align: middle;
  font-weight: 300;
  background-color: #505C7D;
  color: #fff;
}
.shareholder-b .table th,
.shareholder-b .table td {
  padding: 12px 20px;
  border: 0;
}
.shareholder-b .table th:nth-child(1),
.shareholder-b .table td:nth-child(1) {
  text-align: center;
}
.shareholder-b .table th:nth-child(2),
.shareholder-b .table th:nth-child(3) {
  text-align: center;
}
.shareholder-b .table td:nth-child(2) {
  text-align: left;
}
.shareholder-b .table td:nth-child(3) {
  text-align: right;
}
.shareholder-b .table th:nth-child(4),
.shareholder-b .table td:nth-child(4) {
  text-align: right;
}
.shareholder-b .table tr:nth-child(2n - 1) td {
  background-color: #F5F6FA;
}

.shareholder-c .section-header {
  margin-bottom: 20px;
}
.shareholder-c .table {
  border: 1px solid #F1F1F3;
  background-color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  color: #4D4F5C;
  text-align: center;
}
.shareholder-c .table th {
  vertical-align: middle;
  font-weight: 700;
  background-color: #F5F6FA;
  color: #505C7D;
}
.shareholder-c .table th,
.shareholder-c .table td {
  padding: 12px 20px;
  border: 0;
}
.shareholder-c .table tr:nth-child(2n) td {
  background-color: #F5F6FA;
}

.shareholder-c2 {
  margin-top: 70px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  color: #1A1A1A;
}
.shareholder-c2 .section-header {
  margin-bottom: 20px;
}

.shareholder-c3 {
  margin-top: 70px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  color: #1A1A1A;
}
.shareholder-c3 .section-header {
  margin-bottom: 20px;
}
.shareholder-c3 .box {
  color: #505C7D;
  background-color: #F5F6FA;
  padding: 40px;
  margin-bottom: 20px;
  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: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.shareholder-c3 .box .action {
  width: 278px;
  margin-right: 24px;
}
.shareholder-c3 .box .main-text {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
}
.shareholder-c3 .box .btn {
  line-height: 40px;
  height: 40px;
  font-size: 16px;
}

.shareholder-d .section-header {
  margin-bottom: 20px;
}
.shareholder-d .info {
  border: 1px solid #F1F1F3;
  background-color: #fff;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  color: #4D4F5C;
}
.shareholder-d .info + .info {
  margin-top: 80px;
}
.shareholder-d .info-header {
  background-color: #F5F6FA;
  border-bottom: 1px solid #F1F1F3;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #505C7D;
  text-align: center;
  padding: 12px 20px;
}
.shareholder-d .block {
  padding: 16px 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.shareholder-d .block-left {
  width: 320px;
  font-size: 18px;
  line-height: 26px;
  color: #505C7D;
  text-align: center;
}
.shareholder-d .block-right {
  width: calc(100% - 320px);
  padding-left: 40px;
  border-left: 1px solid #E9E9E9;
}
.shareholder-d .block + .block {
  border-top: 1px solid #E9E9E9;
}

.shareholder-e .section-header {
  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: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  margin-bottom: 20px;
}
.shareholder-e .section-header__left {
  width: calc(100% - 208px);
}
.shareholder-e .section-header__right {
  width: 208px;
}
.shareholder-e .select-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-weight: 300;
  color: #4D4F5C;
}
.shareholder-e .select-menu span {
  width: calc(100% - 167px);
}
.shareholder-e .select-menu .form-select {
  width: 167px;
}
.shareholder-e .form-select {
  padding: 4px 32px 4px 8px;
  font-size: 16px;
  line-height: 24px;
  color: #7D7F8D;
  background-color: #fff;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 16px 16px;
  border: 1px solid #D7DAE2;
  border-radius: 0;
}
.shareholder-e .list .item {
  position: relative;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: block;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 15px 0;
  font-size: 18px;
  line-height: 26px;
}
.shareholder-e .list .item + .item {
  margin-top: 20px;
}
.shareholder-e .list .item-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-left: 25px;
  width: calc(100% - 108px);
  position: relative;
  min-height: 30px;
}
.shareholder-e .list .item-right {
  position: relative;
  padding: 2px 0;
  padding-right: 36px;
  text-align: right;
  width: 108px;
  font-weight: 500;
  color: #1A1A1A;
  min-height: 30px;
}
.shareholder-e .list .item .year {
  width: 66px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: .06em;
  font-family: "Roboto", serif;
}
.shareholder-e .list .item .main-text {
  width: calc(100% - 66px);
  position: relative;
  font-weight: 500;
  padding: 2px 16px;
  min-height: 30px;
}
.shareholder-e .list .item .main-text:before, .shareholder-e .list .item .main-text:after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #BCC4DC;
}
.shareholder-e .list .item .main-text:before {
  left: 0;
}
.shareholder-e .list .item .main-text:after {
  right: 0;
}
.shareholder-e .list .item a {
  color: #1A1A1A;
}
.shareholder-e .list .item a:active {
  opacity: .5;
}
@media (hover: hover) {
  .shareholder-e .list .item a:hover {
    opacity: .5;
  }
}

.shareholder-f {
  margin-top: 70px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  color: #1A1A1A;
}
.shareholder-f .section-header {
  margin-bottom: 20px;
}
.shareholder-f .box {
  color: #505C7D;
  background-color: #F5F6FA;
  padding: 20px;
  margin-bottom: 20px;
}
.shareholder-f .box .action {
  max-width: 278px;
  margin: 0 auto;
}
.shareholder-f .box .main-text {
  line-height: 24px;
  font-weight: 500;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 16px;
}
.shareholder-f .box .btn {
  line-height: 40px;
  height: 40px;
  font-size: 16px;
}

.IR-faq .item {
  position: relative;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: block;
  background-color: #F8F8F8;
  padding: 0;
  font-size: 16px;
  line-height: 30px;
}
.IR-faq .item.active .item-content {
  display: block;
  -moz-animation: fadeIn 0.5s both;
  -webkit-animation: fadeIn 0.5s both;
  animation: fadeIn 0.5s both;
}
.IR-faq .item.active .item-header .icon-plus {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.IR-faq .item:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 60px;
  width: 1px;
  height: calc(100% - 10px * 2);
  background-color: #BCC4DC;
}
.IR-faq .item + .item {
  margin-top: 15px;
}
.IR-faq .item-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
}
.IR-faq .item-header .icon-plus {
  position: absolute;
  top: calc(50% - 24px / 2);
  right: 17px;
  width: 24px;
  height: 24px;
  background-image: url(../images/icon-plus.svg);
}
.IR-faq .item-content {
  font-size: 16px;
  line-height: 30px;
  letter-spacing: .06em;
  font-weight: 300;
  padding-top: 5px;
  padding-left: 72px;
  padding-right: 12px;
  padding-bottom: 30px;
  color: #1A1A1A;
  display: none;
  text-align: justify;
  word-break: break-all;
}
.IR-faq .item .number {
  width: 60px;
  font-size: 30px;
  line-height: 26px;
  font-weight: 500;
  font-family: "Lexend", serif;
  text-align: center;
}
.IR-faq .item .main-text {
  width: calc(100% - 60px);
  position: relative;
  padding: 0 12px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}
.IR-faq .item a {
  color: #1A1A1A;
  text-decoration: underline;
}
.IR-faq .item a:active {
  opacity: .5;
}
@media (hover: hover) {
  .IR-faq .item a:hover {
    opacity: .5;
  }
}

@media (max-width: 767px) {
  .page-IR .page-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .page-IR .page-content .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .financial-a .section-header__left {
    width: 100%;
    margin-bottom: 24px;
  }
  .financial-a .section-header__right {
    width: 240px;
    margin: 0 auto;
  }
  .financial-a .title {
    text-align: center;
  }
  .financial-a .table th:nth-child(2) {
    text-align: center;
  }
  .financial-a .table th:nth-child(3) {
    text-align: center;
  }

  .financial-b .list .item-left {
    padding-left: 10px;
    width: calc(100% - 62px);
  }
  .financial-b .list .item-right {
    padding-right: 13px;
    width: 62px;
  }
  .financial-b .list .item .year {
    width: 64px;
  }
  .financial-b .list .item .main-text {
    width: calc(100% - 64px);
    padding: 2px 15px;
    min-height: 56px;
    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;
  }

  .shareholder-a .info-group {
    display: block;
  }
  .shareholder-a .info-group + .info {
    margin-top: 20px;
  }
  .shareholder-a .info-group .info {
    max-width: 100%;
  }
  .shareholder-a .info-group .info + .info {
    margin-top: 20px;
  }

  .shareholder-a2 .section-header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
  .shareholder-a2 .section-header__left {
    margin-right: 0;
    width: auto;
  }
  .shareholder-a2 .section-header__right {
    width: 200px;
  }
  .shareholder-a2 .select-menu span {
    width: calc(100% - 125px);
  }
  .shareholder-a2 .select-menu .form-select {
    width: 125px;
  }
  .shareholder-a2 .list .item-left {
    padding-left: 10px;
    width: calc(100% - 62px);
  }
  .shareholder-a2 .list .item-right {
    padding-right: 13px;
    width: 62px;
  }
  .shareholder-a2 .list .item .year {
    width: 64px;
  }
  .shareholder-a2 .list .item .main-text {
    width: calc(100% - 64px);
    padding: 2px 15px;
    min-height: 56px;
    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;
  }

  .shareholder-c .table {
    border: 0;
  }
  .shareholder-c .table tr:nth-child(2n) td {
    background-color: #fff;
  }
  .shareholder-c .responsiveTable table,
  .shareholder-c .responsiveTable thead,
  .shareholder-c .responsiveTable tbody,
  .shareholder-c .responsiveTable th,
  .shareholder-c .responsiveTable td,
  .shareholder-c .responsiveTable tr {
    display: block;
  }
  .shareholder-c .responsiveTable thead {
    display: none;
  }
  .shareholder-c .responsiveTable tbody tr {
    border: 1px solid #F1F1F3;
    border-bottom: 0;
  }
  .shareholder-c .responsiveTable tbody tr + tr {
    margin-top: 20px;
  }
  .shareholder-c .responsiveTable tr td:first-child {
    border-right: 0;
  }
  .shareholder-c .responsiveTable tr td:nth-child(2) {
    height: 58px;
  }
  .shareholder-c .responsiveTable tr td:nth-child(3) {
    height: 58px;
  }
  .shareholder-c .responsiveTable tr td:nth-child(4) {
    height: 58px;
  }
  .shareholder-c .responsiveTable td {
    border: 0;
    border-bottom: 1px solid #F1F1F3;
    position: relative;
    padding-left: 120px !important;
    width: 100%;
    padding: 5px 10px;
    background-color: #fff;
    text-align: left;
    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: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
  .shareholder-c .responsiveTable .mb-hide {
    display: none;
  }
  .shareholder-c .responsiveTable td:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 100%;
    padding: 5px;
    border-right: 1px solid #F1F1F3;
    text-align: center;
    background-color: #F5F6FA;
    font-size: 16px;
    line-height: 24px;
    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;
  }
  .shareholder-c .responsiveTable td:nth-of-type(1):before {
    content: "年度";
  }
  .shareholder-c .responsiveTable td:nth-of-type(2):before {
    content: "股票股利\A(元/股)";
    white-space: pre;
  }
  .shareholder-c .responsiveTable td:nth-of-type(3):before {
    content: "現金股利\A(元/股)";
    white-space: pre;
  }
  .shareholder-c .responsiveTable td:nth-of-type(4):before {
    content: "除權息\A交易日";
    white-space: pre;
  }
  .shareholder-c .responsiveTable td:nth-of-type(5):before {
    content: "基準日";
  }
  .shareholder-c .responsiveTable td:nth-of-type(6):before {
    content: "發放日";
  }

  .shareholder-c2 {
    margin-top: 40px;
  }

  .shareholder-c3 {
    margin-top: 40px;
  }
  .shareholder-c3 .box {
    display: block;
    padding: 40px 20px;
  }
  .shareholder-c3 .box .action {
    width: 100%;
    max-width: 240px;
    margin: 0 auto 20px;
  }
  .shareholder-c3 .box .main-text {
    text-align: center;
  }

  .shareholder-d .info + .info {
    margin-top: 40px;
  }
  .shareholder-d .block {
    display: block;
  }
  .shareholder-d .block-left {
    width: 100%;
    margin-bottom: 16px;
    text-align: left;
  }
  .shareholder-d .block-right {
    width: 100%;
    padding-left: 0;
    border-left: 0;
  }
  .shareholder-d .block + .block {
    border-top: 1px solid #E9E9E9;
  }

  .shareholder-e .section-header__left {
    width: 100%;
    margin-bottom: 24px;
  }
  .shareholder-e .section-header__right {
    width: 208px;
    margin: 0 auto;
  }
  .shareholder-e .title {
    text-align: center;
  }
  .shareholder-e .list .item-left {
    padding-left: 10px;
    width: calc(100% - 62px);
  }
  .shareholder-e .list .item-right {
    padding-right: 13px;
    width: 62px;
  }
  .shareholder-e .list .item .year {
    width: 64px;
  }
  .shareholder-e .list .item .main-text {
    width: calc(100% - 64px);
    padding: 2px 15px;
    min-height: 56px;
    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;
  }

  .IR-faq .item {
    font-size: 18px;
    line-height: 28px;
  }
  .IR-faq .item.active .item-header .icon-plus {
    right: 12px;
  }
  .IR-faq .item-header {
    padding: 12px 0;
  }
  .IR-faq .item-header .icon-plus {
    top: calc(50% - 27px / 2);
    right: 8px;
    width: 27px;
    height: 27px;
    background-image: url(../images/icon-plus_s.svg);
  }
  .IR-faq .item-content {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: .04em;
    padding-top: 0;
    padding-right: 15px;
    padding-bottom: 24px;
  }
  .IR-faq .item .main-text {
    font-size: 22px;
    line-height: 32px;
    padding-right: 50px;
  }
}
.page-governance .page-header {
  height: 250px;
}
.page-governance .page-content {
  padding-top: 40px;
  padding-bottom: 300px;
}
.page-governance .page-content .container {
  max-width: 1338px;
}
.page-governance .top-menu {
  margin-bottom: 40px;
}
.page-governance .nav {
  margin: -5px -10px;
}
.page-governance .nav .nav-link {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: #505C7D;
  padding: 0;
  margin: 5px 10px;
  position: relative;
}
.page-governance .nav .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #505C7D;
  display: block;
  opacity: 0;
}
.page-governance .nav .nav-link.active:before {
  opacity: 1;
}

.g-section {
  max-width: 982px;
  margin: 0 auto;
}
.g-section .section-header {
  margin-bottom: 20px;
}
.g-section .title {
  font-size: 30px;
  line-height: 44px;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 0;
  color: #1A1A1A;
}
.g-section .title span {
  border-bottom: 3px solid #F2ED04;
  display: inline-block;
}

.structure-a .organization {
  width: calc(100% + 5px * 2);
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 70px;
}
.structure-a .organization img {
  display: block;
  margin: 0 auto;
}
.structure-a .table {
  border: 1px solid #F1F1F3;
  background-color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  color: #4D4F5C;
}
.structure-a .table th,
.structure-a .table td {
  padding: 15px 20px;
  border: 0;
  vertical-align: middle;
  position: relative;
}
.structure-a .table th:first-child:before,
.structure-a .table td:first-child:before {
  display: none;
}
.structure-a .table th:before,
.structure-a .table td:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 1px;
  height: calc(100% - 10px * 2);
  background-color: #E9E9E9;
}
.structure-a .table th {
  font-weight: 700;
  background-color: #F5F6FA;
  color: #505C7D;
  text-align: center;
  padding: 13px 20px;
}
.structure-a .table tr {
  border-top: 1px solid #E9E9E9;
}
.structure-a ol {
  text-align: left;
  padding-left: 1.25em;
  list-style: decimal;
  margin-bottom: 0;
}

.structure-a2 {
  margin-top: 80px;
}
.structure-a2 .table {
  border: 1px solid #F1F1F3;
  background-color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  color: #4D4F5C;
}
.structure-a2 .table th,
.structure-a2 .table td {
  padding: 15px 20px;
  border: 0;
  vertical-align: middle;
  position: relative;
}
.structure-a2 .table th:first-child:before,
.structure-a2 .table td:first-child:before {
  display: none;
}
.structure-a2 .table th:before,
.structure-a2 .table td:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 1px;
  height: calc(100% - 10px * 2);
  background-color: #E9E9E9;
}
.structure-a2 .table th {
  font-weight: 700;
  background-color: #F5F6FA;
  color: #505C7D;
  text-align: center;
  padding: 13px 20px;
}
.structure-a2 .table tr {
  border-top: 1px solid #E9E9E9;
}
.structure-a2 ol {
  text-align: left;
  padding-left: 1.25em;
  list-style: decimal;
  margin-bottom: 0;
}

.directors-a {
  margin-top: 80px;
}
.directors-a .section-content {
  overflow-x: auto;
}
.directors-a .table {
  border: 1px solid #F1F1F3;
  background-color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  color: #4D4F5C;
  min-width: 640px;
}
.directors-a .table th,
.directors-a .table td {
  padding: 15px 20px;
  border: 0;
  vertical-align: middle;
  position: relative;
}
.directors-a .table th:first-child:before,
.directors-a .table td:first-child:before {
  display: none;
}
.directors-a .table th:before,
.directors-a .table td:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 1px;
  height: calc(100% - 10px * 2);
  background-color: #E9E9E9;
}
.directors-a .table th {
  font-weight: 700;
  background-color: #F5F6FA;
  color: #505C7D;
  text-align: center;
  padding: 13px 20px;
}
.directors-a .table tr {
  border-top: 1px solid #E9E9E9;
}

.directors-b .section-content {
  overflow-x: auto;
}
.directors-b .table {
  border: 1px solid #F1F1F3;
  background-color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  color: #4D4F5C;
  min-width: 860px;
}
.directors-b .table th,
.directors-b .table td {
  padding: 15px 20px;
  border: 0;
  vertical-align: middle;
  position: relative;
}
.directors-b .table th:first-child:before,
.directors-b .table td:first-child:before {
  display: none;
}
.directors-b .table th:before,
.directors-b .table td:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 1px;
  height: calc(100% - 10px * 2);
  background-color: #E9E9E9;
}
.directors-b .table th {
  font-weight: 700;
  background-color: #F5F6FA;
  color: #505C7D;
  text-align: center;
  padding: 11px 20px;
}
.directors-b .table td {
  height: 90px;
}
.directors-b .table tr {
  border-top: 1px solid #E9E9E9;
}

.directors-b .section-content {
  overflow-x: auto;
}
.directors-b .table {
  border: 1px solid #F1F1F3;
  background-color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  color: #4D4F5C;
  min-width: 860px;
}
.directors-b .table th,
.directors-b .table td {
  padding: 15px 20px;
  border: 0;
  vertical-align: middle;
  position: relative;
}
.directors-b .table th:first-child:before,
.directors-b .table td:first-child:before {
  display: none;
}
.directors-b .table th:before,
.directors-b .table td:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 1px;
  height: calc(100% - 10px * 2);
  background-color: #E9E9E9;
}
.directors-b .table th {
  font-weight: 700;
  background-color: #F5F6FA;
  color: #505C7D;
  text-align: center;
  padding: 11px 20px;
}
.directors-b .table td {
  height: 90px;
}
.directors-b .table tr {
  border-top: 1px solid #E9E9E9;
}

.directors-c .section-content {
  overflow-x: auto;
}
.directors-c .table {
  border: 1px solid #F1F1F3;
  background-color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  color: #4D4F5C;
  min-width: 860px;
  text-align: center;
}
.directors-c .table th,
.directors-c .table td {
  padding: 27px 8px;
  border: 0;
  vertical-align: middle;
  position: relative;
}
.directors-c .table th:first-child:before,
.directors-c .table td:first-child:before {
  display: none;
}
.directors-c .table th:before,
.directors-c .table td:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 1px;
  height: calc(100% - 10px * 2);
  background-color: #E9E9E9;
}
.directors-c .table th {
  font-weight: 700;
  background-color: #F5F6FA;
  color: #505C7D;
  text-align: center;
  padding: 12px 8px;
}
.directors-c .table th span {
  display: block;
}
.directors-c .table th span + span {
  border-top: 1px solid #505C7D;
  margin-top: 8px;
  padding-top: 8px;
}
.directors-c .table td {
  height: 90px;
}
.directors-c .table tr {
  border-top: 1px solid #E9E9E9;
}

.committee-a .grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  line-height: 30px;
  font-weight: 300;
  color: #1A1A1A;
}
.committee-a .grid-left {
  width: calc(100% - 400px);
  max-width: 400px;
}
.committee-a .grid-right {
  width: 400px;
}
.committee-a .table {
  border: 1px solid #F1F1F3;
  background-color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  color: #4D4F5C;
  text-align: center;
}
.committee-a .table th,
.committee-a .table td {
  padding: 20px 8px;
  border: 0;
  vertical-align: middle;
  position: relative;
}
.committee-a .table th:first-child:before,
.committee-a .table td:first-child:before {
  display: none;
}
.committee-a .table th:before,
.committee-a .table td:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 1px;
  height: calc(100% - 10px * 2);
  background-color: #E9E9E9;
}
.committee-a .table th {
  font-weight: 700;
  background-color: #F5F6FA;
  color: #505C7D;
  text-align: center;
  padding: 13px 8px;
}
.committee-a .table tr {
  border-top: 1px solid #E9E9E9;
}

.committee-a2 {
  margin-top: 120px;
}
.committee-a2 .section-header {
  margin-bottom: 20px;
}
.committee-a2 .select-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  font-weight: 300;
  color: #4D4F5C;
  max-width: 208px;
}
.committee-a2 .select-menu span {
  width: calc(100% - 167px);
}
.committee-a2 .select-menu .form-select {
  width: 167px;
}
.committee-a2 .form-select {
  padding: 4px 32px 4px 8px;
  font-size: 16px;
  line-height: 24px;
  color: #7D7F8D;
  background-color: #fff;
  background-image: url(../images/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 16px 16px;
  border: 1px solid #D7DAE2;
  border-radius: 0;
}
.committee-a2 .list .item {
  position: relative;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: block;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 15px 0;
  font-size: 18px;
  line-height: 26px;
}
.committee-a2 .list .item + .item {
  margin-top: 20px;
}
.committee-a2 .list .item-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  padding-left: 25px;
  width: calc(100% - 108px);
  position: relative;
  min-height: 30px;
}
.committee-a2 .list .item-right {
  position: relative;
  padding: 2px 0;
  padding-right: 36px;
  text-align: right;
  width: 108px;
  font-weight: 500;
  color: #1A1A1A;
  min-height: 30px;
}
.committee-a2 .list .item .year {
  width: 66px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: .06em;
  font-family: "Roboto", serif;
}
.committee-a2 .list .item .main-text {
  width: calc(100% - 66px);
  position: relative;
  font-weight: 500;
  padding: 2px 16px;
  min-height: 30px;
}
.committee-a2 .list .item .main-text:before, .committee-a2 .list .item .main-text:after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #BCC4DC;
}
.committee-a2 .list .item .main-text:before {
  left: 0;
}
.committee-a2 .list .item .main-text:after {
  right: 0;
}
.committee-a2 .list .item a {
  color: #1A1A1A;
}
.committee-a2 .list .item a:active {
  opacity: .5;
}
@media (hover: hover) {
  .committee-a2 .list .item a:hover {
    opacity: .5;
  }
}

.internal-audit {
  max-width: 1132px;
}
.internal-audit .block {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: .06em;
  color: #1A1A1A;
}
.internal-audit .block + .block {
  margin-top: 40px;
}
.internal-audit .block .main-text {
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #505C7D;
}

.company-policies .list .item {
  position: relative;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: block;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 15px 0;
  font-size: 18px;
  line-height: 26px;
}
.company-policies .list .item + .item {
  margin-top: 20px;
}
.company-policies .list .item-left {
  padding-left: 25px;
  width: calc(100% - 108px);
  position: relative;
  min-height: 30px;
}
.company-policies .list .item-right {
  position: relative;
  padding: 2px 0;
  padding-right: 36px;
  text-align: right;
  width: 108px;
  font-weight: 500;
  color: #1A1A1A;
  min-height: 30px;
}
.company-policies .list .item .main-text {
  position: relative;
  font-weight: 500;
  min-height: 30px;
  padding: 2px 16px 2px 0;
}
.company-policies .list .item .main-text:before, .company-policies .list .item .main-text:after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #BCC4DC;
}
.company-policies .list .item .main-text:before {
  display: none;
}
.company-policies .list .item .main-text:after {
  right: 0;
}
.company-policies .list .item a {
  color: #1A1A1A;
}
.company-policies .list .item a:active {
  opacity: .5;
}
@media (hover: hover) {
  .company-policies .list .item a:hover {
    opacity: .5;
  }
}

.stakeholder {
  max-width: 1132px;
}
.stakeholder .section-header {
  margin-bottom: 88px;
}
.stakeholder .top-text {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: .06em;
}
.stakeholder .section-content {
  overflow-x: auto;
  max-width: 950px;
  margin: 0 auto;
}
.stakeholder .table {
  border: 1px solid #F1F1F3;
  background-color: #fff;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0;
  color: #4D4F5C;
  min-width: 800px;
  word-break: break-all;
}
.stakeholder .table th,
.stakeholder .table td {
  padding: 30px 20px;
  border: 0;
  vertical-align: middle;
  position: relative;
}
.stakeholder .table th:first-child:before,
.stakeholder .table td:first-child:before {
  display: none;
}
.stakeholder .table th:before,
.stakeholder .table td:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 1px;
  height: calc(100% - 10px * 2);
  background-color: #E9E9E9;
}
.stakeholder .table th {
  font-weight: 700;
  background-color: #F5F6FA;
  color: #505C7D;
  text-align: center;
  padding: 23px 10px;
}
.stakeholder .table th span {
  display: block;
}
.stakeholder .table th span + span {
  border-top: 1px solid #505C7D;
  margin-top: 8px;
  padding-top: 8px;
}
.stakeholder .table td:first-child {
  text-align: center;
}
.stakeholder .table tr {
  border-top: 1px solid #E9E9E9;
}

@media (max-width: 767px) {
  .page-governance .page-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .page-governance .page-content .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .committee-a .grid {
    display: block;
  }
  .committee-a .grid-left {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .committee-a .grid-right {
    width: 100%;
  }

  .committee-a2 {
    margin-top: 60px;
  }
  .committee-a2 .list .item-left {
    padding-left: 10px;
    width: calc(100% - 62px);
  }
  .committee-a2 .list .item-right {
    padding-right: 13px;
    width: 62px;
  }
  .committee-a2 .list .item .year {
    width: 64px;
  }
  .committee-a2 .list .item .main-text {
    width: calc(100% - 64px);
    padding: 2px 15px;
    min-height: 56px;
    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;
  }

  .structure-a .organization {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .company-policies .list .item-left {
    padding-left: 10px;
    width: calc(100% - 62px);
  }
  .company-policies .list .item-right {
    padding-right: 13px;
    width: 62px;
  }
  .company-policies .list .item .main-text {
    padding: 2px 15px 2px 0;
  }

  .stakeholder .section-header {
    margin-bottom: 40px;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}
