.kv {
  padding-top: 2vw;
}

@media (min-width: 996px) {
  .kv {
    padding-top: 3vw;
  }
}

.kv img {
  width: 100%;
}

.kv-badge img {
  height: 80px;
  width: auto;
}

@media (min-width: 996px) {
  .kv-badge {
    position: absolute;
    top: 0;
    left: 0;
  }
  .kv-badge img {
    height: 150px;
  }
}

.kv__box {
  position: relative;
  width: 80%;
  margin: 0 auto;
  max-width: auto;
}

@media (min-width: 996px) {
  .kv__box {
    width: 55%;
  }
}

.kv-base {
  position: relative;
  z-index: 0;
}

.kv-layer {
  position: absolute;
  inset: 0;
}

.kv-circle {
  -webkit-animation: 3s brightness infinite ease-in-out;
          animation: 3s brightness infinite ease-in-out;
}

.kv-pd {
  -webkit-animation: 5s float infinite linear;
          animation: 5s float infinite linear;
}

.kv-pd2 {
  -webkit-animation: 4s float infinite .5s ease-in-out forwards;
          animation: 4s float infinite .5s ease-in-out forwards;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@-webkit-keyframes brightness {
  0%, 100% {
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
  }
  50% {
    -webkit-filter: brightness(150%);
            filter: brightness(150%);
  }
}

@keyframes brightness {
  0%, 100% {
    -webkit-filter: brightness(100%);
            filter: brightness(100%);
  }
  50% {
    -webkit-filter: brightness(150%);
            filter: brightness(150%);
  }
}

.plan {
  --radius: 20px;
}

.plan__card {
  overflow: hidden;
  background: #fff;
  border-top-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  text-align: center;
  color: #222;
  margin-bottom: 20px;
}

@media (min-width: 996px) {
  .plan__card {
    --radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 45px;
  }
}

.plan__badge {
  padding: 15px 0;
  border-bottom: #333 1px solid;
  width: 60%;
  margin: 0 auto;
  max-width: 250px;
}

@media (min-width: 996px) {
  .plan__badge {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 15%;
            flex: 0 0 15%;
    border: none;
  }
  .plan__badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: 110%;
    width: 1px;
    height: 100%;
    background: #333;
  }
}

.plan__combo {
  padding: 25px;
  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;
}

@media (min-width: 996px) {
  .plan__combo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 55%;
            flex: 0 0 55%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 996px) {
  .plan__pd {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45%;
            flex: 0 0 45%;
  }
}

.plan__pd h4 {
  padding-bottom: 10px;
  line-height: 1.2;
}

.plan__pd h4 span {
  display: block;
  font-size: 80%;
}

.plan__pd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.plan__pd li {
  border: #333 1px solid;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
}

.plan-plus {
  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;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: #000;
  color: #fff;
  margin: 20px auto;
}

.plan__gift {
  position: relative;
}

@media (min-width: 996px) {
  .plan__gift {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}

.plan__gift::before {
  content: "";
  position: absolute;
  inset: 0 0 0 -10%;
  width: 150%;
  height: 150%;
  background: url("../images/bg-card.jpg") top left no-repeat ;
  background-size: cover;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}

@media (min-width: 996px) {
  .plan__gift::before {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
    top: -22%;
    left: 5%;
  }
}

.plan__gift figure {
  position: relative;
  padding: 25px;
  font-weight: bold;
  text-transform: uppercase;
}

.plan__gift figure img {
  width: 50%;
  margin: 0 auto;
  max-width: 150px;
}

@media (min-width: 996px) {
  .plan__gift figure {
    font-size: 16px;
  }
  .plan__gift figure figcaption {
    width: 90%;
    margin: 0 auto;
    max-width: auto;
  }
}

.plan__btns a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 996px) {
  .plan__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
  }
}

.wtb {
  padding: 45px 0;
}

.wtb h2 {
  text-align: center;
  padding-bottom: 40px;
}

.popup {
  position: fixed;
  z-index: 100;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
}

.popup__inner {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
  height: auto;
  background: #fff;
  color: #222;
  -webkit-box-shadow: #ccc 0 0 30px;
          box-shadow: #ccc 0 0 30px;
}

.popup__close {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 100%;
}

