.bg-banner-general {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background: #FFF;
}

.bg-banner-general img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-caption {
  position: absolute;
  left: 136px;
  bottom: 80px;
  z-index: 2;
  color: #FFF;
}

.hero-title {
  margin: 0 0 10px;
  line-height: 1.08;
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.hero-title.title-important {
  border: 2px solid #FFF;
  width: fit-content;
  padding: 6px 4px;
}

.hero-title.title-important-home {
  border: 2px solid #FFF;
  width: fit-content;
  padding: 6px 52px 6px 4px;
}

.hero-subtitle {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 500;
  width: 380px;
}

.hero-cta {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  background: #0058B8;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(26,115,232,.25);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.hero-cta:hover {
  background: #014fa1;
}

@media (max-width: 1024px) {
  .hero-caption {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .hero-caption {
    bottom: 40px;
    max-width: 90%;
  }

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

  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-caption {
    bottom: 60px;
  }

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

  .hero-subtitle {
    width: 100%;
    font-size: 16px;
  }
}
