@-webkit-keyframes kv_animation {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@keyframes kv_animation {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes torxfan_animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes torxfan_animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes action {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
  }
}

@keyframes action {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
  }
}

@-webkit-keyframes kv_lightning {
  0% {
    opacity: .5;
  }
  2% {
    opacity: 1;
  }
  4% {
    opacity: .5;
  }
  6% {
    opacity: 1;
  }
  8% {
    opacity: .5;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes kv_lightning {
  0% {
    opacity: .5;
  }
  2% {
    opacity: 1;
  }
  4% {
    opacity: .5;
  }
  6% {
    opacity: 1;
  }
  8% {
    opacity: .5;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes action {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, -5px);
            transform: translate(0, -5px);
  }
}

body {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
  overflow: hidden;
}

#GraphicsCard {
  background: #000;
  color: #fff;
  font-size: 18px;
}

#GraphicsCard h2 {
  font-size: var(--title-sm);
  line-height: 1.6;
}

@media (min-width: 375px) {
  #GraphicsCard h2 {
    font-size: var(--title-md);
  }
}

@media (min-width: 768px) {
  #GraphicsCard h2 {
    font-size: var(--title-xl);
  }
}

#GraphicsCard .kv {
  width: 100%;
  max-width: 2560px;
  margin: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#GraphicsCard .kv::before, #GraphicsCard .kv::after {
  display: none;
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  width: 20%;
  height: 100%;
}

#GraphicsCard .kv::before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#000), color-stop(10%, #0000), to(transparent));
  background: linear-gradient(left, #000 0%, #0000 10%, transparent);
}

#GraphicsCard .kv::after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#000), color-stop(10%, #000), to(transparent));
  background: linear-gradient(right, #000 0%, #000 10%, transparent);
}

#GraphicsCard .kv__bg {
  position: relative;
  width: 100%;
}

#GraphicsCard .kv__bg img {
  width: 100%;
}

#GraphicsCard .kv__txtbox {
  position: absolute;
  bottom: 5%;
  text-align: center;
}

#GraphicsCard .kv__txtbox h2 em {
  font-style: normal;
  background: #7f11be;
  border-radius: 100px;
  padding: 3px 20px;
  margin: 5px 10px;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

#GraphicsCard .kv__txtbox h2 span {
  display: block;
  font-weight: 500;
  font-size: 60%;
  padding-top: 5px;
}

@media (min-width: 768px) {
  #GraphicsCard .kv__txtbox h2 span {
    display: inline-block;
  }
}

@media (min-width: 1300px) {
  #GraphicsCard .kv__txtbox {
    bottom: 8%;
  }
}

@media (min-width: 1930px) {
  #GraphicsCard .kv::before, #GraphicsCard .kv::after {
    display: block;
  }
}

#GraphicsCard .sec2 {
  background: url("https://storage-asset.msi.com/event/2022/tw/202212_GraphicsCard/images/section2-bg.jpg") top center no-repeat;
  background-size: cover;
  padding: 5% 0 10%;
  overflow: hidden;
}

#GraphicsCard .sec2__title {
  margin: auto;
  width: 100%;
}

#GraphicsCard .sec2__title img {
  margin: auto;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

@media (min-width: 768px) {
  #GraphicsCard .sec2__title img {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#GraphicsCard .sec2 .series__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#GraphicsCard .sec2 .series__flex-item {
  width: 100%;
  text-align: center;
}

#GraphicsCard .sec2 .series__flex-item h2::after {
  content: "";
  display: block;
  margin: 10px auto 40px;
  width: 20%;
  height: 3px;
  background: #019cff;
}

#GraphicsCard .sec2 .series__flex-item .morebtn {
  background: #7f11be;
  border-radius: 100px;
  padding: 3px 20px;
  margin: 5px 10px;
  color: #fff;
  font-weight: 700;
  font-size: var(--title-md);
  width: 100%;
  margin: auto;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-animation: action .5s infinite alternate ease-in-out;
          animation: action .5s infinite alternate ease-in-out;
}

#GraphicsCard .sec2 .series__flex-item .morebtn:hover {
  -webkit-filter: drop-shadow(3px 3px 7px rgba(1, 156, 255, 0.7));
          filter: drop-shadow(3px 3px 7px rgba(1, 156, 255, 0.7));
}

#GraphicsCard .sec2 .series__flex-item .shopbtn {
  width: 100%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 5%  0;
}

#GraphicsCard .sec2 .series__flex-item .shopbtn a {
  width: calc( 100%/2 - 5px);
  background: #fff;
  border-radius: 50px;
  margin: 10px 0;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#GraphicsCard .sec2 .series__flex-item .shopbtn a:nth-child(4) {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  font-size: 110%;
  border: 2px solid #019cff;
}

#GraphicsCard .sec2 .series__flex-item .shopbtn a:hover {
  -webkit-filter: drop-shadow(3px 3px 7px rgba(1, 156, 255, 0.7));
          filter: drop-shadow(3px 3px 7px rgba(1, 156, 255, 0.7));
  -webkit-animation: action .5s infinite alternate ease-in-out;
          animation: action .5s infinite alternate ease-in-out;
}

