@charset "UTF-8";

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #222;
}

::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999;
}

#divGoTop {
    display: none !important;
}

@media screen and (min-width:960px) {
    #model-header {
        padding: 0.5% 0;
        position: unset;
        left: unset;
        top: unset
    }

    #model-header .header-sub-title {
        display: block
    }

    .model-content {
        margin-top: 120px;
        display: none;
    }

    .Content-TopArea .breadcrumb {
        margin-right: 0;
        margin-left: 0;
    }

    #PageMainContent .container {
        max-width: 90%;
        min-width: 90%;
    }

    .main-content .model-header>.header-sub-title {
        margin: 5px 0;
    }
}

html,
body {
    background: black;
}

.InnerGIGABYTEContent {
    max-width: 2560px;
    margin: auto;
    padding: 0;
    width: 100%;
}

.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;
    padding: 0;
    font-size: 2rem;
    line-height: 1.1;
    letter-spacing: 3px;
}

.InnerGIGABYTEContent h4 {
    font-family: "Titillium Web", 'Arial', "微軟正黑體", Microsoft JhengHei, "微軟雅黑體", Microsoft YaHei, SimHei, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "新細明體", Arial, Verdana, Helvetica, sans-serif;
    color: #ddd;
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
}

.InnerGIGABYTEContent p,
.InnerGIGABYTEContent a {
    font-size: 1rem;
    line-height: 1.6rem;
    letter-spacing: 1.8px;
    color: #ddd;
    font-family: "Titillium Web", 'Arial', "微軟正黑體", Microsoft JhengHei, "微軟雅黑體", Microsoft YaHei, SimHei, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "新細明體", Arial, Verdana, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: #00000000;
}

.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 {
        font-size: 10px;
        line-height: unset;
        margin: 5px 0;
    }

    .InnerGIGABYTEContent h4 {
        font-size: 9px;
    }

    .InnerGIGABYTEContent p {
        font-size: 8px;
        line-height: unset;
        margin: 0;
    }
}

.title-line {
    margin: 0 0 1vw 0;
}

.sec1 {
    max-width: 2560px;
    width: 100%;
    height: 99vh;
    position: relative;
    overflow: hidden;
}

.kf-sliders {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.kf-slider {
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    position: absolute;
    padding: 0 10vw;
    top: 0;
    left: 0;
    transition: all .5s cubic-bezier(0, 0, 0, 1);
    display: none;
    z-index: 0;
}

.kf-slider:first-child {
    position: relative;
}

.kf-slider.kf-prev {
    transform: translateX(-100%);
    display: flex;
    z-index: 3;
}

.kf-slider.kf-next {
    transform: translateX(100%);
    display: flex;
    z-index: 3;
}

.kf-slider.kf-active {
    transform: translateX(0);
    display: flex;
    z-index: 5;
    opacity: 1;
}

.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;
    margin: auto;
    inset: 0;
}

.kf-text {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: .5vw;
    position: relative;
}

.kf-text p {
    max-width: 600px;
}

.kf-slider:first-child .kf-text p {
    max-width: unset;
}

.kf-logos {
    margin: .5vw 0 0 0;
    display: flex;
    gap: 1vw;
}

.kf-logos>img {
    height: 80px;
}

.kf-img-col {
    max-width: 900px;
    width: 100%;
    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%;
    position: absolute;
    margin: auto;
    inset: 0;
}

.kf-video {
    position: relative;
    width: 400px;
    padding-bottom: 225px;
    overflow: hidden;
}

.kf-video>iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.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;
    width: 100%;
    inset: 0;
    margin: auto;
}

.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;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.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;
    gap: 1vw;
}

.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;
    gap: 5vw;
    padding: 5vw 5vw 2.5vw;
    background: linear-gradient(to top, rgba(39, 39, 39, 1), rgba(39, 39, 39, .5));
}

.airflow>div {
    width: 100%;
    display: grid;
    gap: 2.5vw;
}

.airflow-img {
    position: relative;
}

.airflow-img img {
    width: 100%;
}

