/*  Box Sizing */
/*  Text Truncate */
/* TRANSITION */
/* TRANSFORM */
/* ANIMATION */
/* GRADIENT */
/* ---------- RESET ---------- */
@import url("https://dlcdnimgs.asus.com/vendor/public/fonts/css/roboto.css");
.style-reset {
  font-family: "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  background: black;
  color: white;
  font-size: 16px;
  margin: 0;
  padding: 0;
}
.style-reset * {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
  word-break: break-word;
}
.style-reset * ::-moz-selection {
  background: #1d2124;
  color: #ff32ee;
}
.style-reset * ::selection {
  background: #1d2124;
  color: #ff32ee;
}
.style-reset * ::-moz-selection {
  background: #1d2124;
  color: #ff32ee;
}
.style-reset ol,
.style-reset ul,
.style-reset li,
.style-reset figure {
  margin: 0;
  padding: 0;
}
.style-reset h1,
.style-reset h2,
.style-reset h3,
.style-reset h4,
.style-reset p,
.style-reset a,
.style-reset li {
  font: inherit;
  padding: 0;
  margin: 0;
}
.style-reset img {
  display: block;
  height: auto;
  border: none;
  max-width: 100% !important;
  margin: 0 auto;
}
.style-reset img.lazyload {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.style-reset iframe,
.style-reset video {
  max-width: 100%;
}
.style-reset button {
  background: none;
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.style-reset {
  /* ---------- SCREEN READER ---------- */
}
.style-reset .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.style-reset a:focus-visible, .style-reset button:focus-visible, .style-reset input:focus-visible, .style-reset select:focus-visible, .style-reset textarea:focus-visible,
.style-reset [role=button]:focus-visible,
.style-reset [tabindex="0"]:focus-visible {
  outline: 2px solid #ff32ee;
  outline-offset: -1px;
}
.style-reset a:focus:not(:focus-visible), .style-reset button:focus:not(:focus-visible), .style-reset input:focus:not(:focus-visible), .style-reset select:focus:not(:focus-visible), .style-reset textarea:focus:not(:focus-visible),
.style-reset [role=button]:focus:not(:focus-visible),
.style-reset [tabindex="0"]:focus:not(:focus-visible) {
  outline: none;
}

/* ---------- ANIMATIONS ---------- */
@-webkit-keyframes colorrun {
  0% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  100% {
    -webkit-filter: hue-rotate(359deg);
            filter: hue-rotate(359deg);
  }
}
@keyframes colorrun {
  0% {
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  100% {
    -webkit-filter: hue-rotate(359deg);
            filter: hue-rotate(359deg);
  }
}
.hd-colorrun {
  -webkit-animation-delay: 0s;
  -webkit-animation-duration: 4s;
  -webkit-animation-name: colorrun;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
  animation-delay: 0s;
  animation-duration: 4s;
  animation-name: colorrun;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}
.hd-colorrun.is-paused {
  -webkit-animation-play-state: paused !important;
          animation-play-state: paused !important;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-delay: 0s;
  -webkit-animation-duration: 0.25s;
  -webkit-animation-name: fadeOut;
  -webkit-animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
  animation-delay: 0s;
  animation-duration: 0.25s;
  animation-name: fadeOut;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-delay: 0s;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-name: fadeInUp;
  -webkit-animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
  animation-delay: 0s;
  animation-duration: 0.4s;
  animation-name: fadeInUp;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

@-webkit-keyframes moveCover {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(5%, 0);
    transform: translate(5%, 0);
  }
}
@keyframes moveCover {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(5%, 0);
    transform: translate(5%, 0);
  }
}
@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@font-face {
  font-family: "ROGFonts";
  src: url("../fonts/ROGFonts-Regular.otf") format("embedded-opentype"), url("../fonts/ROGFonts-Regular.ttf") format("opentype"), url("../fonts/ROGFonts-Regular.woff"), url("../fonts/ROGFonts-Regular.woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MachineBT";
  src: url("../fonts/MachineBT.woff"), url("../fonts/MachineBT.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
#hd {
  font-family: "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  font-size: 16px;
}
#hd h2,
#hd .h2 {
  font-family: "TradeGothicBold", "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  font-size: 3.125em;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1.25;
  margin-bottom: 0.4em;
}
#hd h2 sup,
#hd .h2 sup {
  font-size: 0.5em;
  top: -0.75em;
}
#hd h2 strong,
#hd .h2 strong {
  font: inherit;
}
#hd h3,
#hd .h3 {
  font-family: "TradeGothicBold", "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  font-size: 2.35em;
  font-weight: normal;
  letter-spacing: 0.018em;
  line-height: 1.125;
  margin-bottom: 0.4em;
}
#hd h3 strong,
#hd .h3 strong {
  font: inherit;
}
#hd h4,
#hd .h4 {
  font-family: "TradeGothicBold", "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  font-size: 2.125em;
  font-weight: normal;
  letter-spacing: 0.018em;
  line-height: 1.25;
}
#hd h5 {
  font-family: "TradeGothicBold", "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  font-size: 1.5em;
  font-weight: normal;
  line-height: 1.5;
  color: #ffffff;
  text-transform: uppercase;
}
#hd h6 {
  font-family: "TradeGothicBold", "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  font-size: 1em;
  font-weight: normal;
  line-height: 1.5;
  color: #ffffff;
}
#hd p,
#hd small,
#hd a,
#hd li {
  font-family: "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
}
#hd p {
  font-family: "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  font-size: 1.125em;
  line-height: 1.5;
  letter-spacing: 0.018em;
  font-weight: normal;
}
#hd p.color-primary, #hd p.color-grey {
  font-family: "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
}
#hd b,
#hd strong {
  font-weight: bold;
}
#hd small,
#hd .txt-smaller {
  font-size: 0.875em;
}
#hd .txt-smaller {
  font-size: 0.875em;
}
#hd .align-center {
  text-align: center;
}
#hd .align-left {
  text-align: left;
}
#hd .align-italic {
  font-style: italic;
}
#hd a.txt-link {
  display: inline-block;
  font-weight: 400;
  color: #ff32ee;
}
#hd a.txt-link:hover {
  text-decoration: underline;
}
#hd a.txt-link:hover {
  color: white;
}
#hd .font-rog {
  font-family: "ROGFonts", "TradeGothicBold", "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
}
#hd .color-primary {
  color: #ff32ee;
}
#hd .color-white {
  color: white;
}
#hd .color-grey {
  color: #a5a5a5;
}
#hd .color-gradient {
  display: inline-block;
  color: #ff32ee !important;
  background-color: #7bb8e4;
  background-image: -webkit-gradient(linear, left top, right top, from(#7bb8e4), color-stop(#ffffff), to(#eb66dd));
  background-image: linear-gradient(90deg, #7bb8e4, #ffffff, #eb66dd);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#hd .color-gradient::-moz-selection, #hd .color-gradient > *::-moz-selection {
  color: #ff32ee;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ff32ee;
}
#hd .color-gradient::selection,
#hd .color-gradient > *::selection {
  color: #ff32ee;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ff32ee;
}
#hd .color-gradient::-moz-selection,
#hd .color-gradient > *::-moz-selection {
  color: #ff32ee;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ff32ee;
}
#hd .nobr {
  white-space: nowrap;
}
#hd .hd-uppercase {
  text-transform: uppercase;
}

