
@import url("css2.css");

@import url("css2-1.css");

body {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    background: #E6E6E6;
    color: #000;
}

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: 40px;
    border-radius: 50%;
    background: rgb(5,163,27);
    background: linear-gradient(180deg, rgba(5,163,27,1) 8%, rgba(70,131,1,1) 51%); 
    text-align: center; 
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    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: 2px solid #09b803;
    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(5, 221, 34);
    background: linear-gradient(180deg, rgb(11, 255, 44) 8%, rgb(29, 54, 0) 51%); 
  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;
    background: #7E4C32;
    backdrop-filter: blur(7px);
    z-index: 9999;
}

header .container{
    max-width: 99% !important;
    margin: auto;
}

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: flex;
    align-items: center;
}
.menu-item ul li{
    margin-left: 10px;
}

.menu-item ul li a {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    display: inline-block;
    padding: 10px 20px;
    text-transform: capitalize;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    text-align: center;


}

.menu-item ul li a:hover {
    color: #fff;
    font-weight: 700; 
}

.active a{
    font-weight: 700 !important; 
    color: #fff !important;

}

.menu-icon ul{
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-icon ul li a{
    transition: .3s;
}
.menu-icon ul li a:hover{
    transform: scale(1.2);
}

.section-gap{
    display: block;
    padding: 10px;
}
.menu-bar {
    display: none;
}

.menu-bar a {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.s-icon{
   display: flex;
   align-items: center;
   gap: 10px;
   margin-left: 15px;
}
.s-icon a {
    display: inline-block;
    -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);
}
.mobile-icon-ss {
    display: none;
}
/*==== nev area end===== */

/*==== sticky-nev start=== */

.fixed-menu {
    background: #7E4C32;
    position: fixed;
    top: 0;
    -webkit-animation: slide-down 0.5s !important;
            animation: slide-down 0.5s !important;
    left: 0;
    top:0px;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    z-index: 250;
    -webkit-transition: .10s;
    -o-transition: .10s;
    transition: .10s;
}


@-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: #598D3E;
    border-bottom: 1px solid #FFD233;
}

.offcanvas-header h5 img {
    max-width: 100px;
}

.offcanvas-body {
    background-color: #7E4C32;
    padding: 0px !important;
}

.clloss-x {
    font-size: 25px;
    cursor: pointer;
    color: #fff;
}

.clloss-x:hover {
    color: #fff !important;
}

.offcanvas-start {
    top: 0;
    left: 0;
    width: 340px;
    z-index: 11111111111111;
}

