@keyframes hue-rotate {
  from {
    -webkit-filter: hue-rotate(0);
    -moz-filter: hue-rotate(0);
    -ms-filter: hue-rotate(0);
    filter: hue-rotate(0);
  }

  to {
    -webkit-filter: hue-rotate(360deg);
    -moz-filter: hue-rotate(360deg);
    -ms-filter: hue-rotate(360deg);
    filter: hue-rotate(360deg);
  }
}

@keyframes glowing-button {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

.kv {
  position: relative;
  overflow: hidden;
  background: url("https://storage-asset.msi.com/event/2024/TH/full-moon-fest-deal/images/kv-bg.jpg") no-repeat #000 top center;
  background-size: cover;
  overflow: hidden;

}

.kv::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, rgba(30, 87, 153, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

.kv img {
  width: 100%;
}

.kv__box {
  position: relative;
  z-index: 2;
}

.kv__title {
  visibility: hidden;
  margin: 5% auto;
  position: relative;
  z-index: 1;

}

@media (min-width: 996px) {
  .kv__title {
    width: 50%;
    max-width: none;
    position: relative;
  }

}

.kv h1 {
  text-indent: -9999px;
  margin: 0;
  padding: 0;
  line-height: 0;
}



.kv__text {
  /* position: relative;
  width: 60%;
  margin: auto;
  z-index: 1; */

}

.kv__text {
  position: absolute;
  bottom: 11%;
  left: 4%;
  width: 25%;
  z-index: 2;
}

.kv__box .kv__title {
  width: 70%;
}

.kv__bundleBox {
  /* position: relative;
  width: 90%;
  margin: auto;
  z-index: 1; */
}

.kv__bundleBox {
  position: absolute;
  bottom: 7%;
  right: 5%;
  width: 15%;
  z-index: 2;
}

.kv__discountBox {
  /* position: relative;
  width: 90%;
  margin: auto;
  z-index: 1; */
}

.kv__discountBox {
  position: absolute;
  top: 21%;
  right: 5%;
  width: 15%;
}

@media (min-width: 996px) {

  .kv__bundleBox {
    position: absolute;
    bottom: 7%;
    right: 5%;
    width: 15%;
  }

  .kv__discountBox {
    position: absolute;
    top: 12%;
    right: 5%;
    width: 15%;
  }


  .kv__text {
    position: absolute;
    bottom: 11%;
    left: 4%;
    width: 25%;
    z-index: 2;
  }
}

.kv__text img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(2px 1px 2px #fff);
}

.kv__text .base {
  -webkit-mask: url("https://storage-asset.msi.com/event/2024/TH/full-moon-fest-deal/images/kv-price.png") center center no-repeat;
  mask: url("https://storage-asset.msi.com/event/2024/TH/full-moon-fest-deal/images/kv-price.png") center center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.kv__bundleBox .base {
  -webkit-mask: url("https://storage-asset.msi.com/event/2024/TH/full-moon-fest-deal/images/kv-redeem.png") center center no-repeat;
  mask: url("https://storage-asset.msi.com/event/2024/TH/full-moon-fest-deal/images/kv-redeem.png") center center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.kv__text .base::before {
  content: "";
  position: absolute;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  width: 100%;
  height: 100%;
  animation: 4s textLight infinite linear;
}

.kv__bundleBox .base::before {
  content: "";
  position: absolute;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  width: 100%;
  height: 100%;
  animation: 4s textLight infinite linear;
}



.kv__pds {
  position: relative;
  visibility: hidden;
  margin-top: -12%;
}

@media (min-width: 996px) {
  .kv__pds {
    width: 65%;
    margin: -10% auto 0;

  }
}

.kv__pds .kv-pd-base {
  position: relative;
  z-index: 1;
}

.project .intro {
  position: relative;
  background: #000;
}

@media (min-width: 996px) {
  .project .intro {
    padding: 5% 0 0;
  }
}

.project .intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(#080b18), to(transparent));
  background: linear-gradient(#080b18, transparent);
  z-index: 0;
}

@media (min-width: 996px) {
  .project .intro::before {
    background: none;
  }
}

.project .intro::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
  background: linear-gradient(transparent, #000);
  z-index: 0;
}

@media (min-width: 1930px) {
  .project .intro::after {
    height: 300px;
  }
}

.project .btns {
  padding: 2% 0 0;
  position: relative;
  z-index: 50;
  text-align: center;
}

.project .btns .note {
  padding-bottom: 30px;
}

@media (min-width: 996px) {
  .project .btns__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.project .btns__wrapper-item {
  width: 90%;
  padding: 10px auto;
  border-radius: 5px;
  border: 1px solid #fff;
  color: #fff;
  margin: 5px;
  font-weight: bold;
  line-height: 1.5em;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-align: center;
}

@media (min-width: 996px) {
  .project .btns__wrapper-item {
    width: 50%;
    padding: 10px 35px;
  }
}

.project .btns__wrapper-item:hover {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
}

@keyframes textLight {
  0% {
    left: -100%;
  }

  70% {
    left: -100%;
  }

  71% {
    left: -100%;
  }

  72% {
    left: -100%;
  }

  73% {
    left: -100%;
  }

  74% {
    left: - 100%;
  }

  75% {
    left: -100%;
  }

  76% {
    left: -100%;
  }

  77% {
    left: -100%;
  }

  78% {
    left: -100%;
  }

  79% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}


.mainBody {
  position: relative;
  width: 100%;
  padding: 5% 0;
  overflow: hidden;
  background-color: #000;
}


.mainarea {}

.mainarea {
  position: relative;
  width: 100%;
  width: 84%;
  margin: 0 auto;
  max-width: 1680px;

}

.contentBg {
  position: relative;
  padding: 45px 25px;
  border-radius: 100px;
  background: linear-gradient(80deg, #3494E6 0%, #c39efd 100%)
}

.mainarea::after {
  content: "";
  border-radius: 100px;
  background: linear-gradient(45deg,
      #002bff,
      #7a00ff,
      #ff00c8);
  position: absolute;
  top: -3px;
  left: -3px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  -webkit-filter: blur(5px);
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  animation: glowing-button 20s linear infinite;
  transition: opacity 0.3s ease-in-out;
}

.mainarea-topline {
  width: 84%;
  margin: 0 auto;
  max-width: 1680px;
  height: 50px;
  background: url("../images/line.png") left bottom repeat-x;
  filter: drop-shadow(#333 0 0 30px);
}

.mainarea-bottomline {
  width: 84%;
  margin: 0 auto;
  max-width: 1680px;
  height: 50px;
  background: url("../images/line.png") left bottom repeat-x;
  filter: drop-shadow(#333 0 -80px 30px);
  transform: rotate(180deg);
  padding-bottom: 100px;
}

.shopsp {
  margin-top: 60px;
}

@media (min-width: 996px) {
  .redeem__flex {
    display: flex;
    width: 100%;
    margin: 0 auto;
    max-width: 1000px;
  }
}

.redeem__item {
  flex: 1;
  text-align: center;
}

.redeem__item--title {
  padding-bottom: 20px;
}

.redeem__item--title span {
  background: linear-gradient(45deg, rgba(129, 85, 32, 0.5), rgba(211, 177, 120, 0.5));
  display: inline-block;
  padding: 10px 25px;
}

.redeem figure {
  text-align: center;
}

.redeem figure img {
  max-width: 250px;
  margin: 0 auto 20px;
}

.redeem__arrow {
  margin: 20% 30px 0;
  text-align: center;
}

.redeem__arrow img {
  width: 40px;
  transform: rotate(90deg);
}

@media (min-width: 996px) {
  .redeem__arrow img {
    transform: rotate(0deg);
  }
}

.redeem__btnBox {
  padding-top: 50px;
  text-align: center;
}

@media (min-width: 996px) {
  .redeem__btnBox {
    display: flex;
    justify-content: center;
  }
}

.redeem__btnBox--btn {
  display: block;
  border: #333399 1px solid;
  color: #333399;
  width: 100%;
  padding: 15px;
  margin-bottom: 5px;
  position: relative;
  border-radius: 60px;
  overflow: hidden;
}

.redeem__btnBox--btn::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  top: -5px;
  left: 5px;
  background: #333399;
  transition: 0.5s all ease-in-out;
}

.redeem__btnBox--btn::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  bottom: -5px;
  right: 5px;
  background: #333399;
  transition: 0.5s all ease-in-out;
}

.redeem__btnBox--btn span {
  position: relative;
  z-index: 5;
  display: block;
}

.redeem__btnBox--btn:hover span {
  transform: scale(1.1);
  font-weight: bold;
  color: #fff;
}

.redeem__btnBox--btn:hover::before,
.redeem__btnBox--btn:hover::after {
  width: 100%;
  height: 100%;
  background: #333399;
}

@media (min-width: 996px) {
  .redeem__btnBox--btn {
    padding: 25px 45px;
    cursor: pointer;
    margin: 0 5px;
    max-width: 300px;
  }
}

.text--note {
  text-align: center;
  padding-top: 50px;
}

.project {
  position: relative;
  color: #222;

}

@media (min-width: 996px) {
  .project {}
}

.project img {
  max-width: 100%;
  vertical-align: bottom;
}

.project picture {
  display: block;
}

.project .common__title {
  font-size: 36px;
}

.project .common__btnwrap {
  text-align: center;
  padding: 25px;
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}

@media (min-width: 996px) {
  .project .common__btnwrap {
    display: flex;
    justify-content: center;
  }
}

.project .btn {
  display: block;
  border: #ffffff 1px solid;
  color: #ffffff;
  width: 100%;
  padding: 15px;
  margin-bottom: 5px;
  position: relative;
  border-radius: 60px;
  overflow: hidden;
}

.project .btn::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  top: -5px;
  left: 5px;
  background: #333399;
  transition: 0.5s all ease-in-out;
}

.project .btn::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 10px;
  height: 10px;
  bottom: -5px;
  right: 5px;
  background: #333399;
  transition: 0.5s all ease-in-out;
}

.project .btn span {
  position: relative;
  z-index: 5;
  display: block;
}

.project .btn:hover span {
  transform: scale(1.1);
  font-weight: bold;
  color: #fff;
}

.project .btn:hover::before,
.project .btn:hover::after {
  width: 100%;
  height: 100%;
  background: #333399;
}

@media (min-width: 996px) {
  .project .btn {
    padding: 25px 45px;
    cursor: pointer;
    margin: 0 5px;
    max-width: 1000px;
  }
}