@import url("https://dlcdnimgs.asus.com/vendor/public/fonts/css/roboto.css");
@font-face {
    font-family: 'TTNormsProNormal';
    src: url("../fonts/TTNormsProNormal.ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'TTNormsProMedium';
    src: url("../fonts/TTNormsProMedium.ttf");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

.style-reset {
    font-family: "Roboto", "Microsoft Jhenghei", "Microsoft YaHei", "Segoe UI", "Arial", 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;
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: break-word
}

.style-reset * ::selection {
    background: #1d2124;
    color: #ff9e1b
}

.style-reset * ::-moz-selection {
    background: #1d2124;
    color: #ff9e1b
}

.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;
    transition: opacity 0.5s ease
}

.style-reset iframe,
.style-reset video {
    max-width: 100%
}

.style-reset button {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none
}

.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 #ff9e1b;
    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
}

@-webkit-keyframes colorrun {
    0% {
        filter: hue-rotate(0deg)
    }

    100% {
        filter: hue-rotate(359deg)
    }
}

@keyframes colorrun {
    0% {
        filter: hue-rotate(0deg)
    }

    100% {
        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 {
    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: .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: .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);
        -ms-transform: translateY(30px);
        transform: translateY(30px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUp {
    -webkit-animation-delay: 0s;
    -webkit-animation-duration: .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: .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);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    100% {
        -webkit-transform: translate(5%, 0);
        -ms-transform: translate(5%, 0);
        transform: translate(5%, 0)
    }
}

@keyframes moveCover {
    0% {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0)
    }

    100% {
        -webkit-transform: translate(5%, 0);
        -ms-transform: translate(5%, 0);
        transform: translate(5%, 0)
    }
}

@-webkit-keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.2, 1);
        -ms-transform: scale(.2, 1);
        transform: scale(.2, 1)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.2, 1);
        -ms-transform: scale(.2, 1);
        transform: scale(.2, 1)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1)
    }
}

@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", "Microsoft Jhenghei", "Microsoft YaHei", "Segoe UI", "Arial", sans-serif;
    font-size: 16px
}

#hd h2,
#hd .h2 {
    font-family: "FFDINCondensedBold", "Roboto", "Microsoft Jhenghei", "Microsoft YaHei", "Segoe UI", "Arial", sans-serif;
    font-size: 3.125em;
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1.25;
    margin-bottom: .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: "FFDINCondensedBold", "Roboto", "Microsoft Jhenghei", "Microsoft YaHei", "Segoe UI", "Arial", sans-serif;
    font-size: 2.35em;
    font-weight: normal;
    letter-spacing: .018em;
    line-height: 1.125;
    margin-bottom: .4em
}

#hd h3 strong,
#hd .h3 strong {
    font: inherit
}

#hd h4,
#hd .h4 {
    font-family: "FFDINCondensedBold", "Roboto", "Microsoft Jhenghei", "Microsoft YaHei", "Segoe UI", "Arial", sans-serif;
    font-size: 2.125em;
    font-weight: normal;
    letter-spacing: .018em;
    line-height: 1.25
}

#hd h5 {
    font-family: "FFDINCondensedBold", "Roboto", "Microsoft Jhenghei", "Microsoft YaHei", "Segoe UI", "Arial", sans-serif;
    font-size: 1.5em;
    font-weight: normal;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase
}

#hd h6 {
    font-family: "FFDINCondensedBold", "Roboto", "Microsoft Jhenghei", "Microsoft YaHei", "Segoe UI", "Arial", 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", "Microsoft Jhenghei", "Microsoft YaHei", "Segoe UI", "Arial", sans-serif
}

#hd p {
    font-family: "Roboto", "Microsoft Jhenghei", "Microsoft YaHei", "Segoe UI", "Arial", sans-serif;
    font-size: 1.125em;
    line-height: 1.6;
    letter-spacing: .018em;
    font-weight: normal
}

#hd p.color-primary,
#hd p.color-grey {
    font-family: "Roboto", "Microsoft Jhenghei", "Microsoft YaHei", "Segoe UI", "Arial", sans-serif
}

#hd b,
#hd strong {
    font-weight: bold
}

#hd small,
#hd .txt-smaller {
    font-size: .875em
}

#hd .txt-smaller {
    font-size: .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;
    text-decoration: underline;
    font-weight: 400;
    margin-top: .5em
}

#hd a.txt-link:hover {
    color: white
}

#hd .font-tuf {
    font-family: "KairosSansCondensedMedium", "MachineBT", "FFDINCondensedBold", "Roboto", "Microsoft Jhenghei", "Microsoft YaHei", "Segoe UI", "Arial", sans-serif
}

