/*--------layout-----------*/
@font-face {
    font-family: 'Helvetica';
    src: url("../../fonts/helveticaneuelight.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica';
    src: url("../../fonts/helveticaneue.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica';
    src: url("../../fonts/helveticaneuemedium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Helvetica';
    src: url("../../fonts/helveticaneuebold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --white: #fff;
    --black: #000;
    --designPC: 1440;
    --blue: #262261;
    --yellow: #F7C11A;
    --gray: #C4C4C4;
    --pcwrap: 1200;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.slick-initialized .slick-slide:focus,
.btn:focus,
select:focus {
    text-decoration: none;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

input,
textarea,
button,
select {
    border: none;
}

::-webkit-input-placeholder {
    opacity: 1;
    color: inherit;
    font-family: Helvetica;
    font-weight: 300;
}

::-moz-placeholder {
    opacity: 1;
    color: inherit;
    font-family: Helvetica;
    font-weight: 300;
}

:-ms-input-placeholder {
    opacity: 1;
    color: inherit;
    font-family: Helvetica;
    font-weight: 300;
}

::-ms-input-placeholder {
    opacity: 1;
    color: inherit;
    font-family: Helvetica;
    font-weight: 300;
}

::placeholder {
    opacity: 1;
    color: inherit;
    font-family: Helvetica;
    font-weight: 300;
}

a:focus,
a:hover {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0px;
}

ul,
ol {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

p {
    margin: 0px;
    line-height: 1.5;
}

input,
select {
    outline: none;
}

body {
    font-family: 'Helvetica';
    font-size: 16px;
    color: var(--black);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    font-weight: 300;
    background-color: var(--blue);
}
    body.mark{
        height:100vh;
        overflow:hidden;
    }

    .hide {
        display: none;
    }

.full {
    width: 100%;
}

.half {
    width: 50%;
}

.col-1 {
    width: calc(100% / 12);
    width: -webkit-calc(100% / 12);
    width: -moz-calc(100% / 12);
}

.col-2 {
    width: calc(100% / 12 * 2);
    width: -webkit-calc(100% / 12 * 2);
    width: -moz-calc(100% / 12 * 2);
}

.col-3 {
    width: calc(100% / 12 * 3);
    width: -webkit-calc(100% / 12 * 3);
    width: -moz-calc(100% / 12 * 3);
}

.col-4 {
    width: calc(100% / 12 * 4);
    width: -webkit-calc(100% / 12 * 4);
    width: -moz-calc(100% / 12 * 4);
}

.col-5 {
    width: calc(100% / 12 * 5);
    width: -webkit-calc(100% / 12 * 5);
    width: -moz-calc(100% / 12 * 5);
}

.col-6 {
    width: calc(100% / 12 * 6);
    width: -webkit-calc(100% / 12 * 6);
    width: -moz-calc(100% / 12 * 6);
}

.col-7 {
    width: calc(100% / 12 * 7);
    width: -webkit-calc(100% / 12 * 7);
    width: -moz-calc(100% / 12 * 7);
}

.col-8 {
    width: calc(100% / 12 * 8);
    width: -webkit-calc(100% / 12 * 8);
    width: -moz-calc(100% / 12 * 8);
}

.col-9 {
    width: calc(100% / 12 * 9);
    width: -webkit-calc(100% / 12 * 9);
    width: -moz-calc(100% / 12 * 9);
}

.col-10 {
    width: calc(100% / 12 * 10);
    width: -webkit-calc(100% / 12 * 10);
    width: -moz-calc(100% / 12 * 10);
}

.col-11 {
    width: calc(100% / 12 * 11);
    width: -webkit-calc(100% / 12 * 11);
    width: -moz-calc(100% / 12 * 11);
}

.col-12 {
    width: 100%;
}

input.invalid, textarea.invalid {
    border: solid 1px #f00 !important;
    border-radius: 8px;
}

.row {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
}

.block {
    display: inline-block;
}

.flex {
    display: flex;
}

.text-center {
    text-align: center;
}

.left {
    float: left;
}

.right {
    float: right;
}

.wrapper {
    width: 1200px;
    margin: 0 auto;
}

.loading {
    z-index: 2000;
    top: 0px;
    left: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 1s;
    -moz-transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -ms-transition: opacity 1s;
    opacity: 1;
    display: none;
}

    .loading.active {
        display: block;
    }

    .loading .circle {
        background-color: rgba(0, 0, 0, 0);
        border: 5px solid rgba(0, 183, 229, 0.9);
        /* border: 5px solid rgba(245, 131, 31, 0.9); */
        opacity: .9;
        border-right: 5px solid rgba(0, 0, 0, 0);
        border-left: 5px solid rgba(0, 0, 0, 0);
        border-radius: 50px;
        -webkit-border-radius: 50px;
        -webkit-border-top-left-radius: 50px;
        -webkit-border-top-right-radius: 50px;
        -webkit-border-bottom-left-radius: 50px;
        -webkit-border-bottom-right-radius: 50px;
        -moz-border-radius: 40px;
        box-shadow: 0 0 35px #2187e7;
        /* box-shadow: 0 0 35px #FFAC48; */
        width: 40px;
        height: 40px;
        margin: 50vh auto;
        animation: spinPulse 1s infinite ease-in-out;
        -ms-animation: spinPulse 1s infinite ease-in-out;
        -moz-animation: spinPulse 1s infinite ease-in-out;
        -webkit-animation: spinPulse 1s infinite linear;
        position: relative;
    }

    .loading .circle1 {
        background-color: rgba(0, 0, 0, 0);
        border: 5px solid rgba(0, 183, 229, 0.9);
        /* border: 5px solid rgba(245, 131, 31, 0.9); */
        opacity: .9;
        border-left: 5px solid rgba(0, 0, 0, 0);
        border-right: 5px solid rgba(0, 0, 0, 0);
        border-radius: 25px;
        -webkit-border-radius: 50px;
        -webkit-border-top-left-radius: 50px;
        -webkit-border-top-right-radius: 50px;
        -webkit-border-bottom-left-radius: 50px;
        -webkit-border-bottom-right-radius: 50px;
        -moz-border-radius: 50px;
        box-shadow: 0 0 15px #2187e7;
        /* box-shadow: 0 0 15px #FFAC48; */
        width: 25px;
        height: 25px;
        top: 10%;
        left: 9%;
        margin: 0 auto;
        position: absolute;
        animation: spinoffPulse 1s infinite linear;
        -ms-animation: spinoffPulse 1s infinite linear;
        -moz-animation: spinoffPulse 1s infinite linear;
        -webkit-animation: spinoffPulse 1s infinite linear;
    }

@-moz-keyframes spinPulse {
    0% {
        -moz-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #2187e7;
    }

    50% {
        -moz-transform: rotate(145deg);
        opacity: 1;
    }

    100% {
        -moz-transform: rotate(-320deg);
        opacity: 0;
    }
}

@-moz-keyframes spinoffPulse {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spinPulse {
    0% {
        -webkit-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #2187e7;
    }

    50% {
        -webkit-transform: rotate(145deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: rotate(-320deg);
        opacity: 0;
    }
}

@-webkit-keyframes spinoffPulse {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-ms-keyframes spinPulse {
    0% {
        -ms-transform: rotate(160deg);
        opacity: 0;
        box-shadow: 0 0 1px #2187e7;
    }

    50% {
        -ms-transform: rotate(145deg);
        opacity: 1;
    }

    100% {
        -ms-transform: rotate(-320deg);
        opacity: 0;
    }
}

@-ms-keyframes spinoffPulse {
    0% {
        -ms-transform: rotate(0deg);
    }

    100% {
        -ms-transform: rotate(360deg);
    }
}

.body-mark {
    z-index: 999;
    display: none;
    background: rgba(1, 1, 1, 0.55);
}

    .body-mark.active {
        display: block;
        position: fixed;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
    }

    .body-mark .modal-backdrop {
        float: left;
        width: 100%;
        height: 100%;
    }

body.mark .body-mark {
    display: block;
}

body.mark .mark-content {
    width: 100%;
    height: 100%;
    float: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1251;
    background: rgba(17, 17, 17, 0.78);
}

body.mark .submark-content {
    width: 100%;
    height: 100%;
    float: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgba(17, 17, 17, 0.78);
    display: none;
}

    body.mark .submark-content.active {
        display: block;
    }

body.mark .body-mark.active .mark-content {
    display: none;
}

#notify-modal {
    position: absolute;
    background: #efefef;
    z-index: 1254;
    border: solid 1px #000000;
    box-shadow: -2px -2px 5px rgb(67 151 201 / 10%), 2px 2px 8px rgb(141 141 141);
    display: none;
}

#notify-modal {
    width: 400px;
    left: -webkit-calc(50vw - 200px);
    left: -o-calc(50vw - 200px);
    left: calc(50vw - 200px);
    top: -webkit-calc(50% - 125px);
    top: -o-calc(50vh - 125px);
    top: calc(50vh - 125px);
    position: fixed;
    border-radius: 10px;
    overflow: hidden;
}


.notify-title {
    padding: 10px 0;
    text-align: center;
    background: #302A86;
    text-transform: uppercase;
    float: left;
    width: 100%;
    font-size: 17px;
    color: #fff;
    font-weight: bold;
}

.notify-footer {
    bottom: 0;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    margin-bottom: 5px;
    float: left;
}

.btn-yes {
    padding: 5px 15px;
    background: rgb(251 176 64 / 0.80);
    color: #fff;
    text-transform: capitalize;
    min-width: 80px;
    display: inline-block;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
}

    .btn-yes:hover {
        background: #fbb040;
        color: #fff;
    }

    .btn-yes .mdi-login-variant {
        color: #fff;
        font-size: 18px;
        position: relative;
        top: 2px;
    }

.btn-no {
    padding: 5px 15px;
    background: #0020e2;
    color: #fff;
    text-transform: capitalize;
    min-width: 80px;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
}

    .btn-no:hover {
        background: #697FFF;
        color: #fff;
    }

.notify-content {
    padding: 10px;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    font-size: 16px;
    max-height: 90vh;
    text-align: center;
}

    .notify-content .panel {
        margin-bottom: 0;
    }

        .notify-content .panel .alert {
            padding: 5px;
            margin-bottom: 0;
        }

#notify-modal .panel .panel-body {
    max-height: 82vh;
    overflow: hidden;
    overflow-y: auto;
}

#backtop {
    width: 50px;
    height: 50px;
    background: rgb(247 193 26 / 0.81);
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: -100px;
    -moz-transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    transition: all .4s;
    z-index: 19;
    right: 20px;
    cursor: pointer;
}

    #backtop.active {
        bottom: 100px;
        -moz-transition: all .4s;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        -ms-transition: all .4s;
        transition: all .4s;
    }
/*-------google translate---------*/
.skiptranslate,
#google_translate_element,
#goog-gt-tt {
    display: none !important;
}

/*[class*="coin-"] {
    display: none;
}*/
.coin-marquee-item-info__row{
    display:flex !important;
}

body {
    position: unset !important;
    top: unset !important;
    min-height: unset !important;
}
#coinmarketcap-widget-marquee{
margin-top:50px;
}
.coin-marquee-item-inner{
    color:#fff !important;
}
header {
    height: 100px;
    background: var(--blue);
    -moz-transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    transition: all .4s;
    top: -100px;
}

    header.fix {
        position: fixed;
        top: 0;
        -moz-transition: all .4s;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        -ms-transition: all .4s;
        transition: all .4s;
        z-index: 999;
    }

    header .wrapper {
        justify-content: space-between;
        align-items: center;
        height: 100%;
        overflow: unset;
    }

    header a.logo-top {
        width: 95px;
        height: 25px;
    }

    header ul.menu-top {
        display: flex;
        justify-content: right;
        height: 100%;
        align-items: center;
    }

        header ul.menu-top > li {
            height: 100%;
            position: relative;
            display: flex;
            align-content: center;
            margin-right: 30px;
            align-items: center;
        }

            header ul.menu-top > li:last-child,
            header ul.menu-top > li.language {
                margin-right: 0;
            }

            header ul.menu-top > li > a {
                color: var(--white);
                font-size: 16px;
                text-transform: capitalize;
            }

                header ul.menu-top > li > a:hover,
                header ul.menu-top > li > a.active {
                    color: var(--yellow);
                }

            header ul.menu-top > li > ul.sub-menu {
                display: none;
                position: absolute;
                top: 80px;
                background: rgba(21, 18, 63, 0.9);
                border-radius: 6px;
                min-width: 200px;
                padding: 20px;
                z-index: 200;
            }

            header ul.menu-top > li:hover > ul.sub-menu {
                display: flex;
                flex-direction: column;
            }

                header ul.menu-top > li:hover > ul.sub-menu > li {
                    display: flex;
                    width: 100%;
                    height: 30px;
                    align-items: center;
                    font-size: 16px;
                    color: var(--white);
                    text-transform: uppercase;
                }

                    header ul.menu-top > li:hover > ul.sub-menu > li > a {
                        color: var(--white);
                        width: 100%;
                        height: 100%;
                        display: flex;
                        align-items: center;
                        text-transform:capitalize;
                    }

                        header ul.menu-top > li:hover > ul.sub-menu > li > a:hover {
                            color: var(--yellow);
                        }

            header ul.menu-top > li.language > a {
                font-size: 16px;
                color: #fff;
                border: 2px solid #F7C11A;
                box-sizing: border-box;
                border-radius: 20px;
                height: 34px;
                min-width: 92px;
                display: flex;
                align-items: center;
                padding: 0 10px;
                justify-content: space-around;
            }

                header ul.menu-top > li.language > a[data-val='EN']:before {
                    content: '';
                    display: inline-flex;
                    width: 18px;
                    height: 18px;
                    background: url(../Images/emojione_flag-for-united-states.png) no-repeat;
                    background-size: 100%;
                    margin-right: 8px;
                }

                header ul.menu-top > li.language > a[data-val='VN']:before {
                    content: '';
                    display: inline-flex;
                    width: 18px;
                    height: 18px;
                    background: url(../Images/vietnamese.png) no-repeat;
                    background-size: 100%;
                    margin-right: 8px;
                }

                header ul.menu-top > li.language > a[data-val='KR']:before {
                    content: '';
                    display: inline-flex;
                    width: 18px;
                    height: 18px;
                    background: url(../Images/korean.png) no-repeat;
                    background-size: 100%;
                    margin-right: 8px;
                }

                header ul.menu-top > li.language > a[data-val='CN']:before {
                    content: '';
                    display: inline-flex;
                    width: 18px;
                    height: 18px;
                    background: url(../Images/Frame.png) no-repeat;
                    background-size: 100%;
                    margin-right: 8px;
                }

                header ul.menu-top > li.language > a[data-val='JP']:before {
                    content: '';
                    display: inline-flex;
                    width: 18px;
                    height: 18px;
                    background: url(../Images/japan.png) no-repeat;
                    background-size: 100%;
                    margin-right: 8px;
                }

                header ul.menu-top > li.language > a[data-val='THAI']:before {
                    content: '';
                    display: inline-flex;
                    width: 18px;
                    height: 18px;
                    background: url(../Images/thailand.png) no-repeat;
                    background-size: 100%;
                    margin-right: 8px;
                }

            header ul.menu-top > li.language > ul.sub-menu {
                right: 0;
            }

                header ul.menu-top > li.language > ul.sub-menu > li > a.lang-icon {
                    text-transform: uppercase;
                    display: flex;
                }

                    header ul.menu-top > li.language > ul.sub-menu > li > a.lang-icon:before {
                        content: '';
                        display: inline-flex;
                        width: 18px;
                        height: 18px;
                        margin-right: 15px;
                    }

                    header ul.menu-top > li.language > ul.sub-menu > li > a.lang-icon.lang-en:before {
                        background: url(../Images/emojione_flag-for-united-states.png) no-repeat;
                        background-size: 100%;
                    }

                    header ul.menu-top > li.language > ul.sub-menu > li > a.lang-icon.lang-cn:before {
                        background: url(../Images/Frame.png) no-repeat;
                        background-size: 100%;
                    }

                    header ul.menu-top > li.language > ul.sub-menu > li > a.lang-icon.lang-jp:before {
                        background: url(../Images/japan.png) no-repeat;
                        background-size: 100%;
                    }

                    header ul.menu-top > li.language > ul.sub-menu > li > a.lang-icon.lang-kr:before {
                        background: url(../Images/korean.png) no-repeat;
                        background-size: 100%;
                    }

                    header ul.menu-top > li.language > ul.sub-menu > li > a.lang-icon.lang-vn:before {
                        background: url(../Images/vietnamese.png) no-repeat;
                        background-size: 100%;
                    }

                    header ul.menu-top > li.language > ul.sub-menu > li > a.lang-icon.lang-thai:before {
                        background: url(../Images/thailand.png) no-repeat;
                        background-size: 100%;
                    }

footer {
    width: 100%;
    background: #151243;
    padding-top: 80px;
}

    footer > .wrapper {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    footer > .top-footer {
        padding-bottom: 30px;
    }

    footer .wrapper .item {
        width: 100%;
    }

        footer .wrapper .item .title {
            font-weight: 500;
            font-size: 24px;
            text-transform: uppercase;
            color: #F7C11A;
            margin-bottom: 30px;
        }

        footer .wrapper .item p {
            font-size: 16px;
            color: var(--white);
            line-height: 1.5;
            width: 240px;
        }

        footer .wrapper .item > ul {
        }

            footer .wrapper .item > ul > li {
                width: 100%;
                display: flex;
                height: 40px;
                align-items: center;
            }

                footer .wrapper .item > ul > li > a {
                    font-size: 18px;
                    color: var(--white);
                }

                    footer .wrapper .item > ul > li > a:hover {
                        color: var(--yellow);
                    }

        footer .wrapper .item ul.social-list > li {
            display: inline-flex;
        }

            footer .wrapper .item ul.social-list > li img {
                width: 30px;
            }

    footer .wrapper address {
        border-top: 1px solid #ffffff29;
        width: 100%;
        font-size: 14px;
        color: var(--white);
        padding: 30px 0;
        text-align: center;
        font-style: normal;
    }
/*------------home-----------*/
.banner-main {
    width: 100%;
    /*height: 700px;*/
    background: url(../Images/Background.png) no-repeat var(--blue);
    background-size: cover;
    position: relative;
    padding: 80px 0;
}

    .banner-main.about {
        background: url(../Images/about-bg1.png) no-repeat var(--blue);
        min-height: unset;
        padding: 80px 0 0 0;
    }

    .banner-main .wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
    }

    .banner-main .banner-left {
        width: 580px;
        display: flex;
        flex-direction: column;
        position: relative;
        /*top: 140px;*/
    }

    .banner-main h2 {
        font-style: normal;
        font-weight: bold;
        font-size: 40px;
        text-transform: uppercase;
        color: var(--yellow);
    }

    .banner-main.about h2 {
        color: var(--white);
    }

        .banner-main.about h2 > span {
            color: var(--yellow);
            font-size: inherit;
            margin-right: 10px;
            font-weight: inherit;
        }

    .banner-main span {
        margin-top: 18px;
        font-weight: normal;
        font-size: 24px;
        text-transform: uppercase;
        color: var(--yellow);
    }

    .banner-main p {
        font-size: 20px;
        font-weight: 300;
        color: var(--gray);
        margin-top: 20px;
        line-height: 1.5
    }

    .banner-main .download-app {
        display: flex;
        margin-top: 30px;
    }

        .banner-main .download-app ul {
            display: flex;
        }

            .banner-main .download-app ul li:first-child {
                margin-right: 10px;
            }

    .banner-main .download {
        margin-top: 33px;
        width: 177px;
        height: 55px;
        background: #F7C11A;
        border-radius: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: normal;
        font-size: 16px;
        color: var(--white);
        text-transform: uppercase;
    }

    .banner-main .banner-right {
        width: 577px;
        height: 593px;
        top: 32px;
        position: relative;
        overflow: hidden;
    }

        .banner-main .banner-right img,
        .wallet .wallet-right img {
            animation: shaking 2s linear infinite;
            width: 90%;
        }

    .banner-main.about .banner-right img {
        animation: filter 1.5s linear infinite;
    }

    .banner-main .coin-1 {
        position: absolute;
        width: 95px;
        height: 95px;
        left: calc(555/var(--designPC)*100vw);
        top: calc(67/var(--designPC)*100vw);
    }

    .banner-main .coin-2 {
        position: absolute;
        width: 135px;
        height: 135px;
        left: calc(317/var(--designPC)*100vw);
        bottom: calc(41/var(--designPC)*100vw);
    }

    .banner-main .coin-3 {
        position: absolute;
        width: 140px;
        height: 140px;
        top: calc(162/var(--designPC)*100vw);
        right: calc(56/var(--designPC)*100vw);
    }

    .banner-main .coin-4 {
        position: absolute;
        width: 63px;
        height: 63px;
        right: calc(108/var(--designPC)*100vw);
        bottom: calc(77/var(--designPC)*100vw);
    }
/*------------about------------*/
.about {
    /* min-height: 702px;*/
    width: 100%;
    background: #262261;
    background: url(../Images/bg4.png) no-repeat #262261;
    background-size: cover;
    padding: 0 0 80px 0;
}

    .about.show-list {
        padding-bottom: 80px;
    }

    .about .about-title {
        height: 150px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 40px;
        color: var(--white);
    }

        .about .about-title span {
            color: var(--yellow);
            margin-right: 15px;
        }

    .about .about-content {
        /*min-height: 384px;*/
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 30px;
        background: rgba(12, 5, 87, 0.7);
        border-radius: 16px;
    }

        .about .about-content p {
            font-weight: 300;
            font-size: 20px;
            line-height: 1.5;
            color: var(--gray);
            margin-bottom: 20px;
        }

        .about .about-content .read-more {
            font-size: 18px;
            text-transform: uppercase;
            color: var(--yellow);
            display: flex;
            align-items: center;
            justify-content: flex-end;
            margin-top: 30px;
        }

            .about .about-content .read-more a {
                color: var(--yellow);
                display: flex;
                align-items: center;
            }

            .about .about-content .read-more a i {
                /*content: '\F0142';*/
                display: inline-flex;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: var(--yellow);
                color: var(--white);
                /*font-family: "Material Design Icons";*/
                justify-content: center;
                align-items: center;
                font-size: 40px;
                margin-left: 20px;
            }

    .about .buy-wel {
        width: 202px;
        height: 55px;
        background: var(--yellow);
        border-radius: 40px;
        color: var(--white);
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 44px;
        text-transform: uppercase;
    }

    .about .list-wel,
    .how-buy .list-wel{
        width: 100%;
        height: 216px;
        background: url(../Images/Start-mining-now.png) no-repeat;
        border-radius: 16px;
        padding: 40px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 38px;
    }

        .about .list-wel .title,
        .how-buy .list-wel .title {
            font-weight: bold;
            font-size: 24px;
            line-height: 150%;
            text-align: center;
            color: var(--yellow);
            text-transform: uppercase;
            margin-bottom: 18px;
        }

        .about .list-wel ul,
        .how-buy .list-wel ul {
            width: 1100px;
            display: flex;
        }

            .about .list-wel ul li,
            .how-buy .list-wel ul li {
                display: flex;
                width: 20%;
                align-items: center;
                justify-content: center;
            }

.chart {
    height: 748px;
    width: 100%;
    background: #211D55;
}

    .chart .wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .chart h2.chart-title {
        width: 782px;
        height: 98px;
        font-weight: bold;
        font-size: 35px;
        line-height: 49px;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 78px;
        text-align: center;
    }

        .chart h2.chart-title span {
            color: var(--yellow);
            font-size: 50px;
        }

    .chart .half {
        margin-top: 75px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .chart .half ul.time-line {
            width: 562px;
            /*border-left: solid 1px #F7C11A;*/
            padding-left: 16px;
        }

            .chart .half ul.time-line li {
                font-weight: 300;
                font-size: 20px;
                line-height: 1.5;
                color: var(--gray);
                margin-bottom: 10px;
                /*list-style-image: url(../Images/list-style.png);*/
                /*padding-left: 20px;*/
                list-style-type: disc;
            }

                .chart .half ul.time-line li:last-child {
                    margin-bottom: 0;
                }

/*------wallet--------*/
.wallet {
    width: 100%;
    padding: 0 0 80px 0;
    background: url(../Images/bg1.png) no-repeat;
    background-size: cover;
    position: relative;
}

    .wallet.dev {
        background: url(../Images/bg6.png) no-repeat;
    }

    .wallet .wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
    }

    .wallet .wallet-left {
        width: 580px;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .wallet h2 {
        font-style: normal;
        font-weight: bold;
        font-size: 40px;
        /*line-height: 49px;*/
        text-transform: uppercase;
        color: var(--yellow);
    }

    .wallet span {
        margin-top: 18px;
        font-weight: normal;
        font-size: 24px;
        line-height: 29px;
        text-transform: uppercase;
        color: var(--yellow);
    }

    .wallet p {
        font-size: 20px;
        font-weight: 300;
        color: var(--gray);
        margin-top: 20px;
    }

    .wallet .download {
        margin-top: 33px;
        width: 177px;
        height: 55px;
        background: #F7C11A;
        border-radius: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: normal;
        font-size: 16px;
        color: var(--white);
        text-transform: uppercase;
    }

    .wallet .wallet-right {
        width: 577px;
        height: 593px;
        top: 32px;
        position: relative;
        overflow: hidden;
    }

    .wallet .coin-1 {
        position: absolute;
        width: 83px;
        height: 83px;
        right: calc(601/var(--designPC)*100vw);
        top: calc(81/var(--designPC)*100vw);
    }

    .wallet .coin-2 {
        position: absolute;
        width: 63px;
        height: 63px;
        right: calc(601/var(--designPC)*100vw);
        bottom: calc(49/var(--designPC)*100vw);
    }

    .wallet .coin-3 {
        position: absolute;
        width: 62px;
        height: 62px;
        top: calc(60/var(--designPC)*100vw);
        right: calc(113/var(--designPC)*100vw);
    }

    .wallet .coin-4 {
        position: absolute;
        width: 72px;
        height: 72px;
        right: calc(61/var(--designPC)*100vw);
        bottom: calc(264/var(--designPC)*100vw);
    }

    .wallet .download-app {
        height: 61px;
        width: 402px;
        display: flex;
        margin-top: 50px;
    }

        .wallet .download-app ul {
            width: 100%;
            display: flex;
            justify-content: space-between;
        }
/*-----wel scan*/
.welscan {
    /*height: 855px;*/
    width: 100%;
    background: linear-gradient(180deg, #2B076E 0%, #0D0D2B 100%);
    padding: 80px 0;
    position: relative;
}

    .welscan .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .welscan .title {
        font-weight: bold;
        font-size: 40px;
        text-align: center;
        width: 100%;
        color: #fff;
    }

        .welscan .title span {
            color: #F7C11A;
        }

    .welscan p {
        font-weight: 300;
        font-size: 20px;
        line-height: 1.5;
        text-align: center;
        color: #C4C4C4;
        margin: 35px 0;
    }

.welscan-content {
    width: 710px;
    height: 453px;
    filter: drop-shadow(0px 0px 50px #1D3176);
}

.welscan a.btn-visit {
    width: 214px;
    height: 55px;
    background: #F7C11A;
    border-radius: 40px;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    text-transform: uppercase;
}

.welscan .coin-1 {
    position: absolute;
    width: 83px;
    height: 83px;
    left: calc(124/var(--designPC)*100vw);
    top: calc(221/var(--designPC)*100vw);
}

.welscan .coin-2 {
    position: absolute;
    width: 95px;
    height: 95px;
    left: calc(155/var(--designPC)*100vw);
    bottom: calc(115/var(--designPC)*100vw);
}

.welscan .coin-3 {
    position: absolute;
    width: 63px;
    height: 63px;
    top: calc(302/var(--designPC)*100vw);
    right: calc(113/var(--designPC)*100vw);
}

.welscan .coin-4 {
    position: absolute;
    width: 140px;
    height: 140px;
    right: calc(176/var(--designPC)*100vw);
    bottom: calc(93/var(--designPC)*100vw);
}


/*-------future------------*/
.future {
    /*height: 1065px;*/
    width: 100%;
    background: #100D34;
    padding: 0 0 80px 0;
}

    .future .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .future .title {
        font-style: normal;
        font-weight: bold;
        font-size: 40px;
        line-height: 49px;
        text-align: center;
        color: #fff;
        width: 640px;
        margin-top: 78px;
    }

        .future .title span {
            color: #F7C11A;
        }

    .future label {
        font-style: normal;
        font-weight: normal;
        font-size: 24px;
        line-height: 29px;
        text-align: center;
        text-transform: uppercase;
        color: #F7C11A;
        margin-top: 22px;
    }

    .future .future-content {
        margin-top: 80px;
        width: 1110px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .future .future-content li {
            width: 350px;
            height: 319px;
            background: #262261;
            border: 1px solid #F7C11A;
            box-sizing: border-box;
            box-shadow: 0px 0px 20px rgba(247, 193, 26, 0.2);
            border-radius: 18px;
            margin-bottom: 30px;
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

            .future .future-content li:hover {
                box-shadow: 0px 0px 20px rgb(247 193 26 / 66%);
            }

            .future .future-content li img {
                width: 37px;
                height: 37px;
            }

            .future .future-content li .item-title {
                font-style: normal;
                font-weight: bold;
                font-size: 20px;
                line-height: 30px;
                color: #ECF1F0;
                margin-top: 8px;
            }

            .future .future-content li p {
                font-style: normal;
                font-weight: 300;
                font-size: 16px;
                line-height: 1.5;
                margin: 12px 0;
                color: #C4C4C4;
            }

            .future .future-content li a.read-more {
                font-style: normal;
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;
                color: #F7C11A;
            }

                .future .future-content li a.read-more i {
                    position: relative;
                    font-size: 25px;
                    top: 5px;
                }
/*-----building---*/
.building {
    width: 100%;
    /*height: 600px;*/
    background: url(../Images/bg2.png) no-repeat;
    background-size: cover;
    position: relative;
    padding: 0 0 80px 0;
}

    .building.dapp {
        background: #262261;
    }

    .building .wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
        flex-wrap: wrap
    }

    .building .building-left {
        width: 580px;
        width: 580px;
        display: flex;
        flex-direction: column;
        position: relative;
        /*top: 140px;*/
    }

    .building h2 {
        font-style: normal;
        font-weight: bold;
        font-size: 40px;
        line-height: 49px;
        text-transform: uppercase;
        color: var(--white);
    }

    .building span {
        color: var(--yellow);
    }

    .building p {
        font-size: 20px;
        font-weight: 300;
        color: var(--gray);
        margin-top: 20px;
    }

    .building .building-right {
        width: 577px;
        height: 593px;
        top: 32px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .building .building-right img {
            animation: filter 2s linear infinite;
        }

    .building.dapp .building-right img {
        animation: none;
    }

    .building .coin-1 {
        position: absolute;
        width: 83px;
        height: 83px;
        right: calc(560/var(--designPC)*100vw);
        top: calc(49/var(--designPC)*100vw);
    }

    .building .coin-2 {
        position: absolute;
        width: 63px;
        height: 63px;
        right: calc(630/var(--designPC)*100vw);
        bottom: calc(22/var(--designPC)*100vw);
    }

    .building .coin-3 {
        position: absolute;
        width: 62px;
        height: 62px;
        top: calc(43/var(--designPC)*100vw);
        right: calc(220/var(--designPC)*100vw);
    }

    .building .coin-4 {
        position: absolute;
        width: 72px;
        height: 72px;
        right: calc(239/var(--designPC)*100vw);
        bottom: calc(156/var(--designPC)*100vw);
    }
/*----roadmap-------*/
.roadmap {
    width: 100%;
    /*height: 828px;*/
    background: #100D34;
    padding: 0 0 80px 0;
}

    .roadmap .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .roadmap .title {
        font-style: normal;
        font-weight: bold;
        font-size: 40px;
        line-height: 49px;
        text-align: center;
        color: #fff;
        width: 100%;
        margin: 70px 0;
    }

    .roadmap .roadmap-content {
        width: 1110px;
        display: flex;
        justify-content: space-between;
    }

        .roadmap .roadmap-content .item {
            width: 350px;
            height: 552px;
            background: #262261;
            border: 2px solid #F7C11A;
            box-sizing: border-box;
            box-shadow: 0px 0px 20px rgba(247, 193, 26, 0.2);
            border-radius: 12px;
            padding: 30px;
            display: flex;
            align-items: center;
            flex-direction: column;
        }

            .roadmap .roadmap-content .item:hover {
                box-shadow: 0px 0px 20px rgb(247 193 26 / 66%);
            }

            .roadmap .roadmap-content .item .time {
                font-weight: bold;
                font-size: 30px;
                display: flex;
                align-items: center;
                text-align: center;
                text-transform: uppercase;
                color: #F7C11A;
                width: 100%;
                flex-direction: column;
            }

                .roadmap .roadmap-content .item .time:before {
                    content: '';
                    width: 34px;
                    height: 34px;
                    background: url(../Images/Time.png) no-repeat;
                    background-size: 100%;
                    display: flex;
                    margin-bottom: 14px;
                }

            .roadmap .roadmap-content .item ul {
                padding-left: 23px;
                margin-top: 34px;
            }

                .roadmap .roadmap-content .item ul li {
                    font-style: normal;
                    font-weight: 300;
                    font-size: 20px;
                    line-height: 24px;
                    color: #C4C4C4;
                    list-style-type: disc;
                    margin-bottom: 20px;
                }

                    .roadmap .roadmap-content .item ul li:last-child {
                        margin-bottom: 0;
                    }


/*--------onboard-----*/
.onboard {
    width: 100%;
    /*height: 600px;*/
    background: url(../Images/bg-3.png) no-repeat;
    background-size: cover;
    padding: 0 0 80px 0;
}

    .onboard .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .onboard h2.title {
        width: 782px;
        height: 98px;
        font-style: normal;
        font-weight: bold;
        font-size: 40px;
        line-height: 49px;
        text-align: center;
        color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 65px 0;
    }

    .onboard .btn-wrap {
        display: flex;
        width: 408px;
        height: 55px;
        justify-content: center;
        
    }

        .onboard .btn-wrap a.join {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 222px;
            height: 55px;
            background: #FFFFFF;
            border-radius: 40px;
            text-transform: uppercase;
            color: #F7C11A;
        }

        .onboard .btn-wrap a.signup {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 156px;
            height: 55px;
            background: #F7C11A;
            border-radius: 40px;
            text-transform: uppercase;
            color: #FFFFFF;
        }

            .onboard .btn-wrap a.signup:hover,
            .onboard .btn-wrap a.join:hover,
            .about .buy-wel:hover,
            .banner-main .download:hover,
            .welscan a.btn-visit:hover {
                box-shadow: 0px 0px 20px rgb(247 193 26 / 66%);
            }

    .onboard .list-web {
        width: 1110px;
        height: 160px;
        background: rgba(16, 13, 52, 0.7);
        border-radius: 16px;
        display: flex;
        align-items: center;
        margin-top: 75px;
    }

        .onboard .list-web ul {
            display: flex;
            width: 100%;
            height: 68px;
            justify-content: space-between;
            padding: 0 40px;
        }

            .onboard .list-web ul li {
                height: 100%;
                width: 179px;
            }

                .onboard .list-web ul li img {
                    width: 100%;
                }

    .onboard .owl-next {
        width: 40px;
        height: 40px;
        background: #f7c11a82;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        right: -18px;
        top: 30%;
    }

    .onboard .owl-prev {
        width: 40px;
        height: 40px;
        background: #f7c11a82;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        left: -18px;
        top: 30%;
    }
/*------news------*/
.news {
    width: 100%;
    /*height: 688px;*/
    background: #211D55;
    padding: 0 0 80px 0;
}

    .news .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .news h2.title {
        width: 920px;
        height: 61px;
        font-style: normal;
        font-weight: bold;
        font-size: 50px;
        line-height: 61px;
        color: #FFFFFF;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 68px 0;
    }

    .news ul {
        width: 1110px;
        display: flex;
        justify-content: space-between;
    }

        .news ul li {
            width: 540px;
        }

            .news ul li .news-item {
                display: flex;
                justify-content: space-between;
                width: 100%;
                height: 160px;
                margin-bottom: 30px;
            }

            .news ul li .img-wrap {
                width: 260px;
            }

                .news ul li .img-wrap img {
                    width: 100%;
                }

            .news ul li img {
                opacity: 0.8;
                border-radius: 8px;
                /* width: 160px;
                height: 160px;*/
            }

            .news ul li .item-content {
                width: 350px;
                display: flex;
                flex-direction: column;
                text-align: left;
                padding-left: 20px;
            }

                .news ul li .item-content h3 {
                    font-style: normal;
                    font-weight: 500;
                    font-size: 20px;
                    line-height: 24px;
                    color: #FFFFFF;
                }

                .news ul li .item-content p {
                    font-style: normal;
                    font-weight: 300;
                    font-size: 16px;
                    color: #C4C4C4;
                    margin: 7px 0 15px 0;
                }

                .news ul li .item-content a {
                    font-style: normal;
                    font-weight: normal;
                    font-size: 18px;
                    color: #F7C11A;
                }

.timeline {
    width: 100%;
    padding-bottom:80px;
    /*height: 1590px;*/
    background: linear-gradient(180deg, #2B076E 0%, #0D0D2B 100%);
}

    .timeline .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .timeline h2.title {
        font-style: normal;
        font-weight: bold;
        font-size: 40px;
        line-height: 49px;
        color: #FFFFFF;
        display: flex;
        align-items: center;
        margin: 78px 0;
    }

    .timeline .content {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

        .timeline .content span.start {
            width: 102px;
            height: 29px;
            display: flex;
            align-content: center;
            justify-content: center;
            background: #F7C11A;
            border-radius: 53px;
            font-style: normal;
            font-weight: bold;
            font-size: 14px;
            text-transform: uppercase;
            color: #FFFFFF;
            align-items: center;
        }

        .timeline .content ul {
            width: 626px;
            display: flex;
            flex-direction: column;
            position: relative;
            margin-top: 80px;
        }

            .timeline .content ul:before {
                content: '';
                height: 100%;
                display: inline;
                position: absolute;
                left: 50%;
                width: 1px;
                background: var(--gray);
                z-index: 1;
                top: -80px;
            }

            .timeline .content ul li {
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
                height: 80px;
                position: relative;
                margin-bottom: 40px;
            }

                .timeline .content ul li:after {
                    content: '';
                    width: 29px;
                    height: 29px;
                    background: url(../Images/icon-yellow.png) no-repeat;
                    background-size: 100%;
                    position: absolute;
                    left: calc(50% - 14px);
                    z-index: 2;
                    animation: opacity 1s linear infinite;
                }

                .timeline .content ul li .half {
                    display: flex;
                    flex-direction: column;
                    height: 80px;
                    justify-content: center;
                }

                    .timeline .content ul li .half:first-child {
                        text-align: right;
                        padding-right: 40px
                    }

                    .timeline .content ul li .half:last-child {
                        text-align: left;
                        padding-left: 40px
                    }

                    .timeline .content ul li .half span.year {
                        font-style: normal;
                        font-weight: bold;
                        font-size: 48px;
                        text-transform: uppercase;
                        color: #F7C11A;
                    }

                    .timeline .content ul li .half span.month {
                        font-style: normal;
                        font-weight: bold;
                        font-size: 20px;
                        text-transform: uppercase;
                        color: #FFFFFF;
                    }

                    .timeline .content ul li .half p {
                        font-style: normal;
                        font-weight: 300;
                        font-size: 20px;
                        line-height: 24px;
                        color: #C4C4C4;
                    }

.news .owl-theme .owl-controls {
    margin-top: 50px;
}

    .news .owl-theme .owl-controls .owl-page span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(247, 193, 26, 0.4);
    }

    .news .owl-theme .owl-controls .owl-page.active span, .owl-theme .owl-controls.clickable .owl-page:hover span {
        background: #F7C11A;
    }

.menu-mobile,
.nav-mobile {
    display: none;
}

.coin-1,
.coin-3 {
    animation: moveLeftFastBounce 3s linear infinite;
}

.coin-2,
.coin-4 {
    animation: moveLeftBounce 3s linear infinite;
}

@keyframes moveLeftBounce {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(15px);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
        opacity: 0.1;
    }

    50% {
        transform: rotate(180deg);
        opacity: 5.0;
    }

    75% {
        opacity: 1.0;
    }

    100% {
        transform: rotate(360deg);
        opacity: 0.1;
    }
}

@keyframes shaking {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


@keyframes moveTop {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    75% {
        transform: translateY(10px);
    }

    to {
        transform: translateY(0);
    }
}

@keyframes opacity {
    0% {
        opacity: 0.2;
    }

    25% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.8;
    }

    75% {
        opacity: 1.0;
    }

    to {
        opacity: 0.2;
    }
}

@keyframes filter {
    0% {
        opacity: 0.2;
        filter: grayscale(0.8);
    }

    25% {
        filter: grayscale(0.4);
        opacity: 0.4;
    }

    50% {
        filter: grayscale(0.2);
        opacity: 0.8;
    }

    75% {
        filter: grayscale(0.1);
        opacity: 1.0;
    }

    to {
        filter: grayscale(0.8);
        opacity: 0.2;
    }
}

@keyframes moveLeftFastBounce {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(5px);
    }

    50% {
        transform: translateX(15px);
    }

    75% {
        transform: translateX(30px);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0) rotate(0deg);
    }

    20% {
        transform: translate(13px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(14px, 73deg) rotate(32deg);
    }

    60% {
        transform: translateY(32px) rotate(28deg);
    }

    80% {
        transform: translateY(32px) rotate(14deg);
    }
}
/*about-2*/
.about .coin-1 {
    left: unset;
    right: calc(555/var(--designPC)*100vw);
}

.about .coin-2 {
    left: unset;
    right: calc(554/var(--designPC)*100vw);
}

.about-unlimited, .vutrades {
    background: #211D55;
    padding: 80px 0;
}

    .about-unlimited h2 {
        font-style: normal;
        font-weight: bold;
        font-size: 40px;
        line-height: 49px;
        text-transform: uppercase;
        color: var(--white);
        text-align: left;
    }

        .about-unlimited h2 > span {
            color: var(--yellow);
            margin-right: 10px;
        }

    .about-unlimited p {
        font-size: 20px;
        font-weight: 300;
        color: var(--gray);
        margin-top: 20px;
    }

    .about-unlimited .half {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

        .about-unlimited .half:first-child {
            padding-right: 30px;
        }

            .about-unlimited .half:first-child img {
                width: 100%;
                max-width: 485px;
                animation: filter 2s linear infinite;
            }

        .about-unlimited .half:last-child {
            padding-left: 30px;
        }

            .about-unlimited .half:last-child img {
                width: 100%;
                max-width: 519px;
                animation: filter 2s linear infinite;
            }

    .about-unlimited ul {
        list-style-type: square;
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 10px;
        padding-left: 20px;
    }

        .about-unlimited ul li {
            padding: 10px 0;
            color: var(--white);
            font-size: 20px;
        }
/*--------bod---------*/
.bod {
    padding: 80px 0;
    background: url(../Images/map-bg.png) no-repeat #211D55 center;
    background-size: cover;
}

    .bod .wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .bod h2.title {
        font-style: normal;
        font-weight: bold;
        font-size: 40px;
        line-height: 49px;
        text-transform: uppercase;
        color: var(--white);
        text-align: center;
        display: flex;
    }

    .bod ul {
        width: 1104px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 60px;
    }

        .bod ul li {
            width: 539px;
            /*height: 403px;*/
            background: rgba(38, 34, 97, 0.9);
            border: 2px solid #F7C11A;
            box-sizing: border-box;
            box-shadow: 0px 0px 20px rgba(247, 193, 26, 0.2);
            border-radius: 12px;
            margin-bottom: 30px;
            padding: 35px;
        }

            .bod ul li .row {
                justify-content: left;
            }

            .bod ul li .col-5 {
                max-width: 180px;
            }

                .bod ul li .col-5 .avatar {
                    position: relative;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }
                    .bod ul li .col-5 .avatar img{
                        border-radius:50%;
                    }

                    .bod ul li .col-5 .avatar:after {
                        content: '';
                        display: inline-flex;
                        height: 148px;
                        width: 148px;
                        background: url(../Images/circle.png) no-repeat;
                        background-size: 100%;
                        position: absolute;
                        animation: rotate 8s linear infinite;
                    }

            .bod ul li .col-7 {
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

                .bod ul li .col-7 span {
                    font-style: normal;
                    font-weight: bold;
                    font-size: 20px;
                    line-height: 24px;
                    display: flex;
                    align-items: center;
                    text-transform: uppercase;
                    color: #F7C11A;
                }

                .bod ul li .col-7 label {
                    font-style: normal;
                    font-weight: 300;
                    font-size: 16px;
                    line-height: 19px;
                    color: #FFFFFF;
                    margin-top: 7px;
                }

                .bod ul li .col-7 .social-bod {
                    margin-top: 10px;
                }

                    .bod ul li .col-7 .social-bod img {
                        width: 25px;
                    }

            .bod ul li .bod-content {
                margin-top: 30px;
                font-style: normal;
                font-weight: 300;
                font-size: 19px;
                line-height: 1.5;
                color: #C4C4C4;
            }

.headquarter {
    padding: 80px 0;
    background: url(../Images/bg5.png) no-repeat;
    background-size: cover;
}

    .headquarter .wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .headquarter h2.title {
        font-style: normal;
        font-weight: bold;
        font-size: 40px;
        line-height: 49px;
        text-transform: uppercase;
        color: var(--white);
        text-align: center;
        display: flex;
    }

    .headquarter .headquarter-content {
        margin-top: 30px;
    }

    .headquarter .half {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .headquarter .half p {
            max-width: 444px;
            font-style: normal;
            font-weight: bold;
            font-size: 25px;
            line-height: 31px;
            text-align: center;
            color: #C4C4C4;
            margin-top: 40px;
        }

/*----developer------*/
.dev-ultimate {
    background: #211D55;
    padding-top: 80px;
}

    .dev-ultimate .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dev-ultimate h2 {
        font-style: normal;
        font-weight: bold;
        font-size: 40px;
        text-transform: uppercase;
        color: var(--white);
    }

    .dev-ultimate ul {
        width: 1140px;
        display: flex;
        flex-wrap: wrap;
        margin-top: 80px;
    }

    .dev-ultimate li {
        display: flex;
        flex-direction: column;
        width: 25%;
        margin-bottom: 70px;
        align-items: center;
    }

    .dev-ultimate .dev-icon {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .dev-ultimate .dev-icon {
        width: 102px;
        height: 102px;
        background: #4149C7;
        box-shadow: 0px 0px 7px 3px rgba(65, 73, 199, 0.4);
        border-radius: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dev-ultimate p {
        font-style: normal;
        font-weight: 300;
        font-size: 20px;
        line-height: 1.5;
        text-align: center;
        letter-spacing: 0.02em;
        color: #C4C4C4;
        max-width: 210px;
        margin-top: 30px;
    }

.dev-download {
    background: #F7C11A;
    padding: 26px 0;
}

    .dev-download .wrapper {
        display: flex;
        justify-content: space-between;
    }

        .dev-download .wrapper h2 {
            width: 370px;
            font-size: 30px;
            color: #fff;
            text-transform: uppercase;
            font-weight: normal;
        }

    .dev-download .download-wrap {
        width: 402px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.community-banner {
    width: 100%;
    background: url(../Images/bg6.png) no-repeat;
    background-size: cover;
}

    .community-banner .wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .community-banner .half {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .community-banner .half h2.title {
            font-style: normal;
            font-weight: bold;
            font-size: 40px;
            line-height: 1.5;
            text-transform: uppercase;
            color: #F7C11A;
        }

        .community-banner .half:last-child .rocket-wrap {
            min-height: 685px;
            min-width: 671px;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            /*background: url(../Images/rocket-bg.png) no-repeat;*/
        }

            .community-banner .half:last-child .rocket-wrap .rocket {
                position: absolute;
                width: 158px;
                top: 89px;
                margin-left: 20px;
                /*left: 267px;*/
                z-index: 10;
                animation: moveTop 1s linear infinite;
            }
            /*.community-banner .half:last-child .rocket-wrap:before {
                    content: '';
                    display: inline-block;
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background: rgb(52 42 173 / 0.84);
                    box-shadow: 0px 0px 20px rgb(115 222 237 / 0.66);
                }*/

            .community-banner .half:last-child .rocket-wrap .rocket-fire {
                position: absolute;
                width: 40px;
                top: 383px;
                z-index: 6;
                margin-left: 22px;
                animation: opacity 0.5s linear infinite;
            }

            .community-banner .half:last-child .rocket-wrap .rocket-cloud {
                position: absolute;
                width: 230px;
                top: 383px;
                z-index: 6;
                margin-left: 22px;
                animation: filter 3s linear infinite;
            }

            .community-banner .half:last-child .rocket-wrap .rocket-flash {
                position: absolute;
                position: absolute;
                width: 558px;
                top: 343px;
                z-index: 3;
                animation: filter 2.5s linear infinite;
            }

            .community-banner .half:last-child .rocket-wrap .rocket-bot {
                position: absolute;
                width: 558px;
                top: 343px;
                z-index: 2;
                margin-left: 17px;
                margin-top: 9px;
                animation: filter 3.5s linear infinite;
            }

                .community-banner .half:last-child .rocket-wrap .rocket img,
                .community-banner .half:last-child .rocket-wrap .rocket-fire img,
                .community-banner .half:last-child .rocket-wrap .rocket-flash img,
                .community-banner .half:last-child .rocket-wrap .rocket-bot img,
                .community-banner .half:last-child .rocket-wrap .rocket-cloud img {
                    width: 100%;
                }

            .community-banner .half:last-child .rocket-wrap .star {
                position: absolute;
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: rgb(105 93 250 / 0.84);
                box-shadow: 0px 0px 10px rgb(115 222 237 / 0.66);
                animation: opacity 1s linear infinite;
            }

                .community-banner .half:last-child .rocket-wrap .star.small {
                    position: absolute;
                    width: 5px;
                    height: 5px;
                    border-radius: 50%;
                    background: rgb(105 93 250 / 0.84);
                    box-shadow: 0px 0px 10px rgb(115 222 237 / 0.66)
                }

.channel {
    background: url(../Images/community-bg.png) no-repeat;
    background-size: cover;
    padding: 80px 0;
}

    .channel .wrapper {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .channel h2.title {
        font-style: normal;
        font-weight: bold;
        font-size: 40px;
        text-align: center;
        color: #FFFFFF;
    }

    .channel ul {
        width: 100%;
        max-width: 1100px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 70px;
    }

        .channel ul li {
            width: 20%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            .channel ul li img {
                width: 148px;
            }

            .channel ul li span {
                font-style: normal;
                font-weight: bold;
                font-size: 20px;
                text-align: center;
                color: #FFFFFF;
                margin-top: 30px
            }

            .channel ul li a {
                height: 40px;
                padding: 0 25px;
                background: #F7C11A;
                border-radius: 40px;
                font-style: normal;
                font-weight: normal;
                font-size: 16px;
                display: flex;
                align-items: center;
                text-transform: uppercase;
                color: #FFFFFF;
                margin-top: 50px;
            }

                .channel ul li a:hover {
                    box-shadow: 0px 0px 20px rgb(247 193 26 / 66%);
                }

.faq-banner {
    width: 100%;
    background: url(../Images/bg7.png) no-repeat;
    background-size: cover;
    max-height: 300px;
    padding: 100px 0;
}

    .faq-banner .wrapper {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .faq-banner h2.title {
        font-style: normal;
        font-weight: bold;
        font-size: 40px;
        color: #FFFFFF;
    }

    .faq-banner span {
        font-style: normal;
        font-weight: 300;
        font-size: 20px;
        text-transform: uppercase;
        color: #CCCCCC;
        margin-top: 15px;
        width: 100%;
        max-width: 485px;
    }

.faq-content {
    width: 100%;
    padding-top: 80px;
    background-color: #262261;
}

    .faq-content .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .faq-content ul {
        width: 100%;
        max-width: 1110px;
        display: flex;
        flex-direction: column;
    }

        .faq-content ul li {
            width: 100%;
            display: flex;
            min-height: 100px;
            padding: 32px 0;
            border-bottom: 1px solid #7D7D7D;
        }

            .faq-content ul li:after {
                content: '\F0415';
                width: 30px;
                height: 30px;
                display: inline-flex;
                font-family: "Material Design Icons";
                color: #fff;
                align-items: center;
            }

            .faq-content ul li.active:after {
                content: '\F0156';
            }

            .faq-content ul li:last-child {
                border-bottom: none;
            }

            .faq-content ul li span {
                width: 80px;
                display: flex;
                justify-content: center;
                font-style: normal;
                font-weight: 500;
                font-size: 24px;
                text-align: center;
                color: #F7C11A;
            }

            .faq-content ul li .question-wrap {
                width: calc(100% - 80px);
                display: flex;
                flex-direction: column;
            }

                .faq-content ul li .question-wrap .question {
                    width: 100%;
                    font-style: normal;
                    font-weight: 500;
                    font-size: 24px;
                    color: #FFFFFF;
                    cursor: pointer;
                }

                .faq-content ul li .question-wrap .answer {
                    width: 100%;
                    font-style: normal;
                    font-weight: 300;
                    font-size: 20px;
                    line-height: 1.5;
                    color: #C4C4C4;
                    margin-top: 15px;
                }
                    .faq-content ul li .question-wrap .answer a {
                        color: #F7C11A !important;
                    }

.faq-contact {
    padding-bottom: 80px;
}

    .faq-contact .wrapper {
        display: flex;
        justify-content: center;
    }

    .faq-contact .faq-contact-content {
        display: flex;
        width: 100%;
        max-width: 1110px;
        padding: 50px;
        background: #211D55;
        border-radius: 12px;
    }

        .faq-contact .faq-contact-content .half {
            display: flex;
            flex-direction: column;
        }

            .faq-contact .faq-contact-content .half label {
                font-style: normal;
                font-weight: bold;
                font-size: 24px;
                color: #F7C11A;
                margin-bottom: 30px;
            }

            .faq-contact .faq-contact-content .half p {
                font-style: normal;
                font-weight: 300;
                font-size: 20px;
                color: #C4C4C4;
                margin-bottom: 15px;
            }

            .faq-contact .faq-contact-content .half ul {
                width: 100%;
                display: flex;
            }

                .faq-contact .faq-contact-content .half ul li {
                    margin-right: 25px;
                }

.uploadimg-wrapper {
    width: 100%;
    height: 100%;
    max-width: unset !important;
    padding: 15px;
    box-sizing: border-box;
    float: left;
    min-height: 150px !important;
    cursor: none !important;
    /*border: dashed 1px #c1c1c1 !important;*/
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .uploadimg-wrapper .img-wrap {
        position: relative;
        width: 150px;
        height: 150px;
        /*margin-right: 10px;*/
        float: left;
        border: solid 1px #ededed;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        align-content: center;
        margin-bottom: 10px;
    }

        .uploadimg-wrapper .img-wrap.invalid {
            border: solid 1px #f00;
        }

        .uploadimg-wrapper .img-wrap i.upload {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: #1791f2;
            border: solid 1px;
            font-size: 30px;
            cursor: pointer;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            align-content: center;
        }

        .uploadimg-wrapper .img-wrap span {
            position: absolute;
            width: 100%;
            height: 100%;
            text-align: center;
            line-height: 150px;
            z-index: 2;
        }

            .uploadimg-wrapper .img-wrap span i {
                color: #ff0505;
                font-size: 18px;
                border: solid 1px #ff0505;
                padding: 5px;
                background: rgba(255, 255, 255, 0.76);
                cursor: pointer;
            }

    .uploadimg-wrapper img {
        width: 100%;
        height: 100%;
        float: left;
    }

.contact {
    width: 100%;
    background: #262261;
    padding: 80px 0;
}

    .contact .wrapper {
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

.map-content {
    display: flex;
    width: 100%;
    max-width: 1110px;
}

    .map-content .half .iframe-map {
        padding-right: 20px;
        width: 100%;
    }

        .map-content .half .iframe-map iframe {
            border-radius: 10px;
        }

    .map-content .half .row {
        margin-bottom: 40px;
        flex-direction: column;
        padding-left: 10px;
    }

    .map-content .half label {
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        color: #F7C11A;
        margin-bottom: 25px;
    }

    .map-content .half p {
        font-style: normal;
        font-weight: 300;
        font-size: 20px;
        color: #C4C4C4;
        line-height: 2.0;
    }

.contact-form {
    padding: 55px 70px;
    background: #211D55;
    border-radius: 12px;
    /*margin-top: 80px;*/
}

    .contact-form .row {
        margin-bottom: 25px;
    }

        .contact-form .row .half:first-child {
            padding-right: 10px;
        }

        .contact-form .row .half:last-child {
            padding-left: 10px;
        }

        .contact-form .row label {
            font-style: normal;
            font-weight: 500;
            font-size: 18px;
            color: #FFFFFF;
        }

        .contact-form .row .input-wrap {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 8px;
            width: 100%;
            height: 65px;
            margin-top: 10px;
            position: relative;
        }

            .contact-form .row .input-wrap .dropdown {
                position: absolute;
                top: 67px;
                width: 100%;
                background: #15123F;
                border-radius: 8px;
                padding: 20px 0;
                display: flex;
                flex-direction: column;
                z-index: 10;
            }

                .contact-form .row .input-wrap .dropdown li {
                    height: 36px;
                    font-style: normal;
                    font-weight: 300;
                    font-size: 16px;
                    color: #FFFFFF;
                    display: flex;
                    align-items: center;
                    padding: 0 30px;
                    width: 100%;
                    cursor: pointer;
                }

                    .contact-form .row .input-wrap .dropdown li:hover {
                        background: #4149C7;
                    }

        .contact-form .row .upload-wrap {
            width: 100%;
            padding: 10px;
            min-height: 64px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px dashed #F7C11A;
            box-sizing: border-box;
            border-radius: 8px;
            margin-top: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

            .contact-form .row .upload-wrap span {
                color: #c4c4c4;
            }

        .contact-form .row .input-wrap input,
        .contact-form .row .input-wrap textarea {
            width: 100%;
            height: 100%;
            background: none;
            padding: 0 15px;
            color: #C4C4C4;
            font-size: 16px;
            font-family: "Helvetica";
            font-weight: 300;
        }

        .contact-form .row .input-wrap textarea {
            padding: 15px;
        }

        .contact-form .row .input-wrap.select:after {
            content: '\F0140';
            display: inline-flex;
            font-family: "Material Design Icons";
            color: #fff;
            width: 30px;
            height: 100%;
            align-items: center;
            position: absolute;
            right: 0;
            font-size: 30px;
        }

        .contact-form .row .input-wrap.select input {
            cursor: pointer;
        }

        .contact-form .row a.btn-send {
            width: 169px;
            height: 55px;
            background: #F7C11A;
            border-radius: 40px;
            text-transform: uppercase;
            display: flex;
            justify-content: center;
            align-items: center;
            font-style: normal;
            font-weight: normal;
            font-size: 16px;
            color: #FFFFFF;
        }

            .contact-form .row a.btn-send:hover {
                box-shadow: 0px 0px 20px rgb(247 193 26 / 66%);
            }

.policy h2 {
    margin-bottom: 35px;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.policy p {
    margin-bottom: 50px;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    color: #C4C4C4;
    line-height: 1.5;
}

.news-content {
    padding: 80px 0;
    background: #fff;
}

    .news-content .wrapper {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

        .news-content .wrapper > ul {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            max-width: 1114px;
        }

            .news-content .wrapper > ul li {
                display: flex;
                flex-direction: column;
                width: calc(100%/3);
                max-width: 352px;
                margin-bottom: 30px;
            }

                .news-content .wrapper > ul li img {
                    width: 100%;
                    border-radius: 12px;
                    border: solid 1px #ededed;
                }

                .news-content .wrapper > ul li:hover img {
                    border: solid 1px var(--blue);
                }

                .news-content .wrapper > ul li .news-desc {
                    margin-top: 30px;
                }

                    .news-content .wrapper > ul li .news-desc .news-time {
                        font-style: normal;
                        font-weight: 500;
                        font-size: 16px;
                        color: #30A2CB;
                        opacity: 0.7;
                    }

                    .news-content .wrapper > ul li .news-desc .news-title {
                        font-style: normal;
                        font-weight: 500;
                        font-size: 20px;
                        color: #302A86;
                        line-height: 1.5;
                        margin-top: 15px;
                    }
                        .news-content .wrapper > ul li .news-desc .news-title a {
                            color: #302A86;
                        }

                        .news-content .wrapper > ul li .news-desc .news-summary {
                            font-style: normal;
                            font-weight: 300;
                            font-size: 16px;
                            line-height: 1.5;
                            color: #777777;
                            margin-top: 15px;
                        }

                    .news-content .wrapper > ul li .news-desc .read-more {
                        font-style: normal;
                        font-weight: 300;
                        font-size: 16px;
                        color: #697FFF;
                        margin-top: 15px;
                        display: inline-flex;
                    }

                        .news-content .wrapper > ul li .news-desc .read-more .mdi {
                            position: relative;
                            top: 2px;
                        }


                .news-content .wrapper > ul li:first-child {
                    flex-direction: row;
                    max-width: unset;
                    width: 100%;
                    margin-bottom: 80px;
                }
                    .news-content .wrapper > ul li:first-child a{
                        width:50%;
                    }

                    .news-content .wrapper > ul li:first-child img {
                        width: 100%;
                        border-radius: 16px;
                    }

                    .news-content .wrapper > ul li:first-child .news-desc {
                        width: 50%;
                        display: flex;
                        flex-direction: column;
                        padding-left: 30px;
                        margin-top: 0;
                    }

                        .news-content .wrapper > ul li:first-child .news-desc .news-time {
                            font-style: normal;
                            font-weight: 300;
                            font-size: 28px;
                            color: #30A2CB;
                        }

                        .news-content .wrapper > ul li:first-child .news-desc .news-title {
                            font-style: normal;
                            font-weight: bold;
                            font-size: 30px;
                            color: #302A86;
                            margin-top: 15px;
                        }

                        .news-content .wrapper > ul li:first-child .news-desc .news-summary {
                            font-style: normal;
                            font-weight: 300;
                            font-size: 20px;
                            color: #777777;
                            line-height: 1.5;
                            max-height: 150px;
                        }

                        .news-content .wrapper > ul li:first-child .news-desc .read-more {
                            font-style: normal;
                            font-weight: 300;
                            font-size: 20px;
                            color: #697FFF;
                            margin-top: 15px;
                        }

                            .news-content .wrapper > ul li:first-child .news-desc .read-more .mdi {
                                position: relative;
                                top: 2px;
                            }

    .news-content ul.paging {
        display: flex;
        height: 50px;
        margin: 30px 0;
        align-items: center;
        justify-content: center;
    }

        .news-content ul.paging li {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: solid 1px #c4c4c4;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 10px;
        }

            .news-content ul.paging li:last-child {
                margin-right: 0;
            }

            .news-content ul.paging li.active,
            .news-content ul.paging li:hover {
                background: #262261;
            }

            .news-content ul.paging li a {
                color: #777;
                display: flex;
                width: 100%;
                height: 100%;
                align-items: center;
                justify-content: center;
            }

                .news-content ul.paging li a .mdi {
                    font-size: 30px;
                }

            .news-content ul.paging li.active a {
                color: #fff;
            }

.news-detail {
    background: #fff;
    padding: 80px 0;
}

    .news-detail .wrapper {
        display: flex;
    }

        .news-detail .wrapper .col-8 {
            display: flex;
            flex-direction: column;
        }

            .news-detail .wrapper .col-8 h2 {
                font-style: normal;
                font-weight: bold;
                font-size: 30px;
                color: #302A86;
                margin: 15px 0;
            }

            .news-detail .wrapper .col-8 span {
                font-style: normal;
                font-weight: 300;
                font-size: 28px;
                color: #30A2CB;
            }

.detail-content {
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
    color: #777777;
}
    .detail-content ul li{
        list-style-type:inherit;
        list-style-position:inside;
    }

    .detail-content img {
        margin: 10px auto;
        max-width: 100%;
        height: unset !important;
    }

.news-detail .col-4 {
    display: flex;
    flex-direction: column;
    padding-left: 50px;
}

    .news-detail .col-4 .title {
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        color: #302A86;
    }

    .news-detail .col-4 ul {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

        .news-detail .col-4 ul li {
            width: 100%;
            display: flex;
            flex-direction: column;
            margin-bottom: 30px;
        }

            .news-detail .col-4 ul li .row {
                flex-direction: column;
            }

            .news-detail .col-4 ul li .item-img {
                width: 100%;
                border-radius: 6px;
                overflow: hidden;
                margin-bottom: 15px;
            }

            .news-detail .col-4 ul li label {
                font-style: normal;
                font-weight: 300;
                font-size: 20px;
                color: #30A2CB;
                margin-bottom: 10px;
            }

            .news-detail .col-4 ul li h3 a {
                font-style: normal;
                font-weight: bold;
                font-size: 20px;
                line-height: 1.5;
                color: #777777;
                text-decoration: none;
            }

.coin-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    margin-top: 30px;
}

    .coin-content .row {
        margin-bottom: 25px;
        color: #C4C4C4;
        font-size: 16px;
    }

.how-buy {
    width: 100%;
    padding: 80px 0;
}

    .how-buy .wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .how-buy .title {
        font-weight: bold;
        font-size: 40px;
        text-align: center;
        color: #FFFFFF;
        max-width: 640px;
    }

    .how-buy .wrapper > label {
        font-style: normal;
        font-weight: normal;
        font-size: 24px;
        text-align: center;
        text-transform: uppercase;
        color: #F7C11A;
        max-width: 640px;
        margin: 33px 0 27px 0;
        line-height: 1.5;
    }

    .how-buy .how-buy-content {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    .how-buy .wrapper > span {
        font-style: normal;
        font-weight: bold;
        font-size: 24px;
        text-align: center;
        text-transform: uppercase;
        color: #FFFFFF;
        max-width: 640px;
    }

    .how-buy .how-buy-content {
        margin-top: 100px;
    }

        .how-buy .how-buy-content .col-3 {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 0 30px;
        }

        .how-buy .how-buy-content span {
            width: 102px;
            height: 102px;
            background: #4149C7;
            box-shadow: 0px 0px 7px 3px rgba(65, 73, 199, 0.4);
            border-radius: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-style: normal;
            font-weight: bold;
            font-size: 20px;
            text-transform: uppercase;
            color: #FFFFFF;
        }

        .how-buy .how-buy-content label {
            font-style: normal;
            font-weight: normal;
            font-size: 20px;
            text-align: center;
            color: #C4C4C4;
            margin-top: 30px;
            line-height: 1.5;
        }

            .how-buy .how-buy-content label a {
                color: #C4C4C4;
            }

.trend {
    width: 100%;
    padding: 80px 0;
    background: #211D55;
}

    .trend .wrapper {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        padding-bottom: 20px;
    }

    .trend .col-4 {
        padding: 0 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 50px;
    }

        .trend .col-4 .img-wrap {
            width: 102px;
            height: 102px;
            background: #4149C7;
            box-shadow: 0px 0px 7px 3px rgba(65, 73, 199, 0.4);
            border-radius: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trend .col-4 label {
            font-style: normal;
            font-weight: bold;
            font-size: 20px;
            line-height: 1.5;
            text-align: center;
            letter-spacing: 0.02em;
            color: #FFFFFF;
            margin: 30px 0;
        }

        .trend .col-4 p {
            font-style: normal;
            font-weight: normal;
            font-size: 16px;
            line-height: 1.5;
            text-align: center;
            letter-spacing: 0.02em;
            color: #C4C4C4;
        }

    .trend .btn-readmore {
        width: 202px;
        height: 55px;
        background: #F7C11A;
        border-radius: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        color: #FFFFFF;
        font-size: 16px;
    }

        .trend .btn-readmore:hover {
            box-shadow: 0px 0px 20px rgb(247 193 26 / 66%);
        }

.vutrades .wrapper {
    display: flex;
    flex-direction: column;
}

    .vutrades .wrapper .row {
        margin-bottom: 50px;
        align-items: center;
        flex-wrap: wrap;
    }

.vutrades .col-4 img {
    max-width: 345px;
    width: 100%
}

.vutrades .row:first-child .col-8 {
    padding-left: 30px;
}

.vutrades .row:last-child .col-8 {
    padding-right: 30px;
}

.vutrades .col-8 h2 {
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: 1.5;
    color: #FFFFFF;
}

.vutrades .col-8 p {
    font-style: normal;
    font-weight: normal;
    font-size: 20px;
    line-height: 1.5;
    color: #C4C4C4;
}

.vutrades .btn-vutrade {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start;
}

    .vutrades .btn-vutrade a {
        width: 402px;
        height: 55px;
        background: #F7C11A;
        border-radius: 40px;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        display: flex;
        justify-content: center;
        text-transform: uppercase;
        color: #FFFFFF;
        align-items:center;
    }
.timeline .btn-cometo {
    width: 544px;
    height: 55px;
    background: #F7C11A;
    border-radius: 40px;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: #FFFFFF;
    justify-content:center;
}
/*------modal event------*/
.event-modal {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 99999;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .event-modal .modal-content {
        width: 80%;
        max-width: 750px;
        height: 50%;
        max-height: 640px;
        position: relative;
        background: rgb(0 0 0 / 0.86);
    }

        .event-modal .modal-content img {
            width: 100%;
            height: 100%;
        }

        .event-modal .modal-content .close-btn {
            position: absolute;
            right: 0;
            top: 0;
            font-size: 35px;
            color: #ffc107;
            background: #fff;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
.trade-wrap {
    margin-top: 80px;
}

    .trade-wrap li {
        display: flex;
        flex-direction: column;
        /*width: 50%;*/
        align-items: center;
    }

        .trade-wrap li:first-child {
            margin-right: 20px;
        }

        .trade-wrap li .img-wrap {
            justify-content: center;
            margin-bottom:10px;
        }

            .trade-wrap li .img-wrap img {
                max-height: 20px;
            }

        .trade-wrap li a.btn-trade {
            background: #fec40e;
            color: #fff;
            padding: 10px 25px;
            border-radius:20px;
        }

/*---responsive---*/
@media screen and (max-width:1199px) {
    body {
        width: 100%;
        overflow-x: hidden;
    }

    .wrapper {
        width: 100%;
        padding: 0 20px;
        overflow-x: hidden;
    }

    .banner-main {
        height: unset;
    }

        .banner-main .banner-left {
            width: 55%;
        }

        .banner-main .banner-right {
            width: 45%;
        }

    .future .future-content {
        width: 100%;
        margin-top: calc(80 / var(--pcwrap)*100vw);
    }

    .building,
    .wallet,
    .banner-main,
    .onboard {
        background-size: cover;
    }

    .future {
        height: unset;
    }

    .about,
    .chart,
    .wallet,
    .news,
    .timeline {
        height: unset;
        padding-bottom: 50px;
    }

        .chart .half ul.time-line {
            width: calc(100% - 30px);
        }

        .wallet .wallet-left {
            width: 50%;
        }

        .wallet .wallet-right {
            width: 50%;
            height: unset;
        }

    .welscan {
        height: unset;
        padding: calc(70/var(--pcwrap)*100vw) 0;
    }

    .future .future-content li {
        width: calc(50% - 15px);
    }

    .roadmap {
        height: unset;
    }

        .roadmap .roadmap-content {
            width: 100%;
            flex-direction: column;
        }

            .roadmap .roadmap-content .item {
                width: 100%;
                margin-bottom: 30px;
                height: unset;
            }

    .onboard .list-web {
        width: 100%;
    }

    .list-web .owl-next {
        right: -2%;
        top: 16%;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #F7C11A;
        opacity: 0.5;
        color: #fff;
    }

    .list-web .owl-prev {
        left: -2%;
        top: 16%;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #F7C11A;
        opacity: 0.5;
        color: #fff;
    }

    .news ul {
        width: 100%;
    }

        .news ul li {
            width: 100%;
            padding-right: 10px;
        }

            .news ul li .item-content {
                width: 310px;
            }

    .about .list-wel {
        background-size: cover;
        height: unset;
    }

        .about .list-wel ul {
            width: 100%;
            flex-wrap: wrap;
        }

            .about .list-wel ul li {
                width: calc(100%/3);
            }

    .bod ul {
        width: 100%;
    }

        .bod ul li {
            width: 48%;
            height: unset;
        }

    .headquarter .half:last-child img {
        width: 100%;
    }

    .dev-ultimate ul {
        width: 100%;
    }

    .news-content .wrapper > ul li {
        width: 49%;
        max-width: unset;
    }
    .event-modal .modal-content {
        height: unset;
    }

        .event-modal .modal-content img {
            width: 100%;
            height: unset;
        }


}

@media screen and (max-width:1023px) {

/*    [class*="coin-"] {
        display: none;
    }
*/
    .launchpad .coin-content {
        display: block !important;
    }

    .how-buy .how-buy-content {
        flex-wrap: wrap;
    }

        .how-buy .how-buy-content .col-3 {
            margin-bottom: 50px;
        }

    body.mask {
        height: 100vh;
        overflow-y: hidden;
    }

    header ul.menu-top > li {
        display: none;
    }

        header ul.menu-top > li.language {
            margin-right: 25px;
        }

        header ul.menu-top > li.language, header ul.menu-top > li.nav-mobile {
            display: flex;
        }

    .menu-mobile {
        display: flex;
        width: 100vw;
    }

    header ul.menu-top > li.nav-mobile {
        height: 24px;
        width: 24px;
        background: url(../Images/slide-left.png) no-repeat;
        background-size: 100%;
    }

        header ul.menu-top > li.nav-mobile.active {
            height: 24px;
            width: 24px;
            background: url(../Images/close-icon.png) no-repeat;
            background-size: 100%;
        }

    .header {
        position: fixed;
        top: 0;
        left: 0;
    }

    .menu-mobile {
        display: flex;
        width: 100vw;
        position: fixed;
        top: 100px;
        left: -100vw;
        height: 100vh;
        background: #262261;
        z-index: 100;
        -moz-transition: all .2s;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }

        .menu-mobile.active {
            -moz-transition: all .2s;
            -webkit-transition: all .2s;
            -o-transition: all .2s;
            transition: all .2s;
            left: 0;
        }

        .menu-mobile > ul {
            width: 100%;
            padding: 0;
        }

            .menu-mobile > ul > li {
                padding: 15px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                position: relative;
            }

                .menu-mobile > ul > li.has-sub:after {
                    content: '\F0140';
                    display: flex;
                    width: 15px;
                    height: 15px;
                    align-items: center;
                    justify-content: center;
                    font-family: "Material Design Icons";
                    color: var(--gray);
                    position: absolute;
                    top: 15px;
                    right: 10px;
                }

                .menu-mobile > ul > li.active.has-sub:after {
                    content: '\F0143';
                    color: var(--yellow);
                    top: 10px;
                }

                .menu-mobile > ul > li > a {
                    text-transform: uppercase;
                    color: #FFFFFF;
                    padding: 0 20px;
                }

                .menu-mobile > ul > li > ul.sub-menu {
                    width: 100%;
                    background: rgba(21, 18, 63, 0.9);
                    padding-left: 20px;
                    margin-top: 15px;
                }

                    .menu-mobile > ul > li > ul.sub-menu > li {
                        padding: 15px 0;
                    }

                        .menu-mobile > ul > li > ul.sub-menu > li > a {
                            text-transform: uppercase;
                            color: #FFFFFF;
                        }

                .menu-mobile > ul > li.active {
                    padding: 15px 0 0 0;
                    border-bottom: none;
                }

                    .menu-mobile > ul > li.active > ul.sub-menu {
                        width: 100vw;
                        /*margin-left: -20px;*/
                        padding-left: 20px;
                        margin-top: 15px;
                    }

    .banner-main {
        padding: 20px 0;
    }

        .banner-main h2,
        .about .about-title,
        .chart h2.chart-title,
        .wallet h2,
        .welscan .title,
        .future .title,
        .building h2,
        .timeline h2.title,
        .roadmap .title,
        .onboard h2.title,
        .news h2.title,
        .about-unlimited h2,
        .bod h2.title,
        .headquarter h2.title,
        .faq-banner h2.title,
        .community-banner .half h2.title,
        .channel h2.title {
            font-size: 30px;
        }

        .banner-main span {
            font-size: calc(24/640*100vw);
            line-height: unset;
        }

        .banner-main .banner-right {
            height: unset;
        }

    .about .about-content {
        height: unset;
        padding: 30px;
    }

        .about .about-content .read-more:after {
            width: 40px;
            height: 40px;
        }

    .chart h2.chart-title {
        width: 100%;
        height: unset;
        margin-top: 30px;
        text-align: center;
        line-height: unset;
    }

    .chart .row {
        flex-direction: column;
    }

    .chart .half {
        width: 100%;
        margin-top: 30px;
    }

        .chart .half img {
            max-width: 585px;
        }

    .wallet .wallet-left {
        margin-top: 30px;
    }

    .wallet .download-app {
        margin-top: 25px;
    }

    .welscan-content {
        width: 100%;
        height: unset;
    }

    .welscan a.btn-visit {
        margin-top: 0;
    }

    .future .title {
        width: 100%;
        margin-top: 30px;
    }

    .future label {
        font-size: 24px;
    }

    .building {
        height: unset;
    }

        .building .building-left {
            width: 100%;
            margin: 30px 0;
        }

        .building .building-right {
            display: none;
        }

    .dapp.building .building-right {
        display: flex;
        width: 100%;
        margin-top: 30px;
        height: unset;
    }

        .dapp.building .building-right img {
            max-width: 479px;
            width: 100%;
        }

    .building h2 {
        text-align: center;
    }

    .timeline .content ul {
        width: 100%;
    }

    .timeline h2.title {
        margin: 30px 0;
    }

    .timeline .content ul li .half span.year {
        font-size: 40px;
    }

    .roadmap .title {
        margin: 30px 0;
    }

    .onboard {
        height: unset;
        padding-bottom: 30px;
    }

        .onboard h2.title {
            width: 100%;
            margin: 30px 0;
            line-height: unset;
        }

        .onboard .list-web {
            margin-top: 30px;
        }

            .onboard .list-web ul li {
                width: 80%;
            }

    .news {
        padding-bottom: 30px;
    }

        .news h2.title {
            width: 100%;
            margin: 30px 0;
        }

        .news ul li .item-content {
            width: calc(100%-180px);
        }

    .list-web .owl-next,
    .list-web .owl-prev {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

    .list-web .owl-next {
        right: 0;
    }

    .list-web .owl-prev {
        left: 0;
    }

    .news ul li .item-content {
        width: calc(100% - 180px);
    }

    footer {
        padding-top: 30px;
    }

        footer > .top-footer .col-4 {
            width: 100%;
        }

            footer > .top-footer .col-4 p {
                width: 100%;
                margin-bottom: 30px;
            }

        footer > .top-footer .col-2 {
            width: 50%;
            margin-bottom: 30px;
        }

        footer > .top-footer {
            padding-bottom: 30px;
        }

    .about .list-wel .title {
        font-size: 24px;
    }

    .bod ul li {
        width: 100%;
        height: unset;
    }

    .banner-main.about,
    .bod,
    .headquarter {
        padding: 30px 0;
    }

        .bod ul {
            margin-top: 30px;
        }

    .dev-ultimate ul li {
        width: 50%;
    }

    .dev-download .wrapper {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
        align-content: center;
        text-align: center;
    }

        .dev-download .wrapper h2 {
            width: 100%;
        }

    .dev-download .download-wrap {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
    }

        .dev-download .download-wrap a:first-child {
            margin-right: 10px;
        }

        .dev-download .download-wrap a:last-child {
            margin-left: 10px;
        }

    .faq-contact .faq-contact-content {
        flex-direction: column;
    }

        .faq-contact .faq-contact-content .half {
            width: 100%;
            margin-bottom: 30px;
        }

            .faq-contact .faq-contact-content .half:last-child {
                margin-bottom: 0;
            }

    .contact {
        padding: 30px 0;
    }

    .contact-form {
        padding: 20px;
    }

    .map-content {
        flex-direction: column;
    }

        .map-content .half {
            width: 100%;
            margin-top: 30px;
        }

            .map-content .half .iframe-map {
                padding-right: 0;
            }

    .contact-form .row {
        flex-direction: column;
    }

        .contact-form .row .half {
            width: 100%;
        }

            .contact-form .row .half:first-child {
                padding-right: 0;
            }

            .contact-form .row .half:last-child {
                padding-left: 0;
                margin-top: 25px;
            }

    .community-banner .wrapper {
        flex-direction: column;
    }

    .community-banner .half {
        width: 100%;
        overflow: hidden;
    }

    .channel ul {
        flex-wrap: wrap;
        width: 70%;
    }

        .channel ul li {
            width: 50%;
        }

            .channel ul li a,
            .channel ul li span {
                margin-top: 15px;
            }

        .channel ul li {
            margin-bottom: 60px
        }
}

@media screen and (max-width:639px) {
    [class*="col-"] {
        width: 100%;
    }

    .wrapper {
        padding: 0 10px;
    }

    /*header {
        height: 80px;
    }*/

    .banner-main .wrapper {
        flex-direction: column;
    }

    .banner-main .banner-left {
        width: 100%;
    }

    .banner-main .banner-right {
        width: 100%;
        padding-bottom: 30px;
    }

    .banner-main p {
        font-size: calc(24/640*100vw);
        line-height: 1.5;
    }

    .banner-main .download {
        width: 150px;
        height: 40px;
        font-size: 12px;
        margin-top: 20px;
    }

    .future .future-content li {
        width: 100%;
        height: unset;
    }

    .future .title {
        line-height: unset;
    }

    .chart .half ul.time-line li {
        font-size: 17px;
    }

    .wallet .wrapper,
    .banner-main .wrapper {
        flex-direction: column;
        overflow: hidden;
    }

    .wallet .wallet-left {
        width: 100%;
    }

    .wallet .wallet-right {
        width: 100%;
    }

    .wallet span {
        font-size: calc(25/640*100vw);
        margin-top: 0;
    }

    .wallet p,
    .about .about-content p,
    .building p,
    .welscan p {
        font-size: 17px;
        line-height: 1.5;
    }

    .onboard .btn-wrap {
        width: 100%;
    }

    .about .about-title {
        height: 90px;
    }

    .wallet .download-app {
        width: 100%;
    }

        .wallet .download-app ul li {
            width: 45%;
        }

    .about .about-title {
        display: inline-block;
        text-align: center;
        margin-top: 30px;
    }

    .news ul li .news-item {
        height: unset;
    }

    .news ul li .item-content h3 {
        font-size: 17px;
    }

    .news ul li .item-content p {
        font-size: 14px;
        margin: 7px 0 7px 0;
    }

    .news ul li .item-content a {
        font-size: 14px;
    }

    .onboard .btn-wrap a.join {
        width: 55%;
        max-width: 222px;
    }

    .banner-main h2, .about .about-title, .chart h2.chart-title, .wallet h2, .welscan .title, .future .title, .building h2, .timeline h2.title, .roadmap .title, .onboard h2.title, .news h2.title, .how-buy .title {
        font-size: 25px;
    }

    .chart h2.chart-title {
        flex-direction: column;
    }

    .timeline .content ul li .half span.year {
        font-size: 30px;
    }

    .future label {
        font-size: 18px;
    }

    .about .about-content .read-more {
        font-size: 16px;
    }

    .about-unlimited .half {
        width: 100%;
    }

    .about-unlimited .row {
        flex-direction: column;
    }

    .headquarter .headquarter-content {
        flex-direction: column;
    }

    .headquarter .half {
        width: 100%;
    }

        .headquarter .half:last-child {
            margin-top: 30px;
        }

    .about-unlimited .half img {
        width: 100%;
    }

    .bod .col-5 img {
        /*width: 100%;*/
        max-width: 148px;
    }

    .bod ul li .col-7 {
        margin-left: 20px;
    }

    .headquarter .half p {
        font-size: 20px;
    }

    .dev-download .wrapper h2,
    .dev-ultimate h2 {
        font-size: 25px;
    }

    .dev-ultimate p {
        font-size: 16px;
    }

    .roadmap .roadmap-content .item ul li {
        font-size: 17px;
    }

    .policy p {
        font-size: 16px;
    }

    .news-content {
        padding: 30px 0;
    }

        .news-content .wrapper > ul li:first-child img {
            width: 100%;
        }

        .news-content .wrapper > ul li:first-child {
            flex-direction: column;
            margin-bottom: 30px;
        }

            .news-content .wrapper > ul li:first-child .news-desc .news-title {
                font-size: 20px;
            }

            .news-content .wrapper > ul li:first-child .news-desc {
                width: 100%;
                padding-left: 0;
                margin-top: 30px;
            }

                .news-content .wrapper > ul li:first-child .news-desc .news-time {
                    font-style: normal;
                    font-weight: 500;
                    font-size: 16px;
                    color: #30A2CB;
                    opacity: 0.7;
                }

                .news-content .wrapper > ul li:first-child .news-desc .news-summary {
                    font-size: 17px;
                }

                .news-content .wrapper > ul li:first-child .news-desc .read-more {
                    font-size: 17px;
                }

        .news-content .wrapper > ul li .news-desc .news-title {
            font-size: 17px;
        }

        .news-content .wrapper > ul li .news-desc .news-summary {
            font-size: 15px;
        }

        .news-content .wrapper > ul li {
            width: 100%;
        }

    .news-detail {
        padding: 30px 0;
    }

        .news-detail .wrapper {
            flex-direction: column;
        }

        .news-detail .col-4 {
            padding-left: 0;
            margin-top: 30px;
        }

        .news-detail .wrapper .col-8 h2 {
            font-size: 25px;
        }

        .news-detail .wrapper .col-8 span {
            font-size: 20px;
        }

    .detail-content {
        font-size: 16px;
    }

    .channel ul {
        width: 100%;
    }

        .channel ul li {
            margin-bottom: 30px;
            width: 100%;
        }

    .uploadimg-wrapper .img-wrap {
        width: 80px;
        height: 80px;
    }

    .faq-content {
        padding-top: 30px;
    }

    .faq-contact {
        padding-bottom: 30px;
    }

        .faq-contact .faq-contact-content {
            padding: 20px;
        }

            .faq-contact .faq-contact-content .half ul {
                flex-wrap: wrap;
                align-items: center;
                justify-content: space-between;
            }

                .faq-contact .faq-contact-content .half ul li {
                    margin-right: 10px;
                }

    .faq-content ul li {
        min-height: unset;
        padding: 20px 0;
    }

        .faq-content ul li span,
        .faq-content ul li .question-wrap .question {
            font-size: 18px;
        }

        .faq-content ul li .question-wrap .answer {
            font-size: 16px;

        }
           

            .building {
                padding: 0 0 30px 0;
            }

    .channel {
        padding: 30px 0;
    }

    .news ul li .news-item {
        flex-direction: column;
    }

    .news ul li .img-wrap {
        width: 100%;
    }

    .news ul li .item-content {
        width: 100%;
        padding: 30px 0 0 0;
    }

    .onboard .btn-wrap {
        justify-content: center;
    }

        .onboard .btn-wrap a.join {
            margin-right: 15px;
        }

    .how-buy .wrapper > span,
    .how-buy .wrapper > label {
        font-size: 18px;
    }
}

@media screen and (max-width:320px) {
    .news ul li img {
        width: 110px;
        height: 110px;
    }

    .news ul li .item-content {
        width: calc(100% - 120px)
    }
}