/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v2.0.0
* Docs at http://ramseyinhouse.github.io/scut
*/
.sn_hero {
  background-color: #073A4C;
}
.sn_hero__wr {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  overflow: hidden;
  max-height: 67.5rem;
}
.sn_hero__wr .plyr {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.sn_hero__wr .plyr__poster {
  background-size: cover;
}
.sn_hero__wr video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}