.hs-home-hero {
  padding: 100px 0;
  background: #111;
}

.hs-home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hs-home-hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.hs-home-hero-image img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
}

section:nth-of-type(even) {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    rgba(75, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .hs-home-hero-grid {
    grid-template-columns: 1fr;
  }

  .hs-home-hero-image {
    order: -1;
  }

  .hs-home-hero-actions {
    flex-direction: column;
  }
}
