﻿    /* ************************* CSS Default ************************* */
    
    @font-face {
        font-family: "Poppins";
        src: url("../fonts/Poppins.ttf?v=1.0.0") format("truetype");
    }
    
    @font-face {
        font-family: "Poppins-Bold";
        src: url("../fonts/Poppins-Bold.ttf?v=1.0.0") format("truetype");
    }
    
    @font-face {
        font-family: "Poppins-SemiBold";
        src: url("../fonts/Poppins-SemiBold.ttf?v=1.0.0") format("truetype");
    }
    
     :root {
        --font: "Poppins", Segoe UI, Roboto, Arial, sans-serif;
        --font_b: "Poppins-Bold", Segoe UI, Roboto, Arial, sans-serif;
        --font_s: "Poppins-SemiBold", Segoe UI, Roboto, Arial, sans-serif;
        --gradient: linear-gradient(to right, #9E54D8 0%, #4B29AE 100%);
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    * {
        margin: 0;
        padding: 0;
    }
    
    a,
    img {
        transition: all 0.3s ease;
    }
    
    a:focus {
        outline: none;
    }
    
    a,
    a:hover {
        text-decoration: none;
    }
    
    hr {
        border-top: 1px solid var(--border_d);
        opacity: 1;
    }
    
    .padding0 {
        padding: 0;
    }
    
    li {
        list-style-type: none;
    }
    
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0;
        font-weight: 600;
        line-height: 1.25;
        color: var(--text);
        font-family: var(--font_s);
    }
    
    b,
    strong {
        font-family: var(--font_b);
        font-weight: normal;
    }
    
    body {
        background: #09021F;
        font-family: var(--font);
        font-size: 15px;
        color: #CFCCD5;
        overflow-x: hidden;
    }
    
    p {
        line-height: 1.8;
    }
    
    .animate {
        animation-duration: 1s;
        animation-fill-mode: both;
        animation-name: fadeInUp;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translate3d(0, 25%, 0);
        }
        to {
            opacity: 1;
            transform: none;
        }
    }
    
    .a_01 {
        animation-delay: 0.1s;
    }
    
    .a_02 {
        animation-delay: 0.2s;
    }
    
    .a_03 {
        animation-delay: 0.3s;
    }
    
    .a_04 {
        animation-delay: 0.4s;
    }
    
    .a_05 {
        animation-delay: 0.5s;
    }
    
    .a_06 {
        animation-delay: 0.6s;
    }
    
    .a_07 {
        animation-delay: 0.7s;
    }
    
    .a_08 {
        animation-delay: 0.8s;
    }
    
    .a_09 {
        animation-delay: 0.9s;
    }
    
    .a_10 {
        animation-delay: 1s;
    }
    
    .onlyMobile,
    .onlyPC {
        display: none;
    }
    /* ************************* CSS FULL ************************* */
    /* ************************* HEADER ************************* */
    
    #header {
        transition: all 0.3s ease;
        padding: 14px 0 !important;
        position: relative;
        z-index: 4;
    }
    
    .sticky {
        width: 100%;
        position: fixed !important;
        top: 0;
        z-index: 4;
        background: rgba(122, 90, 126, 0.2);
        backdrop-filter: blur(7px);
        padding: 12px 0 !important;
        transition: all 0.3s ease;
    }
    
    .sticky+main {
        padding-top: 70px;
    }
    
    .space_section {
        padding: 90px 0;
    }
    
    body.offcanvas-active {
        overflow: hidden;
    }
    
    .offcanvas-header {
        display: none;
    }
    
    .screen-darken {
        height: 100%;
        width: 0%;
        z-index: 30;
        position: fixed;
        top: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        background-color: rgba(63, 89, 246, 0.5);
        transition: opacity 0.2s linear, visibility 0.2s, width 2s ease-in;
    }
    
    .screen-darken.active {
        z-index: 4;
        transition: opacity 0.3s ease, width 0s;
        opacity: 1;
        width: 100%;
        visibility: visible;
    }
    
    .btn-close {
        color: var(--text);
        background: none;
        padding: 0;
        opacity: 1;
    }
    
    .btn-close:focus {
        box-shadow: none;
    }
    
    .btn-a {
        padding: 14px 30px 16px;
        border-radius: 10px !important;
        font-size: 14px;
        font-family: var(--font_b);
        position: relative;
        display: inline-block;
    }
    
    .btn-a img {
        position: absolute;
        top: 8px;
        right: 8px;
        background-color: var(--white);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        padding: 6px;
    }
    
    .navbar-brand img {
        width: 160px;
    }
    
    .group-btn a {
        margin-right: 5px;
    }
    
    #navbar_main .nav-link {
        color: var(--white);
    }
    
    #navbar_main,
    #header,
    .navbar-brand {
        padding: 0;
    }
    
    .navbar-nav .nav-item a {
        font-size: 17px;
        padding-left: 17px !important;
        padding-right: 17px !important;
        position: relative;
        font-family: var(--font_b);
    }
    
    .navbar-nav .active a,
    .navbar-nav .nav-item a:hover {
        color: var(--orange) !important;
    }
    
    .navbar-nav .active a:after {
        position: absolute;
        width: 15px;
        height: 3px;
        border-radius: 10px;
        background-color: var(--orange);
        bottom: -2px;
        left: 50%;
        transform: translate(-50%, -50%);
        content: "";
    }
    
    .btn-action {
        text-transform: uppercase;
        font-family: var(--font);
        font-weight: 500;
        font-size: 14px;
        line-height: 21px;
        padding: 12px 16px;
        border-radius: 4px;
        border: 0;
        color: #fff;
    }
    
    .gradient-main {
        background: var(--gradient) !important;
    }
    /* ************************* MAIN ************************* */
    
    .dark-page {
        background-color: #09021F;
        color: #D0CED5;
    }
    
    #highlight-top {
        margin-top: -75px;
        padding: 240px 0 240px;
        background: url('../images/blockchain.jpg?v=2.1') no-repeat center bottom;
        background-size: cover;
    }
    
    #highlight-top article {
        position: relative;
        z-index: 2;
    }
    
    #highlight-top article h1 {
        color: #fff;
        font-size: 56px;
        line-height: 67.2px;
        margin-top: 15px;
        background: linear-gradient(135deg, #DCC1FF 0%, #FFFFFF 47%, #AD9CF2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    #highlight-top article p {
        font-size: 16px;
        margin: 20px 0 30px;
        line-height: 24px;
        color: #C3BED0;
    }
    
    .gradient {
        background: var(--orange);
    }
    
    #highlight-top .group-link {
        margin-top: 40px;
    }
    
    .group-link a {
        color: #fff;
        font-size: 16px;
        text-transform: uppercase;
        padding: 12px 20px;
        font-family: var(--font_s);
        margin-right: 15px;
        border: 0;
        border-radius: 4px;
        text-align: center;
        display: inline-block;
    }
    
    .group-link a:hover {
        box-shadow: 2px 3px 20px #425193;
    }
    
    .group-link .btn-action {
        transition: all 0.3s ease;
    }
    
    .group-link .btn-action:hover {
        box-shadow: 0 4px 30px #40468c;
    }
    
    #highlight-top .fanpages li {
        float: left;
        display: block;
        margin: 0 10px 0 0;
    }
    
    .title-section {
        text-align: center;
        padding-bottom: 60px;
    }
    
    .title-section h2 {
        background: linear-gradient(135deg, #D5B5FF 0%, #FFF 50%, #AD9CF2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 42px;
        font-weight: 600;
        line-height: 57.6px;
        margin-bottom: 15px;
    }
    
    .title-section h6 {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        color: #D0CED5;
        font-family: var(--font);
    }
    
    #introduction {
        position: relative;
        margin-bottom: 50px;
    }
    
    #introduction:after {
        background: url('../images/gradient/circle1.svg?v=1.0') no-repeat;
        position: absolute;
        bottom: 100px;
        left: 0;
        content: '';
        width: 500px;
        height: 1057px;
        opacity: 0.6;
    }
    
    #introduction ul {
        padding-left: 0;
        position: relative;
    }
    
    #introduction ul:after {
        position: absolute;
        left: 34px;
        z-index: 0;
        top: 0;
        content: '';
        height: 100%;
        border: 1px dashed #611478;
    }
    
    #introduction ul li img {
        width: 40px;
        height: 40px;
    }
    
    #introduction ul li {
        position: relative;
        z-index: 1;
        color: #fff;
        min-height: 72px;
        margin-bottom: 40px;
        display: flex;
        align-items: center;
    }
    
    #introduction ul li span {
        color: #d0d0d0;
        font-size: 18px;
        line-height: 27px;
        font-weight: 500;
    }
    
    #introduction ul li .item-icon {
        background: #611478;
        border-radius: 50%;
        width: 72px;
        height: 72px;
        display: block;
        padding: 15px;
        float: left;
        margin-right: 25px;
    }
    
    #introduction ul li span b {
        font-size: 28px;
        color: #fff;
        line-height: 42px;
        font-weight: 600;
        font-family: var(--font_s);
    }
    
    #campaign {
        position: relative;
        z-index: 1;
    }
    
    #campaign:after {
        background: url('../images/gradient/circle2.svg?v=1.0') no-repeat;
        position: absolute;
        top: 0;
        left: 0;
        content: '';
        width: 510px;
        height: 1039px;
        opacity: 0.6;
    }
    
    .sub-title {
        text-align: center;
        text-transform: uppercase;
        font-size: 20px;
        line-height: 30px;
        font-weight: 500;
        color: #fff;
    }
    
    .bg-article {
        padding: 20px;
        background: #100728;
        border: 1px solid #231640;
        border-radius: 24px;
    }
    
    .sub-title span {
        background: linear-gradient(to right, #32094A 0%, rgba(0, 0, 0, 0) 100%);
        padding: 12px 20px;
        border-radius: 50px;
    }
    
    .sub-title b {
        color: #DB26F9;
    }
    
    .item-article {
        background: #11072A;
        border: 1px solid #09021A;
        transition: all 0.3s ease;
        border-radius: 24px;
        padding: 20px 24px;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    
    .item-article .number {
        font-size: 40px;
        font-family: var(--font_b);
        line-height: 60px;
        color: #1D1436;
        transition: all 0.3s ease;
    }
    
    .item-article .p-img {
        margin: 0 auto 20px;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        padding: 13px;
        background-color: #570F69;
    }
    
    .item-article h6 {
        font-family: var(--font);
        font-weight: 500;
        color: #CFCCD5;
    }
    
    .item-article:hover {
        background: #231640;
    }
    
    .item-article:hover .p-img {
        box-shadow: 0 0 24px #3E2966;
    }
    
    .item-article:hover h6 {
        color: #fff;
    }
    
    .item-article:hover .number {
        color: #918A9F;
    }
    
    .list-ul {
        position: relative;
        z-index: 1;
        margin-top: 25px;
        border: 1px solid #231640;
        transition: all 0.3s ease;
        padding: 16px 20px;
        border-radius: 24px;
        margin-bottom: 0;
        background: linear-gradient(to top, #1E113A 0%, #0A0221 100%);
    }
    
    .list-ul img {
        width: 24px;
        height: 24px;
        margin-right: 5px;
    }
    
    .list-ul:hover {
        background: linear-gradient(to bottom, #241646 0%, #0A0221 100%);
    }
    
    .list-ul li {
        position: relative;
        transition: all 0.3s ease;
        padding: 16px 16px 16px 46px;
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 35px;
        border-radius: 12px;
    }
    
    .list-ul li:after {
        content: '';
        width: 24px;
        height: 24px;
        background: url('../images/icons/check.svg?v=1.0') no-repeat;
        top: 18px;
        left: 14px;
        position: absolute;
    }
    
    .list-ul li:hover {
        background: #4B157B;
    }
    
    .list-ul li:hover:after {
        background: url('../images/icons/check-true.svg?v=1.0') no-repeat;
    }
    
    .list-ul li:last-child {
        margin-bottom: 0;
    }
    
    .bg-content {
        background: linear-gradient(135deg, #170C32 0%, #0E0622 100%);
        border-radius: 24px;
        padding: 40px;
    }
    
    #kols {
        position: relative;
    }
    
    #kols:after {
        position: absolute;
        content: '';
        background: url('../images/gradient/circle1.svg?v=1.0') no-repeat;
        width: 500px;
        height: 1057px;
        bottom: 100px;
        left: 0;
        opacity: 0.6;
        z-index: -1;
    }
    
    #kols article {
        margin-bottom: 40px;
    }
    
    #kols article:last-child {
        margin-bottom: 0;
    }
    
    #kols article h4 {
        background: linear-gradient(135deg, #D5B5FF 0%, #FFFFFF 50%, #AD9CF2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-family: var(--font);
        font-weight: 500;
        font-size: 28px;
        line-height: 42px;
        margin-bottom: 20px;
    }
    
    #kols article p {
        padding-left: 20px;
        border-left: 2px solid #DC93FF;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
    }
    
    .img-kols {
        margin-top: -180px;
        display: block;
        width: 500px;
        margin-left: 20px;
    }
    
    .infor-tab {
        overflow: hidden;
        border-radius: 24px;
        border: 1px solid #3f1ac9;
        max-width: 100%;
        float: right;
    }
    
    #launchpad {
        background: url('../images/gradient/circle7.png?v=1.0') no-repeat center center;
        background-size: 800px;
        position: relative;
        z-index: 3;
        padding-bottom: 120px;
    }
    
    #our-team {
        position: relative;
    }
    
    #our-team:after {
        position: absolute;
        background: url('../images/gradient/circle1.svg?v=1.0') no-repeat;
        content: '';
        bottom: 0;
        left: 0;
        width: 915px;
        height: 1106px;
        opacity: 0.7;
        z-index: -1;
    }
    
    #our-team article {
        transition: all 0.3s ease;
        background: linear-gradient(to right, #220E4A 0%, #280C40 100%);
        border-radius: 20px;
        border: 3px solid transparent;
        overflow: hidden;
        position: relative;
        z-index: 2;
    }
    
    #our-team article:hover {
        border: 3px solid #3E1BC7;
    }
    
    #our-team article .overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to bottom, rgba(19, 0, 92, 0.5) 0%, rgba(11, 9, 55, 1) 100%);
        overflow: hidden;
        width: 100%;
        height: 0;
        padding: 0 30px;
        transition: .5s ease;
    }
    
    #our-team article .overlay strong {
        display: block;
        font-family: var(--font_s);
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 5px;
        color: #fff;
    }
    
    #our-team article .overlay p {
        font-size: 16px;
    }
    
    #our-team article:hover .overlay {
        height: 100%;
        padding: 30px;
    }
    
    #our-team article .desc {
        padding: 20px;
        position: absolute;
        bottom: 0;
        left: 0;
        background: #270C42;
        width: 100%;
        transition: all 0.2s ease;
    }
    
    #our-team article:hover .desc {
        opacity: 0;
    }
    
    #our-team article h5 {
        font-weight: 500;
        font-family: var(--font_s);
        font-size: 20px;
        color: #fff;
        line-height: 30px;
    }
    
    #our-team article p {
        font-weight: 400;
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 0;
    }
    
    .infor-tab {
        position: relative;
    }
    
    .infor-tab img {
        max-width: 100%;
    }
    
    .infor-tab p {
        font-weight: 500;
        font-size: 28px;
        line-height: 42px;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 0;
        position: absolute;
        bottom: 20px;
        left: 30px;
    }
    
    #v-pills-tab {
        padding: 16px 0;
        width: 290px;
        border-radius: 20px;
        overflow: hidden;
        background: linear-gradient(to bottom, #110829 0%, #0b0421 100%);
    }
    
    #v-pills-tabContent {
        position: relative;
        z-index: 1;
    }
    
    #v-pills-tabContent:after {
        position: absolute;
        background: url('../images/gradient/circle3.svg?v=1.0') no-repeat;
        content: '';
        bottom: -80%;
        right: 0;
        width: 915px;
        height: 1106px;
        opacity: 0.6;
        z-index: -1;
    }
    
    .nav-pills .nav-link {
        text-transform: uppercase;
        text-align: left;
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        color: #A09CAA;
        padding: 20px;
        border-radius: 0;
    }
    
    .nav-pills .nav-link img {
        position: relative;
        top: -2px;
        margin-right: 7px;
    }
    
    .nav-pills .nav-link.active,
    .nav-pills .show>.nav-link {
        background: #570F69 !important;
        color: #fff !important;
    }
    
    #case-study {
        position: relative;
        z-index: 3;
    }
    
    #case-study:after {
        position: absolute;
        background: url('../images/gradient/circle5.png?v=1.0') no-repeat;
        content: '';
        bottom: 20%;
        right: 0;
        width: 804px;
        height: 1098px;
        opacity: 0.5;
        z-index: -1;
    }
    
    #pills-tab .nav-item .nav-link {
        font-weight: 400;
        background: #231641;
        font-size: 18px;
        text-transform: uppercase;
        line-height: 27px;
        text-align: center;
        padding: 16px 24px;
        border-radius: 50px;
        margin: 0 8px;
    }
    
    #pills-tab .nav-item .nav-link img {
        width: 24px;
        height: 24px;
        margin-right: 5px;
    }
    
    #pills-tab .nav-item .nav-link.active,
    #pills-tab .nav-item .show>.nav-link {
        border-radius: 50px !important;
    }
    
    .box-content-pill {
        overflow: hidden;
        border: 1px solid #372868;
        border-radius: 32px;
    }
    
    .box-content-pill article {
        padding: 60px 80px 30px 50px;
    }
    
    .box-content-pill article ul {
        padding-left: 0;
    }
    
    .box-content-pill article ul li {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #220F4B 0%, #2A0C40 100%);
        border-radius: 12px;
        padding: 16px;
        color: #fff;
    }
    
    .box-content-pill article ul li span b {
        font-family: var(--font_s);
    }
    
    .box-content-pill article ul li span {
        font-size: 18px;
        line-height: 27px;
        font-weight: 400;
    }
    
    .box-content-pill article ul li img {
        width: 24px;
        height: 24px;
        margin-right: 15px;
    }
    
    .box-content-pill article h5 {
        font-family: var(--font);
        font-weight: 500;
        font-size: 32px;
        line-height: 48px;
        color: #fff;
    }
    
    .box-content-pill .border3 {
        margin: 10px 0 25px;
        display: block;
    }
    
    .box-content-pill article p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 40px;
        color: #A39EAE;
    }
    
    #client {
        position: relative;
        overflow: hidden;
    }
    
    #client:after {
        position: absolute;
        background: url('../images/gradient/circle3.svg?v=1.0') no-repeat;
        content: '';
        bottom: 0;
        right: 0;
        width: 600px;
        height: 600px;
        opacity: 0.4;
        z-index: -1;
    }
    
    #client .title-section {
        padding-bottom: 40px;
    }
    
    #client img {
        padding: 10px 0;
    }
    
    #contact-us {
        background: linear-gradient(to bottom, #12022A 0%, #09031F 100%);
        position: relative;
    }
    
    #contact-us:after {
        position: absolute;
        background: url('../images/gradient/circle3.svg?v=1.0') no-repeat;
        content: '';
        bottom: 0;
        right: 0;
        width: 600px;
        height: 800px;
        opacity: 0.4;
        z-index: -1;
    }
    
    #contact-us:before {
        position: absolute;
        background: url('../images/gradient/circle2.svg?v=1.0') no-repeat;
        content: '';
        bottom: 0;
        left: 0;
        width: 500px;
        height: 600px;
        opacity: 1;
        z-index: -1;
    }
    
    .contact .title-section img {
        margin-top: -55px;
        position: relative;
        z-index: -1;
    }
    
    .contact .title-section h3 {
        font-size: 44px;
        line-height: 66px;
        font-family: var(--font);
        color: #fff;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    .contact address img {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }
    
    .contact address span {
        display: block;
        margin-bottom: 30px;
        color: #A19BAB;
        font-weight: 500;
        font-size: 18px;
        line-height: 27px;
        text-transform: uppercase;
    }
    
    .specical {
        font-size: 28px !important;
    }
    
    .contact address small {
        font-weight: 500;
        line-height: 42px;
        font-size: 18px;
        line-height: 27px;
        display: block;
        color: #fff;
        text-transform: none;
        margin-top: 12px;
    }
    
    .form-mail {
        background: linear-gradient(135deg, #15022E 0%, #0A0420 100%);
        border-radius: 20px;
        border: 1px solid #372868;
        padding: 40px;
        margin-top: 100px;
    }
    
    .form-control {
        background: #231640;
        padding: 16px;
        border: 1px solid #352557;
        border-radius: 6px;
        color: #fff;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }
    
    .form-control:focus {
        background: #231640;
        color: #fff;
        box-shadow: none;
    }
    
    .btn-submit {
        color: #fff;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        background: linear-gradient(to right, #8E4CD0 0%, #5B31B6 100%);
        border: 0;
        padding: 12px 16px;
        width: 100%;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .btn-submit:hover {
        box-shadow: 2px 5px 20px #324d53;
    }
    
    #pills-tabContent {
        padding-top: 30px;
    }
    
    .modal-content {
        padding: 30px 20px 30px 40px;
        background: #11022A;
        border-radius: 32px;
        border: 1px solid #3E1CB7;
    }
    
    .modal-content .title-section img {
        z-index: 0;
    }
    
    .modal-content .title-section h3 {
        position: relative;
        z-index: 2;
    }
    
    #carouselPC {
        position: relative;
        z-index: 1;
    }
    
    #carouselPC:after {
        content: '';
        background: url('../images/gradient/circle6.png?v=1.0') no-repeat;
        width: 526px;
        height: 526px;
        top: -26%;
        left: 30%;
        position: absolute;
        z-index: -1;
        opacity: 0.6;
    }
    
    .carousel-caption.custome {
        padding: 0px;
        background-color: #231640;
        right: 4%;
        left: 2%;
		bottom:3%;
    }
    
    .carousel-caption p {
        color: #BCAFC9;
        line-height: 1.4;
    }
    
    .carousel-caption p small {
        font-size: 14px;
        margin-top: 8px;
    }
    
    .carousel-caption p span {
        display: block;
        font-family: var(--font_b);
        font-size: 18px;
        color: #fff;
		text-transform:uppercase;
    }
    
    .modal-content .btn-close {
        background: #231640;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        float: right;
        font-size: 16px;
        color: #fff !important;
    }
    
    .box-item {
        border: 1px solid #3D1AB9;
        border-radius: 24px;
        overflow: hidden;
        z-index: 2;
        position: relative;
    }
    
    .box-item {
        padding: 0;
        border-radius: 24px;
        background: #231640;
        overflow: hidden;
    }
    
    .slick-slide {
        padding-top: 30px;
    }
    
    .slick-slide.slick-active {
        padding-top: 0px;
    }
    
    .box-item img {        
        border-radius: 16px;
    }
    
    .slick-slide {
        display: flex;
        align-items: center;
    }
    
    .box-item p {
        padding: 10px 10px 10px 20px;
        margin-bottom: 0;
        text-align: left;
        border-left: 5px solid #DB26F9;
    }
    
    .special-p {
        padding: 12px 24px !important;
    }
    
    .carousel-indicators {
        position: relative;
        display: block;
        margin: 25px auto 0;
        text-align: center;
        width: 100px;
        height: 23px;
        z-index: 2;
    }
    
    .carousel-indicators [data-bs-target] {
        height: auto;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-radius: 0;
        margin: -3px;
        background: #301F56;
        opacity: 1;
    }
    
    .carousel-indicators .active {
        background: #DB26F9;
    }
    
    .bg-dark-logo {
        background: #1A0F34;
    }
    
    .bg-dark-logo img {
        width: 100%;
    }
    /* ************************* FOOTER ************************* */
    
    footer {
        background: #07011A url('../images/gradient/circle4.png?v=1.0') no-repeat center center;
        background-size: 100%;
        text-align: center;
        padding: 90px 20px;
    }
    
    .logo-footer p {
        font-family: var(--font_s);
        font-size: 26px;
        line-height: 39px;
        font-weight: 500;
        color: #fff;
        margin: 15px 0 20px;
    }
    
    footer .fanpages {
        text-align: center;
    }
    
    footer .fanpages li {
        display: inline-block;
    }
    
    footer .fanpages li img {
        width: 26px;
        height: 26px;
    }
    
    footer hr {
        margin: 15px 0;
    }
    
    .copyright {
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid #493760;
    }
    
    #clickToTop {
        position: fixed;
        bottom: 20px;
        right: 30px;
        z-index: 3;
        border: none;
        outline: 0;
        background: 0 0;
        cursor: pointer;
        transition: 0.3s;
    }
    
    #clickToTop img {
        width: 52px;
        height: 52px;
    }
    
    #clickToTop:hover {
        cursor: pointer;
    }
    /* ******************* Few Option ******************* */
    
    footer .fanpages li {
        background: #231640;
        border: 1px solid #570F69;
        width: 42px;
        height: 42px;
        border-radius: 7px;
        display: inline-block;
        margin: 0 7px;
    }
    
    footer .fanpages li a {
        display: block;
        padding: 7px;
    }
    
    footer .fanpages li:hover {
        background: #570F69;
    }
    
    .slick-slide {
        overflow: hidden;
        margin: 0 10px;
        border-radius: 14px;
    }
    
    .slick-dots {
        bottom: -40px !important;
    }
    
    .slick-dots li {
        margin: 0 3px !important;
    }
    
    .slick-dots button:before {
        opacity: 1 !important;
        background: #301F56 !important;
    }
    
    .slick-dots li:nth-child(1) button:before {
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }
    
    .slick-dots li:nth-child(3) button:before {
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    
    .slick-dots li:nth-child(2) button:before {
        border-radius: 0px;
    }
    
    .slick-dots li.slick-active button:before,
    .slick-dots button:before {
        content: "" !important;
        display: block;
        width: 30px !important;
        height: 8px !important;
    }
    
    .slick-dots li.slick-active button:before {
        background: #db26f9 !important;
    }
    
    .custom-select-container {
        position: relative;
        width: 100%;
        border-radius: 12px;
        background: linear-gradient(to left, #351C57 0%, #261743 100%);
        color: #fff;
        text-transform: uppercase;
        cursor: pointer;
        display: flex;
		z-index:4;
    }
    
    .img-class,
    .first-img {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .first-img {
        right: auto;
        left: 15px;
    }
    
.custom-select-trigger, .select-trigger {
	width: 100%;
	padding: 14px 13px 14px 54px;
}

.custom-select-container img {
	width: 24px;
	height: 24px;
}

.custom-option, .custom-option-main {
	display: flex;
	align-items: center;
	padding: 15px 10px;
	cursor: pointer;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	text-transform: none;
}

.custom-option img, .custom-option-main img {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

.custom-options {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: #261743;
	z-index: 10;
}

.custom-select-container.open .custom-options {
	display: block;
}
		
#telegram_copy, #telegram_copy_modal,
#email_copy, #email_copy_modal,
#address_copy, #address_copy_modal{
	background:none;
	border:0;
	margin-top:4px;
	margin-left:10px;
}

.carousel-tier-fund{
	margin-left:57px;
}

.carousel-tier-fund .carousel-indicators{
	position:absolute;
	bottom:31px;
	right:15px;
	left:auto;
	height:auto;
	width:auto;
}

.carousel-tier-fund .carousel-indicators [data-bs-target]{
	width:12px;
	height:12px;
	border-top:0;
	border-bottom:0;
	margin:0 5px;
	background:#555266;
	border-radius:50%;
}

.carousel-tier-fund .carousel-indicators .active{
	background:#fff;
	opacity:1;
}

.carousel-tier-fund .carousel-control-next-icon, 
.carousel-tier-fund .carousel-control-prev-icon{
	background:rgba(0,0,0,0.5);
	border-radius:50%;
}

.carousel-tier-fund .carousel-control-next, .carousel-tier-fund .carousel-control-prev{
	width:9%;
}

.bg-dark-logo img{
	border-radius:0;
}