@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orbitron&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* 62.5% is like 10px */
  overflow-x: hidden;
}

body {
  font-family: "Source Sans 3", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
}

p,
a,
span,
i {
  font-size: 1.4rem;
}

h5 {
  font-size: 1.6rem;
  font-family: "Orbitron", sans-serif;
}

h4 {
  font-size: 1.8rem;
  font-family: "Orbitron", sans-serif;
}

h3 {
  font-size: 2rem;
  font-family: "Orbitron", sans-serif;
}

h2 {
  font-size: 2.2rem;
  font-family: "Orbitron", sans-serif;
}

h1 {
  font-size: 2.4rem;
  font-family: "Orbitron", sans-serif;
}

.hero {
  background-color: #212529;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.hero .hero-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  margin: 5rem 0 10rem 0;
}
.hero .hero-flex .hero-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: #fff;
  margin-left: 10rem;
  width: 40%;
}
.hero .hero-flex .hero-text .heading-primary {
  font-size: 7rem;
  font-family: "Orbitron", sans-serif;
  text-align: left;
}
.hero .hero-flex .hero-text p {
  font-size: 1.8rem;
}
.hero .hero-flex .hero-text .btns-hero {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
}
.hero .hero-flex .hero-text .btns-hero .btn-getstarted {
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  padding: 1.4rem 2.8rem;
  width: 25rem;
  background: linear-gradient(70deg, rgb(189, 0, 255) 0%, rgb(0, 184, 255) 47%, rgb(0, 255, 159) 100%);
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  background-size: 150% 150%;
  background-position: 0 0;
  transition: background-position 0.5s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.hero .hero-flex .hero-text .btns-hero .btn-getstarted:hover {
  background-position: 100% 100%;
  transform: scale(1.05);
}
.hero .hero-flex .hero-text .btns-hero .btn-getstarted:active {
  transform: translateY(2px);
}
.hero .hero-flex .hero-text .btns-hero .btn-learnmore {
  text-align: center;
  text-decoration: none;
  width: 25rem;
  color: #ffffff;
  padding: 1.4rem 7rem;
  box-shadow: 0px 0px 0px 0.1rem rgb(255, 255, 255) inset;
  border-radius: 5px;
  font-size: 1.6rem;
  font-weight: 500;
  transition: background-position 0.5s ease-in-out, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.hero .hero-flex .hero-text .btns-hero .btn-learnmore:hover {
  transform: scale(1.05);
}
.hero .hero-flex .laptop {
  width: 60%;
}
.hero .hero-flex .laptop img {
  display: block;
  height: auto;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .hero-text .heading-primary {
    font-size: 5.5rem !important;
  }
  .hero-text .btns-hero .btn-getstarted {
    width: auto !important;
  }
  .hero-text .btns-hero .btn-learnmore {
    width: auto !important;
  }
}
@media screen and (max-width: 900px) {
  .hero-flex {
    flex-direction: column !important;
  }
  .hero-flex .hero-text {
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
    margin-left: 0 !important;
    width: 60% !important;
  }
  .hero-flex .hero-text .heading-primary {
    font-size: 5.5rem !important;
    text-align: center !important;
  }
  .hero-flex .hero-text .btns-hero .btn-getstarted {
    width: auto !important;
  }
  .hero-flex .hero-text .btns-hero .btn-learnmore {
    width: auto !important;
  }
  .hero-flex .laptop {
    width: 100% !important;
  }
  .hero-flex .laptop img {
    width: 90% !important;
    margin-left: 10%;
  }
}
@media screen and (max-width: 650px) {
  .hero-flex .hero-text {
    width: 80% !important;
  }
  .hero-flex .hero-text .btns-hero {
    flex-direction: column;
    justify-content: center;
  }
  .hero-flex .laptop {
    width: 100% !important;
  }
  .hero-flex .laptop img {
    width: 90% !important;
    margin-left: 10%;
  }
}/*# sourceMappingURL=hero_index.css.map */