@font-face {
  font-family: jokerman;
  src: url("../fonts/Jokerman.otf");
}

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.3s linear;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: #1e1e1e;
  overflow: hidden;

  scrollbar-color: #ff6392 #ffffff;
  scrollbar-width: 12px;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul li,
button,
span {
  font-weight: 400;
}

:root {
  --font01: "Jolly Lodger", system-ui;
  --font02: "Jomhuria", serif;
  --font03: "jokerman", serif;

  --yellow-color: #ffe45e;
  --black-color: #000000;
  --lightBlue-color: #7fc8f8;
  --white-color: #ffffff;
  --pink-color: #ff6392;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--white-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--pink-color);
  border-radius: 10px;
}

/* ********* loader ********** */
/***************************** */

.mainLoader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 111111;
  background-color: #ffe45e;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.mainLoader.removeLoader {
  opacity: 0;
  visibility: hidden;
}
#loading {
  width: 250px;
  height: 250px;
  margin: 30px auto;
  position: relative;
}
.outer-shadow,
.inner-shadow {
  z-index: 4;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.inner-shadow {
  top: 50%;
  left: 50%;
  width: 200px; /* 80% of 250px */
  height: 200px;
  margin-left: -100px; /* half of inner-shadow width */
  margin-top: -100px; /* half of inner-shadow height */
  border-radius: 100%;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.hold {
  position: absolute;
  width: 100%;
  height: 100%;
  clip: rect(0px, 250px, 250px, 125px);
  border-radius: 100%;
}
.fill,
.dot span {
  background-color: #ff6392;
}
.fill {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  clip: rect(0px, 125px, 250px, 0px);
}
.left .fill {
  z-index: 1;
  -webkit-animation: left 6s linear;
  -moz-animation: left 6s linear;
  animation: left 6s linear both;
}
@keyframes left {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@-webkit-keyframes left {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
  }
}
.right {
  z-index: 3;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.right .fill {
  z-index: 3;
  -webkit-animation: right 1s linear;
  -moz-animation: right 1s linear;
  animation: right 1s linear both;
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}
@keyframes right {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@-webkit-keyframes right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
.inner-shadow img {
  margin-left: 8px;
  margin-top: 7px;
}

.percent {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  z-index: 11;
  font-family: var(--font03);
  font-size: 28px;
  color: var(--black-color);
}

.animateElement {
  opacity: 0;
  transform: scale(0.9) !important;
}

/* nav */
/* *** */

nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 37px;
  transition: 0.2s ease;
  z-index: 1;
}
nav.active {
  background-color: #ffea8cc2;
  top: 0;
  z-index: 11;
  padding: 0.7rem 0;
  backdrop-filter: blur(10px);
}
nav .center_content {
  width: 1532px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .center_content .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .center_content .logo img {
  width: 94px;
  height: 94px;
}
nav .center_content ul.navItems {
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  border: 1px solid var(--black-color);
  padding: 10px 35px 0px;
  border-radius: 20px;
  list-style: none;
}
nav .center_content ul.navItems li a {
  font-family: var(--font02);
  font-size: 50px;
  color: var(--black-color);
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}
nav .center_content ul.navItems li a:hover,
nav .center_content ul.navItems li a.active {
  text-shadow: 0px 3px 0px #fff;
}
nav .center_content .btn01 {
  text-decoration: none;
  font-size: 50px;
  color: var(--black-color);
  font-family: var(--font02);
  text-transform: uppercase;
  border: 2px solid var(--black-color);
  box-shadow: 0px 9px 4px 0 var(--white-color);
  background-color: var(--lightBlue-color);
  padding: 10px 21px 0 27px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  min-height: 60px;
  line-height: 25px;
}
nav .center_content .btn01:hover {
  box-shadow: 0px 9px 4px 0 transparent;
}

/* ********* Header ******* */
/* *********************** */

.header {
  width: 100%;
  background-color: var(--yellow-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .bgShape {
  width: 97%;
  position: absolute;
  right: 0;
  top: 198px;
}
.header .bgShape img {
  width: 100%;
}
.header .center_content {
  max-width: 1532px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 235px;
  position: relative;
}
.header .center_content .topPart h1 {
  font-size: 322px;
  line-height: 273px;
  font-family: var(--font01);
  color: var(--pink-color);
  text-shadow: -8px -8px 0 #fff, 8px -8px 0 #fff, -8px 8px 0 #fff,
    8px 8px 0 #fff, 0px -8px 0 #fff, 0px 8px 0 #fff, -8px 0px 0 #fff,
    8px 0px 0 #fff;
  text-align: center;
}
.header .center_content .topPart h3 {
  font-family: var(--font03);
  font-size: 88px;
  color: #1e1e1e;
}
.header .center_content .bottomPart {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
}
.header .center_content .bottomPart .image img {
  width: 100%;
}
.header .center_content .bottomPart .image:nth-child(1),
.header .center_content .bottomPart .image:nth-child(5) {
  width: 209px;
}
.header .center_content .bottomPart .image:nth-child(2),
.header .center_content .bottomPart .image:nth-child(4) {
  width: 310px;
}
.header .center_content .bottomPart .image:nth-child(3) {
  width: 471px;
}
.header .center_content .bottomPart .image:nth-child(4),
.header .center_content .bottomPart .image:nth-child(5) {
  -webkit-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}

.header .center_content .text01 p,
.header .center_content .text02 p {
  font-size: 35px;
  color: var(--black-color);
  font-family: var(--font02);
  text-align: center;
  text-transform: uppercase;
}

.header .center_content .text01 {
  position: absolute;
  top: -6px;
  right: -100px;
}

.header .center_content .text02 {
  position: absolute;
  bottom: 337px;
  left: -125px;
}

/* ******* Section 01 ********** */
/* ***************************** */

.section01 {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url(../shapes/section01_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  top: -55px;
  padding-bottom: 190px;
}
.section01 .contractAddress {
  margin-top: 244px;
  border-radius: 28px;
  background-color: var(--yellow-color);
  border: 2px solid var(--black-color);
  box-shadow: 0 9px 4px 0 var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 23px 148px 25px 128px;
}
.section01 .contractAddress h1 {
  font-size: 80px;
  font-family: var(--font02);
  color: var(--black-color);
}
.section01 .contractAddress .row02 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-top: 31px;
}
.section01 .contractAddress .row02 .text,
.section01 .contractAddress .row02 .copy {
  border-radius: 20px;
  background-color: var(--lightBlue-color);
  border: 2px solid var(--black-color);
  box-shadow: 0 9px 4px 0 var(--white-color);
  padding: 0 67px 0 50px;
}
.section01 .contractAddress .row02 .text {
  height: 78px;
  padding-top: 5px;
}
.section01 .contractAddress .row02 .copy {
  width: 138px;
  height: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  position: relative;
}
.section01 .contractAddress .row02 .copy:active {
  transform: scale(0.9);
}
.section01 .contractAddress .row02 .copy .copyMessage {
  position: absolute;
  top: -58px;
  padding: 5px 14px;
  font-size: 34px;
  font-family: var(--font02);
  background-color: var(--white-color);
  border-radius: 10px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}
.section01 .contractAddress .row02 .copy .copyMessage.active,
.section01 .contractAddress .row02 .copy:hover .copyMessage {
  visibility: visible;
  opacity: 1;
}
.section01 .contractAddress .row02 .copy .copyMessage::before {
  content: "";
  position: absolute;
  width: 17px;
  height: 17px;
  background-color: #fff;
  transform: rotate(42deg);
  top: 34px;
  left: 41%;
}
.section01 .contractAddress .row02 .copy:hover {
  box-shadow: 0 9px 4px 0 transparent;
}
.section01 .contractAddress .row02 .text p {
  font-size: 80px;
  font-family: var(--font02);
  color: var(--black-color);
}
.section01 .contractAddress .row03 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 31px;
  margin-top: 54px;
}
.section01 .contractAddress .row03 .mail {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #7fc8f8;
  box-shadow: -4px 4px 0 0 var(--black-color);
  cursor: pointer;
  transition: 0.3s ease-in-out;
  border: 2px solid transparent;
}
.section01 .contractAddress .row03 .twitter {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5aa9e6;
  box-shadow: -4px 4px 0 0 var(--black-color);
  transition: 0.3s ease-in-out;
  border: 2px solid transparent;
  cursor: pointer;
}
.section01 .contractAddress .row03 .mail:hover,
.section01 .contractAddress .row03 .twitter:hover {
  box-shadow: -4px 4px 0 0 transparent;
  border-color: var(--black-color);
}

.section01 .image01 {
  position: relative;
  top: -120px;
}

.section01 .aboutUsSection {
  min-width: 1530px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 105px;
}
.section01 .aboutUsSection .topPart {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section01 .aboutUsSection .topPart .tag {
  padding: 11px 20px 7px;
  display: flex;
  justify-content: center;
  align-items: end;
  background-color: var(--pink-color);
  border: 2px solid var(--black-color);
  border-radius: 20px;
}
.section01 .aboutUsSection .topPart .tag h1 {
  font-family: var(--font02);
  font-size: 60px;
  color: var(--white-color);
  text-transform: uppercase;
}
.section01 .aboutUsSection .topPart .mainHeading {
  font-size: 100px;
  font-family: var(--font02);
  color: var(--black-color);
  margin-top: 44px;
  text-transform: uppercase;
}
.section01 .aboutUsSection .topPart p {
  font-family: var(--font02);
  font-size: 50px;
  color: var(--white-color);
  text-align: center;
  text-transform: uppercase;
}
.section01 .aboutUsSection .bottomPart {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.section01 .aboutUsSection .bottomPart .image02 {
  position: absolute;
  left: -105px;
  top: -220px;
}
.section01 .aboutUsSection .bottomPart .image03 {
  position: absolute;
  right: 0px;
  top: -275px;
  overflow: hidden;
}
.section01 .aboutUsSection .bottomPart .image03 img {
  transform: translate(142px, 0px);
}
.section01 .tokenomics {
  min-width: 1526px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 11px;
  padding-top: 169px;
}
.section01 .tokenomics .tag {
  background-color: var(--pink-color);
  border-radius: 20px;
  border: 2px solid var(--black-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 11px 42px 7px;
}
.section01 .tokenomics .tag h1 {
  text-transform: uppercase;
  color: var(--white-color);
  font-family: var(--font02);
  font-size: 60px;
}
.section01 .tokenomics .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section01 .tokenomics .content .leftSide ul,
.section01 .tokenomics .content .rightSide ul {
  display: flex;
  flex-direction: column;
  gap: 37px;
}
.section01 .tokenomics .content .leftSide ul li,
.section01 .tokenomics .content .rightSide ul li {
  position: relative;
}
.section01 .tokenomics .content .leftSide ul li p,
.section01 .tokenomics .content .rightSide ul li p {
  font-size: 50px;
  font-family: var(--font02);
  color: var(--yellow-color);
  text-shadow: -1px -1px 0 var(--black-color), 1px -1px 0 var(--black-color),
    -1px 1px 0 var(--black-color), 1px 1px 0 var(--black-color),
    0px -1px 0 var(--black-color), 0px 1px 0 var(--black-color),
    -1px 0px 0 var(--black-color), 1px 0px 0 var(--black-color);
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.section01 .tokenomics .content .leftSide ul li p::before,
.section01 .tokenomics .content .rightSide ul li p::before {
  content: "";
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #7fc8f8;
  position: absolute;
  top: -10px;
  left: -14px;
  z-index: -1;
}
.section01 .tokenomics .content .center {
  position: relative;
  left: -100px;
}

/* ******* section02 ********* */
/* ************************** */

.section02 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 99px;
  background-image: url(../shapes/section02.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: -265px;
}
.section02 .topPart {
  width: 1660px;
  margin-top: 414px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.section02 .topPart .tag {
  border-radius: 20px;
  background-color: var(--pink-color);
  border: 2px solid var(--black-color);
  padding: 11px 31px 7px;
}
.section02 .topPart .tag h4 {
  font-family: var(--font02);
  font-size: 60px;
  color: var(--white-color);
}
.section02 .topPart h1 {
  font-size: 100px;
  font-family: var(--font02);
  color: var(--yellow-color);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 7px;
}
.section02 .topPart p {
  font-size: 50px;
  font-family: var(--font02);
  color: var(--white-color);
  text-transform: uppercase;
}
.section02 .bottomPart {
  margin-bottom: 90px;
}
.section02 .bottomPart .row01 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 180px;
  position: relative;
  left: 363px;
  top: -35px;
}
.section02 .bottomPart .row02 {
  margin-top: 213px;
  left: 25px;
  gap: 130px;
  top: -20px;
}
.section02 .bottomPart .row02 .rightSide {
  left: 50px;
  position: relative;
}
.section02 .bottomPart .row03 {
  margin-top: 228px;
  left: 300px;
  gap: 135px;
  top: -50px;
}

.section02 .bottomPart .row03 .leftSide {
  left: 15px;
  position: relative;
}

.section02 .bottomPart .row04 {
  margin-top: 154px;
  left: -256px;
  gap: 165px;
}
.section02 .bottomPart .row01 .leftSide {
  width: 163px;
  height: 163px;
  background-color: var(--pink-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.section02 .bottomPart .row01 .leftSide h1 {
  font-size: 100px;
  font-family: var(--font02);
  color: var(--white-color);
  position: relative;
  top: 10px;
}
.section02 .bottomPart .row01 .rightSide {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.section02 .bottomPart .row01 .rightSide h1 {
  text-transform: uppercase;
  color: var(--white-color);
  font-size: 60px;
  font-family: var(--font02);
  line-height: 36px;
}
.section02 .bottomPart .row01 .rightSide ul li {
  font-size: 30px;
  font-family: var(--font02);
  color: var(--white-color);
  text-transform: uppercase;
  display: flex;
  gap: 20px;
  padding-left: 18px;
}
.section02 .bottomPart .row01 .rightSide ul li p:first-child {
  position: relative;
  top: -3px;
}

.section02 .image04 {
  position: absolute;
  top: 300px;
  right: 0;
  overflow: hidden;
}
.section02 .image04 img,
.section02 .image05 img {
  transform: rotate(270deg) translate(0px, 72px);
}
.section02 .image05 {
  position: absolute;
  bottom: 0px;
  right: 0;
  overflow: hidden;
}
.section02 .image06 {
  position: absolute;
  left: 0;
  overflow: hidden;
}
.section02 .image07 {
  position: absolute;
  bottom: 200px;
  left: 0;
  overflow: hidden;
}
.section02 .image06 img,
.section02 .image07 img {
  transform: rotate(-270deg) translate(0px, 72px);
}

/* ******* section03 ******** */
/* ************************ */

.section03 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e1e1e;
}
.section03 .community {
  width: 90%;
  height: 375px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--yellow-color);
  border: 2px solid var(--black-color);
  box-shadow: 0 9px 4px 0 var(--white-color);
  border-radius: 28px;
  padding: 49px 35px 57px 54px;
}
.section03 .community .leftSide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 41px;
}
.section03 .community .leftSide h1 {
  font-family: var(--font02);
  font-size: 139px;
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0 9px 0px #000;
  -webkit-text-stroke: 2px #000;
}
.section03 .community .leftSide .bottomPart {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 31px;
}
.section03 .community .leftSide .bottomPart .icons {
  display: flex;
  gap: 31px;
  justify-content: center;
  align-items: center;
}
.section03 .community .leftSide .bottomPart .btn01 {
  background-color: #ff6392;
  border: 2px solid var(--black-color);
  box-shadow: 0 6px 0 0 var(--black-color);
  border-radius: 20px;
  padding: 11px 31px 7px;
  color: var(--white-color);
  text-transform: uppercase;
  font-family: var(--font02);
  font-size: 60px;
  transition: 0.3s ease-in-out;
}
.section03 .community .leftSide .bottomPart .btn01:hover {
  box-shadow: 0 6px 0 0 transparent;
}
.section03 .community .leftSide .bottomPart .mail,
.section03 .community .leftSide .bottomPart .twitter {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background-color: #7fc8f8;
  box-shadow: -4px 4px 0 0 var(--black-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  border: 2px solid transparent;
}
.section03 .community .leftSide .bottomPart .mail:hover,
.section03 .community .leftSide .bottomPart .twitter:hover {
  box-shadow: -4px 4px 0 0 transparent;
  border-color: var(--black-color);
}
.section03 .community .leftSide .bottomPart .twitter {
  background-color: #5aa9e6;
}
.section03 .community .rightSide {
  overflow: hidden;
  position: relative;
  top: -67px;
}
.section03 .community .rightSide img {
  width: 640px;
}

/* ******** Footer ********* */
/* ************************ */

footer {
  background-color: #1e1e1e;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 71px 0 46px;
}
footer h1 {
  font-family: var(--font02);
  font-size: 43px;
  color: var(--yellow-color);
  font-weight: 400;
}

/* Mobile Nav */

.hamburger {
  width: 28px;
  display: flex;
  justify-content: center;
  align-items: center;

  display: none;
}
.hamburger img {
  width: 100%;
}
.mobileNav {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 111111;
  background-color: var(--yellow-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.mobileNav.active {
  visibility: visible;
  opacity: 1;
}
.mobileNav .logo {
  position: absolute;
  top: 11px;
  left: 68px;
}
.mobileNav .logo img {
  width: 94px;
  height: 94px;
}
.mobileNav .closeIcon {
  position: absolute;
  top: 39px;
  right: 69px;
  width: 28px;
}
.mobileNav .closeIcon img {
  width: 100%;
}

.mobileNav .navItems {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.mobileNav .navItems li a {
  font-family: var(--font02);
  font-size: 50px;
  color: var(--black-color);
  text-transform: uppercase;
}
.mobileNav .navItems li a:hover,
.mobileNav .navItems li a.active {
  text-shadow: 0px 2px 0px #fff;
}
.mobileNav .btn01 {
  background-color: var(--lightBlue-color);
  border: 2px solid var(--black-color);
  border-radius: 20px;
  box-shadow: 0 9px 4px 0 var(--white-color);
  padding: 10px 21px 0px 27px;
}
.mobileNav .btn01 span {
  font-family: var(--font02);
  font-size: 50px;
  color: var(--black-color);
}

/* ******** Responsive Part ******** */
/* ******************************** */

@media screen and (min-width: 1775px) {
  .section02 .bottomPart .row01 {
    top: 45px;
    left: 380px;
  }
  .section02 .bottomPart .row02 {
    margin-top: 238px;
    gap: 130px;
    left: 4px;
  }
  .section02 .bottomPart .row03 {
    top: 36px;
    left: 319px;
  }
  .section02 .bottomPart .row04 {
    margin-top: 248px;
    left: -290px;
    top: 20px;
  }
}

@media screen and (max-width: 1850px) {
  .section02 .bottomPart .row02 {
    margin-top: 202px;
  }
  .section02 .bottomPart .row04 {
    top: -38px;
  }
}

@media screen and (max-width: 1775px) {
  .header .center_content .text02 {
    left: -60px;
  }
  .header .center_content .text01 {
    right: -60px;
  }
  .section02 .bottomPart .row01 {
    top: -55px;
  }
  .section02 .bottomPart .row03 {
    margin-top: 204px;
  }
  .section02 .bottomPart .row04 {
    margin-top: 200px;
  }
}

@media screen and (max-width: 1738px) {
  .section02 .bottomPart .row02 {
    margin-top: 145px;
  }
}

@media screen and (max-width: 1695px) {
  .section02 .bottomPart .row03 {
    margin-top: 195px;
  }
  .section02 .bottomPart .row02 {
    margin-top: 124px;
  }
  .section02 .topPart {
    width: 90%;
  }
}

@media screen and (max-width: 1650px) {
  .section02 .bottomPart .row01 {
    top: -120px;
  }
  .section02 .bottomPart .row02 {
    margin-top: 182px;
  }
  .section02 .bottomPart .row03 {
    margin-top: 155px;
  }
}

@media screen and (max-width: 1646px) {
  .section02 .topPart {
    width: 90%;
  }
  nav .center_content {
    width: 90%;
  }
}

@media screen and (max-width: 1622px) {
  .section03 .community {
    padding: 30px 26px 30px 26px;
  }
}

@media screen and (max-width: 1620px) {
  .header .center_content .text01 {
    display: none;
  }
  .header .center_content .text02 {
    left: 40px;
  }
  .section01 .tokenomics {
    min-width: 90%;
    max-width: 100%;
  }
  .section01 .aboutUsSection {
    min-width: 100%;
  }
}

@media screen and (max-width: 1590px) {
  .section03 .community {
    min-height: 375px;
    height: unset;
    flex-direction: column-reverse;
  }
  .section03 .community .leftSide {
    position: relative;
    top: -50px;
  }
}

@media screen and (max-width: 1560px) {
  .section02 {
    background-image: url("../shapes/section02_01.svg");
  }
  .section02 .bottomPart .row02,
  .section02 .bottomPart .row03,
  .section02 .bottomPart .row04 {
    margin: unset;
  }
  .section02 .bottomPart .row02 .rightSide,
  .section02 .bottomPart .row03 .leftSide {
    position: unset;
  }
  .section02 .bottomPart .row01 {
    position: unset;
    gap: 40px;
    margin-bottom: 5rem;
  }
  .section02 .bottomPart .row03 {
    justify-content: flex-end;
    flex-direction: row-reverse;
  }
  .section02 .image04 img,
  .section02 .image05 img,
  .section02 .image06 img,
  .section02 .image07 img {
    width: 300px;
  }
}

@media screen and (max-width: 1480px) {
  .header .center_content .bottomPart .image:nth-child(5),
  .header .center_content .bottomPart .image:nth-child(1) {
    display: none;
  }
  .header .center_content {
    width: 90%;
    min-width: 90%;
    max-width: 90%;
  }
  .header .center_content .text02 {
    left: 0;
  }
}

@media screen and (max-width: 1400px) {
  .section01 .contractAddress {
    padding: 22px 60px 26px 60px;
  }
}

@media screen and (max-width: 1230px) {
  .section01 .tokenomics .content .center {
    left: -50px;
  }
  .section01 .contractAddress {
    width: 90%;
  }
  .section01 .contractAddress .row02 .text {
    height: 70px;
    padding: 0 35px 0 30px;
  }
  .section01 .contractAddress .row02 .text p {
    font-size: 60px;
    line-height: 65px;
  }
  .section01 .contractAddress .row02 .copy {
    width: 100px;
    height: 70px;
  }
  .section01 .contractAddress .row02 .copy .copyMessage img {
    width: 26px;
  }
  .section01 .contractAddress .row03 .mail,
  .section01 .contractAddress .row03 .twitter {
    width: 70px;
    height: 70px;
  }
}

@media screen and (max-width: 1180px) {
  nav .center_content ul.navItems,
  nav .center_content .btn01 {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media screen and (max-width: 1160px) {
  .section01 .aboutUsSection .topPart .mainHeading {
    font-size: 75px;
  }
  .section01 .aboutUsSection .topPart p {
    font-size: 40px;
  }
  .section01 .aboutUsSection .topPart .tag h1 {
    font-size: 50px;
  }
  .section01 .aboutUsSection .bottomPart .image02 {
    left: 0px;
    top: -140px;
  }
  .section01 .aboutUsSection .bottomPart .image02 img {
    width: 300px;
  }
  .section01 .aboutUsSection .bottomPart .image03 {
    top: -200px;
  }
  .section01 .aboutUsSection .bottomPart .image03 img {
    width: 300px;
    transform: translate(30px, 0px);
  }
  .section01 .aboutUsSection .bottomPart img {
    width: 350px;
  }
  .section01 .image01 img {
    width: 350px;
  }
  .section01 .tokenomics .tag h1 {
    font-size: 50px;
  }
  .section01 .tokenomics .content .leftSide ul li p,
  .section01 .tokenomics .content .rightSide ul li p {
    font-size: 45px;
  }
  .section01 .tokenomics .content .center img {
    width: 400px;
  }
}

@media screen and (max-width: 1100px) {
  .header .center_content .topPart h1 {
    font-size: 200px;
    line-height: 180px;
  }
  .header .center_content .topPart h3 {
    font-size: 50px;
    text-align: center;
  }
  .header .center_content .bottomPart .image:nth-child(4),
  .header .center_content .bottomPart .image:nth-child(2) {
    display: none;
  }
  .header .center_content .bottomPart .image:nth-child(3) {
    width: 280px;
  }
  nav {
    top: 15px;
  }
  .header .center_content {
    margin-top: 140px;
  }
  .header .center_content .text02 p {
    font-size: 28px;
  }
  .header .center_content .text02 {
    bottom: 155px;
  }
  .header .bgShape {
    top: 130px;
  }
}

@media screen and (max-width: 950px) {
  .section01 .tokenomics .content {
    flex-direction: column;
    gap: 45px;
    margin: 3rem;
  }
  .section01 .tokenomics .content .center {
    left: 0;
  }
}

@media screen and (max-width: 930px) {
  .section01 .contractAddress .row02 {
    flex-direction: column;
  }
}

@media screen and (max-width: 900px) {
  .header .center_content .text02 {
    bottom: 130px;
  }
  .section01 .aboutUsSection .topPart p br {
    display: none;
  }
  .section01 .aboutUsSection {
    min-width: 90%;
    width: 90%;
  }
  .section01 .aboutUsSection .bottomPart .image02 {
    left: -60px;
  }
  .section01 .aboutUsSection .bottomPart .image03 {
    right: -40px;
  }
  .section01 .contractAddress {
    padding: 22px 24px 26px 24px;
  }
  .section02 .topPart p br {
    display: none;
  }
  .section02 .topPart p {
    font-size: 40px;
  }
  .section02 .topPart h1 {
    font-size: 70px;
  }
  .section02 .topPart .tag h4 {
    font-size: 50px;
  }
  .section02 .bottomPart .row01 .rightSide h1 {
    font-size: 50px;
  }
  .section02 .bottomPart .row01 .rightSide ul li {
    font-size: 28px;
  }
  .section02 .bottomPart .row01 .leftSide h1 {
    font-size: 70px;
  }
  .section02 .bottomPart .row01 .leftSide {
    width: 130px;
    height: 130px;
  }
}

@media screen and (max-width: 774px) {
  .header .center_content .text02 {
    position: relative;
    top: unset;
    bottom: unset;
    padding: 1rem 0;
  }
}

@media screen and (max-width: 760px) {
  .section01 .contractAddress .row02 .text p {
    font-size: 49px;
    line-height: 70px;
  }
  .section01 .contractAddress .row02 .copy img {
    width: 28px;
  }
}

@media screen and (max-width: 660px) {
  .section01 {
    top: -5px;
  }
  .section01 .contractAddress {
    margin-top: 160px;
  }
  .section01 .contractAddress .row02 .text {
    min-height: 70px;
    height: unset;
  }
  .section01 .contractAddress .row02 .text p {
    word-break: break-all;
  }
  .section01 .image01 {
    top: -80px;
  }
  .section01 .contractAddress .row03 {
    gap: 18px;
    margin-top: 40px;
  }
  .section01 .contractAddress .row03 .mail img,
  .section01 .contractAddress .row03 .twitter img {
    width: 32px;
  }
  .section01 .contractAddress h1 {
    font-size: 64px;
  }
  .section01 .aboutUsSection .topPart .mainHeading {
    font-size: 50px;
    text-align: center;
  }
  .section01 .aboutUsSection .topPart p {
    font-size: 32px;
  }
  .section01 .aboutUsSection .bottomPart .image02 img,
  .section01 .aboutUsSection .bottomPart .image03 img {
    width: 180px;
  }
  .section01 .aboutUsSection .bottomPart .image02 {
    left: 0px;
    top: -40px;
  }
  .section01 .aboutUsSection .bottomPart .image03 {
    right: 0px;
  }
  .section01 .aboutUsSection .bottomPart .image03 {
    top: -50px;
  }
  .section01 .image01 img,
  .section01 .aboutUsSection .bottomPart img {
    width: 280px;
  }
  .section01 .aboutUsSection {
    gap: 50px;
  }
  .section01 .tokenomics {
    padding-top: 100px;
  }
}

@media screen and (max-width: 620px) {
  .header .bgShape {
    top: unset;
    bottom: 0;
  }
  .header .center_content .topPart h1 {
    font-size: 130px;
    line-height: 125px;
  }
  .header .center_content .topPart h3 {
    font-size: 33px;
  }
  .header .center_content .bottomPart .image:nth-child(3) {
    width: 200px;
  }
  .header .center_content .text02 p {
    font-size: 24px;
  }
  nav .center_content .logo img {
    width: 56px;
    height: 56px;
  }
  .hamburger {
    width: 22px;
  }
  .header .center_content {
    margin-top: 100px;
  }
  .header {
    position: relative;
  }
  .mobileNav .logo img {
    width: 56px;
    height: 56px;
  }
  .mobileNav .closeIcon {
    width: 22px;
  }
  .mobileNav .logo {
    top: 15px;
    left: 31px;
  }
  .mobileNav .closeIcon {
    top: 29px;
    right: 30px;
  }
  .mobileNav .navItems li a {
    font-size: 40px;
  }
  .mobileNav .btn01 span {
    font-size: 40px;
  }
  .mobileNav .btn01 {
    padding: 5px 19px 0px 25px;
    box-shadow: 0 6px 6px 0 var(--white-color);
  }
}

@media screen and (max-width: 600px) {
  .section02 {
    top: -130px;
  }
  .section02 .topPart {
    margin-top: 270px;
  }
  .section02 .topPart h1 {
    font-size: 50px;
  }
  .section02 .topPart p {
    font-size: 28px;
  }
  .section02 .topPart .tag h4 {
    font-size: 40px;
  }
  .section02 .bottomPart {
    width: 90%;
  }
  .section02 .bottomPart .row01 {
    flex-direction: column;
  }
  .section02 .bottomPart .row01 {
    align-items: flex-start;
  }
  .section02 .bottomPart .row01 .leftSide {
    width: 80px;
    height: 80px;
  }
  .section02 .bottomPart .row01 .leftSide h1 {
    font-size: 50px;
    top: 6px;
  }
  .section02 .bottomPart .row01 .rightSide h1 {
    font-size: 45px;
  }
  .section02 .bottomPart .row03 {
    flex-direction: column-reverse;
  }
  .section02 .image04 img,
  .section02 .image05 img,
  .section02 .image06 img,
  .section02 .image07 img {
    width: 130px;
  }
  .section02 .bottomPart .row01 {
    margin-bottom: 3rem;
    gap: 30px;
  }
  .section02 .bottomPart .row04 {
    margin: 0 !important;
  }
  .section03 .community .rightSide img {
    width: 100%;
  }
  .section03 .community .leftSide h1 {
    font-size: 90px;
  }
  .section03 .community .leftSide .bottomPart .btn01 {
    font-size: 40px;
  }
  .section03 .community .leftSide .bottomPart .mail,
  .section03 .community .leftSide .bottomPart .twitter {
    width: 70px;
    height: 70px;
  }
  .section03 .community .leftSide .bottomPart .mail img,
  .section03 .community .leftSide .bottomPart .twitter img {
    width: 32px;
  }
  .section02 .bottomPart {
    margin-bottom: 0px;
  }
  .section03 .community .rightSide {
    top: -35px;
  }

  #loading {
    width: 150px;
    height: 150px;
  }
  .inner-shadow {
    width: 100px; /* 80% of 250px */
    height: 100px;
    margin-left: -100px; /* half of inner-shadow width */
    margin-top: -100px; /* half of inner-shadow height */
  }
  .hold {
    clip: rect(0px, 150px, 150px, 75px);
  }
  .fill {
    clip: rect(0px, 75px, 150px, 0px);
  }
  .percent {
    font-size: 24px;
  }
  .noSelect {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .noSelect:focus {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
  }
  :focus {
    outline: none !important;
  }
}

@media screen and (max-width: 500px) {
  .section03 .community .leftSide h1 {
    font-size: 55px;
    text-shadow: 0 2px 0px #000;
    line-height: 35px;
  }
  .section03 .community {
    padding-bottom: 0;
  }
  .section03 .community .leftSide .bottomPart {
    flex-direction: column;
  }
  .section03 .community .leftSide .bottomPart div.icons {
    display: flex;
    gap: 18px;
  }
  footer h1 {
    font-size: 28px;
  }
  footer {
    margin: 48px 0 28px;
  }
  .section03 .community .leftSide .bottomPart .mail,
  .section03 .community .leftSide .bottomPart .twitter {
    width: 60px;
    height: 60px;
  }
  .section03 .community {
    padding: 25px 10px 0px 10px;
  }
  .section03 .community .leftSide .bottomPart .btn01 {
    padding: 6px 20px 0 20px;
  }

  .section02 .bottomPart .row01 .leftSide {
    width: 65px;
    height: 65px;
  }
  .section02 .bottomPart .row01 .rightSide h1 {
    font-size: 40px;
  }
  .section02 .bottomPart .row01 .rightSide {
    gap: 10px;
  }
  .section02 .bottomPart .row01 {
    margin-bottom: 2rem;
    gap: 25px;
  }
  .section02 .topPart {
    margin-top: 220px;
  }
  .section01 .contractAddress {
    padding: 18px 20px 22px 20px;
  }
  .section01 .contractAddress .row02 .text {
    padding: 0 18px 0 18px;
  }
  .section01 .contractAddress .row02 {
    gap: 22px;
    margin-top: 26px;
  }
  .section01 .contractAddress .row03 {
    gap: 18px;
    margin-top: 50px;
  }
  .section01 .image01 img,
  .section01 .aboutUsSection .bottomPart img {
    width: 170px;
  }
  .section01 .aboutUsSection .topPart .tag,
  .section01 .tokenomics .tag {
    padding: 6px 20px 0 20px;
  }
  .section01 .tokenomics {
    padding-top: 70px;
  }
  .section01 .tokenomics .content .leftSide ul li p,
  .section01 .tokenomics .content .rightSide ul li p {
    font-size: 30px;
  }
  .section01 .tokenomics .content .leftSide ul,
  .section01 .tokenomics .content .rightSide ul {
    gap: 42px;
  }
  .section01 .tokenomics .content .leftSide ul li p::before,
  .section01 .tokenomics .content .rightSide ul li p::before {
    top: -14px;
    left: -19px;
  }
  .section02 .topPart .tag {
    padding: 6px 20px 0 20px;
  }
  .section02 .topPart h1 {
    font-size: 45px;
  }
  .section02 .topPart p {
    font-size: 26px;
  }
  .section02 {
    gap: 75px;
  }
  .section02 .bottomPart .row01 .rightSide ul li {
    font-size: 26px;
  }
  .section02 .bottomPart .row01 .rightSide h1 {
    font-size: 32px;
  }
  .section01 {
    padding-bottom: 95px;
  }
}

@media screen and (max-width: 450px) {
  .section01 .contractAddress h1 {
    font-size: 45px;
  }
  .section01 .contractAddress .row02 .text p {
    font-size: 34px;
    line-height: 34px;
    padding-top: 5px;
  }
  .section01 .contractAddress .row02 .copy {
    width: 95px;
    height: 60px;
  }
  .section01 .contractAddress .row02 .copy img {
    width: 22px;
  }
  .section01 .contractAddress .row03 .mail,
  .section01 .contractAddress .row03 .twitter {
    width: 60px;
    height: 60px;
  }
  .section01 .image01 {
    top: -40px;
  }
  .section01 .aboutUsSection .topPart .mainHeading {
    font-size: 40px;
  }
  .section01 .aboutUsSection .topPart p {
    font-size: 26px;
  }
  .section01 .aboutUsSection .topPart .tag h1 {
    font-size: 40px;
  }
  .section01 .aboutUsSection .topPart .mainHeading {
    margin-top: 28px;
    line-height: 28px;
    margin-bottom: 6px;
  }
  .section01 .aboutUsSection .bottomPart .image02 img,
  .section01 .aboutUsSection .bottomPart .image03 img {
    display: none;
  }
  .section01 .tokenomics .tag h1 {
    font-size: 40px;
  }
  .section01 .tokenomics .content .leftSide ul li p,
  .section01 .tokenomics .content .rightSide ul li p {
    font-size: 40px;
  }
  .section01 .tokenomics .content .center {
    position: unset;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .section01 .tokenomics .content .center img {
    width: 90%;
  }
  .section01 .tokenomics .content .leftSide,
  .section01 .tokenomics .content .rightSide {
    width: 80%;
  }
}

@media screen and (max-width: 400px) {
  .header .center_content .topPart h1 {
    font-size: 80px;
    line-height: 84px;
  }
  .header .center_content .topPart h3 {
    font-size: 24px;
  }
  .header .center_content .bottomPart .image:nth-child(3) {
    width: 170px;
  }
  .header .center_content .text02 p {
    font-size: 20px;
  }
  .hamburger {
    width: 19px;
  }
  .mobileNav .closeIcon {
    width: 19px;
  }
  nav .center_content .logo img,
  .mobileNav .logo img {
    width: 46px;
    height: 46px;
  }
  .mobileNav .logo {
    left: 19px;
  }
  .mobileNav .closeIcon {
    top: 26px;
    right: 19px;
  }
  .mobileNav .navItems li a {
    font-size: 34px;
  }
  .mobileNav .btn01 span {
    font-size: 34px;
  }
}
