

@font-face {
    font-family: 'MyCustomFont';
    src: url('./Lemonada-Regular.ttf') format('truetype');
}


body {
  font-family: 'MyCustomFont', sans-serif;
  color: #ffffff;
  background: #111;
}

a {
  color: #cead64;
}

a:hover {
  color: #f8ac07;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, .font-primary {
  font-family: 'MyCustomFont', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #ce1919;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #ff8c00;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background-color: #000c19;
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
}

 @media (max-width: 767px) {
        .container-fluid.d-flex {
            width: auto !important; 
        }
    }

#header .logo h1 {
  font-size: 40px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
}

#span-style {
  color:  #ffffff !important;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #ffffff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
}

@media (max-width: 575px) {
  #header .logo img {
    max-height: 60px; 
    max-width: 120px;
  }
}

#main {
  margin-top: 72px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
  
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu .btn-get-started {
   font-family: 'MyCustomFont', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 28px;
    transition: 0.5s;
    color: #ffffff;
    background: #d59c65;
    border-style: solid; 
    border-width: 1px;
    box-sizing: border-box;
    border-radius: 5px;
    border-top-color: #ffffff; 
    border-left-color: #ffffff; 
    border-right-color: #000000; 
    border-bottom-color: #000000; 
}

.nav-menu .btn-get-started:hover {
  background: #ff8c00;
  color: #ffffff;
}

.nav-menu a {
  display: block;
    position: relative;
    color: #ffffff;
    padding: 10px 20px;
    transition: 0.3s;
    font-size: 0.87rem;
  font-family: 'MyCustomFont', sans-serif;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #ce1919;
  text-decoration: none;
}

.nav-menu .get-started a {
background: #ff8c00 !important;
    color: #fff;
    border-radius: 30px;
    margin: 0 15px;
    padding: 7px 20px;
}

.nav-menu .get-started a:hover {
  background: #1fa565;
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #3c1300;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #fff700;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
font-family: 'MyCustomFont', sans-serif;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
font-family: 'MyCustomFont', sans-serif;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #000000;
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #ffffff;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #ce1919;
  text-decoration: none;
}

.mobile-nav .get-started a {
  background: #ff8c00;
  color: #fff;
  border-radius: 50px;
  margin: 15px;
  padding: 10px 25px;
}

.mobile-nav .get-started a:hover {
  background: #fff700;
  color: #000000;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
 font-family: 'MyCustomFont', sans-serif;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa0";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 22px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgb(25 25 25 / 90%);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  padding-top: 150px;
  padding-bottom: 10%;
  height: auto;
}

@media (max-width: 767px) { 
  #hero {
    text-align: center;
    align-items: center;
    padding-top: 50px;
  }
}

#hero p {
  font-size: 16px!important;
  line-height: 30px;

}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 2.7rem;
    font-weight: 500;
    line-height: 56px;
    color: #fff;
}

 @media (max-width: 767px) {
        #hero h1 {
            font-size: 2rem!important; 
        }
    }

#hero .btn-get-started {
  font-family: 'MyCustomFont', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 28px;
    transition: 0.5s;
    color: #ffffff;
    background: 
#6b348d;
    border-style: solid;
    border-width: 1px;
    box-sizing: border-box;
    border-radius: 5px;
    border-top-color: #ffffff; 
    border-left-color: #ffffff; 
    border-right-color: #000000; 
    border-bottom-color: #000000; 
}


#hero .btn-get-started:hover {
  background: #ff8c00;
  color: #ffffff;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 2.5rem;
    line-height: 36px;
      font-weight: 500;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/

.about {
  padding-top: 120px;
  height: auto;
  padding-bottom: 10%;
  background-color: #170b17;
}

#about .btn-get-started {
    font-family: 'MyCustomFont', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 28px;
    transition: 0.5s;
    color: #ffffff;
    background: #ce1919;
    border-style: solid; 
    border-width: 1px; 
    box-sizing: border-box;
    border-radius: 5px;
    border-top-color: #ffffff; 
    border-left-color: #ffffff; 
    border-right-color: #000000;
    border-bottom-color: #000000; 
    margin-right: 30px;
    margin-bottom: 30px;
}

#about .btn-get-started:hover {
  background: #ff8c00;
  color: #ffffff;
}

.about h1 {
  font-size: 2rem;
}

.about p {
  line-height: 30px;
  font-size: medium;
}