.popup__close:hover::before {
  background: linear-gradient(95deg, #1cc6f6, #0717f9, #369, #1cc6f6);
}

.popup__close::before {
  font-family: "msi-icons" !important;
  content: "\ea02";
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 100%;
  width: 25px;
  height: 25px;
  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;
  background: radial-gradient(circle at center, #0717f9, #369);
  cursor: pointer;
}

@media (min-width: 996px) {
  .popup__close::before {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}

.popup__header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  padding: 10px;
  text-align: center;
  font-size: 24px;
  color: #222;
}

@media (min-width: 996px) {
  .popup__header {
    font-size: 30px;
  }
}

.popup__content {
  height: 80vh;
  overflow-y: auto;
  padding: 25px;
}

.popup__content::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.popup__content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.popup__content::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#737576), color-stop(#bdbfc3), to(#96999c));
  background: linear-gradient(to bottom, #737576, #bdbfc3, #96999c);
  border-radius: 10px;
}

@media (min-width: 996px) {
  .popup__content {
    padding: 50px;
  }
}

.terms {
  font-size: 17px;
  line-height: 1.8;
  font-weight: normal;
}

.terms-title {
  font-weight: bold;
  font-size: 20px;
  padding-bottom: 15px;
  margin-top: 25px;
}

.terms ul {
  margin-left: 20px;
}

.terms ul li {
  list-style: disc;
  padding: 5px 0;
}

.terms ol {
  margin-left: 25px;
}

.terms ol li {
  list-style: lower-roman;
}

.terms h4 {
  padding: 15px 0;
}

.terms a {
  color: #dc1a92;
  text-decoration: underline;
}

.terms a:hover {
  text-decoration: none;
}

.terms table {
  display: table;
  margin-top: 10px;
  width: 100%;
}

.terms table th {
  background: -webkit-gradient(linear, left top, right top, from(#dc7d6e), color-stop(#e6ac75), to(#ea5a5a));
  background: linear-gradient(to right, #dc7d6e, #e6ac75, #ea5a5a);
  padding: 10px;
  color: #fff;
}

.terms table td {
  border: #ccc 1px solid;
  padding: 10px;
}

.redeemBox .redeem {
  padding: 25px 25px 40px;
  text-align: center;
}

.redeemBox .redeem a {
  color: #dc1a9b;
  text-decoration: underline;
}

.redeemBox .redeem a:hover {
  text-decoration: none;
}

.diablo {
  text-align: center;
}

.diablo a {
  color: #c2962f;
}

.diablo a:hover {
  text-decoration: underline;
}

.diablo .redeem__step {
  font-weight: bold;
  padding-bottom: 20px;
  margin-top: 40px;
}

.diablo .redeem__step span {
  display: inline-block;
  background: linear-gradient(45deg, rgba(129, 32, 103, 0.5), rgba(255, 98, 161, 0.5));
  border-radius: 20px;
  padding: 10px;
  color: #fff;
}

.diablo .redeem__step:first-child {
  margin-top: 0;
}

.diablo .redeem__text {
  width: 90%;
  margin: 0 auto;
  max-width: 800px;
}

.diablo .redeem__note {
  opacity: .6;
  padding-top: 15px;
  font-size: 14px;
}

.project {
  position: relative;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(50%, #000), color-stop(#0f1314), color-stop(#000), color-stop(#597365), color-stop(#000), color-stop(#070f17), color-stop(#000), to(#239970));
  background: linear-gradient(to bottom, #000 0%, #000 50%, #0f1314, #000, #597365, #000, #070f17, #000, #239970);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
}

.project::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../images/bg-xs.jpg") top center no-repeat ;
  background-size: cover;
  background-size: 100% auto;
}

@media (min-width: 996px) {
  .project::before {
    background: url("../images/bg-lg.jpg") top center no-repeat ;
    background-size: cover;
    background-size: 100% auto;
  }
}

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

.project picture {
  display: block;
}

.project section {
  position: relative;
  z-index: 2;
}

.project .common-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1330px;
  padding: 25px;
}

.project .common-title span {
  font-size: var(--title-xl);
  color: transparent;
  background: linear-gradient(95deg, #64c4a5, #199d47, #2ace8f, #64c4a5);
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.project .common-btn {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  line-height: 1;
  outline: none;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 2px;
  cursor: pointer;
  border-top-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.project .common-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at center, #4ed01b, #33ed1a);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 1s all ease-in-out;
  transition: 1s all ease-in-out;
}

.project .common-btn::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 1px;
  background: #000;
}

.project .common-btn span {
  position: relative;
  z-index: 3;
  display: block;
  background: linear-gradient(45deg, #0ca051, #3de1b0);
  padding: 20px;
  -webkit-transition: 1s all ease-in-out;
  transition: 1s all ease-in-out;
  text-align: center;
}

.project .common-btn:hover span {
  background: linear-gradient(95deg, #64c4a5, #4ed01b, #33ed1a, #64c4a5);
}

.project .common-btn:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(100);
          transform: translate(-50%, -50%) scale(100);
}

.project .intro h1 {
  text-align: center;
  padding: 25px;
  font-size: 20px;
  font-weight: bold;
}

@media (min-width: 996px) {
  .project .intro h1 {
    font-size: 24px;
  }
  .project .intro h1 span {
    display: block;
  }
}

.project .wtb {
  margin: 60px 0;
}
/*# sourceMappingURL=main.css.map */