#hd .color-primary {
    color: #ff9e1b
}

#hd .color-white {
    color: white
}

#hd .color-grey {
    color: #a5a5a5
}

#hd .color-gradient {
    display: inline-block;
    color: #ff9e1b !important;
    background-color: #ffe4aa;
    background-image: -webkit-linear-gradient(90deg, #ffe4aa, #eef6f9);
    background-image: linear-gradient(90deg, #ffe4aa, #eef6f9);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

#hd .color-gradient::selection,
#hd .color-gradient>*::selection {
    color: #ff9e1b;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ff9e1b
}

#hd .color-gradient::-moz-selection,
#hd .color-gradient>*::-moz-selection {
    color: #ff9e1b;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ff9e1b
}

#hd .hd-uppercase {
    text-transform: uppercase
}

_:-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: .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: flex;
    flex-wrap: wrap
}

#hd .flex-nowrap {
    display: flex;
    flex-wrap: nowrap
}

#hd .align-items-center {
    align-items: center
}

#hd .align-items-start {
    align-items: flex-start
}

#hd .align-items-end {
    align-items: flex-end
}

#hd .justify-content-center {
    justify-content: center
}

#hd .justify-content-start {
    justify-content: flex-start
}

#hd .justify-content-end {
    justify-content: flex-end
}

#hd .justify-content-between {
    justify-content: space-between
}

#hd .justify-content-around {
    justify-content: space-around
}

#hd .flex-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: "FFDINCondensedBold", "Roboto", "Microsoft Jhenghei", "Microsoft YaHei", "Segoe UI", "Arial", sans-serif;
    font-size: 1.5em;
    font-weight: bold;
    min-width: 5em;
    letter-spacing: .018em;
    padding: .3em .75em .1em;
    border-radius: 0;
    margin: 1em .2em;
    text-align: center;
    background: #4d4e4f;
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - .25em), calc(100% - .25em) 100%, 0 100%);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background 0.4s ease
}

#hd .hd-btn:hover,
#hd .hd-btn:focus-visible {
    background: #444
}

#hd .hd-nav {
    position: fixed;
    z-index: 10;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    transition: transform 0.6s, opacity 0.4s
}

#hd .hd-nav.left {
    left: 20px
}

#hd .hd-nav.right {
    right: 20px
}

#hd .hd-nav.is-hidden:not(:focus-within) {
    -webkit-transform: translate3d(100%, -50%, 0);
    -ms-transform: translate3d(100%, -50%, 0);
    transform: translate3d(100%, -50%, 0);
    opacity: 0
}

#hd .hd-nav ul {
    margin: 0;
    padding: 0
}

#hd .hd-nav ul li {
    display: block;
    margin: 12px 0;
    position: relative
}

#hd .hd-nav ul li a {
    display: block;
    z-index: 1;
    cursor: pointer;
    text-decoration: none
}

#hd .hd-nav ul li a span {
    display: block;
    height: 3vh;
    min-height: 1em;
    width: 8px;
    border: 1px solid rgba(255, 158, 27, 0.5);
    background: rgba(255, 158, 27, 0.25);
    z-index: 1;
    -webkit-transform: skew(0deg, 320deg);
    -ms-transform: skew(0deg, 320deg);
    transform: skew(0deg, 320deg);
    transition: background 0.1s ease-in-out
}

#hd .hd-nav ul li a:hover span,
#hd .hd-nav ul li a:focus-visible span,
#hd .hd-nav ul li a.is-current span {
    background: #ff9e1b
}

#hd .hd-nav ul li a:hover .hd-tooltip,
#hd .hd-nav ul li a:focus-visible .hd-tooltip,
#hd .hd-nav ul li a.is-current .hd-tooltip {
    color: white
}

#hd .hd-nav ul li .hd-tooltip {
    height: 1.5em;
    font-size: .75em;
    font-family: "Roboto", arial, sans-serif;
    white-space: nowrap;
    text-transform: uppercase;
    max-width: 17em;
    color: #aaaaaa;
    overflow: hidden;
    display: block;
    margin: auto 0;
    position: absolute;
    top: .5em;
    bottom: 0
}

#hd .hd-nav ul li .hd-tooltip.right {
    right: 20px
}

#hd .hd-nav ul li .hd-tooltip .left {
    left: 20px
}

#hd .hd-nav.fp-show-active a.is-current .hd-tooltip {
    color: white;
    -webkit-transition: white .2s ease-in;
    transition: white .2s ease-in;
    width: auto
}

#hd .scroll-up {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    text-align: center;
    cursor: pointer;
    border: 2px solid #ff9e1b;
    opacity: 0;
    transition: opacity 0.4s ease
}

#hd .scroll-up.hd-show {
    opacity: 1
}

