* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: font1;
  src: url(/assets/font/MamaBear.otf);
}

@font-face {
  font-family: Stopbuck;
  src: url(/assets/font/Stopbuck.ttf);
}

@font-face {
  font-family: coconutz;
  src: url(/assets/font/coconutz.otf);
}

h2,
h1 {
  font-family: Stopbuck;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: "Urbanist", sans-serif;
  font-weight: 400;
  color: #fff;
  background-color: #0D062E;
  overflow-x: hidden;
  position: relative;
}

p {
  font-size: 1.5vw;
  font-family: coconutz;
}

a img {
  transition: all 0.3s ease-in-out;
}

a img:hover {
  scale: 1.1;
}



.header,
.about_3,
.toknomics,
.howtobuy,
.roadmap,
footer,
.faqp,
.cta {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;

}

.header {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
}

.header {
  background-image: url('/assets/images/header.png');
  height: 70vw;
  padding: 0vw 5vw 5vw 5vw;
  position: relative;
}


nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3vw;
  max-width: 80%;
  padding: 0vw 0vw 0 3vw;
  border-radius: 8px;
  border: 4px solid #201A17;
  font-family: font1;
  color: #201A17;
  margin: auto;
  background-color: #FFF6E5;
  position: absolute;
  top: 4vw;
  width: 100%;
  z-index: 99;
}


nav a {
  font-size: 1.5vw;
  transition: all 0.3s ease-in-out;
}

nav a:hover {
  color: #8601FA;
}

nav img {
  width: 100%;
  max-width: 4vw;
  transform: scale(1.6);
}

.links {
  display: flex;
  align-items: center;
  gap: 0.4vw;
  position: relative;
  z-index: 99;
}

.links a img {
  width: 100%;
  max-width: 8vw;

}

.links a {
  transition: all 0.3s ease-in-out;
}

.links a:hover {
  transform: scale(1.1);
}


nav .social {
  display: flex;
  align-items: center;
  gap: 2vw;
}

nav .social img {
  width: 3vw;
}

.social button {
  display: none;
}

/* sidebar  */

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(13, 6, 46, 1);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: font1;
  gap: 20px;

  /* THIS MUST BE HERE */
  transform: translateY(-100%);
  opacity: 0;
  z-index: 99999;
  border-bottom-left-radius: 10vw;
  border-bottom-right-radius: 10vw;
}


.mobile-sidebar a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.close-btn {
  background: none;
  border: 0;
  color: white;
  font-size: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}



/* sidebar  */

@keyframes zoomIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.header .heading {
  width: 45vw;
  position: absolute;
  top: 11vw;
  left: 50%;
  transform: translateX(-50%);
  animation: zoomIn 1s ease-out forwards;
  transform-origin: center;
}

@keyframes zoomIn {
  0% {
    transform: translateX(-50%) scale(0);
    opacity: 0;
  }

  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}


.header .buy-now {
  width: 15vw;
  position: absolute;
  bottom: 5vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}


/* First animation: comes from bottom with a bounce */
@keyframes bounceIn {
  0% {
    transform: translateY(80px);
    opacity: 0;
  }

  60% {
    transform: translateY(-15px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
  }
}

/* After appearing: infinite soft bounce */
@keyframes bounceLoop {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}


.bottom_c {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  bottom: -3vw;
  left: 0;
  animation: bounceIn 0.8s ease-out forwards, bounceLoop 2s ease-in-out 0.8s infinite;

}

.bottom_c img {
  width: 25vw;
}


.ca_section {
  background-color: #8B20D5;
  padding: 1.5vw 3vw;
  display: flex;
  align-items: center;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  justify-content: space-between;
  color: #fff;
  gap: 5vw;
  flex-wrap: wrap;
  margin-top: -3vw;
  position: relative;
  z-index: 99;
  font-family: Stopbuck;
  overflow: hidden;

}

.ca_section .social {
  display: flex;
  align-items: center;
  gap: 2vw;
}

.ca_section .social h5 {
  font-size: 2vw;
  color: #fff;
}

.ca_section .ca_links {
  display: flex;
  align-items: center;
  gap: 1vw
}

.ca_section .ca_links img {
  width: 100%;
  max-width: 4vw;
}

.ca_section .ca {
  background-color: #190F0694;
  border-radius: 1vw;
  padding: 0.8vw 1vw 0.8vw 3vw;
  display: flex;
  align-items: center;
  gap: 2vw;

}

.ca_section .ca h5 {
  font-size: 1.5vw;

}

.ca_section .ca span {
  background-color: #fff;
  padding: 0.5vw;
  border-radius: 0.5vw;
  border: 1px solid #000;
  font-family: Stopbuck;
  color: #000;
  font-size: 1.5vw;

}


/*================================ about  */

.about {
  padding: 18vw 10vw 20vw 10vw;
  margin-top: -1vw;
  color: #fff;
  position: relative;
}

.about .right {
  padding-left: 10vw;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
}

.about .left {
  position: relative;
}

.about .left .main-img {
  width: 100%;
  position: relative;
  z-index: 20;
}

.about .img-1,
.about .img-2,
.about .img-3,
.about .img-4,
.about .img-5 {
  position: absolute;
}

@keyframes slideLeftRight {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(20px);
    /* move right */
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slideRightLeft {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-20px);
    /* move left */
  }

  100% {
    transform: translateX(0);
  }
}