.mobile-menu-item ul li a {
    font-size: 16px;
    font-weight: 500;
    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 {
    background-color: #598D3E;
    color: #fff;
}

.m-active {
    background: #598D3E;
    color: #fff !important;
}

.mobile-menu-item ul li a i {
    font-size: 20px;
    margin-right: 15px;
}

/* ====offcanvas manu end===== */

/* =====hero-area-start===== */

.hero-area {
    background-image: url("hero-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;
    padding: 4px 0 80px;
    background-color: #E6E6E6;
    height: 871px;
 
}



.hero-title{
    margin-top: 60px;
}

.hero-title h2 {
    color: #FFF;
    text-align: center;
    text-shadow: 3px 3px 0px #291900;
    font-family: Goldman;
    font-size: 150px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
   
}

.hero-area p {
    color: #FFF;
    text-align: center;
    text-shadow: 3px 3px 0px #291900;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 30px */
    text-transform: uppercase;
    margin-bottom: 30px;
}
.hero-title ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
    margin-bottom: 30px;
}


.hero-title ul li a {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 14px */
    text-transform: capitalize;
    padding: 18px 20px;
    transition: .3s;
    text-align: center;
    width: 200px;;
    display: block;
    color: #fff;
    border-radius: 5px;
    background: #7F4C31;

}
.hero-title ul li a:hover{
   background-color: #462e21;
}



.hero-right {
    text-align: right;
}

/* about area start */



.about-area {
    background-image: url("aboutbg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding:150px 0;

}


.about-left{
    background-image: url("plain-texture.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    padding: 40px;
    position: relative;
 
}

.action-fire{
    position: absolute;
    top: -110px;
}
.about-left h3 {
    color: #FFF;
    font-family: Goldman;
    font-size: 38px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 53.2px */
    text-transform: uppercase;
}

.about-left h2 {
    color: #FFF;
    font-family: Goldman;
    font-size: 68px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 123.2px */
    margin-bottom: 20px;
   
}

.about-left p {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */

}

.about-btn- h3{
    color: #F6CEAA;
    text-align: center;
    text-shadow: 3px 0px 0px #000;
    font-family: Cuprum;
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 30px */
    text-transform: uppercase;
    margin-bottom: 15px;
}




/* ======our partners area start====== */

.partners-area{
    padding: 65px 0px;
    background-image: url("plain-texture.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

}
.mas-pra {
	max-width: 750px;
	margin: auto;
}
.partners-title h2{
    color: #FFF;
    text-align: center;
    font-family: Goldman;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%; /* 63px */
    text-transform: uppercase;
    margin-bottom: 50px;
}

.pretners-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px 50px;
}

.pretners-items a {
	display: block;
	text-align: center;

    border: 1px solid #FFF;
    background: #598D3E; 
	padding: 16px 45px;
	margin-bottom: 20px;
	height: 91px;
	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;
}


/* =========Tokenomics area start ========*/

.tokenomics-area {
    padding:73px 0;
    background-image: url("qweqwebg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  

}

.tokenomic-title h2 {
    color: #FFF;
    text-align: center;
    font-family: Goldman;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 66px */
    text-transform: uppercase;
	margin-bottom: 29px;
}

.tokenomic-title p {
    color: #fff;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
	margin-bottom: 45px;
}


.token-left-item{
    background-image: url("cs.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    padding:19px 25px;
    margin-bottom: 20px;
    min-height: 224px;
    
}
.token-left-item:last-of-type{
    margin-top: 15px;
}
.copy-notification {
    color: #fff;
    background-color: #000;
    padding: 10px;
    border-radius: 30px;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200px;
    margin-top: -30px;
    margin-left: -85px;
    display: none;
    text-align:center;
    cursor: pointer;
}


.token-left-item h2{
    color: #FFF;
    font-family: "JetBrains Mono";
    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: 10px;
}
.token-left-item ul li:first-of-type{
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 24px */
}
.token-left-item ul li:last-of-type{
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 24px */
    text-transform: capitalize;
}
.Token_Address p{
    color: #FFF;
    font-family: "JetBrains Mono";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 14px */
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;

}

/* token-right */
.token-right{
    background-image: url("plain-texture.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left center;
    padding: 40px;
    margin-bottom: 20px;

}
.token-right h3{
    color: #FFF;
    font-family: "JetBrains Mono";
    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: flex;
    align-items: center;
    gap: 35px;
    justify-content: center;

}
.token-right ul {
    width: 50%;
}
.token-right ul li{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
   

}
.token-right ul li img{
    display: inline-block;
    margin-right: 10px;
}
.token-right ul li:first-of-type{
    color: #000;
    font-family: "JetBrains Mono";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 24px */
  
}
.token-right ul li:last-of-type{
    color: #000;
    font-family: "JetBrains Mono";
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 60px */
    text-transform: capitalize;
}
.tr-rr2 li{
    color: #FFF !important; 
}
.tr-rr1 {
    border: 2px solid #000;
    padding: 10px;
}
.tr-rr2 {
    border: 2px solid #FFF;
    padding: 10px;
}
main{
    overflow: hidden;
}
/* =========Our Roadmap start ======== */

.our-roadmap-area {
    padding: 80px 0 50px;
    background-image: url("plain-texture.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;


}

.roadmap-title h2{
    color: #FFF;
    text-align: center;
    font-family: Goldman;
    font-size: 60px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%; /* 63px */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.roadmap-title p{
    color: #fff;
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 60px;
}


.roadmap-item {
    padding: 22px;
    border: 1px solid #FFF;
    background-image: url("qweqwebg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 283px;
    margin-bottom: 30px;
}
.rdm{
    margin-right: 30px;
}

.roadm-t{
    display: flex;
    align-items: center;
    gap: 25px;
}


.roadmap-item img {
    display: inline-block;
    margin-bottom: 15px;
}

.roadm-t h2 {
    color: #FFF;
    font-family: "JetBrains Mono";
    font-size: 38px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
	margin-bottom: 15px;
   
}

.roadmap-item ul li {
    color: #fff;
    font-size: 16px; 
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
    position: relative;
    margin-left: 22px;
}

.roadmap-item ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #fff;
    display: block;
    border-radius: 50%;
    position: absolute;
    left: -22px;
    top: 5px;
}


/* ========footer======== */
/* ========footer======== */

footer {
    background-image: url("ft-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;
    background-color: #E6E6E6;
    padding: 30px  0;

  }
  .ft-container {
	max-width: 1400px !important;
	margin: auto;
}
.footer-left-inner{

    margin-top: 350px;
}

.footer-left-inner h2{
    color: #FFF;
    text-align: center;
    font-family: Goldman;
    font-size: 65px;
    font-style: normal;
    font-weight: 400;
    line-height: 105%; /* 84px */
    text-transform: uppercase;
    margin-bottom: 30px;
}
.footer-left-inner ul{
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.footer-right-img{
    position: relative;
}
.footer-social-link{
    display: flex;
    align-items: center;
    gap: 9px;
    position: absolute;
    left:120px;
    right: 0;
    top: 60px;
}

  .coppyright-text p{
    background-image: url("plain-texture.png");
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 14px */
    text-transform: uppercase;
    padding: 18px;

  }

 html, body{
    scroll-behavior: smooth;
 }

/* end all the css  */


/* ========== */
