/*
* 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_image_text__main {
  position: relative;
  padding-top: 1.25rem;
  padding-right: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.25rem;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  --bs-heading-color: currentColor;
}
@media only screen and (min-width: 62em) {
  .sn_image_text__main {
    padding-top: 2.5rem;
    padding-right: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 2.5rem;
  }
}
@media only screen and (min-width: 87.5em) {
  .sn_image_text__main {
    padding-top: 4.0625rem;
    padding-right: 4.0625rem;
    padding-bottom: 4.0625rem;
    padding-left: 4.0625rem;
  }
}
.sn_image_text__main.__top {
  justify-content: flex-start;
}
.sn_image_text__main.__bottom {
  justify-content: flex-end;
}
.sn_image_text__main.__left {
  align-items: flex-start;
}
.sn_image_text__main.__left .sn_title_text_cta__in {
  text-align: left;
}
.sn_image_text__main.__right {
  align-items: flex-end;
}
.sn_image_text__main.__right .sn_title_text_cta__in {
  text-align: right;
}
.sn_image_text__main__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  border-radius: 2.5rem;
  background: #b5c9d5;
}
.sn_image_text__main__img.__overlay::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
}
.sn_image_text__main__content {
  position: relative;
  z-index: 4;
}
.sn_image_text__main__secondary {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 6.25rem;
}
.sn_image_text__main__secondary:not(.__outside) {
  margin-bottom: 1.25rem;
}
.sn_image_text__main__secondary.__outside {
  position: absolute;
  bottom: -0.9375rem;
}
@media only screen and (min-width: 62em) {
  .sn_image_text__main__secondary.__outside {
    bottom: -3rem;
  }
}
@media only screen and (min-width: 0em) and (max-width: 74.99em) {
  .sn_image_text__main__secondary.__outside.__inverted {
    right: -1.125rem;
  }
}
@media only screen and (min-width: 62em) and (max-width: 74.99em) {
  .sn_image_text__main__secondary.__outside.__inverted {
    right: -1rem;
  }
}
@media only screen and (min-width: 75em) {
  .sn_image_text__main__secondary.__outside.__inverted {
    left: calc(100% - 1.25rem);
  }
}
@media only screen and (min-width: 0em) and (max-width: 74.99em) {
  .sn_image_text__main__secondary.__outside:not(.__inverted) {
    left: -1.125rem;
  }
}
@media only screen and (min-width: 62em) and (max-width: 74.99em) {
  .sn_image_text__main__secondary.__outside:not(.__inverted) {
    left: -1rem;
  }
}
@media only screen and (min-width: 75em) {
  .sn_image_text__main__secondary.__outside:not(.__inverted) {
    right: calc(100% - 1.25rem);
  }
}
@media only screen and (min-width: 62em) {
  .sn_image_text__ct {
    width: 100%;
    height: 100%;
  }
}