.section-hero {
  padding: 16px 20px 0;
}

.hero-banner {
  max-width: 1272px;
  margin: 0 auto;
  border-radius: 24px 24px 200px 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    180deg,
    #eb61ff 0%,
    #756cff 25%,
    #0077ff 50%,
    #000e45 93%
  );
  min-height: 532px;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./../images/hero-bg.png") center/cover no-repeat;
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 630px;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 86px;
  text-transform: uppercase;
  line-height: 0.92;
  text-shadow: 0px 12px 20px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  max-width: 590px;
  margin-top: 8px;
}

.hero-btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-black);
  font-weight: 900;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.55px;
  padding: 21px 60px;
  border-radius: 12px;
  margin-top: 24px;
}

.hero-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  max-width: 52%;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1023px) {
  .hero-banner {
    min-height: 400px;
    border-radius: 24px 24px 100px 100px;
    padding: 40px 30px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 16px 40px;
  }

  .hero-image {
    max-width: 45%;
    opacity: 0.6;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 30px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-image {
    display: none;
  }

  .hero-banner {
    min-height: 300px;
    border-radius: 24px 24px 60px 60px;
  }
}