.about .img-1 {
  position: absolute;
  left: 0;
  animation: slideLeftRight 3s ease-in-out infinite;
  will-change: transform;
}

.about .img-2 {
  position: absolute;
  right: 0;
  animation: slideRightLeft 3s ease-in-out infinite;
  will-change: transform;
}

@keyframes slideTopBottom {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
    /* moves down */
  }
}

@keyframes slideBottomTop {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
    /* moves up */
  }
}

.about .img-3 {
  position: absolute;
  right: -12.5vw;
  bottom: 1vw;
  animation: slideTopBottom 4s ease-in-out infinite;
  will-change: transform;
  width: 13vw;
}

.about .img-4 {
  position: absolute;
  right: -11vw;
  top: 0;
  animation: slideBottomTop 4s ease-in-out infinite;
  will-change: transform;
  width: 13vw;
}

.about .img-5 {
  right: 0vw;
  top: -12.8vw;
  animation: slideRightLeft 3s ease-in-out infinite;
  will-change: transform;
  width: 13vw;
}

.about .right h1 {
  font-size: 4vw;
  font-weight: 800;
  margin-bottom: 1vw;
}

.headline-text .word {
  display: inline-block;
  margin-right: 0.3ch;
}

.about .right p {
  font-size: 1.3vw;
  opacity: 0.8;
}

.about .right .btn img {
  width: 15vw;
  margin-left: -1vw;
}



/* tokenomice  */

.tokenomice {
  position: relative;
  margin-top: -5vw;
}

.tokenomice .mainimg {
  position: relative;
  z-index: 0;
}


.tokenamin {
  position: absolute;
  z-index: 30;
  top: 40%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  padding: 5vw;
}

.tokenamin .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5vw;
}


.tokenamin .inner img {
  width: 20vw;
}


/* roadmap  */
.roadmap {
  margin-top: -10vw;
  position: relative;
  padding: 0 18vw 5vw 18vw;
}

.roadmap h1 {
  font-size: 15vw;
  text-align: center;
  color: #5B1877;

}

.roadmap .Ellipse {
  position: absolute;
  top: -20vw;
  left: 50%;
  transform: translateX(-50%);
}

.roadmap .cloud {
  position: absolute;
  bottom: 10vw;
  left: 50%;
  transform: translateX(-50%);
}


.roadmap .roadmap_img {
  position: absolute;
  top: 2vw;
  left: 37%;
  transform: translateX(-50%);
  width: 25vw;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-20px);
  }

  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}


.roadmap .box {
  background-color: #8601FA;
  border: 4px solid #000;
  padding: 2vw;
  border-radius: 1.5vw;
  color: #000;
  text-align: center;
  box-shadow: 10px 10px 0px 0px rgba(52, 35, 133, 1);
}

.roadmap .box h2 {
  font-size: 6vw;
  color: #F62CFA;
  -webkit-text-stroke: 4px #000;


}

.roadmap .box .inner {
  background-color: #E4CAFF;
  border: 2px solid #000;
  padding: 1vw;
  border-radius: 2vw;
  color: #000;
  text-align: center;

}