#hd .scroll-up svg {
    display: block;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 5px;
    left: 0;
    fill: #ff9e1b;
    -webkit-transform: rotateZ(270deg);
    -moz-transform: rotateZ(270deg);
    -ms-transform: rotateZ(270deg);
    -o-transform: rotateZ(270deg);
    transform: rotateZ(270deg)
}

#hd .scroll-up:hover {
    background-color: #ff9e1b
}

#hd .scroll-up:hover svg {
    fill: white
}

@media screen and (max-width: 1280px) {
    #hd .hd-nav {
        display: none
    }

    #hd .hd-nav ul li .hd-tooltip {
        display: none
    }
}

@media screen and (max-width: 480px) {
    #hd .scroll-up {
        bottom: 15px;
        right: 15px
    }
}

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%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: 50px;
    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: #ff9e1b
}

#hd .hd-lightbox .hd-close>span {
    display: block;
    width: 1.5em;
    height: 2px;
    background: white;
    -webkit-border-radius: 1.5px;
    -moz-border-radius: 1.5px;
    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);
    -ms-transform: rotateZ(45deg);
    transform: rotateZ(45deg)
}

#hd .hd-lightbox .hd-close>span:last-child {
    -webkit-transform: rotateZ(-45deg);
    -ms-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: .4;
    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);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    pointer-events: all;
    opacity: 0.8;
    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 #ff9e1b;
    border-bottom: 3px solid #ff9e1b
}

#hd .owl-nav .owl-next {
    left: 100%;
    border-top: 3px solid #ff9e1b;
    border-right: 3px solid #ff9e1b
}

#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: #ff9e1b
}

#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;
    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% 10% 5%;
    position: relative;
    background: rgba(255, 255, 255, 0.1)
}

#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;
    transition: opacity 0.25s 0.25s, 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);
    -ms-transform: translate(-8px, -8px);
    transform: translate(-8px, -8px)
}

#hd .hd-frame .hd-deco.deco-top:after {
    -webkit-transform: translate(8px, -8px);
    -ms-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);
    -ms-transform: translate(-8px, 8px);
    transform: translate(-8px, 8px)
}

#hd .hd-frame .hd-deco.deco-bottom:after {
    -webkit-transform: translate(8px, 8px);
    -ms-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);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0)
}

#hd .sec-kv {
    position: relative;
    overflow: hidden
}

#hd .sec-kv .hd-bg {
    width: 100%
}

#hd .sec-kv figure {
    width: 120%;
    margin-left: -10%;
    position: relative
}

#hd .sec-kv figure img {
    width: 100%
}

#hd .sec-kv .hd-pd {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0
}

#hd .sec-kv .hd-flow {
    mix-blend-mode: plus-lighter;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0
}

#hd .sec-kv .hd-border {
    width: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 10px;
    transition: opacity 0.4s, transform 0.8s;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: lighten
}

#hd .sec-kv .hd-border.border-left {
    height: 100%;
    left: 10%;
    -webkit-transform: translate(5%, 0);
    -ms-transform: translate(5%, 0);
    transform: translate(5%, 0)
}

#hd .sec-kv .hd-border.border-right {
    height: 94%;
    right: 10%;
    -webkit-transform: translate(-5%, 0);
    -ms-transform: translate(-5%, 0);
    transform: translate(-5%, 0)
}

#hd .sec-kv .hd-container {
    display: flex;
    align-items: center;
    width: 85%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    z-index: 2
}

#hd .sec-kv .hd-content {
    margin-left: auto;
    margin-top: 5%
}

#hd .sec-kv h2 {
    font-size: 4.25em;
    letter-spacing: .19em;
    line-height: .9;
    margin-bottom: 0
}

#hd .sec-kv h2 .title-deco {
    display: block;
    width: 97%;
    margin: 0 auto .5em;
    font-size: 0.4em;
    font-weight: bold;
    letter-spacing: .1em;
    padding: .4em 0 .35em;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    opacity: 0;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    color: transparent;
    transition: opacity 0.4s 0.25s, transform 0.8s 0.25s, color 0.2s 0.8s
}

#hd .sec-kv h2 .title-deco:before,
#hd .sec-kv h2 .title-deco:after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: url(../img/overview/deco-dots.svg) center no-repeat;
    background-size: auto .5em;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: opacity 0.4s 0.8s
}

#hd .sec-kv h2 .title-deco:before {
    right: 50%;
    background-position: 0 center
}

#hd .sec-kv h2 .title-deco:after {
    left: 50%;
    background-position: right center
}

#hd .sec-kv h2 strong {
    padding-top: 0.25em
}

#hd .sec-kv.is-animated .hd-border {
    opacity: 0.5;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0)
}

