/*
* 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_media_full__in {
  height: calc(100vh - 4.125rem);
  min-height: 31.25rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 0.0625rem solid #323232;
}
@media only screen and (min-width: 78.125em) {
  .sn_media_full__in {
    height: calc(100vh - 4.125rem);
  }
}
.sn_media_full__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.sn_media_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_media_full__media picture,
.sn_media_full__media .sn_video {
  width: 100%;
  height: 100%;
}
.sn_media_full__media picture img,
.sn_media_full__media picture video,
.sn_media_full__media .sn_video img,
.sn_media_full__media .sn_video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sn_media_full__content {
  left: 0;
  z-index: 30;
  width: 100%;
}
@media only screen and (min-width: 0em) and (max-width: 61.99em) {
  .sn_media_full__content {
    position: absolute;
    bottom: 0.9375rem;
    left: 0;
  }
}
@media only screen and (min-width: 62em) {
  .sn_media_full__content {
    position: absolute;
    top: 50%;
    margin-top: auto;
    margin-bottom: auto;
    transform: translateY(-50%);
  }
}
.sn_media_full__content__title {
  max-width: 33.75rem;
}
.sn_media_full__content__text {
  max-width: 33.75rem;
}