header.msiHeader,
footer.msiFooter {
  position: relative;
  z-index: 100;
  background: #fff;
}

.project {
  background: #01080d;
  color: #fff;
  position: relative;
}
.project * {
  box-sizing: border-box;
}
.project picture {
  display: block;
}
.project img {
  max-width: 100%;
  vertical-align: bottom;
}
.project .common__container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  text-align: center;
}
@media (min-width: 1930px) {
  .project .common__container {
    max-width: 1600px;
  }
}
.project .common-title {
  text-align: center;
  font-size: var(--title-xl);
  color: transparent;
  background: linear-gradient(to top, #9e7149, #edcda8);
  background-clip: text;
}
@media (min-width: 996px) {
  .project .common-title strong {
    display: block;
  }
}
.project .common-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 63px;
  margin: 10px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  background: url("../images/btn.png") center center no-repeat ;
  background-size: cover;
}
.project .common-btn span {
  color: transparent;
  background: linear-gradient(to top, #9e7149, #edcda8);
  background-clip: text;
}
.project .common-btn:hover {
  background: url("../images/btn-over.png") center center no-repeat ;
  background-size: cover;
}
@media (min-width: 996px) {
  .project .common-btn {
    width: 300px;
    height: 76px;
    font-size: 24px;
  }
}

.kv {
  position: relative;
  background: url("../images/kv-bg.jpg") center bottom no-repeat;
  background-size: 100% auto;
  background-color: #01080c;
}
.kv-img {
  position: relative;
  z-index: 0;
}
.kv-logo {
  position: absolute;
  z-index: 2;
  top: 26vw;
  left: 10vw;
  width: 45%;
}
@media (min-width: 996px) {
  .kv-logo {
    top: 10%;
    left: 22%;
    width: 30%;
  }
}
.kv__box {
  text-align: center;
  padding: 0 25px 30px;
}
@media (min-width: 996px) {
  .kv__box {
    position: absolute;
    width: 80%;
    left: 10%;
    top: 40%;
    text-align: left;
  }
}
@media (min-width: 996px) {
  .kv__title {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
  }
}
.kv h1 {
  font-size: 4.5vw;
  color: transparent;
  background: linear-gradient(45deg, #fff, #fbeb92, #fff);
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 200% 200%;
  animation: gradient-animation 3s ease infinite;
}
.kv h1 b, .kv h1 strong {
  display: block;
}
.kv h1 span {
  font-weight: normal;
  font-size: 60%;
}
@media (min-width: 996px) {
  .kv h1 {
    font-size: 24px;
  }
}
.kv-pd {
  width: 40%;
  margin: 0 auto;
  max-width: auto;
  padding: 15px 0;
}
@media (min-width: 996px) {
  .kv-pd {
    padding: 0;
    margin: 0;
    flex: 0 0 28%;
  }
}
.kv__icons {
  font-size: 11px;
  line-height: 12px;
}
.kv__icons img {
  width: 45%;
  margin: 0 auto;
  max-width: auto;
}
.kv__icons p {
  padding-top: 8px;
  opacity: 0.7;
}
@media (min-width: 996px) {
  .kv__icons {
    display: flex;
    align-items: center;
    padding-top: 35px;
  }
  .kv__icons img {
    width: auto;
    height: 45px;
    margin-right: 25px;
  }
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.intro {
  text-align: center;
  padding: 50px 0;
  background: url("../images/intro-bg.jpg") top center no-repeat ;
  background-size: cover;
  background-attachment: fixed;
}
@media (min-width: 996px) {
  .intro {
    padding: 80px 0;
  }
}

.model {
  position: relative;
  background: url("../images/bg.jpg") center bottom no-repeat ;
  background-size: cover;
  padding: 50px 0;
  overflow: hidden;
}
@media (min-width: 996px) {
  .model {
    padding: 80px 0;
  }
}
.model::before, .model::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 0% 0%;
  pointer-events: none;
}
.model::before {
  background-image: url("../images/smoke.png");
  background-size: 50% auto;
  animation: smoke-drift 25s linear infinite;
  z-index: 1;
}
.model::after {
  background-image: url("../images/smoke2.png");
  background-size: 60% auto;
  animation: smoke-drift 35s linear infinite -3s;
  opacity: 0.95;
  z-index: 2;
}
.model .common-title {
  padding-bottom: 30px;
}
.model__box {
  position: relative;
  z-index: 5;
  padding: 25px;
}
.model__box::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to right, transparent, #01080d, transparent);
  opacity: 0.6;
  filter: blur(5);
}
.model ul {
  position: relative;
  z-index: 2;
}
@media (min-width: 996px) {
  .model ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.model li {
  position: relative;
  padding: 10px 15px;
  border-left: #9e7149 1px solid;
  border-right: #9e7149 1px solid;
  border-top: #edcda8 1px solid;
  border-bottom: #edcda8 1px solid;
  margin: 10px 0;
}
.model li::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to right, transparent, #01080d, transparent);
  opacity: 0.6;
  filter: blur(5);
}
.model li span {
  position: relative;
  z-index: 1;
}
@media (min-width: 996px) {
  .model li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(33% - 20px);
    margin: 10px;
    padding: 50px;
  }
}

