/* ==========================================================================
   General Styles
   ========================================================================== */

@font-face {
  font-family: "Bebas";
  src: url("/fonts/BebasNeue-Regular.woff") format("woff2"),
    url("/fonts/BebasNeue-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Regular.woff2") format("woff2"),
    url("/fonts/Inter-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: "Inter", sans-serif;
}

/* Color Palette */

:root {
  --color-primary: #2976ff;
  --color-secondary: #f44ad3;
  --color-lightblue: #58d7fc;
  --color-complimentary: #f9cd3b;
  --color-light: #eee5ed;
  --color-dark: #080b2c;
  --color-white: #fff;
  --color-black: #000000;
  --color-gray: #cdcfd5;

  --color-messageError: #f9cd3b;
  --color-messageSuccess: #029d47;
  --color-fieldError: #f44ad3;

  --font-title: "Bebas", sans-serif;
  --font-text: "Inter", sans-serif;
}

/* Body */

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

html {
  scroll-behavior: smooth;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* When logged in add whitespace */

header.loggedin {
  margin-top: 32px;
}

/* Typography styles */

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

h1 {
  font-size: 20vw;
  line-height: 90%;
  text-transform: uppercase;
}

h2 {
  font-size: 6vw;
  line-height: 90%;
  text-transform: uppercase;
}

h3 {
  font-size: 36px;
  line-height: 110%;
}

h4 {
  font-size: 32px;
  line-height: 110%;
}

h5 {
  font-size: 28px;
  line-height: 120%;
}

p,
a {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
}

.paragraph--large {
  font-size: 20px;
  line-height: 140%;
}

blockquote {
  margin: 20px;
  padding: 10px;
  text-align: center;
  font-family: sans-serif;
  font-size: 16px;
  color: #7f7f7f;
  border-left: 6px solid #38b6cd;
}

.subtitle {
  font-family: var(--font-text);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 24px;
}

.outline {
  color: var(--color-dark);
  font-family: var(--font-title);
  text-transform: capitalize;
  background: linear-gradient(
    90deg,
    rgb(173, 64, 194) 0%,
    rgb(24, 39, 130) 100%
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px transparent;
}

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

a:hover {
  color: var(--color-secondary);
}

ul {
  padding: 0;
  margin: 0;
}

.br-30 {
  border-radius: 30px;
}

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

.text-font {
  font-family: var(--font-text);
}

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

.text-big {
  font-size: 20px;
  line-height: 24px;
}

.text-small {
  font-size: 16px;
  line-height: 20px;
}

.text-upper {
  text-transform: uppercase;
}

.text-font-normal {
  font-weight: 400;
}

.text-font-italic {
  font-style: italic;
}

.text-font-bold {
  font-weight: 700;
}

.text-white {
  color: var(--color-white);
}

.gray-color {
  background: var(--color-dark);
}

/* Effects */

.glow {
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Color Codes */

.color-red {
  color: var(--color-red);
}

.color-white {
  color: var(--color-white);
}

.color-primary {
  color: var(--color-primary);
}

.color-secondary {
  color: var(--color-secondary);
}

.color-light-blue {
  color: var(--color-lightblue);
}

.divider {
  height: 5px;
  width: 50px;
  background: var(--color-secondary);
  border-radius: 20px;
}

.bg-color-primary {
  background-color: var(--color-primary);
}

.bg-color-secondary {
  background-color: var(--color-secondary);
}

.bg-color-complimentary {
  background-color: var(--color-complimentary);
}

.bg-color-dark {
  background-color: var(--color-dark);
}

.bg-color-grey {
  background-color: var(--color-gray);
}

.bg-color-light {
  background-color: var(--color-white);
}

section {
  height: 100vh;
}

video {
  width: 100%;
}

.mix-blend-screen {
  mix-blend-mode: screen;
}

.second img {
  mix-blend-mode: screen;
}

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

/* ==========================================================================
   HERO
   ========================================================================== */

.first {
  position: relative;
}

.hero-vid {
  position: absolute;
  width: 100vw;
  height: 100vh;
  overflow: hidden; /* Prevents any overflow from the video */
}

.hero-vid video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 177.77777778vh; /* 100 * 16 / 9 */
  min-width: 100%;
  min-height: 56.25vw; /* 100 * 9 / 16 */
}

.hero-vid::before {
  content: "";
  display: flex;
  width: 100%;
  height: 25vh;
  background: rgb(8, 11, 44);
  background: linear-gradient(
    0deg,
    rgba(8, 11, 44, 1) 0%,
    rgba(8, 11, 44, 0) 100%
  );
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 999;
}

.hero-content {
  text-align: center;
  z-index: 2;
}

.lumia-logo {
  max-width: 120px;
  margin-left: 5px;
}

.arrow-down {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  position: absolute;
  bottom: 5%;
  z-index: 3;
  left: calc(50% - 33px);
  padding: 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s all;
}

.arrow-down a {
  display: flex;
}

.arrow-down:hover {
  border-color: var(--color-secondary);
  padding: 24px;
  left: calc(50% - 36px);
  filter: drop-shadow(0px 0px 4px var(--color-secondary));
}

.second {
  background: var(--color-dark);
}

.second .container {
  mix-blend-mode: lighten;
}

.second-vid {
  position: absolute;
  left: calc(50% - 500px);
}

.top-vid {
  top: 0;
}

.bottom-vid {
  bottom: -50px;
}

.powered {
  font-size: 24px;
  margin-left: 45px;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */

.features {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 5%;
  justify-content: space-between;
  margin-top: 5vh;
}

.feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-white);
  padding: 20px 20px 30px 20px;
  border-radius: 20px;
  color: var(--color-dark);
  z-index: 2;
}

.how-bg {
  position: absolute;
  z-index: 1;
  top: 100px;
}

.feature h3 {
  color: var(--color-white);
  font-size: 100px;
  line-height: 100%;
  margin: 0px;
}

.feature video {
  width: 30%;
}

.feature-content {
  width: 65%;
}

.feature-title {
  display: flex;
}

.feature:nth-child(1) {
  grid-column: span 3;
  justify-self: center;
  box-sizing: border-box;
  margin-bottom: 10px;
  background: var(--color-dark);
  border: 1px solid var(--color-white);
  box-shadow: 0px 0px 20px #3868bd;
  padding: 5px 8px;
}

.first-feature div {
  display: flex;
  align-items: center;
  background: var(--color-white);
  color: var(--color-black);
  padding: 20px;
  border-radius: 14px;
  font-family: var(--font-title);
  font-size: 24px;
}

.first-feature span {
  width: 40px;
  height: 40px;
  font-family: inherit;
  margin-right: 5px;
  background: var(--color-secondary);
  border-radius: 40px;
  line-height: 100%;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.feature:nth-child(5) {
  grid-column: span 3;
  justify-self: center;
  width: 50%;
}

.feature:nth-child(5) .feature-content {
  flex-direction: column;
  width: 100%;
  text-align: center;
}

.arrow {
  background: none !important;
}

.arrow img {
  height: 50px;
}

.feature h4 {
  line-height: 80%;
}

.feature p {
  font-size: 16px;
  margin: 0px;
  line-height: 130%;
}

.feature:nth-child(5) h4 {
  font-size: 24px;
}

.feature:nth-child(5) {
  background: var(--color-dark);
  color: var(--color-white);
  border: 1px solid var(--color-white);
  box-shadow: 0px 0px 20px #3868bd;
  margin-top: 2%;
}

/*** FUNDING ***/

.funding {
  width: 100%;
  box-sizing: border-box;
  border-radius: 16px;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--color-secondary);
}

.funding h4 {
  font-size: 48px;
  line-height: 100%;
  display: flex;
  margin-top: -60px;
  padding: 20px;
  border-radius: 20px;
  background: var(--color-dark);
  margin-bottom: 0px;
  border: 1px solid var(--color-secondary);
}

.card {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--color-white);
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(50px);
  position: relative;
  justify-content: space-between;
}

.card h3 {
  line-height: 100%;
  margin: 0;
  padding: 15px;
  width: 35%;
}

.card h3 span {
  font-family: inherit;
}

.card:first-child {
  margin-top: 0px;
}

.card .number {
  font-family: var(--font-title);
  background: linear-gradient(
    180deg,
    #fff 9.55%,
    #ad40c2 41.79%,
    #080b2c 79.6%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-right: 5px;
  font-weight: bold;
}

.card-interior {
  height: auto; /* Let JS override this */
  overflow: hidden;
  transition: height 0.5s ease, opacity 0.5s ease;
  width: 60%;
}

.card-info {
  margin: 20px 0px;
  width: 100%;
  padding: 0px 30px;
  box-sizing: border-box;
}

.card-info:last-child {
  margin-bottom: 0px;
  border: none;
}

.card-info h5 {
  margin: 0px;
  line-height: 100%;
}

.card-info p {
  margin: 5px 0px 15px 0px;
  padding-bottom: 10px;
}

.card-info p {
  border-bottom: 1px solid #1e2359;
}

.card-info:last-child p {
  border: none;
}

.coins {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.coins img {
  position: absolute;
}

.coins img:nth-child(1) {
  bottom: 0;
  left: -10%;
  -webkit-animation: slide-top 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite
    both;
  animation: slide-top 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}

.coins img:nth-child(2) {
  bottom: 5%;
  right: 30%;
  -webkit-animation: slide-top 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite
    both;
  animation: slide-top 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}

.coins img:nth-child(3) {
  top: 0;
  right: -10%;
  -webkit-animation: slide-top 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite
    both;
  animation: slide-top 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}

.coins img:nth-child(4) {
  top: 0;
  left: 0;
  -webkit-animation: slide-top 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite
    both;
  animation: slide-top 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}

.coins img:nth-child(5) {
  bottom: 10%;
  right: 0;
  -webkit-animation: slide-top 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite
    both;
  animation: slide-top 5s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}

@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fourth {
  background: url("/img/invest-bg.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
}

.fourth h2 {
  font-size: 8vw;
  width: 80%;
}

.fourth h4 {
  font-size: 3vw;
}

.invest-img {
  position: relative;
  height: 70vh;
}

.invest-img img {
  position: absolute;

  width: 100%;
  object-fit: contain;
}

.invest-img img:nth-child(1) {
  max-width: 350px;
  right: 15%;
  bottom: 0%;
  -webkit-animation: slide-top 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite
    both;
  animation: slide-top 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
  animation-delay: 0.5s;
}

.invest-img img:nth-child(2) {
  max-width: 350px;
  left: 15%;
  top: 10%;
  -webkit-animation: slide-top 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite
    both;
  animation: slide-top 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}

.invest-img img:nth-child(3) {
  max-width: 1000px;
  left: 0;
  top: -10%;
  animation: spin 30s linear infinite;
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.fifth {
  background: url("/img/hyper-bg.jpg") var(--color-dark) no-repeat;
  background-size: cover;
}

.fifth h2 {
  font-size: 10vw;
}

.fifth .text-large {
  margin: 0px;
}

.seventh h2 {
  font-size: 20vh;
}

.placeholder video {
  border-radius: 40px;
}

.frame {
  border: 1px solid #ffffff;
  height: 650px;
  width: 100%;
  position: absolute;
  z-index: 2;
  border-radius: 30px;
  left: -5%;
  bottom: -5%;
}

.eight {
  background: var(--color-white);
}

.eight h2 {
  color: var(--color-dark);
  display: flex;
  font-size: 30vh;
  font-family: var(--font-title);
  white-space: nowrap !important;
}

.gradient-text {
  font-family: var(--font-title);
  background: linear-gradient(90deg, #ad40c2 0%, #182782 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.horizontal-scroll {
  overflow: hidden;
}

.horizontal-scroll__inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.horizontal-item {
  width: 30%;
  height: 32vh;
  padding: 50px;
  margin: 2vw;
  display: flex;
  justify-content: center;
  position: relative;
  flex-direction: column;
  flex-shrink: 0;
  background: var(--color-black);
  border: 1px solid var(--color-white);
  opacity: 0;
  transition: 0.75s all;
  top: 100px;
}

.horizontal-item.active {
  opacity: 1;
  top: 0px;
}

.empty-col {
  background: transparent;
  border: none;
}

.grid-top {
  position: absolute;
  top: 10%;
  left: calc(50% - 375px);
  z-index: 3;
}

.grid-back {
  position: absolute;
  top: 10%;
  left: calc(50% - 375px);
  z-index: 1;
}

.signup {
  position: fixed;
  top: 30vh;
  right: -5px;
  z-index: 999;
  max-width: 400px;
  padding-top: 110px;
  box-sizing: border-box;
  border-radius: 20px 0px 0px 20px;
  border: 1px solid #fff;
  background: linear-gradient(180deg, #ad40c2 0%, #182782 100%);
}

.mc-field-group {
  display: flex;
}

#mc_embed_signup form {
  padding: 0 !important;
}

#mc_embed_signup h2 {
  font-weight: normal !important;
  padding: 0;
  margin: 15px 0;
  font-size: 42px !important;
  text-align: center;
}

#mc_embed_signup_scroll p {
  max-width: 400px;
  text-align: center;
}

.top-img {
  top: -70px;
  left: 30px;
  position: absolute;
}

.mc-field-group input {
  background: transparent;
  color: var(--color-white);
}

#mc_embed_signup .foot {
  width: 100% !important;
  grid-template-columns: 1fr !important;
}

#mc_embed_signup .mc-field-group {
  width: 100% !important;
}

#mc_embed_signup .button {
  width: 100% !important;
  text-transform: uppercase;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  height: inherit !important;
}

#mc_embed_signup div.mce_inline_error {
  margin: 0px !important;
}

