.contactus-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(35vh, 45vh, 50vh);
  display: grid;
  place-items: center;
}

.contactus-hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}
@media (max-width: 768px) {
  .contactus-hero-bg {
    background-image: var(--hero-bg-mobile, var(--hero-bg));
  }
}

.contactus-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, var(--hero-overlay, 0));
  z-index: -1;
}

.contactus-hero-rail {
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  padding-block: var(--space-md);
}

.contactus-hero-content {
  margin-left: auto;
  width: 100%;
  display: grid;
  gap: var(--space-sm);
  text-align: right;
}
.contactus-hero-content h1,
.contactus-hero-content p {
  color: var(--nv-blue);
}

.hero-actions {
  display: flex;
  justify-content: flex-end;
}
