*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

* {
    -ms-word-wrap: break-word;
    word-wrap: break-word
}

ul {
    padding: 0;
    margin: 0;
    list-style: none
}

p {
    padding: 0;
    margin: 0
}

.pointer {
    cursor: pointer
}

:root {
    --color-black: #000000;
    --color-secondary: #0d0d0d;
    --color-theme: #DA9509;
    --color-white: #FFFFFF;
    --support-card: #181818;
    --card-bg-1: #181719;
    --card-bg-2: #171918;
    --card-bg-3: #161919;
    --card-1: #1E1A30;
    --card-2: #1A2E28;
    --card-3: #14272D;
    --liner-gradient: linear-gradient(90deg,
            #B57E10 0%,
            #E5C35C 25%,
            #F9DF7B 50%,
            #FFF3A6 75%,
            #B57E10 100%);
    --size: clamp(10rem, 1rem + 40vmin, 30rem);
    --gap: calc(var(--size) / 14);
    --duration: 50s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap))
}

a,
a:hover,
a:focus {
    outline: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: var(--color-white)
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    text-transform: capitalize;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: "Urbanist", sans-serif;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%
}

input,
textarea,
select,
option {
    max-width: 100%
}

input:focus,
textarea:focus,
select:focus,
textarea {
    box-shadow: none;
    outline: none
}

button {
    outline: none;
    border: none;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    border-radius: 8px;
    text-align: center;
    width: 200px;
    font-size: 16px;
    font-weight: 700;
    height: 45px;
    cursor: pointer;
    position: relative
}

::-webkit-scrollbar {
    width: 8px;
    height: 2px
}

::-webkit-scrollbar-thumb {
    background: var(--liner-gradient);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px
}

.btn_bg {
    color: var(--color-black);
    background: var(--liner-gradient);
    background-size: 100% 100%;
    background-position: 0% 0%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all 0.4s ease-in-out
}

.btn_bg:hover,
.btn_light:hover::before {
    background-position: 100% 0;
    background-size: 300% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all 0.4s ease-in-out
}

.btn_light {
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--color-white);
    background: rgb(255 255 255 / .05);
    border: 1px solid rgb(255 255 255 / .2);
    border-radius: 8px;
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    overflow: hidden;
    transition: all 0.4s ease-in-out
}

.btn_light::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--liner-gradient);
    opacity: .2;
    z-index: -1;
    transition: all 0.4s ease-in-out;
    background-size: 100% 100%;
    background-position: 0% 0%
}

.padding {
    padding: 50px 0
}

.main_title {
    font-size: 42px;
    color: var(--color-white)
}

.dark_txt {
    color: var(--color-theme)
}

.bg-secondary {
    background-color: var(--color-secondary) !important
}

.sub_heading {
    font-size: 18px;
    color: var(--color-theme);
    font-weight: 500;
}

.split-parent span {
    text-transform: initial;
}

.pera_txt {
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 50%)
}

.text_dark {
    color: var(--color-black)
}

.text_white {
    color: var(--color-white)
}

.fs-25 {
    font-size: 25px
}

.text-secondary {
    color: rgba(255, 255, 255, 50%) !important
}

.fs-20 {
    font-size: 20px
}

.fs-22 {
    font-size: 22px
}

.fs-24 {
    font-size: 24px
}

.fs-15 {
    font-size: 15px
}

.fs-30 {
    font-size: 30px
}

.fs-12 {
    font-size: 12px
}

.fs-40 {
    font-size: 40px
}

.h-500 {
    height: 500px
}

.rounded_20 {
    border-radius: 20px
}

section {
    overflow: hidden
}

header {
    transition: all 0.3s ease
}

.sticky-header {
    box-shadow: 0 4px 10px rgb(0 0 0 / .4);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-black);
    animation: sticky 0.8s ease-in-out
}

@keyframes sticky {
    from {
        transform: translateY(-20px)
    }

    to {
        transform: translateY(0)
    }
}

.header-top {
    background: var(--liner-gradient);
    padding: 15px
}

