.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #4be1df, #2a6ef2, #0f44ab);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: url('../assets/images/hero.webp') right center no-repeat;
  background-size: cover;
  opacity: 0.6;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100vh;
  margin-left: 10vw;
  margin-right: 10vw;
  position: relative;
  z-index: 2;
}

.hero .container h1, .hero .container h2, .hero .container h3 {
  font-size: 4rem;
  font-weight: 200;
  margin: 0 0 20px 0;
  text-align: left;
}

.hero .container h2 {
  font-weight: 300;
}

.hero .container h1 {
  font-weight: 600;
}

.hero .btn {
  background-color: #08245b;
  margin-top: 50px;
}

.hero .btn:hover {
  color: #2a6ef2;
}

@media (max-width: 500px) {
  .hero .container h1, .hero .container h2, .hero .container h3 {
    font-size: 3rem;
  }
}