/*
* 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 {
  min-height: 22.1875rem;
  padding-top: 4.875rem;
  padding-bottom: 3.4375rem;
  background: linear-gradient(-10deg, #073A4C 0%, #315A69 50%);
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  color: #fff;
  display: flex;
  align-items: end;
  justify-content: center;
}
@media only screen and (min-width: 87.5em) {
  .sn_intro {
    text-align: center;
    padding-top: 5.5rem;
    background: linear-gradient(110deg, #315A69 0%, #073A4C 30%, #073A4C 70%, #315A69 100%);
  }
}