.alter,
.normal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.airflow .text {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.airflow .imgs {
    position: relative;
    overflow: hidden;
    margin: 1vw 0 0 0;
}

.airflow .imgs .gif {
    position: relative;
    width: 100%;
}

.airflow .imgs img:not(.gif) {
    position: absolute;
    margin: auto;
    inset: 0;
    height: 100%;
}

@keyframes rotate {
    0% {
        transform: translateX(-50%) rotateZ(0deg);
    }

    100% {
        transform: translateX(-50%) rotateZ(-7200deg);
    }
}

@keyframes rotateair {
    0% {
        transform: translateX(-50%) rotateZ(0deg);
    }

    100% {
        transform: translateX(-50%) rotateZ(-720deg);
    }
}

@keyframes rotate-r {
    0% {
        transform: translateX(50%) rotateZ(0deg);
    }

    100% {
        transform: translateX(50%) rotateZ(7200deg);
    }
}

@keyframes rotateair-r {
    0% {
        transform: translateX(50%) rotateZ(0deg);
    }

    100% {
        transform: translateX(50%) rotateZ(720deg);
    }
}

.fan-l {
    animation: rotate linear 40s infinite;
}

.fan-r {
    animation: rotate-r linear 40s infinite;
}

.arrow-l {
    animation: rotateair linear 10s infinite;
}

.arrow-r {
    animation: rotateair-r linear 10s infinite;
}

.green {
    filter: brightness(2.0) hue-rotate(290deg) grayscale(0.3);
}

.normal .fan-r {
    animation: rotate-r linear 40s infinite reverse;
}

.normal .arrow-r {
    animation: rotateair-r linear 10s infinite reverse;
}

@keyframes tri {
    0% {
        transform: translateY(2px);
    }

    100% {
        transform: translateY(-2px);
    }
}

p.tri {
    width: 18px;
    height: 18px;
    margin: 4px 0;
    background-color: #ff6400;
    animation: tri ease-in-out alternate 1s infinite;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.cool2-col2 {
    max-width: 1600px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1vw;
}

.cool2-col {
    padding: 0;
    position: relative;
    width: 100%;
    display: grid;
    background: linear-gradient(to top, rgba(39, 39, 39, 1), rgba(39, 39, 39, .5));
}

.cool2-content {
    height: 100%;
}

.content-text {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    padding: 2.5vw 2.5vw 0 2.5vw;
}

.bladefan {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bladefan img {
    display: block;
}

.cool2-content-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.cool2-content-img>img {
    width: 100%;
    position: relative;
}

.activefan {
    display: flex;
    flex-direction: column;
}

.activefan>div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1vw;
    padding: 0 2.5vw;
}

.activefan .content-text {
    padding: 0;
}

.thermometer {
    max-width: 388px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.thermometer .temp {
    position: absolute;
    width: 100%;
    height: 14%;
    background-color: #00c6ff;
    border-radius: 5px;
}

.thermometer .temp>div {
    position: absolute;
    height: 100%;
    background-color: #ff0000;
    border-radius: 5px;
    animation: temp linear 10s infinite;
}

@keyframes temp {
    0% {
        width: 20%;
    }

    20% {
        width: 20%;
    }

    40% {
        width: 60%;
    }

    72% {
        width: 60%;
    }

    80% {
        width: 20%;
    }

    100% {
        width: 20%;
    }
}

.tempfan {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.tempfan img {
    position: relative;
    width: 100%;
}

.tempfan img:last-child {
    position: absolute;
    animation: tempfan ease-in-out 10s infinite;
    margin: auto;
    inset: 0;
}

@keyframes tempfan {
    0% {
        transform: rotateZ(0);
    }

    35% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(-3600deg);
    }
}

.cool2-col3 {
    max-width: 1600px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1vw;
}

.cool2-col3 .cool2-col {
    display: flex;
    flex-direction: column;
}

.cool2-col3 .cool2-col .cool2-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    justify-content: space-between;
}

.ff6400stroke {
    width: 100%;
    background: #ff6400;
    height: 10px;
}

.sec4 {
    position: relative;
    padding: 7vw 0 5vw;
    max-width: 2560px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1vw;
    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;
    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;
    gap: 1vw;
}

.excellence-cols-left {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.excellence-cols-right {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.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%;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.excellence-cols img {
    padding: 2vw 2vw 0 2vw;
    width: 100%;
}

.excellence-col:hover div {
    filter: brightness(1.05);
}

.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;
    gap: 1vw;
    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;
    border: 1px solid #ddd;
    color: #ddd;
}

a.utility-download:hover {
    border: 1px solid #ff6400;
    color: #ff6400;
}

.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;
}

.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: 1200px;
    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 **************************************************************************/