@charset "UTF-8";

@font-face {
  font-family: "Evogria";
  src: url("./fonts/Evogria.otf");
}
@font-face {
  font-family: "Evogria Italic";
  src: url("./fonts/Evogria Italic.otf");
}
@font-face {
  font-family: "DS-Digital";
  src: url("./fonts/DS-DIGI.TTF");
}
@font-face {
  font-family: "DS-Digital-Bold";
  src: url("./fonts/DS-DIGIB.TTF");
}

:root {
  --font-digital: "DS-Digital";
  --color-primary: #7ae7ff;
}

* {
  /* border: 1px dotted lightyellow; */
  scroll-behavior: smooth;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #000;
  font-family: Evogria, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  -ms-overflow-style: "none";
  scrollbar-width: "none";
}

body::-webkit-scrollbar {
  display: "none";
}

h2 {
  font-size: 48px;
  font-family: "Evogria Italic", sans-serif;
  line-height: 60px;
  margin: 0 auto 18px;
  font-weight: 400;
  text-transform: uppercase;
}

h3 {
  text-transform: uppercase;
  font-size: 28px;
  font-family: "Evogria Italic", sans-serif;
  line-height: 32px;
  margin: 0 0 14px;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #fff;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.digital-font {
  font-family: var(--font-digital);
}

.primary-color {
  color: var(--color-primary);
}

.desc {
  font-size: 18px;
  line-height: 30px;
}

.mobile-menu {
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 60vw;
  background: url("/assets/bg-hero.png") center top;
  background-size: cover;
}

.navbar {
  height: 125px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1520px;
  padding: 0 15px;
  margin: 0 auto;
}
.navbar .burger,
.navbar .closeButton {
  width: 70px;
  height: 70px;
  display: none;
  align-items: center;
}

.navbar a {
  font-size: 15px;
  height: 50px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* .navbar a:hover {
  text-decoration: underline;
  color: #7ae7ff;
} */

.primary-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.primary-menu a {
  padding: 5px 0;
  margin: 0 25px;
  white-space: nowrap;
}

.navbar .icons {
  display: flex;
  padding: 0;
  list-style: none;
}
.navbar .icons a {
  margin: 0 14px 0;
}
/* Fix Safari */
.hero {
  margin-top: 115px;
  margin-bottom: 142px;
  display: flex;
  align-items: center;
}

.hero .robot {
  background-image: url("./robot.png");
  width: 567px;
  height: 567px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  position: relative;
  flex-shrink: 0;
  background-size: cover;
}

.hero .robot .block {
  position: relative;
  z-index: -1;
  width: 113px;
  height: 113px;
  border: 1px solid #ffffff;
  opacity: 0.2;
}

.hero .robot .corner {
  position: absolute;
  width: 29px;
  height: 29px;
}
.hero .robot .corner.right-top {
  right: 0;
  top: 0;
  border-right: 5px solid #7ae7ff;
  border-top: 5px solid #7ae7ff;
}
.hero .robot .corner.right-bottom {
  right: 0;
  bottom: 0;
  border-right: 5px solid #7ae7ff;
  border-bottom: 5px solid #7ae7ff;
}
.hero .robot .corner.left-top {
  left: 0;
  top: 0;
  border-left: 5px solid #7ae7ff;
  border-top: 5px solid #7ae7ff;
}
.hero .robot .corner.left-bottom {
  left: 0;
  bottom: 0;
  border-left: 5px solid #7ae7ff;
  border-bottom: 5px solid #7ae7ff;
}
.hero .text {
  padding-left: 30px;
}
.hero .text .heading {
  font-size: 72px;
  font-family: "Evogria Italic", sans-serif;
  line-height: 88px;
  margin-bottom: 28px;
  max-width: 600px;
}
.hero .text .desc {
  max-width: 534px;
  margin-bottom: 49px;
}
.hero .text .button {
  position: relative;
  display: inline-block;
  text-align: center;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  padding: 0 32px;
  color: #000;
  text-transform: uppercase;
}
.hero .text .button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #7ae7ff;
  clip-path: polygon(
    0 0,
    0 calc(100% - 12px),
    18px 100%,
    100% 100%,
    100% 12px,
    calc(100% - 18px) 0
  );
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hero .text .button-text {
  position: relative;
  z-index: 1;
}
.hero .text .button:hover:before {
  transform: scale(1.05);
}

.hero .testnet-button-wrapper-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: row;
}

.hero .testnet-button-wrapper-4 a {
  margin-bottom: 8px;
  margin-top: 8px;
  min-width: 274px;
}

@media (max-width: 600px) {
  .hero .testnet-button-wrapper-4 {
    flex-direction: column;
  }
}

.section-ongoing {
  margin: 180px auto 80px;
  background-image: url("/assets/advisor-grid.png");
}
.section-ongoing .border {
  background-size: cover;
  height: 14px;
  width: 100%;
}
.section-ongoing .border.top {
  background-image: url("/assets/advisor-border-top.svg");
}
.section-ongoing .border.bottom {
  background-image: url("/assets/advisor-border-bottom.svg");
}

