* {
  box-sizing: border-box !important;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}
/* For Chrome, Safari and Edge */
::-webkit-scrollbar {
  width: 12px; /* width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: #000000; /* background of the scrollbar track */
}

::-webkit-scrollbar-thumb {
  background: #ff0000; /* color of the scrollbar thumb */
  border-radius: 10px; /* roundness of the scrollbar thumb */
}

::-webkit-scrollbar-thumb:hover {
  background: #ee4949; /* color of the scrollbar thumb on hover */
}

body {
  background: #000000;
}
.rocketbody{
  background-image: url("../images/Drocket1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
a {
  text-decoration: none;
  color: white;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flexC {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mainHeading {
  font-size: 50px;
  font-weight: bold;
  text-align: center;
  color: #ff0000;
}
.pText {
  font-size: 20px;
  color: white;
}
.hFont {
  font-family: "Roboto Slab", serif;
  font-weight: 900;
  text-shadow: -1px -1px #929292;
}

.imgWrapper {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-header-container {
  position: fixed;
  left: 0;
  top: 20px;
  width: 100%;
  z-index: 50;
}
.wrapper {
  width: 1200px;
  margin: 0 auto;
  max-width: 100%;
}
.page-header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #0f0f0f;
  /* padding: 20px 20px 5px 20px; */
  padding: 7px 10px 7px 20px;
  border-radius: 100px;
  border: solid 5px #ff0000;
  box-shadow: inset 0px -5px 0px 0px rgba(0, 0, 0, 0.1);
}

.mobile-view {
  display: none !important;
}

.page-header .mobile-view .button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  font-weight: 700;
  height: 45px;
  color: #000;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s linear;
  background-color: #ff9350;
  border: solid 3px #000;
  box-shadow: inset 0px -5px 0px 0px rgba(0, 0, 0, 0.2),
    inset 0px 5px 0px 0px rgba(255, 255, 255, 0.2);
}

.page-header .navigation ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
ol,
ul {
  list-style: none;
}
.page-header .navigation ul a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 700;
  /* height: 45px; */
  color: #ff0000;
  /* color: #000; */
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s linear;
  line-height: 0;
  margin-top: 15px;
}
.page-header .navigation ul li.two {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 10px;
}

.page-header .navigation select {
  width: 80px;
  height: 45px;
  padding: 0 10px;
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  box-shadow: inset 0px -5px 0px 0px rgba(0, 0, 0, 0.2);
  border: solid 3px #000;
  outline: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 45px;
  background: url(/toggle.svg) no-repeat 80% center;
  cursor: pointer;
}
.page-header .navigation ul a.button {
  margin-left: 10px;
  border: solid 3px #000;
  box-shadow: inset 0px -5px 0px 0px rgba(0, 0, 0, 0.2),
    inset 0px 5px 0px 0px rgba(255, 255,  255,  0.2);
}
.logoText {
  max-width: 200px;
  margin-left: 10px;
}
.logoText p {
  font-size: 18px;
  color: #ff0000;
  line-height: 0;
  text-shadow: -0.5px -0.5px #929292!important;
  width: 100%;
}
.logoText h2{
  padding-top: 15px;
  font-size: 30px;
  font-weight: bold;
  color: #ff0000;
  line-height: 0;
}
/* Mobile Menu Burger */
.mobile-menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  margin-right: 10px;
}

.mobile-menu-icon .burger {
  width: 100%;
  height: 5px;
  background-color: #ff0000;
  border-radius: 5px;
  margin-right: 10px;
}
#hero {
  padding-top: 120px;
  position: relative;
  z-index: 2;
}

#about {
  padding-top: 100px;
}
.aboutBox {
  border: 5px solid #ff0000;
  background-color: #0f0f0f;
  border-radius: 50px;
  padding: 20px;
  position: relative;
}
.aboutBox::after {
  content: "";
  width: 200px;
  height: 50px;
  background-color: #ff0000;
  /* border: 5px solid black; */
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
.aboutBox1 {
  /* border: 5px solid #ff0000; */
  /* background-color: #0f0f0f; */
  border-radius: 20px;
  padding: 20px;
  position: relative;
}
.lineImg{
  position: absolute;
  top: -55px;
  left: -55px;
  width: 400px;
}

#howWorks {
  padding-top: 150px;
}
#Unique {
  padding-top: 150px;
}
.token {
  padding: 20px;
  border-radius: 50px;
  border: 5px solid #ff0000;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  /* box-shadow: 7px 7px 0px #ff0000; */
  background-color: #0f0f0f;
}

.token p {
  font-size: 18px;
  font-weight: bold;
  margin-top: auto;
  color: white;
  /* margin-left: 5px; */
}

.tpken ul li {
  font-size: 22px;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  color: white;
  /* line-height: 25px; */
  margin: 20px 0;
}
.dot {
  width: 25px;
  height: 25px;
  background-color: #ff0000;
  box-shadow: 2px 2px 2px #000000;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 3px;
}
#dot1 {
  width: 25px;
  height: 25px;
  background-color: #edcf37;
  box-shadow: 2px 2px 2px #000000;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 3px;
}
#dot2 {
  width: 30px;
  height: 25px;
  background-color: #e35700;
  box-shadow: 2px 2px 2px #000000;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 3px;
}
#dot3 {
  width: 25px;
  height: 25px;
  background-color: #3bcbdb;
  box-shadow: 2px 2px 2px #000000;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 3px;
}
#dot4 {
  width: 25px;
  height: 25px;
  background-color: #2f5f99;
  box-shadow: 2px 2px 2px #000000;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 3px;
}
#dot5 {
  width: 25px;
  height: 25px;
  background-color: #f7eded;
  box-shadow: 2px 2px 2px #000000;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 3px;
}
.dot22 {
  width: 25px;
  height: 25px;
  background-color: #ff0000;
  box-shadow: 2px 2px 2px #000000;
  border-radius: 50%;
  margin-right: 8px;
  margin-top: 3px;
}
#tokenomics {
  padding-top: 150px;
}
.globe {
  position: absolute;
  bottom: 2%;
  left: -15%;
}

