#waveCanvas {
  position: fixed;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.6;
  pointer-events: none;
}

#herobanner-wrapper {
  width: 100vw;
  height: 102vh;
  overflow: hidden;
  position: relative;
}
#herobanner-wrapper #title-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#herobanner-wrapper #title-wrapper #subtitle {
  color: #00e5ff;
  font-size: 20px;
  font-family: "Share Tech Mono", monospace;
}
#herobanner-wrapper #title-wrapper #title {
  font-family: "Orbitron", sans-serif;
  font-size: 120px;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#herobanner-wrapper #title-wrapper #title span {
  font-size: 65px;
  color: transparent;
  -webkit-text-stroke: 1px #00e5ff;
  transform: translateY(-20px);
}
#herobanner-wrapper #title-wrapper #description {
  width: 600px;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  color: #787b88;
  text-align: center;
}

.ctas {
  margin-top: 30px;
  width: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctas.hero-btns {
  width: 620px !important;
}
.ctas .ctas-btns {
  cursor: pointer;
  width: 100%;
  height: 50px;
  position: relative;
  background-color: #00e5ff;
  border: none;
  font-family: "Orbitron", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: #050508;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 10px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: transform 0.2s ease-in-out;
}
.ctas .ctas-btns:hover {
  transform: translateY(-2px);
  background-color: white;
}
.ctas .ctas-btns.youtube {
  background-color: transparent;
  border: 0.5px solid rgba(0, 229, 255, 0.4078431373);
  color: white;
  transition: transform 0.2s ease-in-out;
}
.ctas .ctas-btns.youtube:hover {
  border: 1px solid #00e5ff;
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  #herobanner-wrapper #title-wrapper #title {
    font-size: 10vw;
  }
  #herobanner-wrapper #title-wrapper #title span {
    font-size: 8vw;
    transform: translateY(0);
  }
}
@media (max-width: 830px) {
  #herobanner-wrapper #title-wrapper #subtitle {
    font-size: 2.8vw;
  }
  #herobanner-wrapper .ctas {
    width: 320px;
    height: 110px;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
  }
  #herobanner-wrapper .ctas .ctas-btns {
    width: 320px;
  }
}
@media (max-width: 700px) {
  #herobanner-wrapper #title-wrapper #description {
    width: 80vw;
  }
}
@media (max-width: 500px) {
  #herobanner-wrapper #title-wrapper #description {
    font-size: 15px;
  }
  #herobanner-wrapper #title-wrapper .ctas {
    width: 250px;
    position: relative;
  }
  #herobanner-wrapper #title-wrapper .ctas .ctas-btns {
    width: 250px;
    font-size: 8px;
  }
}/*# sourceMappingURL=herobanner.css.map */