@charset "UTF-8";
@import url("https://use.typekit.net/pvp1dzx.css");

@-webkit-keyframes kvLight {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes kvLight {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}
@keyframes fly {
  0%,
  25% {
    transform: translate(0, 0);
  }
  40% {
    transform: translate(50px, -20px);
  }
  55% {
    transform: translate(100px, 0);
  }
  70% {
    transform: translate(50px, 20px);
  }
  85%,
  100% {
    transform: translate(0, 0);
  }
}
.project {
  color: #fff;
  position: relative;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(140, 182, 198, 0)),
    color-stop(1%, rgba(140, 182, 198, 0.01)),
    to(rgb(114 192 196))
  );
  background: linear-gradient(
    to top,
    rgba(140, 182, 198, 0) 0%,
    rgb(114 192 196) 40%
  );
}
.project .redeemarea {
  position: relative;
  padding: 5% 0 5%;
  background: #96bdba;
}


.project .redeemarea h6 {
  font-size: 5.5vw;
  line-height: 1.2em;
  color: #1a4347;
  text-align: center;
  letter-spacing: 2px;
}
@media (min-width: 996px) {
  .project {
  }
  .project .redeemarea h6 {
    font-size: 2.1vw;
    padding: 0 25px;
  }
}

@media (min-width: 996px) {
    .project .redeemarea::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(/images/redeem-bg.jpg);
        background-position: top;
        background-size: 100%;
        background-repeat: no-repeat;
        z-index: 0;
    }
}

@media (min-width: 1930px) {
  .project .redeemarea {
    padding: 5% 0;
  }
  .project .redeemarea h6 {
    font-size: 1.7vw;
  }
}

.project .redeemarea__line {
  width: 30%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .project .redeemarea__line {
    width: 80%;
  }
}

