.hero-banner {
  height: 17.27rem;
  background: url("../assets/banner.webp");
  background-size: cover;
  /* background-position: center; */
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero-banner {
    height: 14.71rem;
  }
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background: linear-gradient(
    224.59deg,
    rgba(62, 14, 71, 0) -22.7%,
    #3e0e47 67.83%
  );
}

@media screen and (min-width: 768px) {
  .hero-banner {
    flex-direction: row;
    border: ;
    font-size: ;
    background-color: #f8f8f8;
    height: 15.09rem;
  }
}

.hero-banner__content {
  height: 100%;
  width: 100%;
  z-index: 1;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 0 0 1rem 1rem;
}
@media screen and (min-width: 768px) {
  .hero-banner__content {
    padding: 0 0 1.88rem 1.88rem ;
  }
}

.hero-banner__content h1 {
  font-size: 1.45rem;
  font-weight: 500;
  width: 15.09rem;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .hero-banner__content h1 {
    font-size: 1.2rem;
  }
}

.hero-banner__content p {
  font-size: var(--font-16);
  width: 15.09rem;
  line-height: 1.3;
  margin-top: 0.6rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .hero-banner__content p {
    font-size: var(--font-lg-24);
    width: 11.6rem;
  }
}
