@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

------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Play:wght@400;700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.btn {
  position: relative;
  cursor: pointer;
  box-shadow: 0;
  height: 32px;
  line-height: 32px;
  border-radius: 5px;
  font-size: 16px;
  text-align: center;
  padding: 0;
  border: 0;
  width: 100%;
  color: #fff;
  display: block;
  background-color: #008ed6;
  letter-spacing: .05em;
  -moz-transition: background-color 0.5s ease;
  -o-transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.btn:hover, .btn:active {
  background-color: #162c4c;
}
.btn.active {
  background-color: #162c4c;
}

.icon {
  width: 36px;
  height: 36px;
  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;
}
.icon-facebook {
  background-image: url(../images/icon-facebook.svg);
}
.icon-language {
  background-image: url(../images/icon-language.svg);
  width: 20px;
  height: 20px;
  display: block;
}
.icon-prev {
  background-image: url(../images/icon-prev.svg);
}
.icon-next {
  background-image: url(../images/icon-next.svg);
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

html {
  width: 100%;
}

body {
  font: 1em/1.6 'Noto Sans TC', Arial, 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
  min-width: 320px;
  overflow-x: hidden;
  background: #e4ebee;
  color: #646464;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  outline: none;
  behavior: expression(this.onFocus=this.blur());
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

:focus {
  outline: none;
}

a:focus,
a:active,
a:hover {
  outline: 0;
  -moz-outline-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -moz-user-select: none;
  -webkit-user-select: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

p {
  margin: 0;
}

strong {
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

textarea,
select,
input[type="text"],
input[type='number'],
input[type="button"],
input[type="search"],
input[type="submit"],
button,
input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: 'Noto Sans TC', Arial, 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif, 'Microsoft YaHei';
}
textarea:focus,
select:focus,
input[type="text"]:focus,
input[type='number']:focus,
input[type="button"]:focus,
input[type="search"]:focus,
input[type="submit"]:focus,
button:focus,
input[type="radio"]:focus {
  outline: 0;
}

.lg-view {
  display: block;
}

.sm-view {
  display: none;
}

.in-view {
  opacity: 0;
}

.lazyload {
  opacity: 0;
}

.lazyloading {
  opacity: 1;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
  position: relative;
}

.text-block {
  display: inline-block;
}

.scroll--hidden {
  overflow: hidden;
}

.site-content {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.site-header .container {
  max-width: 1440px;
}
.site-header .bg {
  background-color: #00173f;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 125px;
  opacity: 0;
}
.site-header .logo {
  position: absolute;
  top: 37px;
  left: 58px;
  width: 270px;
  height: 57px;
  display: block;
  white-space: nowrap;
  text-indent: 100%;
  font-size: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/logo.svg);
  z-index: 4;
  -moz-transition: none;
  -o-transition: none;
  -webkit-transition: none;
  transition: none;
}
.site-header.sticky, .site-header.is-view {
  height: 125px;
}
.site-header.sticky .bg, .site-header.is-view .bg {
  opacity: 1;
}
.site-header.sticky .menu-toggle, .site-header.is-view .menu-toggle {
  background-color: transparent;
}

.header-language {
  position: absolute;
  top: -1px;
  right: 15px;
  padding: 4px;
  border-radius: 28px;
}
.header-language .icon-language {
  background-image: url(../images/icon-language_white.svg);
}
.header-language.is-toggle {
  background-color: #014099;
}
.header-language.is-toggle .header-language__content {
  height: 3em;
}
.header-language__trigger {
  cursor: pointer;
  position: relative;
}
.header-language__content {
  height: 0;
  overflow: hidden;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.header-language li {
  padding-top: 2px;
}
.header-language a {
  color: #fff;
  font-size: 10px;
  text-align: center;
  display: block;
}

.header-link {
  display: none;
  padding: 30px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.header-link ul {
  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;
}
.header-link ul li {
  width: calc(100% - 32px);
}
.header-link ul li:last-child {
  width: 32px;
}
.header-link a {
  color: #919495;
}
.header-link a:hover, .header-link a:active {
  color: #fff;
}
.header-link .icon-facebook {
  width: 32px;
  height: 32px;
  background-image: url(../images/icon-facebook_circle_gray.svg);
}

.site-menu {
  position: absolute;
  top: 54px;
  right: 40px;
}

.menu-panel {
  z-index: 10;
  display: block;
}

.main-menu {
  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;
  width: 100%;
  padding-right: 60px;
}
.main-menu li {
  position: relative;
  padding: 0 1em;
}
.main-menu a {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
  width: 100%;
}
.main-menu a:active {
  color: #00a0e9;
}
@media (hover: hover) {
  .main-menu a:hover {
    color: #00a0e9;
  }
}
.main-menu .has-sub.is-view .has-sub__tigger > a {
  color: #00a0e9;
}
.main-menu .has-sub.is-view .has-sub__tigger > .active {
  color: #00a0e9;
}
.main-menu .has-sub.is-view .sub-menu-panel {
  height: inherit;
  background-color: #00173f;
  overflow: inherit;
  animation-name: fadeInDown;
  animation-duration: .1s;
  animation-fill-mode: both;
}
.main-menu .sub-menu-tigger {
  display: none;
}
.is-mobile .main-menu .sub-menu-tigger {
  display: block;
}
.main-menu .has-sub__tigger {
  position: relative;
  z-index: 1;
}
.main-menu .has-sub__tigger:active > a {
  color: #00a0e9;
}
@media (hover: hover) {
  .main-menu .has-sub__tigger:hover > a {
    color: #00a0e9;
  }
}
.main-menu .has-sub__tigger a {
  transition: none;
}
.main-menu .has-sub__tigger .sub-menu-tigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
  cursor: pointer;
}
.main-menu .active,
.main-menu .mPS2id-highlight-first {
  color: #00a0e9;
}
.main-menu .sub-menu-panel {
  position: absolute;
  top: 70px;
  left: 0;
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  border-radius: 0;
  height: 0;
  overflow: hidden;
}
.main-menu .sub-menu-panel:before, .main-menu .sub-menu-panel:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: #00173f;
  border-top: 1px solid #1b3e7b;
  z-index: -1;
  pointer-events: none;
}
.main-menu .sub-menu-panel:before {
  left: 0;
}
.main-menu .sub-menu-panel:after {
  right: 100%;
}
.main-menu .sub-menu {
  font-weight: 500;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  white-space: nowrap;
}
.main-menu .sub-menu li {
  margin: 0;
  padding: 0;
}
.main-menu .sub-menu a {
  color: #fff;
  display: block;
  padding: 25px;
  line-height: 20px;
  font-size: 14px;
}
.main-menu .sub-menu a:active, .main-menu .sub-menu a.active {
  background-color: #014099;
}
@media (hover: hover) {
  .main-menu .sub-menu a:hover {
    background-color: #014099;
  }
}

.section {
  position: relative;
}
.section-anchor {
  position: absolute;
  top: -125px;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  z-index: -1;
}

.heading {
  position: relative;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 40px;
  color: #014099;
}

.scroll-box__inner {
  padding-right: 10px;
}
.scroll-box.scrollbar-outer {
  overflow-x: hidden !important;
}
.scroll-box.scrollbar-outer::-webkit-scrollbar {
  -webkit-appearance: none;
}
.scroll-box.scrollbar-outer::-webkit-scrollbar:vertical {
  width: 4px;
}
.scroll-box.scrollbar-outer::-webkit-scrollbar:horizontal {
  height: 4px;
}
.scroll-box.scrollbar-outer::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 4px;
  border: 0;
}
.scroll-box.scrollbar-outer::-webkit-scrollbar-track {
  border-radius: 4px;
  background-color: #ffffff;
  opacity: 0;
}
.scroll-box.scrollbar-outer > .scroll-element {
  background-color: #0a1237;
}
.scroll-box.scrollbar-outer > .scroll-element.scroll-x {
  display: none;
}
.scroll-box.scrollbar-outer > .scroll-content.scroll-scrolly_visible {
  left: 0;
  margin-left: 0;
}
.scroll-box.scrollbar-outer > .scroll-element.scroll-y {
  width: 4px;
}
.scroll-box.scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer {
  left: 0;
  width: 4px;
  border-radius: 4px;
}
.scroll-box.scrollbar-outer > .scroll-element .scroll-element_track,
.scroll-box.scrollbar-outer > .scroll-element .scroll-bar {
  border-radius: 4px;
}
.scroll-box.scrollbar-outer .scroll-element_size {
  width: 4px;
}
.scroll-box.scrollbar-outer .scroll-element_track {
  background-color: #fff;
  opacity: .07;
}
.scroll-box.scrollbar-outer .scroll-bar {
  background-color: #fff;
  opacity: .25;
}

.site-footer {
  position: relative;
  padding: 60px 0;
  font-size: 12px;
  line-height: 24px;
  color: #014099;
  overflow: hidden;
}
.site-footer .container {
  max-width: 1354px;
}
.site-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;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
  margin: 0 -15px;
}
.site-footer .block {
  padding: 0 15px;
}
.site-footer .block-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;
  width: 40%;
}
.site-footer .block-right {
  text-align: right;
  width: 60%;
}
.site-footer .footer-info {
  width: 100%;
}
.site-footer .main-text {
  font-size: 14px;
  font-weight: 700;
}
.site-footer .copyright {
  font-size: 12px;
}
.site-footer .icon-facebook {
  width: 32px;
  height: 32px;
  background-image: url(../images/icon-facebook_circle.svg);
}
.site-footer .link {
  text-decoration: underline;
}
.site-footer .link:active {
  text-decoration: none;
}
@media (hover: hover) {
  .site-footer .link:hover {
    text-decoration: none;
  }
}
.site-footer .link + .facebook {
  margin-left: 8px;
}
.site-footer a {
  color: #014099;
}
.site-footer a:active {
  color: #00a0e9;
  filter: brightness(1.2);
}
@media (hover: hover) {
  .site-footer a:hover {
    color: #00a0e9;
    filter: brightness(1.2);
  }
}

.menu-toggle {
  position: absolute;
  top: 7px;
  right: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  display: none;
  width: 48px;
  height: 48px;
}

.c-hamburger {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 25px;
  height: 25px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  z-index: 999;
  -moz-transition: -moz-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  top: 11px;
  left: 12px;
}
.c-hamburger:focus {
  outline: none;
}
.c-hamburger span {
  display: block;
  position: absolute;
  top: 11px;
  left: 0;
  right: 0;
  height: 2px;
  background: #fff;
  -moz-transition: -moz-transform 0s 0.3s;
  -o-transition: -o-transform 0s 0.3s;
  -webkit-transition: -webkit-transform 0s;
  -webkit-transition-delay: 0.3s;
  transition: transform 0s 0.3s;
}
.c-hamburger span::before,
.c-hamburger span::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  height: 2px;
  background-color: #fff;
  -moz-transition-duration: 0.3s, 0.3s;
  -o-transition-duration: 0.3s, 0.3s;
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -moz-transition-delay: 0.3s, 0s;
  -o-transition-delay: 0.3s, 0s;
  -webkit-transition-delay: 0.3s, 0s;
  transition-delay: 0.3s, 0s;
}
.c-hamburger span::before {
  top: -7px;
  right: 0;
  -moz-transition-property: top, -moz-transform;
  -o-transition-property: top, -o-transform;
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}
.c-hamburger span::after {
  bottom: -7px;
  right: 0;
  -moz-transition-property: bottom, -moz-transform;
  -o-transition-property: bottom, -o-transform;
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}
.c-hamburger.active span {
  background: none;
}
.c-hamburger.active span::before {
  top: 0;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-hamburger.active span::after {
  bottom: 0;
  left: 0;
  right: 0;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.c-hamburger.active span::before, .c-hamburger.active span::after {
  -moz-transition-delay: 0s, 0.3s;
  -o-transition-delay: 0s, 0.3s;
  -webkit-transition-delay: 0s, 0.3s;
  transition-delay: 0s, 0.3s;
}

.to-top {
  position: fixed;
  bottom: -100px;
  right: 20px;
  -moz-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: 2;
  width: 64px;
  height: 64px;
  background-image: url(../images/totop.svg);
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  margin: 0 auto;
  display: block;
  opacity: 0;
}
.to-top.is-view {
  opacity: 1;
  bottom: 20px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, 50px, 0);
    -ms-transform: translate3d(0, 50px, 0);
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }
}
.post-iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