.header-top p {
    color: var(--color-black);
    font-weight: 500;
    font-size: 20px
}

.valonex_logo {
    width: 170px
}

.main_header {
    background: var(--color-secondary);
    padding: 30px 0
}

.main_nav li {
    padding: 0 25px
}

.main_nav li a {
    font-size: 18px;
    position: relative;
    display: block;
    transition: 0.5s;
    padding-bottom: 5px
}

.main_nav li a::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--liner-gradient);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s
}

.main_nav li:hover a::after,
.main_nav li a.active::after {
    transform: scaleX(1);
    transform-origin: left
}

.join_txt {
    color: var(--color-black);
    font-weight: 500;
    font-size: 20px
}

.join_txt:hover {
    color: var(--color-black)
}

.hero_sec {
    height: 750px;
    background-position: center bottom;
    background-size: 80%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden
}

.hero_video {
    width: 100%;
    height: auto
}

.hero_shap {
    position: absolute;
    width: 100%;
    bottom: -3px;
    left: 0
}

.hero_content {
    padding-top: 100px;
    position: relative
}

.circle_shape {
    width: 80%;
    aspect-ratio: 2 / 1;
    background-color: #1d1c1cb7;
    clip-path: ellipse(50% 100% at 50% 100%);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2
}

.discover_btn {
    margin-top: 100px
}

.card_box {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #171717
}

.card-bg-1 {
    background: #000
}

.card-bg-2 {
    background: #15141B
}

.card-bg-3 {
    background: #000
}

.card_img {
    height: 280px
}

.card_img img {
    height: 100%;
    width: 100%;
    object-fit: contain
}

.card_content {
    padding: 30px;
    color: var(--color-white);
    min-height: 230px;
    max-height: 270px
}

.card-1 {
    background-color: var(--card-1)
}

.card-2 {
    background-color: var(--card-2)
}

.card-3 {
    background-color: var(--card-3)
}

.card_gradient {
    padding: 40px;
    border-radius: 20px;
    background: url(../img/home/card_bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    display: flex;
    align-items: end
}

.card_gif {
    height: 500px
}

.contact_card {
    background: #181818;
    padding: 30px;
    border-radius: 10px;
    color: var(--color-white);
    height: 100%
}

.contact_icon {
    width: 70px;
    height: 70px;
    background-color: #CFA33A;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 40px
}

.upcoming-box .upcoming-icon i {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out
}

.upcoming-box:hover .upcoming-icon i {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
    -webkit-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out
}

.touch_contact {
    background-color: #CFA33A;
    width: 50px;
    height: 50px;
    border-radius: 10px
}

.form-control {
    border: 1px solid var(--color-white);
    opacity: .4;
    padding: 12px 14px
}

.form-control:focus {
    border: 1px solid var(--color-white);
    box-shadow: none !important
}

.input_placeholder::placeholder {
    color: var(--color-white);
    opacity: .8
}

.accordion-item {
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / .6) !important
}

.accordion-button {
    background-color: #000;
    padding: 30px;
    border-radius: 10px;
    justify-content: space-between;
    box-shadow: none
}

.accordion-button:focus {
    box-shadow: none
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
    background: none !important
}

.accordion-button::after {
    display: none !important
}

/* .custom-icon {
    font-size: 17px;
    color: black;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    background-color: #CFA33A;
    border-radius: 50%;
    transition: transform 0.3s ease;
} */
.custom-icon {
    font-size: 17px;
    color: black;
    padding: 3px 5px;
    background-color: #CFA33A;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .custom-icon {
    transform: rotate(180deg)
}

.input-search-icon {
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none
}

.blog_input {
    border-radius: 50px
}

.main_blog {
    border: 1px solid rgb(255 255 255 / .3);
    border-radius: 10px;
    padding: 12px;
    background-color: rgba(236, 237, 240, 10%)
}

.main_blog_content {
    padding: 20px 20px 0px !important
}

.about_bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 770px;
    background: #000
}

