section.hero-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  height: fit-content;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  section.hero-section {
    max-height: 600px;
    height: 600px;
  }
}
section.hero-section .hero-container {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
section.hero-section .hero-image-bg {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
}
@media (min-width: 768px) {
  section.hero-section .hero-image-bg {
    position: absolute;
    left: 10%;
    height: 100%;
  }
}
section.hero-section .hero-image-bg picture,
section.hero-section .hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%; /* fallback, overridden by inline style */
  display: block;
}
section.hero-section .curved-gradient-sidebar {
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(0deg, #f08323 0%, #e8452c 100%);
  height: 100%;
  padding: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: none;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  section.hero-section .curved-gradient-sidebar {
    clip-path: url(#orange-clip);
    width: 60%; /* Adjust based on how much of the image you want to cover */
    position: absolute;
  }
}
section.hero-section .content-container {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centre */
  align-items: flex-start; /* keep text left aligned */
  height: 100%;
  width: 100%;
  color: white;
  padding: 20px 4%;
  gap: 16px;
}
section.hero-section .content-container h1 {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 2.3rem;
}
section.hero-section .content-container h1.xl {
  font-family: "Manrope", sans-serif;
  font-size: 2.5rem;
  line-height: 2.8rem;
}
section.hero-section .content-container h1.xxl {
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
  line-height: 3.3rem;
}
section.hero-section .content-container p {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  line-height: 1.75rem;
}
section.hero-section .content-container .fa-ul-circle-check li {
  margin-left: 2em;
  position: relative;
}
section.hero-section .content-container .fa-ul-circle-check li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  position: absolute;
  left: -1.75em;
  line-height: 24px;
}
@media (min-width: 768px) {
  section.hero-section .content-container {
    width: 60%;
    padding-left: 10%;
  }
}
@media (min-width: 1440px) {
  section.hero-section .content-container h1 {
    font-family: "Manrope", sans-serif;
    font-size: 2.5rem;
    line-height: 2.8rem;
  }
  section.hero-section .content-container h1.xl {
    font-family: "Manrope", sans-serif;
    font-size: 3rem;
    line-height: 3.3rem;
  }
  section.hero-section .content-container h1.xxl {
    font-family: "Manrope", sans-serif;
    font-size: 4rem;
    line-height: 4.3rem;
  }
  section.hero-section .content-container p {
    font-family: "Manrope", sans-serif;
    font-size: 1.5rem;
    line-height: 1.75rem;
  }
}