/*ie11 above fixed*/
_:-ms-fullscreen,
:root #hd .color-gradient {
  background: transparent !important;
}

@media screen and (min-width: 2560px) {
  #hd {
    font-size: 20px;
  }
}
@media screen and (min-width: 3000px) {
  #hd {
    font-size: 28px;
  }
}
@media screen and (max-width: 1440px) {
  #hd h2,
  #hd .h2 {
    font-size: 2.75em;
  }
  #hd p {
    font-size: 1.125em;
  }
}
@media screen and (max-width: 1280px) {
  #hd h3,
  #hd .h3 {
    font-size: 2em;
  }
  #hd h4,
  #hd .h4 {
    font-size: 1.875em;
  }
}
@media screen and (max-width: 1024px) {
  #hd {
    font-size: 14px;
  }
  #hd h2,
  #hd .h2 {
    font-size: 2.5em;
  }
  #hd h3,
  #hd .h3 {
    font-size: 1.75em;
  }
  #hd h4,
  #hd .h4 {
    font-size: 1.5em;
  }
  #hd p {
    font-size: 1em;
    line-height: 1.5;
  }
  #hd small {
    font-size: 0.875em;
  }
}
@media screen and (max-width: 480px) {
  #hd h2,
  #hd .h2 {
    font-size: 2.25em;
  }
}
#hd .w95 {
  width: 94%;
  margin: 0 auto;
  position: relative;
}
#hd .hd-w1000,
#hd .hd-w1200,
#hd .hd-w1400 {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
#hd .hd-w1000 {
  max-width: 1000px;
}
#hd .hd-col20 {
  width: 20%;
}
#hd .hd-col25 {
  width: 25%;
}
#hd .hd-col33 {
  width: 33.3333%;
}
#hd .hd-col35 {
  width: 35%;
}
#hd .hd-col40 {
  width: 40%;
}
#hd .hd-col45 {
  width: 45%;
}
#hd .hd-col50 {
  width: 50%;
}
#hd .hd-col55 {
  width: 55%;
}
#hd .hd-col60 {
  width: 60%;
}
#hd .hd-col65 {
  width: 65%;
}
#hd .hd-col66 {
  width: 66.6666%;
}
#hd .hd-col70 {
  width: 70%;
}
#hd .hd-col75 {
  width: 75%;
}
#hd .hd-col80 {
  width: 80%;
}
#hd .hd-col100 {
  width: 100%;
}
#hd .ib-top {
  display: inline-block;
  vertical-align: top;
}
#hd .ib-bottom {
  display: inline-block;
  vertical-align: bottom;
}
#hd .flex-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#hd .flex-nowrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
#hd .align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#hd .align-items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#hd .align-items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
#hd .justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#hd .justify-content-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#hd .justify-content-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#hd .justify-content-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#hd .justify-content-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
#hd .flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#hd .hd-d-none {
  display: none;
}
#hd .hd-d-ib {
  display: inline-block;
}
#hd .mx-auto {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 2560px) {
  #hd .hd-w1000 {
    max-width: 1200px;
  }
  #hd .hd-w1200 {
    max-width: 1400px;
  }
  #hd .hd-w1400 {
    max-width: 1600px;
  }
}
@media screen and (min-width: 3000px) {
  #hd .hd-w1000 {
    max-width: 2000px;
  }
  #hd .hd-w1200 {
    max-width: 2560px;
  }
  #hd .hd-w1400 {
    max-width: 2560px;
  }
}
@media screen and (max-width: 1023px) {
  #hd .hd-w1000,
  #hd .hd-w1200,
  #hd .hd-w1400 {
    width: 90%;
  }
}
@media screen and (max-width: 1023px) {
  #hd .hd-d-1023-none {
    display: none;
  }
  #hd .hd-d-1023-block {
    display: block;
  }
  #hd .hd-d-1023-inline-block {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  #hd .hd-d-768-none {
    display: none;
  }
  #hd .hd-d-768-block {
    display: block;
  }
}
@media screen and (max-width: 620px) {
  #hd .hd-d-620-none {
    display: none;
  }
  #hd .hd-d-620-block {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  #hd .hd-d-480-none {
    display: none;
  }
  #hd .hd-d-480-block {
    display: block;
  }
}
#hd .hd-btn {
  display: inline-block;
  font-family: "TradeGothicBold", "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  font-size: 1.5em;
  font-weight: bold;
  min-width: 5em;
  letter-spacing: 0.018em;
  padding: 0.3em 0.75em 0.1em;
  border-radius: 0;
  margin: 1em 0.2em;
  text-align: center;
  background: #4d4e4f;
  color: white;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 0.25em), calc(100% - 0.25em) 100%, 0 100%);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