/* faqs start  */
#faqs {
  padding-top: 150px;
}
.cardF {
  background: transparent;
  /* color: #333; */
  margin: 2rem auto;
  width: 95%;
  max-width: 1200px;
  min-height: 30rem;
  /* border-radius: 2rem; */
}


.acc-btn2 {
  background-color: #0f0f0f;
  border: 4px solid #ff0000;
  /* box-shadow: 5px 5px 0px #ff0000; */
  margin: 2rem 0;
  border-radius: 25px;
  box-sizing: border-box;
  padding: 1.6rem 2rem;
  color: white;
  font-size: 1.6rem;
  /* width: 100%; */
  
}
.acc-btn {
  width: 100%;
  padding: 1.6rem 2rem;
  font-size: 1.6rem;
  background: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  border-radius: 25px;
  color: white;
  text-align: left;
  font-weight: bold;
  transition: all 0.5s linear;
  font-family: "Coiny", system-ui;
}
.acc-btn:after {
  content: "\27A4";
  color: #ff0000;
  float: right;
  transition: all 0.3s linear;
}
.acc-btn.is-open:after {
  transform: rotate(90deg);
}
.acc-btn:hover,
.acc-btn.is-open {
  color: rgb(255, 255, 255);
/
}

.acc-content {
  max-height: 0;
  color: white;
  font-size: 1.5rem;
  margin: 0 2rem;
  /* padding-left: 1rem; */
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  /* border-bottom: 1px solid #ccc; */
}
.acc-content ul {
  padding-left: 0;
}
.acc-item {
  background-color: #0f0f0f;
  border: 4px solid #ff0000;
  /* box-shadow: 5px 5px 0px #ff0000; */
  margin: 2rem 0;
  border-radius: 25px;
  box-sizing: border-box;
}

/* faqs end  */

.pattern {
  position: fixed;
  top: 25%;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/images/rocket.png"); /* Replace with your pattern image */
  background-repeat: no-repeat;
  pointer-events: none;
  transform: translateY(0%);
  transform: translateX(0%);
  transition: transform 0.1s ease-out;
  z-index: 0; /* Ensure it is above other content */
}
.htop {
  padding-top: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.updown {
  transition: transform 0.5s linear;
}
.updown:hover {
  transform: scale(1.1);
  filter: drop-shadow(5px 5px 5px #ff0000);
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3rem);
  }
  100% {
    transform: translateY(0);
  }
}
.rocketFlying {
  animation: rocketFlying 5s ease-in-out infinite;
}

@keyframes rocketFlying {
  0% {
    transform: translateY(0); /* Starting from center */
  }
  25% {
    transform: translateY(-10rem); /* Moves up */
  }
  50% {
    transform: translateY(0); /* Back to center */
  }
  75% {
    transform: translateY(10rem); /* Moves down */
  }
  100% {
    transform: translateY(0); /* Back to center */
  }
}

.buybtn {
  padding: 10px 20px;
  background-color: #ff0000;
  border-radius: 50px;
  border: solid 3px #000;
  box-shadow: inset 0px -5px 0px 0px rgba(0, 0, 0, 0.2),
    inset 0px 5px 0px 0px rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 20px;
  font-weight: bold;
  margin: 0 5px;
}



@media screen and (max-width: 768px) {
  .mainHeading {
    font-size: 40px;
  }
  .dot22 {
    width: 30px;
    height: 25px;
    background-color: #ff0000;
    box-shadow: 2px 2px 2px #000000;
    border-radius: 50%;
    margin-right: 8px;
    margin-top: 3px;
  }
  .aboutBox {
    padding: 15px 20px;
  }
  .tpken ul {
    padding-left: 0;
  }
  .mblHero {
    font-size: 50px !important;
    z-index: 1 !important;
  }
  .mblHero1 {
    font-size: 25px!important;
  }
  .acc-btn {
    font-size: 1.3rem;
  }
  .acc-content {
    font-size: 1.2rem;
  }

  .navigation {
    display: none; /* Hide the navigation */
  }

  .mobile-menu-icon {
    display: flex; /* Show the burger menu */
  }

  .show-nav .navigation {
    display: block;
    position: absolute;
    top: 90px;
    left: 0;
    width: 80%;
    right: 0;
    background-color: #0f0f0f;
    z-index: 999;
    border: 4px solid #ff0000;
    border-radius: 0 0 50px 50px;
    justify-content: center;
    margin: 0 auto;
    /* text-align: center; */
  }

  .show-nav .navigation ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .show-nav .navigation ul li {
    margin: 10px 0;
  }
  
  .dtext{
    font-size: 16px;
  }
  .rocketbody{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/mblf.png");
    background-size: cover;
    /* background-attachment: fixed; */
    background-repeat: no-repeat;
    background-position: center;
  }
  .mblW{
    text-shadow: 1px 1px  #000000;
  }
  
}
