.kv {
  position: relative;
  text-align: center;
}
.kv-bubble {
  position: absolute;
  z-index: 1;
  width: 50px;
  height: 50px;
}
.kv-bubble:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/bubble.png") center center no-repeat;
  background-size: cover;
  -webkit-animation: kv-bubble-rotate 16s linear infinite;
  animation: kv-bubble-rotate 16s linear infinite;
}
.kv-bubble-1 {
  top: 14%;
  left: 15%;
  -webkit-animation: kv-bubble-float 3s ease-in-out infinite;
  animation: kv-bubble-float 3s ease-in-out infinite;
}
.kv-bubble-2 {
  top: 20%;
  left: 5%;
  width: 120px;
  height: 120px;
  -webkit-animation: kv-bubble-float 6s ease-in-out infinite;
  animation: kv-bubble-float 6s ease-in-out infinite;
}
.kv-bubble-3 {
  top: 20%;
  left: 65%;
  width: 60px;
  height: 60px;
  -webkit-animation: kv-bubble-float 3s ease-in-out 0.5s infinite;
  animation: kv-bubble-float 3s ease-in-out 0.5s infinite;
}
.kv-bubble-4 {
  top: 13%;
  left: 45%;
  width: 100px;
  height: 100px;
  -webkit-animation: kv-bubble-float 5s ease-in-out 0.2s infinite;
  animation: kv-bubble-float 5s ease-in-out 0.2s infinite;
}
.kv-bubble-5 {
  top: 81%;
  left: 35%;
  width: 50px;
  height: 50px;
  -webkit-animation: kv-bubble-float 3s ease-in-out infinite;
  animation: kv-bubble-float 3s ease-in-out infinite;
}