#hd .hd-btn:hover, #hd .hd-btn:focus-visible {
  background: #444;
}

#hd .hd-nav {
  font-size: 14px;
  position: fixed;
  z-index: 9;
  top: 50%;
  right: 30px;
  margin-top: 50px;
  opacity: 1;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition: opacity 0.25s, -webkit-transform 0.4s;
  transition: opacity 0.25s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.25s;
  transition: transform 0.4s, opacity 0.25s, -webkit-transform 0.4s;
}
#hd .hd-nav.is-hidden {
  -webkit-transform: translate3d(20px, -50%, 0);
  transform: translate3d(20px, -50%, 0);
  opacity: 0;
}
#hd .hd-nav.is-hidden:focus-within {
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  opacity: 1;
}
#hd .hd-nav .main-nav {
  position: relative;
  margin: 0;
  padding: 0;
}
#hd .hd-nav .main-nav:before, #hd .hd-nav .main-nav:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 0;
  right: -10px;
  background-repeat: no-repeat;
  background-size: 100%;
}
#hd .hd-nav .main-nav::before {
  background-image: url(../img/nav-rog.png);
  height: 154px;
  bottom: 105%;
}
#hd .hd-nav .main-nav::after {
  background-image: url(../img/nav-model.png);
  height: 100px;
  top: 105%;
}
#hd .hd-nav .main-nav > li {
  display: block;
  margin: 0.5em 0 0.75em;
  position: relative;
}
#hd .hd-nav .main-nav a {
  height: 1em;
  margin-bottom: -0.25em;
  text-decoration: none;
  display: block;
  position: relative;
  z-index: 2;
  min-height: 24px;
  cursor: pointer;
}
#hd .hd-nav .main-nav a:after {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff32ee;
  -webkit-box-shadow: 0 0 0 1px white inset;
          box-shadow: 0 0 0 1px white inset;
  margin-left: auto;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: background 0.6s ease;
  transition: background 0.6s ease;
}
#hd .hd-nav .main-nav a:hover span, #hd .hd-nav .main-nav a:focus-visible span {
  background: white;
}
#hd .hd-nav .main-nav a:hover .hd-tooltip, #hd .hd-nav .main-nav a:focus-visible .hd-tooltip {
  color: black;
  display: block;
}
#hd .hd-nav .main-nav a.hd-active:after {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: white;
}
#hd .hd-nav .main-nav a.hd-active .hd-tooltip {
  color: black;
  display: block;
}
#hd .hd-nav .main-nav a.hd-active + .sub-nav button {
  color: white;
}
#hd .hd-nav .main-nav a.hd-active + .sub-nav button:after {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: white;
  background-image: -webkit-gradient(linear, left top, right top, from(white));
  background-image: linear-gradient(90deg, white);
}
#hd .hd-nav .main-nav .hd-tooltip {
  display: none;
  max-width: 220px;
  height: 1.8em;
  font-family: "TradeGothicBold", "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  line-height: 1;
  top: 0;
  right: -15px;
  padding: 0.5em 1.5em 0.5em 1em;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  background-color: #7bb8e4;
  background-image: linear-gradient(45deg, #7bb8e4, #ffffff, #eb66dd);
}
#hd .hd-nav .sub-nav {
  padding: 0.75em 0 0;
  position: relative;
}
#hd .hd-nav .sub-nav span,
#hd .hd-nav .sub-nav a,
#hd .hd-nav .sub-nav button {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  max-width: 15em;
  color: #999;
  font-family: "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  font-size: 0.9em;
  line-height: 1;
  padding: 0.25em 0;
  padding-right: 40px;
  margin: 0;
  text-align: right;
  position: relative;
  overflow: visible;
}
#hd .hd-nav .sub-nav span:before,
#hd .hd-nav .sub-nav a:before,
#hd .hd-nav .sub-nav button:before {
  display: none;
}
#hd .hd-nav .sub-nav span:after,
#hd .hd-nav .sub-nav a:after,
#hd .hd-nav .sub-nav button:after {
  content: "";
  display: block;
  width: 12px;
  height: 7px;
  background: transparent;
  -webkit-box-shadow: 0 0 0 1px white inset;
          box-shadow: 0 0 0 1px white inset;
  margin-left: auto;
  z-index: 1;
  position: absolute;
  top: 4px;
  right: 12px;
  -webkit-transform: skewY(-30deg);
  transform: skewY(-30deg);
  -webkit-transition: background 0.6s ease;
  transition: background 0.6s ease;
}
#hd .hd-nav .sub-nav a:hover, #hd .hd-nav .sub-nav a:focus-visible,
#hd .hd-nav .sub-nav button:hover,
#hd .hd-nav .sub-nav button:focus-visible {
  color: #ff32ee !important;
}

