* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.font-google {
  font-family: "Ojuju", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: bold;
}
.navbar {
  padding: 0 !important;
}
.navbar-section {
  background-image: url("navbar-bg.png");
  height: 6rem;
  background-size: cover;
  font-size: 1.3rem;
  position: sticky;
  top: 0;
  z-index: 99;
}
.navbar-brand {
  border-right: 0.5rem solid black;
  display: flex;
  align-items: center;
}
.navbar-brand img {
  width: 4.5rem;
}
.navbar-brand span {
  font-size: 2rem;
  padding-right: 1rem;
}
.navbar-nav .nav-link {
  color: #000 !important;
}
.navbar-nav .nav-item {
  display: flex;
  position: relative;
}
.navbar-nav {
  padding-right: 2rem;
}
.buy-now {
  flex-shrink: 0;
  height: 3.5rem;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.buy-now::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12rem;
  aspect-ratio: 257 / 115;
  background-image: url("btn-black104.svg");
  background-position: center;
  background-size: cover;
  transition: transform 0.2s ease 0s;
}
.buy-now span {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  transition: scale 0.2s ease 0s;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    gap: 1rem !important;
  }
}
.hero {
  position: relative;
  z-index: 1;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero__bg img:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg img {
  position: absolute;
  z-index: 1;
}
.loaded .hero__bg img:nth-child(2) {
  -webkit-animation: car 0.6s ease 0.2s forwards;
  animation: car 0.6s ease 0.2s forwards;
}
@keyframes car {
  0% {
    -webkit-transform: translate(100%, -15%);
    transform: translate(100%, -15%);
  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.hero__bg img:nth-child(2) {
  z-index: 3;
  bottom: -10%;
  left: -38%;
  width: 60%;
  object-fit: contain;
  object-position: bottom;
  transform: translate(150%, -10%);
  /* transition: all 1s ease; */
}

.hero__title span {
  line-height: 8rem;
  text-transform: uppercase;
}
.hero__container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.hero__title {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}
.loaded .hero__title span:nth-child(1) {
  animation: title-anim 0.45s ease 0.6s forwards;
}
@keyframes title-anim {
  0% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes title-animation {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.loaded .hero__title span:nth-child(2) {
  animation: title-animation 0.45s ease 0.6s forwards;
}
.hero__title span:nth-child(1) {
  align-self: flex-start;
  font-size: 10rem;
  color: #9443f8;
  z-index: 6;
  font-weight: 900;
}
.hero__title span:nth-child(2) {
  align-self: flex-start;
  font-size: 12rem;
  color: #9443f8;
  z-index: 6;
  font-weight: 900;
  line-height: 11rem;
}
.loaded .hero__content {
  animation: opacity 0.45s ease 1s forwards;
}

.hero__content {
  position: relative;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
}
.banner-text {
  font-weight: 700;
  text-transform: uppercase;
  font-size: larger;
  margin: 10px;
}
.banner-text .banner-a-text {
  text-decoration: none;
  color: #6433f6ca;
  cursor: pointer;
  background-color: #ffffff;
  padding: 8px 10px;
  border-radius: 10px;
  z-index: 2;
}
.banner-a-text img {
  margin-top: -6px;
}
.hero__buttons {
  position: relative;
  aspect-ratio: 484 / 139;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__buttons::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url("btn-black104.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.hero__button:nth-child(1) {
  width: 26%;
}

.hero__button {
  position: relative;
  z-index: 2;
  padding: 0.3125rem;
  transition: -webkit-transform 0.2s ease 0s;
  transition: transform 0.2s ease 0s;
  transition: transform 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
}
.hero__button:nth-child(1) img {
  width: 100%;
}
.hero__button:nth-child(2) {
  width: 31%;
}
.about {
  position: relative;
  z-index: 2;
}
.about-buy-now-block {
  display: flex;
  gap: 5rem;
  align-items: center;
  justify-content: space-between;
}
.about-plain-bg {
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 6rem;
}
.about-plain-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 40rem;
}
.about__image {
  position: relative;
  z-index: 1;
}

.about__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 47rem;
  transform: translateY(-7%);
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}

.content-about {
  position: relative;
}
.heading-aboutBg {
  position: relative;
  z-index: 3;
}
.aboutBg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 47rem;
  transform: translate(-50%, -50%);
}
.aboutBg img {
  object-position: left top;
  object-fit: cover;
}
.aboutBg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.heading-about-content {
  padding-left: 6.25rem;
}
.heading-about-content {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10%;
}
@media (min-width: 101.875em) {
  .heading-about {
    margin-bottom: 1.875rem;
  }
}
.bottom-about {
  background-color: #fff;
}

.about-text-buy {
  position: relative;
  z-index: 4;
  background-color: #fff;
}
.bottom-about::before {
  content: "";
  position: absolute;
  top: -0.7rem;
  left: 0;
  width: 100%;
  height: 0.8rem;
  background-image: url("bottom-1.png");
  background-position: top;
}
.bottom-about::after {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0;
  width: 100%;
  height: 1.5rem;
  background-image: url("bottom-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.about-token-buy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}
.bottom-about__social {
  display: flex;
  /* flex: 1 1 34%; */
  flex-wrap: wrap;
  margin: 0 13rem;
  gap: 6rem;
  justify-content: center;
}
.bottom-about__social a {
  color: #000;
}
.social-links-about {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 12.5%;
}
.social-links-about img {
  transition: scale 0.2s ease 0s;
  max-width: 45%;
}
.about-token-copy {
  flex: 1 1 30%;
  display: flex;
  align-items: center;
  -webkit-column-gap: 0.625rem;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
  justify-content: center;
}
.about-token-copy button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.buy-now--big img {
  width: 10rem;
}
.heading-about span {
  font-size: 4rem;
  font-weight: 900;
  color: #000000;
}
.heading-about-content p {
  font-size: 1.5rem;
  color: #000000;
  font-weight: 600;
}

.tokenMeme-section.landWolf-img img:nth-child(1) {
  display: block;
}

.tokenMeme-section.landWolf-img img:nth-child(2) {
  display: none;
}
.tokenMeme-section img {
  width: 100%;
  /* height: 100%;
  top: -3rem; */
  top: -3rem;
  height: 43rem;
  position: absolute;
}
.line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  width: 100rem;
  height: 100%;
  background-image: url("bg-how-to-buy-106.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.how-to-buy-animation {
  position: relative;
  z-index: 6;
  margin-top: -6rem;
  overflow: hidden;
}
.how-line-body-bg {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  /* -webkit-transform: rotate(-1.5deg); */
  transform: rotate(-1.5deg);
  height: clamp(6.25rem, 4.0209923664rem + 11.1450381679vw, 15.375rem);
}
.how-line-body-Indivi-text span {
  color: #ffffff;
  font-style: normal;
  font-weight: 500;
  line-height: 75.702%;
  text-transform: uppercase;
  text-wrap: nowrap;
}
.how-line-body-Indivi-text span {
  font-size: clamp(2rem, 1.0687022901rem + 4.6564885496vw, 5.8125rem);
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
  line-height: 75.702%;
  text-transform: uppercase;
  text-wrap: nowrap;
}
.how-line-body-text {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  -webkit-column-gap: 5em;
  -moz-column-gap: 5em;
  column-gap: 5em;
  padding-left: 5em;
  -webkit-animation: line 25s linear infinite;
  animation: line 25s linear infinite;
}
.how-line-body-Indivi-text:has(img) {
  aspect-ratio: 1;
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 20px;
}
@media (min-width: 61.99875em) {
  .how__body {
    margin-top: -5rem;
  }
}
.how__body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@keyframes line {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.how__content {
  padding-right: 5%;
  padding-top: clamp(6.25rem, 0.4195793235rem + 9.4040939156vw, 10rem);
}
.how__content ul {
  display: flex;
  row-gap: clamp(1.25rem, -0.6934735588rem + 3.1346979719vw, 2.5rem);

  flex-direction: column;
}
.image-how-to-buy-bg {
  position: relative;
  overflow-x: hidden;
  margin-top: -4rem;
}
@media (min-width: 61.99875em) {
  .image-how-to-buy-bg img {
    -o-object-position: left;
    object-position: left;
  }
}

.image-how-to-buy-bg img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.how-to-buy-content ul li {
  list-style: none;
}
.how-to-buy-content ul li span {
  background-color: #000;
  padding: 15px;
  border-radius: 50%;
  color: #fff;
}
.how-to-buy-content {
  width: 90rem;
}
.how-to-buy-flex {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.how-to-buy-flex h3 {
  font-size: 2.4rem;
  font-weight: 800;
}
.how-to-buy-p {
  padding-top: 0.5rem;
  font-size: 1.3rem;
  font-weight: 600;
}
.how-to-buy-body {
  display: flex;
}
.tokenomics {
  z-index: 3;
  position: relative;
}
.toke-top {
  position: relative;
  width: 100%;
}
.toke-nomics-bg {
  position: absolute;
  z-index: 1;
  top: 45%;
  left: 0%;
  width: 100%;
  aspect-ratio: 2017 / 305;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.toke-nomics-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.toke-nomics-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.toke-nomics-title {
  font-weight: 700;
  color: #fff;

  padding-left: clamp(
    0.0000000625rem,
    -0.6106869451rem + 3.0534350382vw,
    2.5rem
  );

  text-transform: uppercase;
  font-size: clamp(2rem, 0.8091603053rem + 5.9541984733vw, 6.875rem);
}
.main-tokenomics {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main-tokenomics._watcher-view .main-toke-top {
  -webkit-animation: opacity 0.3s ease 0.2s forwards;
  animation: opacity 0.3s ease 0.2s forwards;
}
.updated-div {
  font-size: 1.4rem;
}
.main-toke-top {
  align-self: flex-end;
  padding: 4% 10%;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: 75.702%;
  text-transform: uppercase;
  background-image: url("04.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: translateX(2%) rotate(-1.138deg);
  transform: translateX(2%) rotate(-1.138deg);
  opacity: 0;
  visibility: hidden;
  margin-top: -4rem;
  margin-right: 1rem;
  font-size: clamp(3.625rem, -0.5838761557rem + 6.7886467964vw, 7.5625rem);
}
@keyframes opacity {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.main-tokenomics._watcher-view .tokenomics-section-I {
  -webkit-animation: opacity 0.3s ease 0.4s forwards;
  animation: opacity 0.3s ease 0.4s forwards;
}

.tokenomics-section-I {
  padding: 0 5%;
  display: flex;
  align-items: flex-end;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  /* margin-top: clamp(-5rem, 0.1723023211rem + -4.3102519342vw, -2.5rem); */
  margin-top: -3rem;
}

.tokenomics-section-I span:nth-child(1) {
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transform: rotate(-1.54deg);
  transform: rotate(-1.54deg);
  font-size: 1.4rem;
}
.tokenomics-section-I span {
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transform: rotate(-1.138deg);
  transform: rotate(-1.138deg);
  /* font-size: clamp(3rem, 0.8621581431rem + 3.4482015474vw, 5rem); */
  font-size: 1.4rem;
}
.tokenomics-section-IIMain {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-end;
}
.tokenomics-time-section {
  position: relative;
  flex: 0 0 32%;
  aspect-ratio: 612 / 147;
}
.tokenomics-time-bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.tokenomics-time-bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.tokenomics-time-bg img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.tokenomics-time {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 25%;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
}

.tokenomics-time span:nth-child(1) {
  -webkit-transform: rotate(-2.736deg);
  transform: rotate(-2.736deg);
  font-size: clamp(2.75rem, 1.3470412814rem + 2.2628822655vw, 4.0625rem);
}

.tokenomics-time span:nth-child(2) {
  -webkit-transform: translate(0, 25%) rotate(-2.736deg);
  transform: translate(0, 25%) rotate(-2.736deg);
  font-size: clamp(1.75rem, 1.0151168617rem + 1.1853192819vw, 2.4375rem);
}

.buy-sell-tokenomics-section {
  flex: 0 0 71%;
  position: relative;
  z-index: 2;
  aspect-ratio: 1434 / 259;
  -webkit-transform: translateX(-7%);
  transform: translateX(-7%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.buy-sell-tokenomics-bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.buy-sell-tokenomics-bg img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-left: 1rem;
}
.buy-sell-tokenomics {
  font-size: clamp(3rem, 0.8621581431rem + 3.4482015474vw, 5rem);
  position: relative;
  z-index: 2;
  padding: 5%;
  color: #ffffff;
  font-style: normal;
  font-weight: 600;
  line-height: 75.702%;
  text-transform: uppercase;
  -webkit-transform: rotate(-2.26deg);
  transform: rotate(-2.26deg);
}
.buy-sell-tokenomics::after {
  content: "";
  position: relative;
  aspect-ratio: 98 / 56;
  background-image: url("percent.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: rotate(2.26deg);
  transform: rotate(2.26deg);
  margin-left: 0.375rem;
}
.tokenMeme-section.tokenWolf-img {
  margin-top: -4.0625rem;
}

.tokenMeme-section {
  position: relative;
  width: 100%;
  aspect-ratio: 2400 / 1000;
  overflow: hidden;
}
.tokenMeme-section.tokenWolf-img img:nth-child(1) {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 135%;
  -o-object-fit: cover;
  object-fit: cover;
}
.tokenMeme-section.tokenWolf-img img:nth-child(2) {
  position: absolute;
  bottom: -4%;
  top: -3rem;
  left: 50%;
  width: 72%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  aspect-ratio: 1388 / 622;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer {
  position: relative;
}
.ftr--title {
  margin-bottom: 0;
  padding-bottom: 2rem;
  background-color: #000;
  color: #fff;
  padding-right: clamp(1.5rem, -0.8321682706rem + 3.7616375662vw, 3rem);
  flex-shrink: 0;
}
.ftr-availble {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ftr-availble a {
  text-decoration: none;
  width: 100%;
}
.ftr-availble span {
  font-size: 2rem;
  color: #000;
}
.ftr-availble span:hover {
  color: #6433f6;
}
.footer-availble-on-section {
  padding: 1rem;
  /* display: inline-flex; */
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 0.375rem solid #000;
}

.footer-availble-on-section img {
  max-width: 30%;
  /* max-height: 20rem; */
  /* height: 50%; */
  transition: scale 0.2s ease 0s;
  width: 15%;
}
.footer-available-on-section-img-2 img {
  max-width: 13%;
  max-height: 20rem;
  height: 50%;
  transition: scale 0.2s ease 0s;
  width: 50%;
}
.footer-available-on-section-img-2 span:hover {
  color: #00b8d5;
}
.footr-first {
  border-top: 0.375rem solid #000;
  border-bottom: 0.375rem solid #000;
  background: #fff;
  display: flex;
}
.ftr--title span {
  font-size: 5rem;
  font-weight: 700;
}
.footer-availble-on-section:nth-child(2) {
  border-right: none;
}

.main-footr {
  display: grid;
  grid-template-columns: 47% 53%;
}
.row-footer-head {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.row-footer-head::before {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 11rem;
  -webkit-transform: translate(-50%, -52%);
  transform: translate(-50%, -52%);
  /* background-image: url(Images/main-bg.png); */

  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
}

.row-footer-head span {
  position: relative;
  z-index: 2;
  font-style: normal;
  font-weight: 600;
  line-height: 75.702%;
  text-transform: uppercase;
  font-size: clamp(3.375rem, -0.4147734397rem + 6.1126610451vw, 5.8125rem);
}
.banner-gif {
  transform: translateX(5%);
  transition: left 1s ease;
}
.fa-check {
  color: #188518;
}
.row-footerMain {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-bottom: 0.375rem solid #000;
}
.row-footer {
  flex: 1 0 50%;
  display: grid;
  /* grid-template-columns: repeat(5, 1fr); */
  grid-template-columns: repeat(2, 1fr);
}
.row-footer:nth-child(1) .footr-main-socialLinks {
  border-top: none;
}
.row-footer a {
  text-decoration: none;
  color: #000;
}

.footr-main-socialLinks:first-child {
  border-left: 0.375rem solid #000;
}
.footr-main-socialLinks {
  padding: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.1875rem solid #000;
}
.footr-main-socialLinks img {
  max-width: 75%;
  width: 2.75rem;
  transition: scale 0.2s ease 0s;
}
.row-footer:nth-child(1) .footr-main-socialLinks {
  border-top: none;
}
.row-footer:nth-child(2) .footr-main-socialLinks:last-child {
  border-right: 0.375rem solid #000;
}
.row-footer:nth-child(1) .footr-main-socialLinks:last-child {
  border-right: 0.375rem solid #000;
}
.bottom-footer {
  text-align: center;
  padding: 4rem 0rem 2rem;
}
.bottom-footer__container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom-footer__container > span {
  color: #000;
  text-align: right;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.bottom-footer__container > a {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.5625rem;
  column-gap: 0.5625rem;
}
.bottom-footer__container > a > span {
  color: #000;
  text-align: right;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.bottom-footer__container > a > span {
  color: #000;
  text-align: right;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
}
.koala-animation {
  animation: wiggle 1.7s ease-in-out infinite;
}
.contract-address {
  font-size: 1rem;
}
@keyframes wiggle {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
.banner-info {
  z-index: 4;
  color: #fff;
  font-weight: 700;
}
@media (max-width: 325px) {
  /* .heading-about-content {
    padding: 0rem 0rem 0rem 3rem !important;
  } */
}

@media (max-width: 450px) {
  .heading-about-content {
    padding: 7% !important;
    padding-right: 7% !important;
  }
  .hero__bg img:nth-child(2) {
    bottom: 12% !important;
    right: 23rem !important;
  }
  .hero__title span:nth-child(1) {
    font-size: 4rem;
    line-height: 4.2rem;
  }
  .about-plain-bg img {
    width: auto;
  }
}
@media (max-width: 550px) {
  .navbar {
    border-bottom: 0.6rem solid;
    padding: 0 !important;
    background: white;
    text-align: center;
  }
  .navbar .show {
    padding-bottom: 2rem !important;
  }
  .navbar-nav {
    display: flex;
    align-items: center;
  }
  .contract-address {
    font-size: small;
  }
  .hero__title span:nth-child(2) {
    font-size: 4.5rem;
  }
  .hero__title span:nth-child(1) {
    font-size: 6rem;
  }
  .hero__title {
    display: initial;
    /* flex-direction: column; */
    position: relative;
    z-index: 2;
    margin-top: 6rem !important;
  }
  .hero__bg img:nth-child(2) {
    left: auto !important;
    bottom: 2%;
    width: 30rem !important;
    right: 26rem;
  }
  .aboutBg {
    top: 70%;
    width: 100%;
    height: 43rem;
  }
  .about__body {
    display: flex;
    flex-direction: column-reverse;
    margin-top: -3.5rem;
  }
  .heading-about span {
    font-size: 2rem;
  }
  /* .heading-about-content {
    padding: 0rem 0rem 0rem 1rem;
  } */
  .heading-about-content p {
    font-size: 1.2rem;
  }
  .about__image img {
    position: initial;
    width: 100% !important;
    margin-top: 1rem;
    height: 100% !important;
    background-color: #1aedf0;
  }
  .about-plain-bg img {
    width: 100%;
  }
  .about__image {
    z-index: 5;
  }
  .how-to-buy-content ul {
    padding-left: 0 !important;
  }
  .bottom-about::before {
    top: -2rem;
  }
  .about-text-buy {
    margin-top: 0rem;
  }
  .about-token-buy {
    display: block;
  }
  .bottom-about__social {
    padding-top: 0rem;
  }
  .bottom-about::after {
    bottom: -1.4rem;
  }
  .about-buy-now-block {
    display: block;
    text-align: center;
    padding: 2rem 0 0 0;
  }
  .about-token-copy {
    font-size: small;
  }
  .row-footerMain {
    height: 3.5rem;
  }
  .tokenMeme-section {
    aspect-ratio: 2400 / 2000;
  }
  .how-line-body-bg {
    height: 11rem;
  }
  .how-line-body-Indivi-text:has(img) {
    padding: 12px;
  }
  .how-line-body-Indivi-text span {
    font-size: 4rem;
  }
  .how-to-buy-body {
    display: block;
  }
  .how-to-buy-content {
    width: 100%;
  }
  .image-how-to-buy-bg img {
    margin-top: 4rem;
  }
  .how-to-buy-flex h3 {
    font-size: 2rem;
  }
  .how-to-buy-p {
    font-size: 1rem;
  }
  .toke-nomics-bg {
    top: 47%;
    aspect-ratio: 1017 / 305;
  }
  .toke-nomics-title {
    color: white;
  }
  .main-toke-top {
    margin-top: -1rem;
    /* padding: 6% 16%; */
  }
  .tokenomics-section-I {
    display: block;
    margin-top: 0;
  }
  .main-footr {
    display: grid;
    grid-template-columns: auto !important;
  }
  .tokenomics-section-I span:nth-child(1) {
    font-size: 1.4rem;
  }
  .tokenomics-section-IIMain {
    display: block;
  }
  .tokenomics-time-section {
    /* aspect-ratio: 1612 / 1007; */
    margin-top: 1rem;
  }
  .buy-sell-tokenomics-section {
    /* flex: auto;
    aspect-ratio: 1600 / 1059; */
    margin-top: -4rem;
  }
  .buy-sell-tokenomics-bg {
    position: absolute;
    top: 1rem;
  }
  .updated-div {
    font-size: 1rem;
  }
  .tokenomics-section-IIMain {
    margin-top: -4rem;
  }
  .buy-sell-tokenomics {
    font-size: 2rem;
    margin-top: 2rem;
    font-weight: 700 !important;
  }
  .tokenMeme-section.tokenWolf-img {
    margin-top: -4rem;
  }
  .tokenMeme-section.tokenWolf-img img:nth-child(1) {
    top: 8%;
    width: 100%;
    height: 80%;
  }
  .tokenMeme-section.tokenWolf-img img:nth-child(2) {
    top: 3rem;
    width: 100%;
  }
  .footr-first {
    display: block;
    margin-top: -5rem;
  }
  .ftr--title span {
    font-size: 3rem;
  }
  .ftr-availble {
    display: flex;
  }
  .row-footer-head span {
    font-size: 2rem;
    color: #000000;
    font-weight: 700;
  }
  .footr-main-socialLinks {
    padding: 0.2rem;
  }
  .bottom-footer {
    padding: 0.5rem 0;
  }
  .bottom-footer__container > span {
    color: #000;
    font-weight: 600;
  }
  .bottom-footer__container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .row-footer-head::before {
    height: 6rem;
  }
  .bottom-footer {
    padding: 1.5rem 0;
  }
  .ftr-availble span {
    font-size: 1.6rem;
  }
  .bottom-about__social {
    gap: 2rem;
    margin-left: 11.5rem;
    flex-wrap: nowrap;
  }
  .tokenMeme-section img {
    width: 100%;
    top: 0rem;
    height: 100%;
  }
  .hero__bg img:nth-child(2) {
    left: auto !important;
    bottom: 2%;
    width: 33rem !important;
    right: 45rem !important;
  }
  .aboutBg img {
    object-position: center;
  }
}
@media (min-width: 376px) and (max-width: 450px) {
  .hero__title span:nth-child(2) {
    font-size: 6.6rem !important;
    line-height: 8rem;
    padding-top: 2rem;
  }
}
@media (min-width: 326px) and (max-width: 380px) {
  .hero__title span:nth-child(2) {
    font-size: 6.6rem !important;
    line-height: 8rem;
    padding-top: 8rem;
  }

  .tokenomics-time {
    padding-left: 5%;
  }
}
@media (min-width: 326px) and (max-width: 420px) {
  .hero__title span:nth-child(2) {
    font-size: 5.6rem !important;
    line-height: 6rem;
    padding-top: 1rem;
  }
  .contract-address {
    font-size: small;
  }
  .hero__title {
    padding-top: 2rem;
  }
}
@media (min-width: 430px) and (max-width: 550px) {
  .hero__title span:nth-child(2) {
    line-height: 5rem;
    font-size: 7.5rem;
  }
  .hero__title {
    padding-top: 4rem;
  }
}
@media (max-width: 326px) {
  .hero__title span:nth-child(2) {
    font-size: 4.6rem;
    line-height: 4rem;
    /* color: #fff; */
    padding-top: 8rem;
  }
  .about-plain-bg img {
    display: none;
  }
  .hero__title {
    padding-top: 2rem;
  }
  .about__body {
    margin-top: -5.5rem;
  }
  .contract-address {
    font-size: x-small;
  }
  .bottom-about__social {
    margin-left: 10rem;
  }
  .ftr--title span {
    font-size: 2rem;
  }
  .ftr--title {
    padding-bottom: 0.5rem;
  }
  .ftr-availble span {
    font-size: 1.2rem;
    padding-left: 0.3rem;
  }
  .row-footer-head::before {
    height: 5rem;
  }
  .row-footer-head span {
    font-size: 1.5rem;
    line-height: 1.4rem;
  }
  .tokenomics-time {
    padding-left: 0%;
    font-size: 1rem;
    padding-bottom: 1rem;
  }
}

@media (min-width: 550px) and (max-width: 990px) {
  .navbar {
    border-bottom: 0.6rem solid;
    padding: 0 !important;
    background: white;
    text-align: center;
  }
  .navbar .show {
    padding-bottom: 2rem !important;
  }
  .navbar-nav {
    display: flex;
    align-items: center;
  }
  .hero__title {
    margin-top: 3rem;
  }
  .hero__title span:nth-child(2) {
    font-size: 9rem;
    line-height: 9rem;
  }
  .hero__title span:nth-child(1) {
    font-size: 7rem;
  }
  .hero__bg img:nth-child(2) {
    bottom: 7%;
    width: 90%;
    /* right: 44rem; */
    left: -60rem;
  }
  .aboutBg {
    top: 44%;
    width: 100%;
    height: 43rem;
  }
  .heading-about span {
    font-size: 2rem;
  }
  .heading-about-content p {
    font-size: 1.2rem;
  }
  .heading-about-content {
    padding: 0rem 0rem 0rem 5rem !important;
  }
  .about__image img {
    width: 29rem;
    height: 100%;
  }
  .about-text-buy {
    margin-top: -3rem;
  }
  .about-token-buy {
    display: flex;
  }
  .bottom-about__social {
    padding-top: 0rem;
    margin: 0;
    margin-left: 2rem;
    gap: 2rem;
    flex-wrap: nowrap;
  }
  .bottom-about::after {
    bottom: -0.4rem;
  }
  .how-to-buy-animation {
    margin-top: -4.5rem;
  }
  .how-line-body-Indivi-text span {
    font-size: 3rem;
  }
  .how-line-body-bg {
    height: 11rem;
  }

  .image-how-to-buy-bg img {
    border-left: 7px solid black;
  }
  .toke-nomics-bg {
    top: 51%;
    aspect-ratio: 2017 / 405;
  }
  .main-toke-top {
    margin-top: -1.2rem;
  }
  .toke-nomics-title {
    color: #fff;
  }
  .tokenomics-section-I span:nth-child(1) {
    font-size: 1.4rem;
  }
  .tokenMeme-section-new {
    height: 30rem !important;
  }
  .image-how-to-buy-bg {
    margin-top: -3rem;
  }
  .tokenomics-section-I span:nth-child(2) {
    /* font-size: 2rem; */
  }
  .main-footr {
    display: grid;
    grid-template-columns: auto !important;
  }
  .row-footerMain {
    height: 4rem;
  }
  .tokenMeme-section.tokenWolf-img img:nth-child(1) {
    height: 22rem;
  }
  .tokenMeme-section.tokenWolf-img img:nth-child(2) {
    /* top: -10rem; */
    width: 100%;
  }
  .tokenomics-time {
    padding-left: 5%;
  }
  .tokenomics-time span:nth-child(1) {
    font-size: 2rem;
  }
  .ftr--title span {
    font-size: 3rem;
  }
  .footr-first {
    height: 7rem;
  }
  .ftr-availble {
    display: flex;
  }
  .how-to-buy-content ul li {
    padding-right: 19px;
  }
  .how-to-buy-flex h3 {
    font-size: 2.2rem;
  }
  .how-to-buy-p {
    padding-top: 0.1rem;
    font-size: 1rem;
  }
  .how-to-buy-content ul li span {
    padding: 10px;
  }
  .about-buy-now-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0rem 0rem 0rem 1rem;
  }
  .tokenomics-section-I {
    display: block;
  }
  .tokenMeme-section {
    width: 100%;
    height: 32rem;
    aspect-ratio: 0;
    overflow: hidden;
    margin-top: -2rem !important;
    height: 14rem;
  }
}
@media (min-width: 550px) and (max-width: 620px) {
  .about-token-buy {
    display: block;
  }
  .bottom-about__social {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }
  .footr-first {
    display: block;
    height: auto;
  }
  .row-footer-head::before {
    height: 8rem;
  }
  .tokenomics-section-IIMain {
    display: block;
  }
  .hero__title span:nth-child(2) {
    font-size: 10rem;
    line-height: 8rem;
  }
}
@media (min-width: 990px) and (max-width: 1250px) {
  .bottom-about__social {
    padding-top: 0rem;
    margin: 0;
    margin-left: 2rem;
    margin-right: 9rem;
    /* gap: 2rem; */
    flex-wrap: nowrap;
  }
  .about-token-buy {
    display: flex;
  }
  .buy-now::before {
    left: 38%;
  }
}
@media (min-width: 990px) and (max-width: 1024px) {
  .hero__bg img:nth-child(2) {
    bottom: -8%;
    /* width: 50%; */
    width: 85%;
    left: -70rem;
  }
  .heading-about-content {
    padding: 0 0 0 22%;
  }
  .about__image img {
    width: 36rem;
    height: 43rem;
  }
  .ftr-availble {
    display: flex;
  }
  .tokenomics-section-I {
    margin-top: 0rem;
  }
  .tokenomics-time {
    padding-left: 10%;
  }
}
@media (min-width: 1024px) and (max-width: 1163px) {
  .tokenMeme-section.tokenWolf-img img:nth-child(2) {
    bottom: -4%;
    top: -8rem;
    left: 50%;
    width: 67%;
  }
  .main-page {
    overflow: hidden;
  }
  .main-footr {
    display: flex !important;
    align-items: center !important;
    justify-content: end !important;
  }
  .row-footerright {
    width: 63% !important;
  }
}
@media (min-width: 1025px) and (max-width: 1330px) {
  .hero__bg img:nth-child(2) {
    width: 65%;
    left: -61%;
  }
  /* .hero__bg img:nth-child(2) {
    transform: translate(80%, -15%);
  } */
  .main-footr {
    display: flex !important;
    align-items: center !important;
    justify-content: end !important;
  }
  .row-footerright {
    width: 63% !important;
  }
}
@media (min-width: 1163px) and (max-width: 1250px) {
  .hero__bg img:nth-child(2) {
    width: 65%;
  }
  .main-footr {
    display: flex !important;
    align-items: center !important;
    justify-content: end !important;
  }
  .row-footerright {
    width: 63% !important;
  }
}
@media (min-width: 1300px) and (max-width: 2000px) {
  .hero__bg img:nth-child(2) {
    bottom: -10%;
    left: -55%;
    width: 60%;
  }
  .main-footr {
    display: flex !important;
    align-items: center !important;
    justify-content: end !important;
  }
  .row-footerright {
    width: 63% !important;
  }
}
@media (min-width: 1300px) and (max-width: 1600px) {
  .about__image img {
    position: absolute;
    top: 8%;
    left: 15%;
    width: 41rem;
    transform: translateY(-11%);
  }
}
@media (min-width: 1500px) and (max-width: 5000px) {
  .line::before {
    left: 0%;
    width: 100%;
  }
  .main-page {
    overflow: hidden;
  }
  .how-to-buy-p {
    font-size: 1.8rem;
  }
  .about__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 49rem;
    transform: translateY(-11%);
  }
}
@media (min-width: 1600px) {
  .tokenMeme-section {
    position: relative;
    width: 100%;
    aspect-ratio: 2400 / 800;
  }
  .row-footer-head::before {
    height: 14rem;
    -webkit-transform: translate(-50%, -52%);
    transform: translate(-52%, -41%);
  }
}
@media (min-width: 1700px) {
  .about__image img {
    position: absolute;
    top: 3rem;
    height: 115%;
    /* width: 55rem; */
    left: 25%;
  }
}
@media (min-width: 1500px) and (max-width: 5000px) {
  .tokenMeme-section img {
    height: 58rem;
  }
  .line::before {
    left: -5%;
    width: 110%;
    /* height: 111%; */
  }
  .tokenMeme-section.tokenWolf-img img:nth-child(2) {
    top: -11rem;
  }
  .bottom-footer {
    padding: 6rem 0rem 2rem;
  }
  .contract-address {
    font-size: x-large;
  }
  .main-footr {
    display: flex !important;
    align-items: center !important;
    justify-content: end !important;
  }
  .row-footerright {
    width: 63% !important;
  }
}
@media (min-width: 1025px) and (max-width: 1164px) {
  .tokenMeme-section.tokenWolf-img img:nth-child(2) {
    bottom: -4%;
    top: -5rem;
  }
  .main-footr {
    display: flex !important;
    align-items: center !important;
    justify-content: end !important;
  }
  .row-footerright {
    width: 63% !important;
  }
}
@media (min-width: 2000px) {
  .hero__bg img:nth-child(2) {
    transform: translate(165%, -16%);
  }
  .tokenMeme-section.tokenWolf-img img:nth-child(2) {
    top: -4rem;
  }
}
@media (min-width: 820px) and (max-width: 990px) {
  .hero__bg img:nth-child(2) {
    bottom: -10%;
  }
}