.about_who_bg {
    background-image: url(../img/about/wallet_bg.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%
}

.vision_shape {
    position: absolute;
    top: 16%;
    right: 0;
    width: 815px;
    max-width: 100%
}

.our_title {
    padding-bottom: 100px
}

.miss_title {
    padding-bottom: 100px
}

.mission_shape {
    position: absolute;
    top: 14%;
    left: 0;
    width: 815px;
    max-width: 100%
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--gap)
}

.marquee_group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite
}

.marquee_group2 {
    animation: scroll-y var(--duration) linear infinite
}

.marquee-wrap.left .marquee_group,
.marquee-wrap.right .marquee_group2 {
    min-width: 90%
}

.marquee-reverse .marquee_group {
    animation-direction: reverse;
    animation-delay: -3s
}

@keyframes scroll-x {
    from {
        transform: translateX(var(--scroll-start))
    }

    to {
        transform: translateX(var(--scroll-end))
    }
}

@keyframes scroll-y {
    from {
        transform: translateX(var(--scroll-end))
    }

    to {
        transform: translateX(var(---scroll-start))
    }
}

.wallet_logo_gap {
    gap: 25px
}

.three_div {
    background-color: #FFDB98;
    width: 222px;
    height: 314px
}

.bar-wrapper {
    width: 100%;
    overflow-x: scroll;
    position: relative
}

.bar-wrapper {
    overflow-y: scroll;
    scrollbar-width: none
}

.bar-wrapper::-webkit-scrollbar {
    display: none
}

.bar-item {
    position: relative;
    text-align: center
}

.bar {
    width: 60px;
    background-color: #7a7aff;
    border-radius: 4px;
    transition: transform 0.3s ease
}

.first_div {
    background-color: #737AF5;
    width: 90px;
    height: 129px
}

.second_div {
    background-color: #6CFFD1;
    width: 143px;
    height: 206px
}

.three_div {
    background-color: #FFDB98;
    width: 222px;
    height: 314px
}

.four_div {
    background-color: #B86FF7;
    width: 222px;
    height: 332px
}

.five_div {
    background-color: #3E1D5E;
    width: 229px;
    height: 352px
}

.bar-label {
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    color: var(--color-theme);
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease
}

.bar-item:hover .bar-label {
    opacity: 1;
    transform: translateY(0)
}

.token_hero {
    background: #0C0C0C;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    position: relative
}

.token_card {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / .4);
    text-align: center;
    background: linear-gradient(90deg, rgb(18 16 16) 0%, rgb(155 107 16 / .46) 100%);
    height: 100%
}