.section-ongoing .main {
  text-align: center;
  padding: 100px 15px;
}
.section-ongoing .main .sub-title {
  font-size: 24px;
}
.section-ongoing .main .heading {
  margin: 10px 0 27px;
}
.section-ongoing .main .digital-font {
  margin-top: 55px;
  font-size: 90px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.airdrop {
  height: 890px;
  position: relative;
  padding-top: 100px;
}
.airdrop .stars-left {
  position: absolute;
  top: 210px;
  left: 0;
  z-index: -2;
}
.airdrop .ufo {
  position: absolute;
  top: 125px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
.airdrop .ufo-ellipse {
  position: absolute;
  top: 125px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}
.airdrop .stars-right {
  position: absolute;
  top: 210px;
  right: 0;
  z-index: -2;
}
.airdrop .ground {
  position: absolute;
  top: 375px;
  left: 0;
  width: 100%;
  height: 33vw;
  z-index: -1;
  background: url("/assets/bg-ground.png") center center;
  background-size: cover;
}
.airdrop .desc {
  width: 360px;
  margin: 0 auto 267px;
  text-align: center;
}
.airdrop .desc.follow {
  margin-bottom: 100px;
}
.airdrop .winners {
  font-family: DS-Digital, sans-serif;
  font-size: 120px;
  line-height: 120px;
  letter-spacing: 0.3em;
  text-align: center;
  margin-bottom: 69px;
}
.airdrop a {
  color: #7ae7ff;
  text-decoration: underline;
}

.airdrop h2 {
  text-align: center;
}

/* tokenomics */
.tokenomics {
  position: relative;
  padding-top: 100px;
  text-align: center;
}

.tokenomics h2 {
  text-align: center;
}

.tokenomics .bg {
  position: absolute;
  left: 0;
  top: 0px;
  z-index: -1;
  background-image: url("/assets/bg-tokenomics.png");
  width: 100%;
  height: 100%;
  background-size: cover;
}

.tokenomics .wrapper {
  max-width: 1290px;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tokenomics .wrapper .chart {
  flex-basis: 50%;
  min-width: 567px;
  min-height: 567px;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-content: center;
  position: relative;
  flex-shrink: 0;
  background-size: cover;
  flex-direction: column;
  padding-top: 4rem;
}

.tokenomics .wrapper .chart .chart-title {
  color: #7ae7ff;
  margin-bottom: 2.5rem;
}

.tokenomics .wrapper .chart .chart-wrapper {
  position: relative;
  max-width: 255px;
  margin-left: auto;
  margin-right: auto;
}

.tokenomics .wrapper .chart .chart-wrapper .percent-30,
.tokenomics .wrapper .chart .chart-wrapper .percent-70 {
  position: absolute;
  width: 195px;
}

.tokenomics .wrapper .chart .chart-wrapper .title {
  font-family: "DS-Digital", sans-serif;
  font-size: 58px;
  line-height: 40px;
  font-weight: 400;
}

.tokenomics .wrapper .chart .chart-wrapper .text {
  font-size: 15px;
  font-weight: 400;
  margin-top: 14px;
}

.tokenomics .wrapper .chart .chart-wrapper .percent-30 {
  text-align: left;
  top: -30px;
  right: -205px;
}

.tokenomics .wrapper .chart .chart-wrapper .percent-70 {
  text-align: right;
  color: #7ae7ff;
  bottom: -40px;
  left: -200px;
}

.tokenomics .wrapper .cards {
  min-width: 500px;
  min-height: 400px;
  text-align: center;
}

.tokenomics .wrapper .cards .nft-supply {
  position: relative;
  width: 530px;
  height: 320px;
  text-align: left;
  margin-bottom: 60px;
}

.tokenomics .wrapper .cards .nft-supply .frame {
  position: absolute;
  top: 0;
  left: 0;
  margin: -45px 0 0 -40px;
  z-index: -1;
}

.tokenomics .wrapper .cards .nft-supply .title h3 {
  font-size: 28px;
}

.tokenomics .wrapper .cards .nft-supply .text {
  display: flex;
  justify-contain: center;
  align-items: center;
  margin-top: 20px;
  width: 495px;
}
.tokenomics .wrapper .cards .nft-supply .icon {
  margin-right: 10px;
}
.tokenomics .wrapper .cards .nft-supply .text .desc {
  font-size: 18px;
  color: #ababab;
}
.tokenomics .wrapper .cards .desc-bottom {
  width: 400px;
  font-style: italic;
  font-size: 15px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* end tokenomics */

/* staking */

.staking {
  max-width: 1290px;
  margin: 50px auto 0;
  padding-bottom: 40px;
}

.staking .main {
  width: 100%;
  /* height: 522px; */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.staking .main .card {
  position: relative;
  width: 400px;
  height: 475px;
  text-align: left;
  margin-right: 125px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  /* align-items: stretch;
justify-content: space-between; */
}
.staking .main .card .spacer {
  /* background-color:yellow; */
  /* height: 100%; */
  flex: 1;
  justifyself: "stretch";
  alignself: "stretch";
}

.staking .main .card .frame {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  z-index: -1;
}

.staking .main .card .title h3 {
  font-size: 28px;
}

.staking .main .card .text {
  display: flex;
  justify-contain: center;
  align-items: center;
  margin-top: 20px;
  width: 310px;
}
.staking .main .card .icon {
  margin-right: 10px;
}
.staking .main .card .text .desc {
  font-size: 18px;
  color: #ababab;
}
.staking .main .card .desc-bottom-title {
  font-size: 18px;
  margin-bottom: 14px;
}

.staking .main .info-cols {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.staking .main .info-1,
.staking .main .info-2 {
  position: relative;
  min-width: 340px;
  /* height: 280px; */
  /* margin-right: 30px; */

  display: flex;
  justify-content: start;
  flex-direction: column;
}

.staking .main .info-1 .title h3,
.staking .main .info-2 .title h3 {
  font-size: 24px;
  text-align: left;
  margin-bottom: 56px;
  color: #7ae7ff;
}

.staking .main .info-2 .title h3 {
  margin-bottom: 41px;
}

.staking .main .info-1 .text {
  display: flex;
  justify-content: space-between;
}

.staking .main .info-1 .text ~ .text {
  margin-top: 45px;
}

.staking .main .info-2 .level {
  display: flex;
  justify-content: start;
  height: 60px;
}

.staking .main .info-2 .level ~ .level {
  margin-top: 19px;
}

.staking .main .info-2 .level .percent {
  font-family: DS-Digital, sans-serif;
  font-size: 58px;
  margin-right: 8px;
}
.staking .main .info-2 .level .desc {
  text-align: left;
  height: 60px;
}
.staking .main .info-2 .level .desc .desc1 {
  color: #7ae7ff;
}
.staking .main .info-2 .level .desc .desc2 {
  font-size: 14px;
}

/* end staking */

.nft {
  position: relative;
  padding-top: 100px;
}
.nft .bg {
  position: absolute;
  left: 0;
  top: 100px;
  z-index: -1;
  background-image: url("/assets/bg-nft.png");
  width: 100%;
  height: 100%;
}
.nft .wrapper {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.nft .wrapper .text {
  flex-basis: 50%;
}
.nft .wrapper .text .inner {
  max-width: 405px;
  margin-bottom: 150px;
}
.nft .wrapper .text .desc {
  font-size: 15px;
  max-width: 205px;
}
.nft .wrapper .cards {
  height: 900px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.nft .wrapper .cards .card {
  position: relative;
  padding: 41px 20px 0;
  width: 273px;
  margin: 0 32px 32px 0;
}

.nft .wrapper .cards .card .icon {
  margin-left: 6px;
}
.nft .wrapper .cards .connect-wallet .icon,
.nft .wrapper .cards .list-nft .icon {
  margin-bottom: 32px;
}
.nft .wrapper .cards .create-nft .icon {
  margin-bottom: 26px;
}
.nft .wrapper .cards .create-collection .icon {
  margin-bottom: 23px;
}

.nft .wrapper .cards .card__desc {
  color: #ababab;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 12px;
}
.nft .wrapper .cards .connect-wallet {
  height: 299px;
  margin-top: 70px;
  background-image: url("/assets/frame-connect-wallet.svg");
}
.nft .wrapper .cards .create-nft {
  height: 396px;
  background-image: url("/assets/frame-create-nft.svg");
}

.nft .wrapper .cards .create-nft h3 {
  max-width: 230px;
}

.nft .wrapper .cards .create-collection {
  height: 324px;
  background-image: url("/assets/frame-create-collection.svg");
}
.nft .wrapper .cards .list-nft {
  height: 348px;
  background-image: url("/assets/frame-list-nft.svg");
}

.roadmap {
  display: flex;
  justify-content: space-between;
  height: 739px;
  align-items: center;
}
.roadmap .main {
  width: 1290px;
  height: 739px;
  position: relative;
  padding: 40px 0 0 65px;
}
.roadmap .main .grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  z-index: -1;
}
.roadmap .main .grid-lines {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}
.roadmap .main .grid-line {
  position: relative;
  width: calc(100% / 7);
}
@keyframes meteor {
  from {
    top: -100px;
  }
  to {
    top: 100%;
  }
}
.roadmap .main .grid-line:after {
  content: "";
  display: block;
  width: 1px;
  height: 85px;
  position: absolute;
  top: -100px;
  right: -2px;
  background-image: url("/assets/roadmap-grid-line.svg");
  background-position: center;
}
.roadmap .main .grid-line.one:after {
  animation: meteor 3s linear infinite;
}
.roadmap .main .grid-line.two:after {
  animation: meteor 3s linear 1s infinite;
}
.roadmap .main .grid-line.three:after {
  animation: meteor 3s linear 2s infinite;
}
.roadmap .main .grid-line.four:after {
  animation: meteor 3s linear 3s infinite;
}
.roadmap .main .grid-line.five:after {
  animation: meteor 3s linear 4s infinite;
}
.roadmap .main .grid-line.six:after {
  animation: meteor 3s linear 5s infinite;
}
.roadmap .main h2 {
  margin-bottom: 17px;
}
.roadmap .main .desc {
  margin-bottom: 68px;
  width: 650px;
  font-size: 15px;
  line-height: 24px;
}
.roadmap .main .cards {
  display: flex;
}
.roadmap .main .cards .inner {
  padding: 36px 20px 0 26px;
  width: 361px;
  background-repeat: no-repeat;
}
.roadmap .main .cards .q1 .inner {
  background-image: url("./roadmap-frame-small.svg");
  height: 471px;
}
.roadmap .main .cards .q2 .inner {
  background-image: url("./roadmap-frame-big.svg");
  margin: 50px 35px 0 50px;
  height: 414px;
}
.roadmap .main .cards .q3 .inner {
  background-image: url("./roadmap-frame-big-q3.svg");
  margin-top: 100px;
  height: 350px;
}
.roadmap .main .cards .item {
  display: flex;
  gap: 7px;
  margin-top: 25px;
  color: #ababab;
}

.partners {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  margin-bottom: 151px;
}
.partners .bg {
  position: absolute;
  top: 0;
  z-index: -2;
  width: 100%;
  height: 50vw;
  background-image: url("/assets/bg-partners.png");
  background-size: cover;
}

.partners .partner .inner {
  width: 316px;
  height: 137px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.partners .partner .inner:hover {
  transform: translateY(-10px);
}

.partners .subwallet .inner {
  margin: 0 50px 0 130px;
  /* new partner edit */
  background: url("/assets/partners-grid-subwallet.svg") no-repeat center center;
}
.partners .ventures32 .inner {
  background: url("/assets/partners-grid-subwallet.svg") no-repeat center center;
}

.team {
  padding-top: 100px;
}
.team h2 {
  text-align: center;
}
.team .desc {
  /* margin-bottom: 24px; */
  text-align: center;
}

.team .carousel-wrapper {
  max-width: 1290px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.team .carousel-wrapper .arrow {
  width: 36px;
  height: 56px;
  background: url("/assets/icon-arrow.svg") no-repeat center center;
  position: absolute;
  top: 89px;
  cursor: pointer;
  z-index: 1;
}
.team .carousel-wrapper .left {
  left: 10px;
}
.team .carousel-wrapper .right {
  right: 10px;
  transform: rotate(180deg);
}

.team .carousel {
  display: flex;
  justify-content: center;
  padding-bottom: 194px;
  min-width: 1290px;
  /* min-width: 1806px; */
  transition: all 0.5s ease-in-out;
}
.team .carousel .member {
  width: 258px;
  position: relative;
}
.team .carousel .member .circle {
  position: absolute;
  top: -40px;
  left: -6px;
  background-image: url("/assets/team-jedi-circle.png");
  width: 273px;
  height: 270px;
  z-index: -1;
}
.team .carousel .member img {
  display: block;
  margin: 40px auto 25px;
}
.team .carousel .member img.brian {
  margin: 20px auto 45px;
}
.team .carousel .member .name {
  text-align: center;
  margin-bottom: 10px;
}
.team .carousel .member .position {
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  color: #ababab;
}
/* New  */
.team .member {
  margin-top: 26px;
  margin-left: 40px;
  margin-right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}
.team .member img {
  width: 150px;
  margin-bottom: 25px;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.team .member .name {
  font-size: 22px;
}
.team .member .position,
.team .member .position2 {
  color: #ababab;
  font-size: 15px;
}
.team .member .circle {
  position: absolute;
  top: 6px;
  left: 20px;
  background-image: url("/assets/team-jedi-circle.svg");
  width: 270px;
  height: 270px;
  z-index: -1;
}
.team .team-carousel.team-scrolling-carousel .member .circle {
  position: absolute;
  top: 20px;
  left: -20px;
  background-image: url("/assets/team-jedi-circle.svg");
  width: 270px;
  height: 270px;
  z-index: -1;
  opacity: 0;
  transition: all 0.25s ease-in-out;
  filter: drop-shadow(0px 0px 25px #7ae7ff);
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.team .team-carousel.team-scrolling-carousel .member {
  position: relative;
}
.team .team-carousel.team-scrolling-carousel .member:hover .circle {
  opacity: 100;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  top: 0;
}
.team .team-carousel.team-scrolling-carousel .member:hover img {
  transform: translateY(-20px);
}
.team .team-carousel.team-scrolling-carousel button {
  display: none;
}

.team .team-carousel {
  position: relative;
}
.team .team-carousel .arrow {
  display: none;
}

.advisors {
  width: 1164px;
  height: 551px;
  margin: 120px auto 0;
  background-image: url("/assets/advisor-grid.png");
}
.advisors .border {
  background-size: cover;
  height: 14px;
  width: 100%;
}
.advisors .border.top {
  background-image: url("/assets/advisor-border-top.svg");
}
.advisors .border.bottom {
  background-image: url("/assets/advisor-border-bottom.svg");
}

.advisors .main {
  height: 522px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.advisors .main .heading {
  width: 311px;
  margin-right: 115px;
  z-index: 1;
}
.advisors .main .persons {
  display: flex;
}
.advisors .main .person.hieu {
  top: -20px;
}
.advisors .main .person.thong {
  background-image: url("/assets/advisor-frame.svg");
}

.advisors .main .person {
  position: relative;
  width: 273px;
  height: 280px;
  margin-right: 30px;
}
.advisors .main .person .mobile {
  display: none;
}
.advisors .main .bg {
  position: absolute;
}
.advisors .main .person.hieu .bg {
  top: -116px;
  left: -120px;
}
.advisors .main .content {
  position: relative;
  z-index: 1;
  padding: 20px;
}
.advisors .main .content img {
  margin-bottom: 26px;
}
.advisors .main .content .name {
  font-family: "Evogria Italic", sans-serif;
  font-size: 24px;
  margin-bottom: 9px;
}
.advisors .main .content .desc {
  font-size: 15px;
  color: #ababab;
}
.advisors .main .content .desc a {
  color: #7ae7ff;
}

.subscribe {
  position: relative;
  padding-top: 240px;
  padding-bottom: 240px;
}
.subscribe .bg {
  position: absolute;
  margin: auto;
  top: -130px;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url("/assets/bg-subscribe.png");
  background-position: center top;
}
.subscribe h2 {
  text-align: center;
  margin-bottom: 18px;
}
.subscribe .desc {
  text-align: center;
  margin-bottom: 80px;
}
.subscribe .inputs {
  display: flex;
  justify-content: center;
}
input {
  border: 0;
  padding: 20px 18px;
  font-family: Evogria, sans-serif;
  font-size: 16px;
}
input::placeholder {
  font-family: Evogria, sans-serif;
  font-size: 16px;
  color: #ababab;
}
input:focus {
  outline: none;
}
.subscribe .inputs input {
  width: 414px;
  -webkit-border-radius: 0px;
}
.pageclip-form {
  transform: translateX(9px);
}
.subscribe .inputs .button,
.subscribe .inputs button {
  padding: 0 35px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
  cursor: pointer;
  position: relative;
  transform: translateX(-18px);
  background-color: transparent;
}
.subscribe .inputs button span {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-family: Evogria, sans-serif;
}
.social {
  display: flex;
  justify-content: center;
  /* gap: 20px; */
  margin-bottom: 60px;
}
.social > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #282828;
  cursor: pointer;
  margin: 0 10px 0;
  /* fix safari  */
}
.social > div:hover {
  background: #7ae7ff;
  box-shadow: 0 0 24px 0 #7ae7ffb2;
}
.social > div .icon {
  width: 27px;
  height: 27px;
}
.social .telegram .icon {
  background: url("/assets/subscribe-telegram.svg") no-repeat center center;
}
.social .telegram:hover .icon {
  background: url("/assets/subscribe-telegram-hover.svg") no-repeat center
    center;
}

/* LinkedIn Icon */

.team-carousel .linkedin .icon {
  background: url("/assets/linkedin-icon.svg") no-repeat center center;
  width: 27px;
  height: 27px;
  margin-top: 8px;
}
.team-carousel .linkedin:hover .icon {
  background: url("/assets/linkedin-icon.svg") no-repeat center center;
  width: 27px;
  height: 27px;
  margin-top: 8px;
}
/* LinkedIn Icon */
.social .twitter .icon {
  background: url("/assets/subscribe-twitter.svg") no-repeat center center;
}
.social .twitter:hover .icon {
  background: url("/assets/subscribe-twitter-hover.svg") no-repeat center center;
}
.social .medium .icon {
  background: url("/assets/subscribe-medium.svg") no-repeat center center;
}
.social .medium:hover .icon {
  background: url("/assets/subscribe-medium-hover.svg") no-repeat center center;
}
.social .discord .icon {
  background: url("/assets/subscribe-discord.svg") no-repeat center center;
}
.social .discord:hover .icon {
  background: url("/assets/subscribe-discord-hover.svg") no-repeat center center;
}
.social .email .icon {
  background: url("/assets/subscribe-email.svg") no-repeat center center;
}
.social .email:hover .icon {
  background: url("/assets/subscribe-email-hover.svg") no-repeat center center;
}
.footer {
  padding-top: 60px;
}
.copyright {
  font-size: 15px;
  text-align: center;
  color: #ababab;
}
.copyright .copyright-break {
  display: none;
}

@media (max-width: 1366px) {
  .primary-menu a {
    margin: 0 15px;
  }
  .hero {
    margin-top: 50px;
  }
  .airdrop > img {
    width: 50%;
  }
  .roadmap {
    justify-content: center;
    height: auto;
  }
  .roadmap > img {
    display: none;
  }
  .partners .bg {
    top: 140px;
  }
}

@media (max-width: 1290px) {
  .navbar .icons {
    display: none;
  }
  .hero {
    margin-top: 0;
    margin-bottom: 100px;
  }
  .airdrop .stars-left,
  .airdrop .stars-right,
  .airdrop .ufo,
  .airdrop .ufo-ellipse {
    top: 150px;
  }
  .airdrop .winners {
    font-size: 100px;
  }
  .roadmap {
    height: auto;
  }
  .roadmap .main {
    margin: 0 20px;
    padding-left: 35px;
  }
  .roadmap .main .grid {
    width: 100%;
  }
  .staking .main .card {
    margin: 0 20px;
  }

  .staking .main .card .info-cols {
    margin: 0 20px;
  }

  #staking.staking .main .info-cols {
    margin-right: 20px;
    margin-left: 60px;
  }
}

@media (max-width: 1200px) {
  .staking {
    width: 1190px;
    margin: 0 auto;
    padding-bottom: 40px;
  }

  .hero-bg {
    height: 100vw;
  }
  .section-ongoing .border {
    background-size: contain;
  }
  .airdrop {
    height: auto;
  }
  .airdrop .desc.follow {
    margin-bottom: 40px;
  }
  .nft .bg {
    width: 100%;
  }
  .nft .wrapper .text {
    flex-basis: 40%;
  }
  .nft .wrapper .cards {
    height: 850px;
  }
  .roadmap {
    padding-top: 100px;
  }
  .roadmap .main {
    height: auto;
    width: auto;
    margin: 0;
    padding: 0;
  }
  .roadmap .main .grid-lines {
    display: none;
  }
  .roadmap .main .grid {
    display: none;
  }
  .roadmap .main h2 {
    text-align: center;
  }
  .roadmap .main .desc {
    margin: 0 auto 40px;
  }
  .roadmap .main .cards {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .roadmap .main .cards .q2 .inner,
  .roadmap .main .cards .q3 .inner {
    margin: 0;
  }
  .partners {
    margin-bottom: 50px;
  }
  .partners .bg {
    top: 100px;
  }
  .team .carousel {
    gap: 0;
  }
  .advisors {
    width: auto;
    margin: 0 24px;
  }
  .advisors .border {
    background-size: contain;
  }
  .advisors .main .heading {
    margin-right: 50px;
  }

  #staking.staking .main .info-cols {
    margin-left: 1rem;
  }
}

@media (max-width: 1050px) {
  h2 {
    font-size: 32px;
    line-height: 40px;
    text-align: center;
  }
  h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 7px;
  }
  .navbar .burger,
  .navbar .closeButton {
    display: flex;
  }
  .navbar a,
  .primary-menu {
    display: none;
  }
  .navbar .icons {
    display: block;
    width: 70px;
  }
  .navbar .icons-div {
    width: 70px;
  }
  .menu {
    flex-grow: 1;
  }
  .menu > a {
    display: block;
    margin-left: 2rem;
    font-size: 32px;
    line-height: 56px;
    margin-bottom: 14px;
  }

  .hero {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 45px;
  }
  .hero .robot {
    margin-top: 30px;
    margin-bottom: 56px;
    width: 327px;
    height: 327px;
  }
  .hero .robot .block {
    width: 65px;
    height: 65px;
  }
  .hero .text .heading {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 10px;
  }
  .hero .text .desc {
    margin-bottom: 39px;
  }
  .hero .text .button {
    margin: 0 auto;
    font-size: 15px;
    height: 50px;
    line-height: 50px;
  }
  .airdrop {
    padding-top: 45px;
  }
  .section-ongoing {
    margin: 120px auto 70px;
  }
  .section-ongoing .main {
    padding: 80px 15px;
  }
  .section-ongoing .main .sub-title {
    font-size: 18px;
  }
  .section-ongoing .main .digital-font {
    margin-top: 35px;
    font-size: 70px;
  }
  .airdrop h2 {
    margin-bottom: 9px;
  }
  .airdrop .winners {
    font-family: "DS-Digital-Bold", sans-serif;
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
    letter-spacing: 0.3em;
  }
  .airdrop .desc.follow {
    margin-bottom: 40px;
  }

  .ntf {
    padding-top: 80px;
  }

  .nft .bg {
    top: 0;
  }
  .nft .wrapper {
    flex-direction: column;
  }
  .nft .wrapper .text {
    flex-basis: auto;
  }
  .nft .wrapper .text .inner {
    max-width: 270px;
    margin-bottom: 42px;
    text-align: center;
  }
  .nft .wrapper .text .desc {
    max-width: 100%;
  }
  .nft .wrapper .cards {
    height: auto;
    flex-wrap: nowrap;
    gap: 19px;
  }
  .nft .wrapper .cards .card {
    margin: 0;
    width: 329px;
    display: flex;
    padding: 27px 17px 0 0;
  }
  .nft .wrapper .cards .card__desc {
    font-size: 13px;
  }
  .nft .wrapper .cards .card .icon {
    margin: 0 16px 0 19px;
  }
  .nft .wrapper .cards .card .icon img {
    width: 40px;
    height: 40px;
  }

  .nft .wrapper .cards .connect-wallet .frame {
    margin: 0;
  }

  .nft .wrapper .cards .connect-wallet {
    order: 1;
    height: 131px;
    background-image: url("/assets/frame-mobile-connect-wallet.svg");
  }
  .nft .wrapper .cards .connect-wallet .frame {
    display: none;
  }
  .nft .wrapper .cards .create-collection {
    order: 2;
    height: 178px;
    background-image: url("/assets/roadmap-mobile-frame-big.svg");
  }
  .nft .wrapper .cards .create-nft {
    order: 3;
    height: 196px;
    background-image: url("/assets/frame-mobile-create-nft.svg");
  }
  .nft .wrapper .cards .list-nft {
    order: 4;
    height: 177px;
    background-image: url("/assets/frame-mobile-list-nft.svg");
  }

  .roadmap {
    padding-top: 56px;
  }
  .roadmap .main h2 {
    margin-bottom: 10px;
  }
  .roadmap .main .desc {
    text-align: center;
  }
  .roadmap .main .cards .q1 .inner {
    height: 360px;
    background-image: url("./roadmap-mobile-frame-small.svg");
  }
  .roadmap .main .cards .q2 .inner {
    height: 325px;
    background-image: url("./roadmap-mobile-frame-huge.svg");
  }
  .roadmap .main .cards .q3 .inner {
    height: 230px;
    background-image: url("./roadmap-mobile-frame-big-q3.svg");
  }

  .roadmap .main .cards .inner {
    width: 330px;
    padding: 27px 0 0 25px;
  }
  .roadmap .main .cards h3 {
    margin-bottom: 11px;
  }
  .roadmap .main .cards .item {
    margin-top: 0;
  }
  .roadmap .main .cards .item .text {
    font-size: 13px;
    line-height: 28px;
  }
  .partners {
    padding-top: 56px;
    flex-direction: column;
  }
  .partners .heading {
    margin-bottom: 34px;
  }
  .partners .partner {
    margin-top: 20px;
  }
  .partners .bg {
    top: 0;
    background-size: auto;
    height: 100vw;
    background-position: center top;
  }
  .partners h2 {
    margin-bottom: 10px;
  }
  .partners .heading .desc {
    font-size: 13px;
    line-height: 21px;
  }

  .advisors .main {
    flex-direction: column;
  }
  .advisors .main .heading {
    margin-right: 0;
  }
  .advisors .main .heading h2 {
    margin-bottom: 10px;
  }
  .advisors .main .heading .desc {
    text-align: center;
    margin-bottom: 50px;
  }
  .advisors .main .persons {
    gap: 25px;
  }
  .advisors .main .person.hieu {
    top: 0;
  }
  .advisors .main .person {
    margin-right: 0;
  }

  .tokenomics .wrapper {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .tokenomics .wrapper .chart .chart-wrapper .percent-30,
  .tokenomics .wrapper .chart .chart-wrapper .percent-70 {
    width: 150px;
  }
  .tokenomics .wrapper .chart .chart-wrapper .percent-30 {
    right: -164px;
  }
  .tokenomics .wrapper .chart .chart-wrapper .percent-70 {
    text-align: left;
    left: -120px;
  }

  .tokenomics .wrapper .chart .chart-title {
    margin-bottom: 4rem;
  }

  .tokenomics .wrapper .chart .chart-wrapper .title {
    font-size: 42px;
  }

  .tokenomics .wrapper .chart .chart-wrapper .text {
    font-size: 13px;
    margin-top: 10px;
  }

  .tokenomics .wrapper .cards {
    margin-top: 150px;
    width: 360px;
    height: 400px;
  }

  .tokenomics .wrapper .cards .desc-bottom,
  .tokenomics .wrapper .cards .nft-supply {
    width: 360px;
    margin-bottom: 60px;
    padding-left: 10px;
  }

  .tokenomics .wrapper .cards .desc-bottom {
    padding-left: 0px;
  }

  .tokenomics .wrapper .cards .nft-supply .text {
    display: flex;
    justify-contain: center;
    align-items: center;
    margin-top: 20px;
    width: 510px;
  }

  #staking.staking,
  #staking.staking .main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 380px;
  }

  #staking.staking .main .info-cols {
    display: flex;
    justify-content: space-between;
    align-items: start;
    width: 330px;
    margin-bottom: 3rem;
    order: 1;
    margin-left: 15px;
    margin-right: 15px;
  }

  #staking.staking .main .info-cols .info-1,
  #staking.staking .main .info-cols .info-2 {
    min-width: auto;
  }

  #staking.staking .main .info-cols .info-1 {
    margin-bottom: 26px;
  }

  #staking.staking .main .card {
    margin: 80px 15px;
  }
  #staking .info-cols .info-1 .text .icon {
    display: none;
  }

  #partners > div.subwallet .inner {
    margin: 0;
  }

  .tokenomics {
    padding-top: 3rem;
  }

  .tokenomics .wrapper .chart {
    padding-top: 0;
    min-width: 20rem;
    min-height: 20rem;
  }

  #staking.staking .main .info-cols {
    margin-top: 30px;
  }

  .subscribe {
    padding-top: 200px;
    padding-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .roadmap .main .desc {
    margin-bottom: 68px;
    width: 350px;
    font-size: 15px;
    line-height: 24px;
  }
  h2 {
    margin-bottom: 10px;
  }
  .nft .wrapper .text .desc,
  .desc {
    font-size: 13px;
    line-height: 21px;
  }
  .hero-bg {
    background-image: url("/assets/bg-hero-mobile.png");
    height: 217vw;
  }
  .hero .text {
    padding-left: 0;
  }
  .hero .text .desc {
    width: 310px;
  }
  .hero .text .button {
    font-size: 15px;
    height: 48px;
    line-height: 48px;
    width: 100%;
  }
  .section-ongoing {
    margin: 90px auto 40px;
  }
  .section-ongoing .main {
    padding: 70px 15px;
  }
  .section-ongoing .main .digital-font {
    font-size: 45px;
  }
  .airdrop h2 {
    width: 340px;
  }
  .airdrop > img {
    width: 100%;
  }
  .airdrop .stars-left {
    top: 110px;
  }
  .airdrop .stars-right {
    top: 300px;
  }
  .airdrop .ufo {
    top: 148px;
  }
  .airdrop .ground {
    background-image: url("/assets/bg-ground-mobile.png");
    height: 60vw;
    top: 310px;
  }
  .airdrop .desc {
    width: 300px;
    margin-bottom: 194px;
  }
  .nft {
    padding-top: 60px;
  }
  .nft .bg {
    width: 100%;
    height: 93vw;
    background-image: url("/assets/bg-nft-mobile.png");
    background-size: cover;
  }
  .nft .wrapper .text h2 {
    text-align: center;
    width: 270px;
  }
  .tokenomics {
    padding-top: 56px;
  }
  .tokenomics .wrapper {
    margin-top: 34px;
  }

  .partners .bg {
    top: 210px;
    width: 100%;
    height: 72vw;
    background-image: url("/assets/bg-partners-mobile.png");
    background-size: cover;
  }
  .partners .subwallet {
    width: 327px;
    height: 140px;
    background-size: cover;
  }
  .partners .ventures32 {
    width: 327px;
    height: 140px;
    background-size: cover;
  }
  .partners .subwallet img {
    width: 250px;
  }
  .partners .ventures32 img {
    width: 140px;
  }
  .team {
    padding-top: 56px;
  }
  .team .member {
    padding-top: 0;
  }
  .team .desc {
    /* margin-bottom: 37px; */
  }
  .team .carousel {
    /*Mobile */
    min-width: 875px;
    /* min-width: 1225px; */
  }
  .team .carousel .member img {
    width: 100px;
  }
  .team .carousel .member .circle {
    display: none;
  }

  .team .carousel .member img.team-brian-nguyen,
  .team .carousel .member img.team-ha-vu,
  .team .carousel .member img.team-frankie-kao,
  .team .carousel .member img.team-albert-tran,
  .team .carousel .member img.team-brian-nguyen,
  .team .carousel .member img.team-j,
  .team .carousel .member img {
    margin: 0 0 14px 0;
    border-radius: 100%;
  }
  .team .carousel .member {
    width: 175px;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .team .carousel .member .name {
    margin-bottom: 3px;
  }
  .team .carousel .member .position {
    font-size: 13px;
    line-height: 21px;
  }

  .advisors {
    height: 468px;
    overflow: hidden;
    padding: 0 24px;
    margin: 0 auto;
    background: none;
  }
  .advisors .wrapper {
    margin: 0 auto;
    background-image: url("/assets/advisor-mobile-grid.png");
    width: 321px;
  }
  .advisors .border {
    height: 6px;
  }
  .advisors .border.top {
    background-image: url("/assets/advisor-mobile-border-top.svg");
  }
  .advisors .border.bottom {
    background-image: url("/assets/advisor-mobile-border-bottom.svg");
  }
  .advisors .main {
    justify-content: flex-start;
    padding: 45px 0 0;
    height: 454px;
  }
  .advisors .main .heading .desc {
    width: 300px;
  }
  .advisors .main .person .mobile {
    display: block;
  }
  .advisors .main .person .desktop {
    display: none;
  }
  .advisors .main .person.thong {
    background: none;
  }
  .advisors .main .person {
    width: 150px;
    height: 218px;
  }
  .advisors .main .content .name {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 5px;
  }
  .advisors .main .content .desc {
    font-size: 13px;
    line-height: 21px;
  }
  .advisors .main .content img {
    width: 70px;
    margin-bottom: 19px;
  }
  .advisors .main .person .bg {
    top: -118px;
    left: -119px;
  }
  .subscribe .desc {
    margin-bottom: 50px;
  }
  .subscribe .bg {
    background-image: url("/assets/bg-subscribe-mobile.png");
    height: 59vw;
    top: 50px;
    background-size: contain;
  }
  .subscribe h2 {
    margin-bottom: 10px;
  }
  .subscribe .inputs input,
  .subscribe .inputs button {
    width: 217px;
    -webkit-border-radius: 0px;
  }
  .subscribe .inputs .button {
    /* width: 120px; */
  }
  .subscribe .inputs button span {
    font-size: 15px;
  }
  .subscribe .inputs input {
    -webkit-border-radius: 0px;
    border-radius: 0px;
  }

  .subscribe .inputs button {
    width: 158px;
  }
  .footer {
    max-width: 400px;
    margin: 0 auto;
    padding-top: 45px;
  }
  .FooterMenuMobile {
    margin-top: 80px;
  }
  .FooterMenuMobile .social {
    margin-bottom: 25px;
  }
  .copyright .copyright-break {
    display: block;
  }
  .copyright {
    margin-bottom: 30px;
  }
  .footer .social {
    margin-bottom: 32px;
  }

  .navbar {
    height: 90px;
  }

  .navbar .closeButton {
    margin-right: 0rem;
  }
  .team .member .circle {
    display: none;
  }

  .team .team-carousel .arrow {
    display: block;
    width: 36px;
    height: 56px;
    background: url("/assets/icon-arrow.svg") no-repeat center center;
    position: absolute;
    top: 89px;
    cursor: pointer;
    z-index: 1;
  }
  .team .team-carousel .left {
    left: -15px;
  }
  .team .team-carousel .right {
    right: -15px;
    transform: rotate(180deg);
  }

  .tokenomics .wrapper .chart .chart-wrapper .percent-30,
  .tokenomics .wrapper .chart .chart-wrapper .percent-70 {
    position: absolute;
    /* max-width: 2rem; */
  }
  .tokenomics .wrapper .chart .chart-wrapper {
    position: relative;
  }
  .tokenomics .wrapper .chart .chart-wrapper .frame {
    width: 8.25rem;
    /* margin-bottom: 16px; */
    /* text-align: right; */
  }

  .tokenomics .wrapper .chart .chart-wrapper .percent-70,
  .tokenomics .wrapper .chart .chart-wrapper .percent-30 {
    width: 8rem;
    margin-bottom: 16px;
    text-align: right;
  }

  .tokenomics .wrapper .chart .chart-wrapper .percent-30 {
    /* background-color: "yellow"; */
    text-align: left;
    top: -46px;
    right: -125px;
  }
  .tokenomics .wrapper .chart .chart-wrapper .text {
    margin-top: 0px;
  }
  .tokenomics .wrapper .chart .chart-wrapper .percent-70 {
    text-align: right;
    color: #7ae7ff;
    bottom: -65px;
    left: -108px;
    display: flex;
    flex-direction: column;
    align-items: end;
    /* justify-content:end; */
  }
  .tokenomics .wrapper .chart .chart-wrapper .title {
    font-size: 2rem;
  }
  .tokenomics .wrapper .chart .chart-wrapper .text {
    font-size: 11px;
    width: 8rem;
  }
  .tokenomics .wrapper .cards {
    margin-top: 30px;
    min-width: 330px;
    height: 400px;
  }

  .tokenomics .wrapper .cards .desc-bottom,
  .tokenomics .wrapper .cards .nft-supply {
    margin-bottom: 56px;
  }

  .tokenomics .wrapper .cards .nft-supply .frame {
    display: none;
  }

  .tokenomics .wrapper .cards .nft-supply {
    height: 290px;
    background-image: url(./frame-mobile-nft-supply.svg);
  }

  .staking .main .card {
    height: 290px;
    background-image: url(./frame-mobile-nft-supply.svg);
  }

  .tokenomics .wrapper .cards {
    width: 330px;
  }

  #staking .info-cols .info-1 .text .icon {
    display: none;
  }

  .tokenomics .wrapper .cards .desc-bottom {
    width: 330px;
  }
  .tokenomics .wrapper .cards .nft-supply {
    width: 330px;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-top: 10px;
  }
  .tokenomics .wrapper .cards .nft-supply .text {
    display: flex;
    justify-contain: center;
    align-items: center;
    margin-top: 10px;
    width: 300px;
  }

  .tokenomics .wrapper .cards .nft-supply .text .desc {
    font-size: 13px;
  }
  .tokenomics .wrapper .cards .nft-supply .title h3 {
    font-size: 18px;
  }

  #staking.staking .main .card .desc-bottom-title {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
  }
  #staking.staking,
  #staking.staking .main,
  #staking.staking .main .info-cols {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 360px;
  }

  #staking.staking .main .info-cols .info-1 {
    margin-bottom: 26px;
  }
  .staking .main .card {
    width: 330px;
    min-width: 330px;
  }
  #staking.staking .main .card {
    margin-left: 0px;
    padding-left: 10px;
    padding-top: 14px;
    order: 2;
  }

  #staking.staking .main .card .text .desc,
  #staking.staking .main .card .desc-bottom-text {
    font-size: 13px;
  }
  #staking.staking .main .card .desc-bottom-text {
    width: 300px;
  }
  #staking.staking .main .card .title h3,
  #staking.staking .main .card .desc-bottom-title {
    font-size: 18px;
  }

  #staking.staking .main .card .frame {
    display: none;
  }
  #partners > div.subwallet {
    margin: 0;
  }

  #staking.staking .main .info-cols {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
    width: 330px;
    order: 1;
    margin: 0 0 56px;
  }

  #staking.staking .main .info-cols .info-1,
  #staking.staking .main .info-cols .info-2 {
    min-width: auto;
    margin: 0 1rem 0 0.75rem;
    padding: 0;
  }

  #staking.staking .main .info-cols .info-1 {
    margin-right: 0;
  }

  .staking .main .info-1 .title h3,
  .staking .main .info-2 .title h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  #staking.staking .main .info-1 .text {
    margin-top: 0px;
    height: 54px;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
  }
  #staking.staking .main .info-1 .text ~ .text {
    margin-top: 19px;
  }
  .staking .main .info-2 .level {
    height: 54px;
  }
  .staking .main .info-2 .level .percent {
    font-size: 3rem;
  }

  #staking.staking .main .card {
    margin: 0 15px;
  }

  #staking.staking .main .card > div {
    margin-left: 12px;
  }
  #staking.staking .main .card .title {
    margin-top: 4px;
  }
  .staking {
    padding-bottom: 0;
  }
  .partners {
    padding-top: 56px;
    margin-bottom: 0;
  }

  .tokenomics .wrapper .cards .nft-supply > div {
    margin-left: 10px;
  }

  .tokenomics .wrapper .cards .nft-supply .title {
    margin-top: 10px;
  }
  section.subscribe .inputs form button {
    width: 110px;
  }

  .tokenomics .wrapper .chart .chart-title {
    margin-bottom: 40px;
  }
}