@media screen and (min-width: 2560px) {
  #hd .hd-nav {
    font-size: 16px;
    right: 50px;
  }
}
@media screen and (max-width: 1440px) {
  #hd .hd-nav {
    font-size: 0.8em;
  }
  #hd .hd-nav .main-nav > li {
    margin: 0.5em 0 0.75em;
  }
  #hd .hd-nav .sub-nav {
    padding-bottom: 0;
  }
  #hd .hd-nav .sub-nav:after {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  #hd .hd-nav {
    right: 1.5em;
    display: none !important;
  }
  #hd .hd-nav .main-nav > li:hover .hd-tooltip {
    opacity: 1;
    -webkit-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
  }
  #hd .hd-nav .main-nav > li:hover button {
    color: white !important;
    -webkit-transition: color 0.6s ease-in-out;
    transition: color 0.6s ease-in-out;
  }
  #hd .hd-nav .hd-tooltip {
    color: transparent;
    white-space: nowrap;
    opacity: 0;
    -webkit-transition: none;
    transition: none;
  }
  #hd .hd-nav .sub-nav span,
  #hd .hd-nav .sub-nav button {
    padding-top: 0;
    padding-bottom: 0;
    color: transparent !important;
    white-space: nowrap;
    -webkit-transition: none;
    transition: none;
  }
}
body.no-scroll {
  overflow: hidden;
}

#hd .hd-lightbox {
  width: 100%;
  height: 100vh;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 1000;
}
#hd .hd-lightbox.hd-active {
  display: block;
}
#hd .hd-lightbox .hd-filter {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
#hd .hd-lightbox .hd-box {
  width: 60%;
  height: auto;
  max-width: 1280px;
  max-height: 720px;
  background: black;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#hd .hd-lightbox .vid-container {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
#hd .hd-lightbox .vid-container iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#hd .hd-lightbox .hd-close {
  width: 4em;
  height: 4em;
  position: absolute;
  bottom: 100%;
  right: 0;
  cursor: pointer;
  z-index: 2;
}
#hd .hd-lightbox .hd-close:hover > span {
  background: #ff32ee;
}
#hd .hd-lightbox .hd-close > span {
  display: block;
  width: 1.5em;
  height: 2px;
  background: white;
  border-radius: 1.5px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#hd .hd-lightbox .hd-close > span:first-child {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
#hd .hd-lightbox .hd-close > span:last-child {
  -webkit-transform: rotateZ(-45deg);
  transform: rotateZ(-45deg);
}
#hd .trigger-play {
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  #hd .hd-lightbox .hd-box {
    margin-top: 20px;
    width: 80%;
  }
  #hd .hd-lightbox .hd-close {
    width: 2.75em;
    height: 2.75em;
  }
  #hd .hd-lightbox .hd-close > span {
    width: 1.25em;
    height: 2px;
  }
}
@media screen and (max-width: 768px) {
  #hd .hd-lightbox .hd-box {
    width: 100%;
  }
}
#hd .show-slider {
  position: relative;
  overflow: hidden;
}
#hd .show-slider .owl-stage-outer {
  overflow: visible;
}
#hd .show-slider .owl-item {
  padding-left: 2.5%;
  padding-right: 2.5%;
  opacity: 0.4;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
#hd .show-slider .owl-item.active {
  opacity: 1;
}
#hd .owl-nav {
  width: 100%;
  height: 2em;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  pointer-events: none;
}
#hd .owl-nav .owl-prev,
#hd .owl-nav .owl-next {
  width: 2em;
  height: 2em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  pointer-events: all;
  opacity: 0.8;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
#hd .owl-nav .owl-prev.disabled,
#hd .owl-nav .owl-next.disabled {
  opacity: 0;
  pointer-events: none;
}
#hd .owl-nav .owl-prev:hover,
#hd .owl-nav .owl-next:hover {
  opacity: 1;
}
#hd .owl-nav .owl-prev {
  right: 100%;
  border-left: 3px solid #ff32ee;
  border-bottom: 3px solid #ff32ee;
}
#hd .owl-nav .owl-next {
  left: 100%;
  border-top: 3px solid #ff32ee;
  border-right: 3px solid #ff32ee;
}
#hd .owl-dots {
  width: 100%;
  margin: 1em auto 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
#hd .owl-dots .owl-dot {
  display: inline-block;
  width: 3.75em;
  height: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}
#hd .owl-dots .owl-dot:first-child {
  margin-left: 0;
}
#hd .owl-dots .owl-dot.active {
  background: #ff32ee;
}
#hd .owl-dots p {
  font-size: 1em;
  text-align: center;
  margin-top: 1em;
  line-height: 1.125;
}

@media screen and (max-width: 1024px) {
  #hd .owl-nav {
    height: 1.5em;
  }
  #hd .owl-nav .owl-prev,
  #hd .owl-nav .owl-next {
    width: 1.5em;
    height: 1.5em;
  }
}
@media screen and (max-width: 768px) {
  #hd .show-slider .owl-item {
    padding-left: 0;
    padding-right: 0;
  }
}
#hd .vid-container {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}
#hd .vid-container iframe,
#hd .vid-container video {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#hd .trigger-video-toggle {
  position: relative;
  overflow: hidden;
}
#hd .vid-control {
  width: 5em;
  height: 5em;
  position: absolute;
  right: 1em;
  bottom: 1em;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  cursor: pointer;
  z-index: 3;
}
#hd .vid-control img,
#hd .vid-control svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#hd .vid-control .play {
  display: none;
}
#hd .vid-control.hd-active .play {
  display: block;
}
#hd .vid-control.hd-active .pause {
  display: none;
}

