.hero-banner {
  position: relative;
  width: 100%;
  padding: 5rem 20px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero-banner-overlay {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.hero-banner-video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  overflow: hidden;
  z-index: 0;
  width: 100%;
}
.hero-banner-video video {
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: initial;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.hero-banner-iframe-wrapper iframe {
  height: 56.25vw;
  width: 177.78vh;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hero-banner .container {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hero-banner-image img {
  margin-top: 1.25rem;
  display: block;
  height: auto;
}
.hero-banner--image-text .hero-banner-image {
  margin-top: 0;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.hero-banner--image-text .hero-banner-image img {
  margin-top: 0;
  margin-bottom: 1.25rem;
}
.hero-banner--image-text .hero-banner-text {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.hero-banner-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: -.5rem;
}
.hero-banner-buttons > * {
  padding: .75rem;
}
.hero-banner-scroll {
  position: absolute;
  bottom: 16px;
  left: calc(50% - 16px);
  z-index: 2;
  cursor: pointer;
  width: calc(32px + 2rem);
  height: calc(32px + 2rem);
  padding: 1rem;
}
}

@media (min-width: 480px) {
  .hero-banner-buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero-banner-video {
    display: block;
  }
  .hero-banner .container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero-banner.hero-banner--text-image .container {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .hero-banner.hero-banner--image-text .container {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .hero-banner-text {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 50%;
    flex: 1 0 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero-banner--text-image .hero-banner-text,
  .hero-banner--image-text .hero-banner-text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .hero-banner-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hero-banner-image img {
    margin-left: 1.5rem;
    max-width: calc(100% - 1.5rem) !important;
  }
  .hero-banner--image-text .hero-banner-image img {
    margin-left: 0;
    margin-right: 1.5rem;
  }
}