/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.hero-block {
  position: relative;
  min-height: 60rem;
  color: #fff;
  padding: 4.4rem 0 12rem;
}
.hero-block .hero-content {
  display: flex;
  height: 100%;
  align-items: flex-end;
}
.hero-block .heading {
  margin: 0 0 2.4rem;
}
.hero-block .text {
  max-width: 70.6rem;
}
.hero-block .background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero-block .background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-block .background-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.hero-block .background-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-block .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: -1;
}

@media (max-width: 768px) {
  .hero-block {
    min-height: unset;
    color: #fff;
    padding: 8.4rem 0;
  }
  .hero-block .heading {
    margin: 0 0 1.6rem;
  }
}