@media screen and (max-width: 768px) {
  #hd .vid-control {
    width: 4em;
    height: 4em;
  }
}
@media screen and (max-width: 480px) {
  #hd .hd-play {
    width: 20%;
    padding-bottom: 20%;
  }
}
#hd .hd-frame {
  display: block;
  padding: 10% 5%;
  position: relative;
  background: rgba(153, 153, 153, 0.2);
}
#hd .hd-frame .hd-deco:before, #hd .hd-frame .hd-deco:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid white;
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.25s 0.25s, -webkit-transform 0.4s 0.25s;
  transition: opacity 0.25s 0.25s, -webkit-transform 0.4s 0.25s;
  transition: opacity 0.25s 0.25s, transform 0.4s 0.25s;
  transition: opacity 0.25s 0.25s, transform 0.4s 0.25s, -webkit-transform 0.4s 0.25s;
}
#hd .hd-frame .hd-deco:before {
  border-right: none;
  left: 0;
}
#hd .hd-frame .hd-deco:after {
  border-left: none;
  right: 0;
}
#hd .hd-frame .hd-deco.deco-top:before, #hd .hd-frame .hd-deco.deco-top:after {
  border-bottom: none;
  top: 0;
}
#hd .hd-frame .hd-deco.deco-top:before {
  -webkit-transform: translate(-8px, -8px);
  transform: translate(-8px, -8px);
}
#hd .hd-frame .hd-deco.deco-top:after {
  -webkit-transform: translate(8px, -8px);
  transform: translate(8px, -8px);
}
#hd .hd-frame .hd-deco.deco-bottom:before, #hd .hd-frame .hd-deco.deco-bottom:after {
  border-top: none;
  bottom: 0;
}
#hd .hd-frame .hd-deco.deco-bottom:before {
  -webkit-transform: translate(-8px, 8px);
  transform: translate(-8px, 8px);
}
#hd .hd-frame .hd-deco.deco-bottom:after {
  -webkit-transform: translate(8px, 8px);
  transform: translate(8px, 8px);
}
#hd .hd-frame.is-animated .hd-deco:before, #hd .hd-frame.is-animated .hd-deco:after {
  opacity: 0.9;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

#hd .sec-kv {
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 2%;
}
#hd .sec-kv .h2 {
  font-size: 2.1em;
  display: block;
  letter-spacing: 0.05em;
}
#hd .sec-kv .h1 {
  font-size: 3.4em;
  margin-top: 0.5em;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
#hd .sec-kv figure {
  position: relative;
}
#hd .sec-kv figure img {
  width: 100%;
}
#hd .sec-kv figure .cover {
  position: absolute;
  top: 0;
  left: 0;
}
#hd .sec-kv .hd-container {
  margin-top: -18%;
  min-height: 14em;
}
#hd .sec-kv .hd-container.is-animated .h1, #hd .sec-kv .hd-container.is-animated .h2 {
  -webkit-animation-delay: 0.25s;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-name: fadeInLeft;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
  animation-delay: 0.25s;
  animation-duration: 0.4s;
  animation-name: fadeInLeft;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
#hd .sec-kv .hd-container.is-animated p {
  -webkit-animation-delay: 0.5s;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-name: fadeInLeft;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
  animation-delay: 0.5s;
  animation-duration: 0.4s;
  animation-name: fadeInLeft;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
#hd .sec-kv p {
  text-align: center;
}

@media screen and (max-width: 1440px) {
  #hd .sec-kv .h1 {
    font-size: 3.2em;
  }
}
@media screen and (max-width: 1280px) {
  #hd .sec-kv .h1 {
    font-size: 2.8em;
  }
}
@media screen and (max-width: 1023px) {
  #hd .sec-kv figure .kv {
    width: 140%;
    max-width: none !important;
    margin-left: -20%;
  }
  #hd .sec-kv .hd-container {
    margin-top: -23%;
  }
}
@media screen and (max-width: 768px) {
  #hd .sec-kv .hd-container {
    margin-top: -30%;
  }
  #hd .sec-kv figure .kv {
    width: 180%;
    margin-left: -40%;
  }
  #hd .sec-kv .h2 {
    font-size: 2em;
  }
}
@media screen and (max-width: 480px) {
  #hd .sec-kv .h2 {
    font-size: 1.6em;
  }
  #hd .sec-kv .h1 {
    font-size: 2.4em;
  }
}
#hd .sec-intro {
  padding: 100px 0;
}
#hd .sec-intro .hd-content > p {
  max-width: 44em;
  margin: 0 auto 2%;
}

@media screen and (max-width: 1280px) {
  #hd .sec-intro {
    padding: 80px 0;
  }
}
@media screen and (max-width: 480px) {
  #hd .sec-intro {
    padding: 20px 0 60px;
  }
}
#hd .sec-vid {
  padding: 6% 0;
  position: relative;
  overflow: hidden;
}
#hd .sec-vid .hd-bg,
#hd .sec-vid .hd-logo {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
#hd .sec-vid .hd-logo {
  height: auto;
}
#hd .sec-vid .vid-container {
  position: relative;
}
#hd .sec-vid video {
  width: 100%;
  display: block;
}
#hd .sec-vid .vid-control {
  -webkit-transition: none;
  transition: none;
}
#hd .sec-vid .vid-control[aria-pressed=false] {
  width: 44px;
  height: 44px;
  bottom: 0;
  right: 0;
  margin: 10px;
}
#hd .sec-vid .vid-control[aria-pressed=false] > img {
  display: none;
}
#hd .sec-vid .vid-control[aria-pressed=false] .hd-play {
  width: 100%;
  padding-bottom: 100%;
}
#hd .sec-vid .vid-cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
  z-index: 2;
}
#hd .sec-vid .vid-cover > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
#hd .sec-vid .vid-cover:hover .hd-play img:first-child, #hd .sec-vid .vid-cover:focus-visible .hd-play img:first-child {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
#hd .sec-vid .vid-cover:hover .hd-play img:last-child, #hd .sec-vid .vid-cover:focus-visible .hd-play img:last-child {
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
#hd .sec-vid .vid-cover:focus-visible {
  -webkit-box-shadow: 0 0 0 2px #ff32ee inset;
          box-shadow: 0 0 0 2px #ff32ee inset;
}
#hd .sec-vid .vid-cover:active .hd-play img:first-child {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
#hd .sec-vid .vid-cover:active .hd-play img:last-child {
  -webkit-transform: scale(0.95, 0.95);
  transform: scale(0.95, 0.95);
}
#hd .sec-vid .hd-play {
  width: 8%;
  height: 0;
  padding-bottom: 8%;
  position: absolute;
  top: 30%;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#hd .sec-vid .hd-play img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