.kv__box {
  position: relative;
  z-index: 2;
}
@media (min-width: 996px) {
  .kv__box {
    width: 100%;
    margin: 0 auto;
    max-width: 1800px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.kv__title {
  position: relative;
}
.kv__title h1 {
  position: relative;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-animation: kv-title-slide-down 0.8s ease-out forwards;
  animation: kv-title-slide-down 0.8s ease-out forwards;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.kv__title h1 span {
  font-size: 0;
}

.kv__umbrella {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(5px) scaleY(0.5);
  transform: translateX(-50%) translateY(5px) scaleY(0.5);
  width: 100%;
  opacity: 0;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-animation: kv-umbrella-open-up 0.2s ease-out forwards;
  animation: kv-umbrella-open-up 0.2s ease-out forwards;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.kv-pd {
  width: 80%;
  margin: 0 auto;
  max-width: auto;
}

@-webkit-keyframes kv-title-slide-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes kv-title-slide-down {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes kv-umbrella-open-up {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(5px) scaleY(0.5);
    transform: translateX(-50%) translateY(5px) scaleY(0.5);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0) scaleY(1);
    transform: translateX(-50%) translateY(0) scaleY(1);
  }
}
@keyframes kv-umbrella-open-up {
  from {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(5px) scaleY(0.5);
    transform: translateX(-50%) translateY(5px) scaleY(0.5);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0) scaleY(1);
    transform: translateX(-50%) translateY(0) scaleY(1);
  }
}
@-webkit-keyframes kv-bubble-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes kv-bubble-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes kv-bubble-float {
  0%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes kv-bubble-float {
  0%, 100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.pd .common-container {
  position: relative;
  overflow: hidden;
}
.pd-title {
  position: relative;
  z-index: 2;
}
.pd-title img {
  width: 60%;
}
@media (min-width: 996px) {
  .pd-title img {
    width: auto;
    height: 120px;
  }
}

.pd__box {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: -20px;
}
.pd__box > div {
  position: relative;
  z-index: 2;
  width: calc(50% - 10px);
  margin: 5px;
}
.pd__box--top {
  margin-bottom: 20px;
}

.popup {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
}
.popup::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(45deg, #9999fe, #da49fd);
  opacity: 0.8;
}
.popup__inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
  height: auto;
  background: #fff;
  color: #222;
  padding: 25px;
}
.popup__close {
  position: sticky;
  z-index: 10;
  top: 0;
  left: 100%;
  width: 32px;
  height: 32px;
  margin-left: auto;
  cursor: pointer;
  -webkit-transition: 0.3s background ease-in-out;
  transition: 0.3s background ease-in-out;
}
@media (min-width: 996px) {
  .popup__close {
    width: 50px;
    height: 50px;
  }
}
.popup__close:hover::before {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}
.popup__close:hover::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup__close:hover::before, .popup__close:hover::after {
  background: rgb(207.7445652174, 22.5543478261, 252.4456521739);
}
.popup__close::before, .popup__close::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: #9999fe;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
@media (min-width: 996px) {
  .popup__close::before, .popup__close::after {
    width: 28px;
    height: 4px;
  }
}
.popup__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
.popup__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.popup__header {
  position: sticky;
  top: 0;
  background: url("../images/kv-bg.jpg") center right no-repeat;
  background-size: cover;
  padding: 10px;
  text-align: center;
  font-size: 24px;
  color: #222;
  font-weight: bold;
}
@media (min-width: 996px) {
  .popup__header {
    font-size: 30px;
  }
}
.popup__body {
  height: 85vh;
  overflow-y: auto;
  padding: 0 25px;
}
.popup__body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.popup__body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.popup__body::-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__body {
    padding: 50px;
  }
}

.terms {
  font-size: 17px;
  line-height: 1.8;
  font-weight: normal;
}
.terms-btn {
  position: relative;
  z-index: 5;
  text-align: center;
  padding-top: 45px;
  padding-bottom: 45px;
}
.terms-btn button {
  display: inline-block;
  padding: 15px 20px;
  background: linear-gradient(45deg, #9999fe, #da49fd);
  color: #fff;
  text-shadow: #fff 1px 1px 8px;
  font-size: 20px;
  border-radius: 10px;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
.terms-btn button:hover {
  -webkit-transform: scale(1.05) translateY(3px);
  transform: scale(1.05) translateY(3px);
}
.terms-title {
  font-weight: bold;
  font-size: 16px;
  margin-top: 25px;
  margin-bottom: 10px;
  display: inline-block;
  color: #000;
}
.terms-title:first-child {
  margin-top: 0;
}
.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 h3 {
  font-size: 17px;
  padding-top: 10px;
}
.terms h4 {
  padding: 15px 0;
}
.terms a {
  color: #da49fd;
  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: 0.6;
  padding-top: 15px;
  font-size: 14px;
}

.wtb {
  position: relative;
  z-index: 20;
  background: -webkit-gradient(linear, right top, left top, from(rgb(218, 73, 253)), to(rgb(136, 179, 254)));
  background: linear-gradient(-90deg, rgb(218, 73, 253) 0%, rgb(136, 179, 254) 100%);
}
.wtb-top {
  position: relative;
  z-index: 20;
}
.wtb-top img {
  width: 100%;
}

.wtbt_extend button {
  background: #fff;
}

.project {
  position: relative;
  overflow-x: clip;
}
.project img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
.project picture {
  display: block;
}
.project .common-container {
  padding: 25px;
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
}
.project .common-title {
  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;
  width: 100%;
  padding: 10px 0 20px 0;
  color: #fff;
  font-size: 20px;
  font-family: "gemunu-libre", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: none;
}
.project .common-title::before, .project .common-title::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 3px;
}
.project .common-title::before {
  background: -webkit-gradient(linear, left top, right top, from(rgba(230, 0, 18, 0)), to(rgba(230, 0, 18, 0.55)));
  background: linear-gradient(90deg, rgba(230, 0, 18, 0), rgba(230, 0, 18, 0.55));
}
.project .common-title::after {
  background: -webkit-gradient(linear, left top, right top, from(rgba(230, 0, 18, 0.55)), to(rgba(230, 0, 18, 0)));
  background: linear-gradient(90deg, rgba(230, 0, 18, 0.55), rgba(230, 0, 18, 0));
}
.project .common-title span {
  display: inline-block;
  background: #e60012;
  padding: 8px 28px;
  min-width: 250px;
  width: 100%;
  text-align: center;
}
@media (min-width: 996px) {
  .project .common-title {
    padding-bottom: 48px;
    font-size: 50px;
  }
  .project .common-title span {
    width: auto;
    padding: 9px 34px;
  }
}
.project .bp .common-title::before {
  background: -webkit-gradient(linear, left top, right top, from(rgba(181, 160, 107, 0)), to(rgba(181, 160, 107, 0.65)));
  background: linear-gradient(90deg, rgba(181, 160, 107, 0), rgba(181, 160, 107, 0.65));
}
.project .bp .common-title::after {
  background: -webkit-gradient(linear, left top, right top, from(rgba(181, 160, 107, 0.65)), to(rgba(181, 160, 107, 0)));
  background: linear-gradient(90deg, rgba(181, 160, 107, 0.65), rgba(181, 160, 107, 0));
}
.project .bp .common-title span {
  background: #b5a06b;
  min-width: 0;
  padding: 8px 18px;
}
@media (min-width: 996px) {
  .project .bp .common-title span {
    padding: 9px 24px;
  }
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}

@-webkit-keyframes sway {
  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}
@keyframes sway {
  0%, 100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}
@-webkit-keyframes sway2 {
  0%, 100% {
    -webkit-transform: rotate(-15deg) translateY(0px);
    transform: rotate(-15deg) translateY(0px);
  }
  50% {
    -webkit-transform: rotate(-12deg) translateY(-3px);
    transform: rotate(-12deg) translateY(-3px);
  }
}
@keyframes sway2 {
  0%, 100% {
    -webkit-transform: rotate(-15deg) translateY(0px);
    transform: rotate(-15deg) translateY(0px);
  }
  50% {
    -webkit-transform: rotate(-12deg) translateY(-3px);
    transform: rotate(-12deg) translateY(-3px);
  }
}/*# sourceMappingURL=main.css.map */