@font-face {
  font-family: "00321";
  src: url("/assets/font/00321.TTF");
}
@font-face {
  font-family: "Akrobat Thin", sans-serif;
  src: url("/assets/font/Akrobat-Thin.otf");
}
@font-face {
  font-family: "Akrobat", sans-serif;
  src: url("/assets/font/Akrobat-Regular.otf");
}
@font-face {
  font-family: "Akrobat Bold", sans-serif;
  src: url("/assets/font/Akrobat-Bold.otf");
}
:root {
  --color-primary: #c0272d;
  --color-secondary: #386b92;
  --color-third: #dbd8a9;
  --color-fourth: #95d1cc;
  --color-text: #dbeafe;
}
body {
  font-family: "00321";
}
.color-primary {
  color: var(--color-primary);
}
.color-secondary {
  color: var(--color-secondary);
}
.color-third {
  color: var(--color-third);
}
.color-text {
  color: var(--color-text);
}
.ff-akrobat-thin {
  font-family: "Akrobat Thin", sans-serif;
}
.ff-akrobat {
  font-family: "Akrobat", sans-serif;
}
.ff-akrobat-bold {
  font-family: "Akrobat Bold", sans-serif;
}
.hero-area {
  width: 75%;
  position: relative;
}
.hero-ship {
  position: absolute;
  right: -40%;
  top: -25%;
  width: 70%;
  transition-duration: 0.5s;
  animation: heroShipAnim 1s infinite alternate-reverse;
}
@keyframes heroShipAnim {
  0% {
    right: -35%;
    top: -25%;
  }
  100% {
    right: -38%;
    top: -27%;
  }
}
.shib_astro {
  position: absolute;
  width: 60%;
  left: -50%;
  top: 0%;
  transition-duration: 0.5s;
  animation: shibAstroAnim 1s infinite alternate-reverse;
}
@keyframes shibAstroAnim {
  0% {
    top: 0%;
  }
  100% {
    top: -5%;
  }
}
.step-area {
  padding: 5% 10% 0 17%;
}
.nft-slide {
  width: 100%;
  position: absolute;
}
.nft-slide1, .nft-slide2{
  width: 100%;
}
.nft-slide2 {
  position: absolute;
  top: 81%;
  left: 0;
}
.mundog_logo {
  padding: 3% 2%;
  width: 25%;
}
.mundog_anim {
  position: absolute;
  top: -100%;
  width: 100%;
}
.buy-button-area {
  position: fixed;
  width: 25%;
  bottom: 10%;
  transition-duration: 0.5s;
  z-index: 99;
}
.buy-button-area:hover {
  cursor: pointer;
  transform: scale(1.05);
}
.contract-button {
  transition-duration: 0.5s;
}
.contract-button:hover {
  cursor: pointer;
  transform: scale(1.05);
}
.buy-button-text {
  color: var(--color-primary);
  font-size: 1.5cqw;
}
.how-to-buy-area {
  display: flex;
  flex-direction: column;
  padding: 1% 2%;
  width: 34%;
  background-color: white;
  border-radius: 5cqw;
  transition-duration: 0.5s;
  cursor: pointer;
}
.how-to-buy-area div img {
  transform: rotate(0deg);
  transition-duration: 0.5s;
}
.anim {
  transform: rotate(-180deg) !important;
}
.how-to-buy-area.active .how-to-buy-text {
  display: block !important;
}
.how-to-buy-text {
  display: none;
}
.cursor {
  cursor: pointer;
}
.footer-link {
  cursor: pointer;
  transition-duration: 0.5s;
}
.footer-link:hover {
  transform: scale(1.05);
}
.line-h-1-15 {
  line-height: 1.15;
}
/* width */
.width50 {
  width: 50%;
}
.w-90 {
  width: 90%;
}
.w-85 {
  width: 85%;
}
.w-80 {
  width: 80%;
}
.w-70 {
  width: 70%;
}
.w-65 {
  width: 65%;
}
.w-60 {
  width: 60%;
}
.w-45 {
  width: 45%;
}
.w-40 {
  width: 40%;
}
.w-30 {
  width: 30%;
}
.w-20 {
  width: 20%;
}
.w-15 {
  width: 15%;
}
.w-10 {
  width: 10%;
}
.w-5 {
  width: 5%;
}
.h-25vh {
  height: 25vh;
}
/* margin */
.mrgn-top-1 {
  margin-top: 1%;
}
.mrgn-top-3 {
  margin-top: 3%;
}
.mrgn-top-5 {
  margin-top: 5%;
}
.mrgn-top-10 {
  margin-top: 10%;
}
.mrgn-top-15 {
  margin-top: 15%;
}
.mrgn-top-18 {
  margin-top: 18%;
}
.mrgn-top-20 {
  margin-top: 20%;
}
.mrgn-top-25 {
  margin-top: 25%;
}
.mrgn-top-30 {
  margin-top: 30%;
}
.mrgn-top-45 {
  margin-top: 45%;
}
.mrgn-top-105 {
  margin-top: 105%;
}

