/* ==========================================================================
   General Styles
   ========================================================================== */

@font-face {
  font-family: "Work Sans";
  src: url("/fonts/WorkSans-Regular.woff2") format("woff2"),
    url("/fonts/WorkSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("/fonts/WorkSans-Medium.woff2") format("woff2"),
    url("/fonts/WorkSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Color Palette */

:root {
  --color-primary: #7435ff;
  --color-secondary: #912fff;
  --color-complimentary: #cd5eff;
  --color-yellow: #ffd057;
  --color-orange: #fe9e3d;
  --color-dark-purple: #5e1bd6;

  --color-white: #fff;

  --color-messageError: #ff2840;
  --color-messageSuccess: #009aff;
  --color-fieldError: #ff2840;

  --font-title: "mighty-slab", serif;
  /* --font-highlight: "Krona One", sans-serif; */
  --font-highlight: "Work Sans", sans-serif;
  --font-text: "Work Sans", sans-serif;
}

/* Main */

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  font-family: var(--font-text);
  background: var(--color-primary);
  color: var(--color-white);
  margin: 0;
}

body {
  width: 100%;
}

/* Titles */
h1,
h2,
h3,
h4,
h5 {
  margin: 0px;
  font-weight: 400;
  font-family: var(--font-title);
  text-transform: uppercase;
}

h1 {
  font-size: 6vw;
  line-height: 6vw;
  text-transform: uppercase;
}

h3 {
  font-size: 42px;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h4 {
  letter-spacing: 1px;
  font-size: 28px;
}

h5 {
  font-family: var(--font-text);
  font-weight: bold;
  font-size: 18px;
}

p {
  font-size: 16px;
  line-height: 20px;
  margin-top: 0px;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: var(--color-white);
  transition: 0.2s all;
}

.big-type {
  font-size: 22px;
  line-height: 140%;
  font-family: var(--font-highlight);
  margin-top: 20px;
}

.loading {
  background: linear-gradient(
    180deg,
    #7534ff 3%,
    #912fff 22%,
    #d555e2 45%,
    #ff943b 90%,
    #ffd057 100%
  );
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  z-index: 99999;
}

.loading lottie-player {
  width: 100px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 100px;
  background: var(--color-white);
}

video {
  width: 100%;
}

.font-highlight {
  font-family: var(--font-highlight);
}

/***********************
        HEADER
***********************/

.notification {
  background: var(--color-messageError);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0px;
  text-transform: uppercase;
  font-weight: bold;
  border-top: 1px solid var(--color-yellow);
  border-bottom: 1px solid var(--color-yellow);
}

.notification div,
.notification a {
  margin: 0px 3px;
}

.count,
.notification a {
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 5px;
  transition: 0.3s all;
}

.notification a:hover {
  opacity: 0.8;
}

.ape {
  background: #63ea71;
  color: var(--color-dark-purple);
}

.wep {
  background: #3ed1ff;
  color: var(--color-dark-purple);
}

.notification .count {
  color: var(--color-yellow);
  background: #d6183f;
  display: flex;
  align-items: center;
}

.notification p {
  margin: 0px 2px 0px 2px;
  font-size: 12px;
  font-weight: bold;
}

.notification-close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

header {
  position: absolute;
  top: 0px;
  right: 0;
  width: 100%;
  padding: 0;
  z-index: 9999;
}

header .container {
  padding-top: 10px;
}

header .logo {
  float: left;
  transition: 0.3s all;
}

header .logo img {
  width: 100%;
  transition: 0.4 all;
}

header .logo:hover {
  transform: scale(0.95);
  filter: brightness(1.2);
}

header ul {
  padding: 0px;
}

header .nav {
  list-style: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 0;
}

header .nav li {
  display: flex;
  align-items: center;
  font-size: 14px;
}

header .nav li a {
  position: relative;
  padding: 0px 16px 0px 16px;
  display: flex;
  align-items: center;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-title);
  transition: 0.2s all;
}

header .nav li a:hover {
  transform: scale(0.9);
}

#nav-icon {
  display: none;
  width: 40px;
  height: 25px;
  position: absolute;
  right: 25px;
  top: 10px;
  margin: 0 auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  z-index: 2;
}

#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--color-white);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0;
}

#nav-icon span:nth-child(2) {
  top: 15px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2) {
  top: 18px;
  transform: rotate(-135deg);
}