.project .redeemarea__boxa {
  position: relative;
  margin-top: 20px;
}
.project .redeemarea__p1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 991px) {
  .project .redeemarea__p1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.project .redeemarea__p1.active {
  position: relative;
  pointer-events: auto;
  opacity: 1;
  margin: 3% auto 5px;
}
.project .redeemarea__p1-item {
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 5%;
}
@media screen and (max-width: 995px) {
  .project .redeemarea__p1-item {
    width: 100%;
    margin: 3% auto;
  }
}
.project .redeemarea__p1-title {
  font-size: 24px;
  margin-bottom: 1em;
  line-height: 1.5em;
  color: #1a4347;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 996px) {
  .project .redeemarea__p1-title {
    font-size: 22px;
  }
}
.project .redeemarea__p1-title::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: 8px solid;
  border-color: transparent transparent transparent #ffffff;
}
.project .redeemarea__p1-p {
  font-size: 1.5rem;
  margin-bottom: 1em;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
/* @media (min-width: 996px) {
  .project .redeemarea__p1-p {
    font-size: 1.5rem;
  }
} */

.project .redeemarea__redbtn {
  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;
}
.project .redeemarea__redbtn a {
  background: #0b9fc1;
  background-size: 100% 100%;
  color: #fff;
  font-size: 28px;
  margin-bottom: 1em;
  line-height: 1.5em;
  font-weight: 900;
  padding: 7px 35px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 10px 0 #0b9fc1;
  box-shadow: 0 0 10px 0 #0b9fc1;
  margin-top: 40px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1600px) {
  .project .redeemarea__redbtn a {
    font-size: 26px;
  }
}
@media (max-width: 1600px) and (max-width: 1300px) {
  .project .redeemarea__redbtn a {
    font-size: 25px;
  }
}
@media (max-width: 1600px) and (max-width: 1050px) {
  .project .redeemarea__redbtn a {
    font-size: 24px;
  }
}
.project .redeemarea__redbtn a:hover {
  -webkit-filter: brightness(1.2);
  filter: brightness(1.2);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.project .redeemarea__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
}
.project .redeemarea__btns a {
  width: 20rem;
  color: #ffffff;
  font-size: 1.5rem;
  margin: 10px auto;
  line-height: 1em;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  background: url(https://storage-asset.msi.com/event/2025/CND/cool-down-build-up/images/btn-leaf.png)
    no-repeat;
  background-size: cover;
  height: 13rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-shadow: 0 0 10px #1a4347, 0 0 10px #1a4347, 0 0 10px #1a4347,
    0 0 10px #1a4347, 0 0 10px #1a4347;
  padding-bottom: 2%;
}
@media (min-width: 996px) {
  .project .redeemarea__btns a {
    width: 16rem;
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 1em;
    margin-top: 40px;
    height: 10.5rem;
  }
}

.project .redeemarea__btns a:hover {
  cursor: pointer;
  -webkit-filter: brightness(1.2);
  filter: brightness(1.2);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.project .redeemarea .redeem-note {
  text-align: center;
  color: #1a4347;
  padding: 0 25px;
  font-size: 17px;
}
.project .buynowarea {
  position: relative;
  background-size: cover;
  background-position: center;
}

.project .buynowarea:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
@media (max-width: 996px) {
  .project .buynowarea {
    background-size: cover;
    background-position: right;
  }
}
@media (max-width: 1300px) {
  .project .buynowarea {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1300px) and (max-width: 1050px) {
  .project .buynowarea {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 1300px) and (max-width: 800px) {
  .project .buynowarea {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.project .buynowarea h5 {
  font-size: 32px;
  margin-bottom: 1.5em;
  line-height: 0;
  color: #fff;
  text-align: center;
}
@media (max-width: 1600px) {
  .project .buynowarea h5 {
    font-size: 30px;
  }
}
@media (max-width: 1600px) and (max-width: 1300px) {
  .project .buynowarea h5 {
    font-size: 29px;
  }
}
@media (max-width: 1600px) and (max-width: 1050px) {
  .project .buynowarea h5 {
    font-size: 28px;
  }
}
.project .buynowarea h5 .yel {
  color: #0b9fc1;
}
.project .buynowarea__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: url(https://www.monsterhunter.com/wilds/_next/static/media/bg-content_2.f4ac7510.png);
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3% 2% 4%;
}
@media screen and (max-width: 991px) {
  .project .buynowarea__block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10% 2% 5%;
  }
}
.project .buynowarea__block .item {
  width: calc(30% - 20px);
  margin: 10px;
}
@media screen and (max-width: 476px) {
  .project .buynowarea__block .item {
    width: calc(50% - 20px);
  }
}
.project .buynowarea__block .item figure {
  height: 250px;
  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;
}
@media screen and (max-width: 991px) {
  .project .buynowarea__block .item figure {
    height: 100px;
  }
}

.project .buynowarea__block .item .item__txtBox-name {
  font-size: 20px;
  margin-bottom: 1em;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
  margin: 20px 0;
}
@media (max-width: 1600px) {
  .project .buynowarea__block .item .item__txtBox-name {
    font-size: 18px;
  }
}
@media (max-width: 1600px) and (max-width: 1300px) {
  .project .buynowarea__block .item .item__txtBox-name {
    font-size: 17px;
  }
}
@media (max-width: 1600px) and (max-width: 1050px) {
  .project .buynowarea__block .item .item__txtBox-name {
    font-size: 16px;
  }
}
.project .popup__header h2 {
  color: #ffffff !important;
  font-size: 40px;
  margin-bottom: 1em;
  line-height: 1.5em;
  margin: 0;
}
@media (max-width: 1600px) {
  .project .popup__header h2 {
    font-size: 38px;
  }
}
@media (max-width: 1600px) and (max-width: 1300px) {
  .project .popup__header h2 {
    font-size: 37px;
  }
}
@media (max-width: 1600px) and (max-width: 1050px) {
  .project .popup__header h2 {
    font-size: 36px;
  }
}
.project .common-subtitle {
  font-size: 20px;
  margin-top: 1em;
  line-height: 1.5em;
  color: #fff;
}
@media (max-width: 1600px) {
  .project .common-subtitle {
    font-size: 18px;
  }
}
@media (max-width: 1600px) and (max-width: 1300px) {
  .project .common-subtitle {
    font-size: 17px;
  }
}
@media (max-width: 1600px) and (max-width: 1050px) {
  .project .common-subtitle {
    font-size: 16px;
  }
}
.project .kv {
  width: 100%;
  position: relative;
  background: url(https://storage-asset.msi.com/event/2025/CND/cool-down-build-up/images/kv-bg-m.jpg)
    no-repeat;
  background-size: cover;
}

.project .kv img {
  width: 100%;
}

.project .kv__logo {
  position: absolute;
  right: 10vw;
  max-width: 22vw;
  top: 11%;
}
.kv__pattern {
  position: absolute;
  display: none;
}
.kv__pattern-1 {
  top: 54.5%;
  left: 70%;
  width: 20vw;
}
.kv__pattern-2 {
  top: 60.5%;
  left: 4.5%;
  width: 23vw;
  z-index: 2;
}
.kv__pattern-3 {
  top: 48%;
  left: 0;
  width: 30vw;
  z-index: 0;
}
.kv__pattern-4 {
  top: 52%;
  left: 60.5%;
  width: 15vw;
  z-index: 0;
}
.kv__bird {
  width: 42vw;
  margin: 1% auto 0;
  display: none;
  animation: fly 4s linear infinite;
}

.kv__pd {
  width: 95%;
  margin: 3% auto 0;
  position: relative;
  z-index: 1;
}
.kv-mask {
  -webkit-mask: url(https://storage-asset.msi.com/event/2025/CND/cool-down-build-up/images/kv-pd.png)
    no-repeat;
  mask: url(https://storage-asset.msi.com/event/2025/CND/cool-down-build-up/images/kv-pd.png)
    no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.kv-mask::before {
  content: "";
  position: absolute;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(255, 255, 255, 0)),
    color-stop(rgba(255, 255, 255, 0.5)),
    to(rgba(255, 255, 255, 0))
  );
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
  width: 30%;
  height: 100%;
  -webkit-animation: 4s kvLight infinite linear;
  animation: 4s kvLight infinite linear;
  display: none;
}
.kv__steam {
  position: absolute;
  z-index: 2;
  top: 70%;
  left: 81.8%;
  max-width: 15vw;
  display: none;
}
.kv__txtWrap {
  color: #0a3d4c;
  text-align: center;
  font-weight: bold;
  font-family: "playfair-display", serif;
}
.kv__txtWrap h3 {
  font-size: 5vw;
}
.kv__txtWrap p {
  font-size: 3.2vw;
  margin-top: -10px;
}
.kv__txtWrap span {
  font-size: 6vw;
  color: #fff;
  text-shadow: 2px 2px 2px #0a3d4c;
  font-family: var(--MSIBodyFont);
}
.project .kv__text {
  width: 85%;
  margin: auto;
  text-align: center;
}

.project .kv__text h1 span {
  font-family: "playfair-display", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 8vw;
  margin-top: 30%;
  color: #fff;
  display: block;
  text-shadow: 2px 4px 1.5px #21697f;
  /* filter: drop-shadow(2px 2px 2px #21697f); */
}
.project .kv__text h1 b {
  font-size: 3.2vw;
  position: relative;
  letter-spacing: 0;
  margin-right: 1%;
}
.project .kv__text h1 b::after {
  content: "";
  position: absolute;
  background: url(https://storage-asset.msi.com/event/2025/CND/relax-refresh-and-earn-cashback/images/kv-pattern.png)
    no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16vw;
  height: 8vw;
}
@media (min-width: 996px) {
  .project .kv {
    width: 100%;
    position: relative;
    background: url(https://storage-asset.msi.com/event/2025/CND/cool-down-build-up/images/kv-bg.jpg)
      no-repeat;
    background-size: cover;
  }
  .project .kv__logo {
    position: absolute;
    right: 14vw;
    max-width: 240px;
    top: 7%;
  }
  .project .kv__text {
    width: 46%;
  }
  .project .kv__text h1 {
    line-height: 0.9;

    font-weight: bold;
    letter-spacing: 3px;
  }
  .project .kv__text h1 span {
    font-weight: 700;
    font-style: normal;
    font-size: 4.2vw;
    display: inline-block;
    margin-top: 0;
  }
  .project .kv__text h1 b {
    font-size: 1.4vw;
    position: relative;
    letter-spacing: 0;
    margin-right: 1%;
  }
  .project .kv__text h1 b::after {
    content: "";
    position: absolute;
    background: url(https://storage-asset.msi.com/event/2025/CND/relax-refresh-and-earn-cashback/images/kv-pattern.png)
      no-repeat;
    background-size: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9.2vw;
    height: 4vw;
  }
  .kv__pd {
    width: 39%;
    margin: -1% auto 0;
    position: relative;
    z-index: 1;
  }
  .kv__steam {
    position: absolute;
    z-index: 2;
    top: 61%;
    left: 68.8%;
    max-width: 11vw;
    display: block;
  }
  .kv__pattern {
    display: block;
  }
  .kv__pattern-1 {
    top: 36.5%;
    left: 61%;
    width: 14vw;
  }
  .kv__pattern-2 {
    top: 45.5%;
    left: 21.5%;
    width: 16vw;
    z-index: 2;
  }
  .kv__pattern-3 {
    top: 24%;
    left: 18%;
    width: 22vw;
    z-index: 0;
  }
  .kv__pattern-4 {
    top: 36%;
    left: 55.5%;
    width: 10vw;
    z-index: 0;
  }
  .kv__txtWrap h3 {
    font-size: 2vw;
  }
  .kv__txtWrap p {
    font-size: 1.2vw;
  }
  .kv__bird {
    width: 18vw;
    display: block;
  }
  .kv__txtWrap span {
    font-size: 2vw;
  }

  .kv-mask {
    -webkit-mask: url(https://storage-asset.msi.com/event/2025/CND/cool-down-build-up/images/kv-pd.png)
      no-repeat;
    mask: url(https://storage-asset.msi.com/event/2025/CND/cool-down-build-up/images/kv-pd.png)
      no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
  }
  .kv-mask::before {
    content: "";
    position: absolute;
    background: -webkit-gradient(
      linear,
      right top,
      left top,
      from(rgba(255, 255, 255, 0)),
      color-stop(rgba(255, 255, 255, 0.5)),
      to(rgba(255, 255, 255, 0))
    );
    background: linear-gradient(
      to left,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.5),
      rgba(255, 255, 255, 0)
    );
    width: 30%;
    height: 100%;
    -webkit-animation: 4s kvLight infinite linear;
    animation: 4s kvLight infinite linear;
    display: block;
  }
}
@media (min-width: 1930px) {
  .project .kv__logo {
    max-width: 20vw;
  }
}
.project .intro {
  background: url("https://storage-asset.msi.com/event/2024/NB/2024-d4/images/e54f6acd639dec30c68451d6c8483201d6ccff4b.jpg")
    no-repeat center;
  background-size: cover;
}
.project .intro h3 {
  color: #68cb1b;
}
.project .slick-dotted.slick-slider {
  margin-bottom: 0px;
}
.project .popup__wrapper::after {
  background: none;
}
.project .popup__wrapper::before {
  background: none;
}
.project .popup__inner {
  background: none;
}
.project .popup__inner::after {
  background: none;
}
.project .popup__inner::before {
  background: none;
}
.project .popup__header {
  background: none;
}
.project .popup__close {
  /* -webkit-filter: hue-rotate(220deg);
  filter: hue-rotate(220deg); */
}
.project .popup__body {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(100% - 300px);
  flex: 0 0 calc(100% - 300px);
  max-height: 100vh;
  overflow-y: auto;
}
.project .popup__body::-webkit-scrollbar-thumb {
  background: #208685;
  border-radius: 20px;
}
.project .popup__body::-webkit-scrollbar {
  width: 10px;
  background: #1a5e5c;
}
.project .footer__icons {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 996px) {
  .project .footer__icons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.project .footer__icons p {
  text-align: start;
}
.project .footer__icons img {
  height: 120px !important;
}
@media (min-width: 996px) {
  .project .footer {
    padding: 40px 25px;
  }
}
@media (min-width: 996px) {
  .project .intro__date {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-left: #68cb1b 1px solid;
  }
}
@media (min-width: 996px) {
  .project .intro__date:first-child {
    border: none;
  }
}

.learnBtn {
  position: relative;
  display: block;
  text-align: center;
  outline: none;
  background-size: 100%;
  color: #fff;
  font-weight: bold;
  width: 100%;
  max-width: 300px;
  padding: 10px 0;
  transition: 0.2s;
  margin: 0 auto 20px;
  border: 2px solid #7f7a66;
  /* background: linear-gradient(#483c13, #7b6e3f); */
  background: url(https://storage-asset.msi.com/event/2025/CND/monsterhunterwilds/image/buyNow-btn-bg.jpg);
  background-position: center;
  background-size: cover;
  opacity: 0.9;
}
/* .learnBtn::before {
  z-index: 0;
  content: "";
  width: 98%;
  height: 95%;
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 3px solid #11f9f8;
  border-radius: 10px;
  opacity: 0.5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
} */
.learnBtn:hover::before {
  border: 3px solid #fff;
  top: 50%;
}
.learnBtn:hover {
  opacity: 1;
  box-shadow: 0 0 20px #7f7a66;
}

@media (min-width: 1300px) {
  .learnBtn {
    /* width: 50%; */
  }
}
.popout {
  background: rgba(0, 0, 0, 0.6117647059);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.popout__block {
  max-width: 760px;
  background: #000;
  background-size: 100% 100%;
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.3);
  border: 1px solid #bbfbff;
}
.popout__block-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
}
.popout__block-close::after {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -13px;
  left: 0px;
  content: "×";
  font-size: 36px;
  font-weight: bold;
  color: #bbfbff;
}
.popout__block-close:hover::after {
  opacity: 0.8;
}
.popout__dm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 60px 10px 20px 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.popout__dm a {
  width: calc(50% - 10px);
  background: #ffffff;
  color: #000000;
  text-align: center;
  border-radius: 5px;
  height: 70px;
  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: 5px;
}
.popout__dm a img {
  height: 50px;
}

.popup__content {
  background: #00b3ba;
  border-radius: 12px;
}

.powerByMsi__redeemTitle {
  color: #ffffff;
  text-align: center;
  font-size: 32px;
  margin-bottom: 1em;
  line-height: 1.5em;
  font-weight: bold;
  text-shadow: 0 0 3px #217595;
}
@media (max-width: 1600px) {
  .powerByMsi__redeemTitle {
    font-size: 30px;
  }
}
@media (max-width: 1600px) and (max-width: 1300px) {
  .powerByMsi__redeemTitle {
    font-size: 29px;
  }
}
@media (max-width: 1600px) and (max-width: 1050px) {
  .powerByMsi__redeemTitle {
    font-size: 28px;
  }
}

.powerByMsi__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1% 0;
}
.powerByMsi__step .powerByMsi__step-num {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 1em;
  line-height: 1.5em;
  width: 20%;
  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;
  text-shadow: 0 0 3px #217595;
  font-weight: bold;
}
@media (max-width: 1600px) {
  .powerByMsi__step .powerByMsi__step-num {
    font-size: 30px;
  }
}
@media (max-width: 1600px) and (max-width: 1300px) {
  .powerByMsi__step .powerByMsi__step-num {
    font-size: 29px;
  }
}
@media (max-width: 1600px) and (max-width: 1050px) {
  .powerByMsi__step .powerByMsi__step-num {
    font-size: 28px;
  }
}
.powerByMsi__step .powerByMsi__step-txt {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 1em;
  line-height: 1.5em;
  width: 80%;
}
.powerByMsi__step .powerByMsi__step-txt h4 {
  padding-bottom: 5px;
}
@media (max-width: 1600px) {
  .powerByMsi__step .powerByMsi__step-txt {
    font-size: 18px;
  }
}
@media (max-width: 1600px) and (max-width: 1300px) {
  .powerByMsi__step .powerByMsi__step-txt {
    font-size: 17px;
  }
}
@media (max-width: 1600px) and (max-width: 1050px) {
  .powerByMsi__step .powerByMsi__step-txt {
    font-size: 16px;
  }
}

.redeemBtn {
  background-image: linear-gradient(to top, #001c49 0%, #122ca1 100%);
  box-shadow: 0 0 10px rgb(82 145 169);
  font-size: 1.4vw;
  padding: 0 10px;
  margin-bottom: 1em;
  line-height: 1.5em;
  color: #3e5f6b;
}
@media (max-width: 1600px) {
  .redeemBtn {
    font-size: 30px;
  }
}
@media (max-width: 1600px) and (max-width: 1300px) {
  .redeemBtn {
    font-size: 29px;
  }
}
@media (max-width: 1600px) and (max-width: 1050px) {
  .redeemBtn {
    font-size: 4.5vw;
  }
}
@media (min-width: 1930px) {
  .redeemBtn {
    font-size: 0.8vw;
  }
}
#popup-howToRedeem .popup__content a {
  color: #102a96;
}
.btnsmm {
  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;
}
#popup-howToRedeem .popup__content a:hover {
  text-decoration: underline;
}
#popup-howToRedeem .popup__content .btnsmm a {
  color: #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#popup-howToRedeem .popup__content .btnsmm a:hover {
  cursor: pointer;
  -webkit-filter: brightness(1.2);
  filter: brightness(1.2);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  text-decoration: none;
}
.powerByMsi__note {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 1em;
  line-height: 1.5em;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 1600px) {
  .powerByMsi__note {
    font-size: 14px;
  }
}
@media (max-width: 1600px) and (max-width: 1300px) {
  .powerByMsi__note {
    font-size: 13px;
  }
}
@media (max-width: 1600px) and (max-width: 1050px) {
  .powerByMsi__note {
    font-size: 12px;
  }
}
.project .visit {
  position: relative;
  padding: 5% 0;
  background: linear-gradient(to bottom, #9beef0 30%, #73bebf 100%);
}
.project .visit__title,
.project .wtb__title,
.project .eligible__title,
.project .identity__title {
  width: 100%;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  z-index: 20;
  position: relative;
  max-width: 1280px;
  margin: auto;
}
@media (max-width: 1600px) {
  .project .visit__title,
  .project .wtb__title,
  .project .eligible__title,
  .project .identity__title {
    font-size: 24px;
  }
}
/* @media (max-width: 1600px) and (max-width: 1300px) {
  .project .visit__title,
  .project .wtb__title,
  .project .eligible__title,
  .project .identity__title {
    font-size: 29px;
  }
}
@media (max-width: 1600px) and (max-width: 1050px) {
  .project .visit__title,
  .project .wtb__title,
  .project .eligible__title {
    font-size: 24px;
  }
} */
.project .visit__link {
  margin-top: 20px;
  gap: 1em;
}
.project .visit__link a {
  width: 80%;
  display: block;
  margin: 0 auto 10px;
  opacity: 0.9;
}
.project .visit__link a:hover {
  opacity: 1;
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .project .visit__gm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .project .visit__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .project .visit__link a {
    width: 33%;
    margin: 0;
  }
}
.project .visit__cc {
  display: none;
}
.visit .common__container {
  position: relative;
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1280px;
}
.visit .common__title {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  text-transform: uppercase;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  -webkit-filter: drop-shadow(3px 3px 10em black);
  filter: drop-shadow(3px 3px 10em black);
}

.project .wtb {
  text-transform: uppercase;
  padding: 5% 0;
}
.project .wtb h2 {
    text-align: center;
    font-size: 24px;
}
@media (min-width: 996px) {
  .project .wtb h2 {
    font-size: 32px;
}
}
.project .wtb img.wtbitem_logo {
  display: initial;
}

.wtbw_selectorsbar label {
  color: #fff;
}

.identity {
  padding: 5% 0;
  position: relative;
  background: linear-gradient(to bottom, rgb(177 221 218) 0%, rgb(152 209 212) 40%);
}
.identity__wrapper {
  max-width: 1200px;
}

.identity__wrapper-intro {
  color: #fff;
  font-size: 20px;
  text-align: center;
}
@media (min-width: 996px) {
  .identity__wrapper-intro {
    font-size: 26px;
  }
}
.identity__wrapper-block .cardItem {
  position: relative;
  margin: 20px 0;
  background: linear-gradient(45deg, #28337c, #7955a1 80%);
}
@media (min-width: 996px) {
  .identity__wrapper-block .cardItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 30px 0;
  }
}
.identity__wrapper-block .cardItem:hover {
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}
.identity__wrapper-block .cardItem:hover h6 {
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(transparent),
    color-stop(#0f2d5b),
    color-stop(#3a44c1),
    to(transparent)
  );
  background: linear-gradient(
    to left,
    transparent,
    #0f2d5b,
    #3a44c1,
    transparent
  );
}
.identity__wrapper-block .cardItem__leftBox {
  position: relative;
  display: inline-block;
  padding: 20px 0 10px;
  z-index: 20;
  width: 100%;
}
@media (min-width: 996px) {
  .identity__wrapper-block .cardItem__leftBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 60%;
    padding: 0;
  }
  .identity__wrapper-block {
    width: 75%;
    margin: auto;
  }
}
.identity__wrapper-block .cardItem__leftBox-logo {
  width: 50%;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .identity__wrapper-block .cardItem__leftBox-logo {
    width: 35%;
    margin: auto;
  }
}
@media (min-width: 996px) {
  .identity__wrapper-block .cardItem__leftBox-logo img {
    width: 80%;
    margin: 0 auto;
  }
}
.identity__wrapper-block .cardItem__leftBox-content {
  color: #fff;
  text-align: center;
  margin: 10px 0;
}
@media (min-width: 996px) {
  .identity__wrapper-block .cardItem__leftBox-content {
    width: 58%;
  }
}
.identity__wrapper-block .cardItem__leftBox-content h4 {
  font-size: 24px;
}
@media (min-width: 996px) {
  .identity__wrapper-block .cardItem__leftBox-content h4 {
    font-size: 1.5vw;
  }
}
.identity__wrapper-block .cardItem__leftBox-content h6 {
  font-size: 17px;
  font-style: italic;
  margin: 10px 0 0;
  display: inline-block;
  padding: 2px 20px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(transparent),
    color-stop(#0f2d5b),
    color-stop(#3a44c1),
    to(transparent)
  );
  background: linear-gradient(
    to right,
    transparent,
    #0f2d5b,
    #3a44c1,
    transparent
  );
}
@media (min-width: 996px) {
  .identity__wrapper-block .cardItem__leftBox-content h6 {
    font-size: 20px;
    padding: 2px 40px;
  }
}
@media (min-width: 996px) {
  .identity__wrapper-block .cardItem__rightBox {
    width: 40%;
  }
}
.identity__wrapper-block .cardItem__rightBox .videobox-wrapper {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .identity__wrapper-block .cardItem__rightBox .videobox-wrapper {
    width: 100%;
  }
}
.identity__wrapper-block .cardItem__rightBox .videobox-wrapper__box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.identity__wrapper-block .cardItem__rightBox .videobox-wrapper__box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.identity__wrapper-block .cardItem:nth-child(1) {
  position: relative;
  background: url(https://storage-asset.msi.com/event/2024/CND/black-friday-deals/images/mag-bg.jpg);
  background-position: left;
  background-size: cover;
  background-repeat: repeat;
}
@media (min-width: 996px) {
  .identity__wrapper-block .cardItem:nth-child(1) {
    background-size: contain;
  }
}
.identity__wrapper-block .cardItem:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}
@media (min-width: 996px) {
  .identity__wrapper-block .cardItem:nth-child(1)::before {
    background: rgba(0, 0, 0, 0.5);
  }
}
.identity__wrapper-block .cardItem:nth-child(1) h6 {
  color: #e7cfa1;
}
.identity__wrapper-block .cardItem:nth-child(2) {
  position: relative;
  background: url(https://storage-asset.msi.com/event/2024/CND/black-friday-deals/images/mpg-bg.jpg);
  background-position: left;
  background-size: cover;
  background-repeat: repeat;
}
@media (min-width: 996px) {
  .identity__wrapper-block .cardItem:nth-child(2) {
    background-size: contain;
  }
}
.identity__wrapper-block .cardItem:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}
@media (min-width: 996px) {
  .identity__wrapper-block .cardItem:nth-child(2)::before {
    background: rgba(0, 0, 0, 0.5);
  }
}
.identity__wrapper-block .cardItem:nth-child(2) h6 {
  color: #ff6fad;
}
.identity__wrapper-block .cardItem:nth-child(3) {
  position: relative;
  background: url(https://storage-asset.msi.com/event/2024/CND/black-friday-deals/images/meg-bg.jpg);
  background-position: left;
  background-size: cover;
  background-repeat: repeat;
}
@media (min-width: 996px) {
  .identity__wrapper-block .cardItem:nth-child(3) {
    background-size: contain;
  }
}
.identity__wrapper-block .cardItem:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}
@media (min-width: 996px) {
  .identity__wrapper-block .cardItem:nth-child(3)::before {
    background: rgba(0, 0, 0, 0.5);
  }
}
.identity__wrapper-block .cardItem:nth-child(3) h6 {
  color: #d3e736;
}