.kv {
  background: url("../images/kv-bg-xs.jpg") bottom center no-repeat ;
  background-size: cover;
  text-align: center;
}
@media (min-width: 996px) {
  .kv {
    background: url("../images/kv-bg.jpg") bottom center no-repeat ;
    background-size: cover;
  }
}
.kv img {
  vertical-align: bottom;
}
.kv__box {
  width: 80%;
  margin: 0 auto;
  max-width: auto;
  padding: 45px 0;
}
@media (min-width: 996px) {
  .kv__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    width: 85%;
  }
}
.kv-pd {
  width: 80%;
  margin: 0 auto;
  max-width: auto;
  padding-top: 45px;
}
@media (min-width: 996px) {
  .kv-pd {
    flex: 0 0 40%;
    padding-top: 0;
  }
}
@media (min-width: 996px) {
  .kv-text {
    flex: 0 0 50%;
  }
}

.prod__tab {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}
.prod__tab.on button {
  opacity: 0.9;
  filter: grayscale(60%);
}
.prod__tab button {
  flex: 1;
  transition: 0.5s all ease;
}
.prod__tab button:hover, .prod__tab button.active {
  transform: scale(1.05);
  z-index: 2;
  opacity: 1;
  filter: grayscale(0%);
}
.prod__category {
  padding: 50px 0 20px;
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}
.prod__category ul {
  display: none;
}
.prod__category ul.active {
  display: flex;
  justify-content: center;
}
.prod__category ul li {
  position: relative;
  overflow: hidden;
  flex: 1;
  border-radius: 20px;
  padding: 25px 10px;
  margin: 5px;
  cursor: pointer;
  transition: 1s all ease;
  font-weight: bold;
  text-shadow: #000 1px 5px 3px;
  box-shadow: #000 1px 5px 30px;
}
.prod__category ul li::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 500%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, #9980d9, #17e3fc, #6857c5, #0ee7fd);
  transition: 1s all ease;
}
.prod__category ul li:hover::before {
  transform: translate(-50%, -50%) rotate(360deg);
}
.prod__category ul li.active::before {
  background: linear-gradient(40deg, #ebf64f, #6857c5, #db3fe3);
}
.prod__category ul li span {
  position: relative;
}
.prod__box {
  overflow: auto;
}
.prod-table {
  display: none;
}
.prod-table.active {
  display: block;
}
.prod-table h2 {
  padding: 35px 0 20px;
}
.prod-table ul li {
  position: relative;
  color: #222;
  font-weight: bold;
  text-shadow: #fff 1px 1px 5px;
  background: linear-gradient(90deg, #9980d9, #17e3fc, #6857c5, #0ee7fd);
  padding: 2px;
}
.prod-table ul li a {
  background: rgba(255, 255, 255, 0.6);
  display: block;
  color: #222;
  padding: 10px;
}
.prod-table ul li a:hover {
  background: rgb(255, 255, 255);
}
@media (min-width: 996px) {
  .prod-table ul li {
    display: inline-block;
    width: calc(33.3333333333% - 15px);
    margin: 5px;
  }
}

.info__box {
  box-shadow: #c600ea 0 0 60px;
  border-radius: 50px;
  padding: 25px;
  background: #fff;
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}
@media (min-width: 996px) {
  .info__box img {
    width: 80%;
  }
}
.info__text {
  font-weight: bold;
  text-shadow: #c600ea 2px 2px 3px;
  font-size: 24px;
}
.info__text p {
  padding-bottom: 60px;
}
.info__text p b {
  color: #fffc00;
}
.info__text p span {
  font-size: 70%;
}
@media (min-width: 996px) {
  .info__text {
    font-size: 34px;
  }
}
.info-note {
  font-weight: bold;
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  padding: 25px 0;
}

.redeem__box {
  display: flex;
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}
.redeem__box a, .redeem__box div {
  flex: 1;
}
@media (min-width: 996px) {
  .redeem__box a, .redeem__box div {
    margin-right: 45px;
  }
  .redeem__box a:last-child, .redeem__box div:last-child {
    margin-right: 0;
  }
}
.redeem-note {
  color: #fffc00;
  padding: 35px 0 45px;
}
.redeem-btn {
  width: 80%;
  margin: 0 auto;
  max-width: 600px;
  padding-bottom: 35px;
}
.redeem-btn button:hover img {
  transform: scale(1.05);
}
.redeem-text {
  line-height: 1.6;
}

.feature__box {
  position: relative;
  background: #fff;
  box-shadow: #c600ea 0 0 60px;
  padding: 15px;
}
.feature__box::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: linear-gradient(45deg, #9980d9, #17e3fc, #6857c5, #1f22a9, #0ee7fd);
}
.feature__box::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: #fff;
}
.feature__inner {
  position: relative;
  z-index: 2;
  background: linear-gradient(45deg, #9980d9, #17e3fc, #6857c5, #1f22a9, #0ee7fd);
  padding: 2px;
}
.feature__inner::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 2px;
  background: #fff;
}
.feature__inner ul {
  position: relative;
  z-index: 4;
  color: #222;
  text-align: left;
  font-weight: bold;
  font-size: 20px;
  margin-left: 30px;
}
.feature__inner ul b {
  color: #56008c;
  display: block;
}
.feature__inner ul li {
  padding: 15px;
  list-style: disc;
}
@media (min-width: 996px) {
  .feature__inner ul {
    margin-left: 80px;
    padding: 50px 0;
    font-size: 24px;
  }
  .feature__inner ul li {
    padding: 30px 20px;
    line-height: 1.8;
  }
}

.wtb p {
  padding-bottom: 30px;
}
.wtb p span {
  color: #fffc00;
}
.wtb__box {
  margin-bottom: 30px;
  background: #fff;
  box-shadow: #c600ea 0 0 60px;
  padding: 25px;
}

.popup {
  display: none;
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 25px;
  background: rgba(0, 0, 0, 0.7);
}
.popup__wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  background: #fff;
  color: #111;
  position: relative;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  padding-bottom: 10px;
}
.popup-close {
  position: sticky;
  top: 0;
}
.popup-close:hover::before {
  background: rgba(255, 255, 255, 0.5);
}
.popup-close::before {
  font-family: "msi-icons" !important;
  content: "\ea02";
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 100%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
@media (min-width: 996px) {
  .popup-close::before {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}
.popup__header {
  position: sticky;
  top: 0;
  background: linear-gradient(to left, #4c0569, #be30b2, #2594e9);
  padding: 10px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  text-shadow: #111 1px 1px 3px;
}
@media (min-width: 996px) {
  .popup__header {
    font-size: 30px;
  }
}
.popup__content {
  padding: 25px;
  height: 80vh;
  overflow-y: auto;
  margin: 10px 10px 30px;
}
.popup__content::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.popup__content::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.popup__content::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #4292e9, #8ca6d1, #4292e9);
  border-radius: 10px;
}
@media (min-width: 996px) {
  .popup__content {
    padding: 80px;
  }
}

#terms {
  font-size: 17px;
  line-height: 1.8;
  text-align: left;
}
#terms ul {
  margin-left: 20px;
}
#terms ul li {
  list-style: disc;
  padding: 5px 0;
}
#terms ol {
  margin-left: 25px;
  padding: 15px 0;
}
#terms ol li {
  list-style: lower-roman;
}
#terms ol li ul {
  margin-left: 20px;
}
#terms ol li ul li {
  list-style: disc;
  padding: 5px 0;
}
#terms table {
  width: 100%;
  border-collapse: collapse;
}
#terms table th {
  background: linear-gradient(to left, #8ca6d1, #4292e9);
  padding: 15px;
  text-align: center;
  color: #fff;
  border-right: #fff 1px solid;
}
#terms table td {
  border: #8ca6d1 1px solid;
  padding: 5px 10px;
  text-align: center;
  font-size: 15px;
  font-family: var(--MSIBodyFont);
}
#terms .title {
  margin: 20px 0 10px;
  position: relative;
}
#terms .title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  background: linear-gradient(to left, #8ca6d1, #4292e9);
}
#terms .title span {
  display: inline-block;
  position: relative;
  z-index: 2;
  background: #fff;
  padding-right: 5px;
}

.toolBar {
  position: fixed;
  z-index: 100;
  right: 10px;
  bottom: 30px;
  width: 40px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.toolBar.show {
  opacity: 1;
  visibility: visible;
}
.toolBar:hover {
  filter: brightness(120%);
}
@media (min-width: 996px) {
  .toolBar {
    right: 30px;
    width: 80px;
  }
}

.project {
  position: relative;
  background: #000;
  color: #fff;
  font-size: 20px;
}
.project img {
  max-width: 100%;
}

.wrapper {
  background: url("../images/bg.jpg") top center repeat-y;
  background-size: 100% auto;
  padding: 25px;
  text-align: center;
}

.common-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
  padding-top: 30px;
}
@media (min-width: 996px) {
  .common-container {
    padding-top: 80px;
  }
}
.common-title {
  padding-bottom: 30px;
}
.common-title img {
  max-width: 60%;
}
