:root {
  --color-main: #0600e8;
  --color-dark: #03030d;
  --color-pink: #ef1c79;
  --color-purple: #1e1b4a;
  --color-white: #fff;
  --color-messageError: #ffc4c4;
  --color-messageSuccess: #07d7a5;
  --color-fieldError: #eb5757;
  --font-title: faricy-new-web, sans-serif;
  --font-text: source-code-pro, monospace;
}

html,
body {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-family: var(--font-text);
  letter-spacing: 0;
  background: var(--color-dark);
  color: var(--color-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 400;
}

h1 {
  font-size: 64px;
  line-height: inherit;
  text-transform: uppercase;
  letter-spacing: 60px;
}

h2 {
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 3px;
}

h3 {
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 3px;
}

h4 {
  font-size: 20px;
  letter-spacing: 3px;
}

p {
  font-size: 18px;
  line-height: 30px;
}

p.text-small {
  font-size: 14px;
}

.large-text {
  font-size: 24px;
  line-height: 30px;
}

.text-big {
  font-size: 22px;
}

.text-small {
  font-size: 14px;
}

.font-title {
  font-family: var(--font-title);
  font-weight: 600;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}

ul {
  padding: 0;
  margin: 0;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.outline-text {
  background: linear-gradient(-45deg, #ef1c79, #0600e8);
  color: #03030c;
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px transparent;
  position: absolute;
  margin: 0;
  max-width: 100% !important;
  z-index: 2;
  mix-blend-mode: color-dodge;
  z-index: 1;
}

/***********************
        HEADER
***********************/

header {
  position: absolute;
  top: 0;
  width: 70%;
  left: 15%;
  margin: 0px;
  padding: 30px 0;
  z-index: 9999;
}

header .logo {
  float: left;
}

header .logo img {
  max-width: 200px;
  transition: 0.4 all;
}

header .nav {
  list-style: none;
  float: right;
  text-transform: uppercase;
}

header .nav li {
  display: inline-block;
  font-size: 12px;
}

header .nav li a {
  position: relative;
  color: var(--color-white);
  transition: all 0.3s;
  padding: 16px 16px 12px 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: var(--font-title);
}

header .nav li a::before,
header .nav li a::after {
  position: absolute;
  width: 100%;
  height: 2%;
  background: linear-gradient(160deg, #0600e8 0%, #ef1c79 100%);
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

header .nav li.active a::before,
header .nav li a::before {
  content: "";
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
header .nav li.active a::before,
header .nav li a:hover::before {
  transform-origin: 0 50%;
  transform: scale3d(1, 1, 1);
}

#nav-icon {
  display: none;
  width: 40px;
  height: 45px;
  position: absolute;
  right: 0px;
  top: 15px;
  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: 2px;
  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: 12px;
}

#nav-icon span:nth-child(3) {
  top: 24px;
}

#nav-icon.open span:nth-child(1) {
  top: 18px;
  transform: rotate(135deg);
}

#nav-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon.open span:nth-child(3) {
  top: 18px;
  transform: rotate(-135deg);
}

.nav-logo {
  display: none !important;
}

.loading {
  background: var(--color-dark);
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  z-index: 99999;
}

.loading-container {
  position: relative;
}

.counter {
  position: absolute;
  left: calc(50% - 12px);
  top: calc(50% - 18px);
  text-align: center;
  text-shadow: 0px 0px 10px #ffffff;
}

.loading-container img {
  animation: pulse 2s infinite;
}

/***********************
        HEADER
***********************/

.hero {
  display: flex;
  flex-direction: row-reverse;
}

.hero h1 {
  text-align: center;
  margin-top: 30vh;
  max-width: 800px;
}

.hero .container {
  width: 85% !important;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.sidebar {
  width: 15%;
  height: 100vh;
  background: var(--color-main);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.sidebar h2 {
  rotate: 90deg;
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 30px;
  font-size: 30px;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    rgba(250, 240, 251, 0.1) 105.85%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.star {
  position: absolute;
  left: 10%;
  top: 40%;
  font-size: 10vh;
  color: var(--color-pink);
  animation: rotation 20s infinite;
}

.square {
  position: absolute;
  right: 10%;
  top: 20%;
  font-size: 3vh;
}

.badge {
  max-width: 120px;
  position: absolute;
  bottom: 10%;
  right: 20%;
  animation: rotation 20s infinite;
}

.blur {
  z-index: 1;
}

.dot-1 {
  position: absolute;
  top: 42%;
  left: 70%;
  width: 25rem;
  height: 25rem;
  background: #ef1c771e;
  border-radius: 24% 76% 77% 23% / 30% 30% 70% 70%;
  filter: blur(6rem);
  animation: shape1 20s infinite;
}

.dot-2 {
  position: absolute;
  top: 33%;
  left: 40%;
  width: 35rem;
  height: 25rem;
  background: #ef1c771e;
  border-radius: 73% 27% 77% 23% / 53% 4% 96% 47%;
  filter: blur(12rem);
  animation: shape2 35s infinite;
}

.dot-3 {
  position: absolute;
  top: 0%;
  left: 80%;
  width: 25rem;
  height: 25rem;
  background: #3e6feb34;
  border-radius: 70% 30% 80% 20% / 42% 25% 75% 58%;
  filter: blur(14rem);
  animation: shape3 35s infinite;
}

.dot-4 {
  position: absolute;
  top: 42%;
  left: 10%;
  width: 25rem;
  height: 25rem;
  background: #3e6feb34;
  border-radius: 24% 76% 77% 23% / 30% 30% 70% 70%;
  filter: blur(5rem);
  animation: shape1 10s infinite;
}

.planet {
  position: absolute;
}

.hero-planet-1 {
  bottom: 0;
  left: calc(55% - 300px);
  max-width: 600px;
  z-index: 9;
}

.hero-planet-2 {
  bottom: 20vh;
  left: 20%;
  max-width: 600px;
  animation: fade-loop 10s infinite;
}

.hero-planet-3 {
  top: 20vh;
  right: 10%;
  max-width: 600px;
  animation: fade-loop 5s infinite;
}

.bigtype-1 {
  font-size: 12vmax;
  line-height: inherit;
  letter-spacing: 5vmax;
  bottom: 15vh;
}

/***********************
        SECTION 2
***********************/

.bigtype-2 {
  font-size: 10vmax;
  line-height: inherit;
  letter-spacing: 5vmax;
  top: 10%;
  left: 20%;
  width: 50%;
  overflow-wrap: break-word;
}

.second-planet-1 {
  bottom: 20vh;
  right: 10%;
  max-width: 600px;
  animation: fade-loop pulse 20s infinite;
}

/***********************
        SECTION 3
***********************/

.loop {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 400px;
}

.bigtype-3 {
  font-size: 10vmax;
  line-height: inherit;
  letter-spacing: 5vmax;
  bottom: 25vh;
}

.third-planet-1 {
  top: 10vh;
  right: 30%;
  max-width: 380px;
  animation: fade-loop 10s infinite;
}

.third-planet-2 {
  top: 30vh;
  right: 5%;
  max-width: 550px;
}

.star-3 {
  position: absolute;
  right: 10%;
  top: 40%;
  font-size: 10vh;
  animation: rotation 20s infinite;
}

.rotate-text {
  display: flex;
}

.rotate-text span {
  display: inline-flex;
  flex-direction: column;
  margin-left: 10px;
}

.rotate-loop span:after {
  content: "";
  display: block;
  background: var(--color-main);
  width: 100%;
  height: 15px;
  position: relative;
  margin-top: -15px;
  mix-blend-mode: color;
}

/*Vertical Sliding*/
.rotate-loop {
  display: inline;
  text-indent: 8px;
}
.rotate-loop span {
  animation: topToBottom 10s linear infinite 0s;
  -ms-animation: topToBottom 10s linear infinite 0s;
  -webkit-animation: topToBottom 10s linear infinite 0s;
  opacity: 0;
  overflow: hidden;
  position: absolute;
}
.rotate-loop span:nth-child(2) {
  animation-delay: 2.5s;
  -ms-animation-delay: 2.5s;
  -webkit-animation-delay: 2.5s;
}
.rotate-loop span:nth-child(3) {
  animation-delay: 5s;
  -ms-animation-delay: 5s;
  -webkit-animation-delay: 5s;
}
.rotate-loop span:nth-child(4) {
  animation-delay: 7.5s;
  -ms-animation-delay: 7.5s;
  -webkit-animation-delay: 7.5s;
}

/*topToBottom Animation*/
@-moz-keyframes topToBottom {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  10% {
    opacity: 1;
    -moz-transform: translateY(0px);
  }
  25% {
    opacity: 1;
    -moz-transform: translateY(0px);
  }
  30% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes topToBottom {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  10% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
  25% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
  30% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-ms-keyframes topToBottom {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
    -ms-transform: translateY(-20px);
  }
  10% {
    opacity: 1;
    -ms-transform: translateY(0px);
  }
  25% {
    opacity: 1;
    -ms-transform: translateY(0px);
  }
  30% {
    opacity: 0;
    -ms-transform: translateY(20px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/***********************
        SECTION 4
***********************/

.bigtype-4 {
  font-size: 10vmax;
  line-height: inherit;
  letter-spacing: 3vmax;
  bottom: 0;
}

.superpower {
  margin-top: -15%;
}

.superpower-img {
  margin-left: -10%;
}

.star-4 {
  position: absolute;
  right: 50%;
  top: 60%;
  color: var(--color-main);
  font-size: 5vh;
  animation: rotation 20s infinite;
}

.star-5 {
  position: absolute;
  right: 10%;
  top: 40%;
  font-size: 10vh;
  animation: rotation 20s infinite;
}

.square-3 {
  position: absolute;
  right: 40%;
  top: 20%;
  font-size: 2vh;
}

.slider::before {
  content: "";
  width: 1px;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(12, 12, 12, 0) 0%,
    #211842 35%,
    rgba(12, 12, 12, 0) 35%,
    rgba(12, 12, 12, 0) 65%,
    #211842 65%,
    rgba(12, 12, 12, 0) 100%
  );
  display: block;
  position: absolute;
  left: 26px;
}

.slider h5 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 26px;
  margin: 0px 0px 0px 20px;
  color: #1a121e;
}

.slider img {
  opacity: 0.2;
  filter: grayscale(1);
  transform: scale(0);
}

.slider .slick-current h5 {
  color: var(--color-white);
}

.slider .slick-current img {
  opacity: 1;
  filter: none;
  transform: scale(1);
  padding: 10px;
  border: 1px solid var(--color-purple);
  border-radius: 100px;
  width: 48px;
  height: 48px;
}

.slider span {
  font-size: 14px;
}

.slider .d-flex {
  height: 100px;
  display: flex !important;
  align-items: center;
}
.slider button {
  background: none;
  border: none;
}

.slick-next,
.slick-prev {
  font-size: 0;
  transition: 0.2s all;
  cursor: pointer;
}

.slick-prev::before,
.slick-next::before {
  font-family: "oblivion" !important;
  font-size: 42px;
  display: block;
  color: var(--color-white);
}

.slick-prev::before {
  content: "\e905";
}

.slick-next::before {
  content: "\e902";
}

.slick-next:hover,
.slick-prev:hover {
  scale: 0.8;
}

/***********************
        SECTION 5
***********************/

.bigtype-5 {
  font-size: 10vmax;
  line-height: inherit;
  letter-spacing: 3vmax;
  top: 10vh;
}

.ecosystem-container {
  width: 70%;
  margin-bottom: 50px;
}

.ecosystem-logos {
  display: grid;
  grid-template-columns: 10% 10% 10% 10% 10% 10% 10% 10%;
  column-gap: 2.8%;
  justify-items: center;
}

.ecosystem-logos span {
  font-size: 72px;
  cursor: pointer;
  width: 72px;
  height: 72px;
  transition: 0.4 all;
}

.ecosystem-logos span:hover {
  transform: scale(0.9);
  filter: drop-shadow(0px 0px 20px white);
  transition: 0.4 all;
}

.fifth-planet-1 {
  top: 30vh;
  left: 15%;
  max-width: 550px;
  opacity: 0.5;
  animation: fade-move-2 20s infinite;
}

.fifth-planet-2 {
  top: 30vh;
  right: 15%;
  max-width: 550px;
  opacity: 0.2;
  animation: fade-move 50s infinite;
}

/***********************
        SECTION 6
***********************/

.bigtype-6 {
  font-size: 10vmax;
  line-height: inherit;
  letter-spacing: 3vmax;
  top: 10vh;
}

.sixth-planet-1 {
  top: 30vh;
  right: 8%;
  max-width: 300px;
  opacity: 0.4;
  animation: fade-loop 10s infinite;
}

.team-details {
  width: 70%;
  display: grid;
  grid-template-columns: 15% 22% 20% 20% 22%;
  margin: 50px 0px;
  align-items: center;
  position: relative;
}

.team-stat {
  position: relative;
  height: 70px;
  display: flex;
  align-items: center;
}

.team-stat p {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 18px;
  margin: 0;
}

.team-stat span {
  font-size: 42px;
  margin-right: 10px;
}

.team-stat::before {
  content: "";
  width: 1px;
  height: 50px;
  display: block;
  position: absolute;
  background: var(--color-pink);
  left: -10px;
}

.map {
  position: absolute;
  z-index: 2;
}

/***********************
        FOOTER
***********************/

.star-6 {
  position: absolute;
  right: 10%;
  top: 10%;
  z-index: 9;
  font-size: 15vh;
  color: var(--color-pink);
  animation: rotation 20s infinite;
}

.bigtype-7 {
  font-size: 10vmax;
  line-height: inherit;
  letter-spacing: 3vmax;
  top: 50vh;
  left: 15vw;
}

.blog-latest {
  border-bottom: 5px solid var(--color-main);
  margin-bottom: 10vh;
  background: var(--color-dark);
}

.blog-thumbnail {
  display: flex;
}

.blog-latest h4 {
  padding-left: 20px;
}

.blog-cta {
  background: var(--color-purple);
  position: relative;
  width: 25%;
}

.blog-cta a {
  position: absolute;
  bottom: 20px;
  color: var(--color-white);
  font-size: 14px;
  line-height: 14px;
  padding: 10px;
}

.newsletter {
  background: var(--color-main);
}

.newsletter-email {
  background: var(--color-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0px;
}

.newsletter-email input {
  background: white;
  height: inherit;
  max-width: 80%;
  margin: 0px;
  color: var(--color-dark);
}

.newsletter h4 {
  margin: 0px;
  padding: 30px;
}

.newsletter .badge {
  bottom: -70%;
  right: 10%;
}

.footer h3 {
  width: 80%;
}

.copyright {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9;
}

.copyright,
.copyright p,
.copyright a {
  font-size: 12px;
  color: var(--color-white);
}

.copyright a:hover {
  color: var(--color-pink);
}