.token_heading {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(90deg, rgb(143 143 143 / .9) 0%, rgb(218 149 9 / .2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    display: inline-block
}

thead {
    background-color: var(--color-theme);
    color: #000;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important
}

thead th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600
}

tbody {
    background-color: rgb(56 56 56 / .4)
}

tbody tr {
    border-bottom: 1px solid rgb(255 255 255 / .05)
}

tbody td {
    padding: 14px 12px;
    font-size: 14px;
    color: #f1f1f1
}

tbody tr:last-child {
    border-bottom: none
}

.token_table {
    overflow-x: scroll;
    text-wrap: nowrap;
    border-radius: 15px !important
}

.token_table thead tr th {
    text-align: center
}

.tokens_card {
    border-radius: 10px;
    background: #181818;
    width: 250px;
    height: 220px;
    display: flex;
    flex-direction: column
}

.token_card_title {
    background: var(--color-theme);
    padding: 10px;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: var(--card-1);
    flex-shrink: 0
}

.token_card_body {
    padding: 15px;
    flex-grow: 1
}

.list-style-disc {
    list-style-type: disc
}

.token_card_body ul {
    padding-left: 20px;
    margin-bottom: 0
}

.gradient-text {
    background: linear-gradient(120deg, #382A0E 0%, #6D6148 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    background-clip: text;
    text-fill-color: #fff0
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center
}

@media (min-width:1200px) {
    .stats-grid {
        grid-template-columns: repeat(5, 1fr)
    }
}

.roadmap_hero {
    background-image: url(../img/roadmap/roadmapbg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    height: 350px;
}

/* .roadmap_shape {
    position: relative;
    bottom: 0px;
    width: 100%;
    height: 100%;
    left: 50%;
    transform: translatex(-50%);
} */

.blog_hero {
    background-image: url("../img/roadmap/roadmapbg.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    height: 100%;
    background-color: var(--color-black)
}

.nft_bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 770px;
    background: #0a0a0a
}

.nft_video {
    position: absolute;
    z-index: 0;
    bottom: -20px;
    left: 50%;
    max-width: 60%;
    padding-bottom: 20px
}

.choose_card {
    background: linear-gradient(90deg, #231801 0%, #000000 100%);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px
}

.nft_aboutcard {
    background-image: url(../img/nft/about_bg_shape.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 35px;
    height: 100%
}

.nft_card {
    flex: 0 0 18%;
    background: linear-gradient(90deg, #130E03 0%, #422f0887 100%);
    padding: 25px;
    border-radius: 15px;
    height: 460px;
    cursor: pointer
}

.nft_card.active {
    flex: 0 0 40%
}

.swap_hero {
    background-image: url(../img/swap/swap_herobg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%
}

.connect_height {
    height: 400px;
    width: 100% !important
}

.swap_card {
    background-image: url(../img/swap/card-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    padding: 35px;
    height: 100%
}

.token_tree {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    max-width: 550px;
    bottom: 0%
}

.swap_tab {
    padding: 25px 40px
}

.tokeno_txt {
    font-size: 20px
}

.swap_tab_para {
    color: #fff;
    opacity: .5;
    font-size: 16px
}

.step-card {
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.left-border {
    position: absolute;
    top: 12px;
    left: 0;
    width: 4px;
    height: 0%;
    background-color: #DA9509;
    transition: height 0.3s ease
}

.step-card.active .left-border {
    height: 80%;
    border-radius: 10px
}

.secure_card {
    padding: 30px 15px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / .4);
    text-align: center;
    background: linear-gradient(180deg, rgb(18 16 16 / .5) 0%, rgb(155 107 16 / .46) 100%);
    height: 100%
}

.feature_image {
    position: absolute;
    left: 49.8%;
    transform: translate(-50%, 0%);
    z-index: -1;
    width: 25%;
    bottom: 0%
}

.events-header {
    background: linear-gradient(90deg, rgb(155 107 16 / .46) 0%, rgb(18 16 16 / .5) 100%);
    color: #fff;
    border-radius: 8px;
    padding: .75rem 1rem;
    display: flex;
    align-items: center
}

.event-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
    border-bottom: 1px solid rgb(255 255 255 / .1);
    flex-wrap: wrap;
    text-wrap: wrap
}

.event-info {
    display: flex;
    align-items: center;
    gap: 1rem
}

.event-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover
}

.event-title {
    font-size: 1rem;
    font-weight: 500;
    color: #fff
}

.event-meta {
    font-size: .85rem;
    color: rgb(255 255 255 / .7)
}

.custom-pagination {
    display: flex;
    justify-content: center;
    gap: .5rem
}

.custom-pagination .page-item .page-link {
    background: #1c1c1c;
    border: none;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease
}

.custom-pagination .page-item .page-link:hover {
    background: #333;
    color: #fff
}

.custom-pagination .active .page-link {
    background: #000;
    border: 2px solid #fff;
    color: #fff
}

.custom-pagination .disabled .page-link {
    opacity: .5;
    pointer-events: none
}

.global_sec {
    height: 1100px;
    background: #050505;
    overflow: hidden
}

.main_support {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px
}

.wallet_box {
    background: var(--support-card);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    cursor: pointer
}

.wallet_box::before {
    position: absolute;
    content: ' ';
    display: block;
    border-radius: 12px;
    top: -1px;
    left: -3px;
    width: 102%;
    height: 102%;
    background: linear-gradient(90deg, #fff0 0%, rgb(249 223 123) 50%, #fff0 100%);
    background-size: 200% auto;
    animation: rotation_481 4s linear infinite;
    z-index: -2;
    display: none
}

.wallet_box:hover::before {
    display: block
}

.global_video {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3
}

@keyframes rotation_481 {
    0% {
        background-position: 0%
    }

    50% {
        background-position: 100%
    }

    100% {
        background-position: 0%
    }
}

.pad-bott {
    padding-bottom: 200px
}

.overview_space {
    padding: 40px;
    border-radius: 10px
}

.overview_touch {
    background-color: var(--color-theme);
    width: 50px;
    height: 50px;
    border-radius: 50px
}

.input-search-eco {
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    pointer-events: none
}

.overview_card {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgb(255 255 255 / .4);
    height: 100%;
    gap: 30px
}

.over_input {
    border: 1px solid var(--color-white);
    opacity: .4;
    padding: 12px 40px
}

.overview_btn {
    color: var(--color-white);
    background: #3f3f3f;
    padding: 0 10px;
    border-radius: 6px;
    width: fit-content;
    height: 30px
}

.main-container {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    height: 660px
}

.main {
    margin: 0 auto;
    width: 580px;
    height: 580px;
    position: relative
}

.big-circle {
    height: 100%;
    width: 100%;
    position: relative;
    border: 1px double var(--color-theme);
    outline: 2px double var(--color-theme);
    outline-offset: 5px;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    animation: Rotate 20s linear infinite;
    -webkit-animation: Rotate 20s linear infinite
}

.icon-block {
    width: 64px;
    height: 64px;
    position: absolute;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    box-shadow: 0 2px 4px 0 var(--color-theme)
}

.icon-block img {
    margin: 0 auto;
    width: 86%;
    animation: Rotate-reverse 20s linear infinite;
    -webkit-animation: Rotate-reverse 20s linear infinite
}

.icon-block:first-child {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%)
}

.icon-block:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    -webkit-transform: translate(50%, -50%)
}

.icon-block:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%)
}

.icon-block:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%)
}

.circle {
    animation: circle-rotate 20s linear infinite;
    -webkit-animation: circle-rotate 20s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    width: 75%;
    height: 75%;
    border: 1px solid var(--color-theme);
    outline: 2px double var(--color-theme);
    outline-offset: 5px;
    border-radius: 50%
}

.circle .icon-block img {
    animation: img-rotate 20s linear infinite;
    -webkit-animation: img-rotate 20s linear infinite
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    text-align: center
}

.center-logo img {
    max-width: 200px
}

@keyframes Rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes Rotate {
    from {
        -webkit-transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes Rotate-reverse {
    from {
        transform: rotate(360deg)
    }

    to {
        transform: rotate(0deg)
    }
}

@-webkit-keyframes Rotate-reverse {
    from {
        -webkit-transform: rotate(360deg)
    }

    to {
        -webkit-transform: rotate(0deg)
    }
}

@keyframes circle-rotate {
    from {
        transform: translate(-50%, -50%) rotate(45deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(405deg)
    }
}

@-webkit-keyframes circle-rotate {
    from {
        -webkit-transform: translate(-50%, -50%) rotate(45deg)
    }

    to {
        -webkit-transform: translate(-50%, -50%) rotate(405deg)
    }
}

@keyframes img-rotate {
    from {
        transform: rotate(-45deg)
    }

    to {
        transform: rotate(-405deg)
    }
}

@-webkit-keyframes img-rotate {
    from {
        -webkit-transform: rotate(-45deg)
    }

    to {
        -webkit-transform: rotate(-405deg)
    }
}

.tokenomic_sec {
    background: url(../img/home/tokeno_bg.webp);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden
}

.valnonex_content {
    height: 540px
}

.shadow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2
}

.blog_content {
    padding: 25px 0;
    height: 220px
}

.blog_card,
.explore_btn,
.blog_card h4 {
    transition: all 0.4s linear
}

.explore_btn {
    background-color: #fff0;
    width: max-content !important;
    color: var(--color-white)
}

.blog_card:hover .explore_btn,
.blog_card:hover h4,
.blog_card:hover .blog_date {
    display: block;
    color: var(--color-theme)
}

.blog_card .explore_btn>i {
    display: inline-block;
    transform: rotate(0deg);
    transition: transform 0.4s ease
}

.blog_card:hover .explore_btn>i {
    transform: rotate(45deg)
}

.social_box {
    width: 132px;
    height: 132px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 40%);
    transition: all 0.4s linear;
    background-color: #fff0;
    margin-bottom: 20px
}

.main_social:hover .social_box {
    border: 2px solid var(--color-theme);
    background-color: rgba(218, 149, 9, 30%);
    backdrop-filter: blur(30px)
}

.main_social:hover .social_box i {
    color: var(--color-theme)
}

.social_txt {
    font-size: 20px;
    color: rgba(255, 255, 255, 40%);
    text-align: center;
    transition: all 0.4s linear
}

.main_social:hover .social_txt {
    color: var(--color-theme)
}

.footer_title {
    border-left: 2px solid var(--color-theme);
    padding-left: 10px
}

.footer_nav li a {
    padding: 8px 10px;
    display: block;
    transition: all 0.4s linear
}

.footer_nav li a:hover {
    color: var(--color-theme)
}

.bottom_footer {
    border-top: 1px solid rgba(255, 255, 255, 15%)
}

.footer_shap_1 {
    position: absolute;
    bottom: 20px;
    left: 0;
    max-width: 30%
}

.footer_shap {
    position: relative;
    top: 0;
    left: 0;
    width: 100%
}

.footer_shap_2 {
    position: absolute;
    bottom: 20px;
    right: 0;
    max-width: 30%
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    position: relative
}

.image-wrapper img,
.image-wrapper .skeleton {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.text-type {
    display: block;
    white-space: pre-wrap
}

.text-type__cursor {
    margin-left: .25rem;
    display: inline-block;
    opacity: 1
}

.text-type__cursor--hidden {
    display: none
}

.text-type__cursor {
    margin-left: .25rem;
    display: inline-block;
    opacity: 1
}

.text-type__cursor--hidden {
    display: none
}

.scroll-reveal {
    margin: 10px 0
}

.scroll-reveal-text {
    line-height: 1.5
}

.word {
    display: inline-block
}

.walletcard {
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
    background-color: var(--card-bg-1);
    padding: 30px;
    border-radius: 14px;
    height: 100% !important
}

#wallet_swiper .swiper-slide {
    height: 450px !important
}

.wallet_mobile img {
    max-width: 450px
}

.wallet_hero {
    width: 100%
}

.wallet_badge {
    background-color: #FFFFFF10;
    border-radius: 80px;
    padding: 8px 18px 8px 8px
}

.swiper-pagination-bullet {
    background: var(--color-theme);
    opacity: .5
}

.swiper-pagination-bullet-active {
    background: var(--color-theme);
    opacity: 1
}

.future_digital_sec {
    height: 750px;
    overflow: hidden
}

.swap_card_title h4 {
    font-size: 20px
}

.roadmap-container {
    position: relative;
    width: 100%;
    margin: auto;
    padding: 50px 0
}

.roadmap-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 40%)
}

