.msiHeader__nav {
  position: relative;
  z-index: 100;
  background: #fff;
}

.cny-promotion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* background: #6f97bd */
  /* height: 100vh; */
}

.cny-promotion .bgmove {
  position: fixed;
  height: 100vh;
  width: 400%;
  background: url("https://storage-asset.msi.com/event/2024/CND/huat-with-us/images/bg.jpg");
  background-position: center center;
  background-size: auto 100%;
  -webkit-animation: background-move 90s infinite;
  animation: background-move 90s infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  top: 0;
}

@-webkit-keyframes background-move {
  from {
    -webkit-transform: translate(30%, 0);
    transform: translate(30%, 0);
  }

  to {
    -webkit-transform: translate(-33%, 0);
    transform: translate(-33%, 0);
  }
}

@keyframes background-move {
  from {
    -webkit-transform: translate(30%, 0);
    transform: translate(30%, 0);
  }

  to {
    -webkit-transform: translate(-33%, 0);
    transform: translate(-33%, 0);
  }
}

.cny-promotion .mainWrap {
  position: relative;
  padding: 3% 0;
  width: 100%;
}

.cny-promotion .kv {
  position: relative;
}

.cny-promotion .kv::before {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.4)), to(transparent));
  background: linear-gradient(to top, rgba(255, 255, 255, 0.4), transparent);
  height: 35vw;
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
}

.cny-promotion .kv h2 {
  color: #90641d;
  font-size: 48px;
  font-weight: bold;
}

@media (min-width: 996px) {
  .cny-promotion .kv h2 {
    font-size: 120px;
  }
}

.cny-promotion .kv h3 {
  color: #19232d;
  text-transform: uppercase;
  font-weight: bold;
  font-size: var(--title-xl);
  position: relative;
}