#hd .sec-vid .hd-play img:last-child {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  #hd .sec-vid {
    padding: 10% 0;
  }
}
@media screen and (max-width: 480px) {
  #hd .sec-vid {
    padding: 18% 0;
  }
}
#hd .sec-control {
  padding: 6% 0;
  position: relative;
  overflow: hidden;
}
#hd .sec-control .hd-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
#hd .sec-control .hd-deco {
  width: 3.75%;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: -1%;
}
#hd .sec-control figure {
  position: relative;
  max-width: 45em;
  margin: 3em auto;
}
#hd .sec-control figure img {
  position: relative;
  width: 100%;
}
#hd .sec-control figure .hd-pd {
  position: absolute;
  top: 0;
  left: 0;
}
#hd .sec-control figure .hd-cover {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#hd .sec-control figure .hd-mobile {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
#hd .sec-control .detail-list li {
  position: absolute;
  text-align: center;
  font-size: 1em;
}
#hd .sec-control .detail-list li:nth-child(1) {
  width: 30%;
  bottom: 91%;
  left: 0;
}
#hd .sec-control .detail-list li:nth-child(2) {
  width: 30%;
  bottom: 91%;
  left: 71%;
}
#hd .sec-control .detail-list li:nth-child(3) {
  width: 38%;
  top: 75%;
  left: 0%;
}
#hd .sec-control .detail-list li:nth-child(4) {
  width: 42%;
  top: 92%;
  left: 30%;
}
#hd .sec-control .hd-container {
  position: relative;
  z-index: 2;
}
#hd .sec-control .hd-content {
  margin-top: 2%;
  padding-right: 3%;
}
#hd .sec-control .hd-note {
  margin-bottom: 1em;
}
#hd .sec-control .txt-link {
  margin-top: 1em;
}

@media screen and (max-width: 1600px) {
  #hd .sec-control .hd-container {
    padding-right: 3%;
  }
}
@media screen and (max-width: 1440px) {
  #hd .sec-control .hd-content {
    margin-left: -5%;
  }
}
@media screen and (max-width: 1280px) {
  #hd .sec-control .hd-container {
    padding-right: 0;
  }
  #hd .sec-control .hd-content {
    margin-left: -2%;
  }
}
@media screen and (max-width: 1023px) {
  #hd .sec-control .hd-container {
    max-width: 600px;
  }
  #hd .sec-control figure {
    width: 90%;
    margin: 2em auto;
  }
  #hd .sec-control figure .hd-mobile {
    display: block;
  }
  #hd .sec-control .detail-list {
    counter-reset: mycounter;
    max-width: 30em;
    margin: 0 auto;
    margin-top: 2em;
  }
  #hd .sec-control .detail-list li:nth-child(n) {
    position: relative;
    inset: auto;
    text-align: left;
    width: 100%;
    font-size: 1.1em;
    padding: 10px 0 10px 34px;
  }
  #hd .sec-control .detail-list li:nth-child(n):nth-child(2) {
    display: none;
  }
  #hd .sec-control .detail-list li:nth-child(n):before {
    counter-increment: mycounter;
    content: counter(mycounter);
    display: block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 15px;
    color: white;
    background: #ff32ee;
    position: absolute;
    top: 5px;
    left: 0;
    z-index: 2;
  }
}
@media screen and (max-width: 480px) {
  #hd .sec-control {
    padding: 12% 0;
  }
}
#hd .sec-lights {
  padding: 6% 0 0;
  position: relative;
  overflow: hidden;
}
#hd .sec-lights .hd-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
#hd .sec-lights .deco-txt {
  width: 25%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -8%;
  margin: auto 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 3;
}
#hd .sec-lights .deco-txt img {
  width: 100%;
  position: sticky;
  top: 0;
  opacity: 0.25;
}
#hd .sec-lights .hd-panel-container {
  position: relative;
}
#hd .sec-lights .panel-operation {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#hd .sec-lights .hd-content {
  padding-left: 2em;
}
#hd .sec-lights .hd-content > * {
  visibility: visible !important;
}
#hd .sec-lights figure {
  margin-left: -10%;
  position: relative;
  visibility: visible !important;
}
#hd .sec-lights figure img {
  width: 100%;
}
#hd .sec-lights figure .hd-light {
  position: absolute;
  top: 0;
  left: 0;
  visibility: visible !important;
}

