@charset "UTF-8";
@import url("https://static.gigabyte.com/Other/fonts/fontbundle/bundle.css");
body {
  margin: 0;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #222;
}

::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.kf-container .h1, .kf-container .h2, .kf-container .h3, .kf-container .h4, .kf-container .h5, .kf-container .h6 {
  height: auto;
}
.kf-container h1,
.kf-container h2,
.kf-container h3,
.kf-container h4,
.kf-container h5,
.kf-container h6,
.kf-container ol,
.kf-container ul,
.kf-container li,
.kf-container p {
  margin: 0;
  padding: 0;
}
.kf-container a,
.kf-container a:hover,
.kf-container a:visited {
  color: inherit;
  text-decoration: none;
}
.kf-container .__layout-grid {
  --layout-bg-color: rgba(255, 0, 0, .15);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 50;
  overflow: hidden;
  pointer-events: none;
}
.kf-container .__layout-grid .container {
  border-left: 1px solid;
  border-right: 1px solid;
  color: #ffbb3e;
  position: relative;
}
.kf-container .__layout-grid [class^=col]::after {
  content: "";
  background-color: var(--layout-bg-color);
  display: block;
  height: 100vh;
}
.kf-container {
  font-weight: 400;
  line-height: normal;
  position: relative;
}
.kf-container a[data-tip] {
  font-size: 12px !important;
  font-weight: bold;
  color: #ff6400 !important;
  vertical-align: super;
  display: inline-block;
  line-height: inherit;
  cursor: pointer;
  color: inherit;
}
.kf-container a[data-tip]:active, .kf-container a[data-tip]:hover, .kf-container a[data-tip]:visited {
  color: inherit;
  text-decoration: none;
}
.kf-container a[data-tip]::before {
  content: " [";
  white-space: pre;
}
.kf-container a[data-tip]::after {
  content: "]";
}
.kf-container .dots {
  --dots-spacing: 1vw;
  position: fixed;
  right: 0;
  top: 50%;
  color: white;
  z-index: 9999;
  display: grid;
  justify-items: flex-end;
  overflow: hidden;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .kf-container .dots {
    display: none;
  }
}
.kf-container .dots a {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 6px var(--dots-spacing, 1vw);
  min-width: 80px;
  color: rgba(255, 255, 255, 0.5647058824);
}
.kf-container .dots a p {
  white-space: nowrap;
  font-size: 0.8em;
  line-height: 1;
  text-align: right;
  pointer-events: none;
  padding: 3px 12px 3px 0;
  position: relative;
  margin: 0;
  transition: all 0.5s;
  transform: translateX(0);
  opacity: 0;
  min-height: 20px;
}
@media screen and (max-width: 1500px) {
  .kf-container .dots a p {
    opacity: 0;
    transform: translateX(30px);
  }
}
.kf-container .dots a::after {
  content: "";
  display: block;
  transition: 0.2s;
  background: url("../../innergigabyte/images/sidebar-dot.svg") 0 0/cover no-repeat;
  width: 20px;
  height: 20px;
  background: none;
  border: 2px solid #777;
  border-radius: 3px;
  height: 0;
  margin-block: 8px;
  transition: all 250ms ease;
}
.kf-container .dots a.highlight div {
  background-color: var(--dots-highlight-color, rgba(255, 255, 255, 0.1882352941));
}
.kf-container .dots a.active, .kf-container .dots a:hover {
  text-decoration-color: rgba(0, 0, 0, 0);
  color: #61ad27;
}
.kf-container .dots a.active p, .kf-container .dots a:hover p {
  transform: translateX(0);
  opacity: 1;
  pointer-events: unset;
}
.kf-container .dots a.active p::after, .kf-container .dots a:hover p::after {
  width: 30px;
}
.kf-container .dots a.active::after, .kf-container .dots a:hover::after {
  background: none;
  border: 3px solid #61ad27;
  border-radius: 10px;
  height: 20px;
  margin-block: 0;
}
.kf-container .dots a:hover p {
  opacity: 1;
}
.kf-container .sticky-dots {
  pointer-events: none;
  position: sticky;
  top: 0;
  height: 100vh;
  padding-top: var(--localnav-height);
  z-index: 20;
  margin-left: auto;
  display: flex;
  align-items: center;
  width: max-content;
  overflow: hidden;
}
.kf-container .sticky-dots .dots {
  pointer-events: none;
  position: static;
  transform: none;
}
.kf-container .sticky-dots .dots a {
  pointer-events: auto;
}
.kf-container .sticky-dots + * {
  margin-top: -100vh;
}
.kf-container .dots.visible-by-first {
  visibility: hidden;
  opacity: 0;
}
.kf-container .dots.visible-by-first.visible {
  visibility: visible;
  opacity: 1;
}
.kf-container .dots.visible-by-first.visible > a[href] {
  transform: translateX(0);
  animation: dot-FadeInFromRight 400ms ease 0s backwards;
}
.kf-container .dots.visible-by-first.visible > a:nth-child(1) {
  animation-delay: 0ms;
}
.kf-container .dots.visible-by-first.visible > a:nth-child(2) {
  animation-delay: 50ms;
}
.kf-container .dots.visible-by-first.visible > a:nth-child(3) {
  animation-delay: 100ms;
}
.kf-container .dots.visible-by-first.visible > a:nth-child(4) {
  animation-delay: 150ms;
}
.kf-container .dots.visible-by-first.visible > a:nth-child(5) {
  animation-delay: 200ms;
}
.kf-container .dots.visible-by-first.visible > a:nth-child(6) {
  animation-delay: 250ms;
}
.kf-container .dots.visible-by-first.visible > a:nth-child(7) {
  animation-delay: 300ms;
}
.kf-container .dots.visible-by-first.visible > a:nth-child(8) {
  animation-delay: 350ms;
}
.kf-container .dots.visible-by-first.visible > a:nth-child(9) {
  animation-delay: 400ms;
}
.kf-container .dots.visible-by-anchor {
  opacity: 0;
  transform: translateX(100%);
  transition: all 600ms ease;
}
.kf-container .dots.visible-by-anchor.visible {
  opacity: 1;
  transform: translateX(0);
}
.kf-container .dots.visible-by-anchor.visible > a[href] {
  transform: translateX(0);
  animation: dot-FadeInFromRight 400ms ease 0s backwards;
}
.kf-container .dots.visible-by-anchor.visible > a:nth-child(1) {
  animation-delay: 0ms;
}
.kf-container .dots.visible-by-anchor.visible > a:nth-child(2) {
  animation-delay: 50ms;
}
.kf-container .dots.visible-by-anchor.visible > a:nth-child(3) {
  animation-delay: 100ms;
}
.kf-container .dots.visible-by-anchor.visible > a:nth-child(4) {
  animation-delay: 150ms;
}
.kf-container .dots.visible-by-anchor.visible > a:nth-child(5) {
  animation-delay: 200ms;
}
.kf-container .dots.visible-by-anchor.visible > a:nth-child(6) {
  animation-delay: 250ms;
}
.kf-container .dots.visible-by-anchor.visible > a:nth-child(7) {
  animation-delay: 300ms;
}
.kf-container .dots.visible-by-anchor.visible > a:nth-child(8) {
  animation-delay: 350ms;
}
.kf-container .dots.visible-by-anchor.visible > a:nth-child(9) {
  animation-delay: 400ms;
}
@keyframes dot-FadeInFromRight {
  from {
    transform: translateX(100%);
  }
}
.kf-container {
  --base-font-size: 16px;
  --casaul-body-spacer: 1.1111111111rem;
  background: #000000;
  color: #fff;
  font-size: var(--base-font-size);
  font-family: "Titillium Web", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
  font-weight: 400;
  font-style: normal;
}
.kf-container .section {
  max-width: 2560px;
  margin-left: auto;
  margin-right: auto;
}
.kf-container .h2 {
  font-family: "Play", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
  font-weight: 700;
  font-style: normal;
  font-size: calc(1.5625rem + 3.75vw);
}
@media (min-width: 1200px) {
  .kf-container .h2 {
    font-size: 4.375rem;
  }
}
.kf-container .h2:not(:last-child) {
  margin-bottom: 0.6em;
}
.kf-container .h3 {
  font-family: "Play", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
  font-weight: 700;
  font-style: normal;
  font-size: calc(1.4375rem + 2.25vw);
}
@media (min-width: 1200px) {
  .kf-container .h3 {
    font-size: 3.125rem;
  }
}
.kf-container .h3:not(:last-child) {
  margin-bottom: 0.6em;
}
.kf-container .h4 {
  font-family: "Play", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
  font-weight: 700;
  font-style: normal;
  font-size: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  .kf-container .h4 {
    font-size: 2.25rem;
  }
}
.kf-container .h4:not(:last-child) {
  margin-bottom: 0.6em;
}
.kf-container .h5 {
  font-weight: bold;
  font-size: calc(1.2875rem + 0.45vw);
}
@media (min-width: 1200px) {
  .kf-container .h5 {
    font-size: 1.625rem;
  }
}
.kf-container .h5:not(:last-child) {
  margin-bottom: 0.6em;
}
.kf-container .text-highlight {
  font-family: "Play", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
  font-weight: 400;
  font-style: normal;
  font-size: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  .kf-container .text-highlight {
    font-size: 1.875rem;
  }
}
.kf-container .eyebrow {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1em;
  color: #000;
  line-height: 1;
  border-radius: 2em;
  background: var(--GBT-AERO, #61AD27);
  display: inline-flex;
  padding: 0.5em 2em;
  justify-content: center;
  align-items: center;
}
.kf-container .p2 {
  font-size: 1.125em;
}
.kf-container .p3 {
  font-size: calc(1.2875rem + 0.45vw);
}
@media (min-width: 1200px) {
  .kf-container .p3 {
    font-size: 1.625rem;
  }
}
.kf-container a.learnmore {
  color: #46e6e6;
  transition: all 250ms;
}
.kf-container a.learnmore:hover {
  filter: brightness(1.1);
}
.kf-container .gs-tabs {
  display: flex;
}
.kf-container .gs-tab-contents {
  position: relative;
}
.kf-container .gs-tab-contents .gs-tab-content {
  position: absolute;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 450ms ease;
  opacity: 0;
}
.kf-container .gs-tab-contents .gs-tab-content.active {
  opacity: 1;
  position: relative;
  visibility: visible;
  pointer-events: auto;
}
.kf-container ._gs_fade_in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 250ms ease-in;
}
.kf-container ._gs_fade_in._gs_fade_in_active {
  opacity: 1;
  transform: translateY(0);
  transition-duration: 450ms;
  transition-timing-function: ease-in-out;
}
.kf-container .kp-sub {
  opacity: 0.9375;
}
.kf-container .kp-sub::after {
  content: " ";
}
.kf-container .kp-main {
  font-family: "Play", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
  font-weight: 400;
  font-style: normal;
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .kf-container .kp-main {
    font-size: 2.5rem;
  }
}
.kf-container .kp-main2 {
  font-family: "Play", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
  font-weight: 400;
  font-style: normal;
  font-size: calc(1.3125rem + 0.75vw);
}
@media (min-width: 1200px) {
  .kf-container .kp-main2 {
    font-size: 1.875rem;
  }
}
.kf-container .color-highlight {
  --color-1: #18E0D7;
  --color-2: #923EFA;
  background: linear-gradient(90deg, var(--color-1) 0%, var(--color-2) 100%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-size: cover;
}
.kf-container .sticky-top,
.kf-container .stickyTop {
  position: sticky;
  top: 0;
}
.kf-container .sticky-center,
.kf-container .stickyCenter {
  position: sticky;
  top: 50%;
}
.kf-container .sticky-bottom,
.kf-container .stickyBottom {
  position: sticky;
  bottom: 0;
}
.kf-container .sticky-fixed {
  --sf-content-height: auto;
}
.kf-container .sticky-fixed > .timeline:not(.timeline + .timeline) {
  margin-top: calc(var(--sf-content-height) * -1);
}
.kf-container .sticky-fixed::after {
  content: "";
  display: block;
  height: var(--sf-content-height);
}
.kf-container .sticky-center-fixed {
  --sf-content-height: auto;
  --offset: calc(50vh - var(--sf-content-height) * .5);
  --min-offset: var(--offset);
  --center-offset: max(var(--min-offset), var(--offset));
  --timeline-offset: calc(var(--sf-content-height) + var(--center-offset));
}
.kf-container .sticky-center-fixed .stickyCenter,
.kf-container .sticky-center-fixed .sticky-center {
  top: var(--center-offset);
}
.kf-container .sticky-center-fixed > .timeline:not(.timeline + .timeline) {
  margin-top: calc((var(--timeline-offset)) * -1);
}
.kf-container .sticky-center-fixed::after {
  content: "";
  display: block;
  height: var(--timeline-offset);
}
.kf-container .timeline {
  pointer-events: none;
}
.kf-container .grdnt {
  position: relative;
  padding-left: 0.5em;
  margin: 1em 0;
}
.kf-container .grdnt::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 0;
  height: 90%;
  width: 2px;
  background: #fff;
}
.kf-container .no-pointer {
  pointer-events: none;
}
.kf-container .r {
  border-radius: 10px;
}
.kf-container .b-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background: #61AD27;
}
.kf-container .slide-image {
  margin-bottom: 1em;
}
.kf-container .slide-image img {
  display: block;
  width: 100%;
}
.kf-container .bg-panel {
  --bg-size: 1920px;
  --bg-shadow-y: calc(0.959375 * var(--bg-size) - 500px + 1px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 51.62%, #000 86.82%), url("../../innergigabyte/images/bg-panel.jpg") center 0/var(--bg-size) auto no-repeat;
}
@media (min-width: 1321px) {
  .kf-container .bg-panel {
    --bg-size: 2560px;
  }
}
.kf-container .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.kf-container .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  --parallax-dis: 20vh;
}
.kf-container .parallax-bg .bg {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% + var(--parallax-dis, 30px));
  width: 100%;
}
.kf-container .img-relative {
  position: relative;
  display: inline-block;
}
.kf-container .overlay-blocks {
  display: flex;
  flex-flow: row nowrap;
}
.kf-container .overlay-blocks > .block {
  width: 100%;
  flex: 0 1 auto;
  position: relative;
}
.kf-container .overlay-blocks > .block._hide {
  pointer-events: none;
  visibility: hidden;
}
.kf-container .overlay-blocks > .block + .block {
  margin-left: -100%;
}
.kf-container .accordion {
  display: flex;
  flex-direction: column;
}
.kf-container .accordion .trigger {
  cursor: pointer;
}
.kf-container .accordion .content {
  display: grid;
  grid-template-rows: 0fr;
  transition: ease 250ms;
}
.kf-container .accordion .content > * {
  overflow: hidden;
}
.kf-container .accordion .tab.active .content {
  grid-template-rows: 1fr;
}
.kf-container .full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.kf-container .parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  --parallax-dis: 20vh;
}
.kf-container .parallax-bg .bg {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% + var(--parallax-dis, 30px));
  width: 100%;
}
.kf-container .top-image {
  position: relative;
  margin: 0 auto;
  max-width: 120%;
  height: 500px;
}
.kf-container .top-image img {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100dvw;
  left: 50%;
  object-fit: cover;
  transform: translateX(-50%);
  transition: all ease 800ms;
}
.kf-container .top-image.scale img {
  width: 100%;
}
.kf-container .aero-card {
  position: relative;
  border: 2px solid #61AD27;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  row-gap: calc(1.2638888889rem + 0.1666666667vw);
  padding-bottom: calc(1.2638888889rem + 0.1666666667vw);
  backdrop-filter: blur(10px);
}
.kf-container .aero-card::before {
  content: "";
  display: block;
  background: linear-gradient(90deg, #61AD27 15.5%, #E4FFCF 36%, #61AD27 56.5%);
  height: 12px;
  border-radius: 6px 6px 0 0;
  flex-shrink: 0;
}
.kf-container .aero-card .text {
  display: flex;
  flex-direction: column;
  padding: 0 calc(1.3101851852rem + 0.7222222222vw);
  row-gap: 20px;
  justify-content: center;
}
.kf-container .aero-bbox {
  position: relative;
  padding: 2em;
  padding-left: calc(2em + 23px);
  border: 1px solid #61AD27;
  border-radius: 0 10px 10px 0;
  background: rgba(0, 0, 0, 0.5);
}
.kf-container .aero-bbox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 23px;
  background: rgba(0, 0, 0, 0.5) url("../../innergigabyte/images/aero-bbox.svg") left top repeat-y;
}
.kf-container .bg-summary {
  background: linear-gradient(168deg, rgba(224, 224, 224, 0) 69.74%, #C6D2BC 92.67%), linear-gradient(152deg, rgba(255, 255, 255, 0) 1.1%, rgba(255, 255, 255, 0.63) 11.89%, rgba(255, 255, 255, 0.63) 20.13%, rgba(255, 255, 255, 0.63) 28.8%, rgba(224, 224, 224, 0.63) 49.95%, rgba(255, 255, 255, 0.63) 71.03%, rgba(250, 250, 250, 0.63) 79.21%), #BABABA;
  color: #111;
}
.kf-container .section-hero {
  padding-top: calc(1.8194444444rem + 6.8333333333vw);
}
@media (min-width: 961px) {
  .kf-container .section-hero {
    background: url("../../innergigabyte/images/hero-pattern.svg") left top/56px 730px no-repeat;
  }
}
.kf-container .section-hero .eyebrow {
  font-size: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  .kf-container .section-hero .eyebrow {
    font-size: 2.25rem;
  }
}
.kf-container .section-hero .eyebrow {
  color: #fff;
  position: relative;
  border-radius: 0 2em 2em 0;
  padding: 0.5em 2em 0.5em 0.8em;
  margin-left: 1.6em;
}
.kf-container .section-hero .eyebrow::before {
  content: "";
  display: block;
  aspect-ratio: 71/88;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  background: url("../../innergigabyte/images/hero-eyebrow.png") left top/auto 100% no-repeat;
}
.kf-container .section-hero .btn-learnmore {
  display: inline-flex;
  padding: 14px 24px;
  align-items: center;
  margin-top: calc(1.587962963rem + 4.0555555556vw);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  cursor: pointer;
  transition: background 250ms ease;
  backdrop-filter: blur(10px);
  color: #000;
  background: linear-gradient(90deg, #34FFBE 0%, #215CE5 100%);
  font-family: "Titillium Web", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
  font-weight: 600;
  font-style: normal;
  font-size: 1.125rem;
}
.kf-container .section-hero .btn-learnmore::after {
  content: "";
  display: inline-block;
  background: url("../../innergigabyte/images/learnmore-arrow.svg") 0 0 no-repeat;
  width: 19px;
  height: 18px;
  filter: grayscale(1) brightness(2);
}
.kf-container .section-hero .btn-learnmore .light {
  color: #34FFBE;
  filter: grayscale(1) brightness(2);
}
.kf-container .section-hero .btn-learnmore:hover {
  background: #34FFBE;
  color: #111;
}
.kf-container .section-hero .btn-learnmore:hover .light {
  filter: grayscale(1) brightness(0.1);
}
.kf-container .section-hero .btn-learnmore:hover::after {
  filter: grayscale(1) brightness(0.1);
}
.kf-container .section-hero .headline {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1em;
}
.kf-container .section-hero .headline img {
  max-width: 100%;
  min-width: 0;
}
.kf-container .section-hero .flip {
  transform: scaleX(-1);
}
.kf-container .section-hero .summary-pattern {
  max-width: 80%;
}
.kf-container .section-hero .icons {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding-inline: 30px;
}
.kf-container .section-hero .icons > img {
  flex: 0 auto;
  max-height: calc(1.4953703704rem + 2.9444444445vw);
}
.kf-container .section-feature-icon {
  padding: calc(1.8194444444rem + 6.8333333333vw) 0;
}
.kf-container .section-feature-icon .feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(1.4953703704rem + 2.9444444445vw);
}
@media (max-width: 960.98px) {
  .kf-container .section-feature-icon .feature-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 630.98px) {
  .kf-container .section-feature-icon .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.kf-container .section-feature-icon .feature-list > div {
  max-width: 200px;
}
.kf-container .section-feature-icon .feature-list img {
  display: block;
  height: 48px;
  object-fit: contain;
  margin-bottom: 1em;
}
.kf-container .section-feature-icon .feature-list .gimate img {
  height: 64px;
}
.kf-container .section-hero-tagline {
  position: relative;
  --mask-progress: 0;
}
@supports (mask: unset) {
  .kf-container .section-hero-tagline.use-mask-enhance {
    z-index: 11;
    margin-bottom: -100vh;
  }
  .kf-container .section-hero-tagline.use-mask-enhance::before {
    opacity: 0.01;
    height: 1px;
    width: 1px;
    background: url("../../innergigabyte/images/s-t-mask.svg");
    position: absolute;
    left: -2px;
    top: -2px;
  }
  .kf-container .section-hero-tagline.use-mask-enhance + #s-performance .section:first-child {
    padding-top: 0 !important;
  }
  .kf-container .section-hero-tagline.use-mask-enhance .sticky-center {
    mask: linear-gradient(0deg, #000, #000), url("../../innergigabyte/images/s-t-mask.svg") center/var(--mask-progress, 0) auto no-repeat;
  }
  .kf-container .section-hero-tagline.use-mask-enhance .sticky-center.mask {
    mask: url("../../innergigabyte/images/s-t-mask.svg") center/var(--mask-progress, 0) auto no-repeat;
  }
}
.kf-container .section-hero-tagline .bg {
  position: relative;
  background: url("../../innergigabyte/images/bg-hero-tagline.jpg") center/cover no-repeat;
  color: #111;
  min-height: 66.7448vw;
  display: flex;
  align-items: center;
}
.kf-container .section-hero-tagline .bg > * {
  flex: 1;
}
.kf-container .section-hero-tagline .section-content {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.kf-container .section-hero-tagline .section-content .pos-1 {
  position: absolute;
  bottom: 9vmax;
  left: 0;
}
.kf-container .section-hero-tagline .section-content .pos-2 {
  position: absolute;
  top: 9vmax;
  right: 0;
}
@media (max-width: 1320.98px) {
  .kf-container .section-hero-tagline .section-content .pos-1, .kf-container .section-hero-tagline .section-content .pos-2 {
    display: none;
  }
}
.kf-container .section-hero-tagline .overlay-blocks {
  height: 100%;
}
.kf-container .section-hero-tagline .block {
  display: flex;
  align-items: center;
}
.kf-container .section-hero-tagline .tagline img, .kf-container .section-hero-tagline .tagline span {
  vertical-align: middle;
  line-height: 1;
}
.kf-container .section-hero-tagline .scene2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.kf-container .section-hero-tagline .scene2 .hero-media {
  max-width: 800px;
  height: auto;
}
.kf-container .section-hero-tagline .scene2 .hero-media img, .kf-container .section-hero-tagline .scene2 .hero-media video {
  display: block;
}
.kf-container .section-hero-tagline .scene2 .gif-wrap {
  background-color: #61AD27;
  border: 1px solid #61AD27;
  border-radius: 50%;
  width: 16%;
}
.kf-container .section-hero-tagline .scene2 .gif-wrap:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.kf-container .section-hero-tagline .scene2 .gif-wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 117%;
  height: auto;
  transform: translate(-50%, -50%);
}
@keyframes fly {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeInTop {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInBottom {
  from {
    opacity: 0;
    transform: translateY(50%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.kf-container .section-hero-tagline .scene2 .pos-1 {
  position: absolute;
  top: -44%;
  left: -39%;
  width: 54.375%;
  opacity: 0;
}
@media (max-width: 960.98px) {
  .kf-container .section-hero-tagline .scene2 .pos-1 {
    top: -52%;
    left: -21%;
    width: 50%;
  }
}
.kf-container .section-hero-tagline .scene2 .pos-1.fade-in {
  opacity: 1;
  animation: fadeInBottom 0.5s ease-out 0s forwards, fly 3s ease-in-out 0.5s infinite;
}
.kf-container .section-hero-tagline .scene2 .pos-2 {
  position: absolute;
  top: 27.11%;
  left: 84%;
  width: 67.5%;
  opacity: 0;
}
@media (max-width: 960.98px) {
  .kf-container .section-hero-tagline .scene2 .pos-2 {
    top: 52%;
    left: 57%;
    width: 60%;
  }
}
.kf-container .section-hero-tagline .scene2 .pos-2.fade-in {
  opacity: 1;
  animation: fadeInTop 0.5s ease-out 0s forwards, fly 2.5s ease-in-out 0.5s infinite;
}
.kf-container .section-hero-tagline .scene2 .pos-3 {
  position: absolute;
  top: -43.11%;
  left: 112%;
  width: 30.625%;
  opacity: 0;
}
@media (max-width: 960.98px) {
  .kf-container .section-hero-tagline .scene2 .pos-3 {
    top: -81%;
    left: 77%;
  }
}
.kf-container .section-hero-tagline .scene2 .pos-3.fade-in {
  opacity: 1;
  animation: fadeInLeft 0.5s ease-out 0s forwards, fly 2.7s ease-in-out 0.5s infinite;
}
.kf-container .section-hero-tagline .scene2 .pos-4 {
  position: absolute;
  top: 107.11%;
  left: -19%;
  width: 16%;
  opacity: 0;
}
@media (max-width: 960.98px) {
  .kf-container .section-hero-tagline .scene2 .pos-4 {
    top: 134%;
    left: 2%;
  }
}
.kf-container .section-hero-tagline .scene2 .pos-4.fade-in {
  opacity: 1;
  animation: fadeInRight 0.5s ease-out 0s forwards, fly 3.3s ease-in-out 0.5s infinite;
}
.kf-container .section-hero-tagline .timeline-slides .slide {
  height: 40vh;
}
.kf-container .section-hero-tagline .timeline-slides .trans {
  height: 40vh;
}
.kf-container .section-hero-tagline .timeline-slides .trans-1 {
  height: 80vh;
}
.kf-container .section-hero-tagline .timeline-mask {
  height: 50vh;
}
.kf-container .section-gpu {
  overflow: hidden;
  background: #000 url("../../innergigabyte/images/gpu-img.jpg") 110% center no-repeat;
  padding-block: calc(1.8194444444rem + 6.8333333333vw);
}
@media (max-width: 1320.98px) {
  .kf-container .section-gpu {
    background-position-x: calc(50% + 460px);
  }
}
@media (max-width: 960.98px) {
  .kf-container .section-gpu {
    padding-bottom: calc(2.9768518519rem + 20.7222222222vw);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #000 url("../../innergigabyte/images/gpu-img.jpg") calc(50% + 270px) bottom/60vw auto no-repeat;
  }
  .kf-container .section-gpu .parallax-img {
    text-align: center;
  }
  .kf-container .section-gpu .parallax-img img {
    max-width: 100%;
  }
}
@media (max-width: 630.98px) {
  .kf-container .section-gpu {
    padding-bottom: calc(2.5138888889rem + 15.1666666667vw);
    background-position-x: calc(50% + 70px);
    background-size: 300px auto;
  }
}
.kf-container .section-gpu .scale-img {
  border-radius: 10px;
  position: relative;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes scale-up {
  to {
    transform: scale(1.3);
  }
}
.kf-container .section-gpu .scale-img img {
  display: block;
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  animation: scale-up 3s ease 0s forwards paused;
}
.kf-container .section-gpu .scale-img.active img {
  animation-play-state: running;
}
.kf-container .section-gpu .kp-list {
  display: flex;
  flex-flow: row wrap;
  gap: calc(1.2638888889rem + 0.1666666667vw) calc(1.3333333333rem + 1vw);
  margin-block: calc(1.3333333333rem + 1vw);
}
.kf-container .section-graphics h3, .kf-container .section-graphics h4 {
  font-weight: bold;
  line-height: 1.1;
}
.kf-container .section-graphics .graphics-model {
  max-width: 90%;
}
.kf-container .section-graphics .graphics-kf {
  font-size: 0.85em;
}
.kf-container .section-graphics .graphics-kf p {
  line-height: 1.1;
}
.kf-container .section-graphics .graphics-kf img {
  width: 64px;
  height: 64px;
  max-width: 100%;
  margin-bottom: 1em;
}
.kf-container .section-graphics .note {
  margin-top: 2vw;
  color: #666;
}
.kf-container .section-nv-creator {
  background: #010101;
  padding-block: calc(1.4953703704rem + 2.9444444445vw);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35.02%, #000 96.91%), #010101 url("../../innergigabyte/images/nv/bg-nv-creator.jpg") center top/cover no-repeat;
}
.kf-container .section-nv-creator .nv-intro {
  display: flex;
  flex-direction: column;
  row-gap: 0.5555555556rem;
}
.kf-container .section-nv-creator .nv-creator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, auto);
  column-gap: calc(1.2638888889rem + 0.1666666667vw);
  grid-auto-flow: column;
  align-items: center;
}
.kf-container .section-nv-creator .nv-creator-grid > div {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  align-items: center;
  justify-items: center;
}
.kf-container .section-nv-creator .nv-creator-grid > div img {
  display: block;
  margin-bottom: 15px;
}
@media (max-width: 960.98px) {
  .kf-container .section-nv-creator .nv-creator-grid {
    grid-template-columns: auto;
    grid-template-rows: auto;
    grid-auto-flow: row;
    row-gap: calc(1.4027777778rem + 1.8333333333vw);
  }
  .kf-container .section-nv-creator .nv-creator-grid > div {
    grid-template-rows: auto;
    grid-row: auto;
  }
}
.kf-container .section-nv-studio {
  background: #010101 url("../../innergigabyte/images/nv/nv-studio.jpg") center center/cover no-repeat;
}
.kf-container .section-nv-studio .section-content {
  min-height: 795px;
  display: flex;
  align-items: center;
}
@media (max-width: 960.98px) {
  .kf-container .section-nv-studio {
    background-size: 200% auto;
    background-position: 85% bottom;
    padding-bottom: 67.2%;
  }
  .kf-container .section-nv-studio .section-content {
    min-height: 0;
    padding-block: calc(1.4953703704rem + 2.9444444445vw);
    text-align: center;
  }
}
.kf-container .section-nv-feature {
  background: linear-gradient(92deg, rgba(255, 255, 255, 0.02) 3.15%, rgba(0, 0, 0, 0.12) 25.53%, rgba(255, 255, 255, 0.18) 53.93%, rgba(0, 0, 0, 0.24) 94.11%);
  padding: calc(1.4953703704rem + 2.9444444445vw) 0;
  margin-bottom: calc(1.8194444444rem + 6.8333333333vw);
}
.kf-container .section-nv-feature .container,
.kf-container .section-nv-feature .row {
  --gs-gutter-y: calc(1.4027777778rem + 1.8333333333vw);
  --gs-gutter-x: calc(1.4027777778rem + 1.8333333333vw);
}
.kf-container .section-nv-feature .mux-video video {
  width: 100%;
  max-width: 830px;
}
.kf-container .section-cpu {
  background: url("../../innergigabyte/images/cpu-img.jpg") left center no-repeat;
  overflow: hidden;
}
@media (max-width: 1320.98px) {
  .kf-container .section-cpu {
    background-position-x: calc(50% - 370px);
  }
}
@media (max-width: 960.98px) {
  .kf-container .section-cpu {
    padding-bottom: calc(3.6712962963rem + 29.0555555556vw);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), #000 url("../../innergigabyte/images/cpu-img.jpg") left bottom/60vw auto no-repeat;
  }
}
@media (max-width: 630.98px) {
  .kf-container .section-cpu {
    padding-bottom: calc(2.9768518519rem + 20.7222222222vw);
    background-position: calc(50% - 120px) 116%;
    background-size: 400px auto;
  }
}
.kf-container .section-cpu .gs-tabs {
  display: inline-flex;
  border: 1px solid #61AD27;
  border-radius: 10px;
  padding: 8px;
}
.kf-container .section-cpu .gs-tabs .gs-tab {
  cursor: pointer;
  border-radius: 7px;
  padding: 10px 20px;
  color: #61AD27;
}
.kf-container .section-cpu .gs-tabs .gs-tab.active {
  background: #61AD27;
  color: #fff;
}
.kf-container .section-cpu .kp-list {
  display: flex;
  flex-flow: row wrap;
  gap: calc(1.2638888889rem + 0.1666666667vw) calc(1.3333333333rem + 1vw);
  margin-block: calc(1.3333333333rem + 1vw);
}
.kf-container .section-oc {
  position: relative;
  line-height: 1.2;
  min-height: min(1000px, 100dvmin);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.kf-container .section-oc .overlay-blocks {
  width: 100%;
}
.kf-container .section-oc .oc-bg2 {
  clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
  transition: all cubic-bezier(0, 0, 0, 0.79) 250ms;
}
.kf-container .section-oc .oc-bg2.active {
  transition-duration: 2s;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.kf-container .section-oc .oc-bg img,
.kf-container .section-oc .oc-bg2 img {
  width: 100%;
}
@media (max-width: 960.98px) {
  .kf-container .section-oc .oc-bg img,
  .kf-container .section-oc .oc-bg2 img {
    width: 160%;
    margin-left: -30%;
  }
}
.kf-container .section-oc .pattern-left {
  background: url("../../innergigabyte/images/oc-pattern-left.svg") center bottom/100% auto no-repeat;
  min-width: 169px;
  min-height: 19px;
  position: absolute;
  left: 20.8%;
  transform: translateX(-50%);
  bottom: 45%;
  display: flex;
  flex-flow: row-reverse;
}
@media (max-width: 960.98px) {
  .kf-container .section-oc .pattern-left {
    left: 19.8%;
    min-width: 105px;
  }
}
@media (max-width: 630.98px) {
  .kf-container .section-oc .pattern-left {
    left: 5%;
    transform: translateX(0);
    background-size: 67px auto;
    min-width: 67px;
  }
}
.kf-container .section-oc .pattern-right {
  background: url("../../innergigabyte/images/oc-pattern-right.svg") center bottom/100% auto no-repeat;
  min-width: 169px;
  min-height: 19px;
  position: absolute;
  right: 20.8%;
  transform: translateX(50%);
  bottom: 45%;
}
@media (max-width: 960.98px) {
  .kf-container .section-oc .pattern-right {
    right: 19.8%;
    min-width: 105px;
  }
}
@media (max-width: 630.98px) {
  .kf-container .section-oc .pattern-right {
    right: 5%;
    transform: translateX(0);
    background-size: 67px auto;
    min-width: 67px;
  }
}
.kf-container .section-oc .ellipse {
  background: url("../../innergigabyte/images/oc-ellipse.png") center/cover no-repeat;
  width: 18.2291666667%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 24.7%;
}
.kf-container .section-oc .ellipse:after {
  content: "";
  display: block;
  padding-bottom: 101.4285714286%;
}
.kf-container .section-oc .ellipse .cover {
  display: grid;
  justify-content: center;
  align-content: center;
}
@media (max-width: 960.98px) {
  .kf-container .section-oc .ellipse {
    width: 29.1666666667%;
  }
}
.kf-container .section-oc .title {
  position: absolute;
  left: 50%;
  top: 11%;
  width: max-content;
  min-width: 200px;
  transform: translateX(-50%);
  text-align: justify;
  text-align-last: justify;
  letter-spacing: 0.2em;
  font-weight: normal;
  font-family: "Aldrich", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
}
.kf-container .section-oc .oc-value {
  font-size: calc(1.45rem + 2.4vw);
}
@media (min-width: 1200px) {
  .kf-container .section-oc .oc-value {
    font-size: 3.25rem;
  }
}
.kf-container .section-oc .oc-value {
  font-family: "Aldrich", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}
@media (max-width: 400.98px) {
  .kf-container .section-oc .oc-value {
    font-size: calc(1.2638888889rem + 0.1666666667vw);
  }
}
.kf-container .section-oc .oc-value2 {
  font-size: calc(1.625rem + 4.5vw);
}
@media (min-width: 1200px) {
  .kf-container .section-oc .oc-value2 {
    font-size: 5rem;
  }
}
.kf-container .section-oc .oc-value2 {
  font-family: "Aldrich", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
}
@media (max-width: 630.98px) {
  .kf-container .section-oc .oc-value2 {
    font-size: calc(1.3333333333rem + 1vw);
  }
}
.kf-container .section-oc .color-highlight {
  margin: 0;
}
@media (max-width: 630.98px) {
  .kf-container .section-oc .h5 {
    font-size: 1rem;
  }
}
@media (max-width: 400.98px) {
  .kf-container .section-oc .h5 {
    font-size: 0.875rem;
  }
}
.kf-container .section-ram {
  position: relative;
  overflow: hidden;
}
.kf-container .section-ram .kp-list {
  display: flex;
  gap: 40px;
}
.kf-container .section-ram .ram-swiper {
  position: relative;
  padding-top: 100px;
}
.kf-container .section-ram .ram-swiper .ram-pattern {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 15px;
}
@media (max-width: 960.98px) {
  .kf-container .section-ram .ram-swiper .ram-pattern {
    left: 89%;
    top: -68px;
    margin-left: 0;
  }
}
.kf-container .section-ram .ram-swiper .swiper-wrapper {
  display: grid;
  grid-template-rows: auto;
  grid-auto-flow: dense column;
}
.kf-container .section-ram .ram-swiper .swiper {
  overflow: visible;
}
.kf-container .section-ram .ram-swiper .swiper-slide {
  height: auto;
  grid-row: span 4;
  display: grid;
  grid-template-rows: subgrid;
}
.kf-container .section-ram .aero-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1/-1;
}
.kf-container .section-ram .aero-card .text {
  align-self: start;
}
.kf-container .section-ram .swiper img, .kf-container .section-ram .swiper video {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 960.98px) {
  .kf-container .section-ram .swiper img, .kf-container .section-ram .swiper video {
    height: auto;
  }
}
.kf-container .section-copilot {
  padding-block: calc(2.5138888889rem + 15.1666666667vw);
  overflow: hidden;
  background: url("../../innergigabyte/images/bg-copilot.jpg") center 70%/90% auto no-repeat;
}
.kf-container .section-copilot .note {
  margin-top: 2vw;
  color: #aaa;
  font-size: 14px;
}
.kf-container .section-copilot .swiper {
  overflow: visible;
}
.kf-container .section-copilot .swiper .swiper-slide {
  transition: all 450ms ease;
  height: auto;
}
.kf-container .section-copilot .swiper .swiper-slide:not(.swiper-slide-visible) {
  opacity: 0.3;
}
.kf-container .section-copilot .black-window {
  border-radius: 10px;
  border: 1px solid #8D8D8D;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.kf-container .section-copilot .black-window > div {
  width: 50%;
}
.kf-container .section-copilot .black-window .text {
  padding: 0 calc(1.375rem + 1.5vw);
}
.kf-container .section-copilot .black-window img {
  width: 100%;
}
@media (max-width: 960.98px) {
  .kf-container .section-copilot .black-window {
    flex-direction: column-reverse;
    justify-content: start;
    height: 100%;
  }
  .kf-container .section-copilot .black-window > div {
    width: 100%;
  }
  .kf-container .section-copilot .black-window .text {
    padding-block: calc(1.3101851852rem + 0.7222222222vw);
  }
}
.kf-container .section-gimate {
  background: url("../../innergigabyte/images/bg-gimate.jpg") right center/100% auto no-repeat;
  height: 50vw;
}
.kf-container .section-gimate .section-content {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 960.98px) {
  .kf-container .section-gimate {
    background: #111111 url("../../innergigabyte/images/bg-gimate-mobile.jpg") center bottom/100% auto no-repeat;
    min-height: auto;
    padding-top: 8%;
    padding-bottom: 75%;
    height: auto;
  }
}
.kf-container .section-gimate-feature {
  background: url("../../innergigabyte/images/bg-gimate-feature.jpg") center bottom/100% auto no-repeat;
  padding-block: calc(1.4953703704rem + 2.9444444445vw);
}
.kf-container .section-gimate-feature .sticky-bottom {
  bottom: 10vh;
}
.kf-container .section-gimate-feature .section-content {
  padding-top: calc(1.587962963rem + 4.0555555556vw);
}
@media (min-width: 961px) {
  .kf-container .section-gimate-feature .gimate-feature-text {
    margin-top: calc(1.6805555556rem + 5.1666666667vw);
  }
}
.kf-container .section-gimate-feature .gimate-img-1 {
  position: relative;
  display: inline-flex;
  width: 657px;
}
.kf-container .section-gimate-feature .gimate-img-1:after {
  content: "";
  display: block;
  padding-bottom: 63.1659056317%;
}
.kf-container .section-gimate-feature .gimate-img-1._gs_fade_in .item-1, .kf-container .section-gimate-feature .gimate-img-1._gs_fade_in .item-2, .kf-container .section-gimate-feature .gimate-img-1._gs_fade_in .item-3, .kf-container .section-gimate-feature .gimate-img-1._gs_fade_in .item-4 {
  opacity: 0;
}
.kf-container .section-gimate-feature .gimate-img-1._gs_fade_in_active .item-1, .kf-container .section-gimate-feature .gimate-img-1._gs_fade_in_active .item-2, .kf-container .section-gimate-feature .gimate-img-1._gs_fade_in_active .item-3, .kf-container .section-gimate-feature .gimate-img-1._gs_fade_in_active .item-4 {
  animation: fadeInBottom 250ms ease-out 0s forwards;
}
.kf-container .section-gimate-feature .gimate-img-1._gs_fade_in_active .item-2 {
  animation-delay: 350ms;
}
.kf-container .section-gimate-feature .gimate-img-1._gs_fade_in_active .item-3 {
  animation-delay: 500ms;
}
.kf-container .section-gimate-feature .gimate-img-1._gs_fade_in_active .item-4 {
  animation-delay: 750ms;
}
.kf-container .section-gimate-feature .gimate-img-1 .item-1 {
  position: absolute;
  z-index: 3;
  width: 536px;
  height: 278px;
  top: 121px;
  left: 29px;
  width: 81.5829528158%;
  height: 66.9879518072%;
  top: 29.156626506%;
  left: 4.4140030441%;
}
.kf-container .section-gimate-feature .gimate-img-1 .item-2 {
  position: absolute;
  z-index: 2;
  width: 396px;
  height: 198px;
  top: 0;
  left: 261px;
  width: 60.2739726027%;
  height: 47.7108433735%;
  left: 39.7260273973%;
}
.kf-container .section-gimate-feature .gimate-img-1 .item-3 {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  width: 39px;
  height: 92px;
  width: 5.9360730594%;
  height: 22.1686746988%;
}
.kf-container .section-gimate-feature .gimate-img-1 .item-4 {
  position: absolute;
  z-index: 5;
  width: 20px;
  height: 33px;
  bottom: 6px;
  left: 588px;
  width: 3.0441400304%;
  height: 7.9518072289%;
  bottom: 1.4457831325%;
  left: 89.497716895%;
}
.kf-container .section-gimate-feature .gimate-img-2 {
  border-radius: 20px;
  background: linear-gradient(119deg, #34FFBE 32.03%, #215CE5 103.24%);
}
.kf-container .section-gimate-feature .gimate-img-2 img {
  display: block;
  border-radius: 20px;
  transition: all 500ms ease-out 300ms;
}
.kf-container .section-gimate-feature .gimate-img-2._gs_fade_in {
  opacity: 1;
  transform: translate(0);
}
.kf-container .section-gimate-feature .gimate-img-2._gs_fade_in_active {
  opacity: 1;
}
.kf-container .section-gimate-feature .gimate-img-2._gs_fade_in_active img {
  transform: translate(10px, 10px);
}
.kf-container .section-gimate-feature .btn-learnmore {
  display: inline-flex;
  padding: 14px 24px;
  align-items: center;
  margin-top: calc(1.587962963rem + 4.0555555556vw);
  border-radius: 10px;
  outline: 1px solid #34FFBE;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  font-weight: 600;
  cursor: pointer;
  transition: background 250ms ease;
  backdrop-filter: blur(10px);
  font-size: 1.125rem;
}
.kf-container .section-gimate-feature .btn-learnmore::after {
  content: "";
  display: inline-block;
  background: url("../../innergigabyte/images/learnmore-arrow.svg") 0 0 no-repeat;
  width: 19px;
  height: 18px;
}
.kf-container .section-gimate-feature .btn-learnmore .light {
  color: #34FFBE;
}
.kf-container .section-gimate-feature .btn-learnmore:hover {
  color: #000;
  outline: none;
  background: linear-gradient(90deg, #34FFBE 0%, #215CE5 100%);
}
.kf-container .section-gimate-feature .btn-learnmore:hover .light {
  filter: grayscale(1) brightness(2);
}
.kf-container .section-gimate-feature .btn-learnmore:hover::after {
  filter: grayscale(1) brightness(2);
}
.kf-container .section-thermal {
  margin-top: calc(1.8194444444rem + 6.8333333333vw);
}
.kf-container .section-thermal .top-image img {
  border-radius: 10px;
}
.kf-container .section-thermal .kp-list {
  width: auto;
  display: flex;
  flex-flow: column nowrap;
  gap: 30px;
  padding: 0 30px;
}
@media (max-width: 960.98px) {
  .kf-container .section-thermal .kp-list {
    flex-flow: row wrap;
    padding: 30px 0;
  }
}
.kf-container .section-thermal .thermal-ani-wrapper {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin: -190px 0 -195px 0;
  padding: 190px 0 195px 0;
  overflow: hidden;
}
.kf-container .section-thermal .thermal-ani {
  max-width: 1200px;
  margin: 0 auto;
  padding: 190px 180px 195px 178px;
  margin: -190px -180px -195px -178px;
  box-sizing: content-box;
}
.kf-container .section-thermal .thermal-model .overlay-blocks .block {
  position: relative;
}
.kf-container .section-thermal .img-1,
.kf-container .section-thermal .img-2,
.kf-container .section-thermal .img-3 {
  max-width: 100%;
}
.kf-container .section-thermal .pattern-1 {
  position: absolute;
  top: 80%;
  right: 90%;
  width: 25%;
}
.kf-container .section-thermal .pattern-2 {
  position: absolute;
  bottom: 89%;
  left: 90%;
  width: 25%;
}
.kf-container .section-thermal .icon-windforce {
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  margin-inline: auto;
}
@media (max-width: 630.98px) {
  .kf-container .section-thermal .icon-windforce {
    max-width: 160px;
    width: 35%;
  }
}
.kf-container .section-thermal .timeline-ani {
  height: 100vh;
}
.kf-container .section-thermal-tech {
  padding-bottom: calc(1.6805555556rem + 5.1666666667vw);
}
.kf-container .section-thermal-tech .text-highlight {
  margin-top: calc(1.3564814815rem + 1.2777777778vw);
}
.kf-container .section-thermal-tech .text-highlight ~ .text-highlight {
  margin-top: 40px;
}
.kf-container .section-thermal-tech video {
  max-width: 100%;
}
.kf-container .section-thermal-tech .swiper .img img {
  max-width: 100%;
}
.kf-container .section-thermal-tech .swiper .swiper-slide {
  height: auto;
  transition: opacity 250ms ease;
}
.kf-container .section-thermal-tech .swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
  pointer-events: none;
}
.kf-container .section-thermal-tech .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media (min-width: 961px) {
  .kf-container .section-thermal-tech .swiper-slide .img {
    margin-bottom: -10%;
  }
}
.kf-container .section-thermal-tech .swiper-slide .aero-bbox {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100%;
  z-index: 3;
}
@media (max-width: 960.98px) {
  .kf-container .section-thermal-tech .swiper-slide {
    flex-direction: column;
  }
  .kf-container .section-thermal-tech .swiper-slide .aero-bbox {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -18%;
  }
}
.kf-container .section-thermal-tech .b-swiper-pagination {
  margin-top: 0;
  justify-content: end;
}
.kf-container .section-thermal-tech .icon-gimate {
  height: 1.1em;
}
.kf-container .section-display .panel-scene {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 400.98px) {
  .kf-container .section-display .panel-scene {
    width: 160%;
    margin-left: -30%;
  }
}
.kf-container .section-display .scene-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.kf-container .section-display .bg-panel {
  padding-top: calc(50vh - var(--model-height) * 0.5);
  padding-bottom: 200px;
}
.kf-container .section-display .bg-white {
  background: rgba(255, 255, 255, 0.2);
}
.kf-container .section-display .model-container {
  width: 1767px;
  max-width: 100%;
  margin: 0 auto;
}
.kf-container .section-display .model-container img {
  display: block;
}
.kf-container .section-display .model-hardware {
  position: relative;
}
.kf-container .section-display .panel-main {
  position: relative;
  margin-left: 10%;
  z-index: 3;
}
.kf-container .section-display .panel-main img {
  width: 62.25%;
}
.kf-container .section-display .model-top {
  position: relative;
  margin-top: -52%;
}
.kf-container .section-display .model-top img {
  width: 100%;
}
.kf-container .section-display .model-bottom {
  position: relative;
  z-index: 4;
}
.kf-container .section-display .model-bottom img {
  width: 100%;
}
.kf-container .section-display .model-panel {
  position: absolute;
}
.kf-container .section-display .model-panel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kf-container .section-display .model-panel .text {
  z-index: 3;
  height: 100%;
  position: relative;
  display: flex;
  flex-flow: row;
  text-align: end;
  justify-content: end;
  align-items: end;
  padding: 3%;
  gap: 2em;
  color: #000;
  font-size: calc(1.265rem + 0.18vw);
}
@media (min-width: 1200px) {
  .kf-container .section-display .model-panel .text {
    font-size: 1.4rem;
  }
}
.kf-container .section-display .model-panel .text .kp-main {
  font-family: "Play", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
  font-weight: bold;
  font-style: normal;
}
@media (max-width: 960.98px) {
  .kf-container .section-display .model-panel .text {
    gap: 1rem;
    font-size: 1rem;
    flex-flow: column;
  }
}
.kf-container .section-display .panel-scene-heading {
  text-align: center;
  position: relative;
  height: 100%;
  padding-bottom: 11.6%;
}
.kf-container .section-display .panel-scene-heading .panel-scene-title {
  height: 100%;
  display: flex;
  align-items: end;
  justify-self: start;
  margin-left: 22%;
  padding-bottom: 2%;
}
.kf-container .section-display .title-main {
  font-family: "Play", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
  font-weight: bold;
  font-style: normal;
  font-size: min(132px, 6.875vw);
  color: #000;
}
@media (max-width: 400.98px) {
  .kf-container .section-display .title-main {
    font-size: min(60px, 15vw);
  }
}
.kf-container .section-display .title-sub {
  font-family: "Play", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
  font-weight: bold;
  font-style: normal;
  font-size: min(27px, 1.4vw);
  color: #000;
}
@media (max-width: 400.98px) {
  .kf-container .section-display .title-sub {
    font-size: min(12px, 3vw);
  }
}
.kf-container .section-display .swiper {
  overflow: visible;
}
.kf-container .section-display .swiper .swiper-slide {
  height: auto;
  transition: all 450ms ease;
}
.kf-container .section-display .swiper .swiper-slide:not(.swiper-slide-visible) {
  opacity: 0.3;
}
.kf-container .section-display .aero-card {
  height: 100%;
}
.kf-container .section-display .wrapper {
  width: 1767px;
  max-width: 100%;
  margin: 0 auto;
}
.kf-container .section-display .bg-black {
  --gs-bg-opacity: .5;
  opacity: 0;
}
.kf-container .section-display .stroke-ani {
  position: relative;
}
@supports (-webkit-text-stroke: 1px) {
  .kf-container .section-display .stroke-ani .stroke {
    -webkit-text-stroke: 1px #000;
    color: transparent;
  }
  @media (max-width: 960.98px) {
    .kf-container .section-display .stroke-ani .stroke {
      -webkit-text-stroke: 0.3px #000;
    }
  }
}
.kf-container .section-display .stroke-ani .stroke-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #000;
  --clip-width-percent: 0%;
  clip-path: polygon(0 0, calc(var(--clip-width-percent) * 1.2) 0, var(--clip-width-percent) 120%, 0 120%);
}
.kf-container .section-display .stroke-ani.active .stroke-cover {
  --clip-width-percent: 100%;
  transition: --clip-width-percent 500ms ease;
}
@property --clip-width-percent {
  syntax: "<percentage>";
  /* <- defined as type number for the transition to work */
  initial-value: 0%;
  inherits: false;
}
.kf-container .section-display .timeline-null {
  height: 15vh;
}
.kf-container .section-display .timeline-p0 {
  height: 40vh;
}
.kf-container .section-display .timeline-p1 {
  height: 40vh;
}
.kf-container .section-display .timeline-p2 {
  height: 60vh;
}
.kf-container .section-display .timeline-p3 {
  height: 40vh;
}
.kf-container .section-display .timeline-p4 {
  height: 40vh;
}
.kf-container .section-outlook {
  padding-block: calc(1.6805555556rem + 5.1666666667vw);
  position: relative;
  background: #000 url("../../innergigabyte/images/bg-outlook.jpg") center top/100% auto no-repeat;
}
@media (max-width: 960.98px) {
  .kf-container .section-outlook {
    background-size: 140% auto;
    padding-bottom: calc(70.42% + var(--padding));
  }
}
.kf-container .section-outlook .gs-tabs {
  display: inline-flex;
  border: 1px solid #61AD27;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  padding: 8px;
}
.kf-container .section-outlook .gs-tabs .gs-tab {
  cursor: pointer;
  border-radius: 7px;
  padding: 5px 20px;
  color: #61AD27;
}
.kf-container .section-outlook .gs-tabs .gs-tab.active {
  background: #61AD27;
  color: #fff;
}
.kf-container .section-outlook .gs-tab-content img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.kf-container .section-outlook .pos-1 {
  position: absolute;
  top: 57%;
  left: 83.2561728395%;
  width: 10.4166666667%;
}
@media (max-width: 1320.98px) {
  .kf-container .section-outlook .pos-1 {
    top: 70%;
  }
}
.kf-container .section-outlook .pos-2 {
  position: absolute;
  top: 65%;
  left: -14.8919753086%;
  width: 14.3518518519%;
}
.kf-container .section-outlook .pos-3 {
  position: absolute;
  top: -18%;
  left: 99.4598765432%;
  width: 11.7283950617%;
}
.kf-container .section-outlook .pos-4 {
  position: absolute;
  top: 83%;
  left: 73.225308642%;
  width: 7.1759259259%;
}
.kf-container .section-outlook .section-content {
  position: relative;
  min-height: 13vw;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.kf-container .section-outlook .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mask-image: linear-gradient(to right, transparent, #000 40%, transparent);
  overflow: hidden;
}
.kf-container .section-outlook .light {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 150%;
  transform: rotate(-30deg);
  box-shadow: 0 0 100px 30px rgba(255, 255, 255, 0.1098039216);
  box-shadow: 0 0 25vw 3vw rgba(255, 255, 255, 0.15);
  mix-blend-mode: soft-light;
  animation: scan 12s infinite;
  animation: scan 8s infinite;
}
@keyframes scan {
  0% {
    left: -50%;
  }
  40% {
    left: 150%;
  }
  100% {
    left: 150%;
  }
}
.kf-container .section-outlook-pic .stickyCenter {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: url("../../innergigabyte/images/outlook-pic-pattern.svg") right top no-repeat, url("../../innergigabyte/images/bg-outlook-pic.jpg") left center/cover no-repeat;
}
@media (max-width: 960.98px) {
  .kf-container .section-outlook-pic .stickyCenter {
    background: url("../../innergigabyte/images/bg-outlook-pic.jpg") left center/cover no-repeat;
  }
}
.kf-container .section-outlook-pic .sticky-center-fixed {
  --min-offset: 0px;
}
.kf-container .section-outlook-pic .overlay-blocks {
  width: 100%;
  padding-block: calc(1.4953703704rem + 2.9444444445vw);
  align-items: center;
}
.kf-container .section-outlook-pic .overlay-blocks .row {
  --gs-gutter-y: var(--casaul-body-spacer);
}
@media (max-width: 1320.98px) {
  .kf-container .section-outlook-pic .img {
    width: 100%;
  }
}
@keyframes rotate360 {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.kf-container .section-outlook-pic .nil-1-1 {
  position: absolute;
  top: -8%;
  left: -12%;
  width: 22.95632%;
}
.kf-container .section-outlook-pic .nil-1-2 {
  position: absolute;
  top: -8.3%;
  left: 15.4%;
  width: 63.9%;
}
.kf-container .section-outlook-pic .nil-2-1 {
  position: absolute;
  top: -30%;
  left: -6%;
  width: 21.50056%;
}
@media (max-width: 960.98px) {
  .kf-container .section-outlook-pic .nil-2-1 {
    top: -6%;
    left: -2%;
    width: 14.50056%;
  }
}
.kf-container .section-outlook-pic .nil-2-2 {
  position: absolute;
  top: 70%;
  left: 83%;
  width: 30.6831%;
}
@media (max-width: 960.98px) {
  .kf-container .section-outlook-pic .nil-2-2 {
    display: none;
  }
}
.kf-container .section-outlook-pic .nil-3-1 {
  position: absolute;
  top: 12%;
  left: 7%;
  width: 86.2%;
  height: 76%;
  object-fit: cover;
}
.kf-container .section-outlook-pic .timeline-overlay .slide {
  height: 50vh;
}
.kf-container .section-outlook-pic .timeline-overlay .trans {
  height: 25vh;
}
.kf-container .section-kb {
  position: relative;
  overflow: hidden;
  padding-block: calc(1.4953703704rem + 2.9444444445vw);
}
.kf-container .section-kb .left-img {
  display: flex;
  justify-content: end;
}
@media (max-width: 960.98px) {
  .kf-container .section-kb .left-img img {
    max-width: 100%;
  }
}
.kf-container .section-kb .kp-list {
  gap: 3rem;
}
@media (min-width: 961px) {
  .kf-container .section-kb .kp-list {
    gap: 5rem;
  }
}
.kf-container .section-sound {
  --scene-width: min(810px, 85.8050847458vh, 100vw);
}
.kf-container .section-sound .sticky-container {
  margin-top: calc(var(--scene-width) * -0.353);
  margin-bottom: calc(var(--scene-width) * 0.353 * -1);
}
.kf-container .section-sound .sound-scene {
  position: relative;
  width: var(--scene-width);
  margin: calc(var(--scene-width) * 0.353) auto;
}
.kf-container .section-sound .sound-scene:after {
  content: "";
  display: block;
  padding-bottom: 116.5432098765%;
}
body.use-test .kf-container .section-sound .sound-scene::after {
  position: relative;
  z-index: 9999999;
  outline: 1px solid #D83FFE;
}
.kf-container .section-sound .sound-scene .sound-bg {
  background: url("../../innergigabyte/images/bg-sound.jpg") 0 0/cover no-repeat;
  position: absolute;
  left: -68.642%;
  top: 7.20339%;
  left: -63.950617284%;
  top: 9.5338983051%;
  width: 237.037037037%;
}
.kf-container .section-sound .sound-scene .sound-bg:after {
  content: "";
  display: block;
  padding-bottom: 62.8645833333%;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes wave-ani {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.2;
  }
}
@keyframes wave-scale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}
@keyframes wave-ani2 {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80%, 100% {
    opacity: 0;
  }
}
.kf-container .section-sound .sound-scene .sound-model {
  background: url("../../innergigabyte/images/product/sound-model.png") 0 0/cover no-repeat;
  position: absolute;
  left: -11.975%;
  top: 9.216%;
  left: -7.2839506173%;
  top: 17.0550847458%;
  width: 123.4567901235%;
}
.kf-container .section-sound .sound-scene .sound-model:after {
  content: "";
  display: block;
  padding-bottom: 83.3%;
}
.kf-container .section-sound .sound-scene .sound-wave-list {
  position: absolute;
  left: -19.8765432099%;
  top: 21.3983050847%;
  width: 85.4320987654%;
}
.kf-container .section-sound .sound-scene .sound-wave-list:after {
  content: "";
  display: block;
  padding-bottom: 128.7572254335%;
}
.kf-container .section-sound .sound-scene .sound-wave-list .sound-wave-1, .kf-container .section-sound .sound-scene .sound-wave-list .sound-wave-2, .kf-container .section-sound .sound-scene .sound-wave-list .sound-wave-3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.kf-container .section-sound .sound-scene .sound-wave-list.ani .sound-wave-1, .kf-container .section-sound .sound-scene .sound-wave-list.ani .sound-wave-2, .kf-container .section-sound .sound-scene .sound-wave-list.ani .sound-wave-3 {
  animation: fadeIn 450ms ease 0s both, wave-ani 1s ease-in-out 450ms infinite alternate;
  animation: wave-ani2 2s ease-out 0ms infinite;
}
.kf-container .section-sound .sound-scene .sound-wave-list.ani .sound-wave-1 {
  animation-delay: 300ms;
}
.kf-container .section-sound .sound-scene .sound-wave-list.ani .sound-wave-2 {
  animation-delay: 150ms;
}
.kf-container .section-sound .sound-scene .sound-wave-list.ani .sound-wave-3 {
  animation-delay: 0ms;
}
.kf-container .section-sound .sound-scene .sound-wave-1 {
  background: url("../../innergigabyte/images/soundwave01.png") 0 0/cover no-repeat;
}
.kf-container .section-sound .sound-scene .sound-wave-2 {
  background: url("../../innergigabyte/images/soundwave02.png") 0 0/cover no-repeat;
}
.kf-container .section-sound .sound-scene .sound-wave-3 {
  background: url("../../innergigabyte/images/soundwave03.png") 0 0/cover no-repeat;
}
@media (max-width: 960.98px) {
  .kf-container .section-sound .sound-scene .sound-bg {
    left: -60.642%;
  }
  .kf-container .section-sound .sound-scene .sound-wave {
    left: -4.098765%;
  }
  .kf-container .section-sound .sound-scene .sound-model {
    left: -3.975%;
  }
}
.kf-container .section-sound .section-content {
  position: relative;
  overflow: hidden;
  padding-top: calc(1.2638888889rem + 0.1666666667vw);
}
.kf-container .section-sound .kp-list {
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.kf-container .section-sound .kp-list .kp {
  flex: 0 auto;
}
.kf-container .section-sound .timeline-bg {
  height: 30vh;
}
.kf-container .section-sound .timeline-model {
  height: 30vh;
}
.kf-container .section-sound .timeline-wave {
  height: 30vh;
}
.kf-container .section-sound-feature {
  position: relative;
  padding-block: calc(1.4953703704rem + 2.9444444445vw) calc(1.6805555556rem + 5.1666666667vw);
}
.kf-container .section-sound-feature .sound-pattern {
  background: url("../../innergigabyte/images/sound-pattern.svg") center 0 no-repeat;
  width: 231px;
  height: 27px;
}
.kf-container .section-sound-feature .sound-decoration {
  height: 4px;
  background: #fff;
}
.kf-container .section-sound-feature .kp-list {
  display: flex;
  flex-flow: row wrap;
  gap: var(--casaul-body-spacer);
}
.kf-container .section-sound-feature .kp-list .kp {
  flex: 0 auto;
}
@media (max-width: 960.98px) {
  .kf-container .section-sound-feature .aero-bbox {
    padding-left: 2em;
    border-radius: 10px;
  }
  .kf-container .section-sound-feature .aero-bbox::before {
    content: none;
  }
}
.kf-container .section-sound-feature .sound-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  grid-auto-flow: dense row;
  gap: var(--casaul-body-spacer);
}
@media (min-width: 1321px) {
  .kf-container .section-sound-feature .sound-grid {
    width: 66.6%;
  }
}
@media (min-width: 961px) {
  .kf-container .section-sound-feature .sound-grid {
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 960.98px) {
  .kf-container .section-sound-feature .sound-grid {
    grid-auto-rows: auto;
  }
}
@media (max-width: 630.98px) {
  .kf-container .section-sound-feature .sound-grid {
    grid-template-columns: 1fr;
  }
}
.kf-container .section-sound-feature .sound-grid > div {
  display: grid;
  grid-template-columns: subgrid;
  grid-template-rows: subgrid;
}
.kf-container .section-sound-feature .sound-grid > div .text {
  display: grid;
  justify-items: start;
  align-content: center;
  padding: var(--casaul-body-spacer);
}
.kf-container .section-sound-feature .sound-grid > div .img {
  position: relative;
}
.kf-container .section-sound-feature .sound-grid > div .img img, .kf-container .section-sound-feature .sound-grid > div .img video {
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}
.kf-container .section-sound-feature .sound-grid > div:nth-child(3n+2) {
  grid-row: span 2/span 2;
  background: linear-gradient(180deg, #2B2B2B 0%, transparent 100px, transparent 100%);
}
.kf-container .section-sound-feature .sound-grid > div:nth-child(3n+2) .img {
  grid-row: -1/-2;
}
@media (max-width: 960.98px) {
  .kf-container .section-sound-feature .sound-grid > div:nth-child(3n+2) {
    grid-row: auto;
    grid-column: span 3/span 3;
  }
  .kf-container .section-sound-feature .sound-grid > div:nth-child(3n+2) .text {
    grid-column: span 2/span 2;
  }
  .kf-container .section-sound-feature .sound-grid > div:nth-child(3n+2) .img {
    grid-row: auto;
    grid-column: -1/-2;
  }
}
.kf-container .section-sound-feature .sound-grid > div:not(:nth-child(3n+2)) {
  grid-column: span 2/span 2;
  background: linear-gradient(90deg, #2B2B2B 0%, transparent 100px, transparent 100%);
}
.kf-container .section-sound-feature .sound-grid > div:not(:nth-child(3n+2)) .img {
  grid-column: -1/-2;
}
@media (max-width: 960.98px) {
  .kf-container .section-sound-feature .sound-grid > div:not(:nth-child(3n+2)) {
    grid-column: span 3/span 3;
  }
  .kf-container .section-sound-feature .sound-grid > div:not(:nth-child(3n+2)) .text {
    grid-column: span 2/span 2;
  }
}
@media (max-width: 960.98px) {
  .kf-container .section-sound-feature .sound-grid > div:nth-child(2n) .img {
    grid-column: 1/2;
    grid-row: -1/-2;
  }
}
@media (max-width: 630.98px) {
  .kf-container .section-sound-feature .sound-grid > div:nth-child(n) {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .kf-container .section-sound-feature .sound-grid > div:nth-child(n) .text,
  .kf-container .section-sound-feature .sound-grid > div:nth-child(n) .img {
    grid-row: auto;
    grid-column: auto;
  }
  .kf-container .section-sound-feature .sound-grid > div:nth-child(n) .text img, .kf-container .section-sound-feature .sound-grid > div:nth-child(n) .text video,
  .kf-container .section-sound-feature .sound-grid > div:nth-child(n) .img img,
  .kf-container .section-sound-feature .sound-grid > div:nth-child(n) .img video {
    position: static;
  }
  .kf-container .section-sound-feature .sound-grid > div:nth-child(n) .img {
    order: -1;
  }
}
.kf-container .section-productivity {
  padding-block: calc(1.4953703704rem + 2.9444444445vw);
  background: url("../../innergigabyte/images/bg-productivity.jpg") center/cover no-repeat;
  color: #111;
  overflow: hidden;
}
.kf-container .section-productivity .top-image img {
  border-radius: 10px;
}
.kf-container .section-productivity .parallax-img {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  height: min(30vw, 600px);
}
.kf-container .section-productivity .parallax-img img {
  height: calc(100% + 15vh);
  object-fit: cover;
}
.kf-container .section-productivity .productivity-swiper-wrap {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}
.kf-container .section-productivity .productivity-swiper {
  width: 100%;
}
.kf-container .section-productivity .productivity-swiper .kp-sub {
  font-size: 0.875rem;
}
.kf-container .section-productivity .swiper {
  overflow: visible;
}
.kf-container .section-productivity .swiper .swiper-slide {
  height: auto;
  transition: all 450ms ease;
}
.kf-container .section-productivity .swiper .swiper-slide:not(.swiper-slide-visible) {
  opacity: 0.3;
}
.kf-container .section-productivity .aero-card {
  height: 100%;
  background: rgba(211, 211, 211, 0.5);
}
.kf-container .section-productivity .aero-card .text {
  height: 100%;
}
.kf-container .section-productivity .kp-list {
  display: flex;
  flex-flow: row wrap;
  gap: calc(1.2638888889rem + 0.1666666667vw);
}
.kf-container .section-io {
  padding-block: calc(1.4953703704rem + 2.9444444445vw);
  background: url("../../innergigabyte/images/bg-io.jpg") center center/cover no-repeat;
}
.kf-container .section-io .io-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  align-items: center;
  column-gap: calc(1.2638888889rem + 0.1666666667vw);
}
@media (max-width: 960.98px) {
  .kf-container .section-io .io-grid {
    grid-template-columns: 1fr;
  }
}
.kf-container .section-io .io-grid img {
  max-width: 100%;
}
.kf-container .section-xboxgamepass {
  background: #000;
  padding: 5rem 0;
}
.kf-container .section-xboxgamepass .section-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: var(--casaul-body-spacer);
}
@media (min-width: 961px) {
  .kf-container .section-xboxgamepass .section-content {
    flex-direction: row;
  }
}
.kf-container .section-xboxgamepass .section-content > img {
  display: block;
  flex: 1 100%;
  width: 100%;
}
@media (min-width: 961px) {
  .kf-container .section-xboxgamepass .section-content > img {
    flex-basis: 50%;
    width: 50%;
  }
}
.kf-container .section-xboxgamepass .caption {
  font-size: 12px;
}
.kf-container .section-tip {
  background: #000000;
  color: #afafaf;
  padding-top: 3em;
  padding-bottom: 3em;
  font-size: 0.7em;
  line-height: 1.4;
  font-family: "Titillium Web", "Noto Sans", "Noto Sans TC", "微軟正黑體", "Microsoft JhengHei", "微軟雅黑體", "Microsoft YaHei", "SimHei", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Malgun Gothic", Dotum, "돋움", "Arial", "Verdana", "Helvetica", "sans-serif";
}
.kf-container .section-tip > .container {
  max-width: 74%;
}
.kf-container .section-tip ol {
  list-style: decimal;
  padding: 0;
  margin: 0;
}
.kf-container .section-tip ol li {
  margin-bottom: 10px;
}
.kf-container .section-tip .content-box {
  padding: 0;
}

body.static-web .kf-container .section-thermal-tech .thermal-swiper .swiper-wrapper {
  flex-flow: column !important;
  transform: none !important;
}
body.static-web .kf-container .section-thermal-tech .thermal-swiper .swiper-slide {
  opacity: 1 !important;
}
body.static-web .kf-container .section-ram .swiper .swiper-wrapper, body.static-web .kf-container .section-copilot .swiper .swiper-wrapper {
  flex-flow: column !important;
  transform: none !important;
}
body.static-web .kf-container .section-ram .swiper .swiper-slide, body.static-web .kf-container .section-copilot .swiper .swiper-slide {
  margin-bottom: 30px;
  opacity: 1 !important;
}
body.static-web .kf-container .section-display-feature .display-swiper .swiper-wrapper {
  flex-flow: row wrap;
  width: 100%;
  justify-content: center;
  gap: 50px;
}
body.static-web .kf-container .section-outlook .bg-outlook .intro > * {
  animation: none !important;
}
body.static-web .kf-container .section-outlook .outlook-hardware .cover {
  animation: none !important;
}
body.static-web .kf-container .section-outlook-pic .overlay-blocks {
  flex-wrap: wrap;
}
body.static-web .kf-container .section-outlook-pic .overlay-blocks .block {
  opacity: 1 !important;
}
body.static-web .kf-container .section-outlook-pic .overlay-blocks .block:nth-child(2n) .row {
  flex-direction: row-reverse !important;
}
body.static-web .kf-container .section-outlook-pic .overlay-blocks .block:nth-child(2n) .w960\:col-7 {
  display: flex;
  justify-content: end;
}
body.static-web .kf-container .section-outlook-pic .overlay-blocks > .block + .block {
  margin-left: 0;
  margin-top: 50px;
}
body.static-web .kf-container .section-sound .bg .cover {
  opacity: 0 !important;
}
body.static-web .kf-container .section-sound .sound-model .sound-waves,
body.static-web .kf-container .section-sound .sound-model .sound-speaker {
  animation: none !important;
}
body.static-web .kf-container .section-sound .sound-wave .wave::after {
  animation-iteration-count: 1;
  animation-fill-mode: backwards;
  transform: translateY(5px) scale(1.55);
}
body.static-web .kf-container .section-display .swiper .swiper-wrapper {
  height: auto !important;
  transform: none !important;
  display: grid;
  place-content: center;
  grid-auto-flow: column;
}
body.static-web .kf-container .section-display .swiper .swiper-slide {
  margin-bottom: 30px;
  opacity: 1 !important;
}
body.static-web .kf-container .section-productivity .productivity-swiper-wrap {
  max-width: 100%;
}
body.static-web .kf-container .section-productivity .productivity-swiper .swiper-wrapper {
  height: auto !important;
  transform: none !important;
  display: grid;
  place-content: center;
  grid-auto-flow: column;
}
body.static-web .kf-container .section-productivity .productivity-swiper .swiper-slide {
  margin-bottom: 30px;
  opacity: 1 !important;
  max-width: 520px;
}
body.static-web .kf-container .section-io .io-grid .io-left, body.static-web .kf-container .section-io .io-grid .io-right {
  transform: none !important;
}

body.hide-texts .kf-container .section-display .panel-scene .text {
  visibility: hidden;
}

body.use-test::before {
  content: "TEST MODE";
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999999999;
  font-family: "NOTO Sans";
  font-size: 30px;
  line-height: 40px;
  background: #fff;
  color: #333;
  opacity: 0.25;
  padding: 0.2em 0.6em;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../scss/_base.scss%22,%22../scss/main.scss%22,%22../scss/_gs_tip.scss%22,%22../scss/_gs_dots.scss%22,%22../scss/_sections.scss%22,%22../scss/lib/_rfs.scss%22,%22../scss/_function.scss%22,%22../scss/_static-web.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22;AA+CY;AA9CR;EACI;;;AAGJ;EACI;;;AAGJ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;;;AAIR;EACI;;AAEJ;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAUI;EACA;;AAGJ;AAAA;AAAA;EAGI;EACA;;AA8CJ;EACI;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAKA;EACI;EACA;EACA;EACA;;ACjHZ;EAGI;EACA;EACA;;ACNJ;EAEI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEJ;EACI;EACA;;AAEJ;EACI;;ACrBR;EACI;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;AAWA;EAvBJ;IAwBQ;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EAGA;EACA;EACA;EACA;;AAaA;EA5BJ;IA6BQ;IACA;;;AAIR;EACI;EACA;EAEA;EACA;EACA;EACA;EAEA;EACA;EACA;EACA;EACA;EACA;;AAKA;EACI;;AAGR;EACI;EAEA;;AAGA;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EAII;EACA;EACA;EACA;EACA;;AAKJ;EACI;;AAMhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;EACA;;AAEA;EACI;;AAIZ;EACI;;AAIJ;EACI;EACA;;AAEA;EACI;EACA;;AAEA;EACI;EACA;;AAKA;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AAKhB;EAEI;EACA;EACA;;AAEA;EAEI;EACA;;AAEA;EACI;EACA;;AAKA;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AAKhB;EACI;IACI;;;ACjMR;EAGI;EACA;EAEA,YARQ;EASR;EACA;EJmDA,aAlBa;EAmBb,aAF2B;EAG3B;;AIhDJ;EACI;EACA;EACA;;AAGJ;EJuDI,aA/Ba;EAgCb,aIvDmB;EJwDnB;EK4MI;;AA5JJ;EDzGJ;IC4QQ;;;ADxQJ;EACI;;AAIR;EJ8CI,aA/Ba;EAgCb,aI9CmB;EJ+CnB;EK4MI;;AA5JJ;EDhGJ;ICmQQ;;;AD/PJ;EACI;;AAIR;EJqCI,aA/Ba;EAgCb,aIrCmB;EJsCnB;EK4MI;;AA5JJ;EDvFJ;IC0PQ;;;ADtPJ;EACI;;AAIR;EACI;ECyOI;;AA5JJ;ED9EJ;ICiPQ;;;AD7OJ;EACI;;AAGR;EJoBI,aA/Ba;EAgCb,aAFsB;EAGtB;EK4MI;;AA5JJ;EDtEJ;ICyOQ;;;ADpOR;EAEI;ECuNE,WALI;EDhNN;EAEA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACI;;AAGJ;ECwMQ;;AA5JJ;ED5CJ;IC+MQ;;;AD5MR;EACI;EACA;;AAEA;EACI;;AAIR;EACI;;AAGJ;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIZ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;;AAEA;EACI;;AAIR;EJ7DI,aA/Ba;EAgCb,aAFsB;EAGtB;EK4MI;;AA5JJ;EDWJ;ICwJQ;;;ADnJR;EJlEI,aA/Ba;EAgCb,aAFsB;EAGtB;EK4MI;;AA5JJ;EDgBJ;ICmJQ;;;AD9IR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;AAAA;EAEI;EACA;;AAGJ;AAAA;EAEI;EACA;;AAGJ;AAAA;EAEI;EACA;;AAGJ;EACI;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;;AAIR;EACI;EAEA;EACA;EACA;EACA;;AAIA;AAAA;EAEI;;AAIJ;EACI;;AAGJ;EACI;EACA;EACA;;AAIR;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAGR;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEA;EACI;EACA;;AAIR;EACI;EACA;EAEA,YACI;;AEjPJ;EF4OJ;IASQ;;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;;AAEJ;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAIR;EACI;;AAIR;EACI;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAMA;EACI;;AAOhB;EACI;EACA;EACA;EACA;EACA;;AAIJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAGR;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIA;EACI;;AAIZ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAIJ;EACI;EACA;EACA;EACA;EACA;;AAGR;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;;AAEJ;EACI;;AE9aA;EF6aJ;IAIQ;;;AAEJ;EC1KI;;AA5JJ;EDsUA;ICnKI;;;ADmKJ;EAEI;EACA;EACA;EACA;EACA;;AAGA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EJ5aJ,aAlBa;EAmBb,aI4a4B;EJ3a5B;EKuNE,WALI;;AD4NF;EACI;EACA;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;;AAEJ;EACI;EACA;;AACA;EACI;;AAGJ;EACI;;AAKZ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGR;EACI;;AAEJ;EACI;;AAEJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAKZ;EACI;;AAEA;EACI;EACA;EACA;;AEjhBA;EF8g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EA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;;AAEA;EACI;;AEn3EZ;EF82EI;IASQ;IACA;;EAEA;IACI;;EAGJ;IACI;IACA;;;AAKZ;EACI;EACA;;AAEA;EACI;;AE14EZ;EFq4EI;IASQ;;EAEA;IACI;;;AEj5EhB;EFw5EY;IACI;IACA;;;AE15EhB;EFg6EQ;IACI;IACA;IACA;;EAEA;AAAA;IAEI;IACA;;EAEA;AAAA;AAAA;IACI;;EAIR;IACI;;;AAQxB;EACI;EACA;EACA;EACA;;AAGI;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGR;EACI;EACA;EACA;;AAGJ;EACI;;AAEA;EC/tEF,WALI;;ADwuEN;EACI;;AAEA;EACI;EACA;;AAEA;EACI;;AAMZ;EACI;EACA;;AAEA;EACI;;AAGR;EACI;EACA;EACA;;AAKR;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AErgFA;EFggFJ;IAQQ;;;AAGJ;EACI;;AAMZ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA,KAvjFI;;AEmBR;EFgiFA;IAOQ;;;AAGJ;EACI;EACA;EACA;;AE7iFR;EF0iFI;IAMQ;IACA;;;AAKZ;EACI;;AAGR;EACI;EACA;EACA;EACA;EACA;EACA;EACA,aJviFa;;AIyiFb;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAIR;EACI;;;AGzmFA;EACI;EACA;;AAEJ;EACI;;AAOJ;EACI;EACA;;AAEJ;EACI;EACA;;AAOJ;EACI;EACA;EACA;EACA;;AAMR;EACI;;AAEJ;EACI;;AAKJ;EACI;;AAEA;EACI;;AAGI;EACI;;AAEJ;EACI;EACA;;AAIZ;EACI;EACA;;AAOR;EACI;;AAEJ;AAAA;EAEI;;AAGJ;EACI;EACA;EACA;;AAMA;EACI;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;;AAKR;EACI;;AAGA;EACI;EACA;EACA;EACA;EACA;;AAEJ;EACI;EACA;EACA;;AAOJ;EACI;;;ANtGI;EACI;;;AAOhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA%22,%22file%22:%22bundle.css%22%7D */