.mrgn-bot-10 {
  margin-bottom: 10%;
}

/* padding */
.pddng-l-25 {
  padding-left: 25%;
}
.pddng-l-15 {
  padding-left: 15%;
}
.pddng-l-10 {
  padding-left: 10%;
}
.pddng-l-5 {
  padding-left: 5%;
}
.pddng-l-3 {
  padding-left: 3%;
}
.pddng-r-3 {
  padding-right: 3%;
}
.pddng-y-1 {
  padding: 1% 0;
}
.pddng-y-3 {
  padding: 3% 0;
}
.pddng-y-5 {
  padding: 5% 0;
}
.pddng-x-5 {
  padding: 0 5%;
}
.pddng-x-7-5 {
  padding: 0 5% 0 7%;
}
.pddng-x-2-5 {
  padding: 0 5% 0 2%;
}
.pddng-x-10 {
  padding: 0 10%;
}

/* font size */
.f-size-8 {
  font-size: 8cqw;
}
.f-size-6 {
  font-size: 6cqw;
}
.f-size-4-5 {
  font-size: 4.5cqw;
}
.f-size-3-5 {
  font-size: 3.5cqw;
}
.f-size-3-25 {
  font-size: 3.25cqw;
}
.f-size-3 {
  font-size: 3cqw;
}
.f-size-2-5 {
  font-size: 2.5cqw;
}
.f-size-2-25 {
  font-size: 2.25cqw;
}
.f-size-2 {
  font-size: 2cqw;
}
.f-size-1-75 {
  font-size: 1.75cqw;
}
.f-size-1-5 {
  font-size: 1.5cqw;
}
.f-size-1-25 {
  font-size: 1.25cqw;
}
.f-size-1 {
  font-size: 1cqw;
}

@media (max-width: 767px) {
  .mundog_logo {
    padding: 10% 10% 0%;
    width: 50%;
  }
  .hero-area {
    width: 100%;
  }
  .f-size-4-5 {
    font-size: 10cqw;
  }
  .f-size-3-25 {
    font-size: 7cqw;
  }
  .f-size-2-5 {
    font-size: 4.25cqw;
  }
  .f-size-2 {
    font-size: 6.5cqw;
  }
  .f-size-1-5 {
    font-size: 3.5cqw;
  }
  .f-size-1-25 {
    font-size: 3.75cqw;
  }
  .mobile-f-size-9 {
    font-size: 9cqw;
  }
  .mobile-f-size-5-5 {
    font-size: 5.5cqw;
  }
  .mobile-f-size-5 {
    font-size: 5cqw;
  }
  .mobile-f-size-3 {
    font-size: 3cqw;
  }
  .buy-button-area {
    width: 50%;
    margin-top: 85%;
  }
  .buy-button-text {
    font-size: 3.25cqw;
  }
  .mobile-w-50-area {
    width: 50% !important;
    display: flex;
  }
  .mobile-w-100 {
    width: 100% !important;
  }
  .mobile-w-75 {
    width: 75% !important;
  }
  .mobile-w-0 {
    width: 0% !important;
  }
  .mobile-text-half {
    width: 50% !important;
    padding-right: 10%;
    line-height: 1.75;
  }
  .mrgn-top-1 {
    margin-top: 3%;
  }
  .mobile-margin-top-250 {
    margin-top: 250%;
  }
  .mobile-margin-top-155 {
    margin-top: 155%;
  }
  .mobile-margin-top-150 {
    margin-top: 150%;
  }
  .mobile-margin-top-120 {
    margin-top: 120%;
  }
  .mobile-mrgn-top-95 {
    margin-top: 95%;
  }
  .mobile-mrgn-top-75 {
    margin-top: 75%;
  }
  .mobile-margin-top-70 {
    margin-top: 70%;
  }
  .mobile-margin-top-60 {
    margin-top: 60%;
  }
  .mobile-margin-top-52 {
    margin-top: 52%;
  }
  .mobile-margin-top-20 {
    margin-top: 20%;
  }
  .mobile-margin-top-10 {
    margin-top: 10%;
  }
  .mobile-margin-top-8 {
    margin-top: 8%;
  }
  .mobile-pddng-y-10 {
    padding: 10% 0;
  }
  .pddng-l-15 {
    padding: 0;
  }
  .mobile-pddng-x-5 {
    padding: 0 5%;
  }
  .mobile-pddng-x-10 {
    padding: 0 10%;
  }
  .step-area {
    padding: 5% 5% 0 20%;
  }
  .how-to-buy-area {
    width: 90%;
    padding: 3% 5%;
  }
  .order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
  .order3 {
    order: 3;
  }
}