.post-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
  .post-iframe {
    padding-top: 0;
  }
}
.page-header {
  position: relative;
  background-color: #010916;
  overflow: hidden;
}
.page-header .container {
  height: 450px;
  max-width: 1112px;
  width: calc(100% - 30px * 2);
  padding: 0 20px;
  padding-top: 210px;
  z-index: 1;
}
.page-header__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-header__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.page-header__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/page-header-bg.png);
  background-repeat: repeat-x;
  background-position: center top;
}
.page-header__en {
  font-size: 35px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  font-family: 'Play', sans-serif;
  margin-left: -10px;
}
.page-header__title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  color: #64ceff;
  padding-left: 36px;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.page-content {
  padding: 75px 0;
}

.responsiveTable {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #c2c2c2;
  text-align: center;
  font-size: 16px;
}
.responsiveTable th,
.responsiveTable td {
  border: 1px solid #c2c2c2;
  padding: 8px 10px;
  letter-spacing: .1em;
}

.col_4 th:nth-child(2) {
  text-align: left;
}
.col_4 td:nth-child(2) {
  text-align: left;
}

.col_5 th:nth-child(3) {
  text-align: left;
}
.col_5 td:nth-child(3) {
  text-align: left;
}

.article {
  max-width: 1050px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 24px;
  color: #323232;
  letter-spacing: .1em;
}
.article-header {
  margin-bottom: 20px;
}
.article-content {
  margin-bottom: 80px;
}
.article-title {
  color: #00a0e9;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.article .date {
  font-size: 14px;
  line-height: 20px;
}
.article .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.article .share ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.article .share li + li {
  margin-left: 20px;
}
.article .share .icon {
  width: 27px;
  height: 27px;
  display: block;
}
.article .share .icon-share {
  background-image: url(../images/icon-share.svg);
  background-size: 17px auto;
}
.article .share .icon-facebook {
  background-image: url(../images/facebook.svg);
}
.article .share .icon-twitter {
  background-image: url(../images/twitter.svg);
}
.article .share .icon-line {
  background-image: url(../images/line.svg);
}
.article .share .icon-link {
  background-image: url(../images/icon-link.svg);
  background-size: 23px auto;
}
.article .tags {
  margin-bottom: 10px;
  color: #00a0e9;
}
.article a {
  color: #00a0e9;
}
.article a:hover {
  opacity: .8;
}
.article p + p {
  margin-top: 24px;
}
.article .image {
  position: relative;
  overflow: hidden;
  border: 5px solid #d2e1e8;
  background-color: #bed4de;
  margin: 24px 0;
}
.article .image img {
  width: 100%;
}
.article .gallery {
  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: -20px;
  padding-top: 65px;
}
.article .gallery .image {
  width: calc(100% / 2 - 20px * 2);
  margin: 20px;
}
.article .table {
  font-size: 16px;
  line-height: 30px;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #c2c2c2;
  color: #4f4f4f;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #fff;
  margin: 0;
}
.article .table th,
.article .table td {
  border: 1px solid #c2c2c2;
  padding: 8px 20px;
  letter-spacing: .1em;
  vertical-align: top;
}
.article .table .hd {
  text-align: center;
  background-color: #f9f9f9;
  width: 206px;
  font-weight: 400;
}
.article .table .bd {
  min-height: 46px;
  padding: 8px 24px;
  word-break: break-word;
}
.article .table .pd-0 {
  padding: 0;
}
.article .table a {
  color: #00a0e9;
}
.article .inner-table {
  border-collapse: collapse;
  border-spacing: 0;
  width: calc(100% + 2px);
  border: 1px solid #c2c2c2;
  color: #4f4f4f;
  word-break: normal;
  word-wrap: break-word;
  margin: -1px;
}
.article .inner-table th,
.article .inner-table td {
  border: 1px solid #c2c2c2;
  padding: 8px 20px;
  letter-spacing: .1em;
  vertical-align: middle;
}
.article .inner-table th {
  text-align: left;
}

.article-advisory .article-header {
  margin-bottom: 40px;
}
.article-advisory .article-title {
  color: #00a0e9;
  margin-bottom: 0;
}
.article-advisory .date + .article-title {
  margin-top: 15px;
}

.mobile-hide {
  display: inline;
}

.mobile-show {
  display: none;
}

.is-mobile .mobile-hide {
  display: none;
}
.is-mobile .mobile-show {
  display: inline;
}

