/*
  ========================================
  CSS Reset
  ========================================
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  display: inline-block;
  border: none;
  padding: 1rem 2rem;
  margin: 0;
  text-decoration: none;
  font-family: sans-serif;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
}

button:focus,
a:focus {
  outline: 1px solid #fff;
  outline-offset: -2 px;
}

button:active {
  outline: none;
  -webkit-transform: scale(0.99);
          transform: scale(0.99);
}

/*
  ========================================
  Grid & Utility
  ========================================
*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 650ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 650ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

section {
  padding: 4rem 0;
}

.container {
  padding-left: 2rem;
  padding-right: 2rem;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.center {
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 0 auto;
}

.grid {
  display: -ms-grid;
  display: grid;
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  /* 1 */
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  /* 2 */
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
  /* 3 */
}

/*
  ========================================
  Colors
  ========================================
*/
/*
  ========================================
  Typography
  ========================================
*/
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-VariableFont_wght.ttf") format("woff2-variations");
  font-weight: 125 950;
  font-stretch: 75% 125%;
  font-style: normal;
}

html {
  font-size: 100%;
}

/*16px*/
body {
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: #d9d9d9;
}

p {
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 3rem 0 1.38rem;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 2.488rem;
}

h2 {
  font-size: 2.074rem;
}

h3 {
  font-size: 1.728rem;
}

h4 {
  font-size: 1.44rem;
}

h5 {
  font-size: 1.2rem;
}

small,
.text_small {
  font-size: 0.833rem;
}

::-moz-selection {
  background: rgba(14, 216, 223, 0.99);
  color: #070a15;
}

::selection {
  background: rgba(14, 216, 223, 0.99);
  color: #070a15;
}

strong {
  font-weight: 700;
}

/*
  ========================================
  Links
  ========================================
*/
a,
a:visited {
  color: #d9d9d9;
  text-decoration: none;
}

a:hover, a:focus,
a:visited:hover,
a:visited:focus {
  border-bottom: 2px solid #0ed8df;
}

a img,
a:visited img {
  text-decoration: none;
}

a:active {
  background: #0ed8df;
  color: #d9d9d9;
}

a.img-link:active,
a.btn:active {
  background: none;
  color: inherit;
}

a.img-link:hover, a.img-link:focus,
a.btn:hover,
a.btn:focus {
  border-bottom: none;
}

/*
  ========================================
  Buttons
  ========================================
*/
.btn {
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  font-size: 1em;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  border-radius: calc(1em / 5);
  padding: 0.7em 2.8em;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: inline-block;
}

.btn-primary,
a.btn-primary {
  color: #070a15;
  background-color: #0ed8df;
  border: 0.15em solid #0ed8df;
}

.btn-primary:hover,
a.btn-primary:hover {
  color: #d9d9d9;
  background-color: #070a15;
  border: 0.15em solid #070a15;
}

btn-secondary,
a.btn-secondary {
  color: #d9d9d9;
  border: 0.15em solid #d9d9d9;
}

btn-secondary:hover,
a.btn-secondary:hover {
  color: #d9d9d9;
  background-color: #070a15;
  border: 0.15em solid #070a15;
}

