.hero {
  position: relative;
}
.hero .hero-video-wrapper,
.hero picture {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero .hero-video-wrapper::after,
.hero picture::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.hero .hero-video-wrapper video,
.hero picture img {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center top;
     object-position: center top;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .inner {
  position: relative;
  padding: 200px 10px 20px;
  color: #fff;
  max-width: 1100px;
  margin: 0 auto;
}
.hero .inner .title,
.hero .inner .byline {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
}
.hero .inner .title {
  font-weight: 500;
  line-height: 1.2;
  font-size: 3em;
}
.hero .inner .byline {
  font-size: 1.2em;
}
@media (min-width: 800px) {
  .hero .inner {
    display: flex;
    justify-content: space-between;
    flex-flow: row nowrap;
    gap: 50px;
    padding: 150px 30px 30px;
  }
  .hero .inner .left {
    flex: 0 0 60%;
    display: flex;
    flex-flow: column;
  }
  .hero .inner .right {
    flex: 1;
  }
  .hero .inner .title,
  .hero .inner .byline {
    text-align: left;
  }
  .hero .inner .title {
    font-size: 4em;
  }
  .hero .inner .byline {
    font-size: 1.4em;
  }
}/*# sourceMappingURL=home.css.map */