.roadmap-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px
}

.roadmap-item.left {
    flex-direction: row-reverse
}

.roadmap-card {
    background: linear-gradient(90deg, #231801 0%, #000000 100%);
    padding: 20px;
    width: 100%;
    border-radius: 8px;
    color: #fff;
    min-height: 155px
}

.roadmap-center {
    width: 18%;
    text-align: center;
    position: relative
}

.roadmap-date {
    background: var(--color-black);
    padding: 6px 10px;
    font-weight: 700;
    border: 1px solid #666
}

.roadmap_shap {
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.timeline {
    position: relative;
    padding: 40px 0;
    box-sizing: border-box
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 85%;
    background: #c5c5c5;
    opacity: .5
}

.timeline ul {
    padding: 0;
    margin: 0
}

.timeline ul li {
    list-style: none;
    position: relative;
    width: 50%;
    padding: 20px 40px;
    box-sizing: border-box
}

.timeline ul li:nth-child(odd) {
    float: right;
    clear: both;
    padding-left: 250px
}

.timeline ul li:nth-child(even) {
    float: left;
    clear: both;
    padding-right: 250px
}

.content {
    padding-bottom: 20px
}

.timeline ul li:nth-child(odd):before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: 24px;
    left: -4px
}

.timeline ul li:nth-child(odd)::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 80px;
    transform: translateY(-50%);
    width: 150px;
    height: 100px;
    background: url(../img/roadmap/roadmap_right_shape.svg) no-repeat center center;
    background-size: contain
}

