/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");
/*===== VARIABLES CSS =====*/
:root {
  --header-height: 5rem;
  --font-semi: 600;
  /*===== Colores =====*/
  --first-clr: #bd00ff;
  --second: #fff;
  --body-bg: #0a0c3c;
  /*===== Fuente y tipografia =====*/
  --body-font: "Outfit", sans-serif;
  --big-font-size: 2rem;
  --h2-font-size: 1.25rem;
  --normal-font-size: 0.938rem;
  --smaller-font-size: 0.75rem;
  /*===== Margenes =====*/
  --mb-2: 1rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
  /*===== z index =====*/
  --z-back: -10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h2-font-size: 2rem;
    --normal-font-size: 1rem;
    --smaller-font-size: 0.875rem;
  }
}
/*===== BASE =====*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--second);
  background-color: var(--body-bg);
  overflow-x: hidden !important;
  min-height: 100vh;
  width: 100%;
  height: auto;
}

h1,
h2,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::-moz-selection {
  background-color: var(--first-clr);
  color: var(--second-color);
}

::selection {
  background-color: var(--first-clr);
  color: var(--second-color);
}

@font-face {
  font-family: "Green";
  src: url(../green\ fuz.otf);
}
/*===== CLASS CSS ===== */
header {
  width: 100%;
  padding-block: 10px;
  position: absolute;
  top: 0;
}

#hero {
  width: 100%;
  background: url(../images/hero-bg.png) center center no-repeat;
  background-size: cover;
  background-color: #000;
  padding-block: 100px;
}
#hero h1.title {
  font-family: "Green", sans-serif;
  font-weight: 400;
  font-size: 82px;
  line-height: 110%;
  /* or 90px */
}
@media (max-width: 700px) {
  #hero h1.title {
    font-size: 52px;
    line-height: 110%;
  }
}
#hero p {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
}
#hero a.button {
  display: block;
  padding: 16px 32px;
  background: #bd00ff;
  box-shadow: 0px 4px 8px rgba(9, 50, 67, 0.16);
  border-radius: 100px;
  width: -moz-max-content;
  width: max-content;
  font-weight: 600;
  font-size: 16px;
  line-height: 140%;
  color: #ffffff;
}

a {
  transition: all 0.3s linear;
}

a:not(.nav-logo):hover {
  transform: scale(1.2);
}

main {
  width: 100%;
}
main #about {
  width: 100%;
  background-color: #0a0c3c;
  padding-block: 50px;
}
main #about h1.title {
  font-family: "Green", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 110%;
  text-transform: capitalize;
  color: #ffffff;
}
@media (max-width: 700px) {
  main #about h1.title {
    font-size: 40px;
    line-height: 110%;
  }
}
main #about p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
}
@media (max-width: 700px) {
  main #about p {
    font-size: 14px;
    line-height: 32px;
  }
}
@media (max-width: 700px) {
  main #about .img-div {
    order: 2;
  }
}
main #chart {
  padding-block: 50px;
}
@media (min-width: 700px) {
  main #chart img {
    max-width: 700px;
  }
}

footer {
  width: 100%;
  background-color: #0a0c3c;
  padding-block: 30px;
}
@media (max-width: 700px) {
  footer .container {
    justify-content: center !important;
    flex-direction: column !important;
  }
}
footer li.title {
  font-family: "Green", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}/*# sourceMappingURL=style.css.map */