:root {
  --main-red: #ed1c24;
  --dark-gray: #999999;
  --light-gray: #dbdbdb;
  --black: #00050a;
  --white: #ffffff;
}
@font-face {
  font-family: "Gotham";
  src: url(../font/Gotham-Medium.otf);
}

@font-face {
  font-family: "Gotham_Bold";
  src: url(../font/Gotham-Bold.otf);
}

@font-face {
  font-family: "Gotham_Light";
  src: url(../font/Gotham-Light.otf);
}

.InnerGIGABYTEContent .gradient-text {
  background: linear-gradient(90deg, #2177ca, #08aaf2, #8addfd);
  background-size: 180%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-animation 3s infinite;
}
.InnerGIGABYTEContent .bright-white-gradient-text {
  background: linear-gradient(90deg, #ffffff, #a9a9a9, #ffffff);
  background-size: 180%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-animation 3s infinite;
}

.InnerGIGABYTEContent .green-gradient-text {
  background: linear-gradient(90deg, #00bcfc, #19b4ac, #36b252);
  background-size: 140%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-animation 3s infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* section common style */
.InnerGIGABYTEContent {
  background-color: var(--black);
  font-family: "Gotham";
  position: relative;
  overflow: hidden;
  color: var(--white);
}

/* nav */
.InnerGIGABYTEContent .nav-block {
  position: fixed;
  bottom: 35%;
  right: 2%;
  z-index: 5000;
  display: block;
}

.InnerGIGABYTEContent .nav-block .nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.InnerGIGABYTEContent .nav-block .nav-list__item__link {
  display: flex;
  justify-content: flex-end;
  height: 25px;
  text-decoration: none;
}

.InnerGIGABYTEContent .nav-block .nav-list__item__link span {
  display: none;
  font-family: "Gotham";
  font-size: 12px;
  color: var(--light-gray);
  line-height: 1;
  margin-top: -1px;
}

.InnerGIGABYTEContent .nav-block .nav-list__item__link::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 12px;
  background-color: var(--dark-gray);
  margin-left: 10px;
  transition: all 0.4s;
}

.InnerGIGABYTEContent .nav-block .nav-list__item__link:hover span {
  display: block;
}

.InnerGIGABYTEContent .nav-block .nav-list__item__link:hover::after {
  width: 10px;
  height: 10px;
  background-color: var(--light-gray);
}
/* z-index */
.InnerGIGABYTEContent .s01 *,
.InnerGIGABYTEContent .s02 *,
.InnerGIGABYTEContent .s03 *,
.InnerGIGABYTEContent .s03 *,
.InnerGIGABYTEContent .s06 *,
.InnerGIGABYTEContent .s06 *,
.InnerGIGABYTEContent .s07 *,
.InnerGIGABYTEContent .s08 * {
  z-index: 2;
}
/* s01 landing page */
.InnerGIGABYTEContent .s01 {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.InnerGIGABYTEContent .s01 .s01_bg_video {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.InnerGIGABYTEContent .s01 .s01_subTitle {
  font-family: "Gotham_Light";
  font-size: 2.1rem;
  line-height: 1.3 !important;
  letter-spacing: -0.03rem;
  white-space: nowrap;
}
.InnerGIGABYTEContent .s01 .s01_mainPic {
  width: 30%;
  height: auto;
  object-fit: contain;
}
.InnerGIGABYTEContent .s01_video_1 {
  position: absolute;
  width: 75%;
  top: -45vh;
  right: -40%;
  z-index: 1;
  pointer-events: none;
}
.InnerGIGABYTEContent .s01_video_2 {
  position: absolute;
  width: 50%;
  top: 60vh;
  left: -20%;
  z-index: 1;
  pointer-events: none;
}

.InnerGIGABYTEContent .s02 {
  position: relative;
}
.InnerGIGABYTEContent .s02 .container {
  margin-top: 8rem;
  margin-bottom: 8rem;
  max-width: 800px;
}
.InnerGIGABYTEContent .s02 h3 {
  font-family: "Gotham_Bold";
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.InnerGIGABYTEContent .s02 p {
  font-family: "Gotham_Light";
  font-size: 1.2rem;
  margin-bottom: 4rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}
.InnerGIGABYTEContent .s02 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.InnerGIGABYTEContent .s02 .s02-bg1 {
  width: 150%;
  height: 150%;
  z-index: 0;
  animation: img-rotate 15s infinite;
}
@keyframes img-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.InnerGIGABYTEContent .s02 .s02-bg2 {
  z-index: 1;
}
/* 3 */
.InnerGIGABYTEContent .s03 {
  position: relative;
}
.InnerGIGABYTEContent .s03 .s03-bg {
  width: 150%;
  height: 150%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: img-rotate 15s infinite;
  z-index: 0;
}

.InnerGIGABYTEContent .s03 h2 {
  font-size: 2.5rem;
  font-family: "Gotham_Bold";
}
.InnerGIGABYTEContent .s03 .s03-subtilte {
  font-size: 1.2em;
  margin-bottom: 2rem;
}
.InnerGIGABYTEContent .s03 .tabs {
  margin: 40px auto;
  display: grid !important;
  max-width: calc(var(--count) * 25vw);
  width: 100%;
  grid-template-columns: repeat(var(--count), minmax(0, 1fr));
  background-color: transparent;
  border-radius: 4rem;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.InnerGIGABYTEContent .s03 .tabs:has(.tab:nth-child(1)) {
  --count: 1;
}
.InnerGIGABYTEContent .s03 .tabs:has(.tab:nth-child(2)) {
  --count: 2;
}
.InnerGIGABYTEContent .s03 .tabs:has(.tab:nth-child(3)) {
  --count: 3;
}
.InnerGIGABYTEContent .s03 .tabs:has(.tab:nth-child(4)) {
  --count: 4;
}

.InnerGIGABYTEContent .s03 .tabs::after {
  content: "";
  position: absolute;
  inset: 0px;
  transform: scale(0.94, 0.8);
  --width: calc((100% / var(--count)));
  width: var(--width);
  margin-left: calc(var(--active) * var(--width));
  transition: margin-left 300ms;
  background: linear-gradient(90deg, #0038a6, #008bc9, #00b7fa);
  background-size: 180%;
  z-index: -1;
  border-radius: inherit;
  animation: gradient-animation 3s infinite;
}

.InnerGIGABYTEContent .s03 .tabs:has(.tab:nth-child(1).active) {
  --active: 0;
}

.InnerGIGABYTEContent .s03 .tabs:has(.tab:nth-child(2).active) {
  --active: 1;
}

.InnerGIGABYTEContent .s03 .tabs:has(.tab:nth-child(3).active) {
  --active: 2;
}

.InnerGIGABYTEContent .s03 .tab {
  flex-basis: 200px;
  /* padding: 15px 0; */
  font-size: 1.5rem;
  color: white;
}

.InnerGIGABYTEContent .s03 .nav-tabs .nav-link.active,
.InnerGIGABYTEContent .s03 .nav-tabs .nav-item.show .nav-link {
  color: white;
  background-color: transparent;
  border: 0;
}
.InnerGIGABYTEContent .s03 .nav-tabs .nav-link:hover,
.InnerGIGABYTEContent .s03 .nav-tabs .nav-link:focus {
  border: 1px solid transparent;
}
.InnerGIGABYTEContent .s03 a.nav-link {
  color: var(--dark-gray);
  font-family: "Gotham_Light";
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem !important;
}

.InnerGIGABYTEContent .s03 .nav-tabs {
  border: 1px solid #dee2e6;
}

.InnerGIGABYTEContent .s03 #s03-TabContent {
  min-height: 50vh;
  margin-bottom: 4rem;
}

.InnerGIGABYTEContent .s03 .s03-1card {
  height: 350px;
  padding: 2rem;
}
.InnerGIGABYTEContent .s03 .s03-1card p {
  margin: 0;
}
.InnerGIGABYTEContent .s03 .progressbar {
  width: 0;
  height: 40px;
  transition: width 0.8s ease-in-out;
  border-radius: 4px;
}
.InnerGIGABYTEContent .s03 .s03-progressbar {
  border-left: 1px solid var(--dark-gray);
  border-bottom: 1px solid var(--dark-gray);
  position: relative;
}
.InnerGIGABYTEContent .s03 .s03-progressbar h5 {
  position: absolute;
  right: 0;
  bottom: 3%;
  font-size: 3rem;
  font-family: "Gotham_Bold";
}

.InnerGIGABYTEContent .s03 .s03-2-progressbar .s03-progressbar h5 {
  bottom: 13%;
}

.InnerGIGABYTEContent .s03 .s03-1-progressbar .s03-1-1-progressbar {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  font-size: 1.3rem;
  font-family: "Gotham_Light";
}
.InnerGIGABYTEContent
  .s03
  .s03-1-progressbar
  .s03-1-1-progressbar:nth-child(1) {
  border-bottom: 1px solid transparent;
}
.InnerGIGABYTEContent .s03 .s03-progressbar .progressbar:nth-child(2) {
  background: linear-gradient(90deg, #2177ca, #08aaf2, #8addfd);
  background-size: 180%;
  animation: gradient-animation 3s infinite;
}
.InnerGIGABYTEContent .s03 .s03-1-progressbar {
  height: 15vh;
}
.InnerGIGABYTEContent .s03 .s03-2-progressbar {
  height: 30vh;
}

.InnerGIGABYTEContent .s03 h3 {
  font-family: "Gotham_Bold";
}

.InnerGIGABYTEContent .s03 .s03-tab2-img {
  width: auto;
  height: auto;
}
.InnerGIGABYTEContent .s03 .s03-2h4 {
  display: flex;
  min-height: 15%;
  justify-content: center;
  align-items: center;
  margin-bottom: 0 !important;
}
.InnerGIGABYTEContent .s03 .s03-text {
  font-family: "Gotham_Light";
  line-height: 1.4;
}

.InnerGIGABYTEContent #s03 {
  margin-bottom: 4rem;
}

/* 4 */
.InnerGIGABYTEContent .s04 {
  position: relative;
}
.InnerGIGABYTEContent .s04 .s04-bg {
  width: 150%;
  height: 150%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: img-rotate 15s infinite;
  z-index: 0;
}
.InnerGIGABYTEContent .collection {
  height: 75vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.InnerGIGABYTEContent .collection .content {
  height: 28rem;
  width: 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.InnerGIGABYTEContent .content img {
  width: 100%;
  height: 30%;
  object-fit: contain;
  margin-bottom: 3rem;
  overflow: auto;
}
.InnerGIGABYTEContent .text-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.InnerGIGABYTEContent .text-content h3 {
  font-size: 2.1rem;
  margin-bottom: 2rem;
}
.InnerGIGABYTEContent .text-content p {
  font-family: "Gotham_Light";
  max-width: 22rem;
  font-size: 1rem;
  line-height: 2;
}
.InnerGIGABYTEContent .text-content span {
  font-family: "Gotham_Light";
  max-width: 22rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 2;
}
.InnerGIGABYTEContent .s04 .s04-swiper .swiper-button-prev,
.InnerGIGABYTEContent .s04 .s04-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.InnerGIGABYTEContent .s04 .s04-swiper .swiper-button-prev {
  left: calc(50% - 12rem);
}

.InnerGIGABYTEContent .s04 .s04-swiper .swiper-button-next {
  left: calc(50% + 12rem);
}

.InnerGIGABYTEContent .s04 .s04-swiper .swiper-button-prev::after {
  color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../innergigabyteimages/s04-carousel-prev.svg");
}
.InnerGIGABYTEContent .s04 .s04-swiper .swiper-button-next::after {
  color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../innergigabyteimages/s04-carousel-next.svg");
}
/* 5 */
.InnerGIGABYTEContent .s05 .s05-text {
  font-family: "Gotham_Light";
  line-height: 1.4;
}
.InnerGIGABYTEContent #s05 {
  margin-bottom: 8rem;
}
.InnerGIGABYTEContent .s05 .s05-video {
  width: 100%;
  height: auto;
}
/* 6 */
.InnerGIGABYTEContent .s06 {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.InnerGIGABYTEContent .s06 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.InnerGIGABYTEContent .s06 .s06-mainPic1 {
  width: 100%;
  height: 50vh;
  object-fit: contain;
  position: relative;
}
.InnerGIGABYTEContent .s06 .s06-mainPic {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  z-index: 1;
}
.InnerGIGABYTEContent .s06 .s06-mainPic:last-child {
  z-index: 0;
}

.InnerGIGABYTEContent .s06 .s06-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.InnerGIGABYTEContent .s07 {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.InnerGIGABYTEContent .s07 h2 {
  font-size: 2.5rem;
  font-family: "Gotham_Bold";
}
.InnerGIGABYTEContent .s07 .s07_mainPic {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}
.InnerGIGABYTEContent .s07 .s07_picMain {
  position: relative;
}
.InnerGIGABYTEContent .s07 .s07_mainPic2 {
  position: absolute;
  left: 39%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300%;
  height: 300%;
  object-fit: contain;
  z-index: 0;
}
.InnerGIGABYTEContent .s07 .s07-text {
  font-family: "Gotham_Light";
  font-size: 1.2rem;
  line-height: 1.5;
}
.InnerGIGABYTEContent .s07 .s07-text li:not(:last-child) {
  margin-bottom: 16px;
}
.InnerGIGABYTEContent .s08 h2 {
  font-size: 2.5rem;
  font-family: "Gotham_Bold";
}
.InnerGIGABYTEContent .s08 .s08-subtilte {
  font-size: 1.2em;
  margin-bottom: 5rem;
}
.InnerGIGABYTEContent .s08 .s08-text {
  font-family: "Gotham_Light";
  margin-bottom: 5rem;
  line-height: 1.5;
}
.InnerGIGABYTEContent .s08 .s08-pic-area1 {
  position: relative;
  width: 100%;
  height: 500px;
}
.InnerGIGABYTEContent .s08 .s08-pic-area1-pic {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.InnerGIGABYTEContent .s08 .s08-bg {
  width: 400%;
  height: 400%;
}
.InnerGIGABYTEContent .s09 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15rem;
  margin-bottom: 15rem;
}
.InnerGIGABYTEContent .s09 h2 {
  font-size: 2.5rem;
  font-family: "Gotham_Bold";
}
.InnerGIGABYTEContent .s09 .s09_mainPic {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}
.InnerGIGABYTEContent .s09 .s09_picMain {
  position: relative;
}
.InnerGIGABYTEContent .s09 .s09_mainPic2 {
  position: absolute;
  left: 39%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300%;
  height: 300%;
  object-fit: contain;
  z-index: 0;
}
.InnerGIGABYTEContent .s09 .s09-text {
  font-family: "Gotham_Light";
  font-size: 1.2rem;
  line-height: 1.5;
}
.InnerGIGABYTEContent .s09 .s09-text li:not(:last-child) {
  margin-bottom: 16px;
}
.InnerGIGABYTEContent .s10 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8rem;
  margin-bottom: 8rem;
}
.InnerGIGABYTEContent .s10 h2 {
  font-size: 2.5rem;
  font-family: "Gotham_Bold";
}
.InnerGIGABYTEContent .s10 .s10_mainPic {
  position: absolute;
  width: 200%;
  right: -100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
}
.InnerGIGABYTEContent .s10 .s10_picMain {
  position: relative;
}
.InnerGIGABYTEContent .s10 .s10_mainPic2 {
  position: absolute;
  left: 39%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300%;
  height: 300%;
  object-fit: contain;
  z-index: 0;
}
.InnerGIGABYTEContent .s10 .s10-text {
  font-family: "Gotham_Light";
  font-size: 1.2rem;
  line-height: 1.5;
}
.InnerGIGABYTEContent .s10 .s10-text li:not(:last-child) {
  margin-bottom: 16px;
}
.InnerGIGABYTEContent .s11 {
  width: 100%;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.InnerGIGABYTEContent .s11 h2 {
  font-size: 2.5rem;
  line-height: 1.5;
  font-family: "Gotham_Bold";
  z-index: 1;
}
.InnerGIGABYTEContent .s11 .s11-pic {
  position: absolute;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  bottom: 0;
}
@media (min-width: 1200px) {
  .InnerGIGABYTEContent .s07 .container {
    max-width: 1400px;
  }
}
@media screen and (max-width: 768px) {
  .InnerGIGABYTEContent .s01 .s01_subTitle {
    font-size: 1rem;
  }
  .InnerGIGABYTEContent .s01_mainTitle img {
    width: 80%;
  }
  .InnerGIGABYTEContent .s01 .s01_mainPic {
    width: 80%;
  }
  .InnerGIGABYTEContent .s01_video_1 {
    width: 150%;
    top: -15vh;
    right: -100%;
    display: block;
    background-color: transparent;
  }
  .InnerGIGABYTEContent .s01_video_2 {
    position: absolute;
    width: 130%;
    top: 80vh;
    left: -60%;
    display: block;
    background-color: transparent;
  }
  .InnerGIGABYTEContent .s02 img {
    object-fit: cover;
  }
  .InnerGIGABYTEContent .s02 .s02-bg1 {
    width: 500%;
  }
  .InnerGIGABYTEContent .s02 .container {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .InnerGIGABYTEContent .s03 .tabs {
    max-width: calc(var(--count) * 45vw);
  }
  .InnerGIGABYTEContent .s03 .tab {
    flex-basis: 200px;
    /* padding: 8px 0; */
    font-size: 0.8rem;
    color: white;
  }
  .InnerGIGABYTEContent .s03 .s03-1-1-progressbar div {
    font-size: 0.8rem;
  }
  .InnerGIGABYTEContent .s03 .s03-progressbar h5 {
    font-size: 1.2rem;
    bottom: 8%;
  }
  .InnerGIGABYTEContent .s03 .s03-1-1-progressbar:nth-child(1) {
    padding-left: 0;
  }
  .InnerGIGABYTEContent .s03 h2 {
    font-size: 1.8rem;
  }
  .InnerGIGABYTEContent .s02 h3 {
    font-size: 1.8rem;
  }
  .InnerGIGABYTEContent #s03 {
    margin-bottom: 3rem;
  }
  .InnerGIGABYTEContent .s03 .s03-2-progressbar .s03-progressbar h5 {
    bottom: 18%;
  }
  .InnerGIGABYTEContent .content img {
    width: 50%;
    height: 30%;
    margin-bottom: 1rem;
  }
  .InnerGIGABYTEContent .s06 {
    height: 40vh;
  }
  .InnerGIGABYTEContent .s06 .s06-bg {
    top: 70%;
  }
  .InnerGIGABYTEContent .collection {
    height: 50vh;
  }
  .InnerGIGABYTEContent .s06 .s06-mainPic1 {
    height: 200px;
  }
  .InnerGIGABYTEContent .s07 .s07_mainPic {
    margin-left: 0;
  }
  .InnerGIGABYTEContent .s07 .s07_mainPic2 {
    left: 50%;
  }
  .InnerGIGABYTEContent .s07 .s07_picMain {
    margin-bottom: 4rem;
  }
  .InnerGIGABYTEContent .s08 .s08-pic-area1 {
    height: 300px;
  }
  .InnerGIGABYTEContent .s09 {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
  .InnerGIGABYTEContent .s09 .s09_mainPic {
    margin-left: 0;
  }
  .InnerGIGABYTEContent .s09 .s09_mainPic2 {
    left: 50%;
  }
  .InnerGIGABYTEContent .s09 .s09_picMain {
    margin-bottom: 4rem;
  }
  .InnerGIGABYTEContent .s10 .s10_mainPic {
    margin-left: 0;
  }
  .InnerGIGABYTEContent .s10 .s10_mainPic2 {
    left: 50%;
  }
  .InnerGIGABYTEContent .s10 .s10_picMain {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .InnerGIGABYTEContent .s10 .s10_mainPic {
    position: relative;
    width: 100%;
    right: 0;
    height: 100%;
    object-fit: contain;
    z-index: 1;
  }
  .InnerGIGABYTEContent .s10 .s10_mainPic2 {
    position: absolute;
    width: 200%;
    height: 200%;
  }
  .InnerGIGABYTEContent .s11 {
    height: 40vh;
  }
}