/*
  ========================================
  Sections
  ========================================
*/
body {
  background: #070a15;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(33%, #070a15), to(#262F51));
  background: linear-gradient(180deg, #070a15 33%, #262F51 100%);
  background-repeat: no-repeat;
  min-height: 100vh;
  min-width: 100vw;
}

section {
  text-align: center;
}

.social ul a:active {
  background: none;
  color: #d9d9d9;
}

h2,
h3,
h4 {
  display: inline;
  border-bottom: 0.2em solid #0ed8df;
}

h2::before, h2::after,
h3::before,
h3::after,
h4::before,
h4::after {
  content: "";
  display: block;
}

h2::before,
h3::before,
h4::before {
  margin: 1.5em 0;
}

h2::after,
h3::after,
h4::after {
  margin: 0.65em 0;
}

h5::after {
  content: "";
  display: block;
  width: 5rem;
  margin: 0.5em auto 0 auto;
  border-bottom: 0.2em solid #0ed8df;
}

/*
  ========================================
  Header & Navigation
  ========================================
*/
header {
  height: 5rem;
  max-height: 5rem;
  position: fixed;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 650ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 650ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

header[data-background="true"] {
  background-color: #121212;
  -webkit-transition: all 650ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 650ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

header[data-visible="false"] {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 650ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 650ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

header .container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  height: 5rem;
  max-height: 5rem;
}

header a,
header a:visited {
  line-height: 1;
}

header a {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

header .logo {
  height: 2rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

header .mobile-nav-toggle {
  background-color: transparent;
  background-image: url(../img/icons/icon-hamburger.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 2rem;
  border: 0;
  width: 2rem;
  aspect-ratio: 1;
  padding: 0;
  z-index: 9999;
}

header .mobile-nav-toggle[aria-expanded="true"] {
  background-image: url(../img/icons/icon-close.svg);
}

header .navbar {
  -webkit-transition: all 350ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 350ms cubic-bezier(0.075, 0.82, 0.165, 1);
  background: rgba(0, 0, 10, 0.94);
  position: fixed;
  inset: 0 0 0 auto;
  width: min(16rem, 70vw);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.6rem 2rem;
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
}

header .navbar .main-nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
  gap: 2rem;
  text-align: right;
  text-transform: uppercase;
}

header .navbar .social {
  gap: 0.8rem;
  line-height: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header .navbar .social img {
  max-height: 2rem;
}

header .navbar[data-visible="true"] {
  -webkit-transition: all 350ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 350ms cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

/*
  ========================================
  Hero
  ========================================
*/
#hero {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0;
}

#hero .overlay {
  position: absolute;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 16, 0) 0%, #070a15a6 75%);
  background-size: cover;
  background-position: center center;
  width: 100vw;
  height: 100vh;
  min-height: calc(100vh - 5rem);
  max-height: calc(100vh);
}

#hero .intro-video {
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 16, 0) 0%, rgba(0, 0, 16, 0.65) 75%), url(../img/banner.jpg);
  background-size: cover;
  background-position: center center;
  width: 100vw;
  height: 100vh;
  min-height: calc(100vh - 5rem);
  max-height: calc(100vh);
}

#hero .intro-video video {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

#hero span {
  color: #0ed8df;
}

#hero .intro {
  padding-top: 4rem;
  max-width: 100%;
}

#hero .hero-ctas {
  gap: 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2em;
}

#hero .hero-ctas .btn-primary::before {
  content: "Coming soon";
  position: absolute;
  color: #d9d9d9;
  font-size: 0.7em;
  -webkit-transform: translate(-1.4rem, 2.4rem);
          transform: translate(-1.4rem, 2.4rem);
}

/*
  ========================================
  Masks Gallery
  ========================================
*/
#gallery img {
  max-width: 100%;
}

#gallery .glide__slide {
  text-align: center;
  color: #d9d9d9;
  font-size: 1.5em;
  font-weight: 900;
}

#gallery .glide__bullets {
  bottom: -2rem;
}

#gallery .glide__bullets .glide__bullet {
  margin: 0 0.6em;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

/*
  ========================================
  About
  ========================================
*/
#about p {
  max-width: 67ch;
  margin-left: auto;
  margin-right: auto;
}

/*
  ========================================
  FAQ
  ========================================
*/
#faq .questions {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

#faq .qa {
  cursor: pointer;
  padding: 2rem;
}

#faq h5 {
  margin: 1rem auto;
}

#faq ::marker {
  display: none;
}

#faq summary {
  list-style-type: none;
}

/*
  ========================================
  Roadmap Timeline
  ========================================
*/
.timeline {
  position: relative;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  border-radius: 9999px;
  margin-left: -1px;
  top: 2rem;
  bottom: 2rem;
  background-color: #d9d9d9;
  left: 0;
  z-index: -1;
}

.entry {
  padding: 2rem 0 2rem 3rem;
  position: relative;
  width: 100%;
}

.entry .date {
  display: none;
}

.entry .content {
  text-align: left;
  padding: 2rem;
  border-radius: calc(1em / 5);
  background-color: #121212;
  -webkit-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
          box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
}

.entry .content h4 {
  margin-top: 0;
}

.entry .content h4::before {
  display: none;
}

.entry .content h4::after {
  margin: 0.65em 0;
}

.entry .content p {
  margin-bottom: 0.4em;
}

.entry .content li {
  list-style-type: decimal-leading-zero;
  list-style-position: inside;
  margin-bottom: 0.4em;
  line-height: 1.5;
}

.entry .content li::marker {
  color: #8c8c8c;
}

.entry::before {
  content: "";
  position: absolute;
  width: 3rem;
  height: 2px;
  top: calc(50% - 1px);
  left: 0;
  background-color: #0ed8df;
}

