@charset "UTF-8";

::-webkit-scrollbar {
    width: 0;
}

#divGoTop {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

.inside-mouse.InnerGIGABYTEContent {
    max-width: 2560px;
    margin: auto;
    padding: 0;
    width: 100%;
}

.InnerGIGABYTEContent h3,
.InnerGIGABYTEContent .h3 {
    text-align: left;
    font-family: Orbitron, 'Arial', "微軟正黑體", Microsoft JhengHei, "微軟雅黑體", Microsoft YaHei, SimHei, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "新細明體", Arial, Verdana, Helvetica, sans-serif;
    color: #ff6400;
    margin: 0 0 1vw 0;
    padding: 0;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: 3px;
}

.InnerGIGABYTEContent h4,
.InnerGIGABYTEContent .h4 {
    font-family: Orbitron, 'Arial', "微軟正黑體", Microsoft JhengHei, "微軟雅黑體", Microsoft YaHei, SimHei, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "新細明體", Arial, Verdana, Helvetica, sans-serif;
    color: #ddd;
    margin: 0 0 1vw 0;
    padding: 0;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.InnerGIGABYTEContent p {
    font-size: 1rem;
    line-height: 1.6rem;
    letter-spacing: 1.8px;
    color: #ddd;
    margin: 0;
    font-family: noto sans, 'Arial', "微軟正黑體", Microsoft JhengHei, "微軟雅黑體", Microsoft YaHei, SimHei, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "新細明體", Arial, Verdana, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

.InnerGIGABYTEContent * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 100%;
}

@media screen and (min-width:1201px) and (max-height:768px) {

    .InnerGIGABYTEContent h3,
    .InnerGIGABYTEContent .h3 {
        font-size: 10px;
        line-height: unset;
        margin: 5px 0;
    }

    .InnerGIGABYTEContent h4,
    .InnerGIGABYTEContent .h4 {
        font-size: 9px;
    }

    .InnerGIGABYTEContent p {
        font-size: 8px;
        line-height: unset;
        margin: 0;
    }
}

@media screen and (max-width:1200px) {

    .InnerGIGABYTEContent h3,
    .InnerGIGABYTEContent .h3 {
        font-size: 28px;
        margin: 3vw 0;
    }
}

.title-line {
    margin: 0 0 1vw 0;
}

@media screen and (min-width:1201px) and (max-height:768px) {
    .title-line {
        margin: 0 0 10px 0;
        width: 80px;
    }
}

.sec1 {
    max-width: 2560px;
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width:1200px) {
    .sec1 {
        height: unset;
    }
}

.kf-sliders {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.kf-slider {
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: absolute;
    padding: 0 10vw;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: transform .5s cubic-bezier(0, 0, 0, 1);
    z-index: 0;
    display: none;
    opacity: 0;
}

@media screen and (max-width:1200px) {
    .kf-slider {
        justify-content: center;
        flex-direction: column;
        display: flex;
        padding: 0 5vw;
    }
}

.kf-slider:first-child {
    position: relative;
}

.kf-slider.prev {
    z-index: 3;
    display: flex;
    opacity: 1;
}

.kf-slider.next {
    z-index: 3;
    display: flex;
    opacity: 1;
}

.kf-slider.active {
    z-index: 5;
    display: flex;
    opacity: 1;
}

.kf-sliders.next-ani .kf-slider.prev {
    animation: next-ani-prev .5s forwards linear;
}

@keyframes next-ani-prev {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(-150%);
    }
}

.kf-sliders.next-ani .kf-slider.next {
    animation: next-ani-next .5s forwards linear;
}

@keyframes next-ani-next {
    0% {
        transform: translateX(150%);
    }

    100% {
        transform: translateX(50%);
    }
}

.kf-sliders.next-ani .kf-slider.active {
    animation: next-ani-active .5s forwards linear;
}

@keyframes next-ani-active {
    0% {
        transform: translateX(50%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.kf-sliders.prev-ani .kf-slider.prev {
    animation: prev-ani-prev .5s forwards linear;
}

@keyframes prev-ani-prev {
    0% {
        transform: translateX(-250%);
    }

    100% {
        transform: translateX(-150%);
    }
}

.kf-sliders.prev-ani .kf-slider.next {
    animation: prev-ani-next .5s forwards linear;
}

@keyframes prev-ani-next {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(50%);
    }
}

.kf-sliders.prev-ani .kf-slider.active {
    animation: prev-ani-active .5s forwards linear;
}

@keyframes prev-ani-active {
    0% {
        transform: translateX(-150%);
    }

    100% {
        transform: translateX(-50%);
    }
}


.kf-slider-prev-btn {
    width: 10vw;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
}

.kf-slider-prev-btn:hover {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent);
}

.kf-slider-prev-btn>div {
    width: 20px;
    height: 20px;
    border-bottom: 1px white solid;
    border-left: 1px white solid;
    transform: rotate(45deg);
    transition: all .5s;
}

.kf-slider-prev-btn:hover div {
    border-bottom: 1px #ff6400 solid;
    border-left: 1px #ff6400 solid;
}

.kf-slider-next-btn {
    width: 10vw;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .5s;
}

.kf-slider-next-btn:hover {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5), transparent);
}