#mc_embed_signup div#mce-responses {
  width: 100% !important;
  padding: 0 !important;
  margin: 0px !important;
}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  background: red !important;
  color: var(--color-white) !important;
  text-align: center;
  border-radius: 0 !important;
  margin-top: 5px !important;
  margin-bottom: 0px !important;
  font-family: var(--font-text) !important;
}

#mc_embed_signup #mce-success-response {
  width: 100%;
  color: var(--color-white) !important;
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  margin: 0px 0px 10px 0px;
  padding: 5px;
  background: green;
}

/* ==========================================================================
   CONFIRM PAGE
   ========================================================================== */

.contact {
  background: url("/img/contact-bg.jpg") no-repeat bottom;
  background-size: cover;
}

.contact-form {
  max-width: 800px;
  border: 1px solid #ffffff12;
  border-radius: 20px;
  background: rgba(90, 99, 194, 0.05);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 30px 30px 0px;
  box-sizing: border-box;
}

.form-input input {
  width: 100%;
  margin-bottom: 10px;
  font-size: 20px;
  border-radius: 10px;
}

.contact-form button {
  width: 100%;
  padding: 10px;
}

.form-message {
  padding: 10px;
  border: 1px solid transparent;
  margin: 10px 0px;
  border-radius: 10px;
}

