/*
* 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_intro {
  position: relative;
  overflow: hidden;
  display: flex;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 0;
}
.sn_intro__ct {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
  z-index: 1;
  width: 100%;
}
@media only screen and (min-width: 87.5em) {
  .sn_intro__ct {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}
.sn_intro::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}