.hero {
  background-image:
    linear-gradient(140deg, black, transparent),
    linear-gradient(#ffbd21, #ffbd21), url("/common/images/IMG_9569.JPG");
  background-size: 100%, 100%, 180%;
  background-position:
    center,
    center,
    15% center;
  background-blend-mode: darken, overlay;
  min-height: 30vh;
}

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 100px;
  max-height: 50vh;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-content {
  max-width: 60%;
  font-size: 2rem;
}

.hero-content h1 {
  font-weight: 300;
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 4rem;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #777777;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.hero-cta:hover {
  background-color: #0056b3;
}