.hero-content h1 {
  margin-bottom: 0;
}

.capital {
  text-align: center;
  font-size: 42px;
  margin-top: -10px;
  font-weight: bold;
  letter-spacing: 2px;
}

header .btn {
  position: relative;
}

.coming-soon {
  position: absolute;
  top: 5px;
  font-size: 6px;
  line-height: 100%;
  letter-spacing: 1px;
  background: #ff5353;
  border-radius: 5px;
  padding: 5px 5px;
  left: calc(50% - 35px);
  opacity: 0;
}

header .btn:hover .coming-soon {
  top: -1px;
  opacity: 1;
}

.second-text {
  width: 90%;
  max-width: 1000px;
  margin: 0px auto 40px auto;
}

.second-text p {
  font-size: 20px;
  line-height: 125%;
}

.hyper-list li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 20px;
  display: flex;
  align-items: center;
}

.hyper-list li::before {
  content: url("/img/check.svg");
  display: flex;
  position: relative;
  margin-right: 10px;
}

.hyper-last,
.hyper-end {
  color: black;
  position: absolute;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  z-index: 9;
  font-size: 42px;
  letter-spacing: 2px;
  font-family: var(--font-title);
}

.hyper-last {
  top: 22vh;
}

.hyper-end {
  bottom: 22vh;
}

/*** INNER PAGES ***/

.inner {
  height: inherit;
  padding-top: 20vh;
}

.inner h1 {
  font-size: 48px;
}

.inner h2 {
  font-size: 32px;
}

.inner ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