.timeline ul li:nth-child(even)::before {
    content: "";
    position: absolute;
    top: 30%;
    right: 80px;
    transform: translateY(-50%);
    width: 150px;
    height: 100px;
    background: url(../img/roadmap/roadmap_left_shape.svg) no-repeat center center;
    background-size: contain
}

.timeline ul li h3 {
    padding: 0;
    margin: 0;
    color: rgb(233 33 99);
    font-weight: 600
}

.timeline ul li p {
    margin: 10px 0 0;
    padding: 0
}

.timeline ul li .time h4 {
    margin: 0;
    padding: 0;
    font-size: 14px
}

.timeline ul li:nth-child(odd) .time {
    position: absolute;
    top: 42px;
    left: -80px;
    width: 160px;
    height: 42px;
    background: var(--color-black);
    padding: 6px 10px;
    font-weight: 700;
    border: 1px solid #666;
    display: flex;
    justify-content: center;
    align-items: center
}

.timeline ul li:nth-child(even) .time {
    position: absolute;
    top: 42px;
    right: -80px;
    width: 160px;
    height: 42px;
    background: var(--color-black);
    padding: 6px 10px;
    font-weight: 700;
    border: 1px solid #666;
    display: flex;
    justify-content: center;
    align-items: center
}

@media(max-width:1000px) {
    .timeline {
        width: 100%
    }
}