@media (max-width: 1440px) {
  .site-footer .container {
    max-width: calc(100% - 42px * 2);
  }
}
@media (max-width: 1080px) {
  .site-header .bg {
    height: 100px;
  }
  .site-header .logo {
    top: 25px;
    left: 30px;
    width: 225px;
    height: 47px;
  }
  .site-header.sticky, .site-header.is-view {
    height: 125px;
  }
  .site-header.sticky .bg, .site-header.is-view .bg {
    opacity: 1;
  }
  .site-header.sticky .menu-toggle, .site-header.is-view .menu-toggle {
    background-color: transparent;
  }

  .site-menu {
    top: 36px;
    right: 12px;
  }

  .main-menu {
    padding-right: 40px;
  }
  .main-menu a {
    font-size: 12px;
    line-height: 24px;
  }
  .main-menu .sub-menu-panel {
    top: 64px;
  }
  .main-menu .sub-menu a {
    font-size: 12px;
    padding: 20px;
  }

  .page-header .container {
    height: 300px;
    padding-top: 140px;
    width: calc(100% - 100px * 2);
  }
  .page-header__en {
    font-size: 24px;
    margin-left: 0;
  }
  .page-header__title {
    font-size: 32px;
  }
  .page-content {
    padding: 75px 0;
  }

  .site-footer .container {
    max-width: calc(100% - 15px * 2);
  }
}
@media (max-width: 1024px) {
  .site-footer .container {
    max-width: calc(100% - 50px * 2);
  }
}
@media (max-width: 767px) {
  .lg-view {
    display: none;
  }

  .sm-view {
    display: block;
  }

  .menu-toggle {
    display: block;
    top: 14px;
  }

  .site-menu {
    top: 0;
    right: 0;
  }

  .menu-panel {
    display: none;
    background-color: #001630;
    background-image: url(../images/menu-panel.svg);
    background-repeat: no-repeat;
    background-position: bottom -135px right -312px;
  }
  .menu-panel.is-toggle {
    display: block;
    padding: 0;
    overflow: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    max-height: 100%;
    /* with viewportHeight */
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 70px;
  }

  .main-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    -ms-flex-wrap: none;
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 10px;
    overflow: hidden;
    padding-right: 0;
  }
  .main-menu li {
    position: relative;
    padding: 0;
  }
  .main-menu a {
    text-align: left;
    font-size: 24px;
    padding: 25px 45px;
  }
  .main-menu .has-sub {
    display: block;
  }
  .main-menu .has-sub.is-view .has-sub__tigger > a {
    color: #fff;
  }
  .main-menu .has-sub.is-view .has-sub__tigger > .active {
    color: #00a0e9;
  }
  .main-menu .has-sub.is-view .sub-menu-panel {
    border-top: 0;
    animation-name: fadeIn;
    animation-duration: .5s;
  }
  .main-menu .has-sub__tigger {
    display: block;
    white-space: 100%;
  }
  .main-menu .sub-menu-panel {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    background-color: #00234d;
    box-shadow: none;
  }
  .main-menu .sub-menu-panel:before, .main-menu .sub-menu-panel:after {
    display: none;
  }
  .main-menu .sub-menu {
    display: block;
  }
  .main-menu .sub-menu li {
    margin: 0;
    padding: 0;
  }
  .main-menu .sub-menu a {
    padding: 25px 45px;
    padding-left: 90px;
    font-size: 22px;
  }

  .header-language {
    position: relative;
    right: 0;
    top: 0;
    padding: 0 15px;
  }
  .header-language.is-toggle {
    background-color: transparent;
  }
  .header-language.is-toggle .header-language__content {
    height: inherit;
  }
  .header-language__trigger {
    position: absolute;
    left: 15px;
    top: 10px;
  }
  .header-language__content {
    height: auto;
    display: block;
    padding-left: 30px;
  }
  .header-language a {
    font-size: 16px;
    line-height: 36px;
    text-align: left;
  }

  .header-link {
    display: block;
  }
  .header-link .mail {
    visibility: hidden;
  }

  .site-header .bg {
    height: 60px;
  }
  .site-header .logo {
    position: absolute;
    top: 12px;
    left: 20px;
    width: 176px;
    height: 36px;
  }
  .site-header .menu-toggle {
    top: 6px;
  }
  .site-header.sticky, .site-header.is-view {
    height: 60px;
  }
  .site-header.sticky .menu-toggle, .site-header.is-view .menu-toggle {
    top: 6px;
  }
  .site-header.is-view .bg {
    background-color: #001630;
    z-index: 4;
    box-shadow: none;
  }
  .site-header.is-view .c-hamburger span {
    background-color: transparent;
  }
  .site-header.is-view .c-hamburger span::before,
  .site-header.is-view .c-hamburger span::after {
    background: #fff;
  }

  .section-anchor {
    top: -60px;
  }

  .container {
    padding: 0 20px;
  }

  .site-footer {
    padding: 30px 0;
  }
  .site-footer .container {
    max-width: 100%;
  }
  .site-footer .group {
    display: block;
  }
  .site-footer .block {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  .site-footer .block-left {
    display: block;
    padding: 0;
    margin-bottom: 20px;
    line-height: 18px;
  }
  .site-footer .block-right {
    text-align: center;
  }
  .site-footer .footer-info {
    width: 100%;
  }
  .site-footer .icon-facebook {
    margin: 0 auto;
  }
  .site-footer .facebook {
    display: none;
  }

  .page-header .container {
    height: 240px;
    padding-top: 105px;
    width: 100%;
  }
  .page-header__en {
    font-size: 20px;
    margin-left: 0;
  }
  .page-header__title {
    font-size: 32px;
    padding-left: 20px;
  }
  .page-content {
    padding: 40px 0;
  }

  .article .share ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .article .share li + li {
    margin-left: 10px;
  }
  .article .gallery {
    display: block;
    margin: 0;
    padding-top: 40px;
  }
  .article .gallery .image {
    width: 100%;
    margin: 0;
  }
  .article .gallery .image + .image {
    margin-top: 20px;
  }
  .article .table > tbody > tr {
    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;
  }
  .article .table tr:first-child .hd {
    border-top: 0;
  }
  .article .table > tbody > th,
  .article .table > tbody > td {
    border: 0;
    border-top: 1px solid #c2c2c2;
  }
  .article .table .hd {
    width: 100%;
    text-align: left;
    border: 0;
    border-top: 1px solid #c2c2c2;
  }
  .article .table .bd {
    padding: 8px 20px;
    border: 0;
    border-top: 1px solid #c2c2c2;
  }
  .article .table .pd-0 {
    padding: 0;
  }

  .table-container {
    width: 100%;
    overflow-y: hidden;
    overflow-x: inherit !important;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #222;
  }
  .table-container .table {
    min-width: 767px;
    margin: 0 -1px;
  }
}
@media (max-width: 480px) {
  .responsiveTable {
    border-top: 0;
  }
  .responsiveTable table,
  .responsiveTable thead,
  .responsiveTable tbody,
  .responsiveTable th,
  .responsiveTable td,
  .responsiveTable tr {
    display: block;
  }
  .responsiveTable thead {
    display: none;
  }
  .responsiveTable td {
    border: none;
    position: relative;
    padding-top: 40px !important;
    border-top: 1px solid #c2c2c2;
  }
  .responsiveTable td:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 5px;
    white-space: nowrap;
    text-align: center;
    border-bottom: 1px solid #c2c2c2;
  }

  .col_4 td:nth-of-type(1):before {
    content: "CVE";
  }
  .col_4 td:nth-of-type(2):before {
    content: "Tittle";
  }
  .col_4 td:nth-of-type(3):before {
    content: "CVSS";
  }
  .col_4 td:nth-of-type(4):before {
    content: "Published";
  }

  .col_5 td:nth-of-type(1):before {
    content: "ZA ID";
  }
  .col_5 td:nth-of-type(2):before {
    content: "CVE";
  }
  .col_5 td:nth-of-type(3):before {
    content: "Tittle";
  }
  .col_5 td:nth-of-type(4):before {
    content: "CVSS";
  }
  .col_5 td:nth-of-type(5):before {
    content: "Published";
  }
}
@media (max-height: 667px) {
  .header-link {
    position: relative;
  }
}
/* 首頁 */
.kv {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.kv .bg {
  background-image: url(../images/kv-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.kv .bg:before, .kv .bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.kv .bg:before {
  background-position: center top;
  background-image: url(../images/kv-top-bg.png);
}
.kv .bg:after {
  background-position: center bottom;
  background-image: url(../images/kv-bottom-bg.png);
}
.kv .container {
  height: 100vh;
}
.kv-slogan {
  position: absolute;
  top: 32.5%;
  left: 4.25%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 529px;
  max-width: 529px;
  height: 181px;
  display: block;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  font-size: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/kv-slogan.png);
  opacity: 0;
  z-index: 1;
}
.kv-image {
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%) translateX(-50%) scale(0.25);
  -ms-transform: translateY(-50%) translateX(-50%) scale(0.25);
  -webkit-transform: translateY(-50%) translateX(-50%) scale(0.25);
  transform: translateY(-50%) translateX(-50%) scale(0.25);
  left: 75%;
  -moz-transition: ease 1.5s;
  -o-transition: ease 1.5s;
  -webkit-transition: ease 1.5s;
  transition: ease 1.5s;
  width: 1260px;
  max-width: 1260px;
  opacity: 0;
}
.kv.anim .kv-slogan {
  opacity: 1;
  animation-name: fadeIn;
  animation-duration: .5s;
  animation-fill-mode: both;
}
.kv.anim .kv-image {
  -moz-transform: translateY(-50%) translateX(-50%) scale(1);
  -ms-transform: translateY(-50%) translateX(-50%) scale(1);
  -webkit-transform: translateY(-50%) translateX(-50%) scale(1);
  transform: translateY(-50%) translateX(-50%) scale(1);
  opacity: 1;
  transition-delay: .5s;
}
.kv.anim .kv-image img {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
  animation-delay: 1.9s;
}
.kv .animated {
  opacity: 1;
}

.floating {
  animation-name: floating;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.36, 0.45, 0.65, 0.55);
}

@keyframes floating {
  from {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, -5px);
  }
  to {
    transform: translate(0, 0);
  }
}
.index {
  overflow-y: scroll;
}
.index .site-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 0;
  color: #fff;
  z-index: 1;
}
.index .site-footer a {
  color: #fff;
}
.index .site-footer a:active {
  opacity: .5;
}
@media (hover: hover) {
  .index .site-footer a:hover {
    opacity: .5;
  }
}

@media (max-width: 1440px) {
  .kv-slogan {
    width: 36.736111111vw;
    max-width: 36.736111111vw;
    height: initial;
    padding-top: 12.569444444%;
  }
  .kv-image {
    width: 87.5vw;
    max-width: 87.5vw;
  }
}
@media (max-width: 1024px) {
  .index .site-footer .container {
    max-width: calc(100% - 15px * 2);
  }
}
@media (max-width: 940px) {
  .kv .container {
    max-width: 100%;
  }
  .kv-slogan {
    top: 20%;
    left: 9.2%;
    width: 62.5vw;
    max-width: 62.5%;
    padding-top: 19%;
  }
  .kv-image {
    top: 53%;
    left: 67%;
    width: 122.526041667%;
    max-width: 122.526041667%;
  }
}
@media (max-width: 767px) {
  .kv .container {
    max-width: 360px;
    padding: 0;
  }
  .kv-slogan {
    top: 20%;
    left: 7.5%;
    width: 85%;
    max-width: 85%;
    padding-top: 30%;
  }
  .kv-image {
    top: 53%;
    left: 100%;
    width: 230.833333333%;
    max-width: 230.833333333%;
  }

  .index .site-footer {
    padding: 20px 0;
  }
  .index .site-footer .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .index .site-footer .facebook {
    display: none;
  }
  .index .site-footer .copyright {
    font-size: 11px;
  }
}
@media (orientation: landscape) and (max-height: 500px) {
  .is-mobile .kv .kv-container {
    height: 122.222222222vw;
  }
  .is-mobile .index {
    height: 122.222222222vw;
  }
  .is-mobile .index .site-footer {
    padding: 20px 0;
  }
  .is-mobile .index .site-footer .container {
    height: inherit;
  }
}
/* 最新消息 */
.news .menu {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
  max-width: 1050px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.news .menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}
.news .menu li + li {
  margin-left: 1.75em;
}
.news .menu li + li:before {
  content: "/";
  margin-right: 5px;
  margin-left: -.75em;
}
.news .menu a {
  color: #4b4b4b;
}
.news .menu a:active {
  color: #014099;
}
@media (hover: hover) {
  .news .menu a:hover {
    color: #014099;
  }
}
.news .menu .active {
  color: #014099;
  font-size: 30px;
  font-weight: 700;
}
.news .pagination-container {
  margin-top: 85px;
}
.news .pagination {
  -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;
}
.news .page-link {
  position: relative;
  display: block;
  padding: 0;
  font-size: 16px;
  color: #323232;
  background: none;
  border: none;
  text-align: center;
  min-width: 40px;
}
.news .page-link .icon {
  width: 24px;
  height: 24px;
  display: block;
  background-size: auto 21px;
}
.news .page-link:not(:first-child) .page-link {
  margin-left: initial;
}
.news .page-link:focus {
  box-shadow: none;
}
.news .page-link--control {
  min-width: initial;
}
.news .page-link-prev {
  margin-right: 20px !important;
}
.news .page-link-next {
  margin-left: 10px !important;
}
.news .active .page-link {
  color: #fff;
  background-color: #00a0e9;
  transform: skewX(-4deg);
}
.news .active .page-link span {
  transform: skewX(4deg);
}

.news-list {
  max-width: 1050px;
  margin: 0 auto;
}
.news-list .item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
  font-size: 14px;
  line-height: 24px;
  color: #323232;
}
.news-list .item + .item {
  margin-top: 50px;
}
.news-list .image {
  position: relative;
  overflow: hidden;
  border: 5px solid #d2e1e8;
  background-color: #bed4de;
  width: 303px;
}
.news-list .image:before {
  content: "";
  padding-top: 63.13993174%;
  display: block;
}
.news-list .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-list .content {
  width: calc(100% - 303px);
  padding-left: 35px;
}
.news-list .main-text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  color: #00d1fe;
}
.news-list .sub-text {
  margin-top: 20px;
}
.news-list .date {
  margin-top: 10px;
}

