.hero {
  max-width: 100%;
  background-size: cover;
  background-position: center;
  padding: calc(var(--header-height) + 3rem) var(--spacing-7) 10rem;
  color: var(--grey-100);
  position: relative;
  margin-bottom: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.hero-inner {
  max-width: 905px;
  position: relative;
  text-align: left;
  margin-top: 200px;
  margin-left: 150px;
}
.hero h1 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: var(--spacing-7);
}
.hero p {
  font-size: 16px;
  font-family: "Inter";
  margin-bottom: var(--spacing-7);
}
.hero-buttons {
  display: flex;
  gap: var(--spacing-3);
}
