.project {
  --font-color: #fcf5de;
  color: #e6eff2;
  position: relative;
  font-size: 20px;
}
.project picture {
  display: block;
}
.project img {
  max-width: 100%;
  vertical-align: bottom;
}
.project .cover_noise {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.project .cover_noise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/bg_noise.webp") top left repeat;
  background-size: min(1.5rem, 150px);
  animation: noise-animation 0.3s steps(5) infinite;
}

.page {
  position: relative;
  display: none;
  overflow: hidden;
}
.page.active {
  display: block;
}

.backtotop {
  position: fixed;
  z-index: 10;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: url("../images/gotop.png") center center no-repeat ;
  background-size: cover;
}

[lang=en-AU] h1 {
  padding-top: 40px;
}
@media (min-width: 996px) {
  [lang=en-AU] h1 {
    padding-top: 80px;
  }
}

.kv {
  position: relative;
  z-index: 1;
}
.kv-img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
}
@media (min-width: 996px) {
  .kv-img {
    aspect-ratio: 20/7;
  }
}
.kv-img img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
}
.kv__btn {
  position: absolute;
  z-index: 5;
  bottom: 20px;
  left: 15%;
  text-align: center;
  font-size: 14px;
  width: 40%;
}
@media (min-width: 996px) {
  .kv__btn {
    width: 30%;
    left: 18%;
    top: 88%;
    bottom: auto;
  }
}
.kv__btn button {
  background: #b11818;
  border: #b11818 1px solid;
  color: #fff;
  padding: 10px 20px;
  width: 50%;
}
.kv__btn button:hover {
  background: #000;
  color: #b11818;
}

.menu {
  position: relative;
  top: 0;
  z-index: 10;
  display: block;
  padding: 10px 0;
  background: url("../images/bg_base_pattern.webp") top center no-repeat ;
  background-size: cover;
}
@media (min-width: 996px) {
  .menu {
    position: sticky;
  }
}
.menu .line2 {
  position: relative;
  margin: 5px 0;
  width: 110%;
  transform: translateX(-15%);
}
.menu .line3 {
  bottom: 20px;
  width: 110%;
  transform: translateX(-15%);
}
.menu__btn {
  position: fixed;
  z-index: 101;
  width: 50px;
  height: 50px;
  right: 10px;
  top: 10px;
  background: url("../images/btn-menu.png") center center no-repeat ;
  background-size: cover;
  color: #fff;
  font-size: 20px;
  padding-right: 4px;
}
@media (min-width: 996px) {
  .menu__btn {
    display: none;
  }
}
.menu__box {
  display: none;
}
.menu__box.show {
  position: fixed;
  z-index: 10;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: url("../images/bg_base_pattern.webp") top center no-repeat ;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 996px) {
  .menu__box {
    position: relative;
    background: none;
    display: block;
  }
}
@media (min-width: 996px) {
  .menu ul {
    display: flex;
    justify-content: center;
  }
}
.menu ul li {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: var(--font), var(--MSIBodyFont);
  cursor: pointer;
  padding: 10px 25px;
  gap: 10px;
  text-shadow: #fff 2px 2px 5px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (min-width: 996px) {
  .menu ul li {
    font-size: 22px;
    margin: 0 5px 5px;
  }
}
.menu ul li:hover, .menu ul li.active {
  color: #000;
}
.menu ul li:hover::before, .menu ul li.active::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/link_bg.webp") center center repeat;
  -webkit-mask: url("../images/title-mask.png") center center repeat;
  mask: url("../images/title-mask.png") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.menu ul li:hover::after, .menu ul li.active::after {
  animation: none;
}
.menu ul li span {
  position: relative;
}

.footer {
  background: url("../images/footer-bg.png") right center no-repeat ;
  background-size: cover;
  text-align: center;
}
.footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 9px;
  background: url("../images/pattern-line.png") top left repeat-x;
}
.footer-logo {
  opacity: 0.1;
  width: 80%;
  margin: 0 auto;
  max-width: auto;
}
.footer__icons {
  padding: 50px 0;
}
.footer__icons img {
  max-width: 250px;
  height: auto;
}
@media (min-width: 996px) {
  .footer__icons img {
    height: 150px;
    max-width: none;
  }
}
.footer .copyright {
  opacity: 0.6;
  padding-bottom: 40px;
}

