/*
* 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 {
  position: relative;
  overflow: hidden;
  padding-top: 7.5rem;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 0em) and (max-width: 47.99em) {
  .sn_hero {
    text-align: center;
    -webkit-clip-path: ellipse(120% 88% at 40% 10%);
            clip-path: ellipse(120% 88% at 40% 10%);
  }
}
@media only screen and (min-width: 48em) {
  .sn_hero {
    -webkit-clip-path: ellipse(100% 85% at 35% 10%);
            clip-path: ellipse(100% 85% at 35% 10%);
    padding-bottom: 1.375rem;
  }
}
@media only screen and (min-width: 0em) and (max-width: 47.99em) {
  .sn_hero.__has_image {
    align-items: stretch;
  }
}
.sn_hero.__has_image .sn_hero__ct > .row {
  height: 100%;
}
@media only screen and (min-width: 0em) and (max-width: 61.99em) {
  .sn_hero:not(.__has_form):not(.__img_center) {
    min-height: 100vh;
    min-height: calc(100vh + calc(calc(2.75rem * var(--sn-preheader-active, 0)) * -1));
    min-height: calc(var(--vh, 1vh) * 100 + calc(calc(2.75rem * var(--sn-preheader-active, 0)) * -1));
    min-height: calc(100dvh + calc(calc(2.75rem * var(--sn-preheader-active, 0)) * -1));
  }
}
@media only screen and (min-width: 48em) {
  .sn_hero:not(.__has_form):not(.__img_center) {
    height: 100vh;
    height: calc(100vh + calc(calc(2.75rem * var(--sn-preheader-active, 0)) * -1));
    height: calc(var(--vh, 1vh) * 100 + calc(calc(2.75rem * var(--sn-preheader-active, 0)) * -1));
    height: calc(100dvh + calc(calc(2.75rem * var(--sn-preheader-active, 0)) * -1));
    min-height: 25rem;
  }
}
.sn_hero.__has_form {
  min-height: 100vh;
  min-height: calc(100vh + calc(calc(2.75rem * var(--sn-preheader-active, 0)) * -1));
  min-height: calc(var(--vh, 1vh) * 100 + calc(calc(2.75rem * var(--sn-preheader-active, 0)) * -1));
  min-height: calc(100dvh + calc(calc(2.75rem * var(--sn-preheader-active, 0)) * -1));
  display: flex;
  align-items: stretch;
  text-align: left;
}
.sn_hero.__has_form .sn_hero__ct {
  height: auto;
}
@media only screen and (min-width: 48em) {
  .sn_hero.__has_form .sn_hero__in {
    padding-bottom: 6.25rem;
  }
}
@media only screen and (min-width: 0em) and (max-width: 47.99em) {
  .sn_hero.__has_form .sn_hero__image {
    position: relative;
    inset: unset;
    margin-bottom: -1.25rem;
  }
}
.sn_hero.__img_center {
  min-height: 100vh;
  min-height: calc(100vh + calc(calc(2.75rem * var(--sn-preheader-active, 0)) * -1));
  min-height: calc(var(--vh, 1vh) * 100 + calc(calc(2.75rem * var(--sn-preheader-active, 0)) * -1));
  min-height: calc(100dvh + calc(calc(2.75rem * var(--sn-preheader-active, 0)) * -1));
  text-align: center;
}
@media only screen and (min-width: 48em) {
  .sn_hero.__img_center .sn_hero__in {
    align-items: center;
  }
}
@media only screen and (min-width: 48em) {
  .sn_hero.__img_center .sn_hero__image {
    position: relative;
    inset: unset;
  }
  .sn_hero.__img_center .sn_hero__image__in {
    position: relative;
    inset: 0;
    max-width: 100%;
    height: auto;
  }
}
.sn_hero__bg_image {
  z-index: 1;
}
.sn_hero__ct {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 48em) {
  .sn_hero__ct {
    overflow: hidden;
    height: 100%;
  }
  .sn_hero__ct > div {
    height: 100%;
  }
}
.sn_hero__in {
  position: relative;
  z-index: 2;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 48em) {
  .sn_hero__in {
    justify-content: center;
    align-items: flex-start;
  }
}
.sn_hero__logo {
  width: 10.3125rem;
  max-width: 100%;
  opacity: 0;
  transform: translateY(6.25rem);
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
@media only screen and (min-width: 0em) and (max-width: 47.99em) {
  .sn_hero__logo {
    margin: 0 auto;
  }
}
body.__window_loaded .sn_hero__logo {
  opacity: 1;
  transform: translateY(0);
}
.sn_hero__title {
  --bs-heading-color: currentColor;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(6.25rem);
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
body.__window_loaded .sn_hero__title {
  opacity: 1;
  transform: translateY(0);
}
.sn_hero__subtitle {
  text-wrap: balance;
  opacity: 0;
  transform: translateY(6.25rem);
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.sn_hero__subtitle.__has_title {
  transform: translateY(0);
  transition-delay: 0.8s;
}
.sn_hero__subtitle, .sn_hero__subtitle p {
  line-height: 1.2;
}
.sn_hero__subtitle svg-sprite {
  width: 3.125rem;
  height: 3.125rem;
  color: #e20714;
  vertical-align: middle;
}
body.__window_loaded .sn_hero__subtitle {
  opacity: 1;
  transform: translateY(0);
}
.sn_hero__cta {
  opacity: 0;
  transform: translateY(6.25rem);
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}
.sn_hero__cta.__has_title {
  transform: translateY(0);
  transition-delay: 0.8s;
}
body.__window_loaded .sn_hero__cta {
  opacity: 1;
  transform: translateY(0);
}
.sn_hero__image {
  overflow: hidden;
  position: relative;
  z-index: 1;
  max-width: 100%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  transition-delay: 0.15s;
}
@media only screen and (min-width: 0em) and (max-width: 47.99em) {
  .sn_hero__image {
    width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }
  .sn_hero__image__in {
    position: relative;
    inset: 0;
    max-width: 100%;
    height: auto;
  }
  .sn_hero__image__in img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 36em) {
  .sn_hero__image {
    width: 28.125rem;
  }
}
@media only screen and (min-width: 48em) {
  .sn_hero__image {
    width: 100%;
    height: 100%;
    margin-right: auto;
  }
  .sn_hero__image__in {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .sn_hero__image__in picture, .sn_hero__image__in img {
    width: 100%;
    height: 100%;
  }
  .sn_hero__image__in img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .sn_hero__image__in img {
    -o-object-position: right bottom;
       object-position: right bottom;
  }
}
@media only screen and (min-width: 75em) {
  .sn_hero__image {
    margin-left: auto;
  }
}
body.__window_loaded .sn_hero__image {
  transform: translateY(0);
  opacity: 1;
}
.sn_hero__form {
  text-align: left;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
  transition-delay: 0.3s;
}
body.__window_loaded .sn_hero__form {
  transform: translateY(0);
  opacity: 1;
}
.sn_hero__form .form-group.form-check {
  padding-top: 0.625rem;
  padding-right: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 3.8125rem;
  margin-bottom: 0;
}
.sn_hero__form .form-group.form-check .form-check-input {
  margin-top: 0.125rem;
}
.sn_hero__form .form-group.form-check label {
  max-height: 15.625rem;
}
@media only screen and (min-width: 48em) {
  .sn_hero__form .form-group.form-check label {
    max-height: 4.5rem;
  }
}
.sn_hero__form .sn_form__bottom {
  margin-top: 0.625rem;
}
@media only screen and (min-width: 0em) and (max-width: 47.99em) {
  .sn_hero *.__desktop_view {
    display: none !important;
  }
}
@media only screen and (min-width: 48em) {
  .sn_hero *.__mobile_view {
    display: none !important;
  }
}