@keyframes smoke-drift {
  0% {
    transform: translateX(-100%) translateY(0%);
    opacity: 0.3;
  }
  25% {
    opacity: 0.6;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    transform: translateX(100%) translateY(-10%);
    opacity: 0;
  }
}
.popup {
  position: fixed;
  z-index: 110;
  inset: 0;
  background: linear-gradient(45deg, #19243e, #151d31);
  color: #fff;
  overflow-y: auto;
  display: none;
}
@media (min-width: 996px) {
  .popup {
    background: rgba(0, 0, 0, 0.5);
  }
}
.popup.show {
  display: flex;
  align-items: center;
}
.popup__wrapper {
  position: relative;
  z-index: 3;
  width: 90%;
  margin: 0 auto;
  max-width: 1000px;
  padding: 8vw 0 0;
}
@media (min-width: 996px) {
  .popup__wrapper {
    padding-top: 120px;
    width: 80%;
  }
}
.popup__inner {
  position: relative;
  z-index: 5;
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
}
@media (min-width: 996px) {
  .popup__inner {
    height: 80vh;
    margin-top: 10vh;
    background: url("../images/popup-bg.png") top center no-repeat ;
    background-size: cover;
    background-size: contain;
  }
}
.popup__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.6;
  -webkit-mask: url("../images/img-mask-xs.png") top center no-repeat;
  mask: url("../images/img-mask-xs.png") top center no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background: url("../images/paper-bg.jpg") left bottom no-repeat ;
  background-size: cover;
}
@media (min-width: 996px) {
  .popup__inner::before {
    -webkit-mask: url("../images/img-mask.png") top center no-repeat;
    mask: url("../images/img-mask.png") top center no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
  }
}
.popup__header {
  position: relative;
  text-align: center;
  font-size: var(--title-xl);
  padding-bottom: 35px;
  color: transparent;
  background: linear-gradient(to top, #9e7149, #edcda8);
  background-clip: text;
}
.popup__content {
  overflow-y: auto;
  height: 80vh;
  line-height: 1.8;
  padding: 0 25px;
}
@media (min-width: 996px) {
  .popup__content {
    padding: 0 60px;
    height: 45vh;
  }
}
.popup__content h3 {
  font-size: 20px;
  padding-bottom: 20px;
}
.popup__content ul {
  margin-left: 20px;
}
.popup__content li {
  list-style: disc;
  padding: 5px 0;
}
.popup__content::-webkit-scrollbar {
  width: 6px;
  background: #43322b;
}
.popup__content::-webkit-scrollbar-thumb {
  background: url("../images/paper-bg.jpg") left bottom no-repeat ;
  background-size: cover;
}
.popup-close {
  position: fixed;
  right: calc(50% - 25px);
  bottom: 20px;
  z-index: 5;
  width: 45px;
  height: 45px;
  border-radius: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  background: url("../images/btn-close.png") left bottom no-repeat ;
  background-size: cover;
}
.popup-close::before {
  content: "\ea02";
  font-family: "msi-icons";
}
.popup-close:hover {
  filter: drop-shadow(0 0 5px rgba(240, 255, 0, 0.75)) brightness(1.2);
}
@media (min-width: 996px) {
  .popup-close {
    width: 60px;
    height: 60px;
  }
}

.howtoredeem .step {
  text-align: center;
  margin-bottom: 20px;
}
.howtoredeem .step h3 {
  display: inline-block;
  border-radius: 30px;
  border: #ccc 1px solid;
  padding: 10px 25px;
  margin: 0 auto;
}
@media (min-width: 996px) {
  .howtoredeem .step {
    display: flex;
    text-align: left;
  }
  .howtoredeem .step h3 {
    flex: 0 0 150px;
    text-align: center;
    margin-right: 20px;
  }
  .howtoredeem .step p {
    border-left: #ccc 1px dashed;
    padding-left: 20px;
  }
}
.howtoredeem .btn {
  text-align: center;
}
.howtoredeem .btn a {
  margin: 0 auto;
}
@media (min-width: 996px) {
  .howtoredeem .btn {
    padding: 40px 0;
  }
}
.howtoredeem li {
  font-size: 16px;
  padding: 4px 0;
  opacity: 0.8;
}

@media (min-width: 996px) {
  .terms b {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 10px 15px;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .terms ol {
    display: flex;
    flex-wrap: wrap;
  }
  .terms ol li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(33% - 20px);
    margin: 5px;
    padding: 5px 10px;
    background: #01080d;
  }
}
