@import url("https://fonts.googleapis.com/css2?family=Boogaloo&display=swap");

@font-face {
  font-family: "Spell of Asia";
  src: url("fonts/SpellofAsia.woff2") format("woff2"),
    url("fonts/SpellofAsia.woff") format("woff"),
    url("fonts/SpellofAsia.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Boogaloo";
  font-size: 28px;
  font-weight: 400;
  background: #c73434;
  background-image: url(img/body-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  color: #fff;
}

a,
button {
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.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 {
  position: fixed;
  right: 25px;
  bottom: 30px;
  display: none;
  transition: 0.2s all ease;
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  z-index: 99999999999999999999999;
}

/*==== nev area start===== */
header {
  padding: 20px 30px;
  position: absolute;
  left: 0px;
  right: 0px;
  text-align: center;
  margin: auto;
  z-index: 999999999999;
  top: 15px;
}

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 {
  display: flex;
  align-items: center;
  gap: 0 5px;
}

.menu-item ul li a {
  color: #fff;
  text-align: center;
  font-family: Boogaloo;
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 10px 10px;
}

.menu-item ul li a:hover {
  color: #ffff01 !important;
}

.active a {
  color: #ffff01 !important;
}

.menu-icon ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-icon ul li a {
  transition: 0.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;
}
.menu-bar a i {
  display: block;
}
.menu-btn ul {
  display: flex;
  align-items: center;
  gap: 0 10px;
}
.menu-btn a {
  transition: 0.3s;
}
.menu-btn a:hover {
}

.menu-social-icon {
}
.menu-social-icon ul {
  display: flex;
  align-items: center;
  gap: 0 20px;
}
.menu-social-icon ul li a img {
  transition: 0.3s;
}
.menu-social-icon ul li a img:hover {
  transform: scale(1.2);
}

/*==== nev area end===== */

/*==== sticky-nev start=== */

.fixed-menu {
  padding: 10px 23px;
  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(3, 3, 3, 0.2) 0px 8px 24px;

  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
  background-color: #fe8403;
  z-index: 999999999999999999999 !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: #fe8403;
  border-bottom: 2px solid #000;
  padding: 10px;
}

.offcanvas-header h5 img {
  max-width: 50px;
}

.offcanvas-body {
  background-image: url(img/main.png);
  background-repeat: no-repeat;
  background-size: cover;
  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: 250px;
  z-index: 11111111111111;
}

.mobile-menu-item ul li a {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  padding: 15px 20px;
  display: block;
  transition: 0.2s;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}

.mobile-menu-item ul li a:hover {
  background: #fe8403;
  box-shadow: 2px 2px 0 0 #1c1e20;
}

.m-active {
  background: #fe8403;
  box-shadow: 2px 2px 0 0 #1c1e20;
}

.mobile-menu-item ul li a i {
  font-size: 20px;
  margin-right: 15px;
}

/* ====offcanvas manu end===== */

/* =====hero-area-start===== */

.hero-area {
  background-image: url(img/hero-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: relative;
  z-index: 99999;
  height: 944px;
  padding-top: 140px;

  overflow: hidden;
}
.hero-container {
  max-width: 1600px !important;
  margin: auto;
  height: 1000px;
  position: relative;
}
.hero-tx-1 h1 {
  color: #ffff01;
  text-align: center;
  text-shadow: -16.315px 12.95px 0 #620000;
  -webkit-text-stroke-width: 3.71px;
  -webkit-text-stroke-color: #000;
  font-family: "Spell of Asia";
  font-size: 320.836px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 314.836px */
}

.hero-tx2 {
  margin-top: 120px;
  text-align: right;
}

.hero-img {
  text-align: center;
  margin-top: -280px;
  margin-left: 204px;
  position: relative;
  z-index: 9999999999;
}

.hero-social-icon-right ul {
  display: flex;
  align-items: center;
  gap: 0 7px;
}

.hero-social-icon-right ul li a img {
  transition: 0.2s;
}
.hero-social-icon-right ul li a img:hover {
  transform: scale(1.1);
}
.hero-social-icon-right {
  /* margin-top: 500px; */
  position: absolute;
  right: 80px;
  bottom: 430px;
  z-index: 999999999999;
}

.hero-social-icon-left ul {
  display: flex;
  align-items: center;
  gap: 0 7px;
}

.hero-social-icon-left ul li a img {
  transition: 0.2s;
}
.hero-social-icon-left ul li a img:hover {
  transform: scale(1.1);
}

main {
  background-image: url(img/main.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.ab-ts-main {
  background-image: url(img/ab.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 0px 0;
  padding-top: 190px;
}

/* about area start */

.about-area {
  padding: 60px 0 60px 0;
  position: relative;
}

.ab-light-left {
  position: absolute;
  left: -160px;
  top: -100px;
}
.ab-light-right {
  position: absolute;
  right: -160px;
  top: -65px;
}

.bl1 {
  position: absolute;
  left: -20px;
  top: 50px;
}
.bl2 {
  position: absolute;
  right: -20px;
  bottom: 0px;
}

.a-1 {
  position: absolute;
  top: -21px;
  left: 20px;
}
.a-2 {
  position: absolute;
  top: 200px;
  right: 0px;
}
.a-3 {
  position: absolute;
  bottom: 45%;
  left: 0px;
}
.a-4 {
  position: absolute;
  bottom: 3px;
  right: -36px;
}

.about-wrapper {
  width: 422px;
  height: 719px;
  max-width: auto;
  margin: auto;
  background-color: #ffff01;
  padding: 50px 30px;
  border-radius: 300px;
  border: 5px solid #000;
  position: relative;
  box-shadow: 20px 20px #000;
}
/* .about-wrapper::before{
    content: "";
    width: 100%;
    height: 100%;
    background-color: red;
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
        border-radius:300px;
} */
.about-title {
  text-align: center;
}
.about-title h2 {
  color: #000;
  -webkit-text-stroke-width: 1.26px;
  -webkit-text-stroke-color: #000;
  font-family: "Spell of Asia";
  font-size: 110px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 110px */
  text-transform: capitalize;
  margin-top: 30px;
  margin-bottom: 40px;
}
.about-title p {
  color: #000;
  text-align: center;
  font-family: Boogaloo;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.about-1 {
  position: absolute;
  bottom: -50px;
  left: -20px;
}
.about-2 {
  position: absolute;
  bottom: -50px;
  right: 108px;
}

/* /* ====howtobuy-area========= */

.tokenomics-area {
  background-image: url(img/toko-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/* ============tokenomics-area=========== */

.tokenomics-area {
  padding: 50px 0 60px;

  position: relative;
}
.t1 {
  position: absolute;
  left: 0px;
  top: 100px;
}
.t2 {
  position: absolute;
  right: -35px;
  top: -6px;
}
.tk-title h2 {
  color: #fff;
  -webkit-text-stroke-width: 1.26px;
  -webkit-text-stroke-color: #000;
  font-family: "Spell of Asia";
  font-size: 140px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 140px */
  text-align: center;
  margin-bottom: 30px;
  z-index: 99999999;
  position: relative;
}

.tk-box-inner {
  margin-top: -200px;
}
.tk-box-inner ul {
  display: flex;
  justify-content: space-around;
}

.tk-box1 {
  background-image: url(img/tx.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  padding: 50px 0 50px 55px;
}
.tk-box1 h2 {
  color: #ff0d42;
  text-align: center;
  font-family: "Midorima - Personal Use";
  font-size: 106.027px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 106.027px */
  margin-bottom: 20px;
}

.tk-box2 {
  margin-top: 90px;
  margin-left: 35px;
  background-image: url(img/tx2.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  padding: 100px 10px;
}
.tk-box2 a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  color: #ff0d42;

  font-family: "Midorima - Personal Use";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 35px */
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin-top: 33px;
}
.tk-box2 a:hover {
}

.Token_Address {
  background-image: url(img/token.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  max-width: 900px;
  height: 290px;
  margin: 90px auto;
  padding: 40px 10px 27px;
  position: relative;
  z-index: 999999;
}

.Token_Address p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0px;
  background-image: url(img/p.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  padding: 20px 24px;
  margin-top: 35px;
  transform: scale(1.05);
}

.Token_Address small {
  color: #000;
  text-align: center;
  font-family: Boogaloo;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 43px */
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px;
}

.Token_Address span img {
  margin-left: 8px;
  transform: rotate(7deg);
  object-fit: cover;
  cursor: pointer !important;
  transition: 0.3s;
}
.Token_Address span img:hover {
  transform: rotate(0deg);
}
.copy-notification {
  color: #000;
  border-radius: 140px;
  background: #d9ff00;
  padding: 0px 10px;
  border-radius: 30px;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 150px;
  margin-top: -30px;
  margin-left: -85px;
  display: none;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  border-radius: 10px;
  border: 3px solid #000;
  z-index: 99999999;
  font-size: 25px;
}

.tk-left-item {
  margin-top: -100px;
  margin-right: -74px;
  position: relative;
  z-index: 99999999;
}

.t5 {
  position: absolute;
  right: 0;
  bottom: 500px;
}

/* ds-area */

.ds-area {
  padding: 0px 0 70px;

  position: relative;
}

.ds__1 {
  position: absolute;
  top: -400px;
}
.ds__2 {
  position: absolute;
  bottom: 100px;
}
.ds__3 {
  position: absolute;

  right: 0px;
  top: 100px;
}
.ds__4 {
  position: absolute;
  right: 100px;
  bottom: 80px;
}

main {
  overflow: hidden;
}

.ds-wrapper {
  max-width: 900px;
  margin: auto;
  position: relative;
  background-image: url(img/ds-bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 100%;
  height: 660px;
  padding: 50px 0px;
}

.ds-wrapper::before {
  content: "";
  width: 5px;
  height: 1290px;
  background-color: #fbb924;
  display: block;
  position: absolute;
  margin: auto;
  left: -24px;
  right: 0px;
  top: -195%;
}

.ds-inner-wrapper {
  padding: 30px 48px;
  background-color: #d9ff00;
  border-radius: 30px;
  margin-top: 40px;
  transform: scale(1);
}
.ds-wrapper h2 {
  color: #000;
  text-align: center;
  -webkit-text-stroke-width: 1.26px;
  -webkit-text-stroke-color: #000;
  font-family: "Spell of Asia";
  font-size: 140px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 140px */
  text-align: center;
  margin-bottom: 25px;
}
.ds-wrapper p {
  color: #000;
  text-align: center;
  font-family: Boogaloo;
  font-size: 45px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 43px */
  margin-bottom: 20px;
}
.ds-wrapper p span {
  font-weight: 700;
}

.ft ul {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin-top: 30px;
  position: relative;
  z-index: 99999;
  justify-content: center;
  margin-top: 50px;
}
.ft ul li a img {
  transition: 0.3s;
}
.ft ul li a img:hover {
  transform: scale(1.1);
}

footer {
  background-color: #fff;
  padding: 10px 0;
}

.coppyright-text p {
  color: #000;
  font-family: "Spell of Asia";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 26px */
  text-align: center;
}

html,
body {
  scroll-behavior: smooth;
}

/* end all the css  */

/* ========== */