#hd .sec-kv.is-animated h2 .title-deco {
    opacity: 1;
    color: white;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1)
}

#hd .sec-kv.is-animated h2 .title-deco:before,
#hd .sec-kv.is-animated h2 .title-deco:after {
    opacity: 1
}

@media screen and (min-width: 2560px) {
    #hd .sec-kv figure {
        width: 100%;
        margin-left: 0
    }

    #hd .sec-kv .hd-container {
        width: 70%
    }

    #hd .sec-kv h2 {
        font-size: 3.5em
    }

    #hd .sec-kv h2 .title-deco {
        font-size: 0.5em
    }
}

@media screen and (max-width: 1600px) {
    #hd .sec-kv h2 {
        font-size: 4em
    }
}

@media screen and (max-width: 1024px) {
    #hd .sec-kv h2 {
        font-size: 3.25em
    }

    #hd .sec-kv h2 .title-deco {
        font-size: 0.4em
    }
}

@media screen and (max-width: 1023px) {
    #hd .sec-kv {
        padding-bottom: 40px
    }

    #hd .sec-kv .hd-bg,
    #hd .sec-kv .hd-pd,
    #hd .sec-kv .hd-flow {
        width: 160%;
        max-width: none !important;
        margin-right: -50%;
        margin-left: -5%
    }

    #hd .sec-kv .hd-bg {
        margin-right: -10%;
        margin-left: -2%
    }

    #hd .sec-kv .hd-container {
        position: relative
    }

    #hd .sec-kv .hd-content {
        width: 100%
    }

    #hd .sec-kv h2 {
        font-size: 5em
    }
}

@media screen and (max-width: 768px) {
    #hd .sec-kv h2 {
        font-size: 3.5em
    }
}

@media screen and (max-width: 480px) {
    #hd .sec-kv .hd-container {
        margin-top: 10px
    }

    #hd .sec-kv h2 {
        font-size: 3em
    }
}

#hd .sec-intro {
    padding: 100px 0
}

#hd .sec-intro .hd-content>p {
    max-width: 54em;
    margin: 0 auto 3em
}

#hd .sec-intro .list-ksp {
    width: 100%;
    max-width: 39em;
    margin: 0 auto
}

#hd .sec-intro .list-ksp li {
    padding: 0 2%
}

#hd .sec-intro .list-ksp img {
    width: auto;
    height: 4.5em;
    margin-bottom: 16px
}

#hd .sec-intro .list-ksp .h3 {
    font-size: 1.25em;
    letter-spacing: .018em;
    color: white;
    text-transform: none;
    margin-bottom: .25em
}

@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-intro .list-ksp li {
        display: flex;
        align-items: center;
        width: 100%;
        text-align: left;
        margin-bottom: 10px
    }

    #hd .sec-intro .list-ksp .hd-img-container {
        width: 7em;
        flex-shrink: 0;
        margin-right: 1em
    }

    #hd .sec-intro .list-ksp img {
        margin-bottom: 0
    }

    #hd .sec-intro .list-ksp .h3 {
        font-size: 1.25em;
        margin-bottom: 0
    }

    #hd .sec-intro .list-ksp .h3 br {
        display: none
    }
}

#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;
    object-fit: cover;
    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 {
    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: 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%;
    object-fit: cover;
    opacity: .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);
    -ms-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);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05)
}

#hd .sec-vid .vid-cover:focus-visible {
    box-shadow: 0 0 0 2px #ff9e1b inset
}

#hd .sec-vid .vid-cover:active .hd-play img:first-child {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg)
}

#hd .sec-vid .vid-cover:active .hd-play img:last-child {
    -webkit-transform: scale(.95, .95);
    -ms-transform: scale(.95, .95);
    transform: scale(.95, .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%;
    transition: 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-thick {
    position: relative;
    overflow: hidden
}

#hd .sec-thick .hd-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center top
}

#hd .sec-thick .hd-deco {
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: -1%
}

#hd .sec-thick figure {
    position: relative
}

#hd .sec-thick figure img {
    width: 100%
}

#hd .sec-thick figure .hd-highlight {
    position: absolute;
    top: 0;
    left: 0
}

#hd .sec-thick figure .reveal-scale-delay2 {
    transform-origin: 55% 45%
}

#hd .sec-thick .hd-container {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 2
}

#hd .sec-thick .hd-content {
    margin-top: 2%
}

@media screen and (max-width: 1023px) {
    #hd .sec-thick .hd-container {
        position: relative
    }

    #hd .sec-thick .hd-deco {
        margin-left: -3%
    }

    #hd .sec-thick .hd-content {
        width: 100%;
        padding: 40px 0 0 10%;
        margin: 0
    }

    #hd .sec-thick figure {
        width: 180%;
        margin-left: -80%
    }
}