.nav-logo {
  display: none !important;
}

video {
  clip-path: inset(1px 1px);
}

.pagination {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 999;
}

.pagination-item {
  width: 10px;
  height: 10px;
  position: relative;
  background-color: var(--color-dark-purple);
  margin-bottom: 10px;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.2s all;
}

.pagination-item:hover {
  transform: scale(1.5);
  background: var(--color-yellow);
}

.pagination .active {
  background: #f1b61f;
}

.tooltip {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  background-color: var(--color-fieldError);
  color: var(--color-white);
  padding: 4px 6px;
  font-size: 6px;
  border-radius: 10px;
}

.ml7 {
  position: relative;
}
.ml7 .text-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.ml7 .letter {
  transform-origin: 0 100%;
  display: inline-block;
}

.highlight {
  color: var(--color-dark-purple);
  background: var(--color-yellow);
  padding: 20px;
}

/* .highlight::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--color-dark-purple);
  background: var(--color-yellow);
  padding: 20px;
  animation: scale-up-hor-left 4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  z-index: 1;
} */

@keyframes scale-up-hor-left {
  0% {
    -webkit-transform: scaleX(0.1);
    transform: scaleX(0.4);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
  }
}

/***********************
        SECTION 1
***********************/

.hero {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  position: relative;
  background: var(--color-primary);
  background-size: cover;
}

.hero-overlay {
  background: url("/images/hero-overlay.png") no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  z-index: 2;
}