.construction {
  padding: 80px 0;
  text-align: center;
}
.construction .main-text {
  color: #00a0e9;
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
}
.construction .sub-text {
  color: #323232;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-top: 8px;
}

@media (max-width: 1440px) {
  .news .page-header .container {
    max-width: calc(100% - 42px * 2);
  }
}
@media (max-width: 1080px) {
  .news .page-header .container {
    max-width: calc(100% - 50px * 2);
  }
  .news .container {
    max-width: calc(100% - 50px * 2);
  }
}
@media (max-width: 767px) {
  .news .menu {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .news .menu li + li {
    margin-left: 16px;
  }
  .news .menu li + li:before {
    margin-right: 4px;
  }
  .news .menu .active {
    font-size: 24px;
  }
  .news .pagination-container {
    margin-top: 40px;
  }

  .news-list {
    max-width: 100%;
  }
  .news-list .item {
    display: block;
  }
  .news-list .item + .item {
    margin-top: 25px;
  }
  .news-list .image {
    width: 100%;
  }
  .news-list .content {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}
@media (max-width: 640px) {
  .news .page-header .container {
    max-width: 100%;
  }
  .news .container {
    max-width: 100%;
  }

  .construction .main-text {
    font-size: 24px;
    line-height: 36px;
  }
  .construction .sub-text {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 374px) {
  .news .menu {
    font-size: 12px;
  }
  .news .menu .active {
    font-size: 20px;
  }
}
/* 專業服務 */
.service .page-content {
  padding: 0;
}
.service .section .container {
  max-width: 1276px;
}
.service .title {
  color: #014099;
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.service .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.service .info-left {
  width: 450px;
}
.service .info-right {
  width: calc(100% - 450px);
  padding-left: 65px;
}
.service .info .main-text {
  color: #00a0e9;
  font-size: 45px;
  line-height: 60px;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.service .info .sub-text {
  color: #323232;
  font-size: 18px;
  line-height: 30px;
}
.service .info .sub-text p + p {
  margin-top: 24px;
}
.service .sub-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
  color: #014099;
}

.pentest-intro {
  padding-top: 80px;
  padding-bottom: 110px;
}

.pentest-description {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #001640;
}
.pentest-description .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;
}
.pentest-description .group .image {
  width: 450px;
}
.pentest-description .group .image img {
  width: 100%;
  max-width: 341px;
  margin: 0 auto;
  display: block;
}
.pentest-description .group .content {
  width: calc(100% - 450px);
  padding-left: 65px;
}
.pentest-description .group .main-text {
  color: #fff;
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.pentest-description .group .sub-text {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  margin-top: 15px;
}
.pentest-description .group .sub-text p + p {
  margin-top: 24px;
}

.pentest-service {
  padding-top: 115px;
  padding-bottom: 145px;
}
.pentest-service .sub-title {
  margin-bottom: 75px;
}
.pentest-service .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -30px;
}
.pentest-service .list .item {
  width: calc(100% / 4 - 30px * 2);
  margin: 30px;
  text-align: center;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.pentest-service .list .image {
  border-radius: 50%;
  position: relative;
  background-color: #fff;
  border: 1px solid #5bb5ea;
  box-shadow: 0 6px 0 rgba(207, 217, 228, 0.64);
  max-width: 230px;
  margin: 0 auto 30px;
}
.pentest-service .list .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.pentest-service .list .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 160px;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.pentest-service .list .main-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  color: #00a0e9;
}
.pentest-service .group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -24px;
  padding-top: 90px;
}
.pentest-service .group .item {
  background-color: #0e295d;
  color: #fff;
  border-radius: 10px;
  box-shadow: 6px 8px 0 0 #cfd9e4;
  padding: 15px 12px;
  width: calc(100% / 3 - 24px * 2);
  max-width: 320px;
  margin: 24px;
  text-align: center;
  min-height: 211px;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.pentest-service .group .main-text {
  font-size: 26px;
  line-height: 40px;
  font-weight: 700;
  color: #00a0e9;
  margin-bottom: 15px;
}
.pentest-service .group .sub-text {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  padding-top: 12px;
  border-top: 1px solid #1562a6;
}

.pentest-process {
  padding-top: 90px;
  padding-bottom: 130px;
  background-color: #001640;
}
.pentest-process .container {
  max-width: 1080px !important;
}
.pentest-process .sub-title {
  color: #fff;
  margin-bottom: 25px;
}
.pentest-process .top-text {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  max-width: 510px;
  margin: 0 auto 45px;
}
.pentest-process .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -20px;
}
.pentest-process .list .item {
  margin: 20px;
  text-align: center;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
  width: 240px;
  height: 240px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 6px #95e4ff inset;
  padding: 20px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.pentest-process .list .item:last-child:before {
  display: none;
}
.pentest-process .list .item:before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: calc(100% + 14px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #1d6690;
}
.pentest-process .list .main-text {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: #00a0e9;
  margin-bottom: 10px;
  width: 100%;
}
.pentest-process .list .sub-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #006aa3;
  border-top: 1px solid #73ceff;
  padding-top: 12px;
  width: 100%;
}

.pentest-suitable {
  padding-top: 75px;
  padding-bottom: 95px;
  background-color: #93c6dd;
}
.pentest-suitable .sub-title {
  color: #001640;
  margin-bottom: 70px;
}
.pentest-suitable .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -50px;
}
.pentest-suitable .list .item {
  width: 348px;
  margin: 50px;
  position: relative;
  padding-top: 30px;
  padding-left: 70px;
}
.pentest-suitable .list .number {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 170px;
  line-height: 1;
  font-weight: 900;
  font-family: arial;
  color: #1c93c9;
  transform: skewX(-10deg);
}
.pentest-suitable .list .main-text {
  font-size: 36px;
  line-height: 48px;
  font-weight: 900;
  color: #fff;
  position: relative;
  transform: skewX(-10deg);
}

.pentest-advantage {
  padding-top: 70px;
  padding-bottom: 115px;
  background-color: #001640;
}
.pentest-advantage .sub-title {
  color: #fff;
  margin-bottom: 80px;
}
.pentest-advantage .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -35px auto;
}
.pentest-advantage .list .item {
  color: #fff;
  width: 240px;
  margin: 35px 75px;
  text-align: center;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.pentest-advantage .list .image {
  max-width: 106px;
  margin: 0 auto;
}
.pentest-advantage .list .main-text {
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  color: #5acbfe;
  margin-bottom: 15px;
}
.pentest-advantage .list .sub-text {
  font-size: 21px;
  line-height: 36px;
  font-weight: 700;
  padding-top: 15px;
  border-top: 1px solid #5acbfe;
  color: #fff;
}

.redteam-intro {
  padding-top: 80px;
  padding-bottom: 110px;
}

.redteam-description {
  padding-top: 120px;
  padding-bottom: 110px;
  background-color: #001640;
}
.redteam-description .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;
}
.redteam-description .group .image {
  width: 450px;
}
.redteam-description .group .image img {
  width: 100%;
  max-width: 419px;
  margin: 0 auto;
  display: block;
}
.redteam-description .group .content {
  width: calc(100% - 450px);
  padding-left: 65px;
}
.redteam-description .group .main-text {
  color: #fff;
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.redteam-description .group .sub-text {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  margin-top: 15px;
}
.redteam-description .group .sub-text p + p {
  margin-top: 24px;
}

.redteam-process {
  padding-top: 95px;
  padding-bottom: 115px;
}
.redteam-process .sub-title {
  margin-bottom: 25px;
}
.redteam-process .top-text {
  color: #00a0e9;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 75px;
}
.redteam-process .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -20px auto;
  max-width: calc(890px + 20px * 2);
}
.redteam-process .list .item {
  margin: 20px;
  text-align: center;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
  width: 190px;
  height: 190px;
  background-color: #014099;
  border-radius: 50%;
  box-shadow: 0 0 0 6px #00ccff inset;
  padding: 20px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -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;
}
.redteam-process .list .item:last-child:before {
  display: none;
}
.redteam-process .list .item:before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: calc(100% + 14px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #70c1ef;
}
.redteam-process .list .main-text {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #fff;
  margin: auto;
}

.redteam-suitable {
  padding-top: 70px;
  padding-bottom: 150px;
  background-color: #93c6dd;
}
.redteam-suitable .sub-title {
  color: #001640;
  margin-bottom: 70px;
}
.redteam-suitable .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -50px auto;
  max-width: calc(1050px + 50px * 2);
}
.redteam-suitable .list .item {
  width: 475px;
  margin: 50px;
  position: relative;
  padding-top: 30px;
  padding-left: 80px;
}
.redteam-suitable .list .number {
  position: absolute;
  top: -34px;
  left: 0;
  font-size: 170px;
  line-height: 1;
  font-weight: 900;
  font-family: arial;
  color: #1c93c9;
  transform: skewX(-10deg);
}
.redteam-suitable .list .main-text {
  font-size: 30px;
  line-height: 48px;
  font-weight: 900;
  color: #fff;
  position: relative;
  transform: skewX(-10deg);
}