@media screen and (max-width: 480px) {
    #hd .sec-thick .hd-deco {
        margin-left: -5%
    }

    #hd .sec-thick .hd-content {
        padding-left: 14%
    }
}

#hd .sec-cooling {
    background: #605e5e;
    padding: 6% 0 3%;
    position: relative;
    overflow: hidden
}

#hd .sec-cooling .hd-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center bottom
}

#hd .sec-cooling .vid-pos {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

#hd .sec-cooling .vid-pos:after {
    content: '';
    display: block;
    width: 30%;
    height: 100%;
    background-color: rgba(96, 94, 94, 0);
    background-image: -webkit-linear-gradient(90deg, rgba(96, 94, 94, 0), #605e5e);
    background-image: linear-gradient(90deg, rgba(96, 94, 94, 0), #605e5e);
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
    user-select: none;
    z-index: 2
}

#hd .sec-cooling .vid-pos .vid-container {
    padding-bottom: 0;
    height: 100%
}

#hd .sec-cooling .vid-pos video {
    object-fit: cover
}

#hd .sec-cooling .vid-pos .vid-control {
    right: 20%
}

#hd .sec-cooling .hd-container {
    width: 90%;
    position: relative;
    z-index: 3
}

#hd .sec-cooling .hd-container>.hd-deco {
    width: 3.25%;
    position: absolute;
    top: .5em;
    left: 100%;
    margin-left: 2%;
    pointer-events: none;
    user-select: none
}

#hd .sec-cooling .hd-content {
    margin-left: auto
}

#hd .sec-cooling .hd-content h2 {
    margin-right: -1.875em
}

#hd .sec-cooling .list-ksp {
    width: 97%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 12px;
    margin-top: 10%
}

#hd .sec-cooling .list-ksp li:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2
}

#hd .sec-cooling .list-ksp li:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2
}

#hd .sec-cooling .list-ksp li:nth-child(3) {
    grid-area: 1 / 2 / 3 / 3
}

#hd .sec-cooling .list-ksp li:last-child strong {
    font-size: 3.5em
}

#hd .sec-cooling .list-ksp .hd-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 14%
}

#hd .sec-cooling .list-ksp h3 {
    display: inline-block;
    line-height: .875em;
    margin-top: 0.5em;
    margin-bottom: 0
}

#hd .sec-cooling .list-ksp sub {
    display: inline-block;
    font-size: 0.5em;
    margin-bottom: -1.5em
}

#hd .sec-cooling .list-ksp span {
    white-space: nowrap
}

#hd .sec-cooling .list-ksp strong {
    font-size: 2em
}

#hd .sec-cooling .list-ksp small {
    display: block;
    font-size: 0.5em
}

#hd .sec-cooling figure {
    width: 53%;
    margin-left: -11%;
    position: relative;
    z-index: 2
}

#hd .sec-cooling figure img {
    width: 100%
}

@media screen and (max-width: 1440px) {
    #hd .sec-cooling .list-ksp {
        grid-column-gap: 20px;
        grid-row-gap: 10px;
        margin-top: 5%
    }

    #hd .sec-cooling .list-ksp li:last-child strong {
        font-size: 3em
    }

    #hd .sec-cooling .list-ksp h3 {
        font-size: 2.25em
    }
}

@media screen and (max-width: 1024px) {
    #hd .sec-cooling>.hd-deco {
        width: 20%
    }
}

@media screen and (max-width: 1023px) {
    #hd .sec-cooling {
        padding-bottom: 0;
        background: #605e5e
    }

    #hd .sec-cooling>.hd-deco {
        width: 30%;
        left: auto;
        right: 5%
    }

    #hd .sec-cooling .vid-pos {
        width: 100%;
        height: auto;
        position: relative
    }

    #hd .sec-cooling .vid-pos .vid-container {
        height: 0;
        padding-bottom: 56.25%
    }

    #hd .sec-cooling .hd-content {
        width: 100%;
        max-width: 600px;
        padding: 0;
        margin: 0 auto;
        text-align: center
    }

    #hd .sec-cooling .hd-content h2 {
        margin-right: 0
    }
}

@media screen and (max-width: 768px) {
    #hd .sec-cooling {
        padding: 60px 0 0
    }
}

