@import url('https://fonts.googleapis.com/css2?family=Cuprum:ital,wght@0,400..700;1,400..700&family=Titan+One&display=swap');
body {
    font-family: "Titan One", sans-serif;
    font-size: 18px;
    font-weight: 400;
    background: #fff;
    color: #121212;
}

a,
button {
    -o-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
}

a,
a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

p {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

label {
    margin-bottom: 0;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 30px;
    border-radius: 50%;
    background: rgb(252, 146, 15);
    background: linear-gradient(193deg, rgba(252, 146, 15, 1) 27%, rgba(243, 124, 62, 1) 77%);
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 2px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 5px solid #F37C3E;
    z-index: 1;
}

.scrolltotop i {
    color: #ffff;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: rgb(252, 146, 15);
    background: linear-gradient(193deg, rgba(252, 146, 15, 1) 27%, rgba(243, 124, 62, 1) 77%);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*==== nev area start===== */

header {
    padding: 20px 30px;
    position: fixed;
    max-width: 100%;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
}

header .container {
    max-width: 100% !important;
}

nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo {
    max-width: 300px;
    display: inline-block;
    margin-right: 50px;
}

.menu-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.s-icon {
    margin-left: 20px;
}

.s-icon a {
    display: inline-block;
    margin-right: 16px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.s-icon a:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.menu-item ul {
    background: #F37C3E;
    padding: 11px 0px;
    border-radius: 55px;
}

.menu-item ul li a {
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 15px 30px;
    text-transform: capitalize;
}

.menu-item ul li a:hover {
    border-radius: 55px;
    color: #fff;
}

.active a {
    border-radius: 55px;
    color: #fff !important;
}

/* .active a{
    color: red !important;
} */

.menu-bar {
    display: none;
}

.menu-bar a {
    font-size: 30px;
    color: #000;
    cursor: pointer;
}

.mobile-icon-ss {
    display: none;
}

/*==== nev area end===== */

/*==== sticky-nev start=== */

.fixed-menu {
    position: fixed;
    top: 0;
    -webkit-animation: slide-down 0.5s !important;
    animation: slide-down 0.5s !important;
    left: 0;
    right: 0;
    z-index: 250;
    -webkit-transition: .10s;
    -o-transition: .10s;
    transition: .10s;
    z-index: 9999999;
}

.fixed-menu .menu-bar a {
    color: #000 !important;
}

@-webkit-keyframes slide-down {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide-down {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

/*==== sticky-nev end=== */

/* ====offcanvas manu start===== */

.offcanvas-header {
    background-color: #42ADF3;
    border-bottom: 1px solid #DD2F2F;
}

.offcanvas-header h5 img {
    max-width: 100px;
}

.offcanvas-body {
    background-color: #42ADF3;
    padding: 0px !important;
}

.clloss-x {
    font-size: 25px;
    cursor: pointer;
    color: #000;
}

.clloss-x:hover {
    color: #000;
}

.offcanvas-start {
    top: 0;
    left: 0;
    width: 340px;
    z-index: 11111111111111;
}

.mobile-menu-item ul li a {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    padding: 15px 20px;
    display: block;
    transition: .2s;
    text-transform: uppercase;
}

.mobile-menu-item ul li a:hover {
    color: #fff;
    background-color: #0f0f0f;
}

.m-active {
    color: #ffff !important;
    background-color: #0f0f0f;
}

.mobile-menu-item ul li a i {
    font-size: 20px;
    margin-right: 15px;
}

/* ====offcanvas manu end===== */

/* =====hero-area-start===== */

.hero-area {
    background-color: #A9DEF8;
    background-image: url(img/hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 200px 0 110px 0;
    height: 800px;
}

.hero-img {
    text-align: center;
    margin-top: 66px;
}

.container-hero {
    max-width: 1350px;
    margin: auto;
}

.hero-title h2 {
    color: #FFF;
    font-family: "Titan One";
    font-size: 98.114px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: #F37C3E;
    padding: 10px 0px;
    text-align: center;
}

.hero-title p {
    color: #FFF;
    text-align: center;
    text-shadow: 3px 3px 0px #000;
    font-family: Cuprum;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 30px */
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-title ul {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-title ul {
    margin-top: 335px;
    margin-left: 30px;
    position: relative;
}

.hero-title ul img {
    position: absolute;
    bottom: 83px;
}

.hero-title ul li a {
    color: #FFF;
    font-family: "Titan One";
    font-size: 38.11px;
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    padding: 20px 30px;
    background-color: #F37C3E;
    line-height: normal;
    border-radius: 50px;
    transition: .3s;
}

.hero-title ul li a:hover {
    background-color: #da6d33;
}

/* about area start */

.about-area {
    height: 745px;
    padding: 140px 0;
    background: #000000;
    position: relative;
    background-image: url(img/aabout-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.about-content {
    padding: 20px 45px;
    background: #F37C3E;
    padding: 20px;
    max-width: 680.854px;
    margin: auto;
    text-align: center;
    overflow: hidden;
}

.about-content h2 {
    color: #FFF;
    font-family: "Titan One";
    font-size: 48.11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;
    text-align: center;
}

.about-content p {
    color: #FFF;
    text-align: center;
    font-family: Cuprum;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px;
}

/* ======our partners area start====== */

.partners-area {
    padding: 52px 0 0px;
    background: #A9DEF8;
}

.partners-title h2 {
    color: #FFF;
    text-align: center;
    font-family: "Titan One";
    font-size: 65px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%;
    /* 68.25px */
    text-transform: uppercase;
    margin-bottom: 50px;
    max-width: 748px;
    margin: auto;
    padding: 22px 10px;
    background-color: #F37C3E;
    margin-bottom: 25px;
}

.partners-img {
    text-align: center;
    margin-right: 100px;
}

.copy-notification {
    color: #ffffff;
    background-color: #F37C3E;
    padding: 20px;
    border-radius: 30px;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 150px;
    margin-top: -30px;
    margin-left: -85px;
    display: none;
    text-align: center;
}

/* Tokenomics area start */

.tokenomics-area {
    padding: 62px 0;
    background-color: #A9DEF8;
}

.tokenomic-title h2 {
    color: #FFF;
    text-align: center;
    font-family: "Titan One";
    font-size: 65px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%;
    /* 68.25px */
    text-transform: uppercase;
    margin-bottom: 50px;
    max-width: 748px;
    margin: auto;
    padding: 22px 10px;
    background-color: #F37C3E;
    margin-bottom: 25px;
}

.custom-col-1s {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
}

.custom-col-2s {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
}

.token-left-item {
    padding: 50px 150px 50px 50px;
    background: #F37C3E;
    backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    min-height: 430px;
}

.tkn1 {
    margin-bottom: 20px;
}

.token-left-item h2 {
    color: #FFF;
    font-family: "Titan One";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.token-left-item ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.token-left-item ul li {
    margin-bottom: 13px;
}

.token-left-item ul li:first-of-type {
    color: rgba(255, 255, 255, 0.80);
    ;
    font-family: Cuprum;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 16.8px */
}

.token-left-item ul li:last-of-type {
    color: #fff;
    font-family: Cuprum;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    /* 16.8px */
}

.token-left-item p {
    color: #fff;
    font-family: Cuprum;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

.token-left-item p img {
    display: inline-block;
    margin-left: 5px;
}

/* token-right */

.token-right {
    border-radius: 7px;
    border: 1px solid #FFF;
    background: #373737;
    padding: 35px 40px 35px 30px;
    display: flex;
    position: relative;
}

.rk-sheape {
    position: absolute;
    top: -70px;
    left: -30px;
    width: 100%;
}

.rk-sheape img {
    max-width: 720px;
}

.token-right h2 {
    color: #FFF;
    font-family: "Freckle Face";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 30px;
}

.token-right-ll {
    text-align: center;
}

.token-right-rr {
    margin-top: 40px;
}

.token-right-rr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 27px;
}

.token-right-rr ul li:first-of-type {
    color: #FFF;
    text-align: center;
    font-family: "Titan One";
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%;
    /* 26.25px */
    text-transform: uppercase;
    margin-bottom: 5px;
}

.token-right-rr ul li:last-of-type {
    color: #FFF;
    color: #FFF;
    text-align: center;
    font-family: "Titan One";
    font-size: 55px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%;
    /* 57.75px */
    text-transform: uppercase;
}

.tr-rr2 li {
    color: #FFF !important;
}

.tr-rr1 {
    padding: 10px;
    background-color: #C8856A;
}

.tr-rr2 {
    padding: 10px;
    background-color: #7B1717;
}

.text-s {
    margin-top: 20px;
}

.tok-inner {
    margin-bottom: 50px;
}

.text-s ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.text-s ul li {
    color: #FFF !important;
    font-family: "Titan One" !important;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

/* =========Our Roadmap start ======== */

.our-roadmap-area {
    padding: 80px 0;
    background: #CEF;
}

.roadmap-title {
    max-width: 748px;
    margin: auto;
    padding: 22px 10px;
    background-color: #F37C3E;
}

.roadmap-title h2 {
    color: #FFF;
    text-align: center;
    font-family: "Titan One";
    font-size: 65px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%;
    /* 68.25px */
    text-transform: uppercase;
    margin-bottom: 15px;
}

.roadmap-title p {
    color: #FFF;
    text-align: center;
    font-family: Cuprum;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.roadmap-item {
    padding: 70px 20px 10px 50px;
    background-image: url(img/rd-bg.png);
    background-repeat: no-repeat;
    height: 411px;
    position: relative;
}

.roadmap-item small img {
    display: inline-block;
    margin-bottom: 22px;
}

.roadmap-item h3 {
    color: #FF4853;
    font-family: "Titan One";
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.roadmap-item ul li {
    color: #121212;
    font-family: Cuprum;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 15px;
    position: relative;
    margin-left: 22px;
}

.roadmap-item ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #121212;
    display: block;
    border-radius: 50%;
    position: absolute;
    left: -22px;
    top: 5px;
}

.rd-bdr-none {
    border-bottom: none;
}

.rd1 {
    position: absolute;
    bottom: 89%;
    right: 85px;
}

.rd-inner {
    margin-top: 30px;
}

/* ====featured area======== */

.our-featured-area {
    padding: 0px 0 0 0;
    background: #CEF;
    position: relative;
}

.our-featured_img {
    text-align: center;
    margin-top: 60px;
}

.disclaimer-wrapper {
    border-radius: 50px;
    padding: 42px 62px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #F37C3E;
    margin-top: 90px;
    margin-bottom: 90px;
}

.disclaimer-wrapper h2 {
    color: #FFF;
    font-family: "Titan One";
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.disclaimer-wrapper p {
    color: #FFF;
    font-family: Cuprum;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

.btm-king-img {
    text-align: center !important;
    margin-left: 50px;
}

.footer-social-inner {
    width: 450px;
    height: 280px;
    background-image: url(img/fl.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    margin-left: 50px;
    z-index: 999;
}

.footer-social-inner ul {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    bottom: 95px;
    left: 115px;
}

.github-and-medium-link {
    position: absolute;
    bottom: 260px;
}

.ftp-inner {
    position: relative;
}

.ft-line {
    position: absolute;
    right: 0px;
}

body {
    position: relative;
}

footer {
    padding: 20px 0;
    background: #F37C3E;
}

.footer-wrapper {
    color: #000;
    font-family: Cuprum;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

html,
body {
    scroll-behavior: smooth;
}

/* end all the css  */

.cs-row {
    display: flex;
    gap: 10px;
}

/* =======end all the css design======== */