/* app/views/shared/_content_page.module.css */
body {
  --body-background: var(--white);
}
.base-c7808b0e {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--desktop);
  width: 98%;
  margin-top: 30px;
  width: 100%;
}
@media (max-width: 768px) {
  .base-c7808b0e {
    width: 100%;
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .base-c7808b0e {
    display: flex;
  }
}
.base-c7808b0e > div:first-child {
  flex: 1;
}
.base-c7808b0e p:empty {
  margin: 0;
  min-height: 0;
}
.hero-c7808b0e {
  position: relative;
  height: 310px;
  background-image:
    linear-gradient(
      180deg,
      rgba(48, 34, 56, 0) 0%,
      rgba(48, 34, 56, 0.8) 100%);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  color: var(--white);
  box-shadow: var(--block-shadow);
  border-radius: 0;
  padding: 0 10px;
}
@media (min-width: 426px) {
  .hero-c7808b0e {
    border-radius: 4px;
  }
}
@media (min-width: 425px) {
  .hero-c7808b0e {
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .hero-c7808b0e {
    padding: 0 26px;
  }
}
.hero-c7808b0e h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2em;
  font-weight: 300;
}
@media (min-width: 768px) {
  .hero-c7808b0e h1 {
    font-size: 36px;
  }
}
.hero-c7808b0e > div {
  font-size: 15px;
  margin: 15px 0 22px;
  color: var(--gray2);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .hero-c7808b0e > div {
    flex-direction: row;
  }
}
.hero-c7808b0e > div > a {
  color: var(--gray2);
  font-weight: 300;
}
@media (min-width: 768px) {
  .hero-c7808b0e > div > a {
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid var(--gray6);
  }
}
.hero-c7808b0e > div > a:hover {
  color: var(--gray2);
  text-decoration: underline;
}
.hero-c7808b0e > div > div {
  display: flex;
}
@media (min-width: 768px) {
  .hero-c7808b0e > div > div {
    margin-right: 20px;
    border-right: 1px solid var(--gray6);
    padding-right: 20px;
  }
}
.hero-c7808b0e > div > div span {
  margin-right: 5px;
}
.hero-c7808b0e > div > div a {
  color: var(--white);
  font-weight: 300;
}
.hero-c7808b0e > div > div a:hover {
  color: var(--white);
  text-decoration: underline;
}
.body-c7808b0e {
  margin: 40px 10px 70px;
  line-height: 23px;
  position: relative;
  font-size: 16px;
}
@media (min-width: 425px) {
  .body-c7808b0e {
    margin: 40px 20px 70px;
  }
}
@media (min-width: 768px) {
  .body-c7808b0e {
    margin: 40px 30px 70px 50px;
  }
}
@media (min-width: 1024px) {
  .body-c7808b0e {
    margin: 40px 0 100px 50px;
  }
}
.body-c7808b0e .paragraph,
.body-c7808b0e p {
  display: block;
  margin: 1em 0;
  min-height: 1em;
}
.body-c7808b0e a:not([href]) {
  text-decoration: none;
}
.body-c7808b0e .anchoredHeader {
  margin-top: 0;
}
.body-c7808b0e .anchor {
  display: block;
  position: relative;
  top: -0.5rem;
  outline: none;
}
.body-c7808b0e .anchor:target:before {
  content: "";
  display: block;
  height: var(--body-margin-top);
  margin: calc(var(--body-margin-top) * -1) 0 0;
  visibility: hidden;
}
.body-c7808b0e .paragraph + blockquote,
.body-c7808b0e p + blockquote {
  margin-top: 40px;
}
.body-c7808b0e h2 + p,
.body-c7808b0e h2 + .paragraph {
  margin-top: 0;
}
.body-c7808b0e .image {
  max-width: 100%;
}
.body-c7808b0e .image img {
  width: 100%;
  border-radius: 4px;
}
.body-c7808b0e .image p {
  color: var(--gray6);
  font-size: 14px;
  margin: 0;
}
.body-c7808b0e .contentButton > a,
.body-c7808b0e .contentButton__purple > a {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3px;
  appearance: none;
  transition: background-color ease-in-out 0.15s;
  cursor: pointer;
  box-shadow: var(--block-shadow-min);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
}
:is(.body-c7808b0e .contentButton > a, .body-c7808b0e .contentButton__purple > a):hover {
  background-color: var(--link-hover-color);
  color: var(--white);
}
:is(.body-c7808b0e .contentButton > a, .body-c7808b0e .contentButton__purple > a):disabled {
  background-color: var(--gray4);
  font-weight: 300;
  cursor: not-allowed;
  color: var(--gray6);
  box-shadow: none;
}
.body-c7808b0e .contentButton__white > a {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3px;
  appearance: none;
  transition: background-color ease-in-out 0.15s;
  cursor: pointer;
  box-shadow: var(--block-shadow-min);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
  background-color: var(--white);
  color: var(--primary-color);
  box-shadow: none;
  border: 1px solid var(--primary-color);
}
.body-c7808b0e .contentButton__white > a:hover {
  background-color: var(--link-hover-color);
  color: var(--white);
}
.body-c7808b0e .contentButton__white > a:disabled {
  background-color: var(--gray4);
  font-weight: 300;
  cursor: not-allowed;
  color: var(--gray6);
  box-shadow: none;
}
.body-c7808b0e .contentButton__white > a:disabled,
.body-c7808b0e .contentButton__white > a:hover {
  background-color: var(--gray3);
  color: var(--primary-color);
}
.body-c7808b0e .contentButton__green > a {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3px;
  appearance: none;
  transition: background-color ease-in-out 0.15s;
  cursor: pointer;
  box-shadow: var(--block-shadow-min);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
  background-color: var(--green4);
  color: var(--white);
  box-shadow: none;
  border: 1px solid var(--green4);
}
.body-c7808b0e .contentButton__green > a:hover {
  background-color: var(--link-hover-color);
  color: var(--white);
}
.body-c7808b0e .contentButton__green > a:disabled {
  background-color: var(--gray4);
  font-weight: 300;
  cursor: not-allowed;
  color: var(--gray6);
  box-shadow: none;
}
.body-c7808b0e .contentButton__green > a:disabled,
.body-c7808b0e .contentButton__green > a:hover {
  background-color: var(--green5);
  color: var(--white);
}
.body-c7808b0e .contentButton__gray > a {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3px;
  appearance: none;
  transition: background-color ease-in-out 0.15s;
  cursor: pointer;
  box-shadow: var(--block-shadow-min);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
  background-color: var(--secondary-color);
  color: var(--black);
}
.body-c7808b0e .contentButton__gray > a:hover {
  background-color: var(--link-hover-color);
  color: var(--white);
}
.body-c7808b0e .contentButton__gray > a:disabled {
  background-color: var(--gray4);
  font-weight: 300;
  cursor: not-allowed;
  color: var(--gray6);
  box-shadow: none;
}
.body-c7808b0e .contentButton__gray > a:hover {
  background-color: var(--gray5);
  color: var(--black);
}
.body-c7808b0e .contentButton__gray > a:disabled {
  background-color: var(--gray3);
  color: var(--gray6);
}
.body-c7808b0e .contentButton__alignCenter {
  display: flex;
  justify-content: center;
}
.body-c7808b0e .contentButton__alignRight {
  display: flex;
  justify-content: flex-end;
}
.body-c7808b0e .contentButton__fullWidth > a {
  width: 100%;
}
.body-c7808b0e .clientAuthEmailPlugin {
  background-color: var(--blue0);
  padding: 10px;
  border-radius: 6px;
  box-shadow: var(--block-shadow-min);
}
.body-c7808b0e .clientAuthEmailPlugin form > div {
  margin-bottom: 8px;
}
.body-c7808b0e .clientAuthEmailPlugin form > div > div > div {
  --input-background: transparent;
  --input-border-color: transparent;
}
.body-c7808b0e .tableOfContentsPlugin ul {
  margin: 0;
}
.body-c7808b0e .carouselPlugin {
  padding: 0 0 30px;
  display: inline-block;
  width: 100%;
}
.body-c7808b0e .carouselPlugin blockquote {
  font-weight: 300;
  font-size: 16px;
  margin: 10px 0;
}
@media (min-width: 768px) {
  .body-c7808b0e .carouselPlugin blockquote {
    font-size: 18px;
    margin: 20px 50px 20px 40px;
  }
}
.body-c7808b0e .carouselPlugin blockquote::before {
  content: none;
}
.body-c7808b0e .carouselPlugin h2 {
  margin: 40px 0 30px;
  text-align: center;
  color: var(--blue7);
  font-weight: 500;
  font-size: 18px;
}
@media (min-width: 768px) {
  .body-c7808b0e .carouselPlugin h2 {
    font-size: 20px;
  }
}
.body-c7808b0e .carouselPlugin > div {
  width: 100%;
}
.body-c7808b0e .carouselPlugin button {
  padding: 0;
  top: -22px;
}
@media (max-width: 767px) {
  .body-c7808b0e .carouselPlugin button {
    bottom: unset;
    left: -14px;
  }
}
@media (min-width: 768px) {
  .body-c7808b0e .carouselPlugin button {
    top: 42px;
  }
}
@media (max-width: 767px) {
  .body-c7808b0e .carouselPlugin button:last-child {
    right: -25px;
    left: unset;
  }
}
.body-c7808b0e .carouselPlugin p {
  display: block;
  font-size: 16px;
}
.body-c7808b0e .public-DraftEditorPlaceholder-root {
  color: var(--gray6);
  position: absolute;
  z-index: 0;
}
.body-c7808b0e span {
  display: inline;
}
.body-c7808b0e li {
  margin: 2px 0;
}
.body-c7808b0e blockquote {
  color: var(--black);
  font-style: normal;
  margin: 40px 0 40px 36px;
  font-size: 18px;
  line-height: 1.5em;
  position: relative;
}
@media (min-width: 768px) {
  .body-c7808b0e blockquote {
    margin-left: 0;
  }
}
.body-c7808b0e blockquote::before {
  content: url(/images/icons/quote-left-solid-pink.svg);
  width: 22px;
  height: 22px;
  display: block;
  position: absolute;
  left: -28px;
}
@media (min-width: 425px) {
  .body-c7808b0e blockquote::before {
    width: 30px;
    height: 30px;
    left: -40px;
  }
}
.body-c7808b0e h2,
.body-c7808b0e h3 {
  line-height: 1.3em;
}
:is(.body-c7808b0e h2, .body-c7808b0e h3):empty {
  display: inline-block;
}
.body-c7808b0e h2 {
  margin: 26px 0;
}
.body-c7808b0e h3 {
  margin: 12px 0;
}
.sidebar-c7808b0e {
  padding: 60px 10px 20px;
  position: relative;
  border-top: 2px solid var(--gray3);
}
@media (min-width: 425px) and (max-width: 767px) {
  .sidebar-c7808b0e {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .sidebar-c7808b0e {
    display: flex;
    flex-flow: wrap;
  }
}
@media (min-width: 1024px) {
  .sidebar-c7808b0e {
    width: 380px;
    padding-left: 50px;
    padding-right: 0;
    padding-top: 0;
    border-top: none;
  }
}
.sidebar-c7808b0e h3 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2em;
  color: var(--purple7);
}
.sidebar-c7808b0e a {
  font-weight: 300;
}
/*# sourceMappingURL=_content_page.module.css.map */