.redteam-advantage {
  padding-top: 70px;
  padding-bottom: 115px;
  background-color: #001640;
}
.redteam-advantage .sub-title {
  color: #fff;
  margin-bottom: 80px;
}
.redteam-advantage .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -35px;
}
.redteam-advantage .list .item {
  color: #fff;
  width: 240px;
  margin: 35px;
  text-align: center;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.redteam-advantage .list .image {
  max-width: 106px;
  margin: 0 auto;
}
.redteam-advantage .list .main-text {
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  color: #5acbfe;
  margin-bottom: 15px;
}
.redteam-advantage .list .sub-text {
  font-size: 21px;
  line-height: 36px;
  font-weight: 700;
  padding-top: 15px;
  border-top: 1px solid #5acbfe;
  color: #fff;
}

.redteam-value {
  padding-top: 85px;
  padding-bottom: 130px;
}
.redteam-value .sub-title {
  margin-bottom: 85px;
}
.redteam-value .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -35px -25px;
}
.redteam-value .list .item {
  background-color: #0e295d;
  color: #fff;
  border-radius: 10px;
  box-shadow: 6px 8px 0 0 #cfd9e4;
  padding: 20px;
  width: 320px;
  margin: 35px 25px;
  text-align: center;
  min-height: 450px;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.redteam-value .list .image {
  width: 135px;
  margin: 0 auto 10px;
}
.redteam-value .list .main-text {
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  color: #5acbfe;
  margin-bottom: 15px;
}
.redteam-value .list .sub-text {
  font-size: 21px;
  line-height: 36px;
  font-weight: 700;
  padding-top: 15px;
  border-top: 1px solid #5acbfe;
  color: #fff;
}

.consultant-intro {
  padding-top: 80px;
  padding-bottom: 110px;
}

.consultant-description {
  padding-top: 120px;
  padding-bottom: 115px;
  background-color: #001640;
}
.consultant-description .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;
}
.consultant-description .group .image {
  width: 450px;
}
.consultant-description .group .image img {
  width: 100%;
  max-width: 405px;
  margin: 0 auto;
  display: block;
}
.consultant-description .group .content {
  width: calc(100% - 450px);
  padding-left: 65px;
}
.consultant-description .group .main-text {
  color: #fff;
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.consultant-description .group .sub-text {
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  margin-top: 15px;
}
.consultant-description .group .sub-text p + p {
  margin-top: 24px;
}

.consultant-process {
  padding-top: 100px;
  padding-bottom: 110px;
}
.consultant-process .sub-title {
  margin-bottom: 20px;
}
.consultant-process .top-text {
  color: #00a0e9;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 65px;
}
.consultant-process .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -20px auto;
  max-width: calc(890px + 20px * 2);
}
.consultant-process .list .item {
  margin: 20px;
  text-align: center;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
  width: 190px;
  height: 190px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 6px #014099 inset;
  padding: 15px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -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;
}
.consultant-process .list .item:last-child:before {
  display: none;
}
.consultant-process .list .item:before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: calc(100% + 14px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #70c1ef;
}
.consultant-process .list .main-text {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  color: #00a0e9;
  margin: auto;
}

.consultant-service {
  padding-top: 120px;
  padding-bottom: 150px;
  background-color: #001640;
}
.consultant-service .sub-title {
  color: #fff;
  margin-bottom: 80px;
}
.consultant-service .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -30px;
}
.consultant-service .list .item {
  width: 536px;
  margin: 30px;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
  background-color: #0e295d;
  border: 2px solid #009ba9;
  box-shadow: 3px 4px 0 0 #009ba9;
  border-radius: 10px;
  position: relative;
  min-height: 240px;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.consultant-service .list .image {
  width: 140px;
  padding-top: 40px;
}
.consultant-service .list .image img {
  max-width: 116px;
  margin: 0 auto;
  display: block;
}
.consultant-service .list .content {
  width: calc(100% - 140px);
  padding-left: 25px;
}
.consultant-service .list .main-text {
  font-size: 28px;
  line-height: 40px;
  font-weight: 900;
  color: #00eaff;
  margin-bottom: 15px;
  font-family: 'Noto Sans TC', sans-serif;
}
.consultant-service .list .sub-text {
  font-size: 21px;
  line-height: 30px;
  font-weight: 700;
  color: #fff;
}

.consultant-benefits {
  padding-top: 115px;
  padding-bottom: 115px;
}
.consultant-benefits .sub-title {
  margin-bottom: 90px;
}
.consultant-benefits .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -40px -24px;
}
.consultant-benefits .list .item {
  background-color: #0e295d;
  color: #fff;
  border-radius: 10px;
  box-shadow: 6px 8px 0 0 #cfd9e4;
  padding: 20px;
  padding-top: 65px;
  width: calc(100% / 3 - 24px * 2);
  max-width: 320px;
  margin: 40px 24px;
  min-height: 257px;
  min-width: 240px;
  position: relative;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.consultant-benefits .list .number {
  position: absolute;
  top: -48px;
  right: 12px;
  font-size: 170px;
  line-height: 1;
  font-weight: 900;
  font-family: arial;
  color: #00a0e9;
  transform: skewX(-10deg);
}
.consultant-benefits .list .main-text {
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}
.consultant-benefits .list .sub-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  padding-top: 10px;
  border-top: 1px solid #fff;
}