.entry::after {
  content: "";
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 100%;
  top: calc(50% - 0.7rem);
  left: -0.7rem;
  z-index: 1;
  background-color: #0ed8df;
}

/*
  ========================================
  CTA Section
  ========================================
*/
#cta {
  margin-bottom: 10rem;
}

#cta .btn-primary::before {
  content: "Coming soon";
  position: absolute;
  color: #d9d9d9;
  font-size: 0.7em;
  -webkit-transform: translate(-1.4rem, 2.4rem);
          transform: translate(-1.4rem, 2.4rem);
}

/*
  ========================================
  Footer
  ========================================
*/
footer {
  background: #121212;
}

footer a,
footer a:visited {
  color: #d9d9d9;
}

footer .container {
  padding-top: 3rem;
  padding-bottom: 3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  color: #8c8c8c;
}

footer .container .logo {
  max-height: 2rem;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

footer .container .footer-nav ul {
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .container .footer-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  text-align: center;
}

footer .container .social {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .container .social .logo {
  display: none;
}

footer .container .social ul {
  gap: 1rem;
  max-width: 10rem;
}

footer .container .social ul li {
  width: 50%;
}

footer .container .social ul img {
  max-width: 3rem;
}

footer .copyright {
  text-align: center;
  margin: 0;
}

footer .icon {
  max-height: calc(1em * 1.5);
  aspect-ratio: 1;
}

/*
  ========================================
  Terms & Conditions
  ========================================
*/
#terms {
  text-align: left;
  max-width: 77ch;
}

/*
  ========================================
  Media Queries
  ========================================
*/
/*
  ========================================
  Small
  ========================================
*/
@media (min-width: 481px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/*
  ========================================
  Medium
  ========================================
*/
@media (min-width: 760px) {
  .container {
    padding-left: 5rem;
    padding-right: 5rem;
  }
  header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .mobile-nav-toggle {
    display: none;
  }
  header .navbar {
    -webkit-transform: none;
            transform: none;
    background: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    inset: auto;
    position: static;
    width: auto;
    padding: 0;
    gap: 1.5rem;
  }
  header .navbar .main-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1.5rem;
  }
  header .navbar .social {
    gap: 0.4rem;
  }
  header .navbar .social img {
    max-height: 1.6rem;
  }
  #hero {
    text-align: right;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #hero .container {
    position: absolute;
    -ms-flex-item-align: end;
        align-self: flex-end;
    width: calc(30% + 20rem);
    margin: 0;
  }
  #hero .hero-ctas {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  footer .container {
    gap: 2rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .container .logo {
    display: none;
  }
  footer .container .footer-nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .container .footer-menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  footer .container .social {
    -ms-flex-preferred-size: 1;
        flex-basis: 1;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  footer .container .social .logo {
    display: inherit;
  }
  footer .container .social ul {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .container .social ul img {
    max-width: 2rem;
  }
  footer .container .footer-about {
    -ms-flex-preferred-size: 22rem;
        flex-basis: 22rem;
    text-align: right;
  }
}

/*
  ========================================
  Large
  ========================================
*/
@media (min-width: 1200px) {
  html {
    font-size: 112.5%;
  }
  /*18px*/
  .container {
    padding-left: 6rem;
    padding-right: 6rem;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
  }
  /*
    ========================================
    Header
    ========================================
    */
  header {
    height: 6rem;
    max-height: 6rem;
  }
  header a,
  header a:visited {
    line-height: 1;
  }
  header .container {
    gap: 2rem;
    height: 6rem;
    max-height: 6rem;
  }
  header .container .navbar {
    font-size: 1rem;
    gap: 2rem;
  }
  header .container .navbar nav ul {
    gap: 2rem;
  }
  header .container .navbar .social ul img {
    max-height: 2rem;
  }
  /*
    ========================================
    Roadmap Timeline
    ========================================
    */
  .timeline::after {
    left: auto;
  }
  .entry {
    width: 50%;
  }
  .entry:nth-of-type(odd) {
    padding: 2rem 3rem 2rem 0;
  }
  .entry:nth-of-type(odd)::before {
    left: calc(100% - 3rem);
  }
  .entry:nth-of-type(odd)::after {
    left: calc(100% - 0.7rem);
  }
  .entry:nth-of-type(even) {
    left: 50%;
  }
}
/*# sourceMappingURL=main.css.map */