.intro {
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (min-width: 996px) {
  .intro {
    padding: 80px 0 !important;
  }
}
.intro-text {
  text-align: center;
  padding-bottom: 40px;
}
@media (min-width: 996px) {
  .intro-text {
    position: relative;
    font-size: 28px;
    padding-bottom: 60px;
  }
}
.intro-text span {
  display: inline-block;
  background: url("../images/mask_bg.webp") center center no-repeat no-repeat;
  background-size: cover;
  color: #222;
  margin: 5px;
  padding: 5px 10px;
}
.intro__date {
  position: relative;
  margin-top: 60px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 996px) {
  .intro__date {
    padding-bottom: 100px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.intro__dateCard {
  position: relative;
  text-align: left;
}
@media (min-width: 996px) {
  .intro__dateCard {
    flex: 1;
  }
  .intro__dateCard:nth-child(2) {
    transform: translateY(25px);
  }
  .intro__dateCard:nth-child(3) {
    transform: translateY(-25px);
  }
}
.intro__dateCard::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -5px;
  left: 5px;
  width: 1px;
  height: 100%;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line_vertical3.webp") center center repeat;
  mask: url("../images/mask_line_vertical3.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.intro__dateCard::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0px;
  left: 5px;
  width: 100%;
  height: 1px;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line1.webp") center center repeat;
  mask: url("../images/mask_line1.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.intro__dateCard h3 {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: 400;
}
.intro__dateCard h3 span {
  position: relative;
}
.intro__dateCard h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-mask: url("../images/title-mask.png") center center no-repeat;
  mask: url("../images/title-mask.png") center center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background: linear-gradient(to right, #3d0101, #ca1414);
}
.intro__dateCard p {
  padding: 25px 40px;
  display: flex;
  justify-content: center;
}
@media (min-width: 996px) {
  .intro__dateCard p {
    padding: 15px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
  }
}
.intro__dateCard-line-1, .intro__dateCard-line-2 {
  right: 0;
  top: 0;
}
.intro__btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}
@media (min-width: 996px) {
  .intro__btn {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
  .intro__btn a, .intro__btn button {
    flex: 1;
  }
}
.intro__note {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  padding-top: 40px;
  font-size: 16px;
  color: #999;
}

.countBox {
  position: relative;
  background: url("../images/countBox-bg.jpg") center center no-repeat no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 25px;
  margin: 3px;
}
@media (min-width: 996px) {
  .countBox {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
}
.countBox-img img {
  width: 150px;
}
.countBox p {
  position: relative;
}
.countBox p b {
  font-size: 150%;
  -webkit-mask: url("../images/title-mask.png") center center no-repeat;
  mask: url("../images/title-mask.png") center center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  color: #d10c0c;
}
@media (min-width: 996px) {
  .countBox p {
    font-size: 28px;
  }
}
.countBox .top {
  top: 0;
  left: 0;
}
.countBox .top2 {
  top: -10px;
  right: -10px;
  width: 80%;
}
.countBox .bottom {
  bottom: 0;
  right: 0;
}
.countBox .left {
  left: 0;
  top: 0;
}
.countBox .right {
  right: 0;
  top: 0;
}
.countBox .right2 {
  right: -10px;
  top: -20px;
  height: 80%;
}

.product {
  position: relative;
  margin-bottom: 40px;
}
.product::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line3.webp") center center repeat;
  mask: url("../images/mask_line3.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.product__wrapper {
  position: relative;
}
.product__wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0px;
  right: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line1.webp") top center no-repeat;
  mask: url("../images/mask_line1.webp") top center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.product__box {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
}
@media (min-width: 996px) {
  .product__box::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    background: #e6eff2;
    -webkit-mask: url("../images/mask_line_vertical3.webp") center center repeat;
    mask: url("../images/mask_line_vertical3.webp") center center repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
  }
  .product__box::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 20px;
    background: #e6eff2;
    -webkit-mask: url("../images/mask_line_vertical3.webp") center center repeat;
    mask: url("../images/mask_line_vertical3.webp") center center repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
  }
}
.productCard {
  position: relative;
  flex: 1;
  text-align: center;
  padding: 25px 0;
}
.productCard button {
  color: #000;
  cursor: pointer;
}
.productCard button:hover {
  text-decoration: underline;
}
.productCard button:hover h3 {
  color: #b11818;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}
.productCard button:hover img {
  transform: translateY(-10px);
}
.productCard b, .productCard span {
  display: block;
}
.productCard img {
  width: 80%;
  height: auto;
}
.productCard h3 {
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}
.productCard__date {
  background: url("../images/link_bg.webp") center center no-repeat ;
  background-size: cover;
}
@media (min-width: 996px) {
  .productCard::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: 0;
    background: #e6eff2;
    -webkit-mask: url("../images/mask_line_vertical3.webp") center center repeat;
    mask: url("../images/mask_line_vertical3.webp") center center repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
  }
  .productCard::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: 20px;
    background: #e6eff2;
    -webkit-mask: url("../images/mask_line_vertical3.webp") center center repeat;
    mask: url("../images/mask_line_vertical3.webp") center center repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
  }
  .productCard h3 {
    font-size: 20px;
    height: 50px;
    line-height: 50px;
  }
}

.redeem {
  position: relative;
  text-align: center;
}
.redeem__box {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
@media (min-width: 996px) {
  .redeem__box {
    flex-direction: row;
    gap: 50px;
  }
}
@media (min-width: 996px) {
  .redeem__item {
    flex: 1;
  }
}
.redeem__title {
  font-weight: bold;
  padding: 10px 0;
}
.redeem__icon {
  width: 100%;
  margin: 0 auto;
  max-width: 100px;
  background: url("../images/link_bg.webp") center center no-repeat no-repeat;
  background-size: cover;
  padding: 15px;
  border-radius: 50%;
  box-shadow: #000 5px 5px 15px;
}
.redeem__btn {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 996px) {
  .redeem__btn {
    flex-direction: row;
    gap: 20px;
  }
  .redeem__btn a, .redeem__btn button {
    flex: 1;
  }
}
.redeem__more {
  position: relative;
  transition: all 0.25s ease-out;
}
.redeem__more.hide {
  -webkit-mask: url("../images/redeem-more-mask.png") top left repeat-x;
  mask: url("../images/redeem-more-mask.png") top left repeat-x;
  -webkit-mask-size: cover;
  mask-size: cover;
  height: 70px;
}
.redeem__text {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 15px;
  text-align: left;
}
.redeem__text h4 {
  padding: 10px 0;
}
.redeem__text ul {
  margin-left: 20px;
  padding-bottom: 20px;
}
.redeem__text ul li {
  list-style: disc;
  font-size: 16px;
}
.redeem__showBtn {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 60px;
  height: 60px;
  margin: 20px auto 0;
  transition: all 0.25s ease-out;
  background: url("../images/btn-less.png") center center no-repeat ;
  background-size: cover;
}
.redeem__showBtn.hide {
  background: url("../images/btn-plus.png") center center no-repeat ;
  background-size: cover;
}
.redeem__showBtn:hover {
  filter: drop-shadow(0 0 0.5rem rgba(239, 240, 233, 0.5)) drop-shadow(0 0 0.5rem rgba(242, 242, 242, 0.7));
}

.models__tabs {
  padding: 25px 25px 60px;
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 996px) {
  .models__tabs {
    gap: 40px;
  }
}
.models__tabs button {
  position: relative;
  color: #fff;
  flex: 1;
  width: 100%;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: var(--font);
  box-shadow: 0 4px 15px rgba(232, 20, 20, 0.5);
  text-shadow: 0 2px 8px rgba(172, 32, 32, 0.8);
  padding: 25px 15px;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
  background: #000;
}
.models__tabs button:hover {
  opacity: 1;
}
.models__tabs button.active {
  box-shadow: 0 0px 30px rgb(232, 20, 20);
  transform: scale(1.05);
  background: linear-gradient(45deg, #000, #260202, #000);
}
@media (min-width: 996px) {
  .models__tabs button {
    font-size: 28px;
    padding: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
}
.models__tabs button span {
  position: relative;
  display: block;
}
.models__tabs button img {
  position: relative;
  z-index: 2;
  width: 60%;
  margin: 0 auto;
  max-width: auto;
}
@media (min-width: 996px) {
  .models__tabs button img {
    flex: 0 0 200px;
    width: 200px;
  }
}

@media (min-width: 996px) {
  #models {
    padding: 80px 0 !important;
  }
}

.model {
  position: relative;
  text-align: center;
}
.model__typeTitle {
  position: relative;
}
.model__typeTitle .top {
  top: -10px;
}
.model__typeTitle .bottom {
  position: relative;
  margin-top: -10px;
}
.model__list:not(:first-child) {
  margin-top: 60px;
}
.model__box {
  display: none;
}
.model__box.active {
  display: block;
}

.buynow__filters {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 50px 0;
}
.buynow__filters button {
  flex: 1;
  max-width: 300px;
  position: relative;
  margin: 10px;
  --color: #e81f76;
  overflow: hidden;
  opacity: 0.5;
  padding: 10px;
}
.buynow__filters button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #413e3e;
  -webkit-mask: url("../images/link_bg.webp") top right no-repeat;
  mask: url("../images/link_bg.webp") top right no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background: url("../images/filter-button-bg.jpg") center right no-repeat no-repeat;
  background-size: cover;
}
.buynow__filters button img {
  position: relative;
  z-index: 2;
  width: 60%;
  max-width: 150px;
  filter: drop-shadow(#000 0 0 10px);
}
.buynow__filters button.active, .buynow__filters button:hover {
  color: var(--color) !important;
  opacity: 1;
  filter: drop-shadow(var(--color) 0 0 10px);
}
.buynow__filtersImg {
  position: relative;
  -webkit-mask: url("../images/pdSeries-img-mask.png") center center no-repeat;
  mask: url("../images/pdSeries-img-mask.png") center center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.buynow__filtersImg img {
  width: 100%;
}
.buynow__filtersImg .img {
  display: none;
}
.buynow__filtersImg .img.active {
  display: block;
}
.buynow__box {
  text-align: center;
  padding-bottom: 30px;
}
.buynow__box:not(:first-child) {
  margin-top: 60px;
}
.buynow__list {
  text-align: center;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0px;
}
.buynow__list::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0px;
  right: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line1.webp") top center no-repeat;
  mask: url("../images/mask_line1.webp") top center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.buynow__list::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line1.webp") center center repeat;
  mask: url("../images/mask_line1.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.buynow__list .swiper-container {
  overflow: hidden;
}
.buynow__list__btn {
  position: absolute;
}
.buynowPdCard {
  position: relative;
  text-align: center;
  width: 33.3%;
}
.buynowPdCard::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line_double-vertical.png") left center repeat;
  mask: url("../images/mask_line_double-vertical.png") left center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  mask-size: 100% auto;
  pointer-events: none;
}
.buynowPdCard::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line1.webp") center center repeat;
  mask: url("../images/mask_line1.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.buynowPdCard__img {
  position: relative;
  padding: 20px;
}
.buynowPdCard__img img {
  width: 80%;
  margin: 0 auto;
  max-width: 250px;
}
.buynowPdCard__text {
  padding: 0 20px 20px;
}
.buynowPdCard__title {
  font-size: var(--title-md);
  padding: 10px 0;
  font-size: 18px;
  text-align: center;
}
.buynowPdCard button, .buynowPdCard a {
  display: block;
  text-align: center;
  width: 100%;
  margin: 10px auto;
  font-size: 15px;
  background: url("../images/link_bg.webp") center center no-repeat no-repeat;
  background-size: cover;
  color: #000;
  padding: 5px;
}
.buynowPdCard button:hover, .buynowPdCard a:hover {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.75)) brightness(1.2);
}
@media (min-width: 996px) {
  .buynowPdCard button, .buynowPdCard a {
    font-size: 18px;
  }
}
@media (min-width: 996px) {
  .buynowPdCard__btn {
    display: flex;
    gap: 10px;
  }
}
.buynow__pager {
  position: relative;
  height: 50px;
  line-height: 50px;
  pointer-events: none;
  margin-top: 10px;
  pointer-events: none;
}

[data-type=meg] {
  --color: #efd7a6 !important;
}

[data-type=mpg] {
  --color: #e81f76 !important;
}

[data-type=mag] {
  --color: #d3e736 !important;
}

.popout {
  position: fixed;
  z-index: 110;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #c9c9c9;
  overflow-y: auto;
  display: none;
}
.popout__wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  background: #111;
  top: 50%;
  transform: translateY(-70%);
}
.popout__wrapper::before {
  content: "";
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 1px;
  top: 5px;
  left: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line1.webp") center center repeat;
  mask: url("../images/mask_line1.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.popout__wrapper::after {
  content: "";
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 1px;
  bottom: 5px;
  left: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line3.webp") center center repeat;
  mask: url("../images/mask_line3.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.popout__block-close {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 1;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background: url("../images/btn-close.png") center center no-repeat ;
  background-size: cover;
}
.popout__block-close:hover {
  filter: drop-shadow(0 0 5px #fff brightness(1.2));
}
@media (min-width: 996px) {
  .popout__block-close {
    width: 50px;
    height: 50px;
    right: 30px;
    top: 30px;
  }
}
.popout__inner {
  position: relative;
  z-index: 5;
  padding: 40px;
}
.popout__dm {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
.popout__dm a {
  display: inline-flex;
}
.popout__dm img {
  background: #fff;
  height: 70px;
  width: auto;
  border-radius: 5px;
  overflow: hidden;
  padding: 15px;
}

@media (min-width: 996px) {
  #why {
    padding: 80px 0 !important;
  }
}

.why__title {
  position: relative;
  text-align: center;
}
.why__title .common-title span {
  display: block;
  padding-top: 15px;
  margin-top: 15px;
}
.why__msi {
  margin-top: 55px;
}
.why__msi__box {
  margin-top: 25px;
}
.why__msi__btn {
  width: 100%;
  margin: 0 auto;
  max-width: 500px;
  padding-top: 25px;
  text-align: center;
}

.commonSlider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (min-width: 996px) {
  .commonSlider {
    flex-wrap: nowrap;
    gap: 0;
  }
}
.commonSlider:hover .commonSlider__item .img::before {
  opacity: 0.8;
}
.commonSlider__item {
  position: relative;
  z-index: 1;
  cursor: pointer;
  width: calc(50% - 20px);
}
@media (min-width: 996px) {
  .commonSlider__item {
    flex: 1;
    max-width: 16.6666666667%;
  }
}
.commonSlider__item:hover {
  transform: scale(1.1);
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}
.commonSlider__item:hover .img::before {
  opacity: 0 !important;
}
.commonSlider__item:hover .icon {
  opacity: 1;
}
.commonSlider__item:hover .title {
  height: 40%;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.commonSlider__item .img {
  position: relative;
  z-index: 1;
  -webkit-mask: url("../images/commonSlider-mask.png") center center no-repeat;
  mask: url("../images/commonSlider-mask.png") center center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.commonSlider__item .img::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: #000;
  opacity: 0.2;
}
.commonSlider__item .img img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.commonSlider__item .icon {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  width: 20px;
  opacity: 0.6;
}
@media (min-width: 996px) {
  .commonSlider__item .icon {
    top: 30px;
    left: 30px;
    width: 50px;
  }
}
.commonSlider__item .title {
  font-size: 18px;
  text-align: center;
}
@media (min-width: 996px) {
  .commonSlider__item .title {
    position: absolute;
    z-index: 5;
    width: 100%;
    height: 20%;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 20px;
    transition: height 0.3s ease;
    font-size: 24px;
  }
}

.sliderPopup {
  position: fixed;
  z-index: 110;
  inset: 0;
  color: #c9c9c9;
  overflow-y: auto;
  display: none;
}
.sliderPopup::before {
  content: "";
  position: fixed;
  z-index: -10;
  width: 100%;
  height: 100%;
  background: url("../images/bg_base_pattern.webp") top center no-repeat ;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.7;
}
.sliderPopup__wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  margin: 50px auto;
  background: #000;
}
.sliderPopup__wrapper::before {
  content: "";
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 1px;
  top: -15px;
  left: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line1.webp") center center repeat;
  mask: url("../images/mask_line1.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.sliderPopup__wrapper::after {
  content: "";
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 1px;
  top: 5px;
  left: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line3.webp") center center repeat;
  mask: url("../images/mask_line3.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.sliderPopup__block {
  position: relative;
  z-index: 5;
}
.sliderPopup__block::before {
  content: "";
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 1px;
  bottom: -15px;
  left: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line1.webp") center center repeat;
  mask: url("../images/mask_line1.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.sliderPopup__block::after {
  content: "";
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 1px;
  bottom: 5px;
  left: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line3.webp") center center repeat;
  mask: url("../images/mask_line3.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.sliderPopup__close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background: url("../images/btn-close.png") center center no-repeat ;
  background-size: cover;
}
.sliderPopup__close:hover {
  filter: drop-shadow(0 0 5px #fff brightness(1.2));
}
@media (min-width: 996px) {
  .sliderPopup__close {
    width: 50px;
    height: 50px;
    right: 30px;
    top: 30px;
  }
}
.sliderPopup__content {
  text-align: center;
}
.sliderPopup__content::before {
  content: "";
  position: absolute;
  z-index: 5;
  width: 1px;
  height: 100%;
  bottom: 5px;
  left: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line_vertical3.webp") center center repeat;
  mask: url("../images/mask_line_vertical3.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.sliderPopup__content::after {
  content: "";
  position: absolute;
  z-index: 5;
  width: 1px;
  height: 100%;
  bottom: -5px;
  right: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line_vertical3.webp") center center repeat;
  mask: url("../images/mask_line_vertical3.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.sliderPopup__content-border {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  padding: 40px 20px 50px;
}
@media (min-width: 996px) {
  .sliderPopup__content-border {
    padding: 60px 40px;
  }
}
.sliderPopup__content .video-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 20px;
}
.sliderPopup__content .video-wrapper__box {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.sliderPopup__content .video-wrapper__box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.sliderPopup__content iframe, .sliderPopup__content video {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1000px;
  margin: 0 auto 20px;
}
.sliderPopup__content h2 {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #fff;
}
.sliderPopup__content h2:not(:first-child) {
  padding-top: 15px;
}
.sliderPopup__content p {
  padding-bottom: 20px;
}
.sliderPopup__content a {
  color: #fff;
  text-decoration: underline;
}
.sliderPopup__content-note {
  padding-top: 15px;
  font-size: 15px;
  text-align: right;
}
.sliderPopup .common__flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 996px) {
  .sliderPopup .common__flex {
    flex-direction: row;
  }
}
.sliderPopup .common__flex h2 {
  font-size: 20px;
}
.sliderPopup .common__flex h3 {
  font-size: 18px;
}
.sliderPopup .common__flex .feature__item--50 {
  flex: 1;
}
.sliderPopup .common__flex--aunset .feature__item {
  background: #222;
  border-radius: 10px;
  padding: 25px;
}

.oledCare__mode {
  margin-top: 25px;
}
@media (min-width: 996px) {
  .oledCare__mode {
    text-align: left;
  }
}
.oledCare__mode p {
  font-size: 16px;
  padding-top: 8px;
}

.flex-card {
  flex-wrap: wrap;
  gap: 20px;
}
.flex-card .feature__item {
  background: #222;
  border-radius: 10px;
  padding: 25px;
}
@media (min-width: 996px) {
  .flex-card .feature__item {
    width: calc(33.3333333333% - 20px);
  }
}
.flex-card p {
  font-size: 16px;
  padding-top: 8px;
}

.ai .feature__item {
  border: 1px solid #444;
  margin: 15px auto;
}
.ai .feature__item h2 {
  font-size: 22px;
}
.ai .aivision {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
}
@media (min-width: 996px) {
  .ai .aivision {
    flex-direction: row;
  }
}
.ai .aivision__item {
  flex: 1;
}
@media (min-width: 996px) {
  .ai .aivision__item:first-child img {
    margin-top: 50px;
  }
}
.ai .aivision__item .common__flex {
  height: 40px;
  margin-bottom: 10px;
}
.ai .aivision__item .common__flex .level {
  background: #444;
  border-radius: 5px;
  line-height: 40px;
  padding: 0 10px;
  cursor: pointer;
}
.ai .aivision__item .common__flex .level:hover {
  background: #fff;
  color: #000;
}
.ai .aivision__item .common__flex .level--active {
  background: #fff;
  color: #000;
}
.ai .aivision__item .levelpic__pic {
  display: none;
}
.ai .aivision__item .levelpic__pic--active {
  display: block;
}

.gsync__text {
  flex: 1;
  padding-top: 8px;
  font-size: 14px;
}

.warranty {
  position: relative;
}
.warranty::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("https://storage-asset.msi.com/global/picture/image/feature/monitor/MPG-491CQP-QD-OLED/warranty-bg.jpg") no-repeat center center;
  background-size: 100% 100%;
}
.warranty__item {
  position: relative;
}
.warranty__item-icon {
  max-width: 150px;
  margin: 0 auto;
}
.warranty__item .spark {
  position: absolute;
  top: 0;
  left: 0;
}

.ratio {
  padding: 25px 0;
}
.ratio__btn {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  padding-bottom: 15px;
}
.ratio__btn-item {
  background: #444;
  border-radius: 5px;
  padding: 5px 20px;
  cursor: pointer;
}
.ratio__btn-item:hover {
  background: #fff;
  color: #000;
}
.ratio__btn-item--active {
  background: #fff;
  color: #000;
}
.ratio__pic .ratioPic {
  display: none;
}
.ratio__pic .ratioPic--active {
  display: block;
}
.ratio__pic-note {
  text-align: center;
}

.setup {
  padding-top: 60px;
  text-align: center;
}
.setup__text {
  font-size: 18px;
  padding-bottom: 25px;
}
.setup__text p {
  padding-bottom: 10px;
}
.setup__box {
  margin-top: 10px;
  -webkit-mask: url("../images/location_mask.webp") center center repeat;
  mask: url("../images/location_mask.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.setup__box img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (min-width: 996px) {
  .about {
    padding: 80px 0 !important;
  }
}
.about__box {
  position: relative;
  z-index: 0;
  overflow-x: hidden;
  background: url("../images/about-bg.jpg") center center no-repeat ;
  background-size: cover;
}
@supports (background-image: -webkit-image-set(url("https://storage-asset.msi.com/event/2025/CND/resident-evil-requiem-game-bundle/images/about-bg.webp") 1x)) {
  .about__box {
    background-image: -webkit-image-set(url("https://storage-asset.msi.com/event/2025/CND/resident-evil-requiem-game-bundle/images/about-bg.webp") 1x, url("https://storage-asset.msi.com/event/2025/CND/resident-evil-requiem-game-bundle/images/about-bg.jpg") 1x);
  }
}
@supports (background-image: image-set(url("https://storage-asset.msi.com/event/2025/CND/resident-evil-requiem-game-bundle/images/about-bg.webp") type("image/webp") 1x)) {
  .about__box {
    background-image: image-set(url("https://storage-asset.msi.com/event/2025/CND/resident-evil-requiem-game-bundle/images/about-bg.webp") type("image/webp") 1x, url("https://storage-asset.msi.com/event/2025/CND/resident-evil-requiem-game-bundle/images/about-bg.jpg") type("image/jpeg") 1x);
  }
}
@media (min-width: 996px) {
  .about__box {
    margin-top: -100px;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.about__box::before {
  content: "";
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/movie_shape.webp") top center no-repeat no-repeat;
  background-size: cover;
  pointer-events: none;
}
.about__box::after {
  content: "";
  position: absolute;
  z-index: 102;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/movie_shape.webp") bottom center no-repeat no-repeat;
  background-size: cover;
  pointer-events: none;
}
.about__title {
  position: relative;
  z-index: 3;
  text-align: center;
}
.about-text {
  padding-bottom: 40px;
}
@media (min-width: 996px) {
  .about-text {
    position: relative;
    font-size: 28px;
  }
}
.about-text span {
  display: inline-block;
  background: url("../images/mask_bg.webp") center center no-repeat no-repeat;
  background-size: cover;
  color: #222;
  margin: 5px;
  padding: 5px 10px;
}
.about__bg {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about__bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.about__content {
  position: relative;
  inset: 0;
  z-index: 5;
  padding: 100px 25px;
}
.about__content p {
  padding-bottom: 20px;
}
.about__story {
  width: 80%;
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}
@media (min-width: 996px) {
  .about__story {
    letter-spacing: 2px;
  }
}
.about-btn {
  padding-top: 20px;
}
@media (min-width: 996px) {
  .about-btn {
    width: 50%;
    margin: 0 auto;
  }
}

.vd-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.vd-container iframe, .vd-container object, .vd-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.common_bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.common_bg_img.base {
  background: url("../images/bg_base_pattern.webp") top center repeat;
  z-index: -100;
}
.common_bg_img.lattice {
  background: url("../images/bg_lattice_pattern.webp") top center repeat;
  background-size: 50px auto;
  mix-blend-mode: overlay;
  z-index: -99;
}
.common-deco {
  position: absolute;
  z-index: 0;
}
.common-deco img {
  width: 100%;
}
.common-deco-blood-1 {
  width: 30%;
  top: 0%;
  left: -10%;
}
.common-deco-blood-2 {
  width: 25%;
  top: 20%;
  right: -10%;
}
.common-deco-fingerprint {
  display: none;
}
@media (min-width: 996px) {
  .common-deco-fingerprint {
    display: block;
    position: absolute;
    z-index: 10;
    top: 10%;
    left: 80%;
    transform: rotate(120deg);
    width: 150px;
  }
}
.common-deco-fingerprint-2 {
  display: none;
}
@media (min-width: 996px) {
  .common-deco-fingerprint-2 {
    display: block;
    position: absolute;
    z-index: -1;
    bottom: -5%;
    left: 80%;
    transform: rotate(120deg);
    width: 150px;
  }
}
.common-deco-fingerprint-3 {
  display: none;
}
@media (min-width: 996px) {
  .common-deco-fingerprint-3 {
    display: block;
    position: absolute;
    z-index: -1;
    bottom: -15%;
    right: 5%;
    width: 120px;
  }
}
.common-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1330px;
  padding: 25px;
}
.common-title {
  text-align: center;
  position: relative;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 25px;
  font-family: var(--font), var(--MSIBodyFont);
}
@media (min-width: 996px) {
  .common-title {
    font-size: 54px;
  }
}
.common-title span {
  position: relative;
  display: inline-block;
}
.common-title span:nth-child(1), .common-title span:nth-child(5), .common-title span:nth-child(7), .common-title span:nth-child(10), .common-title span:nth-child(25), .common-title span:nth-child(30) {
  -webkit-mask: url("../images/title-mask.png") center center no-repeat;
  mask: url("../images/title-mask.png") center center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.common-title span:nth-child(15), .common-title span:nth-child(17), .common-title span:nth-child(20) {
  -webkit-mask: url("../images/text-mask.png") top left no-repeat;
  mask: url("../images/text-mask.png") top left no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.common-title span:nth-child(2), .common-title span:nth-child(9), .common-title span:nth-child(12), .common-title span:nth-child(19) {
  -webkit-mask: url("../images/title-text-mask-1.png") center center no-repeat;
  mask: url("../images/title-text-mask-1.png") center center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.common-title span:nth-child(15), .common-title span:nth-child(21), .common-title span:nth-child(22), .common-title span:last-child, .common-title span:nth-child(26), .common-title span:nth-child(31) {
  -webkit-mask: url("../images/title-text-mask-2.png") center center no-repeat;
  mask: url("../images/title-text-mask-2.png") center center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.common-title::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  width: 50%;
  height: 1px;
  background: #fff;
  -webkit-mask: url("../images/title-mask.png") top center no-repeat;
  mask: url("../images/title-mask.png") top center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  transform: translateX(-50%);
}
.common-title::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 50%;
  width: 50%;
  height: 1px;
  background: #fff;
  -webkit-mask: url("../images/title-mask.png") top center no-repeat;
  mask: url("../images/title-mask.png") top center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  transform: translateX(-90%);
}
.common-subtitle {
  position: relative;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 25px;
  font-family: var(--font), var(--MSIBodyFont);
}
.common-subtitle::before {
  content: "";
  position: absolute;
  width: 10%;
  height: 1px;
  top: 0;
  left: 50%;
  transform: translateX(-20%);
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line1.webp") center center repeat;
  mask: url("../images/mask_line1.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.common-subtitle::after {
  content: "";
  position: absolute;
  width: 10%;
  height: 1px;
  bottom: 0;
  left: 50%;
  transform: translateX(-60%);
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line1.webp") center center repeat;
  mask: url("../images/mask_line1.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
@media (min-width: 996px) {
  .common-subtitle {
    font-size: 36px;
    letter-spacing: 4px;
  }
}
.common-subtitle span {
  position: relative;
  -webkit-mask: url("../images/title-mask.png") center center no-repeat;
  mask: url("../images/title-mask.png") center center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.common__sectionTitle {
  position: relative;
  -webkit-mask: url("../images/sectionTitle-mask.png") center center no-repeat;
  mask: url("../images/sectionTitle-mask.png") center center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.common__sectionTitle__text {
  position: absolute;
  top: 50%;
  left: 40%;
  z-index: 2;
  width: 60%;
  text-align: left;
}
@media (min-width: 996px) {
  .common__sectionTitle__text {
    width: 40%;
    left: 60%;
  }
}
.common__sectionTitle img {
  width: 100%;
  vertical-align: bottom;
}
.common__sectionTitle-img {
  width: 100%;
  aspect-ratio: 750/448;
  overflow: hidden;
}
@media (min-width: 996px) {
  .common__sectionTitle-img {
    aspect-ratio: 1920/400;
  }
}
.common__sectionTitle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.common-btn {
  display: block;
  max-width: 100%;
  position: relative;
  margin: 8px;
  cursor: pointer;
}
.common-btn::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: 26px;
  height: 10px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  filter: invert(1);
  background: url("../images/icon_arrow_small.webp") center center no-repeat no-repeat;
  background-size: cover;
}
@media (min-width: 996px) {
  .common-btn::after {
    right: 20px;
  }
}
.common-btn:hover img {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.75)) brightness(1.2);
}
.common-btn img {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.common-btn span {
  position: relative;
  z-index: 2;
  color: #222;
  display: block;
  padding: 15px 45px;
}
.common-btn .top {
  top: -4px;
  left: -2px;
  width: calc(100% + 4px);
}
.common-btn .bottom {
  bottom: -4px;
  right: -2px;
  width: calc(100% + 4px);
}
.common-btn .left {
  left: -4px;
  top: 0;
  height: calc(100% + 4px);
}
.common-btn .right {
  right: -4px;
  top: 0;
  height: calc(100% + 4px);
}

.slick-arrow {
  position: absolute;
  width: 40px;
  height: 15px;
  font-size: 0;
  padding: 0;
  bottom: -40px;
  background: url("../images/icon_arrow_small.webp") center center no-repeat ;
  background-size: cover;
}
.slick-arrow:hover {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.75)) brightness(1.2);
}
.slick-prev {
  left: 50%;
  transform: translateX(-300%);
}
.slick-next {
  right: 50%;
  transform: rotate(180deg) translateX(-300%);
}
.slick-disabled {
  opacity: 0.5;
}

.popup {
  position: fixed;
  z-index: 110;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #c9c9c9;
  overflow-y: auto;
  display: none;
}
.popup.show {
  display: flex;
  align-items: center;
}
.popup__wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}
.popup__wrapper::before {
  content: "";
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 1px;
  top: 5px;
  left: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line1.webp") center center repeat;
  mask: url("../images/mask_line1.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.popup__wrapper::after {
  content: "";
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 1px;
  bottom: 5px;
  left: 0;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line3.webp") center center repeat;
  mask: url("../images/mask_line3.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.popup__wrapper__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.popup__wrapper__bg--light {
  background: linear-gradient(0deg, rgba(251, 247, 234, 0.5), rgba(10, 8, 0, 0.5));
  filter: blur(6px);
}
.popup__wrapper__bg--dark {
  background: url("../images/bg_base_pattern.webp") top center no-repeat ;
  background-size: cover;
  box-shadow: #777 0 10px 20px #111 0 0 30px;
}
.popup__inner {
  position: relative;
  z-index: 5;
  padding: 40px;
}
.popup__header {
  position: relative;
  text-align: center;
}
.popup__header h2 {
  font-size: min(max(3.5vw, 22px), 30px);
  font-family: var(--font), var(--MSIBodyFont);
  color: #fff;
  padding: 25px;
}
.popup__header__line {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  margin: 0 auto;
  max-width: auto;
  height: 2px;
  background: url("../images/mask_line3.webp") center center no-repeat repeat;
  background-size: cover;
}
.popup__body {
  padding: 35px;
}
@media (min-width: 996px) {
  .popup__body {
    width: 80%;
    margin: 0 auto;
    max-width: auto;
  }
}
.popup__close {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 1;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background: url("../images/btn-close.png") center center no-repeat ;
  background-size: cover;
}
.popup__close:hover {
  filter: drop-shadow(0 0 5px #fff brightness(1.2));
}
@media (min-width: 996px) {
  .popup__close {
    width: 50px;
    height: 50px;
    right: 30px;
    top: 30px;
  }
}

@media (min-width: 768px) {
  .lang .popup__body {
    position: relative;
    padding-bottom: 70px;
  }
}
@media (min-width: 996px) {
  .lang .popup__body {
    min-height: 500px;
  }
}
.lang__nav {
  text-align: center;
}
.lang__nav li {
  padding: 15px;
  border-bottom: #3c0909 5px solid;
  cursor: pointer;
  font-weight: bold;
  font-size: 20px;
}
.lang__nav li.lang__nav--active, .lang__nav li:hover {
  border-color: #b11818;
  color: #b11818;
}
@media (min-width: 768px) {
  .lang__nav {
    display: flex;
  }
  .lang__nav li {
    flex: 1;
    margin-right: 10px;
  }
  .lang__nav li:last-child {
    margin-right: 0;
  }
}
.lang__list {
  padding-top: 25px;
}
.lang__list li {
  display: inline-block;
  width: calc(50% - 12px);
  margin: 5px;
}
@media (min-width: 768px) {
  .lang__list li {
    width: calc(33% - 13px);
  }
}
.lang__list a {
  position: relative;
  display: block;
  background: linear-gradient(45deg, #300, #852020, #300);
  color: #fff;
  padding: 10px;
  text-align: center;
}
.lang__list a::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(45deg, #300, #852020, #300);
  -webkit-mask: url("../images/title-mask.png") center center repeat;
  mask: url("../images/title-mask.png") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.lang__list a span {
  display: block;
  position: relative;
  z-index: 10;
}
.lang__list a:hover {
  background: #b11818;
  color: #000;
}
.lang__list-box {
  display: none;
}
.lang__list-box:first-child {
  display: block;
}
.lang-note {
  padding-top: 25px;
  text-align: center;
  font-size: 16px;
  color: #999;
}
@media (min-width: 768px) {
  .lang-note {
    position: absolute;
    width: 100%;
    bottom: 45px;
    left: 0;
  }
}

.terms {
  font-size: 16px;
  line-height: 1.5;
}
.terms-title {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  margin-top: 20px;
}
.terms ul {
  margin-left: 20px;
  padding-bottom: 20px;
}
.terms ul li {
  list-style: disc;
  padding: 5px 0;
}
.terms ul li ol {
  margin-top: 5px;
  padding-bottom: 10px;
}
.terms ul li ol li {
  list-style: none;
}
.terms ul.pds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 15px 0 0;
}
.terms ul.pds li {
  border: #eee 1px solid;
  padding: 5px;
  list-style: none;
  margin: 0;
}
@media (min-width: 768px) {
  .terms ul.pds {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .terms ul.pds li {
    width: calc(33% - 10px);
  }
}
.terms b {
  font-size: 18px;
  border-bottom: #eee 3px solid;
}
.terms p {
  padding-bottom: 20px;
}
.terms a {
  color: #fff;
  border-bottom: #fff 1px solid;
}
.terms a:hover {
  border: none;
}
.terms h4 {
  padding-bottom: 10px;
  font-size: 19px;
  color: #fff;
}

.e-tailer .popup__inner {
  align-items: center;
}
.e-tailer .popup__header {
  padding-top: 20px;
}
.e-tailer__list {
  text-align: center;
}
@media (min-width: 768px) {
  .e-tailer__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.e-tailer__list a {
  display: block;
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  margin: 10px;
  border: #fff 3px solid;
  color: #000;
}
.e-tailer__list a img {
  margin: 0 auto;
  height: 50px;
  width: auto;
}
@media (min-width: 768px) {
  .e-tailer__list a {
    width: calc(33% - 30px);
  }
}
.e-tailer__list a:hover {
  border-color: #b11818;
}

.keyOut .popup__body {
  font-size: 22px;
  text-align: center;
  padding: 60px 0;
}

.line-horizonal {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line1.webp") center center repeat;
  mask: url("../images/mask_line1.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  transform-origin: center;
}
.line-vertical {
  position: absolute;
  width: 1px;
  height: 100%;
  background: #e6eff2;
  -webkit-mask: url("../images/mask_line_vertical3.webp") center center repeat;
  mask: url("../images/mask_line_vertical3.webp") center center repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.line-fix {
  position: relative;
  margin: 5px 0;
  width: 110%;
  transform: translateX(-15%);
}
.line-animate {
  mask-size: contain;
  mask-repeat: repeat;
  transform: translateZ(0);
  pointer-events: none;
}

.wtb {
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (min-width: 996px) {
  .wtb {
    padding: 80px 0 !important;
  }
}

@keyframes noise-animation {
  0% {
    background-position: 0 0;
  }
  10% {
    background-position: -5% -5%;
  }
  20% {
    background-position: -10% 5%;
  }
  30% {
    background-position: 5% -10%;
  }
  40% {
    background-position: -5% 15%;
  }
  50% {
    background-position: -10% 5%;
  }
  60% {
    background-position: 5% 5%;
  }
  70% {
    background-position: 0 10%;
  }
  80% {
    background-position: -5% -5%;
  }
  90% {
    background-position: 10% 5%;
  }
  100% {
    background-position: 5% 5%;
  }
}