/* Pageclip */
.pageclip-form {
  position: relative;
  display: flex;
}
.pageclip-form__success {
  display: none !important;
  /* position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  text-align: center;
  background: hsla(0, 0%, 100%, 0.8);
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; */
}
.pageclip-form__success__message {
  display: none !important;
  /* font-size: 2rem;
  text-align: center;
  transform-origin: center;
  animation: 0.3s linear none a; */
}
.pageclip-form__submit {
  position: relative;
}
.pageclip-form__submit:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #7ae7ff;
  clip-path: polygon(
    0 0,
    0 calc(100% - 12px),
    18px 100%,
    100% 100%,
    100% 12px,
    calc(100% - 18px) 0
  );
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.pageclip-form__submit:hover:after {
  transform: scale(1.05);
}
.pageclip-form__submit.pageclip-form__submit--dark-loader:after {
  border-color: rgba(0, 0, 0, 0.3);
  border-left-color: #000;
}
.pageclip-form__submit.pageclip-form__submit--start-loading:after {
  animation: 0.1s linear none a;
}
.pageclip-form__submit.pageclip-form__submit--start-loading > span {
  animation: 0.1s linear none c;
}
.pageclip-form__submit.pageclip-form__submit--loading:after {
  transform: translateZ(0);
  animation: 1.2s linear infinite d;
}
.pageclip-form__submit.pageclip-form__submit--loading > span {
  opacity: 0;
}
.pageclip-form__submit.pageclip-form__submit--end-loading:after {
  animation: 0.1s linear none b;
}
.pageclip-form__submit.pageclip-form__submit--end-loading > span {
  animation: 0.1s linear reverse c;
}