@media screen and (max-width: 480px) {
    #hd .sec-cooling {
        padding: 40px 0 0
    }

    #hd .sec-cooling>.hd-deco {
        width: 50%
    }

    #hd .sec-cooling .vid-pos {
        width: 180%;
        margin-left: -40%
    }

    #hd .sec-cooling .vid-pos .vid-control {
        left: auto;
        right: 22%
    }

    #hd .sec-cooling .list-ksp {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 8px;
        grid-row-gap: 10px;
        margin: 20px auto 0
    }

    #hd .sec-cooling .list-ksp li:nth-child(1) {
        grid-area: 1 / 1 / 2 / 2
    }

    #hd .sec-cooling .list-ksp li:nth-child(2) {
        grid-area: 1 / 2 / 2 / 3
    }

    #hd .sec-cooling .list-ksp li:nth-child(3) {
        grid-area: 2 / 1 / 3 / 3
    }

    #hd .sec-cooling .list-ksp h3 {
        font-size: 2em
    }

    #hd .sec-cooling .list-ksp strong {
        font-size: 1.3em
    }

    #hd .sec-cooling .list-ksp small {
        font-size: 0.6em
    }
}

#hd .sec-efficiency {
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden
}

#hd .sec-efficiency .hd-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center top
}

#hd .sec-efficiency h2 {
    margin-bottom: .75em
}

#hd .sec-efficiency ul[role="tablist"] {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    border-bottom: 1px solid #ff9e1b;
    position: relative;
    z-index: 2
}

#hd .sec-efficiency ul[role="tablist"] li {
    font-family: "FFDINCondensedBold", "Roboto", "Microsoft Jhenghei", "Microsoft YaHei", "Segoe UI", "Arial", sans-serif;
    font-size: 2.25em;
    min-width: 10em;
    line-height: 1;
    color: #9d9d9d;
    padding: .25em .5em;
    position: relative;
    cursor: pointer;
    transition: color 0.25s
}

#hd .sec-efficiency ul[role="tablist"] li:before {
    content: '';
    display: block;
    width: 6em;
    height: 4px;
    background: #ff9e1b;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto -2px;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    transition: transform 0.25s
}

#hd .sec-efficiency ul[role="tablist"] li:focus-visible {
    color: white
}

@media (hover: hover) {
    #hd .sec-efficiency ul[role="tablist"] li:hover {
        color: white
    }
}

#hd .sec-efficiency ul[role="tablist"] li[aria-current="true"] {
    color: white
}

#hd .sec-efficiency ul[role="tablist"] li[aria-current="true"]:before {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1)
}

#hd .sec-efficiency .hd-container {
    width: 40%;
    margin: 0 auto
}

#hd .sec-efficiency [role="tabpanel"] {
    padding: 4% 0;
    display: none
}

#hd .sec-efficiency [role="tabpanel"][aria-current="true"] {
    display: block;
    -webkit-animation-delay: 0s;
    -webkit-animation-duration: .6s;
    -webkit-animation-name: fadeInUp;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-fill-mode: both;
    animation-delay: 0s;
    animation-duration: .6s;
    animation-name: fadeInUp;
    animation-timing-function: ease;
    animation-iteration-count: 1;
    animation-fill-mode: both
}

#hd .sec-efficiency figure {
    margin-top: 60px
}

#hd .sec-efficiency .hd-frame {
    background: rgba(255, 255, 255, 0.05)
}

@media screen and (max-width: 1440px) {
    #hd .sec-efficiency .hd-container {
        width: 45%
    }
}

@media screen and (max-width: 1280px) {
    #hd .sec-efficiency {
        padding-top: 80px;
        padding-bottom: 40px
    }
}

@media screen and (max-width: 1024px) {
    #hd .sec-efficiency .hd-container {
        width: 60%
    }
}

@media screen and (max-width: 768px) {
    #hd .sec-efficiency {
        padding-top: 60px
    }

    #hd .sec-efficiency h2 {
        margin-bottom: 0.5em
    }

    #hd .sec-efficiency .hd-container {
        width: 75%
    }

    #hd .sec-efficiency ul[role="tablist"] li {
        font-size: 1.75em;
        padding-block: .5em;
        min-width: 8em
    }

    #hd .sec-efficiency ul[role="tablist"] li:before {
        width: 5em
    }

    #hd .sec-efficiency figure {
        margin-top: 40px
    }
}

@media screen and (max-width: 480px) {
    #hd .sec-efficiency {
        padding-top: 40px
    }

    #hd .sec-efficiency .hd-container {
        width: 90%
    }

    #hd .sec-efficiency ul[role="tablist"] li {
        font-size: 1.5em;
        padding-block: .75em;
        min-width: 6em
    }

    #hd .sec-efficiency figure {
        margin-top: 30px
    }
}

#hd .sec-style {
    padding: 100px 0 0;
    position: relative
}

#hd .sec-style .hd-bg {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: 0 0
}

