.hero {
  position: relative;
}

.hero .hero__inner {
  padding: 157px 0;
  min-height: 570px;
}

.hero .hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero .hero__media img,
.hero .hero__media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero__content {
  position: relative;
  z-index: 2;
  max-width: 60%;
}

.hero .hero__title {
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
}

@media(max-width: 1023px) {
  .hero .hero__inner {
    min-height: 470px;
  }
}

@media(max-width: 767px) {
  .hero .shell {
    padding: 0;
  }

  .hero .hero__media {
    position: relative;
    padding-top: 56.25%;
    height: auto;
  }

  .hero .hero__inner {
    padding: 0;
    min-height: auto;
  }

  .hero .hero__content {
    width: 100%;
    max-width: 100%;
    background-color: #68A500;
    padding: 12px 20px;
  }

  .hero .hero__title {
    font-size: 26px;
    margin: 0;
  }
}