.hero h1 {
  /* font-size: 4.5vw; */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero .highlight {
  padding: 0px 20px;
}

.hero-title {
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.hero-title .big-type {
  margin-top: 30px;
  text-align: left;
}
/* .hero-title .big-type::after {
  content: url(/images/arrow.svg);
  position: absolute;
  width: 150px;
  height: 60px;
  top: 10px;
  right: -100px;
  display: block;
} */

.hero-vid {
  position: absolute;
  top: -10vh;
  right: -10vh;
  max-width: 120vh;
}

.hero .btn-container {
  margin-top: 20px;
}

.vid-mask {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.coming-soon {
  position: absolute;
  bottom: 5%;
  text-align: center;
  z-index: 3;
}

.powered {
  position: absolute;
  left: 5%;
  bottom: 10%;
  z-index: 3;
}
.powered a {
  cursor: pointer;
}

.powered a img {
  transition: 0.4s all;
}
.powered a:hover img {
  transform: scale(0.95);
  filter: drop-shadow(0px 0px 10px var(--color-yellow));
}

.newsletter input {
  width: 300px;
  border: 2px solid var(--color-dark-purple);
  border-radius: 10px 0px 0px 10px;
}

.newsletter button {
  border-radius: 0px 10px 10px 0px;
}

.rotate-text {
  width: 100%;
  max-width: 700px;
}

.rotate-text {
  font-family: var(--font-title);
  /* background: var(--color-yellow); */
  color: var(--color-yellow);
  font-size: 4vw;
  line-height: 100%;
  position: relative;
}

.small-rotation {
  font-family: var(--font-title);
  font-size: 32px;
  margin-top: 0px;
}

.rotation-small {
  width: 100%;
  max-width: 110px;
  margin-left: 10px;
  color: var(--color-yellow);
}

.rotation-small div {
  font-size: 32px;
}

.title-label {
  font-family: var(--font-text);
  font-size: 16px;
  color: var(--color-dark-white);
  border-radius: 30px;
  padding: 10px 20px 10px 0px;
  font-weight: bold;
}

.text-highlight {
  background: var(--color-yellow);
  color: var(--color-dark-purple);
  padding: 3px 10px;
}

.build-item {
  display: grid;
  grid-template-columns: 22% 22% 22% 22%;
  justify-content: space-between;
  margin-top: 20px;
}

.build-item div {
  color: var(--color-dark-purple);
  text-align: center;
  padding: 0px;
  display: flex;
  margin-bottom: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s all;
}

.build-item div p {
  margin-bottom: 0;
}

.build-item div img {
  transition: 0.3s all;
}

.build-item div:hover img {
  transform: scale(0.9);
}

/***********************
        SECTION 2
***********************/

.second {
  background: var(--color-white);
}

.second h1,
.second p {
  color: var(--color-dark-purple);
  text-align: center;
}

.compare-text {
  padding: 20px;
  background: var(--color-yellow);
  text-align: center;
  width: 80%;
}

.compare-text p {
  font-size: 16px;
}

.second .btn-container {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

/***********************
        SECTION 3
***********************/

.third {
  background: url("/images/ponder-outline.svg") no-repeat var(--color-yellow);
  background-position: center right;
}

.third h1,
.third p {
  color: var(--color-dark-purple);
}

.third .highlight {
  background: var(--color-orange);
}

.third img {
  width: 90%;
}

.chain-name {
  position: absolute;
  font-size: 14px;
  line-height: 16px;
  z-index: 2;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  color: var(--color-white);
  padding: 10px;
  background: var(--color-dark-purple);
  border-radius: 5px;
  transition: opacity 0.3s, visibility 0.3s;
  font-family: var(--font-text);
}

.chains:hover .chain-name {
  opacity: 1;
  visibility: visible;
}

/***********************
        SECTION 4
***********************/

.fourth {
  background: linear-gradient(
    0deg,
    #7534ff 3%,
    #912fff 22%,
    #d555e2 45%,
    #ff943b 90%,
    #ffd057 100%
  );
}

.fourth img {
  width: 100%;
}

.compare-vid {
  border: 2px solid white;
  border-radius: 40px;
  box-shadow: 0px 0px 20px #00000052;
}

.compare-vid video {
  border-radius: 40px;
}

.fourth .btn-container {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

/***********************
        SECTION 5
***********************/

.feature-item {
  display: flex;
  background: var(--color-dark-purple);
  padding: 20px;
  border-radius: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.feature-item lottie-player {
  margin-right: 10px;
  max-width: 72px;
}

.feature-item p {
  margin: 0;
}

.feature-vid {
  width: 70%;
  position: absolute;
  right: -10%;
  z-index: 1;
}

/***********************
        SECTION 6
***********************/

.phase {
  display: flex;
  align-items: center;
}

.label {
  background: var(--color-secondary);
  color: var(--color-white) !important;
  padding: 10px 20px;
  border-radius: 20px;
  color: var(--color-primary);
  margin-right: 10px;
  margin-bottom: 0px;
}

.current-phase {
  background: var(--color-yellow);
  color: var(--color-primary) !important;
}

.phase .big-type {
  margin: 10px 0px;
  font-size: 22px;
}

/***********************
        SECTION 7
***********************/
.team-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 24% 24% 24% 24%;
  justify-items: center;
  justify-content: space-between;
  margin: 2vh 0;
}

.advisor-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 12% 12% 12% 12% 12% 12% 12%;
  justify-items: center;
  justify-content: space-between;
  background: #5e2ad1;
  padding: 30px 30px 15px 30px;
  box-sizing: border-box;
  border-radius: 50px;
}

.team-member,
.advisor {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.member-title {
  margin-top: 5px;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 12px;
  line-height: 100%;
}

.team-member .member-title {
  background: var(--color-fieldError);
}

.team-member img {
  max-width: 160px;
}

.advisor .member-title {
  background: var(--color-complimentary);
  margin-bottom: 0px;
}

.advisor-title {
  background: var(--color-orange);
  padding: 10px 40px;
  box-sizing: border-box;
  border-radius: 40px;
  margin-bottom: -30px;
  z-index: 1;
  font-size: 30px;
}

.advisor h5 {
  text-transform: none;
  margin-top: 5px;
  font-size: 14px;
}

.advisor img {
  max-width: 100px;
}

.investors {
  width: 100%;
  display: grid;
  grid-template-columns: 20% 11% 11% 11% 11% 11% 11% 11%;
  justify-items: center;
  align-items: center;
  margin-top: 30px;
  justify-content: space-between;
}

.investors img {
  max-width: 180px;
  width: 100%;
}

.investors h4 {
  background: #6640b9;
  padding: 5px 20px;
  box-sizing: border-box;
  border-radius: 30px;
}
/***********************
        FOOTER
***********************/

.footer {
  background: linear-gradient(
    180deg,
    #7534ff 3%,
    #912fff 22%,
    #d555e2 45%,
    #ff943b 90%,
    #ffd057 100%
  );
}

.supported {
  background: var(--color-yellow);
  color: var(--color-dark-purple);
  height: 50px;
  padding: 20px 80px 20px 40px;
  display: flex;
  align-items: center;
  border-radius: 50px 0px 0px 50px;
  font-weight: bold;
}

.chain-logos {
  background: var(--color-white);
  border-radius: 50px;
  height: 90px;
  margin-left: -70px;
  display: flex;
  width: 100%;
  max-width: 800px;
  align-items: center;
}

.chain-logos a {
  color: var(--color-dark-purple);
  font-size: 50px;
  line-height: 50px;
  display: flex !important;
  height: 50px;
  align-items: center;
  justify-content: center;
}

.small-rot-cta {
  display: flex;
  align-items: center;
}

.partners {
  display: flex;
  width: 80%;
  margin: 0px auto;
  max-width: 1200px;
  align-items: center;
}

.partners img {
  width: 100%;
}

.copyright {
  font-size: 14px;
}

.copyright a:hover {
  color: var(--color-yellow);
}

.socials {
  width: 250px;
  display: flex;
  justify-content: space-evenly;
}

.socials a {
  font-size: 42px;
  width: 42px;
  height: 42px;
  display: flex;
}

.chain-logos a:hover,
.socials a:hover,
.partners a:hover,
.copyright a:hover {
  color: var(--color-yellow);
  filter: drop-shadow(0px 0px 10px var(--color-yellow));
  transform: scale(0.95);
}

.hide-desktop {
  display: none !important;
}

.fixed {
  position: fixed;
}

.airdrop-label {
  background: var(--color-yellow);
  position: fixed;
  bottom: -50px;
  right: 20px;
  z-index: 9;
  text-align: center;
  padding: 20px 30px 5px 30px;
  border-radius: 20px 20px 0px 0px;
  cursor: pointer;
  transition: 0.3s all;
}

.airdrop-label:hover {
  bottom: 0px;
}

.airdrop-label h5,
.airdrop-label h6 {
  font-family: var(--font-title);
  color: var(--color-primary);
  font-weight: normal;
}

.airdrop-label h5 {
  font-size: 32px;
  line-height: 100%;
}

.airdrop-label h6 {
  font-size: 16px;
  margin: 0px;
  text-transform: uppercase;
}

.airdrop-label .btn {
  font-size: 14px !important;
  padding: 10px 15px !important;
  font-weight: normal;
  transition: 0.3s all;
}

.airdrop-label .btn:hover {
  background: var(--color-fieldError);
  color: var(--color-white);
}

.airdrop-join {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.airdrop-join img {
  max-width: 80px;
}

.desktop-nav-item {
  margin: 0px 5px;
  font-weight: bold;
}

.desktop-nav-item:hover {
  color: var(--color-orange);
}

/***********************
        POPUP
***********************/

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
}

.popup.hidden {
  opacity: 0;
  pointer-events: none;
}

.info {
  text-align: center;
  padding: 30px;
  border-radius: var(--button-medium-icon, 20px);
  background: linear-gradient(
    180deg,
    #5e1bd6 2.95%,
    #912fff 21.65%,
    #d555e2 44.29%,
    #ff943b 88.59%,
    #ffd057 98.43%
  );
  position: relative;
}

.popup .count {
  display: flex;
  justify-content: space-between;
}

.popup .count p {
  font-family: var(--font-title);
  font-size: 50px;
  background: var(--color-yellow);
  border: 1px solid var(--color-white);
  width: 24%;
  text-align: center;
  padding: 30px 20px;
  box-sizing: border-box;
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--color-dark-purple);
  position: relative;
}

.popup .count span {
  width: 60%;
  position: absolute;
  background: var(--color-messageError);
  padding: 4px 10px;
  border-radius: 10px;
  left: 10%;
  bottom: -20%;
  font-family: var(--font-text);
  font-size: 16px;
  color: var(--color-white);
}

.popup .btn-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: #00000026;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid var(--color-yellow);
}

.popup a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 40px;
  width: 38%;
  color: #301f50;
}

.popup a img {
  margin-right: 3px;
}

.popup a:hover {
  opacity: 0.8;
}

.bot-head {
  margin-top: -125px;
}

.info .close {
  display: flex;
  align-items: center;
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 10px;
  width: 17px;
  height: 17px;
  border-radius: 100%;
  background: var(--color-messageError);
  cursor: pointer;
  transition: 0.2s all;
}

.info .close:hover {
  transform: scale(0.9);
}