#hd .sec-style .deco-txt {
    width: 20%;
    height: 100%;
    position: absolute;
    top: 10px;
    right: 0;
    margin: auto 0;
    pointer-events: none;
    user-select: none;
    z-index: 3
}

#hd .sec-style .deco-txt img {
    width: 100%;
    position: sticky;
    top: 50px;
    opacity: 0.25
}

#hd .sec-style .hd-title,
#hd .sec-style .hd-panel {
    position: relative;
    z-index: 2
}

#hd .sec-style .hd-title .hd-deco {
    width: calc(50% - 15em);
    position: absolute;
    top: 0;
    bottom: 10%;
    right: 50%;
    margin: auto 0;
    margin-right: 17em;
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

#hd .sec-style .hd-wrapper {
    position: relative;
    z-index: 2
}

#hd .sec-style .hd-pattern {
    width: 100%
}

#hd .sec-style .panel-led {
    margin: 5% 0;
    position: relative;
    z-index: 3
}

#hd .sec-style .panel-led .hd-content {
    padding-right: 5%
}

#hd .sec-style .panel-led .hd-content p {
    max-width: 30em
}

#hd .sec-style .panel-led figure img {
    width: 95%;
    margin: 0 auto
}

#hd .sec-style .panel-led .vid-control {
    right: auto;
    left: 100%
}

#hd .sec-style .panel-pattern .hd-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto
}

#hd .sec-style .panel-pattern .hd-content {
    margin-top: 5%;
    margin-left: auto;
    position: relative;
    z-index: 2
}

#hd .sec-style .panel-pattern .hd-deco {
    width: 90%;
    margin-top: 10%;
    margin-left: 0
}

#hd .sec-style .panel-pattern .vid-container {
    padding-bottom: 40%
}

#hd .sec-style .panel-pattern .vid-container video {
    object-fit: cover;
    object-position: center bottom
}

@media screen and (max-width: 1280px) {
    #hd .sec-style {
        padding-top: 80px
    }

    #hd .sec-style .panel-pattern .hd-content {
        margin-top: 0
    }
}

@media screen and (max-width: 768px) {
    #hd .sec-style {
        padding-top: 60px
    }

    #hd .sec-style .hd-wrapper {
        width: 80%;
        margin: 0 auto
    }

    #hd .sec-style .panel-led {
        margin-bottom: 60px
    }

    #hd .sec-style .panel-pattern {
        position: relative;
        overflow: hidden
    }

    #hd .sec-style .panel-pattern .hd-pattern {
        width: 170%;
        max-width: none !important;
        margin-top: -15%
    }

    #hd .sec-style .panel-pattern figure {
        width: 100%
    }

    #hd .sec-style .panel-pattern .vid-container:after {
        display: none
    }

    #hd .sec-style .panel-pattern .hd-wrapper {
        position: relative
    }

    #hd .sec-style .panel-pattern .hd-content {
        width: 100%
    }

    #hd .sec-style .panel-pattern .hd-deco {
        max-width: 400px !important;
        margin-top: 20px
    }
}

@media screen and (max-width: 620px) {
    #hd .sec-style {
        text-align: center
    }

    #hd .sec-style .panel-led .hd-wrapper {
        flex-direction: column
    }

    #hd .sec-style .panel-led .hd-content {
        width: 100%;
        padding: 0
    }

    #hd .sec-style .panel-led .hd-content p {
        max-width: none
    }

    #hd .sec-style .panel-led figure {
        width: 100%;
        max-width: 400px;
        margin: 20px auto 0
    }

    #hd .sec-style .panel-pattern .hd-deco {
        margin-inline: auto
    }

    #hd .sec-style .panel-pattern .hd-pattern {
        width: 200%;
        margin-top: -18%;
        margin-left: -10%
    }

    #hd .sec-style .panel-pattern .vid-control {
        bottom: 0
    }
}

#hd .sec-colors {
    padding: 100px 0;
    position: relative;
    overflow: hidden
}

#hd .sec-colors .hd-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center bottom;
    transition: opacity .8s ease !important
}

#hd .sec-colors>.hd-deco {
    width: 2.2%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 5%;
    margin: auto 0;
    pointer-events: none;
    user-select: none
}

#hd .sec-colors .hd-container {
    position: relative;
    z-index: 3
}

#hd .sec-colors .hd-title p {
    max-width: 52em;
    margin: 0 auto 3em
}

#hd .sec-colors ul {
    margin-top: 8%
}

#hd .sec-colors li {
    padding: 0 1.2%
}

#hd .sec-colors li:first-child .hd-bottom:before {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #ff9e1b;
    box-sizing: border-box;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 1em), calc(100% - 1em) 100%, 0 100%);
    position: absolute;
    top: 0;
    left: 0
}

