.hero-text-container {
  position: relative;
  flex-basis: 42%;
  display: flex;
  justify-content: start;
  align-items: start;
  background: url("/assets/images/pattern-hero.svg"), var(--gradient-bg);
  background-size: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  color: white;
}
.hero-text {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  z-index: 1;
  padding: 2rem 0;
  padding-inline-end: 1rem;
}

.btn-primary {
  background-color: #5c6bc0;
  color: white;
  border-radius: 20px;
  padding: 10px 20px;
  margin-top: 20px;
}
.btn-primary:hover {
  background-color: #4f5b8d;
}
.hero-text-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    46deg,
    #211f5f 29.53%,
    rgba(64, 85, 165, 0.9) 101.34%
  );
  z-index: 0;
}

@media (max-width: 991.88px) {
  .hero-section {
    height: auto !important;
  }
  .section-responsive {
    display: flex;
    flex-direction: column;
  }

  .hero-image {
    flex-basis: 100%;
    max-width: 100%;
    transform: none !important;
  }
}

@media (min-width: 992px) {
  .hero-image {
    flex-basis: 58%;
    max-width: 58%;
  }
}
