@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Titillium+Web);
@import url(https://fonts.googleapis.com/css?family=Aldrich);
@import url(https://fonts.googleapis.com/css?family=Orbitron);
@import url(https://fonts.googleapis.com/css?family=Noto+Sans);

::-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: #ddd;
    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%;
}

.winforce {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.winforce>img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.winforce>div {
    position: relative;
    max-width: 1200px;
    width: 100%;
    padding: 5% 2%;
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.winforce>div div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
}

.winforce>div h3 {
    text-align: right;
    width: 50%;
    font-size: 2.6rem;
    font-weight: 700;
}

@media screen and (min-width:1201px) and (max-height:768px) {
    .winforce>div h3 {
        font-size: 1.8rem;
    }

}

@media screen and (max-width:1200px) {

    .winforce>div h3 {
        text-align: right;
        width: 50%;
        font-size: 2rem;
        font-weight: 700;
    }

}

.winforce>div h3 span {
    display: none;
}

.winforce>div p {
    width: calc(100% - 50%);
}

.windforce-scroll {
    width: 100%;
    min-height: 500vh;
    position: relative;
}

.camera {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}

.windimgs {
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all .5s;
}

.windimgs img {
    position: absolute;
    bottom: 0;
    height: 100%;
    margin: auto;
    inset: 0;
    transition: all .5s;
    opacity: 0;
}

.windimgs .fan1 {
    animation: fan ease-in-out 10s infinite;
    transform-origin: 37.86666666666667% 39.52802359882006%;
}

.windimgs .fan3 {
    animation: fan2 ease-in-out 10s infinite;
    transform-origin: 62.8% 39.52802359882006%;
}

@keyframes fan {
    0% {
        transform: rotateZ(0);
    }

    35% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(-3600deg);
    }
}

@keyframes fan2 {
    0% {
        transform: rotateZ(0);
    }

    35% {
        transform: rotateZ(0);
    }

    100% {
        transform: rotateZ(3600deg);
    }
}

.windforce-scroll img.bg {
    width: 100%;
    height: 100%;
    bottom: 0;
    transition: all 1s;
    object-fit: cover;
    position: absolute;
}

.windforce-scroll img.slogan {
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    transition: all .5s;
    opacity: .3;
}

.active.windforce-scroll img.slogan {
    opacity: .8;
}

.windimgs.stt0 .card,
.windimgs.stt0 .fan1,
.windimgs.stt0 .fan2,
.windimgs.stt0 .fan3 {
    opacity: 1;
}

.windimgs.stt1 .card,
.windimgs.stt1 .fan1,
.windimgs.stt1 .fan2,
.windimgs.stt1 .fan3 {
    opacity: 1;
}

.windimgs.stt2 .card,
.windimgs.stt2 .fan1,
.windimgs.stt2 .fan2,
.windimgs.stt2 .fan3,
.windimgs.stt2 .fan-ALT {
    opacity: 1;
}

.windimgs.stt3 .fan1 {
    animation: fan ease-in-out 10s;
}

.windimgs.stt3 .fan3 {
    animation: fan2 ease-in-out 10s;
}

.windimgs.stt3 .card,
.windimgs.stt3 .fan1,
.windimgs.stt3 .fan3 {
    opacity: 1;
}

.windimgs.stt4 {
    transform: translate(-12%, -10%) scale(1.5);
}

.windimgs.stt4 .fan1,
.windimgs.stt4 .fan3 {
    animation: none;
}

.windimgs.stt4 .fan3,
.windimgs.stt4 .fan-arrow {
    opacity: 1;
}

.windimgs.stt5 {
    transform: translate(0%, -10%) scale(1.5);
}

.windimgs.stt5 .fan1,
.windimgs.stt5 .fan3 {
    animation: none;
}

.windimgs.stt5 .fan3,
.windimgs.stt5 .fan21x {
    opacity: 1;
}

.wind-texts {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.wind-texts div {
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1vw;
    pointer-events: none;
}

.wind-texts div.active {
    opacity: 1;
    transition: all .5s;
    pointer-events: unset;
}

.wind-texts div p {
    max-width: 600px;
    text-align: center;
}

.heat_feature_container {
    width: 100%;
    position: relative;
    padding: 5vw 0;
    background: #0E0E0E;
}

.heat_feature_container>div {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 7.5vw;
}

.heat_feature_cols>div {
    position: relative;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 1vw;
}

.heat_feature_cols>div>img {
    object-fit: contain;
    width: 100%;
    height: 400px;
}

@media screen and (min-width:1201px) and (max-height:768px) {
    .heat_feature_cols>div>img {
        height: 320px;
    }

}

.heat_feature_col .img {
    position: relative;
    width: 100%;
    height: 400px;
}

.heat_feature_col .img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heat_feature_col_text {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 1vw;
}

.designconcept {
    position: relative;
    width: 100%;
}

.designconcept>.dsccbg {
    position: relative;
    width: 100%;
    object-fit: cover;
}

.designconcept>div {
    position: absolute;
    margin: auto;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2.5vw 0 0 0;
}

.designconcept h3 {
    position: relative;
}

.designconcept .imgs {
    position: relative;
    max-width: 1920px;
    width: 100%;
}

.designconcept .imgs img {
    width: 100%;
    position: absolute;
    margin: auto;
    inset: 0;
    object-fit: cover;
    transition: all .5s;
    opacity: 0;
}

.designconcept .imgs img:first-child {
    position: relative;
    transform: translate(-10%, -5%);
}

.designconcept .imgs img:last-child {
    transform: translate(10%, 5%);
}

.designconcept.active .imgs img:first-child {
    transform: translate(0, 0);
    opacity: 1;
}

.designconcept.active .imgs img:last-child {
    transform: translate(0, 0);
    opacity: 1;
}

.highlight_feature {
    text-align: center;
}

.highlight_feature h3 {
    font-size: 2.6rem;
    font-weight: 700;
}

@media screen and (min-width:1201px) and (max-height:768px) {
    .highlight_feature h3 {
        font-size: 1.8rem;
    }

}

@media screen and (max-width:1200px) {

    .highlight_feature h3 {
        font-size: 2.4rem;
        font-weight: 700;
    }

}

.buildstrong {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10vw;
    padding: 10%;
    background-image: url(../innergigabyteimages/eagle/22.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 500;
}

.buildstrong .camera {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
}

.buildstrong .pin-spacer {
    pointer-events: none;
}

.buildstrong .slogan {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s;
}

.buildstrong.active .slogan {
    opacity: .7;
}

.buildstrong>div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1vw;
}

.buildstrong>div>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

.buildstrong>div>div h3,
.buildstrong>div>div p {
    text-align: center;
    max-width: 900px;
}

.buildstrong>div>* {
    width: 60%;
}

.buildstrong a {
    padding: 1%;
    margin: 0;
    border: 1px solid #46E6E6;
    width: 100%;
    max-width: 200px;
    text-align: center;
    background: none;
    transition: 0.2s;
    color: #46E6E6;
    font-weight: bold;
    line-height: 40px;
    text-shadow: none;
    text-decoration-line: none;
}

.buildstrong a:hover {
    color: #fff;
    text-shadow: 0 0 10px #46E6E6, 0 0 20px #46E6E6, 0 0 30px #46E6E6;
    text-decoration-line: none;
}

.buildstrong_icon {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10vw;
    padding: 10% 10% 5%;
}

.buildstrong_icon_box {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 6%;
    max-width: 1500px;
    z-index: 500;
}

.buildstrong_icon_box div {
    margin-bottom: 5%;
}

.buildstrong_icon_box .buildstrong_icon_title {
    text-align: center;
    width: 100%;
}

.buildstrong_icon_box .buildstrong_icon_title h3 {
    font-size: 2.6rem;
    text-align: center;
    padding-bottom: 3%;
    font-weight: 700;
}

@media screen and (min-width:1201px) and (max-height:768px) {
    .buildstrong_icon_box .buildstrong_icon_title h3 {
        font-size: 1.8rem;
    }

}

@media screen and (max-width:1200px) {

    .buildstrong_icon_box .buildstrong_icon_title h3 {
        font-size: 2.4rem;
        text-align: center;
        padding-bottom: 8%;
        font-weight: 700;
    }
}

.buildstrong_icon_block {
    width: 42%;
    gap: 2%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

@media screen and (max-width:1200px) {
    .buildstrong_icon_block {
        width: 100%;
        gap: 2%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
}

.buildstrong_icon_block_left {
    width: 15%;
    margin-top: 3%;
    text-align: center;
}

.buildstrong_icon_block_right {
    width: 74%;
}

.buildstrong_icon_block_right h3 {
    margin-bottom: 3%;
    font-size: 1.6rem;
    font-family: "Noto+Sans", 'Arial', "微軟正黑體", Microsoft JhengHei, "微軟雅黑體", Microsoft YaHei, SimHei, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "新細明體", Arial, Verdana, Helvetica, sans-serif;
}

@media screen and (min-width:1201px) and (max-height:768px) {
    .buildstrong_icon_block_right h3 {
        font-size: 16px;
    }
}

#osd .buildstrong_icon_block_right div ul {
    display: grid;
    overflow: hidden;
    list-style-type: none;
    gap: .7rem 0rem;
}

#osd .buildstrong_icon_block_right div ul li {
    transition: transform .5s;
}

#osd .buildstrong_icon_box .buildstrong_icon_block_right div.pgsbar {
    display: flex;
    gap: .7rem;
}

#osd .buildstrong_icon_box .buildstrong_icon_block_right div.pgsbar div {
    color: #666;
    cursor: pointer;
}

#osd .buildstrong_icon_box .buildstrong_icon_block_right div.pgsbar div.active {
    color: #ff6400;
}

