.kv {
  position: relative;
}

.kv img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.kv .star {
  position: absolute;
}

.kv .star-1 {
  width: 5%;
  top: 10%;
  left: 15%;
  -webkit-animation: rotate 5s linear infinite;
          animation: rotate 5s linear infinite;
}

@media (min-width: 996px) {
  .kv .star-1 {
    width: 40px;
    top: 25%;
    left: 20%;
  }
}

.kv .star-2 {
  width: 6.5%;
  top: 15%;
  left: 55%;
  -webkit-animation: rotate 3s linear infinite;
          animation: rotate 3s linear infinite;
}

@media (min-width: 996px) {
  .kv .star-2 {
    width: 40px;
    top: 25%;
    left: 60%;
  }
}

.kv .star-3 {
  width: 5%;
  right: 5%;
  bottom: 15%;
  -webkit-animation: rotate 4s linear infinite;
          animation: rotate 4s linear infinite;
}

@media (min-width: 996px) {
  .kv .star-3 {
    width: 40px;
    right: 20%;
    bottom: 20%;
  }
}

@-webkit-keyframes rotate {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.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;
    position: relative;
    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;
    overflow: hidden;
  }
  .plan__card::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 24%;
    height: 150%;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    background: #000;
  }
}

.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%;
    color: #fff;
  }
}

.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: 70%;
  margin: 0 auto;
  max-width: 250px;
}

@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(15deg, #ffefb5, #1abaf5, #a9fb07);
}

.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: linear-gradient(95deg, #ffefb5, #1abaf5, #a9fb07);
  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(#0b5c48), color-stop(50%, #0b5c48), to(#022c22));
  background: linear-gradient(to bottom, #0b5c48 0%, #0b5c48 50%, #022c22);
  font-size: 18px;
  line-height: 1.5;
  overflow-x: hidden;
}

.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, #ecdf88, #feca0f, #fce730, #f1fdff);
  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, #cdaf37, #ee9209);
  -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(95deg, #ffefb5, #1abaf5, #a9fb07);
  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(15deg, #ffefb5, #1abaf5, #a9fb07);
}

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

.project .light {
  position: relative;
  z-index: 10;
  margin-top: -20px;
  height: 40px;
  background: url("../images/light.png") center center repeat-x;
}

.project .intro {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  padding: 45px 25px;
  text-align: center;
}

.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 strong {
  color: #eae60c;
}

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