.kf-slider-next-btn>div {
    width: 20px;
    height: 20px;
    border-top: 1px white solid;
    border-right: 1px white solid;
    transform: rotate(45deg);
    transition: all .5s;
}

.kf-slider-next-btn:hover div {
    border-top: 1px #ff6400 solid;
    border-right: 1px #ff6400 solid;
}

.kf-img-bg {
    position: absolute;
    width: 2560px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.kf-text {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
}

.kf-text h3 {
    margin: 0 0 .5vw 0;
}

.kf-text p {
    margin: 0 0 1.5vw 0;
}

.kf-logos>img {
    padding: 0 1vw 0 0;
    height: 80px;
}

.kf-img-col {
    width: 60%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kf-img-main {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.kf-img {
    width: 100%;
    max-width: 300px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.kf-video {
    position: relative;
    width: 400px;
    padding-bottom: 225px;
    overflow: hidden;
}

.kf-video>iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

@media screen and (min-width:1201px) and (max-height:768px) {
    .kf-text h4 {
        margin: 10px 0 0 0;
    }

    .kf-text {
        width: 50%;
        margin: 0 1vw 0 0;
    }

    .kf-logos {
        margin: 1vw 0 0 0;
    }

    .kf-logos>img {
        padding: 0 .5vw 0 0;
        height: 70px;
    }
}

@media screen and (max-width:1200px) {
    .kf-text {
        margin: 10vw 0 0 0;
        width: 100%;
    }

    .kf-logos {
        margin: 2vw 0;
    }

    .kf-logos>img {
        padding: 0 1vw 0 0;
        height: 70px;
    }

    .kf-img-col {
        width: 100%;
        height: 50%;
        margin: 0 0 10vw 0;
    }

    .kf-img-main {
        width: 100%;
        position: relative;
        top: unset;
        left: unset;
        transform: unset;
    }

    .kf-img {
        margin: 10vw 0 0;
        max-width: unset;
        width: unset;
    }

    .kf-video {
        margin: 0;
        width: 100%;
    }

    .kf-slider-prev-btn {
        justify-content: flex-start;
    }

    .kf-slider-next-btn {
        justify-content: flex-end;
    }

    .kf-slider-prev-btn>div {
        border-bottom: 5px #ff6400 solid;
        border-left: 5px #ff6400 solid;
        opacity: .5;
        margin: 0 0 0 1vw;
    }

    .kf-slider-next-btn>div {
        border-top: 5px #ff6400 solid;
        border-right: 5px #ff6400 solid;
        opacity: .5;
        margin: 0 1vw 0 0;
    }
}

.sec2 {
    position: relative;
    max-width: 2560px;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cool-img-bgs {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
}

.cool-img-bg1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cool-img-bg2 {
    width: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(2px);
}

.cool-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.cool-img {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 0 5vw;
}

.cool-img img {
    width: 100%;
}

.cool-text {
    position: relative;
    background-color: rgba(120, 120, 120, 0.3);
    width: 100%;
    max-width: 800px;
    padding: 3vw 4vw;
    margin: 0 0 0 5vw;
}

@media screen and (max-width:1200px) {
    .sec2 {
        height: unset;
    }

    .cool-img-bg1 {
        width: unset;
        height: 100%;
    }

    .cool-content {
        flex-direction: column;
        position: relative;
        padding: 10vw 5vw 0;
    }

    .cool-img {
        padding: 0;
        height: unset;
    }

    .cool-text {
        padding: 2vw 5vw 5vw;
        margin: 5vw 0 15vw 0;
    }
}

.cool-img-cover {
    position: absolute;
    width: 100%;
    transform: translateY(5%);
}

.sec3 {
    max-width: 2560px;
    width: 100%;
    padding: 5vw 5vw 10vw 5vw;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cool2-img-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.cool2-col1 {
    max-width: 1600px;
    width: 100%;
    position: relative;
}

.cool2-col:hover>div {
    filter: brightness(1.05);
}

.airflow {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5vw;
    background: linear-gradient(to top, rgba(39, 39, 39, 1), rgba(39, 39, 39, .5));
}

@media screen and (max-width:1200px) {
    .airflow {
        flex-direction: column;
        padding: 5vw 5vw 0;
    }
}

.airflow-text {
    margin: 0 5vw 0 0;
}

.airflow img {
    width: 100%;
}

.airflow-imgs {
    position: relative;
}

.airflow-imgs>img {
    position: absolute;
    left: 0;
    top: 0;
}

.airflow-imgs>img:first-child {
    position: relative;
}

.airflow-imgs>img:nth-child(2) {
    animation: airflow-ani-2 4s infinite linear;
}

@keyframes airflow-ani-2 {
    0% {
        opacity: 1;
    }

    14% {
        opacity: 1;
    }

    28% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.airflow-imgs>img:nth-child(3) {
    animation: airflow-ani-3 4s infinite linear;
}

@keyframes airflow-ani-3 {
    0% {
        opacity: 0;
    }

    14% {
        opacity: 0;
    }

    28% {
        opacity: 1;
    }

    56% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.airflow-imgs>img:nth-child(4) {
    animation: airflow-ani-4 4s infinite linear;
}

@keyframes airflow-ani-4 {
    0% {
        opacity: 0;
    }

    28% {
        opacity: 0;
    }

    42% {
        opacity: 1;
    }

    56% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.airflow-imgs>img:nth-child(5) {
    animation: airflow-ani-5 4s infinite linear;
}

@keyframes airflow-ani-5 {
    0% {
        opacity: 0;
    }

    56% {
        opacity: 0;
    }

    70% {
        opacity: 1;
    }

    90% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}

.cool2-cols {
    max-width: 1600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 1vw 0 0 0;
}

.cool2-col {
    padding: 0;
    position: relative;
    width: 100%;
}

.cool2-col:last-child {
    width: 50%;
    padding: 0 0 0 1vw;
}

.cool2-content {
    background: linear-gradient(to top, rgba(39, 39, 39, 1), rgba(39, 39, 39, .5));
    padding: 2.5vw 2.5vw 0 2.5vw;
}

@media screen and (max-width:1200px) {
    .cool2-col {
        padding: 5vw 0;
    }

    .cool2-cols {
        flex-direction: column;
    }

    .cool2-col:last-child {
        width: 100%;
        padding: 0;
    }

    .cool2-content {
        padding: 5vw 5vw 0;
    }
}

.cool2-content-img {
    width: 100%;
    position: relative;
    height: 400px;
    overflow: hidden;
}

.cool2-content-img>img {
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cool2-copper1 {
    position: relative;
}

.cool2-copper2 {
    animation: cool2-copper2 5s infinite linear;
}

@keyframes cool2-copper2 {
    0% {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.cool2-copper3 {
    animation: cool2-copper3 5s infinite linear;
}

@keyframes cool2-copper3 {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    75% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    100% {
        opacity: 1;
    }
}

.cool2-fan {
    position: relative;
}

.ff6400stroke {
    width: 100%;
    background: #ff6400;
    height: 10px;
}

.sec4 {
    position: relative;
    padding: 7vw 5vw 5vw 5vw;
    max-width: 2560px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.excellence-img-bg {
    position: absolute;
    height: 100%;
}

.excellence-title {
    max-width: 1600px;
    position: relative;
    width: 100%;
    padding: 1.5vw 0 1.2vw;
    background-color: #3636368c;
    margin: 0 0 1vw 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.excellence-title:hover {
    filter: brightness(1.05);
}

.excellence-title>h3 {
    width: 100%;
    position: relative;
    text-align: center;
    margin: 0;
}

.excellence-cols {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1600px;
}

.excellence-cols-left>div {
    padding: 0 .5vw 1vw 0;
}

.excellence-cols-right>div {
    padding: 0 0 1vw .5vw;
}

.col-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2.5vw 2.5vw 0;
    background: linear-gradient(to top, rgba(120, 120, 120, 0.5), rgba(120, 120, 120, 0.2));
}

.col-text {
    width: 100%;
}

.excellence-cols img {
    padding: 2vw 2vw 0 2vw;
    width: 100%;
}

.excellence-col:hover div {
    filter: brightness(1.05);
}

@media screen and (max-width:1200px) {
    .sec4 {
        padding: 15vw 5vw 5vw 5vw;
    }

    .excellence-title {
        margin: 0 0 5vw 0;
        padding: 5vw;
    }

    .excellence-cols {
        flex-direction: column;
    }

    .excellence-cols-left,
    .excellence-cols-right {
        width: 100%;
    }

    .excellence-cols-left>div,
    .excellence-cols-right>div {
        padding: 0 0 5vw 0;
    }

    .col-content {
        padding: 5vw 5vw 0;
    }

    .excellence-cols img {
        padding: 2vw 0 0 0;
    }
}

.sec5 {
    width: 100%;
    max-width: 2560px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5vw;
}

.utility-1 {
    max-width: 1600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.utility-2 {
    max-width: 1600px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.utility-2-text {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 94% 100%, 0 100%);
    margin: 4vw 0 0 0;
}

.utility-2-text p {
    max-width: 800px;
    text-align: center;
}

.totalcommand {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.totalcommand-img-bg {
    position: relative;
    width: 100%;
}

.totalcommand-content {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2vw 0;
}

.totalcommand-img {
    max-width: 770px;
    width: 50%;
}

.totalcommand-text {
    position: relative;
    width: 50%;
}

a.utility-download {
    padding: 0.5vw 1vw;
    margin: 1vw 0 0 0;
    border: 1px solid #ddd;
    color: #ddd;
}

a.utility-download:hover {
    border: 1px solid #ff6400;
    color: #ff6400;
}

@media screen and (max-width:1200px) {
    .totalcommand-img {
        display: none;
    }

    .totalcommand-text {
        width: 90%;
    }

    a.utility-download {
        display: none;
    }
}

.nvidia-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.nvidia-footer .logos {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:1200px) {
    .nvidia-footer .logos {
        flex-wrap: wrap;
    }
}

.nvidia-footer div.logo {
    max-width: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 30px 30px;
}

.nvidia-footer p {
    max-width: 800px;
    text-align: center;
    margin: 0 0 30px 0;
}

.illustration-announce {
    position: relative;
    z-index: 999;
}

.illustration-announce p {
    text-align: center;
}

/************************************************************************** dots **************************************************************************/
.dots {
    position: fixed;
    right: 1vw;
    top: 50%;
    color: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(calc(-50% + 30px));
}

.dots a {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.dots a p {
    white-space: nowrap;
    color: #ff6400;
    font-size: 8px;
    text-align: right;
    opacity: 0;
    pointer-events: none;
    padding: 0 8px 0 0;
    position: relative;
    left: 100%;
    font-family: "AORUS", 'Arial', "微軟正黑體", Microsoft JhengHei, "微軟雅黑體", Microsoft YaHei, SimHei, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "新細明體", Arial, Verdana, Helvetica, sans-serif;
    width: 0;
}

.dots a div {
    background-color: white;
    width: 10px;
    height: 10px;
}

.dots a div.active {
    background-color: #ff6400;
}

.dots a:hover {
    text-decoration-color: #00000000;
}

.dots a:hover p {
    opacity: 1;
    pointer-events: unset;
    left: 0;
    width: unset;
    transition: all .5s;
}

.dots a:hover div {
    background-color: #ff6400;
}

@media screen and (min-width:1201px) and (max-height:768px) {
    .dots a p {
        line-height: 1.6rem;
    }
}

@media screen and (max-width:1200px) {
    .dots {
        display: none;
    }
}

.hide-dot {
    display: none;
}

/************************************************************************** dots **************************************************************************/