#hd .sec-colors li:first-child .hd-bottom:after {
    width: 1.4em;
    height: 1px;
    background: #ff9e1b;
    position: absolute;
    bottom: 0.475em;
    right: -0.15em;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

#hd .sec-colors li:last-child .hd-bottom:before {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid #ff9e1b;
    box-sizing: border-box;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 1em 100%, 0 calc(100% - 1em));
    position: absolute;
    top: 0;
    left: 0
}

#hd .sec-colors li:last-child .hd-bottom:after {
    width: 1.4em;
    height: 1px;
    background: #ff9e1b;
    position: absolute;
    bottom: 0.475em;
    left: -0.15em;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

#hd .sec-colors .hd-txt {
    position: relative;
    z-index: 2
}

#hd .sec-colors .hd-txt h3 {
    letter-spacing: .04em;
    padding-top: 0.2em;
    background: rgba(255, 158, 27, 0.5);
    border: 1px solid #ff9e1b;
    margin-bottom: -1px
}

#hd .sec-colors .hd-txt .hd-bottom {
    padding: 5% 2% 10%;
    position: relative
}

#hd .sec-colors .hd-txt .hd-bottom:before,
#hd .sec-colors .hd-txt .hd-bottom:after {
    content: '';
    display: block;
    pointer-events: none;
    user-select: none;
    z-index: -1
}

#hd .sec-colors .hd-txt img {
    width: 95%;
    margin: 0 auto
}

@media screen and (max-width: 1280px) {
    #hd .sec-colors {
        padding: 80px 0
    }

    #hd .sec-colors>.hd-deco {
        left: 2%
    }
}

@media screen and (max-width: 620px) {
    #hd .sec-colors>.hd-deco {
        width: 5%
    }

    #hd .sec-colors ul {
        flex-direction: column
    }

    #hd .sec-colors li {
        padding: 0;
        margin-bottom: 20px
    }

    #hd .sec-colors li:last-child {
        margin-bottom: 0
    }

    #hd .sec-colors .hd-txt {
        max-width: 400px;
        margin: 0 auto
    }
}

@media screen and (max-width: 480px) {
    #hd .sec-colors {
        padding: 40px 0
    }

    #hd .sec-colors>.hd-deco {
        display: none
    }
}

#hd .sec-build {
    background: #303030;
    padding: 5% 0 0;
    position: relative;
    overflow: hidden
}

#hd .sec-build .hd-bg {
    width: 100%
}

#hd .sec-build .hd-border {
    width: auto;
    height: 80%;
    position: absolute;
    margin: 5px 0;
    opacity: 0;
    transition: opacity 0.4s, transform 0.8s;
    pointer-events: none;
    user-select: none
}

#hd .sec-build .hd-border.border-left {
    left: 0;
    bottom: 0;
    margin-left: -25%;
    -webkit-transform: translate(-5%, 0);
    -ms-transform: translate(-5%, 0);
    transform: translate(-5%, 0)
}

#hd .sec-build .hd-border.border-right {
    top: 0;
    right: 0;
    margin-right: -25%;
    -webkit-transform: translate(5%, 0);
    -ms-transform: translate(5%, 0);
    transform: translate(5%, 0);
    z-index: 2
}

#hd .sec-build .hd-container {
    margin-bottom: -10%;
    z-index: 3
}

#hd .sec-build .hd-img-container {
    width: 100%
}

#hd .sec-build .hd-img-container:before {
    content: '';
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 15%;
    background-color: rgba(48, 48, 48, 0);
    background-image: -webkit-linear-gradient(0deg, rgba(48, 48, 48, 0), #303030);
    background-image: linear-gradient(0deg, rgba(48, 48, 48, 0), #303030);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    user-select: none;
    z-index: 2
}

#hd .sec-build .hd-img-container.is-animated .hd-border {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0)
}

@media screen and (max-width: 768px) {
    #hd .sec-build {
        padding-top: 40px
    }

    #hd .sec-build .hd-bg {
        width: 140%;
        max-width: none !important;
        margin-left: -20%
    }

    #hd .sec-build .hd-border {
        height: 90%
    }

    #hd .sec-build .hd-border.border-left {
        margin-left: -45%
    }

    #hd .sec-build .hd-border.border-right {
        margin-right: -45%
    }
}

@media screen and (max-width: 480px) {
    #hd .sec-build {
        padding-top: 40px
    }

    #hd .sec-build .hd-bg {
        width: 170%;
        margin-left: -35%
    }

    #hd .sec-build .hd-border {
        display: none
    }
}

#hd {
    opacity: 0
}

#hd.is-loaded {
    opacity: 1
}

/*# sourceMappingURL=hd-style.css.map */