.banner {
  position: relative;
  max-height: 60vh !important;
  height: 60vh !important;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  overflow: hidden;
}

.banner-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.15) 35%,
    rgba(0, 0, 0, 0.55) 65%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.banner .container {
  position: relative;
  z-index: 3;
  padding-bottom: 60px;
}

.banner-heading,
.banner-heading h1,
.banner-heading h2,
.banner-heading h3,
.banner-heading h4,
.banner-heading h5,
.banner-heading h6 {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 0.9429rem + 2.2857vw, 3rem);
  line-height: 120%;
  letter-spacing: 0;
}

.banner-heading-two {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 31px;
  line-height: 150%;
  letter-spacing: 0%;
}

/* RWD  */
@media (min-width: 768px) and (max-width: 1300px) {
  .banner {
    max-height: 70vh !important;
    height: 70vh !important;
  }
}

@media (max-width: 767px) {
  .banner-heading-two {
    font-size: 24px;
  }
}