@media screen and (max-width: 1023px) {
  #hd .sec-lights {
    padding-top: 10%;
  }
  #hd .sec-lights .hd-bg {
    top: 0;
  }
  #hd .sec-lights .panel-operation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
  }
  #hd .sec-lights .panel-operation figure {
    padding-left: 5%;
  }
  #hd .sec-lights figure {
    width: 55%;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  #hd .sec-lights figure {
    width: 100%;
  }
  #hd .sec-lights .hd-content {
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  #hd .sec-lights {
    padding-top: 14%;
  }
}
@media screen and (max-width: 360px) {
  #hd .sec-lights {
    padding: 12% 0 4%;
  }
  #hd .sec-lights .hd-bg {
    top: 25%;
  }
}
#hd .sec-stable {
  padding: 6% 0 4%;
  position: relative;
  overflow: hidden;
}
#hd .sec-stable .hd-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
#hd .sec-stable .hd-content {
  padding: 5% 5% 5% 7%;
}
#hd .sec-stable .list-ksp {
  width: 95%;
  margin: 3% auto 0;
}
#hd .sec-stable .list-ksp li {
  width: 50%;
  padding: 9px;
}
#hd .sec-stable .list-ksp .hd-frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
#hd .sec-stable .list-ksp h3 {
  display: inline-block;
  line-height: 0.875em;
  margin-top: 0.5em;
  margin-bottom: 0;
}
#hd .sec-stable .list-ksp sub {
  display: inline-block;
  font-size: 0.5em;
  margin-bottom: -1.5em;
}
#hd .sec-stable .list-ksp strong {
  font-size: 1.75em;
}
#hd .sec-stable .list-ksp small {
  display: block;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.125;
  margin-top: 0.5em;
}
#hd .sec-stable figure {
  margin-left: 5%;
  margin-right: -5%;
  position: relative;
}
#hd .sec-stable figure img {
  width: 100%;
}
#hd .sec-stable figure .hd-highlight {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1600px) {
  #hd .sec-stable .panel-input {
    padding-right: 5%;
  }
}
@media screen and (max-width: 1440px) {
  #hd .sec-stable .panel-input {
    padding-right: 10%;
  }
  #hd .sec-stable .hd-content {
    padding-left: 5%;
  }
}
@media screen and (max-width: 1280px) {
  #hd .sec-stable .hd-panel {
    padding-right: 0;
  }
}
@media screen and (max-width: 1023px) {
  #hd .sec-stable figure {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  #hd .sec-stable .hd-content {
    padding: 5% 3% 5% 5%;
  }
  #hd .sec-stable .hd-content img {
    margin: 0 auto !important;
    margin-top: 2em !important;
  }
  #hd .sec-stable .list-ksp {
    width: 100%;
  }
  #hd .sec-stable .list-ksp li {
    padding: 2px;
  }
  #hd .sec-stable .list-ksp small {
    font-size: 0.75rem;
  }
  #hd .sec-stable .hd-panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    margin-bottom: 6em;
  }
  #hd .sec-stable figure {
    width: 100%;
    max-width: 500px !important;
    margin: 0 auto;
  }
  #hd .sec-stable .hd-content {
    width: 100%;
    padding: 0 0 40px;
    text-align: center;
  }
}
@media screen and (max-width: 620px) {
  #hd .sec-stable .panel-fuses .hd-content img {
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  #hd .sec-stable {
    padding: 12% 0 4%;
  }
}
#hd .sec-fuses {
  padding: 6% 0;
}
#hd .sec-fuses .panel-fuses figure {
  margin-left: -5%;
  margin-right: 5%;
}
#hd .sec-fuses .panel-fuses .hd-content img {
  width: 60%;
  max-width: 11em !important;
  margin-top: 18%;
  margin-left: 1%;
}

@media screen and (max-width: 1440px) {
  #hd .sec-fuses .panel-fuses {
    padding-right: 5%;
  }
}
@media screen and (max-width: 1024px) {
  #hd .sec-fuses .panel-fuses figure {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  #hd .sec-fuses .hd-content {
    padding: 5% 3% 5% 5%;
  }
  #hd .sec-fuses .hd-content img {
    margin: 0 auto !important;
    margin-top: 2em !important;
  }
  #hd .sec-fuses .hd-panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    margin-bottom: 6em;
  }
  #hd .sec-fuses figure {
    width: 100%;
    max-width: 500px !important;
    margin: 0 auto;
  }
  #hd .sec-fuses .hd-content {
    width: 100%;
    padding: 0 0 40px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  #hd .sec-fuses {
    padding: 0;
  }
}
#hd .sec-mounting {
  padding: 5% 0 0;
  position: relative;
  overflow: hidden;
}
#hd .sec-mounting .hd-container {
  position: relative;
  z-index: 2;
}
#hd .sec-mounting .hd-img-container {
  width: 95%;
  margin-left: auto;
  margin-right: 0;
  margin-top: -2%;
  position: relative;
}
#hd .sec-mounting .hd-img-container img {
  width: 100%;
}
#hd .sec-mounting .hd-highlight {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
#hd .sec-mounting .hd-deco {
  width: 2.2%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5%;
  margin: auto 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media screen and (max-width: 1280px) {
  #hd .sec-mounting .hd-deco {
    left: 2%;
  }
}
@media screen and (max-width: 768px) {
  #hd .sec-mounting {
    padding-top: 10%;
  }
}
@media screen and (max-width: 620px) {
  #hd .sec-mounting .hd-deco {
    width: 3%;
    top: auto;
    bottom: 5%;
  }
  #hd .sec-mounting .hd-img-container {
    width: 140%;
    margin-left: -18%;
  }
}
#hd .sec-faq {
  padding: 4% 0;
  position: relative;
  overflow: hidden;
}
#hd .sec-faq .hd-intro {
  position: relative;
  z-index: 2;
}
#hd .sec-faq .hd-wrapper {
  width: 100%;
}
#hd .sec-faq .hd-content {
  width: 100%;
}
#hd .sec-faq .list-feature > li {
  padding: 14px 40px 14px;
  border-radius: 20px;
  background: #333;
  margin-bottom: 20px;
}
#hd .sec-faq .list-feature button {
  display: block;
  padding: 10px 0;
  width: 100%;
  color: white;
  pointer-events: all;
  cursor: pointer;
  position: relative;
}
#hd .sec-faq .list-feature button i {
  display: block;
  width: 1.8em;
  height: 1.8em;
  border-radius: 2em;
  background: none;
  position: absolute;
  top: 8px;
  right: -0.5em;
  -webkit-transition: background 0.25s ease, -webkit-transform 0.25s 0.25s ease;
  transition: background 0.25s ease, -webkit-transform 0.25s 0.25s ease;
  transition: transform 0.25s 0.25s ease, background 0.25s ease;
  transition: transform 0.25s 0.25s ease, background 0.25s ease, -webkit-transform 0.25s 0.25s ease;
}
#hd .sec-faq .list-feature button i:before, #hd .sec-faq .list-feature button i:after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  border-radius: 2px;
  background: #ff32ee;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