@keyframes a {
  0% {
    transform: scale(0.01) translateZ(0);
  }
  50% {
    transform: scale(1.2) translateZ(0);
  }
  to {
    transform: scale(1) translateZ(0);
  }
}
@keyframes b {
  0% {
    transform: scale(1) translateZ(0);
  }
  to {
    transform: scale(0.01) translateZ(0);
  }
}
@keyframes c {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes d {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}

/* Menu AniUnderline */
.hover-underline-animation {
  display: inline-block;
  position: relative;
}
.hover-underline-animation:hover {
  color: #7ae7ff;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 10px;
  left: 0;
  background-color: #7ae7ff;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
/* END Menu AniUnderline */
.icons-animation {
  border-radius: 100%;
}
.icons-animation:hover {
  background-color: #7ae7ff;
  border-radius: 100%;
  color: #020722;
  box-shadow: 0 4px 4px rgba(102, 255, 182, 0.3);

  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.icons-animation:hover img {
  filter: invert(0.95);
}

.button {
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
/*
.card.card-animation:hover {
  box-shadow: 4px 1px 13px rgba(88, 155, 217, 0.4);
   z-index: -10;
} */
.nft .wrapper .cards .connect-wallet,
.nft .wrapper .cards .create-nft,
.nft .wrapper .cards .create-collection,
.nft .wrapper .cards .list-nft,
.roadmap .main .cards .q1 .inner,
.roadmap .main .cards .q2 .inner,
.roadmap .main .cards .q3 .inner,
.roadmap .main .cards .q4 .inner,
.advisors .main .person.thong,
.advisors .main .person.hieu {
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.nft .wrapper .cards .connect-wallet:hover,
.nft .wrapper .cards .create-nft:hover,
.nft .wrapper .cards .create-collection:hover,
.nft .wrapper .cards .list-nft:hover,
.roadmap .main .cards .q1 .inner:hover,
.roadmap .main .cards .q2 .inner:hover,
.roadmap .main .cards .q3 .inner:hover,
.roadmap .main .cards .q4 .inner:hover,
.advisors .main .person.thong:hover,
.advisors .main .person.hieu:hover {
  filter: drop-shadow(0px 4px 60px rgba(122, 231, 255, 0.5));
  transform: translateY(-10px);
  /* background-color: rgba(88, 155, 217, 0.4);
  border-radius: 12px;
  box-shadow: -3px -2px 22px 25px rgba(88, 155, 217, 0.4);
  transform: scale(1.025) rotate(0.62deg);
   */
}

/* .team .member img:hover {
  filter: drop-shadow(0px 0px 25px #7ae7ff);
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);

  background-color: rgba(88, 155, 217, 0.4);
  border-radius: 100%;
  box-shadow: 0px 0px 28px 8px rgba(88, 155, 217, 0.4);
  transform: scale(1.085);
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
} */

.roadmap .main .cards .q2.tide .item {
  gap: 7px;
  margin-top: 15px;
}

@media (max-width: 600px) {
  .roadmap .main .cards .q2.tide .item {
    gap: 7px;
    margin-top: 0px;
  }
}

* {
  /* border: 1px solid yellow; */
}
