.hero-block {
  position: relative;
  width: 100%;
  height: calc(80vh - 150px);
  overflow: hidden;
}

.hero_bg,
.hero_video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero_bg {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

.hero_video {
  object-fit: cover;
}

.hero_inner {
  position: absolute;
  left: 0;
  bottom: 4rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background: white;
  padding: 2rem;
  transform: translateX(-2rem);
  width: 100%;
  max-width: 40rem;
}

.hero-block h1,
.hero-block p {
  margin: 0 !important;
}

@media (max-width: 768px) {
  .hero_inner {
    transform: translateX(0);
  }

  .hero-block .dw_margin_left {
    margin-left: 0 !important;
  }
}