.cny-promotion .kv h3::before {
  background: #a97e3a;
  height: 3px;
  content: "";
  width: 50%;
  position: absolute;
  bottom: -1.3vw;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.cny-promotion .kv h4 {
  color: #785825;
  font-weight: bold;
  text-transform: uppercase;
  margin: 2.5vw auto;
}

@media (min-width: 996px) {
  .cny-promotion .kv h4 {
    font-size: var(--block-title-xl);
  }
}

.cny-promotion .kv__title {
  text-align: center;
}

.cny-promotion .kv__title span {
  color: #ff0000;
}

.cny-promotion .giftbox {
  background: #fcf3c4;
  padding: 3% 0 2%;
}

.cny-promotion .giftbox__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 996px) {
  .cny-promotion .giftbox__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.cny-promotion .giftbox__flex h3 {
  color: #000;
  font-weight: bold;
  font-size: var(--title-xl);
  text-transform: uppercase;
  text-align: center;
}

.cny-promotion .giftbox__txt {
  margin-bottom: 35px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.cny-promotion .giftbox__gift {
  position: relative;
  width: 80%;
  margin: 0 auto;
}

@media (min-width: 996px) {
  .cny-promotion .giftbox__gift {
    width: auto;
  }
}

.cny-promotion .giftbox__gift--object {
  position: absolute;
  top: 0;
}

.cny-promotion .giftbox__gift--object.object01 {
  top: -15px;
  -webkit-animation: gift2Ani 1s infinite alternate;
  animation: gift2Ani 1s infinite alternate;
}

@-webkit-keyframes gift2Ani {
  from {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes gift2Ani {
  from {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.cny-promotion .giftbox__gift--object.object02 {
  -webkit-animation: giftAni 1s infinite alternate;
  animation: giftAni 1s infinite alternate;
}

@-webkit-keyframes giftAni {
  from {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes giftAni {
  from {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.cny-promotion .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 9% 0;
  gap: 30px;
}

.cny-promotion .tab__item {
  position: relative;
  -webkit-filter: drop-shadow(3px 3px 5px #745613);
  filter: drop-shadow(3px 3px 5px #745613);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  overflow: hidden;
  border-radius: 50px;
}

@media (min-width: 996px) {
  .cny-promotion .tab__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 31%;
    flex: 0 0 31%;
  }
}

.cny-promotion .tab__item img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: 75% center;
  transform-origin: 75% center;
}

.cny-promotion .tab__item:hover img {
  -webkit-transform: scale(1.07);
  transform: scale(1.07);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.cny-promotion .tab__item span {
  position: absolute;
  font-size: var(--title-lg);
  text-transform: uppercase;
  left: 0;
  /* width: 35%; */
  color: #fff;
  font-weight: bold;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10%;
}

.cny-promotion .common__subtitle {
  color: #fff;
  font-weight: bold;
  font-size: var(--title-xl);
  text-transform: uppercase;
  text-align: center;
}

.cny-promotion .common__btns {
  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;
  margin-top: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 996px) {
  .cny-promotion .common__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.cny-promotion .common__btns a {
  border-radius: 10px;
  display: block;
  color: #0e347c;
  cursor: pointer;
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  background: #cbcbcb;
  font-size: var(--text-lg);
  text-decoration: none;
}

.cny-promotion .common__btns a:hover {
  background: #cbcbcbbe;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  color: #fff;
}

.cny-promotion .pdbox {
  position: relative;
  margin-bottom: 10%;
  background: #fff;
  border-radius: 30px;
  margin-top: 80px;
}

.cny-promotion .pdbox__list {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cny-promotion .pdbox__list .pdCard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 996px) {
  .cny-promotion .pdbox__list .pdCard {
    width: calc(33.3333333333% - 30px);
  }
}

@media (min-width: 996px) {
  .cny-promotion .pdbox__list .pdCard.wrap-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2%;
  }

  .cny-promotion .pdbox__list .pdCard.wrap-row .pdCard__img {
    width: 40%;
    margin: 0;
  }

  .cny-promotion .pdbox__list .pdCard.wrap-row .pdCard__text {
    width: 30%;
  }
}




.cny-promotion .pdbox__list .pdCard__img {
  position: relative;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .cny-promotion .pdbox__list .pdCard__img {
    width: 70%;
  }
}

@media (min-width: 996px) {
  .cny-promotion .pdbox__list .pdCard__img {
    width: 100%;
  }
}

.cny-promotion .pdbox__list .pdCard__img--sticker {
  position: absolute;
  width: 25%;
  top: -5%;
  right: 0;
}

.cny-promotion .pdbox__list .pdCard__text {
  position: relative;
}

.cny-promotion .pdbox__list .pdCard h3 {
  padding-bottom: 10px;
}

.cny-promotion .pdbox__list .pdCard h3 span {
  font-size: var(--text-sm);
}

.cny-promotion .pdbox__list .pdCard ul {
  margin-left: 20px;
}

.cny-promotion .pdbox__list .pdCard ul li {
  list-style: disc;
}

.cny-promotion .pdbox__list .pdCard .now {
  border-left: #222 1px solid;
  margin-left: 20px;
  padding-left: 20px;
  color: red;
  font-size: 120%;
}

.cny-promotion .pdbox__list .pdCard .now p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cny-promotion .pdbox__list .pdCard .now b {
  font-size: 220%;
  margin-left: 10px;
}

.cny-promotion .pdbox__list .pdCard .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
}

.cny-promotion .pdbox__title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
}

.cny-promotion .pdbox__title h3 {
  background: -webkit-gradient(linear, left top, left bottom, from(#fb0000), to(#d20000));
  background: linear-gradient(to bottom, #fb0000, #d20000);
  border-radius: 30px;
  border: 5px solid #ffd065;
  background-size: contain;
  color: #fff;
  position: relative;
  text-transform: uppercase;
  padding: 15px 60px;
}

@media (min-width: 996px) {
  .cny-promotion .pdbox__title h3 {
    font-size: var(--title-xl);
  }
}

.cny-promotion .pdbox__title::before {
  max-width: 100px;
  width: 20%;
  background: url(https://storage-asset.msi.com/event/2024/CND/huat-with-us/images/title-left.png) no-repeat right;
  content: "";
  background-size: contain;
  margin-right: -55px;
  position: relative;
  z-index: 2;
}

.cny-promotion .pdbox__title::after {
  max-width: 100px;
  width: 20%;
  background: url("https://storage-asset.msi.com/event/2024/CND/huat-with-us/images/title-right.png") no-repeat left;
  content: "";
  background-size: contain;
  margin-left: -55px;
  position: relative;
  z-index: 2;
}

.cny-promotion .shopbtn {
  text-align: center;
}

.cny-promotion .shopbtn a {
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  font-size: var(--title-lg);
  z-index: 2;
  border-radius: 5px;
  background: #f00;
  padding: 5px 15px;
  display: inline-block;
  margin: 3% auto;
}

.cny-promotion .shopbtn a::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  background: url(https://asset-account.msi.com/rewards/images/light.png) no-repeat center;
  background-size: 200%;
  left: 0;
  mix-blend-mode: lighten;
}

.cny-promotion .shopbtn a:hover::after {
  -webkit-animation: bglight 2s;
  animation: bglight 2s;
}

@-webkit-keyframes bglight {
  0% {
    background-position: 40% 100%;
  }

  50% {
    background-position: 170% 100%;
  }

  100% {
    background-position: 200% 100%;
  }
}

@keyframes bglight {
  0% {
    background-position: 40% 100%;
  }

  50% {
    background-position: 170% 100%;
  }

  100% {
    background-position: 200% 100%;
  }
}

.redeem-bg {
    background: #0e347c;
}

.cny-promotion .redeem {
  padding-top: 12%;
  padding-bottom: 12%;
  position: relative;
  /* background: url(https://storage-asset.msi.com/event/2024/CND/huat-with-us/images/bg-red.jpg) repeat; */
  overflow: hidden;
}

@media (min-width: 1300px) {
  .cny-promotion .redeem {
    padding-top: 8%;
    padding-bottom: 8%;
  }
}

.cny-promotion .redeem .common__subtitle {
  color: white;
}

.cny-promotion .redeem__flower {
  position: absolute;
  right: 0%;
  top: 0;
}

.cny-promotion .redeem__lantern {
  width: 15%;
  max-width: 250px;
  left: 0;
  top: -20px;
  position: absolute;
  -webkit-animation: lanternAni 3s linear infinite alternate;
  animation: lanternAni 3s linear infinite alternate;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}

@-webkit-keyframes lanternAni {
  0% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }

  100% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
}

@keyframes lanternAni {
  0% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }

  100% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
}

@media (min-width: 996px) {
  .cny-promotion .redeem a {
    width: calc(40% - 20px);
  }
}

.cny-promotion .redeem__block {
  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;
  padding: 5% 0;
  text-align: center;
  padding: 5% 0;
  justify-content: center;
  aligniems: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 996px) {
  .cny-promotion .redeem__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.cny-promotion .redeem__block-item {
  width: calc(80% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-bottom: 1px solid #fee5aa;
  padding: 1% 0;
}

@media (min-width: 996px) {
  .cny-promotion .redeem__block-item {
    width: calc(33.3333333333% - 20px);
    padding: 0 1%;
    border-right: 1px solid #dc8b65;
    border-bottom: 0;
  }
}

.cny-promotion .redeem__block-item img {
  width: 17vw;
  margin-bottom: 20px;
}

@media (min-width: 996px) {
  .cny-promotion .redeem__block-item img {
    width: 25%;
  }
}

.cny-promotion .redeem__block-item:nth-last-of-type(1) {
  border: 0;
}

.cny-promotion .redeem__block-item h4 {
  color: #01abff;
  font-size: 20px;
  margin-bottom: 0.1em;
  line-height: 1.5em;
  font-weight: bold;
}

.cny-promotion .redeem__block-item p {
  font-size: 16px;
  margin-bottom: 1em;
  line-height: 1.5em;
  color: #eee;
}

.cny-promotion .shop {
  padding: 12% 0;
}

.cny-promotion .shop .wtbitem img {
    width: auto;
    margin: 0 auto;
}
/*# sourceMappingURL=main-sg.css.map */