@media (min-width: 996px) {
  #GraphicsCard .sec2 .series__flex-item {
    width: calc( 100%/2 - 50px);
  }
  #GraphicsCard .sec2 .series__flex-item .morebtn {
    background: #7f11be;
    border-radius: 100px;
    padding: 3px 20px;
    margin: 5px 10px;
    color: #fff;
    font-weight: 700;
    width: 40%;
    margin: auto;
  }
  #GraphicsCard .sec2 .series__flex-item .shopbtn {
    width: 75%;
  }
  #GraphicsCard .sec2 .series__flex-item .shopbtn a:nth-child(4) {
    font-size: 140%;
  }
}

#GraphicsCard .sec2 .step {
  padding: 5% 0;
}

#GraphicsCard .sec2 .step__flex {
  max-width: 1280px;
  margin: 5% auto;
}

#GraphicsCard .sec2 .step__flex-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}

#GraphicsCard .sec2 .step__flex-item:not(:last-child) figure::after {
  content: "";
  display: block;
  background: url(https://storage-asset.msi.com/event/2022/tw/202212_GraphicsCard/images/icon-arrow.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 50%;
  right: auto;
  -webkit-transform: translateY(0) translateX(-50%) rotate(90deg);
          transform: translateY(0) translateX(-50%) rotate(90deg);
  width: 10%;
  height: 10%;
  margin-top: 10px;
}

#GraphicsCard .sec2 .step__flex-item figure {
  width: 30%;
  margin: auto;
  text-align: center;
  position: relative;
}

#GraphicsCard .sec2 .step__flex-item figure img {
  margin: 0 auto 30px;
  max-width: 100px;
}

#GraphicsCard .sec2 .step__flex-item figure figcaption {
  background: #019cff;
  color: #000;
  font-weight: 700;
  margin: 10px 0;
  padding: 5px;
  font-size: var(--title-lg);
}

#GraphicsCard .sec2 .step__flex-item ul {
  width: 65%;
}

#GraphicsCard .sec2 .step__flex-item ul li {
  font-size: .9em;
}

#GraphicsCard .sec2 .step__btn {
  text-align: center;
  width: 100%;
  margin: auto;
  background: #7f11be;
  border-radius: 100px;
  padding: 3px 20px;
  margin: 5px 10px;
  color: #fff;
  font-weight: 700;
  font-size: var(--title-xl);
  display: block;
  padding: 10px 20px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  -webkit-animation: action .5s infinite alternate ease-in-out;
          animation: action .5s infinite alternate ease-in-out;
}

#GraphicsCard .sec2 .step__btn:hover {
  -webkit-filter: drop-shadow(3px 3px 7px rgba(1, 156, 255, 0.7));
          filter: drop-shadow(3px 3px 7px rgba(1, 156, 255, 0.7));
}

@media (min-width: 996px) {
  #GraphicsCard .sec2 .step {
    padding: 10% 0;
  }
  #GraphicsCard .sec2 .step__flex {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  #GraphicsCard .sec2 .step__flex-item {
    width: calc(25% - 40px);
    display: block;
  }
  #GraphicsCard .sec2 .step__flex-item:not(:last-child) figure::after {
    position: absolute;
    left: auto;
    right: -40px;
    top: 30%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 15%;
    height: 15%;
    margin-top: 10px;
  }
  #GraphicsCard .sec2 .step__flex-item figure {
    width: 100%;
    margin: auto;
    text-align: center;
    position: relative;
  }
  #GraphicsCard .sec2 .step__flex-item figure img {
    max-width: 150px;
  }
  #GraphicsCard .sec2 .step__flex-item ul {
    width: 100%;
    padding: 20px 0;
  }
  #GraphicsCard .sec2 .step__flex-item ul li {
    padding-bottom: 10px;
  }
  #GraphicsCard .sec2 .step__btn {
    width: 40%;
    max-width: 350px;
    margin: auto;
  }
}

#GraphicsCard .terms {
  padding: 5% 0;
}

#GraphicsCard .terms__title {
  margin: auto;
}

#GraphicsCard .terms__title img {
  margin: auto;
  max-width: 260px;
}

#GraphicsCard .terms__txtbox {
  background: #fff;
  width: 90%;
  margin: auto;
}

#GraphicsCard .terms ul {
  margin-top: -20px;
  margin-left: 20px;
  color: #000;
  padding: 20px 10px;
}

#GraphicsCard .terms ul li {
  list-style: decimal;
  padding: 10px 0 10px 10px;
}

@media (min-width: 996px) {
  #GraphicsCard .terms__title img {
    max-width: auto;
  }
  #GraphicsCard .terms__txtbox {
    width: 100%;
  }
  #GraphicsCard .terms ul {
    padding: 40px;
  }
}
/*# sourceMappingURL=style.css.map */