.blog_title {
    font-size: 24px;
    margin-bottom: 20px
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:active textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
    background-color: transparent !important;
    -webkit-text-fill-color: var(--color-white) !important;
    -webkit-background-clip: text !important
}

.dots_animated .dot_right {
    position: absolute;
    bottom: 30%;
    right: -10px;
    height: 10px;
    width: 146px;
    --tw-bg-opacity: 1;
    background-image: url(../img/roadmap/line.svg);
    background-repeat: no-repeat;
    background-size: contain;
    animation: 9s linear 0s infinite normal none running animation-1lkihw4
}

@keyframes animation-1lkihw4 {
    0% {
        right: -10px
    }

    100% {
        right: 100%
    }
}

.dots_animated .dot_top {
    background-image: url(../img/roadmap/topline.svg);
    right: 21% !important;
    position: absolute;
    width: 30px;
    height: 146px;
    background-repeat: no-repeat;
    animation: 9s linear 0s infinite normal none running animation-1lkihw42
}

@keyframes animation-1lkihw42 {
    0% {
        bottom: -10px
    }

    100% {
        bottom: 100%
    }
}

.footer_span {
    position: absolute;
    top: 0%;
    left: 0%;
    /* right: 14.4%; */
    height: 2px;
    width: 130px;
    --tw-bg-opacity: 1;
    filter: grayscale(1);
    background-size: contain;
    background: linear-gradient(to right, transparent 0%, var(--color-theme) 100%);
    animation: 8s linear 4s infinite normal none running abc;
    animation-delay: 5s;
    rotate: 0deg
}


@keyframes abc {
    0% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

.go_back {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--color-theme);
    color: var(--color-white);
    border-radius: 10px;
    position: fixed;
    bottom: 20px;
    z-index: 999;
    right: 20px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    animation: floatUpDown 1.5s ease-in-out infinite;
    animation: pulse 2s infinite
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 #da94094d;
        box-shadow: 0 0 0 0 #da94094d
    }

    70% {
        -moz-box-shadow: 0 0 0 10px #da94094d;
        box-shadow: 0 0 0 10px #da94094d
    }

    100% {
        -moz-box-shadow: 0 0 0 0 #da94094d;
        box-shadow: 0 0 0 0 #da94094d
    }
}