.roadmap .arrows {
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate-slight 2s infinite alternate;
  transform-origin: center;
  /* rotate around the center */
}

@keyframes rotate-slight {
  0% {
    transform: translate(-50%, -50%) rotate(-3deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(3deg);
  }
}


/* .OurGallery  */
.OurGallery {
  background-image: linear-gradient(to bottom, #FFDE1A00, #8725BF);
  text-align: center;
}

.OurGallery h2 {
  font-size: 1.5vw;
}

.OurGallery h1 {
  font-size: 6vw;
  font-weight: 800;
  transform: translateY(4vw);
  -webkit-text-stroke: 2px #000;
}

.OurGallery p {
  font-size: 1.3vw;
  font-weight: 200;
  width: 60%;
  margin: auto;
}



.OurGallery .collection {
  display: flex;
  margin-top: 5vw;
  align-items: end;
  position: relative;
  padding: 0 4vw;
}

.OurGallery .collection .img-1 {
  width: 30%;
  height: 30%;
}

.OurGallery .collection .img-2 {
  width: 40%;
}

.OurGallery .collection .img-3 {
  width: 30%;
  height: 30%;
}

.OurGallery .collection .shaps {
  position: absolute;
  width: 100%;
  left: 0;
  top: -3vw;
}

/* faq ========================== */

.faq {
  background-image: url('/assets/images/faq-bg.png');
  height: 110vw;
  padding: 10vw 8vw 8vw 8vw;
  position: relative;
  z-index: 20;
  margin-top: -10vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.faq .faqstar {
  position: absolute;
  animation: blink-fade 1.2s infinite;
}

.leftimg {

  animation: bounce 2s infinite;
}


@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-20px);
  }

  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes blink-fade {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}



.faq h1 {
  font-size: 6vw;
  font-weight: 800;
  -webkit-text-stroke: 2px #000;
  margin-bottom: 5vw;
}

.faq .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.faq .open {
  background-image: linear-gradient(to bottom, #FC50FF, #CB3AF0, #95008F);
  border: 3px solid #000;
  padding: 2vw;
  border-radius: 1.5vw;
  box-shadow: 10px 10px 0px 0px #212529;
}

.faq .close {
  background-color: #0C0039;
  border: 3px solid #FF4AD8;
  padding: 2vw;
  border-radius: 1.5vw;
  box-shadow: 0px 13px 30px 0px rgba(103, 33, 167, 1) inset;
}

.faq .open h2,
.faq .close h2 {
  font-size: 2vw;
}

.faq .open p,
.faq .close p {
  opacity: 80%;
  margin-left: 3vw;
}

.faq-item {
  cursor: pointer;
  overflow: hidden;
}



/* cta ========================= */
.cta {
  background-image: url('/assets/images/cta-bg.png');
  height: 81vw;
  padding: 25vw 5vw 5vw 5vw;
  position: relative;
  margin-top: -40vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cta .heading {
  width: 60vw;
  margin: auto;
}


.cta .buy {
  width: 20vw;
  margin: auto;
  margin-top: -10vw;
}






/* join ========== */

.join {
  position: relative;
}

.join .footerelps {
  position: absolute;
  left: 0;
  top: -30vw;
}

.marquee_1 {
  background-image: linear-gradient(to right, #ED32F7, #A719FF);
  background-size: 300% 100%;
  background-repeat: repeat;
  animation: scrollGradient 10s linear infinite;
  font-size: 2vw;
  font-weight: 600;
  padding-top: 1.5vw;
  padding-bottom: 1.3vw;
  border-top: 4px solid #000;
  border-bottom: 4px solid #000;
  position: relative;
  z-index: 99;
}

@keyframes scrollGradient {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}



.join .btn:hover {
  background-color: #fff;
  color: #000;
}

.join .marquee_2 .slide {
  display: flex;
  align-items: end;
  gap: 0vw;
  margin-top: 5vw;
}

.join p {
  text-align: center;
  padding: 2vw;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.bounce {
  animation: bounce 1s infinite;
  width: 20vw;
}

.bounce-2 {
  animation: bounce 2s infinite;
  width: 20vw;
}

.bounce-3 {
  animation: bounce 3s infinite;
  width: 20vw;
}

.gradient-text {
  color: #fff;
  font-size: 1.5vw;
}

.copyright {
  text-align: center;
}