@font-face {
    font-family: 'wukong';
    src: url('/assets/font/wukong.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/

::-moz-selection {
    color: #fff;
    background: rgba(243, 22, 22, 0.6);
}

::selection {
    color: #fff;
    background: rgba(243, 22, 22, 0.6);
}

/*       ScrollBar 1       */

::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    border-radius: 0px;
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 3px solid transparent;
    background-clip: content-box;
    background-color: #f31616;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 30px;
}

body {
    font-family: "wukong", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
    background: #1b121d;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #000000), color-stop(50%, #000000), to(#0a0606));
    background: linear-gradient(90deg, #000000 0, #000000 50%, #0a0606 100%);
    height: auto;
    position: relative;
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 15px;
    }
}

body::before {
    content: "";
    top: 27.5%;
    left: 23.9%;
    background-color: #d60606;
    -webkit-filter: blur(150px);
    -o-filter: blur(150px);
    filter: blur(150px);
    width: 220px;
    height: 220px;
    border-radius: 100%;
    position: fixed;
    z-index: -1;
}

@media only screen and (max-width: 767px) {
    body::before {
        width: 150px;
        height: 150px;
        -webkit-filter: blur(70px);
        filter: blur(70px);
    }
}

body::after {
    content: "";
    top: 42.8%;
    right: 25%;
    background-color: #e20c0c;
    -webkit-filter: blur(150px);
    -o-filter: blur(150px);
    filter: blur(150px);
    width: 200px;
    height: 200px;
    border-radius: 100%;
    position: fixed;
    z-index: -1;
}

@media only screen and (max-width: 767px) {
    body::after {
        width: 150px;
        height: 150px;
        -webkit-filter: blur(70px);
        filter: blur(70px);
    }
}

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

section {
    overflow: hidden;
}

a {
    text-decoration: none;
}

a:hover {
    color: #f31616;
}

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

i,
span,
a {
    display: inline-block;
}

audio,
img,
svg,
video {
    vertical-align: middle;
}

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

p {
    margin: 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

.scroll-top {
    width: 35px;
    height: 35px;
    background-color: #f31616;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    color: #000;
    border-radius: 7px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    display: none;
}

.scroll-top img {
    height: 18px;
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
    fill: #FFFFFF;
}

.scroll-top:focus,
.scroll-top:hover {
    color: #000;
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0 0 0 0.25rem rgba(243, 22, 22, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(243, 22, 22, 0.5);
}

/*--------------------------------------------------------------
  ##  Page Loader
  --------------------------------------------------------------*/

.page-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000;
    z-index: 99999999;
}

.lds-spinner {
    color: official;
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.lds-spinner div {
    -webkit-transform-origin: 40px 40px;
    transform-origin: 40px 40px;
    -webkit-animation: lds-spinner 1.2s linear infinite;
    animation: lds-spinner 1.2s linear infinite;
}

.lds-spinner div:after {
    content: " ";
    display: block;
    position: absolute;
    top: 3px;
    left: 37px;
    width: 6px;
    height: 18px;
    border-radius: 20%;
    background: #f31616;
}

.lds-spinner div:nth-child(1) {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.lds-spinner div:nth-child(2) {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.lds-spinner div:nth-child(3) {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.lds-spinner div:nth-child(4) {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.lds-spinner div:nth-child(5) {
    -webkit-transform: rotate(120deg);
    transform: rotate(120deg);
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.lds-spinner div:nth-child(6) {
    -webkit-transform: rotate(150deg);
    transform: rotate(150deg);
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.lds-spinner div:nth-child(7) {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.lds-spinner div:nth-child(8) {
    -webkit-transform: rotate(210deg);
    transform: rotate(210deg);
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.lds-spinner div:nth-child(9) {
    -webkit-transform: rotate(240deg);
    transform: rotate(240deg);
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.lds-spinner div:nth-child(10) {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.lds-spinner div:nth-child(11) {
    -webkit-transform: rotate(300deg);
    transform: rotate(300deg);
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

.lds-spinner div:nth-child(12) {
    -webkit-transform: rotate(330deg);
    transform: rotate(330deg);
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

@-webkit-keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# custom-modal
--------------------------------------------------------------*/

.custom-modal .modal-content {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    position: relative;
    background-color: #141b22;
    border: 2px dashed #ff0000;
}

.custom-modal .btn-closed {
    position: absolute;
    top: 4px;
    right: 10px;
    border: 0;
    background-color: transparent;
    color: #ff0000;
    font-size: 21px;
}

.custom-modal .modal-body {
    padding: 20px 20px;
}

.custom-modal .not-img {
    max-height: 40px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.custom-modal h2 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.custom-modal p {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0.8;
}

.custom-modal p a {
    text-decoration: underline;
    display: inline-block;
    color: #ddd;
}

.btn-w-logo {
    text-decoration: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    border: 0;
    background-color: #000;
    border: 2px solid #f31616;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #ddd;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    margin-top: 36px;
}

.btn-w-logo img {
    height: 25px;
    margin-right: 8px;
}

.btn-w-logo:hover {
    background-color: #f31616;
    color: #ddd;
}

@media only screen and (max-width: 991px) {
    .btn-w-logo {
        margin-top: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .btn-w-logo {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 482px) {
    .btn-w-logo {
        margin-top: 16px;
    }
}

.sec-t span {
    display: inline-block;
    color: #f31616;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

@media only screen and (max-width: 991px) {
    .sec-t span {
        font-size: 16px;
    }
}

.sec-t h2 {
    font-size: 36px;
    background: -webkit-linear-gradient(#f15c0c, #d40404);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 20px;
}

.sec-t h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    border-radius: 10px;
    background-color: #f31616;
}

@media only screen and (max-width: 991px) {
    .sec-t h2::before {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media only screen and (max-width: 1199px) {
    .sec-t h2 {
        font-size: 31px;
    }
}

@media only screen and (max-width: 991px) {
    .sec-t h2 {
        font-size: 26px;
        margin-bottom: 12px;
    }
}

.sec-t.text-center h2::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/*--------------------------------------------------------------
# sec-t
--------------------------------------------------------------*/

.sec-padding {
    padding: 80px 0px;
}

@media only screen and (max-width: 1199px) {
    .sec-padding {
        padding: 60px 0px;
    }
}

@media only screen and (max-width: 991px) {
    .sec-padding {
        padding: 50px 0px;
    }
}

@media only screen and (max-width: 767px) {
    .sec-padding {
        padding: 40px 0px;
    }
}

/* get started */

.main-timeline {
    overflow: hidden;
    position: relative;
}

.main-timeline .timeline {
    position: relative;
    margin-top: -79px;
}

.main-timeline .timeline ul {
    margin: 0;
}

.main-timeline .timeline ul li {
    font-size: 15px;
}

.main-timeline .timeline ul li:not(:last-child) {
    margin-bottom: 7px;
}

.main-timeline .timeline:first-child {
    margin-top: 0;
}

.main-timeline .timeline:before,
.main-timeline .timeline:after {
    content: "";
    display: block;
    width: 100%;
    clear: both;
}

.main-timeline .timeline:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.main-timeline .timeline-icon {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 25px solid transparent;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media only screen and (max-width: 991px) {
    .main-timeline .timeline-icon {
        border-top-color: #f31616;
        border-right-color: #f31616;
    }
}

.main-timeline .year {
    display: block;
    width: 110px;
    height: 110px;
    line-height: 110px;
    border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    margin: auto;
    font-size: 20px;
    font-weight: bold;
    color: #f31616;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.main-timeline .timeline-content {
    width: 35%;
    float: right;
    background: #f31616;
    padding: 30px 20px;
    margin: 50px 0;
    z-index: 1;
    position: relative;
    border-radius: 16px;
}

.main-timeline .timeline-content:before {
    content: "";
    width: 20%;
    height: 15px;
    background: #f31616;
    position: absolute;
    top: 50%;
    left: -20%;
    z-index: -1;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.main-timeline .title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 10px 0;
}

.main-timeline .description {
    font-size: 16px;
    color: #fff;
    line-height: 24px;
    margin: 0;
}

.main-timeline .timeline:nth-child(2n) .timeline-icon {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.main-timeline .timeline:nth-child(2n) .year {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.main-timeline .timeline:nth-child(2n) .timeline-content {
    float: left;
}

.main-timeline .timeline:nth-child(2n) .timeline-content:before {
    left: auto;
    right: -20%;
}

@media only screen and (max-width: 1199px) {
    .main-timeline .timeline {
        margin-top: -103px;
    }
    .main-timeline .timeline-content:before {
        left: -18%;
    }
    .main-timeline .timeline:nth-child(2n) .timeline-content:before {
        right: -18%;
    }
}

@media only screen and (max-width: 990px) {
    .main-timeline .timeline {
        margin-top: -127px;
    }
    .main-timeline .timeline-content:before {
        left: -2%;
    }
    .main-timeline .timeline:nth-child(2n) .timeline-content:before {
        right: -2%;
    }
}

@media only screen and (max-width: 767px) {
    .main-timeline .timeline {
        margin-top: 0;
        overflow: hidden;
    }
    .main-timeline .timeline:before,
    .main-timeline .timeline:nth-child(2n):before {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .main-timeline .timeline-icon,
    .main-timeline .timeline:nth-child(2n) .timeline-icon {
        margin-top: -30px;
        margin-bottom: 20px;
        position: relative;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    .main-timeline .year,
    .main-timeline .timeline:nth-child(2n) .year {
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
    .main-timeline .timeline-content,
    .main-timeline .timeline:nth-child(2n) .timeline-content {
        width: 100%;
        float: none;
        border-radius: 0 0 20px 20px;
        text-align: center;
        padding: 25px 20px;
        margin: 0 auto;
    }
    .main-timeline .timeline-content:before,
    .main-timeline .timeline:nth-child(2n) .timeline-content:before {
        width: 15px;
        height: 25px;
        position: absolute;
        top: -22px;
        left: 50%;
        z-index: -1;
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
}

.btn-presale {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    background-image: -webkit-gradient(linear, left top, right top, from(#DCE35B), color-stop(51%, #45B649), to(#DCE35B));
    background-image: linear-gradient(to right, #DCE35B 0%, #45B649 51%, #DCE35B 100%);
    background-size: 200% auto;
    padding: 8px 8px;
    border-radius: 7px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.btn-presale:hover {
    background-position: right center;
    color: #000000;
}

.nice-btns {
    text-align: center;
    padding-top: 20px;
}

.nice-btns .btn-ni {
    display: inline-block;
    padding: 10px 10px;
    min-width: 120px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    background-image: -webkit-gradient(linear, left top, right top, from(#E0EAFC), color-stop(51%, #CFDEF3), to(#E0EAFC));
    background-image: linear-gradient(to right, #E0EAFC 0%, #CFDEF3 51%, #E0EAFC 100%);
    -webkit-box-shadow: 0 0 15px #eee;
    box-shadow: 0 0 15px #eee;
    background-size: 200% auto;
    border-radius: 6px;
}

.partner .client-img {
    text-decoration: none;
    background-color: rgba(198, 197, 197, 0.468);
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    padding: 20px 20px;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.partner .client-img img {
    width: 100%;
    height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media only screen and (max-width: 767px) {
    .partner .client-img img {
        height: 40px;
    }
}

.partner .client-img.big-h img {
    height: 53px;
}

@media only screen and (max-width: 767px) {
    .partner .client-img.big-h img {
        height: 45px;
    }
}

.partner .client-img:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

/*--------------------------------------------------------------
# navbar
--------------------------------------------------------------*/

.navbar-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: transparent;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    border-bottom: 1px solid transparent;
}

.navbar-area .container {
    max-width: 1500px;
}

.navbar {
    padding: 0;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 12px 0;
    padding-top: 20px;
}

@media only screen and (max-width: 991px) {
    .navbar {
        padding: 12px 0;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 12px 0;
    }
}

@media (max-width: 482px) {
    .navbar {
        padding: 10px 0;
    }
}

.navbar .navbar-brand {
    padding: 0;
    text-decoration: none;
}

.navbar .navbar-brand img {
    height: 36px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .navbar .navbar-brand img {
        height: 33px;
    }
}

@media only screen and (max-width: 482px) {
    .navbar .navbar-brand img {
        height: 30px;
    }
}

.navbar .navbar-nav {
    /** Large devices (desktops, 992px and up) **/
}

@media (min-width: 992px) {
    .navbar .navbar-nav {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

.navbar .navbar-nav .nav-item {
    position: relative;
    margin-left: 20px;
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-nav .nav-item {
        margin-left: 16px;
    }
}

.navbar .navbar-nav .nav-item.active {
    color: #f31616;
}

.navbar .navbar-nav .nav-item.active a {
    color: #f31616;
}

.navbar .navbar-nav .nav-item a {
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 4px 0;
    position: relative;
    font-weight: 600;
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-nav .nav-item a {
        color: #fff;
    }
}

.navbar .navbar-nav .nav-item a:hover,
.navbar .navbar-nav .nav-item a.active {
    color: #f31616;
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-nav .nav-item a {
        display: inline-block;
        margin: 4px 0px;
        padding: 6px 0;
    }
}

@media only screen and (max-width: 767px) {
    .navbar .navbar-nav .nav-item a {
        display: inline-block;
        padding: 6px 0;
    }
}

.navbar .navbar-nav .nav-item a.btn-nav {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    background-image: -webkit-gradient(linear, left top, right top, from(#dce35b), color-stop(51%, #45b649), to(#dce35b));
    background-image: linear-gradient(to right, #dce35b 0%, #45b649 51%, #dce35b 100%);
    background-size: 200% auto;
    padding: 8px 10px !important;
    border-radius: 10px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.navbar .navbar-nav .nav-item a.btn-nav:hover {
    background-position: right center;
    color: #000000;
}

.navbar .navbar-nav .nav-item a.btn-nav.btn-nav-2 {
    padding: 6px 14px !important;
    color: #ddd;
    border: 2px solid #f31616;
    background: transparent;
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-nav .nav-item a.btn-nav.btn-nav-2 {
        margin-top: 12px;
    }
}

@media only screen and (max-width: 991px) {
    .navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #130f15;
        z-index: 9;
        padding: 15px 12px 20px 12px;
    }
}

@media only screen and (max-width: 767px) {
    .navbar .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #130f15;
        z-index: 9;
    }
}

.navbar .navbar-toggler {
    padding: 0;
}

.navbar .navbar-toggler:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.navbar .navbar-toggler .toggler-icon {
    width: 30px;
    height: 2px;
    background-color: #FFFFFF;
    display: block;
    margin: 5px 0;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar .navbar-toggler.active .toggler-icon:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 7px;
}

.navbar .navbar-toggler.active .toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar .navbar-toggler.active .toggler-icon:nth-of-type(3) {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: -7px;
}

.sticky {
    position: fixed;
    z-index: 99;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #0d080e), color-stop(50%, #2f0f0f), to(#1d1212));
    background: linear-gradient(90deg, #0d080e 0, #2f0f0f 50%, #1d1212 100%);
    border-bottom: 1px solid;
    border-bottom-color: rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    -webkit-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
    padding: 10px 0;
}

@media only screen and (max-width: 991px) {
    .sticky .navbar {
        padding: 10px 0px;
    }
}

@media (max-width: 767px) {
    .sticky .navbar {
        padding: 10px 0;
    }
}

.sticky .navbar .navbar-brand {
    padding: 0;
    text-decoration: none;
}

.sticky .navbar .navbar-brand img {
    height: 36px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .sticky .navbar .navbar-brand img {
        height: 33px;
    }
}

@media only screen and (max-width: 482px) {
    .sticky .navbar .navbar-brand img {
        height: 30px;
    }
}

.social-nav {
    padding-left: 16px;
}

@media only screen and (max-width: 991px) {
    .social-nav {
        padding-top: 12px;
    }
}

.social-nav li a {
    margin-right: 6px;
}

.social-nav li a:last-child {
    margin-right: 0;
}

.social-nav li a img {
    height: 34px;
}

/*--------------------------------------------------------------
# hero-area
--------------------------------------------------------------*/

.hero-area {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media only screen and (max-width: 1199px) {
    .hero-area {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-area {
        text-align: center;
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

@media only screen and (max-width: 482px) {
    .hero-area {
        padding-top: 100px;
        padding-bottom: 80px;
    }
}

.hero-area .an-img {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.hero-area .hero-text h1 {
    font-size: 43px;
    font-weight: 700;
    color: #fff;
    background: -webkit-linear-gradient(#f15c0c, rgb(212, 4, 4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

@media only screen and (max-width: 1199px) {
    .hero-area .hero-text h1 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-area .hero-text h1 {
        font-size: 32px;
        margin-bottom: 18px;
    }
}

.hero-area .hero-text p {
    font-size: 17px;
    font-weight: 500;
    color: #ddd;
    max-width: 500px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
    .hero-area .hero-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media only screen and (max-width: 767px) {
    .hero-area .hero-text p {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 482px) {
    .hero-area .hero-text p {
        max-width: 320px;
        margin-bottom: 10px;
    }
}

.hero-area .hero-img img {
    max-width: 100%;
    height: auto;
}

.hero-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: -8px;
    margin-right: -8px;
}

@media only screen and (max-width: 991px) {
    .hero-btns {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .hero-btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.hero-btns .btn-hero {
    margin-left: 8px;
    margin-right: 8px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(103.39deg, #f31616 17.02%, #f15c0c 127.4%);
    border: 0;
    color: #ddd;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    padding: 7px 18px;
    min-width: 140px;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.hero-btns .btn-hero:hover {
    background-color: #000;
    -webkit-box-shadow: 0 3px 20px 0px rgba(13, 108, 153, 0.52);
    box-shadow: 0 3px 20px 0px rgba(13, 108, 153, 0.52);
    color: #fff;
}

@media only screen and (max-width: 767px) {
    .hero-btns .btn-hero {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        margin-top: 16px;
        min-width: 170px;
    }
}

.hero-btns .btn-hero.btn-pink {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: linear-gradient(103.39deg, #be2790 17.02%, #f766cb 127.4%);
}

.hero-btns .btn-hero.btn-pink img {
    height: 35px;
    margin-right: 10px;
}

.hero-btns .btn-2 {
    background: #fff;
    color: #f31616;
}

/*--------------------------------------------------------------
  ## page-hero
--------------------------------------------------------------*/

.page-hero {
    background-image: url(../img/cta-s.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
    padding-top: 190px;
    padding-bottom: 120px;
    text-align: center;
}

@media only screen and (max-width: 1199px) {
    .page-hero {
        padding-top: 160px;
        padding-bottom: 100px;
    }
}

@media only screen and (max-width: 991px) {
    .page-hero {
        text-align: center;
        padding-top: 130px;
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 482px) {
    .page-hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }
}

.page-hero .page-txt h1 {
    color: #fff;
    background: -webkit-linear-gradient(#f15c0c, rgb(212, 4, 4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 43px;
    font-weight: 700;
    color: #fff;
    background: -webkit-linear-gradient(#f15c0c, rgb(212, 4, 4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1199px) {
    .page-hero .page-txt h1 {
        font-size: 38px;
    }
}

@media only screen and (max-width: 767px) {
    .page-hero .page-txt h1 {
        font-size: 32px;
    }
}

/*--------------------------------------------------------------
# why
--------------------------------------------------------------*/

.br-10 {
    border-radius: 14px;
}

.why {
    padding: 80px 0px;
}

@media only screen and (max-width: 1199px) {
    .why {
        padding: 60px 0px;
    }
}

@media only screen and (max-width: 767px) {
    .why {
        padding: 40px 0px;
    }
}

.why .sec-t-about h2 {
    font-size: 35px;
    font-weight: 700;
    color: #f0a5a4;
    background: -webkit-gradient(linear, right top, left top, color-stop(15.33%, #9bb3f2), color-stop(101.88%, #f0a5a4));
    background: linear-gradient(270deg, #9bb3f2 15.33%, #f0a5a4 101.88%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400% 400%;
    margin-bottom: 26px;
}

@media only screen and (max-width: 1199px) {
    .why .sec-t-about h2 {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .why .sec-t-about h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
}

.why p:not(:last-child) {
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .why p:not(:last-child) {
        margin-bottom: 16px;
    }
}

.flashing-text {
    max-width: 460px;
}

@media only screen and (max-width: 991px) {
    .flashing-text {
        margin-left: auto;
        margin-right: auto;
    }
}

.flashing-text h6 {
    -webkit-animation: flashing 1s ease-in-out infinite;
    animation: flashing 1s ease-in-out infinite;
    margin: 0 !important;
    line-height: 1.5;
    font-weight: 400;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .flashing-text h6 {
        font-size: 14px;
        bottom: 30px;
    }
}

@-webkit-keyframes flashing {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@keyframes flashing {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes bounce {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/* welcome */

.welcome {
    padding: 20px 0px;
}

@media only screen and (max-width: 991px) {
    .welcome {
        text-align: center;
    }
}

.welcome h2 {
    font-size: 40px;
    background: -webkit-linear-gradient(#f15c0c, rgb(212, 4, 4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1199px) {
    .welcome h2 {
        font-size: 36px;
    }
}

@media only screen and (max-width: 991px) {
    .welcome h2 {
        font-size: 30px;
        margin-bottom: 12px;
    }
}

.welcome-box {
    background-color: #f31616;
    background-color: #300404;
    border: 2px solid #f31616;
    padding: 60px 60px;
    border-radius: 20px;
}

@media only screen and (max-width: 1199px) {
    .welcome-box {
        padding: 40px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .welcome-box {
        padding: 30px 30px;
    }
}

.welcome-box p {
    font-size: 17px;
}

@media only screen and (max-width: 767px) {
    .welcome-box p {
        font-size: 16px;
    }
}

/* about */

@media only screen and (max-width: 991px) {
    .about {
        text-align: center;
    }
}

@media only screen and (max-width: 991px) {
    .about .abt-img {
        max-width: 300px;
        margin: auto;
    }
}

/* .feature */

.feature .f-single {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    padding: 20px 20px;
    height: 100%;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.feature .f-single .f-icon {
    max-height: 60px;
    margin-bottom: 20px;
}

.feature .f-single h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature .f-single p {
    font-size: 15px;
    line-height: 1.5;
}

.feature .f-single:hover {
    border-color: #f31616;
}

.feature .f-two {
    background-color: rgba(86, 11, 11, 0.7333333333);
    -webkit-box-shadow: inset 0 0 25px #000;
    box-shadow: inset 0 0 25px #000;
    border: 0;
}

.feature .f-inner {
    background-color: rgba(59, 3, 3, 0.3176470588);
    -webkit-box-shadow: inset 0 0 15px #000;
    box-shadow: inset 0 0 15px #000;
    border-radius: 20px;
    padding: 20px;
}

/* contact */

.contact {
    background-image: url("../img/cta-s.jpg");
    background-position: center;
    background-size: cover;
    text-align: center;
}

.contact .con-text {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.contact .con-text p {
    font-size: 23px;
}

@media only screen and (max-width: 991px) {
    .contact .con-text p {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .contact .con-text p {
        font-size: 18px;
    }
}

.social {
    text-align: center;
    padding-top: 30px;
}

@media only screen and (max-width: 991px) {
    .social {
        padding-top: 12px;
    }
}

.social a {
    margin-right: 12px;
    display: inline-block;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}

.social a:last-child {
    margin-right: 0;
}

.social a img {
    max-height: 50px;
}

.social a:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/*--------------------------------------------------------------
  ## team
--------------------------------------------------------------*/

.team {
    background-image: url(../img/red-bg.jpg);
    background-position: center;
    background-size: cover;
}

.team .team-si {
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
    border-radius: 16px;
    padding: 20px 20px;
    text-align: center;
    height: 100%;
}

.team .team-si .team-img {
    width: 100%;
    max-width: 150px;
    margin-bottom: 10px;
}

.team .team-si h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team .team-si span {
    font-size: 13px;
    color: rgb(245, 209, 32);
    line-height: 1.4;
}

.team .team-si p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 16px;
}

/*--------------------------------------------------------------
# token
--------------------------------------------------------------*/

.yellow {
    background-color: #ffd014;
}

.presale {
    background-color: #FD728F;
}

.liq {
    background-color: #049BFF;
}

.purple {
    background-color: #bc16bc;
}

.red {
    background-color: #ff0000;
}

.orange {
    background-color: #e9734a;
}

.green {
    background-color: #53906a;
}

.lady {
    background-color: #b28dc6;
}

.blue {
    background-color: #0900ff;
}

.penut {
    background-color: #98ad06;
}

.light-b {
    background-color: #fff;
}

.black {
    background-color: #000;
}

.chart-box {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    border-radius: 22px;
    height: 100%;
    padding: 50px 40px;
}

@media only screen and (max-width: 767px) {
    .chart-box {
        padding: 30px 20px;
    }
}

.chart-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
    .chart-box h3 {
        margin-bottom: 16px;
    }
}

.chart-box canvas {
    width: 100%;
}

.chart-box .padd {
    padding-top: 40px;
}

@media only screen and (max-width: 991px) {
    .chart-box .padd {
        padding-top: 0;
    }
}

.chart-box .det-single {
    margin-top: 26px;
    max-width: 370px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

@media only screen and (max-width: 767px) {
    .chart-box .det-single {
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 20px;
    }
}

.chart-box .det-single.one h5 {
    color: #ffd014;
}

.chart-box .det-single.one p {
    color: #ffd014;
    opacity: 0.8;
}

.chart-box .det-single.two h5 {
    color: #e52ee5;
}

.chart-box .det-single.two p {
    color: #e52ee5;
    opacity: 1;
}

.chart-box .det-single.three h5 {
    color: #ff0000;
}

.chart-box .det-single.three p {
    color: #ff0000;
    opacity: 1;
}

.chart-box .det-single.four {
    border-top: 2px solid #53906a;
}

.chart-box .det-single.four h5 {
    color: #53906a;
}

.chart-box .det-single.four p {
    color: #53906a;
    opacity: 1;
}

.chart-box .det-single h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
    .chart-box .det-single h5 {
        font-size: 20px;
        margin-bottom: 8px;
    }
}

.chart-box .det-single P {
    font-size: 15px;
    font-weight: 600;
}

@media only screen and (max-width: 991px) {
    .chart-box .det-single P {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .chart-box .det-single P {
        font-size: 14px;
    }
}

.chart-box .det-single:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.chart-list {
    padding-top: 16px;
}

@media only screen and (max-width: 767px) {
    .chart-list {
        padding-top: 16px;
    }
}

.chart-list .chart-point {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.chart-list .chart-point:not(:last-child) {
    margin-bottom: 16px;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
}

.chart-list .chart-point span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 20px;
    height: 20px;
    border-radius: 2px;
    margin-bottom: 10px;
}

.chart-list .chart-point p {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 6px;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .chart-list .chart-point p {
        font-size: 13px;
    }
}

.chart-list .chart-point p a {
    display: inline-block;
    text-decoration: underline;
    color: #ffd900;
    font-weight: 700;
}

.chart-list .chart-point h5 {
    font-weight: 600;
    font-size: 23px;
    margin-top: auto;
}

/*--------------------------------------------------------------
# reward
--------------------------------------------------------------*/

.reward .r-single {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    text-align: center;
    border-radius: 20px;
    height: 100%;
    padding: 40px 40px;
}

@media only screen and (max-width: 767px) {
    .reward .r-single {
        padding: 30px 20px;
    }
}

.reward .r-single .r-header {
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .reward .r-single .r-header {
        margin-bottom: 12px;
    }
}

.reward .r-single .r-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.reward .r-single .r-header span {
    font-size: 11px;
}

.reward .r-single .r-header .r-logo {
    width: 90px;
    height: 90px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 5px;
}

.reward .r-single .r-body p {
    font-size: 14px;
}

.reward .r-single .r-body p:not(:last-child) {
    margin-bottom: 6px;
}

.reward .btn-hero {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    border: 0;
    background-color: #f31616;
    border-radius: 6px;
    color: #111;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    font-size: 14px;
    font-weight: 600;
    margin-top: 26px;
}

@media only screen and (max-width: 767px) {
    .reward .btn-hero {
        margin-top: 18px;
    }
}

.reward .btn-hero:hover,
.reward .btn-hero:focus {
    opacity: 0.8;
}

.reward .btn-hero img {
    width: 35px;
    height: 35px;
    border-radius: 6px 0px 0px 6px;
}

.reward .btn-hero span {
    padding: 0px 12px 0px 9px;
}

.reward .btn-hero.btn-swap {
    background-color: #6cf2fb;
    color: #111;
}

.reward .btn-hero.btn-swap img {
    background-color: #3dd6e2;
    padding: 6px;
}

.reward .btn-hero.btn-uni {
    background: #1A1348;
    color: #ddd;
}

.reward .btn-hero.btn-poo {
    background-color: #bb8c65;
}

.reward .btn-hero.btn-poo img {
    background-color: #735136;
    padding: 7px;
}

.reward .btn-chart {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    border: 0;
    background-color: #222;
    border-radius: 6px;
    overflow: hidden;
    color: #fff;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    font-size: 14px;
    font-weight: 600;
    margin-top: 26px;
    transition: all 0.2s ease-in;
}

.reward .btn-chart i {
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: #fafafa;
    color: #f31616;
    font-size: 16px;
    border-radius: 6px 0px 0px 6px;
}

.reward .btn-chart span {
    padding: 0px 12px 0px 9px;
}

@media only screen and (max-width: 767px) {
    .reward .btn-chart {
        margin-top: 18px;
    }
}

.reward .btn-chart:hover {
    background-color: #1f1f1f;
}

.clip-board-box {
    position: relative;
    max-width: 500px;
    background-color: rgba(241, 92, 12, 0.4);
    display: inline-block;
    padding: 8px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.clip-board-box .text-line {
    font-weight: 500;
    color: #ddd;
    margin-right: 5px;
    font-size: 13px;
}

.btn-cun {
    position: absolute;
    top: 0px;
    right: 0;
}

.copy-button {
    height: 39.6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fd9730;
    outline: none;
    border: 0;
    color: #000;
    font-size: 16px;
    padding: 3px 12px;
    border-radius: 0;
}

.tip {
    background-color: #263646;
    padding: 0 14px;
    line-height: 27px;
    position: absolute;
    border-radius: 4px;
    z-index: 100;
    color: #fff;
    font-size: 12px;
    -webkit-animation-name: tip;
    animation-name: tip;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.tip:before {
    content: "";
    background-color: #263646;
    height: 10px;
    width: 10px;
    display: block;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -4px;
    left: 17px;
}

#copied_tip {
    -webkit-animation-name: come_and_leave;
    animation-name: come_and_leave;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    bottom: -35px;
    left: -18px;
}

@media only screen and (max-width: 480px) {
    #copied_tip {
        left: -20px;
    }
}

.text-line {
    font-size: 13px;
}

/*--------------------------------------------------------------
# det
--------------------------------------------------------------*/

.det {
    padding-top: 60px;
}

@media only screen and (max-width: 767px) {
    .det {
        padding-top: 30px;
    }
}

.det .det-single {
    background-color: #000;
    background-color: rgba(255, 255, 255, 0.03);
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    padding: 40px 40px;
    border-radius: 26px;
    height: 100%;
    text-align: center;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

@media only screen and (max-width: 767px) {
    .det .det-single {
        padding: 30px 30px;
    }
}

.det .det-single.one {
    border-top: 2px solid #ffd014;
}

.det .det-single.one h5 {
    color: #ffd014;
}

.det .det-single.one p {
    color: #ffd014;
    opacity: 0.8;
}

.det .det-single.two {
    border-top: 2px solid #800080;
}

.det .det-single.two h5 {
    color: #e52ee5;
}

.det .det-single.two p {
    color: #e52ee5;
    opacity: 1;
}

.det .det-single.three {
    border-top: 2px solid #ff0000;
}

.det .det-single.three h5 {
    color: #ff0000;
}

.det .det-single.three p {
    color: #ff0000;
    opacity: 1;
}

.det .det-single.four {
    border-top: 2px solid #53906a;
}

.det .det-single.four h5 {
    color: #53906a;
}

.det .det-single.four p {
    color: #53906a;
    opacity: 1;
}

.det .det-single h5 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {
    .det .det-single h5 {
        font-size: 22px;
    }
}

.det .det-single P {
    font-size: 15px;
    font-weight: 600;
}

@media only screen and (max-width: 767px) {
    .det .det-single P {
        font-size: 14px;
    }
}

.det .det-single:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

/*--------------------------------------------------------------
# main-footer
--------------------------------------------------------------*/

.main-footer {
    background-color: #000;
    padding: 40px 0px;
}

@media only screen and (max-width: 767px) {
    .main-footer {
        padding: 30px 0px;
    }
}

@media only screen and (max-width: 482px) {
    .main-footer {
        padding: 30px 0px;
    }
}

.main-footer .footer-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

.main-footer .footer-logo {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.main-footer .footer-logo img {
    height: 45px;
    margin-bottom: 10px;
}

.main-footer .footer-logo p {
    font-size: 14px;
    color: #c6c6c6;
    font-weight: 400;
}

@media only screen and (max-width: 767px) {
    .main-footer .footer-social {
        padding-top: 28px;
    }
}

@media only screen and (max-width: 482px) {
    .main-footer .footer-social {
        padding-top: 30px;
    }
}

.main-footer .footer-social a {
    text-decoration: none;
    font-size: 23px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.main-footer .footer-social a:not(:last-child) {
    margin-right: 10px;
}

.main-footer .footer-social a img {
    height: 30px;
}

.main-footer .footer-social a:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
}

.footer-legal {
    text-align: center;
    color: #c6c6c6;
    font-size: 12px;
    padding-top: 6px;
}

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