/*
* 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_full {
  height: calc(100vh - 4.125rem - 4rem);
  min-height: 31.25rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 78.125em) {
  .sn_hero_full {
    height: calc(100vh - 4.125rem);
  }
}
.sn_hero_full__logo {
  position: absolute;
  top: 1rem;
  left: 0.9375rem;
  z-index: 30;
  pointer-events: none;
  max-width: 4.0625rem;
}
@media only screen and (min-width: 78.125em) {
  .sn_hero_full__logo {
    position: absolute;
    top: 1.625rem;
    left: 2.75rem;
    max-width: 7.5rem;
  }
}
.sn_hero_full__logo img {
  width: auto;
  max-width: 100%;
}
.sn_hero_full__backlink {
  position: absolute;
  top: 1rem;
  left: 0.9375rem;
  z-index: 30;
  pointer-events: none;
}
@media only screen and (min-width: 78.125em) {
  .sn_hero_full__backlink {
    position: absolute;
    top: 1.5rem;
    left: 2.75rem;
  }
}
.sn_hero_full__backlink a,
.sn_hero_full__backlink button {
  pointer-events: auto;
  text-transform: uppercase;
  font-weight: 600;
}
.sn_hero_full__backlink a,
.sn_hero_full__backlink button {
  font-size: 0.875rem;
}
.sn_hero_full__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.sn_hero_full__media::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.sn_hero_full__media picture,
.sn_hero_full__media .sn_video {
  width: 100%;
  height: 100%;
}
.sn_hero_full__media picture img,
.sn_hero_full__media picture video,
.sn_hero_full__media .sn_video img,
.sn_hero_full__media .sn_video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sn_hero_full__content {
  position: absolute;
  top: 50%;
  margin-top: auto;
  margin-bottom: auto;
  transform: translateY(-50%);
  left: 0;
  z-index: 30;
  width: 100%;
}
@media only screen and (min-width: 0em) and (max-width: 35.99em) {
  .sn_hero_full__content br {
    display: none;
  }
}
.sn_hero_full__content__text {
  max-width: 33.75rem;
}