.intro {
    font-size: 20px;
    font-weight: bolder;
    text-align: center;
    background: linear-gradient(45deg, #223268, #2b528f, #223268);
}

.intro span {
    display: block;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffd84a), to(#ff9900));
    background: linear-gradient(to bottom, #ffd84a 0%, #ff9900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.intro .title {
    width: 100%;
    margin: 0 auto;
    max-width: 500px;
    padding-bottom: 25px;
}

.intro p {
    padding-bottom: 20px;
}

.nv {
    position: relative;
    text-align: right;
    width: 100%;
    padding-right: 30px;
    padding-bottom: 30px;
}

.nv::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 35%;
    left: 0;
    bottom: 0;
    background: url("../images/line.jpg") center center no-repeat;
    background-size: cover;
}

.nv .badge {
    position: relative;
    z-index: 2;
}

.nv .badge img {
    width: 30%;
    max-width: 300px;
}

.redeem {
    background: #222;
    text-align: center;
    padding: 30px 0;
}

@media (min-width: 996px) {
    .redeem {
        padding: 80px 0 0px;
    }
}

@media (min-width: 996px) {
    .redeem__block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 35px;
        margin-bottom: 35px;
    }
}

.redeem__block img {
    width: 100px;
    margin: 15px;
}

.redeem__block h4 {
    font-size: 20px;
    padding-bottom: 10px;
    display: inline-block;
    border-radius: 50px;
    border: #999 1px solid;
    padding: 5px 15px;
    margin-bottom: 20px;
    margin-top: 10px;
}

@media (min-width: 996px) {
    .redeem__block-item {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        padding: 20px 50px;
        border-right: #444 1px solid;
    }

    .redeem__block-item:last-child {
        border: none;
    }
}

.popup {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: none;
}

.popup::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background: linear-gradient(45deg, #345245, #689b85, #345245);
    opacity: .8;
}

.popup__inner {
    position: relative;
    width: 90%;
    margin: 0 auto;
    max-width: 1000px;
    height: auto;
    background: #fff;
    color: #222;
    padding: 25px;
}

.popup__close {
    position: -webkit-sticky;
    position: sticky;
    z-index: 10;
    top: 0;
    left: 100%;
}
/*
.popup__close:hover::before {
    background: -webkit-gradient(linear, left top, right top, from(#b5dad4), to(#508e73));
    background: linear-gradient(90deg, #b5dad4, #508e73);
} */

.popup__close::before {
    font-family: "msi-icons" !important;
    content: "\ea02";
    color: #fff;
    font-size: 20px;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    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: #8ac1ae;
    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;
    background: #8ac1ae;
    background-size: cover;
    padding: 10px;
    text-align: center;
    font-size: 24px;
    color: #000;
    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-bottom: 60px;
    background: #222;
}

@media (min-width: 996px) {
    .terms-btn {
        padding-bottom: 100px;
    }
}

.terms-btn a,
.terms-btn button {
    display: inline-block;
    padding: 15px 20px;
    background: linear-gradient(45deg, #b4dbd3, #689b85, #b4dbd3);
    color: #000;
    text-shadow: #2e4c3f 1px 1px 8px;
    font-size: 20px;
    line-height: 1;
    border-radius: 10px;
    -webkit-transition: .5s all ease-in-out;
    transition: .5s all ease-in-out;
    margin: 10px;
}

.terms-btn a:hover,
.terms-btn button:hover {
    -webkit-transform: scale(1.05) translateY(3px);
    transform: scale(1.05) translateY(3px);
}

.terms-title {
    font-weight: bold;
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    display: inline-block;
    border: #508e73 1px solid;
    padding: 5px 10px;
    background: linear-gradient(45deg, #42765f, #508e73);
    background-clip: text;
    color: transparent;
}

.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: #508e73;
    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;
}

.wtb {
    position: relative;
    z-index: 20;
    background: #1a1a1a;
    padding: 80px 0;
    text-align: center;
}

.wtb-top {
    position: relative;
    z-index: 20;
    background: #222;
}

.wtb-top img {
    width: 100%;
}

.wtbt_extend button {
    background: #fff;
}

.project {
    position: relative;
    overflow-x: hidden;
    color: #fff;
}

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

.project picture {
    display: block;
}

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

.project .common-title {
    font-size: 40px;
    text-shadow: #fff 0 0 30px, #14388b 1px 1px 10px;
    letter-spacing: 5px;
    padding-bottom: 20px;
}

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

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

/*# sourceMappingURL=main.css.map */