@media (max-width: 1080px) {
  .service .section .container {
    max-width: calc(100% - 50px * 2);
  }
  .service .title {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 8px;
  }
  .service .info-left {
    width: 40%;
  }
  .service .info-right {
    width: calc(100% - 40%);
    padding-left: 40px;
  }
  .service .info .main-text {
    font-size: 24px;
    line-height: 38px;
  }
  .service .info .sub-text {
    font-size: 12px;
    line-height: 24px;
  }
  .service .sub-title {
    font-size: 18px;
    line-height: 30px;
  }

  .pentest-intro {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .pentest-description .group .image {
    width: 40%;
  }
  .pentest-description .group .content {
    width: calc(100% - 40%);
    padding-left: 40px;
  }
  .pentest-description .group .main-text {
    font-size: 18px;
    line-height: 30px;
  }
  .pentest-description .group .sub-text {
    font-size: 12px;
    line-height: 24px;
    margin-top: 8px;
  }

  .pentest-service {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pentest-service .sub-title {
    margin-bottom: 50px;
  }
  .pentest-service .list {
    margin: -24px;
  }
  .pentest-service .list .item {
    width: 170px;
    margin: 24px;
    min-width: inherit;
  }
  .pentest-service .list .image {
    margin-bottom: 15px;
  }
  .pentest-service .list .image img {
    max-width: 100px;
  }
  .pentest-service .list .main-text {
    font-size: 18px;
    line-height: 28px;
  }
  .pentest-service .group {
    margin: -15px;
    padding-top: 60px;
  }
  .pentest-service .group .item {
    width: calc(100% / 3 - 15px * 2);
    margin: 15px;
    min-height: inherit;
  }
  .pentest-service .group .main-text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .pentest-service .group .sub-text {
    font-size: 14px;
    line-height: 24px;
    padding-top: 8px;
  }

  .pentest-process {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pentest-process .sub-title {
    margin-bottom: 15px;
  }
  .pentest-process .top-text {
    font-size: 14px;
    line-height: 24px;
  }
  .pentest-process .list .item {
    width: 226px;
    height: 226px;
    padding: 20px;
    box-shadow: 0 0 0 4px #95e4ff inset;
  }
  .pentest-process .list .main-text {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .pentest-process .list .sub-text {
    font-size: 14px;
    line-height: 20px;
    padding-top: 8px;
  }

  .pentest-suitable {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pentest-suitable .sub-title {
    margin-bottom: 60px;
  }
  .pentest-suitable .list {
    margin: -30px;
  }
  .pentest-suitable .list .item {
    width: 272px;
    padding-top: 30px;
    padding-left: 50px;
    margin: 30px;
  }
  .pentest-suitable .list .number {
    top: -30px;
    font-size: 120px;
  }
  .pentest-suitable .list .main-text {
    font-size: 18px;
    line-height: 24px;
  }

  .pentest-advantage {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pentest-advantage .sub-title {
    margin-bottom: 40px;
  }
  .pentest-advantage .list {
    margin: -35px;
  }
  .pentest-advantage .list .item {
    width: 160px;
    margin: 35px;
    text-align: center;
  }
  .pentest-advantage .list .image {
    max-width: 90px;
  }
  .pentest-advantage .list .main-text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  .pentest-advantage .list .sub-text {
    font-size: 14px;
    line-height: 24px;
    padding-top: 8px;
  }

  .redteam-intro {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .redteam-description {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .redteam-description .group .image {
    width: 40%;
  }
  .redteam-description .group .content {
    width: calc(100% - 40%);
    padding-left: 40px;
  }
  .redteam-description .group .main-text {
    font-size: 18px;
    line-height: 30px;
  }
  .redteam-description .group .sub-text {
    font-size: 12px;
    line-height: 24px;
    margin-top: 8px;
  }

  .redteam-process {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .redteam-process .sub-title {
    margin-bottom: 15px;
  }
  .redteam-process .top-text {
    font-size: 14px;
    line-height: 24px;
    margin: 0 auto 40px;
  }
  .redteam-process .list .item {
    width: 170px;
    height: 170px;
    padding: 15px 25px;
    box-shadow: 0 0 0 4px #00ccff inset;
  }
  .redteam-process .list .main-text {
    font-size: 18px;
    line-height: 24px;
  }

  .redteam-suitable {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .redteam-suitable .sub-title {
    margin-bottom: 60px;
  }
  .redteam-suitable .list {
    margin: -30px;
  }
  .redteam-suitable .list .item {
    width: 270px;
    padding-top: 30px;
    padding-left: 50px;
    margin: 30px;
  }
  .redteam-suitable .list .number {
    top: -30px;
    font-size: 120px;
  }
  .redteam-suitable .list .main-text {
    font-size: 18px;
    line-height: 24px;
  }

  .redteam-advantage {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .redteam-advantage .sub-title {
    margin-bottom: 50px;
  }
  .redteam-advantage .list {
    margin: -20px;
  }
  .redteam-advantage .list .item {
    width: 160px;
    margin: 20px;
  }
  .redteam-advantage .list .image {
    max-width: 90px;
    margin-bottom: 10px;
  }
  .redteam-advantage .list .main-text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  .redteam-advantage .list .sub-text {
    font-size: 14px;
    line-height: 24px;
    padding-top: 8px;
  }

  .redteam-value {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .redteam-value .sub-title {
    margin-bottom: 50px;
  }
  .redteam-value .list {
    margin: -15px;
  }
  .redteam-value .list .item {
    padding: 20px;
    width: 240px;
    margin: 15px;
    min-height: 320px;
  }
  .redteam-value .list .image {
    width: 100px;
  }
  .redteam-value .list .main-text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  .redteam-value .list .sub-text {
    font-size: 14px;
    line-height: 24px;
    padding-top: 8px;
  }

  .consultant-intro {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .consultant-description {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .consultant-description .group .image {
    width: 40%;
  }
  .consultant-description .group .content {
    width: calc(100% - 40%);
    padding-left: 40px;
  }
  .consultant-description .group .main-text {
    font-size: 18px;
    line-height: 30px;
  }
  .consultant-description .group .sub-text {
    font-size: 12px;
    line-height: 24px;
    margin-top: 8px;
  }

  .consultant-process {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .consultant-process .sub-title {
    margin-bottom: 15px;
  }
  .consultant-process .top-text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 40px;
  }
  .consultant-process .list .item {
    width: 170px;
    height: 170px;
    padding: 15px;
    box-shadow: 0 0 0 4px #014099 inset;
  }
  .consultant-process .list .main-text {
    font-size: 18px;
    line-height: 24px;
  }

  .consultant-service {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .consultant-service .sub-title {
    margin-bottom: 50px;
  }
  .consultant-service .list {
    margin: -20px;
  }
  .consultant-service .list .item {
    width: 360px;
    margin: 20px;
    min-height: initial;
    padding: 20px;
  }
  .consultant-service .list .image {
    width: 100px;
    padding-top: 8px;
  }
  .consultant-service .list .image img {
    max-width: 90px;
  }
  .consultant-service .list .content {
    width: calc(100% - 100px);
    padding-left: 20px;
  }
  .consultant-service .list .main-text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  .consultant-service .list .sub-text {
    font-size: 14px;
    line-height: 24px;
  }

  .consultant-benefits {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .consultant-benefits .sub-title {
    margin-bottom: 50px;
  }
  .consultant-benefits .list {
    margin: -40px -20px;
  }
  .consultant-benefits .list .item {
    padding-top: 50px;
    width: calc(100% / 3 - 20px * 2);
    max-width: 320px;
    min-width: 240px;
    margin: 40px 20px;
    min-height: 170px;
  }
  .consultant-benefits .list .number {
    top: -35px;
    right: 12px;
    font-size: 120px;
  }
  .consultant-benefits .list .main-text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  .consultant-benefits .list .sub-text {
    font-size: 14px;
    line-height: 24px;
    padding-top: 8px;
  }
}
@media (max-width: 767px) {
  .service .page-content {
    padding: 0;
  }
  .service .section .container {
    max-width: 100%;
  }
  .service .info {
    display: block;
  }
  .service .info-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .service .info-right {
    width: 100%;
    padding-left: 0;
  }

  .pentest-intro {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .pentest-description {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pentest-description .group {
    display: block;
  }
  .pentest-description .group .image {
    width: 100%;
    margin-bottom: 40px;
  }
  .pentest-description .group .content {
    width: 100%;
    padding-left: 0;
  }

  .pentest-service {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pentest-service .list {
    display: block;
    max-width: 286px;
    margin: 0 auto;
  }
  .pentest-service .list .item {
    width: 100%;
    margin: 0 auto;
  }
  .pentest-service .list .item + .item {
    margin-top: 30px;
  }
  .pentest-service .list .image {
    max-width: 170px;
    margin: 0 auto 15px;
  }
  .pentest-service .list .image img {
    max-width: 100px;
  }
  .pentest-service .group {
    display: block;
    max-width: 240px;
    margin: 0 auto;
    padding-top: 60px;
  }
  .pentest-service .group .item {
    width: 100%;
    margin: 0 auto;
    min-height: inherit;
  }
  .pentest-service .group .item + .item {
    margin-top: 30px;
  }

  .pentest-process {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pentest-process .list {
    display: block;
    max-width: 240px;
    margin: 0 auto;
  }
  .pentest-process .list .item {
    margin: 0 auto;
  }
  .pentest-process .list .item:before {
    content: "";
    position: absolute;
    top: calc(100% + 14px);
    left: calc(50% - 8px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 8px 0 8px;
    border-color: #1d6690 transparent transparent transparent;
  }
  .pentest-process .list .item + .item {
    margin-top: 40px;
  }
  .pentest-process .list .item .main-text {
    font-size: 17px;
  }

  .pentest-suitable {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pentest-suitable .sub-title {
    margin-bottom: 40px;
  }
  .pentest-suitable .list {
    display: block;
    max-width: 272px;
    margin: 0 auto;
  }
  .pentest-suitable .list .item {
    margin: 0 auto;
  }
  .pentest-suitable .list .item + .item {
    margin-top: 60px;
  }

  .pentest-advantage {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .pentest-advantage .list {
    display: block;
    max-width: 240px;
    margin: 0 auto;
  }
  .pentest-advantage .list .item {
    width: 100%;
    margin: 0 auto;
  }
  .pentest-advantage .list .item + .item {
    margin-top: 40px;
  }

  .redteam-intro {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .redteam-description {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .redteam-description .group {
    display: block;
  }
  .redteam-description .group .image {
    width: 100%;
    margin-bottom: 40px;
  }
  .redteam-description .group .content {
    width: 100%;
    padding-left: 0;
  }

  .redteam-process {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .redteam-process .list {
    display: block;
    max-width: 170px;
    margin: 0 auto;
  }
  .redteam-process .list .item {
    margin: 0 auto;
  }
  .redteam-process .list .item:before {
    content: "";
    position: absolute;
    top: calc(100% + 14px);
    left: calc(50% - 8px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 8px 0 8px;
    border-color: #70c1ef transparent transparent transparent;
  }
  .redteam-process .list .item + .item {
    margin-top: 40px;
  }

  .redteam-suitable {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .redteam-suitable .sub-title {
    margin-bottom: 60px;
  }
  .redteam-suitable .list {
    display: block;
    max-width: 270px;
    margin: 0 auto;
  }
  .redteam-suitable .list .item {
    width: 100%;
    margin: 0 auto;
  }
  .redteam-suitable .list .item + .item {
    margin-top: 60px;
  }

  .redteam-advantage {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .redteam-advantage .sub-title {
    margin-bottom: 40px;
  }
  .redteam-advantage .list {
    display: block;
    max-width: 240px;
    margin: 0 auto;
  }
  .redteam-advantage .list .item {
    width: 100%;
    margin: 0 auto;
  }
  .redteam-advantage .list .item + .item {
    margin-top: 40px;
  }
  .redteam-advantage .list .image {
    max-width: 90px;
  }

  .redteam-value {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .redteam-value .list {
    display: block;
    max-width: 240px;
    margin: 0 auto;
  }
  .redteam-value .list .item {
    margin: 0 auto;
    width: 100%;
    min-height: initial;
  }
  .redteam-value .list .item + .item {
    margin-top: 30px;
  }
  .redteam-value .list .image {
    width: 90px;
  }

  .consultant-intro {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .consultant-description {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .consultant-description .group {
    display: block;
  }
  .consultant-description .group .image {
    width: 100%;
    margin-bottom: 40px;
  }
  .consultant-description .group .content {
    width: 100%;
    padding-left: 0;
  }

  .consultant-process {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .consultant-process .list {
    display: block;
    max-width: 240px;
    margin: 0 auto;
  }
  .consultant-process .list .item {
    margin: 0 auto;
  }
  .consultant-process .list .item:before {
    content: "";
    position: absolute;
    top: calc(100% + 14px);
    left: calc(50% - 8px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 8px 0 8px;
    border-color: #70c1ef transparent transparent transparent;
  }
  .consultant-process .list .item + .item {
    margin-top: 40px;
  }

  .consultant-service {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .consultant-service .list {
    display: block;
    max-width: 240px;
    margin: 0 auto;
  }
  .consultant-service .list .item {
    margin: 0 auto;
    width: 100%;
    min-height: initial;
    display: block;
  }
  .consultant-service .list .item + .item {
    margin-top: 40px;
  }
  .consultant-service .list .image {
    width: 100px;
    padding-top: 0;
    margin: 0 auto;
    margin-bottom: 10px;
  }
  .consultant-service .list .image img {
    max-width: 100px;
  }
  .consultant-service .list .content {
    width: 100%;
    padding-left: 0;
  }

  .consultant-benefits {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .consultant-benefits .list {
    display: block;
    max-width: 240px;
    margin: 0 auto;
  }
  .consultant-benefits .list .item {
    margin: 0 auto;
    width: 100%;
    min-height: initial;
    display: block;
  }
  .consultant-benefits .list .item + .item {
    margin-top: 40px;
  }
}
@media (min-width: 1081px) and (max-width: 1366px) {
  .service .section .container {
    width: calc(100% - 30px * 2);
    max-width: 1112px;
  }

  .pentest-service .list .main-text {
    font-size: 24px;
    line-height: 36px;
  }

  .pentest-process .container {
    max-width: 880px !important;
  }

  .pentest-suitable .list {
    margin: -15px;
  }
  .pentest-suitable .list .item {
    width: 300px;
    margin: 15px;
  }
  .pentest-suitable .list .main-text {
    font-size: 30px;
  }

  .pentest-advantage .container {
    max-width: 880px !important;
  }
  .pentest-advantage .list {
    margin: -35px auto;
  }
  .pentest-advantage .list .item {
    margin: 35px 20px;
  }

  .redteam-suitable .list {
    margin: -20px auto;
    max-width: 100%;
  }
  .redteam-suitable .list .item {
    width: 440px;
    margin: 20px;
  }

  .redteam-advantage .list {
    margin: -15px;
  }
  .redteam-advantage .list .item {
    width: 220px;
    margin: 15px;
  }
  .redteam-advantage .list .main-text {
    font-size: 24px;
    line-height: 36px;
  }

  .redteam-value .list {
    margin: -30px -15px;
  }
  .redteam-value .list .item {
    width: 300px;
    margin: 30px 15px;
    min-height: 450px;
  }

  .consultant-service .list {
    margin: -25px;
  }
  .consultant-service .list .item {
    width: 480px;
    margin: 25px;
  }
  .consultant-service .list .main-text {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .pentest-service .container {
    padding: 0;
  }
  .pentest-service .list {
    margin: -15px auto;
    max-width: 640px;
  }
  .pentest-service .list .item {
    width: calc(100% / 4 - 15px * 2);
    margin: 15px;
  }
  .pentest-service .list .main-text {
    font-size: 16px;
    line-height: 24px;
  }
  .pentest-service .group {
    padding-top: 40px;
    margin: -15px auto;
    max-width: 640px;
  }

  .pentest-process .container {
    padding: 0;
  }
  .pentest-process .list {
    margin: -20px auto;
    max-width: 640px;
  }

  .pentest-suitable .container {
    padding: 0;
  }
  .pentest-suitable .list {
    margin: -15px;
  }
  .pentest-suitable .list .item {
    margin: 15px;
  }

  .pentest-advantage .container {
    padding: 0;
  }
  .pentest-advantage .list {
    margin: -20px auto;
    max-width: 640px;
  }
  .pentest-advantage .list .item {
    width: 172px;
    margin: 20px;
  }

  .redteam-process .container {
    padding: 0;
  }
  .redteam-process .list {
    margin: -15px auto;
    max-width: 640px;
  }
  .redteam-process .list .item {
    margin: 15px;
    width: 130px;
    height: 130px;
    padding: 10px;
  }
  .redteam-process .list .item:before {
    left: calc(100% + 8px);
  }
  .redteam-process .list .main-text {
    font-size: 14px;
    line-height: 20px;
  }

  .redteam-suitable .container {
    padding: 0;
  }
  .redteam-suitable .list {
    margin: -20px auto;
    max-width: 640px;
  }
  .redteam-suitable .list .item {
    margin: 20px;
  }

  .redteam-advantage .container {
    padding: 0;
  }
  .redteam-advantage .list {
    margin: -1.2vw;
  }
  .redteam-advantage .list .item {
    width: 145px;
    margin: 1.2vw;
  }

  .redteam-value .container {
    padding: 0;
  }
  .redteam-value .list {
    margin: -15px auto;
    max-width: 668px;
  }
  .redteam-value .list .item {
    padding: 10px;
    width: 200px;
    margin: 15px 10px;
    min-height: 320px;
  }

  .consultant-process .container {
    padding: 0;
  }
  .consultant-process .list {
    margin: -15px auto;
    max-width: 658px;
  }
  .consultant-process .list .item {
    margin: 15px;
    width: 130px;
    height: 130px;
    padding: 10px;
  }
  .consultant-process .list .item:before {
    left: calc(100% + 8px);
  }
  .consultant-process .list .main-text {
    font-size: 16px;
    line-height: 24px;
  }

  .consultant-service .container {
    padding: 0;
  }
  .consultant-service .list {
    margin: -14px;
  }
  .consultant-service .list .item {
    width: 320px;
    margin: 14px;
    padding: 10px;
  }
  .consultant-service .list .content {
    padding-left: 10px;
  }

  .consultant-benefits .container {
    padding: 0;
  }
  .consultant-benefits .list {
    margin: -30px auto;
    max-width: 668px;
  }
  .consultant-benefits .list .item {
    width: 192px;
    margin: 30px 15px;
    min-height: inherit;
    min-width: inherit;
  }
}
/* 關於我們 */
.about .page-content {
  padding: 0;
}
.about .section .container {
  max-width: 1276px;
}
.about .title {
  color: #014099;
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.about .info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.about .info-left {
  width: 450px;
}
.about .info-right {
  width: calc(100% - 450px);
  padding-left: 65px;
}
.about .info .main-text {
  color: #00a0e9;
  font-size: 45px;
  line-height: 60px;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.about .info .sub-text {
  color: #323232;
  font-size: 18px;
  line-height: 30px;
}
.about .info .sub-text p + p {
  margin-top: 24px;
}
.about .sub-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
}

.vision {
  padding-top: 70px;
  padding-bottom: 100px;
}
.vision .info {
  margin-bottom: 80px;
}
.vision .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -28px;
}
.vision .list .item {
  background-color: #0e295d;
  color: #fff;
  border-radius: 10px;
  box-shadow: 6px 8px 0 0 #cfd9e4;
  padding: 15px 12px;
  width: calc(100% / 4 - 28px * 2);
  margin: 28px;
  text-align: center;
  min-height: 266px;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.vision .list .top-text {
  font-size: 42px;
  line-height: 48px;
  font-weight: 700;
  color: #c5c5c5;
  margin-bottom: 15px;
}
.vision .list .main-text {
  font-size: 26px;
  font-weight: 700;
  color: #00a0e9;
  margin-bottom: 20px;
}
.vision .list .sub-text {
  font-size: 26px;
  line-height: 42px;
  font-weight: 700;
  padding-top: 20px;
  border-top: 1px solid #1562a6;
}
.vision .list .highlight {
  color: #0090d2;
}

.core {
  background-color: #001640;
  padding-top: 100px;
  padding-bottom: 140px;
}
.core .title {
  color: #fff;
}
.core .info .sub-text {
  color: #fff;
}
.core .sub-title {
  color: #fff;
  margin-bottom: 45px;
}
.core .service {
  margin-top: 70px;
}
.core .service .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -36px;
}
.core .service .list .item {
  width: calc(100% / 4 - 36px * 2);
  min-width: 272px;
  margin: 36px;
  text-align: center;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.core .service .list .image {
  border-radius: 50%;
  position: relative;
  background-color: #fff;
  border: 1px solid #5bb5ea;
  box-shadow: 0 0 6px rgba(0, 22, 64, 0.64);
  margin-bottom: 25px;
}
.core .service .list .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.core .service .list .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 160px;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.core .service .list .main-text {
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  color: #00a0e9;
}
.core .valueCulture {
  margin-top: 120px;
}
.core .valueCulture .sub-title {
  margin-bottom: 110px;
}
.core .valueCulture .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin: -60px -40px;
}
.core .valueCulture .list .item {
  width: 345px;
  margin: 60px 40px;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
  background-color: #0e295d;
  border: 2px solid #5acbfe;
  box-shadow: 6px 8px 0 0 #5acbfe;
  border-radius: 10px;
  position: relative;
  min-height: 277px;
  padding: 20px 15px;
  padding-top: 100px;
}
.core .valueCulture .list .image {
  border-radius: 50%;
  position: relative;
  background-color: #fff;
  border: 2px solid #5bb5ea;
  box-shadow: 0 0 6px rgba(0, 22, 64, 0.64);
  width: 169px;
  position: absolute;
  top: -68px;
  left: calc(50% - 169px / 2);
}
.core .valueCulture .list .image:before {
  content: "";
  padding-top: 100%;
  display: block;
}
.core .valueCulture .list .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 116px;
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.core .valueCulture .list .main-text {
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
  color: #5acbfe;
  text-align: center;
  margin-bottom: 15px;
}
.core .valueCulture .list .main-text span {
  display: block;
}
.core .valueCulture .list .sub-text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 700;
  padding-top: 15px;
  border-top: 1px solid #5acbfe;
  color: #fff;
}

.teams {
  padding-top: 100px;
  padding-bottom: 140px;
}
.teams:before {
  content: "";
  position: absolute;
  top: 30px;
  left: calc(50% - 450px);
  background-image: url(../images/taiwan.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 421px;
  height: 100%;
  pointer-events: none;
}
.teams .main-text span {
  display: inline-block;
}
.teams .CVE {
  margin-top: 40px;
  max-width: 193px;
  display: block;
}

@media (max-width: 1440px) {
  .about .section .container {
    max-width: calc(100% - 42px * 2);
  }
}
@media (max-width: 1280px) {
  .vision .list {
    margin: -15px;
  }
  .vision .list .item {
    width: calc(100% / 4 - 15px * 2);
    margin: 15px;
    min-height: inherit;
  }
  .vision .list .top-text {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 8px;
  }
  .vision .list .main-text {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .vision .list .sub-text {
    font-size: 18px;
    line-height: 30px;
    padding-top: 16px;
  }
}
@media (max-width: 1080px) {
  .about .section .container {
    max-width: calc(100% - 50px * 2);
  }
  .about .title {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 8px;
  }
  .about .info-left {
    width: 40%;
  }
  .about .info-right {
    width: calc(100% - 40%);
    padding-left: 40px;
  }
  .about .info .main-text {
    font-size: 24px;
    line-height: 38px;
  }
  .about .info .sub-text {
    font-size: 12px;
    line-height: 24px;
  }
  .about .sub-title {
    font-size: 18px;
    line-height: 30px;
  }

  .vision {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .vision .info {
    margin-bottom: 65px;
  }
  .vision .list {
    margin: -15px;
  }
  .vision .list .item {
    padding: 15px 12px;
    width: calc(100% / 4 - 15px * 2);
    margin: 15px;
    min-height: inherit;
  }
  .vision .list .top-text {
    font-size: 2.6vw;
    line-height: 30px;
    margin-bottom: 8px;
  }
  .vision .list .main-text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .vision .list .sub-text {
    font-size: 14px;
    line-height: 24px;
    padding-top: 8px;
  }

  .core {
    padding-top: 40px;
    padding-bottom: 132px;
  }
  .core .sub-title {
    margin-bottom: 25px;
  }
  .core .service {
    margin-top: 65px;
  }
  .core .service .list {
    margin: -24px;
  }
  .core .service .list .item {
    width: 170px;
    margin: 24px;
    min-width: inherit;
  }
  .core .service .list .image {
    margin-bottom: 15px;
  }
  .core .service .list .image img {
    max-width: 100px;
  }
  .core .service .list .main-text {
    font-size: 18px;
    line-height: 28px;
  }
  .core .valueCulture {
    margin-top: 110px;
  }
  .core .valueCulture .sub-title {
    margin-bottom: 90px;
  }
  .core .valueCulture .list {
    margin: -48px;
  }
  .core .valueCulture .list .item {
    width: 240px;
    margin: 48px;
    min-height: 217px;
    padding-top: 80px;
  }
  .core .valueCulture .list .image {
    width: 133px;
    top: -46px;
    left: calc(50% - 133px / 2);
  }
  .core .valueCulture .list .image img {
    max-width: 100px;
  }
  .core .valueCulture .list .main-text {
    font-size: 24px;
    line-height: 38px;
    margin-bottom: 10px;
  }
  .core .valueCulture .list .sub-text {
    font-size: 18px;
    line-height: 28px;
    padding-top: 12px;
  }

  .teams {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .teams:before {
    left: calc(50% - 350px);
    width: 312px;
  }
  .teams .main-text span {
    display: inline;
  }
  .teams .CVE {
    margin-top: 12px;
    max-width: 117px;
  }
}
@media (max-width: 767px) {
  .vision .list {
    margin: -10px;
  }
  .vision .list .item {
    width: calc(100% / 4 - 10px * 2);
    margin: 10px;
  }
}
@media (max-width: 767px) {
  .about .page-content {
    padding: 0;
  }
  .about .section .container {
    max-width: 100%;
  }
  .about .info {
    display: block;
  }
  .about .info-left {
    width: 100%;
    margin-bottom: 20px;
  }
  .about .info-right {
    width: 100%;
    padding-left: 0;
  }

  .vision {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .vision .info {
    margin-bottom: 40px;
  }
  .vision .list {
    display: block;
    width: 240px;
    margin: 0 auto;
  }
  .vision .list .item {
    width: 100%;
    min-width: inherit;
    margin: 0 auto;
  }
  .vision .list .item + .item {
    margin-top: 40px;
  }
  .vision .list .top-text {
    font-size: 22px;
  }

  .core {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .core .sub-title {
    margin-bottom: 50px;
  }
  .core .service {
    margin-top: 40px;
  }
  .core .service .list {
    display: block;
    width: 170px;
    margin: 0 auto;
  }
  .core .service .list .item {
    width: 100%;
    min-width: inherit;
    margin: 0 auto;
  }
  .core .service .list .item + .item {
    margin-top: 40px;
  }
  .core .valueCulture {
    margin-top: 80px;
  }
  .core .valueCulture .sub-title {
    margin-bottom: 94px;
  }
  .core .valueCulture .list {
    display: block;
    width: 214px;
    margin: 0 auto;
  }
  .core .valueCulture .list .item {
    width: 100%;
    min-width: inherit;
    margin: 0 auto;
    min-height: initial;
  }
  .core .valueCulture .list .item + .item {
    margin-top: 80px;
  }
  .core .valueCulture .list .image {
    width: 120px;
    top: -45px;
    left: calc(50% - 120px / 2);
  }
  .core .valueCulture .list .image img {
    max-width: 80px;
  }
  .core .valueCulture .list .main-text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  .core .valueCulture .list .sub-text {
    font-size: 14px;
    line-height: 24px;
  }

  .teams {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .teams:before {
    left: calc(50% - 50px);
    width: 240px;
  }
}
@media (min-width: 1081px) and (max-width: 1366px) {
  .about .section .container {
    width: calc(100% - 30px * 2);
    max-width: 1112px;
  }

  .core .service .list {
    margin: -20px;
  }
  .core .service .list .item {
    width: calc(100% / 4 - 20px * 2);
    min-width: 272px;
    margin: 20px;
  }
  .core .service .list .main-text {
    font-size: 24px;
    line-height: 36px;
  }
  .core .valueCulture .list {
    margin: -45px;
  }
  .core .valueCulture .list .item {
    width: 250px;
    margin: 45px;
  }
  .core .valueCulture .list .image {
    width: 150px;
    top: -50px;
    left: calc(50% - 150px / 2);
  }
}
@media (min-width: 768px) and (max-width: 1080px) {
  .core .valueCulture {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .core .valueCulture .list {
    margin: -35px -15px;
  }
  .core .valueCulture .list .item {
    width: 186px;
    margin: 35px 15px;
    padding-top: 90px;
  }
  .core .valueCulture .list .image {
    width: 110px;
    top: -30px;
    left: calc(50% - 110px / 2);
  }
  .core .valueCulture .list .image img {
    max-width: 70px;
  }
  .core .valueCulture .list .main-text {
    font-size: 18px;
    line-height: 30px;
  }
}
/* 漏洞通報 */
.PGP {
  max-width: 1050px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .1em;
  color: #4f4f4f;
}
.PGP .main-text {
  color: #00a0e9;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .1em;
}
.PGP .box {
  border: 1px solid #767676;
  padding: 20px 35px;
  position: relative;
  margin-top: 75px;
  height: 610px;
  overflow: auto;
  word-break: break-all;
  background-color: #fff;
}
.PGP a {
  color: #00d1fe;
}

.Policy {
  max-width: 1050px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .1em;
  color: #4f4f4f;
}
.Policy h4 {
  color: #00d1fe;
  margin-bottom: 1em;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .1em;
}
.Policy .highlight {
  color: #00d1fe;
}
.Policy a {
  color: #00d1fe;
}
.Policy p + p {
  margin-top: 24px;
}

.Advisory {
  max-width: 1050px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: .1em;
  color: #4f4f4f;
}
.Advisory .section {
  margin-bottom: 60px;
}
.Advisory .year {
  color: #0aa4ea;
  margin-bottom: 55px;
  font-size: 48px;
  line-height: 1;
  font-weight: 300;
}
.Advisory .highlight {
  color: #00d1fe;
}
.Advisory a {
  color: #0aa4ea;
}
.Advisory a:hover {
  opacity: .8;
}
.Advisory p + p {
  margin-top: 24px;
}

@media (max-width: 1440px) {
  .cna .container {
    max-width: calc(100% - 42px * 2);
  }
}
@media (max-width: 1080px) {
  .cna .container {
    max-width: calc(100% - 50px * 2);
  }
}
@media (max-width: 640px) {
  .cna .container {
    max-width: 100%;
  }
}
/* 聯絡我們 */
.contact .top-text {
  margin-bottom: 90px;
  color: #014099;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
}
.contact .main {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.contact .main .main-text {
  color: #00a0e9;
  font-size: 30px;
  line-height: 48px;
  font-weight: 700;
}
.contact .main .sub-text {
  color: #323232;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-top: 8px;
}

.form .form-control {
  display: block;
  width: 100%;
  padding: 6px 15px;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: #003a52;
  background-color: #bbdfee;
  border: 0;
  border-radius: 0;
}
.form .form-control:placeholder {
  color: #4f4f4f;
  letter-spacing: .1em;
}
.form .form-control:focus {
  box-shadow: none;
}
.form textarea {
  height: 289px;
}
.form .form-check {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  padding: 6px 0;
  margin-bottom: 0;
  color: #4f4f4f;
  letter-spacing: .1em;
}
.form .form-check input[type="radio"] {
  opacity: 0;
  display: none;
}
.form .form-check label {
  padding-left: 25px;
  cursor: pointer;
  margin-bottom: 0;
}
.form .form-check label:before {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 10px;
  left: 0;
  content: '';
  display: inline-block;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  border: 1px solid #c2c2c2;
  background: #fff;
}
.form .form-check input[type="radio"] {
  margin: 0px;
}
.form .form-check input[type="radio"]:disabled + label {
  color: #999;
}
.form .form-check input[type="radio"]:disabled + label:before {
  background-color: #fbc52d;
}
.form .form-check input[type="radio"]:checked + label::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 4px;
  display: inline-block;
  font-size: 11px;
  width: 10px;
  height: 10px;
  background-color: #00a0e9;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}
.form .form-select {
  padding: 6px 36px 6px 15px;
  font-size: 16px;
  line-height: 26px;
  color: #003a52;
  background-color: #bbdfee;
  border: 0;
  border-radius: 0;
}
.form .form-select:focus {
  box-shadow: none;
}
.form .form-section {
  margin-top: 60px;
  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;
}
.form .form-label {
  width: 160px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin: 0;
  color: #323232;
  padding: 6px 0;
  font-family: 'Microsoft JhengHei', '微軟正黑體', Helvetica, sans-serif;
}
.form .pr-2 {
  padding-right: 2em;
}
.form .required {
  color: #00a0e9;
}
.form .form-contnet {
  width: calc(100% - 160px);
}
.form .form-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: 0 -45px;
}
.form .form-group + .form-group {
  margin-top: 60px;
}
.form .form-group .form-section {
  width: calc(50% - 45px * 2);
  margin: 0 45px;
  margin-top: 0;
}
.form .action {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
.form .btn-primary {
  width: 200px;
  height: 38px;
  line-height: 38px;
  padding: 0;
  background-color: #014099;
  color: #fff;
  border-radius: 0;
}

@media (max-width: 1440px) {
  .contact .container {
    max-width: calc(100% - 42px * 2);
  }
}
@media (max-width: 1080px) {
  .contact .container {
    max-width: calc(100% - 50px * 2);
  }
}
@media (max-width: 1024px) {
  .contact .container {
    max-width: calc(100% - 50px * 2);
  }
  .contact .top-text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 40px;
  }
  .contact .page-content {
    padding: 60px 0;
  }

  .form .form-label {
    width: 120px;
    font-size: 14px;
  }
  .form .form-contnet {
    width: calc(100% - 120px);
  }
  .form .form-section {
    margin-top: 40px;
  }
  .form .form-group {
    margin: 0 -20px;
  }
  .form .form-group + .form-group {
    margin-top: 40px;
  }
  .form .form-group .form-section {
    width: calc(50% - 20px * 2);
    margin: 0 20px;
  }
  .form .form-check {
    font-size: 14px;
    line-height: 24px;
  }
  .form .action {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .contact .container {
    max-width: 100%;
  }
  .contact .page-content {
    padding: 40px 0;
  }

  .form .form-section {
    margin-top: 0;
    display: block;
  }
  .form .form-section + .form-section {
    margin-top: 20px;
  }
  .form .form-label {
    width: 100%;
    padding: 0;
    margin-bottom: 8px;
    font-size: 14px;
  }
  .form .pr-2 {
    padding-right: 0;
  }
  .form .form-contnet {
    width: 100%;
  }
  .form .form-group {
    display: block;
    margin: 0;
    margin-bottom: 20px;
  }
  .form .form-group + .form-group {
    margin-top: 0;
  }
  .form .form-group .form-section {
    width: 100%;
    margin: 0;
  }
  .form .form-group .form-section + .form-section {
    margin-top: 20px;
  }
  .form .action {
    margin-top: 30px;
  }
}
@media (max-width: 640px) {
  .contact .main .main-text {
    font-size: 24px;
    line-height: 36px;
  }
  .contact .main .sub-text {
    font-size: 18px;
    line-height: 24px;
  }
}
/* Privacy Policy */
.privacy-policy .main {
  max-width: 1050px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 24px;
  color: #323232;
}
.privacy-policy .section-title {
  color: #00a0e9;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .1em;
}
.privacy-policy .section + .section {
  margin-top: 40px;
}
.privacy-policy .section .pl-1 {
  padding-left: 20px;
}
.privacy-policy .section .indent-1 {
  text-indent: -36px;
  padding-left: 26px;
}
.privacy-policy .section .decimal {
  list-style: decimal;
  text-indent: 0;
  padding-left: 1em;
}
.privacy-policy .section ul {
  list-style: disc;
  padding-left: 1em;
}
.privacy-policy .section p + p {
  margin-top: 24px;
}

@media (max-width: 1440px) {
  .privacy-policy .container {
    max-width: calc(100% - 42px * 2);
  }
}
@media (max-width: 1080px) {
  .privacy-policy .container {
    max-width: calc(100% - 50px * 2);
  }
}
@media (max-width: 1024px) {
  .privacy-policy .container {
    max-width: calc(100% - 50px * 2);
  }
  .privacy-policy .page-content {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .privacy-policy .container {
    max-width: 100%;
  }
  .privacy-policy .page-content {
    padding: 40px 0;
  }
}
@media (hover: none) {
  a:hover {
    color: inherit;
  }
}