#hd .sec-faq .list-feature button i:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
#hd .sec-faq .list-feature button:hover i, #hd .sec-faq .list-feature button:focus-visible i {
  background: black;
}
#hd .sec-faq .list-feature button[aria-expanded=true] i:before, #hd .sec-faq .list-feature button[aria-expanded=true] i:after {
  background: white;
  -webkit-transition: -webkit-transform 0.25s 0.25s ease;
  transition: -webkit-transform 0.25s 0.25s ease;
  transition: transform 0.25s 0.25s ease;
  transition: transform 0.25s 0.25s ease, -webkit-transform 0.25s 0.25s ease;
}
#hd .sec-faq .list-feature button[aria-expanded=true] i:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hd .sec-faq .list-feature button[aria-expanded=true] i:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#hd .sec-faq .list-feature button[aria-expanded=true] h3 {
  margin-bottom: 0.75em;
}
#hd .sec-faq .list-feature button[aria-expanded=true] ~ .hd-txt {
  display: block;
  -webkit-animation-delay: 0.1s;
  -webkit-animation-duration: 0.4s;
  -webkit-animation-name: fadeInUpSmall;
  -webkit-animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
  animation-delay: 0.1s;
  animation-duration: 0.4s;
  animation-name: fadeInUpSmall;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
#hd .sec-faq .list-feature h3 {
  font-family: "Roboto Condensed", "Segoe UI", "Arial", "PingFang TC", "Microsoft JhengHei", "Microsoft YaHei", sans-serif;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: 0;
  margin-bottom: 0;
  text-align: left;
  padding-right: 1.5em;
}
#hd .sec-faq .list-feature .hd-txt {
  display: none;
  margin-top: 3px;
  padding-right: 3em;
  padding-top: 22px;
  padding-bottom: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
#hd .sec-faq .list-feature p {
  font-size: 1.125em;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 0.75em;
}
#hd .sec-faq .list-feature .txt-link {
  display: inline;
  width: auto;
  margin: 0;
  padding: 0;
  font: inherit;
  text-decoration: underline;
  color: inherit;
  cursor: pointer;
}
#hd .sec-faq .list-feature .txt-link:hover, #hd .sec-faq .list-feature .txt-link:focus-visible {
  color: #ff32ee !important;
}
#hd .sec-faq .detail-list {
  padding-left: 1.2em;
}
#hd .sec-faq .detail-list li {
  list-style: disc;
  margin: 0.4em 0;
  font-size: 1em;
  line-height: 1.3;
}

@media screen and (max-width: 1280px) {
  #hd .sec-faq .list-feature p {
    font-size: 1em;
  }
}
@media screen and (max-width: 1024px) {
  #hd .sec-faq .list-feature > li {
    padding: 10px 30px 6px;
    border-radius: 20px;
    background: #333;
    margin-bottom: 20px;
  }
  #hd .sec-faq .list-feature button {
    padding: 8px 0;
  }
}
@media screen and (max-width: 768px) {
  #hd .sec-faq {
    padding: 6% 0;
  }
  #hd .sec-faq .list-feature {
    font-size: 0.875em;
    margin-bottom: 20px;
  }
  #hd .sec-faq .list-feature > li {
    border-radius: 16px;
  }
  #hd .sec-faq .list-feature button {
    padding-top: 10px;
  }
  #hd .sec-faq .list-feature button i:before, #hd .sec-faq .list-feature button i:after {
    height: 3px;
  }
  #hd .sec-faq .list-feature .hd-txt {
    padding-right: 0;
  }
  #hd .sec-faq .hd-content {
    width: 100%;
    max-width: 600px;
    padding-left: 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 620px) {
  #hd .sec-faq h3 {
    font-size: 1.25em;
  }
}
@media screen and (max-width: 480px) {
  #hd .sec-faq {
    padding: 8% 0;
  }
  #hd .sec-faq .hd-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #hd .sec-faq .hd-intro {
    width: 100%;
    text-align: center;
  }
  #hd .sec-faq .list-feature {
    font-size: 1em;
  }
  #hd .sec-faq .list-feature > li {
    padding: 6px 16px;
    margin-bottom: 12px;
    border-radius: 10px;
  }
}
#hd {
  opacity: 0;
}
#hd.is-loaded {
  opacity: 1;
}
/*# sourceMappingURL=hd-style.css.map */