.about-img img {
  width: 450px!important;
  height: 450px!important;
}

@media (max-width: 991px) {

  .about-img img {
    text-align: center;
      padding-bottom: 10px;
      width: 350px!important;
      height: 350px!important;
  }
}

.join-us {
  background-color: #d59c65;
}

#join-us .btn-get-started {
   font-family: 'MyCustomFont', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 28px;
    transition: 0.5s;
    color: #ffffff;
    background: #ce1919;
    border-style: solid; 
    border-width: 1px; 
    box-sizing: border-box;
    border-radius: 5px;
    border-top-color: #ffffff; 
    border-left-color: #ffffff; 
    border-right-color: #000000; 
    border-bottom-color: #000000; 
    margin-right: 30px;
    margin-bottom: 30px;
}


#join-us .btn-get-started:hover {
  background: #ff8c00;
  color: #ffffff;
}

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

@media (max-width: 768px) {
    .img-fluid {
        width: 300px; 
    }
}

/*--------------------------------------------------------------
# tokenomics
--------------------------------------------------------------*/
.tokenomics .icon-box {
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 0 0 40px 0;
    background: #011122;
    box-shadow: 0 10px 29px 0 rgb(255 255 255 / 10%);
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    text-align: center;
    border-bottom: 3px solid #ff8c00;
    color: #939393;
}

.tokenomics h3 {
  font-weight: 400;
  font-size: 2rem;
}

.tokenomics .icon-box:hover {
  transform: translateY(-5px);
  border-color: #fff;
}

.tokenomics .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
  color: #ff8c00;
}

.tokenomics .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 30px;
    color: #ffffff;
}

.tokenomics .description {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 0;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  
  padding: 30px 0 30px 0;
  color: #ffffff;
  font-size: 14px;
  background: #000;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #000;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ffffff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ff8c00;
}

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

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ff8c00;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #c14ed4;
  color: #fff;
  text-decoration: none;
}

#footer .copyright {
  text-align: center!important;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #ffffff;
}

#footer .credits a {
  color: #ff8c00;
}

@media (max-width: 575px) {
  #footer .copyright, #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
    padding: 3px 0;
  }
}

@media (min-width: 992px){
.ptt {
    padding-top: 140px !important;
}
}   

.blob {


	box-shadow: 0 0 0 0 #c14ed4;
	transform: scale(1);
	animation: pulse 2s infinite;
}


@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 #c14ed4;
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

.token_CA p{
    color: #FFF;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    text-transform: capitalize;
    display: flex;
    cursor: pointer;

}

@media (max-width: 767px) {
    .token_CA p {
        font-size: 13px!important; 
    }
}


.copy-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ff8c00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 9999;
    display: none;
}


.join-journey {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.join-journey img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover!important;
}

.video-fluid {
    max-width: 100%;
    height: auto;
    padding-top: 30px;
}

div.scrolling-limit {
    width: 100%;
    height: 45px;
    background-color: #cead64;
    font-size:32px;
    color:#ffffff;
    font-weight:600;
    overflow: hidden;
    white-space: nowrap;
}

div.scrolling {
    position: relative;
    -webkit-animation: scroll 50s infinite linear;
    -moz-animation: scroll 50s infinite linear;
    -o-animation: scroll 50s infinite linear;
    animation: scroll 50s infinite linear;
}

@keyframes scroll {
    0% {
        left: 0px;
    }

    100% {
        left: -6375px;
    }
}

@-webkit-keyframes scroll {
    0% {
        left: 0px;
    }

    100% {
        left: -6375px;
    }
}


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

@media (min-width: 576px) {
    .hero-img {
        width: 400px;
        height: auto;
    }
}

@media (min-width: 768px) {
    .hero-img {
        width: 450px;
        height: auto;
    }
}

@media (min-width: 992px) {
    .hero-img {
        width: 500px;
        height: 500px;
    }
}

.white-shadow {
    box-shadow: 0 0 10px 5px white; /* Adjust the values as needed */
}

/* Circle style for only X and Telegram icons */
.nav-menu ul li.c1a a.c1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    padding: 0;
    margin-left: 5px;
    margin-right: 0;
}

/* Optional: hover effect */
.nav-menu ul li.c1a a.c1:hover {
    background-color: white;
}

.nav-menu ul li.c1a a.c1:hover svg path {
    fill: #000; /* icon turns black on hover */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}