.osdbg {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: -150vh;
}

.osdbg>img {
    position: absolute;
    width: 100%;
    margin: auto;
    inset: 0;
}

@media screen and (max-width:1200px) {
    .osdbg {
        position: absolute;
        width: 300%;
        height: 100vh;
        top: -200vh;
    }

}

.gcc {
    position: relative;
    overflow: hidden;
    max-width: 2560px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 5vw 5vw 0;
}

.gcc>img {
    position: absolute;
    min-width: 100vw;
    min-height: 100vh;
}

.gcc>div {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.gcc>div h3,
.gcc>div p {
    max-width: 800px;
    text-align: center;
}

.gcc>div a {
    padding: 0.25vw 1.75vw;
    margin: 1vw 0;
    border: 1px solid #ff6400;
    text-align: center;
    background: none;
    transition: 0.2s;
    color: #ff6400;
    font-weight: bold;
    line-height: 40px;
    text-shadow: none;
    text-decoration-line: none;
}

.gcc>div a:hover {
    color: #fff;
    text-shadow: 0 0 10px #ff6400, 0 0 20px #ff6400, 0 0 30px #ff6400;
    text-decoration-line: none;
}

.gcc>div img:not(.gdl) {
    margin: 1vw 0 0 0;
    max-width: 1600px;
    width: 100%;
}

.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 **************************************************************************/