:root {
  --base-font-size: 18px;
  --masthead-height: 130px; }
  @media (max-width: 768px) {
    :root {
      --base-font-size: 16px; } }
  @media (max-width: 500px) {
    :root {
      --base-font-size: 14px;
      --masthead-height: 85px; } }

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html, body {
  font-size: var(--base-font-size);
  height: 100%; }

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 1.444; }
  body[burger-expanded="true"] {
    overflow: hidden; }

h1 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 0.5em; }

h2 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 1.888rem;
  line-height: 1.25;
  color: #572485;
  margin-bottom: 0.2em; }
  .text-white h2 {
    color: #fff; }

h3 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 1.555rem;
  line-height: 1.25;
  color: #572485;
  margin-bottom: 0.2em; }
  .text-white h3 {
    color: #fff; }

h4 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 1.222rem;
  line-height: 1.25;
  color: #572485;
  margin-bottom: 0.2em;
  color: #572485; }
  .text-white h4 {
    color: #fff; }

h5 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.25;
  color: #572485;
  margin-bottom: 0.2em; }
  .text-white h5 {
    color: #fff; }

h1 a, h2 a, h3 a, h4 a, h5 a {
  color: #572485;
  text-decoration: none; }

table {
  margin-bottom: 2rem;
  border-collapse: collapse;
  table-layout: fixed; }
  table caption {
    font-family: "Fira Sans", sans-serif;
    font-weight: 500;
    font-size: 1.222rem;
    line-height: 1.25;
    text-align: left;
    margin-bottom: 1.5rem; }

th {
  text-align: left;
  background-color: #4d4d4d;
  color: #fff;
  font-weight: 400; }

th, td {
  padding: 0.2rem 0.5rem;
  vertical-align: top;
  border-bottom: 1px solid #a6a6a6; }

p {
  margin-bottom: 1.2em; }

a {
  color: #00579e;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; }
  a:focus {
    -webkit-box-shadow: 0 0 0 2px #572485;
            box-shadow: 0 0 0 2px #572485;
    outline: none; }
  a:visited {
    color: #301745; }
  a:hover {
    opacity: 0.7; }

button {
  -webkit-transition: opacity 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53);
  transition: opacity 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53); }
  button:hover {
    opacity: 0.7; }

b,
strong {
  font-weight: 600; }

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1.2rem; }
  ul li:not(:last-child),
  ol li:not(:last-child) {
    margin-bottom: 0.444rem; }
  li ul,
  li ol {
    margin-top: 0.444rem; }

button:focus {
  -webkit-box-shadow: 0 0 0 2px #572485;
          box-shadow: 0 0 0 2px #572485;
  outline: none; }

img {
  max-width: 100%;
  height: auto; }

hr {
  display: block;
  height: 1px;
  margin: 1.75rem 0;
  overflow: hidden;
  border: none;
  background-color: #572485; }
  hr.is-lite {
    background-color: #cdbdda; }

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="number"] {
  padding: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #999;
  background-color: #fff;
  font-size: 0.9rem;
  font-weight: inherit;
  font-family: inherit; }
  input[type="text"]:focus,
  input[type="tel"]:focus,
  input[type="email"]:focus,
  input[type="password"]:focus,
  input[type="number"]:focus {
    -webkit-box-shadow: 0 0 0 2px #572485;
            box-shadow: 0 0 0 2px #572485;
    outline: none; }
  input[type="text"]::-webkit-input-placeholder,
  input[type="tel"]::-webkit-input-placeholder,
  input[type="email"]::-webkit-input-placeholder,
  input[type="password"]::-webkit-input-placeholder,
  input[type="number"]::-webkit-input-placeholder {
    color: #000;
    opacity: 0.3;
    font-weight: 300;
    font-size: 0.9rem; }
  input[type="text"]:-moz-placeholder,
  input[type="tel"]:-moz-placeholder,
  input[type="email"]:-moz-placeholder,
  input[type="password"]:-moz-placeholder,
  input[type="number"]:-moz-placeholder {
    color: #000;
    opacity: 0.3;
    font-weight: 300;
    font-size: 0.9rem; }
  input[type="text"]::-moz-placeholder,
  input[type="tel"]::-moz-placeholder,
  input[type="email"]::-moz-placeholder,
  input[type="password"]::-moz-placeholder,
  input[type="number"]::-moz-placeholder {
    color: #000;
    opacity: 0.3;
    font-weight: 300;
    font-size: 0.9rem; }
  input[type="text"]:-ms-input-placeholder,
  input[type="tel"]:-ms-input-placeholder,
  input[type="email"]:-ms-input-placeholder,
  input[type="password"]:-ms-input-placeholder,
  input[type="number"]:-ms-input-placeholder {
    color: #000;
    opacity: 0.3;
    font-weight: 300;
    font-size: 0.9rem; }

.block {
  display: block; }

.inline-block {
  display: inline-block; }

.no-overflow {
  overflow: hidden; }

.narrow-content {
  max-width: 880px;
  margin: 0 auto; }

.site-width {
  width: 100%;
  max-width: calc(1200px + ( 1.444rem * 2) );
  padding: 0 1.444rem;
  margin: 0 auto; }

.width-100 {
  width: 100%; }

.text-upper {
  text-transform: uppercase; }

.text-small {
  font-size: 0.75rem !important; }

.text-med {
  font-size: 0.85rem !important; }

.text-center {
  text-align: center; }

.text-left {
  text-align: left; }

.text-right {
  text-align: right; }

.text-purple {
  color: #572485 !important; }

.text-white {
  color: #fff !important; }
  .text-white a {
    color: #fff !important; }
    .text-white a:visited {
      color: #fff !important; }

.text-gray {
  color: #4d4d4d !important; }

.text-black {
  color: #000 !important; }

.text-blue {
  color: #00579e !important; }

.no-underline {
  text-decoration: none; }

.underline {
  text-decoration: underline !important; }

.flat-list {
  list-style: none;
  margin: 0;
  padding: 0; }

@media (min-width: 767px) {
  .columns {
    -webkit-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 4%;
            column-gap: 4%; } }

.bg-gray {
  background-color: #f2f2f2; }

.bg-dark-gray {
  background-color: #4d4d4d; }

.bg-green {
  background-color: #277b3b; }

.bg-white {
  background-color: #fff; }

.bg-purple {
  background-color: #572485; }

.banner-aspect-ratio {
  aspect-ratio: 16 / 9; }

.aspect-ratio {
  --ar-width: 1800px;
  --ar-height: 680px;
  aspect-ratio: calc( 1800/680 ); }

.circular {
  border-radius: 100%; }

@media screen {
  .dimmer {
    position: relative; }
    .dimmer::before {
      content: '';
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 0; }
    .dimmer > div {
      position: relative;
      z-index: 1; } }
.dimmer--purple::before {
  background-color: rgba(87, 36, 133, 0.5); }
.dimmer--blue::before {
  background-color: rgba(0, 87, 158, 0.5); }
.dimmer--green::before {
  background-color: rgba(0, 107, 51, 0.5); }
.dimmer--gray::before {
  background-color: rgba(77, 77, 77, 0.5); }
.dimmer.is-purple::before {
  background-color: rgba(87, 36, 133, 0.5); }
.dimmer.is-blue::before {
  background-color: rgba(0, 87, 158, 0.5); }

.mt-0 {
  margin-top: 0rem !important; }

.pt-0 {
  padding-top: 0rem !important; }

.mb-0 {
  margin-bottom: 0rem !important; }

.pb-0 {
  padding-bottom: 0rem !important; }

.mt-1 {
  margin-top: 1rem !important; }

.pt-1 {
  padding-top: 1rem !important; }

.mb-1 {
  margin-bottom: 1rem !important; }

.pb-1 {
  padding-bottom: 1rem !important; }

.mt-2 {
  margin-top: 2rem !important; }

.pt-2 {
  padding-top: 2rem !important; }

.mb-2 {
  margin-bottom: 2rem !important; }

.pb-2 {
  padding-bottom: 2rem !important; }

.mt-3 {
  margin-top: 3rem !important; }

.pt-3 {
  padding-top: 3rem !important; }

.mb-3 {
  margin-bottom: 3rem !important; }

.pb-3 {
  padding-bottom: 3rem !important; }

.mt-4 {
  margin-top: 4rem !important; }

.pt-4 {
  padding-top: 4rem !important; }

.mb-4 {
  margin-bottom: 4rem !important; }

.pb-4 {
  padding-bottom: 4rem !important; }

.mt-5 {
  margin-top: 5rem !important; }

.pt-5 {
  padding-top: 5rem !important; }

.mb-5 {
  margin-bottom: 5rem !important; }

.pb-5 {
  padding-bottom: 5rem !important; }

.mt-6 {
  margin-top: 6rem !important; }

.pt-6 {
  padding-top: 6rem !important; }

.mb-6 {
  margin-bottom: 6rem !important; }

.pb-6 {
  padding-bottom: 6rem !important; }

.mt-7 {
  margin-top: 7rem !important; }

.pt-7 {
  padding-top: 7rem !important; }

.mb-7 {
  margin-bottom: 7rem !important; }

.pb-7 {
  padding-bottom: 7rem !important; }

.mb-tiny {
  margin-bottom: 0.5rem !important; }

.mt-tiny {
  margin-top: 0.5rem !important; }

.pb-tiny {
  padding-bottom: 0.5rem !important; }

.pt-tiny {
  padding-top: 0.5rem !important; }

.mt-sm {
  margin-top: 2.777rem !important; }

.pt-sm {
  padding-top: 2.777rem !important; }

.mb-sm {
  margin-bottom: 2.777rem !important; }

.pb-sm {
  padding-bottom: 2.777rem !important; }

.mt-content {
  margin-top: 3.333rem !important; }

.pt-content {
  padding-top: 3.333rem !important; }

.mb-content {
  margin-bottom: 3.333rem !important; }

.pb-content {
  padding-bottom: 3.333rem !important; }

.mt-md {
  margin-top: 4.444rem !important; }

.pt-md {
  padding-top: 4.444rem !important; }

.mb-md {
  margin-bottom: 4.444rem !important; }

.pb-md {
  padding-bottom: 4.444rem !important; }

.mt-lg {
  margin-top: 5.555rem !important; }

.pt-lg {
  padding-top: 5.555rem !important; }

.mb-lg {
  margin-bottom: 5.555rem !important; }

.pb-lg {
  padding-bottom: 5.555rem !important; }

.mt-xlg {
  margin-top: 6.666rem !important; }

.pt-xlg {
  padding-top: 6.666rem !important; }

.mb-xlg {
  margin-bottom: 6.666rem !important; }

.pb-xlg {
  padding-bottom: 6.666rem !important; }

@media (max-width: 960px) {
  .bleed-tablet {
    margin-left: -1.444rem;
    margin-right: -1.444rem; } }

.visually-hidden {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px; }

@media print {
  .no-print {
    display: none !important; } }

.pointer {
  cursor: pointer; }

.full-bleed {
  -webkit-box-shadow: 0 0 0 100vmax #000;
          box-shadow: 0 0 0 100vmax #000;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax); }

.h1-text {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.3; }

.h2-text {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 1.888rem;
  line-height: 1.25; }

.h3-text {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 1.555rem;
  line-height: 1.25; }

.h4-text {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 1.222rem;
  line-height: 1.25; }

.title-text {
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #999; }

.small-title-text {
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #999;
  font-size: 0.9rem; }

.h2-body-title {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.25; }

.tiny-title-text {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: "Fira Sans", sans-serif;
  font-weight: 600;
  font-size: 0.8rem; }

.basicLightbox {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  opacity: .01;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: 1000;
  will-change: opacity; }
  .basicLightbox--visible {
    opacity: 1; }
  .basicLightbox__placeholder {
    max-width: 100%;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    z-index: 1;
    will-change: transform; }
    .basicLightbox__placeholder > img:first-child:last-child,
    .basicLightbox__placeholder > video:first-child:last-child,
    .basicLightbox__placeholder > iframe:first-child:last-child {
      display: block;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      margin: auto;
      max-width: 95%;
      max-height: 95%; }
    .basicLightbox__placeholder > video:first-child:last-child,
    .basicLightbox__placeholder > iframe:first-child:last-child {
      pointer-events: auto; }
    .basicLightbox__placeholder > img:first-child:last-child,
    .basicLightbox__placeholder > video:first-child:last-child {
      width: auto;
      height: auto; }
  .basicLightbox--img .basicLightbox__placeholder, .basicLightbox--video .basicLightbox__placeholder, .basicLightbox--iframe .basicLightbox__placeholder {
    width: 100%;
    height: 100%;
    pointer-events: none; }
  .basicLightbox--visible .basicLightbox__placeholder {
    -webkit-transform: scale(1);
            transform: scale(1); }

body[burger-expanded="true"] .st-sticky-share-buttons {
  display: none !important; }

.share-inline .sharethis-inline-share-buttons {
  text-align: left !important; }

@media (max-width: 768px) {
  body .sli-columns {
    padding-left: 0 !important;
    padding-right: 0 !important; }
    body .sli-columns .sli-columns .sli-columns {
      padding-left: 1.444rem !important;
      padding-right: 1.444rem !important;
      margin-left: 0 !important;
      margin-right: 0 !important; }
  body .sli-form .sli-row .sli-row .sli-column {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  body .sli-form .sli-row .sli-row,
  body .sli-row .sli-row {
    margin-left: 0;
    margin-right: 0; } }
body .sli-field-error {
  display: block;
  margin-bottom: 0; }
body .sli-element {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif !important; }
body .sli-widget .sli-element p {
  line-height: 1.2;
  font-family: "Open Sans", sans-serif !important; }
body .sli-form {
  margin: 0;
  font-family: "Open Sans", sans-serif !important;
  font-size: 1rem !important;
  font-weight: 300;
  line-height: 1.444; }
  body .sli-form select {
    padding: 0.5rem !important;
    border: 1px solid #999 !important;
    font-size: 0.9rem !important;
    font-weight: inherit;
    font-family: inherit; }
  body .sli-form input[type="text"],
  body .sli-form input[type="tel"],
  body .sli-form input[type="email"],
  body .sli-form input[type="password"],
  body .sli-form input[type="number"] {
    padding: 0.5rem;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 1px solid #999 !important;
    background-color: #fff;
    font-size: 0.9rem;
    font-weight: inherit;
    font-family: inherit; }
    body .sli-form input[type="text"]:focus,
    body .sli-form input[type="tel"]:focus,
    body .sli-form input[type="email"]:focus,
    body .sli-form input[type="password"]:focus,
    body .sli-form input[type="number"]:focus {
      -webkit-box-shadow: 0 0 0 2px #572485;
              box-shadow: 0 0 0 2px #572485;
      outline: none; }
    body .sli-form input[type="text"]::-webkit-input-placeholder,
    body .sli-form input[type="tel"]::-webkit-input-placeholder,
    body .sli-form input[type="email"]::-webkit-input-placeholder,
    body .sli-form input[type="password"]::-webkit-input-placeholder,
    body .sli-form input[type="number"]::-webkit-input-placeholder {
      color: #000;
      opacity: 0.3;
      font-weight: 300;
      font-size: 0.9rem; }
    body .sli-form input[type="text"]:-moz-placeholder,
    body .sli-form input[type="tel"]:-moz-placeholder,
    body .sli-form input[type="email"]:-moz-placeholder,
    body .sli-form input[type="password"]:-moz-placeholder,
    body .sli-form input[type="number"]:-moz-placeholder {
      color: #000;
      opacity: 0.3;
      font-weight: 300;
      font-size: 0.9rem; }
    body .sli-form input[type="text"]::-moz-placeholder,
    body .sli-form input[type="tel"]::-moz-placeholder,
    body .sli-form input[type="email"]::-moz-placeholder,
    body .sli-form input[type="password"]::-moz-placeholder,
    body .sli-form input[type="number"]::-moz-placeholder {
      color: #000;
      opacity: 0.3;
      font-weight: 300;
      font-size: 0.9rem; }
    body .sli-form input[type="text"]:-ms-input-placeholder,
    body .sli-form input[type="tel"]:-ms-input-placeholder,
    body .sli-form input[type="email"]:-ms-input-placeholder,
    body .sli-form input[type="password"]:-ms-input-placeholder,
    body .sli-form input[type="number"]:-ms-input-placeholder {
      color: #000;
      opacity: 0.3;
      font-weight: 300;
      font-size: 0.9rem; }
body .sli-tl-letter-sbj {
  margin-bottom: 0.5rem; }
body .salsa-form--max-width {
  max-width: 33.333rem;
  margin-left: auto;
  margin-right: auto; }
  body .salsa-form--max-width input, body .salsa-form--max-width select {
    margin-bottom: 0 !important; }
body .salsa-form form label {
  display: none; }
body .sli-form .sli-button,
body .salsa-form .sli-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  display: inline-block !important;
  padding: 0.34rem 1.666rem 0.4rem 1.666rem !important;
  border-radius: 0.222rem !important;
  line-height: 1.444rem !important;
  text-decoration: none !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  border: 1px solid #2e8a42 !important;
  background: -webkit-gradient(linear, left top, left bottom, from(#006b33), to(#005227)) !important;
  background: linear-gradient(#006b33, #005227) !important;
  color: #fff !important; }
  body .sli-form .sli-button.sli-expand,
  body .salsa-form .sli-button.sli-expand {
    width: auto !important; }
body .sli-form input[type="text"],
body .sli-form input[type="email"],
body .sli-form input[type="tel"],
body .sli-form select,
body .salsa-form input[type="text"],
body .salsa-form input[type="email"],
body .salsa-form input[type="tel"],
body .salsa-form select {
  padding: 0.5rem !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  border: 1px solid #999 !important;
  background-color: #fff !important;
  font-size: 0.9rem  !important;
  font-weight: inherit !important;
  font-family: inherit !important; }
body .salsa-vertical-form .sli-columns {
  padding: 0 !important; }
body .salsa-vertical-form .sli-element,
body .salsa-vertical-form .sli-form,
body .salsa-vertical-form .sli-row {
  margin: 0 !important; }
body .salsa-vertical-form label {
  display: none !important; }
body .salsa-vertical-form select,
body .salsa-vertical-form input[type="text"],
body .salsa-vertical-form input[type="email"] {
  margin: 0 0 0.5rem 0 !important; }
body .salsa-vertical-form .sli-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  display: inline-block;
  padding: 0.3rem 1.666rem 0.4rem 1.666rem;
  border-radius: 0.222rem;
  border: 1px solid #2e8a42;
  text-decoration: none;
  font-weight: 500;
  background: -webkit-gradient(linear, left top, left bottom, from(#006b33), to(#005227));
  background: linear-gradient(#006b33, #005227);
  color: #fff;
  padding: 0.3rem 1.666rem 0.4rem 1.666rem !important;
  border-radius: 0.222rem !important;
  border: 1px solid #2e8a42 !important;
  background: linear-gradient(#006b33, #005227) !important;
  font-size: 1rem  !important; }
  body .salsa-vertical-form .sli-button--blue {
    border: 1px solid #0a73a8;
    background: -webkit-gradient(linear, left top, left bottom, from(#00579e), to(#004985));
    background: linear-gradient(#00579e, #004985); }
  body .salsa-vertical-form .sli-button--blank {
    border: none;
    background: none; }
  body .salsa-vertical-form .sli-button:visited {
    color: #fff !important; }
  @media (max-width: 640px) {
    body .salsa-vertical-form .sli-button {
      margin: auto; } }
body .salsa-form--newsletter .sli-button-element {
  margin-bottom: 0 !important; }
body .know-who-attribution {
  margin-bottom: 0.5rem !important; }
body .sli-step-navigation-steps .sli-step-navigation-step.sli-selected .sli-step-marker {
  background: #00579e !important; }
body .sli-oneTimeDonationAmounts label {
  background-color: #00579e !important; }
body #id_7581b26b-e106-4120-8d9f-fb1bcb69be99 {
  margin: 0; }
body .footer .salsa-vertical-form h3,
body .footer .salsa-vertical-form p {
  color: white !important; }
body .footer .sli-button {
  margin-top: 0.75rem; }
body .footer form > .sli-row > .sli-columns > .sli-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  body .footer form > .sli-row > .sli-columns > .sli-row > * {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%; }
@media (max-width: 768px) {
  body .footer .sli-columns .sli-columns .sli-columns {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important; } }
body .mini-form .sli-button {
  margin-top: 0.5rem; }

.site-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100%; }
  .site-wrap__main {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }

.masthead {
  --scroll-offset: 0.85;
  --logo-width: 245px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 501;
  min-height: var(--masthead-height);
  -webkit-box-shadow: 0px 2px 9px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 9px 2px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, var(--scroll-offset)); }
  @media (max-width: 500px) {
    .masthead {
      --logo-width: 160px; } }
  body.admin-bar .masthead {
    top: 32px; }
  @media print {
    .masthead {
      position: static;
      background-color: #fff;
      -webkit-box-shadow: none;
              box-shadow: none;
      border-bottom: 1px solid #4d4d4d; } }
  .masthead__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 1000px) {
      .masthead__wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .masthead__root {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 160px;
    grid-template-areas: "util social" "nav donate";
    justify-items: stretch;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-top: 1.444rem;
    min-height: var(--masthead-height); }
    @media (max-width: 1000px) {
      .masthead__root {
        position: absolute;
        top: 100%;
        right: 0;
        grid-template-columns: 1fr;
        grid-template-areas: "donate" "nav" "util" "social";
        width: 100vw;
        max-width: 375px;
        min-height: 0;
        max-height: calc(100vh - 130px);
        overflow: auto;
        -ms-flex-item-align: end;
            align-self: flex-end;
        padding: 0;
        -webkit-transform: translateX(100%);
                transform: translateX(100%);
        -webkit-transition: -webkit-transform 0.3s ease-in-out;
        transition: -webkit-transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
        -webkit-box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.3);
                box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.3);
        background-color: #fff; }
        body[burger-expanded="true"] .masthead__root {
          background-color: #fff;
          -webkit-transform: translateX(0);
                  transform: translateX(0); } }
  .masthead__burger {
    position: fixed;
    inset: 71px 1.444rem auto auto;
    z-index: 101;
    display: none; }
    @media print {
      .masthead__burger {
        display: none !important; } }
    .masthead__burger button {
      padding: 0;
      line-height: 1;
      text-align: center; }
    @media (max-width: 1000px) {
      .masthead__burger {
        display: block; } }
    @media (max-width: 500px) {
      .masthead__burger {
        inset: 32px 1.444rem auto auto; } }
  .masthead__logo {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-item-align: start;
        align-self: flex-start;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    width: var(--logo-width); }
    @media (max-width: 500px) {
      .masthead__logo {
        -webkit-transform: translateY(19px);
                transform: translateY(19px); } }
    .masthead__logo a:focus {
      -webkit-box-shadow: none;
              box-shadow: none; }
    .masthead__logo a:focus {
      -webkit-box-shadow: none;
              box-shadow: none; }
    .masthead__logo a:focus-visible {
      -webkit-box-shadow: 0 0 0 2px #572485;
              box-shadow: 0 0 0 2px #572485;
      outline: none; }
    .masthead__logo img {
      width: 245px;
      display: block;
      -webkit-transform: translateY(0.25rem);
              transform: translateY(0.25rem); }
  .masthead__nav {
    grid-area: nav;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
    @media print {
      .masthead__nav {
        display: none !important; } }
    @media (max-width: 1000px) {
      .masthead__nav {
        display: none; }
        body[burger-expanded="true"] .masthead__nav {
          display: block; } }
  .masthead__util {
    grid-area: util;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    @media print {
      .masthead__util {
        display: none !important; } }
    @media (max-width: 1000px) {
      .masthead__util {
        display: none;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        margin-bottom: 0.9rem; }
        body[burger-expanded="true"] .masthead__util {
          display: block; } }
  .masthead__social {
    grid-area: social;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    @media print {
      .masthead__social {
        display: none !important; } }
    @media (max-width: 1000px) {
      .masthead__social {
        position: relative;
        z-index: 1;
        margin-bottom: 0.5rem;
        display: none; }
        body[burger-expanded="true"] .masthead__social {
          display: block; } }
  .masthead__donate {
    grid-area: donate;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-bottom: 1rem; }
    @media print {
      .masthead__donate {
        display: none !important; } }
    @media (max-width: 1000px) {
      .masthead__donate {
        display: none;
        padding-bottom: 0; }
        .masthead__donate .button {
          width: 100%;
          text-align: center;
          text-transform: uppercase;
          padding-top: 1rem;
          padding-bottom: 1.2rem;
          margin: 0.8rem; }
        body[burger-expanded="true"] .masthead__donate {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; } }

@media (max-width: 768px) {
  .has-sharethis .footer-wrap {
    padding-bottom: 48px !important; } }
.footer {
  padding: 2rem 0 1rem;
  background-color: #3d2461;
  color: #fff; }
  .footer ul {
    margin-bottom: 0;
    margin-left: 0; }
  .footer h2 {
    margin-bottom: 0.9em;
    font-size: 1.1rem;
    text-align: center;
    color: #fff; }
  .footer a:focus, .footer input:focus, .footer button:focus {
    -webkit-box-shadow: 0 0 0 2px #cdbdda;
            box-shadow: 0 0 0 2px #cdbdda;
    outline: none; }
  .footer .footer-logo {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }
  @media (min-width: 501px) {
    .footer__root {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (max-width: 960px) {
    .footer__root {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .footer__logos {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    @media (max-width: 960px) {
      .footer__logos {
        min-width: 100%;
        margin-bottom: 3rem;
        text-align: center; }
        .footer__logos .logos {
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; } }
    .footer__logos .logos {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      grid-gap: 2rem;
      margin-top: 1.5rem; }
      .footer__logos .logos img {
        width: auto;
        height: auto;
        max-height: 63px;
        display: block; }
  .footer__contact {
    -ms-flex-preferred-size: 10rem;
        flex-basis: 10rem;
    margin: 0.75rem 1.38rem 0;
    text-align: center; }
    .footer__contact h3 {
      color: #cdbdda;
      margin-bottom: 0.8rem; }
    .footer__contact ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      list-style: none;
      display: flex; }
    .footer__contact li {
      margin: 0 0.48rem; }
      .footer__contact li a {
        color: #cdbdda; }
  .footer__signup {
    -ms-flex-preferred-size: 20rem;
        flex-basis: 20rem;
    margin-top: 0.75rem;
    text-align: center; }
    @media (max-width: 500px) {
      .footer__signup {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto; } }
    .footer__signup input[type="text"],
    .footer__signup input[type="email"] {
      margin-bottom: 0.4rem;
      padding: 0.4rem 0.5rem; }
      .footer__signup input[type="text"]::-webkit-input-placeholder,
      .footer__signup input[type="email"]::-webkit-input-placeholder {
        text-align: center; }
      .footer__signup input[type="text"]:-moz-placeholder,
      .footer__signup input[type="email"]:-moz-placeholder {
        text-align: center; }
      .footer__signup input[type="text"]::-moz-placeholder,
      .footer__signup input[type="email"]::-moz-placeholder {
        text-align: center; }
      .footer__signup input[type="text"]:-ms-input-placeholder,
      .footer__signup input[type="email"]:-ms-input-placeholder {
        text-align: center; }
    .footer__signup [type="submit"] {
      margin-top: 0.5rem; }

.footer-lower {
  padding: 0.6rem 0;
  background-color: #30174d;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 300; }
  .footer-lower__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 980px) {
      .footer-lower__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .footer-lower ul {
    list-style: none;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0; }
  .footer-lower li {
    position: relative;
    padding-right: 1.111rem;
    margin-bottom: 0 !important; }
    .footer-lower li::after {
      content: '|';
      position: absolute;
      top: 0;
      right: 0.39rem; }
  .footer-lower a {
    color: #fff;
    text-decoration: none; }
    .footer-lower a:visited {
      color: #fff; }
  @media (max-width: 960px) {
    .footer-lower {
      text-align: center; } }
  @media (max-width: 960px) {
    .footer-lower nav {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .footer-lower ul {
      margin-bottom: 0.25rem; }
    .footer-lower li:last-child::after {
      display: none; } }

@media (min-width: 961px) {
  .column-grid {
    display: grid;
    grid-gap: 4rem;
    grid-template-columns: 1fr 400px; } }
.column-grid--pairs {
  grid-template-columns: repeat(2, 1fr); }
.column-grid--full {
  display: block;
  max-width: 920px;
  margin: 0 auto; }
.column-grid__main {
  padding-top: 3.333rem;
  padding-bottom: 3rem;
  max-width: 730px; }
  .column-grid__main .narrow-content,
  .column-grid__main .site-width {
    max-width: none;
    padding: 0; }
  .column-grid__main .rc-tile-item {
    max-width: 330px; }
.column-grid__aside {
  padding: 3.333rem 1.5rem; }
  .column-grid__aside .card {
    display: block; }
    .column-grid__aside .card__image {
      margin: 0.388rem 0 0.8rem 0;
      max-width: none; }
    .column-grid__aside .card h3 {
      font-size: 1.222rem;
      text-align: center; }
.column-grid__aside-interior {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto; }

.column-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4vw; }
  @media (min-width: 767px) {
    .column-blocks {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }
  .column-blocks--align-top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  @media (min-width: 767px) {
    .column-blocks--invert .column-blocks__column:first-child {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
    .column-blocks--invert .column-blocks__column:last-child {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; } }
  .column-blocks__column {
    max-width: 100%; }
    @media (min-width: 767px) {
      .column-blocks__column {
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
        max-width: 50%; } }
  @media (max-width: 768px) {
    .column-blocks:not(.preserve-order) .column-blocks__column:first-child {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
    .column-blocks:not(.preserve-order) .column-blocks__column:last-child {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; } }

.skip-nav {
  position: absolute;
  top: 0;
  left: 2rem;
  padding: 1rem;
  -webkit-transform: translateY(-6rem);
          transform: translateY(-6rem);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 105;
  background-color: #00579e !important;
  color: #fff; }
  .skip-nav:hover, .skip-nav:focus {
    color: #fff;
    opacity: 1; }
  .skip-nav:focus {
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -webkit-transform: translateY(1rem);
            transform: translateY(1rem); }

.burger-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 41px;
  height: 41px;
  font-size: 18px !important;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53);
  transition: -webkit-transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53);
  transition: transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53);
  transition: transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53), -webkit-transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
  background: #747474 !important;
  border-color: #747474 !important;
  font-weight: 600; }
  @media print {
    .burger-icon {
      display: none !important; } }
  .burger-icon--hide {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg); }
  body[burger-expanded="true"] .burger-icon--show {
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg); }
  body[burger-expanded="true"] .burger-icon--hide {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg); }

.global-search {
  position: relative; }
  .global-search button {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    border-radius: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    position: relative;
    z-index: 2;
    font-size: 0.888rem;
    font-weight: 300;
    color: #4d4d4d; }
  .global-search input[name="s"] {
    position: absolute;
    top: -6px;
    right: -7px;
    height: 37px;
    width: 0;
    border: none;
    z-index: -1;
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transform-origin: center right;
            transform-origin: center right; }
  .global-search[data-search-expanded] button {
    color: #572485;
    -webkit-transition: font-size 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53), -webkit-transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53);
    transition: font-size 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53), -webkit-transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53);
    transition: font-size 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53), transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53);
    transition: font-size 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53), transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53), -webkit-transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53);
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
    font-size: 21px; }
    .global-search[data-search-expanded] button:focus {
      -webkit-box-shadow: none;
              box-shadow: none;
      color: #006b33; }
  .global-search[data-search-expanded] input[name="s"] {
    -webkit-transition: opacity 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53), -webkit-transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53);
    transition: opacity 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53), -webkit-transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53);
    transition: transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53), opacity 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53);
    transition: transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53), opacity 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53), -webkit-transform 0.3s cubic-bezier(0.64, 0.57, 0.67, 1.53);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    width: 280px;
    z-index: 1;
    outline: 2px solid #747474; }
    @media (max-width: 500px) {
      .global-search[data-search-expanded] input[name="s"] {
        max-width: 60vw; } }

.mobile-search {
  display: none;
  position: relative;
  z-index: 2; }
  @media (max-width: 1000px) {
    .mobile-search {
      display: block;
      position: fixed;
      inset: 75px 90px auto auto; }
      .mobile-search .global-search input[name="s"] {
        top: -3px; }
      .mobile-search button {
        font-size: 24px !important;
        color: #747474; }
      .mobile-search .global-search[data-search-expanded] button {
        -webkit-transform: translateY(0) !important;
                transform: translateY(0) !important; } }
  @media (max-width: 500px) {
    .mobile-search {
      inset: 36px 87px auto auto; } }

.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  --item-spacing: 1.222rem;
  width: 100%;
  font-size: 1.222rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500; }
  @media (max-width: 1201px) {
    .main-nav {
      --item-spacing: 3.3vw; } }
  @media (max-width: 1000px) and (min-width: 769px) {
    .main-nav {
      font-size: 1.05rem; } }
  .main-nav ul {
    padding: 0;
    margin: 0;
    list-style: none; }
  .main-nav [data-depth='0'] {
    line-height: 1.5; }
  .main-nav .nav-title-item {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    border-radius: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    display: block;
    text-align: left; }
    .main-nav .nav-title-item:focus {
      outline: 0; }
    .main-nav .nav-title-item:focus {
      -webkit-box-shadow: none;
              box-shadow: none; }
    .main-nav .nav-title-item:focus-visible {
      -webkit-box-shadow: 0 0 0 2px #572485;
              box-shadow: 0 0 0 2px #572485;
      outline: none; }
    .main-nav .nav-title-item[data-depth='0'] {
      cursor: pointer;
      font-weight: 500;
      color: #30174d; }
    .main-nav .nav-title-item[data-depth='1'] {
      text-transform: uppercase;
      font-weight: 600; }
  .main-nav .social-nav li:first-child {
    margin-left: 0; }
  .main-nav .social-nav a {
    color: #fff; }
    .main-nav .social-nav a:visited {
      color: #fff; }
    .main-nav .social-nav a:hover {
      color: #fff;
      opacity: 0.5; }
  .main-nav a {
    color: #000;
    text-decoration: none; }
    .main-nav a:visited {
      color: #000; }
    .main-nav a:focus {
      -webkit-box-shadow: none;
              box-shadow: none; }
    .main-nav a:focus-visible {
      -webkit-box-shadow: 0 0 0 2px #572485;
              box-shadow: 0 0 0 2px #572485;
      outline: none; }
    .main-nav a[data-depth='0'] {
      font-weight: 500;
      color: #30174d; }
    .main-nav a[data-depth='1'] {
      text-transform: uppercase; }
    .main-nav a[data-depth='1']:hover, .main-nav a[data-depth='2']:hover {
      color: #8dc63f; }
    .main-nav a[data-depth='2'] {
      font-weight: 400; }
    .main-nav a[target='_blank']:not(.social-link)::after {
      content: '\f08e';
      display: inline-block;
      margin-left: 5px;
      line-height: 1;
      -webkit-transform: translateY(-2px);
              transform: translateY(-2px);
      font-family: 'FontAwesome';
      font-size: inherit;
      color: #8dc63f; }
  @media (min-width: 1001px) {
    .main-nav .menu-item-actuator {
      display: none; }
    .main-nav .nav-title-item[data-depth='1'] {
      color: #fff;
      font-size: 0.8rem; }
    .main-nav .main-nav-container {
      --js-menu-width: 100%;
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: -webkit-gradient(linear, left top, left bottom, from(#2f184c), to(#3d2361));
      background: linear-gradient(#2f184c, #3d2361); }
      .main-nav .main-nav-container[aria-expanded='true'] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
    .main-nav a[data-depth='1'] {
      font-size: 0.8rem;
      font-weight: 500; }
    .main-nav a[data-depth='2'] {
      font-size: 0.8rem; }
    .main-nav li {
      position: relative; }
      .main-nav li.menu-stretch .main-nav-container {
        min-width: var(--js-menu-width); }
    .main-nav > li {
      margin-bottom: 0 !important; }
      .main-nav > li:first-child {
        margin-left: var(--item-spacing); }
      .main-nav > li > ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0;
        padding: 0;
        list-style: none; }
      .main-nav > li > .nav-title-item, .main-nav > li > a {
        display: block;
        padding: 0.6rem 1rem 0.7rem 1rem;
        border-top: 5px solid transparent; }
      .main-nav > li:hover > .nav-title-item, .main-nav > li:hover > a {
        background-color: #2f184c;
        border-top-color: #8dc63f;
        opacity: 1;
        color: #fff; }
        .main-nav > li:hover > .nav-title-item:visited, .main-nav > li:hover > a:visited {
          color: #fff; }
      .main-nav > li:hover .main-nav-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
      .main-nav > li .nav-title-item[data-depth='0'][aria-expanded='true'] {
        background-color: #2f184c;
        border-top-color: #8dc63f;
        color: #fff; }
      .main-nav > li.menu-item-has-grandchildren ul[data-depth='0'] {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        gap: 2vw; }
        .main-nav > li.menu-item-has-grandchildren ul[data-depth='0'] > li {
          -ms-flex-preferred-size: 193px;
              flex-basis: 193px; } }
  @media (min-width: 1001px) and (min-width: 1001px) {
    .main-nav > li.menu-item-has-grandchildren.menu-stretch > .sub-menu-container {
      width: 100vw; } }
  @media (min-width: 1001px) {
      .main-nav > li ul[data-depth='0'] {
        width: 100%;
        padding: 0.9rem 1rem; }
      .main-nav > li ul[data-depth='1'] li {
        line-height: 1.2;
        margin: 0; }
      .main-nav > li ul a {
        color: #fff;
        font-size: 1rem;
        white-space: nowrap; }
        .main-nav > li ul a:visited {
          color: #fff; } }
  @media (max-width: 1080px) and (min-width: 1001px) {
    .main-nav .nav-title-item[data-depth='0'],
    .main-nav a {
      font-size: 1.8vw; } }
  @media (max-width: 1000px) {
    .main-nav {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
      .main-nav li,
      .main-nav li:not(:last-child) {
        position: relative;
        width: 100%;
        margin-bottom: 0; }
      .main-nav .nav-title-item,
      .main-nav a {
        color: #572485;
        display: block;
        width: 100%;
        padding: 1.2rem 0 0.8rem 1rem;
        line-height: 1.2;
        border-bottom: 1px solid #ccc;
        font-weight: 500; }
        .main-nav .nav-title-item:visited,
        .main-nav a:visited {
          color: #572485; }
        .main-nav .nav-title-item[data-depth='0'],
        .main-nav a[data-depth='0'] {
          color: #572485; }
        .main-nav .nav-title-item[data-depth='1'],
        .main-nav a[data-depth='1'] {
          font-size: 1.1rem;
          padding-left: 2rem; }
        .main-nav .nav-title-item[data-depth='2'],
        .main-nav a[data-depth='2'] {
          font-weight: 400;
          padding-left: 3rem; }
      .main-nav .sub-menu-container {
        display: none; }
        .main-nav .sub-menu-container[aria-expanded='true'] {
          display: block; } }
  @media (max-width: 1000px) {
    .main-nav a[data-depth='1'], .main-nav a[data-depth='2'] {
      font-size: 1rem; } }

.main-nav-callout {
  --lite-purple: #562485;
  --dark-purple: #3d2362;
  width: 240px;
  white-space: normal;
  text-transform: none;
  font-size: 0.8rem;
  font-weight: 400;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--lite-purple)), to(var(--dark-purple)));
  background: linear-gradient(var(--lite-purple), var(--dark-purple));
  color: #fff; }
  .main-nav-callout-interior {
    padding: 1rem; }
  @media (max-width: 1000px) {
    .main-nav-callout {
      display: none; } }

.menu-item-actuator {
  position: absolute;
  top: 1.1rem;
  right: 1rem;
  border: none;
  background: none;
  color: #00579e;
  cursor: pointer; }
  .menu-item-actuator::after {
    content: '\f078';
    font-family: 'FontAwesome';
    font-size: 1.222rem;
    font-weight: bold; }
  .menu-item-actuator[aria-expanded="true"]::after {
    content: '\f077'; }

.util-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none; }
  @media (max-width: 1000px) {
    .util-nav {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
  .util-nav .nav-title-item {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    border-radius: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    line-height: 1.5; }
  .util-nav li {
    position: relative; }
    .util-nav li .sub-menu-container {
      display: none; }
    .util-nav li ul {
      margin: 0;
      list-style: none; }
      .util-nav li ul li {
        margin-left: 0; }
    @media (min-width: 1001px) {
      .util-nav li {
        margin-left: 1.875rem; }
        .util-nav li .menu-item-actuator {
          display: none; }
        .util-nav li ul {
          padding: 0.5rem; }
        .util-nav li .sub-menu-container a {
          color: #fff; }
          .util-nav li .sub-menu-container a:visited {
            color: #fff; }
          .util-nav li .sub-menu-container a:hover {
            color: #8dc63f; }
        .util-nav li:hover .sub-menu-container {
          display: block;
          position: absolute;
          top: 100%;
          left: 0;
          min-width: 200px;
          background: -webkit-gradient(linear, left top, left bottom, from(#0a73a8), to(#00579e));
          background: linear-gradient(#0a73a8, #00579e); } }
    @media (max-width: 1000px) {
      .util-nav li {
        margin-bottom: 0; }
        .util-nav li .sub-menu-container {
          display: none;
          margin: 0.5rem 0 1rem 0.5rem; }
          .util-nav li .sub-menu-container[aria-expanded="true"] {
            display: block; }
        .util-nav li:not(:last-child) {
          margin-bottom: 0; } }
  .util-nav .nav-title-item,
  .util-nav a {
    color: #4d4d4d;
    display: block;
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    font-family: "Fira Sans", sans-serif;
    font-size: 0.888rem;
    font-weight: 400; }
    .util-nav .nav-title-item:visited,
    .util-nav a:visited {
      color: #4d4d4d; }
    .util-nav .nav-title-item:focus,
    .util-nav a:focus {
      -webkit-box-shadow: none;
              box-shadow: none; }
    .util-nav .nav-title-item:focus-visible,
    .util-nav a:focus-visible {
      -webkit-box-shadow: 0 0 0 2px #572485;
              box-shadow: 0 0 0 2px #572485;
      outline: none; }
    @media (max-width: 1000px) {
      .util-nav .nav-title-item,
      .util-nav a {
        color: #572485;
        display: block;
        width: 100%;
        padding: 1.2rem 0 0.8rem 1rem;
        line-height: 1.2;
        border-bottom: 1px solid #ccc;
        font-size: 1.222rem;
        font-weight: 500; }
        .util-nav .nav-title-item:visited,
        .util-nav a:visited {
          color: #572485; }
        .util-nav .nav-title-item[data-depth="1"],
        .util-nav a[data-depth="1"] {
          font-size: 1.1rem;
          padding-left: 2rem; }
        .util-nav .nav-title-item[data-depth="2"],
        .util-nav a[data-depth="2"] {
          font-weight: 400;
          padding-left: 3rem; } }
    @media (min-width: 769px) and (max-width: 1000px) {
      .util-nav .nav-title-item,
      .util-nav a {
        font-size: 1.05rem; } }
    .util-nav .nav-title-item:hover,
    .util-nav a:hover {
      color: #00579e; }

.social-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 0.888rem; }
  .social-nav li {
    margin-left: 0.888rem;
    font-size: 1rem; }
  .social-nav a {
    font-size: 0.888rem;
    color: #4d4d4d; }
    .social-nav a:hover {
      color: #00579e; }
  @media (max-width: 1000px) {
    .social-nav {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-left: 0; }
      .social-nav .search-wrapper {
        display: none; }
      .social-nav li {
        margin: 0 24px; }
      .social-nav a {
        font-size: 24px;
        color: #747474; } }

.pagination {
  margin: 0 auto;
  text-align: center; }
  .pagination--space-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .pagination .button {
    padding-left: 0.666rem;
    padding-right: 0.666rem;
    margin: 0 0.2rem 0.4rem;
    border: 1px solid #00579e;
    background: -webkit-gradient(linear, left top, left bottom, from(#efefef), to(#d0d0d0));
    background: linear-gradient(#efefef, #d0d0d0);
    color: #00579e !important; }
    .pagination .button:visited {
      color: #00579e !important; }
    .pagination .button[aria-current] {
      background: -webkit-gradient(linear, left top, left bottom, from(#006b33), to(#005227));
      background: linear-gradient(#006b33, #005227);
      color: #fff !important; }
    .pagination .button.dots {
      background: #fff; }
    .pagination .button.prev, .pagination .button.next {
      width: 6.4rem;
      text-align: center;
      white-space: no-wrap; }

.downloadable {
  text-align: right; }
  .downloadable img {
    width: 100%; }
  .downloadable .button {
    padding: 0;
    font-size: 1.3rem;
    color: #999; }
    .downloadable .button + .button {
      margin-left: 20px; }

.button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  display: inline-block;
  padding: 0.3rem 1.666rem 0.4rem 1.666rem;
  border-radius: 0.222rem;
  border: 1px solid #2e8a42;
  background: -webkit-gradient(linear, left top, left bottom, from(#006b33), to(#005227));
  background: linear-gradient(#006b33, #005227);
  text-decoration: none;
  font-weight: 500;
  color: #fff; }
  .button--green {
    border: 1px solid #2e8a42;
    background: -webkit-gradient(linear, left top, left bottom, from(#006b33), to(#005227));
    background: linear-gradient(#006b33, #005227); }
  .button--blue {
    border: 1px solid #0a73a8;
    background: -webkit-gradient(linear, left top, left bottom, from(#00579e), to(#004985));
    background: linear-gradient(#00579e, #004985); }
  .button--blank {
    border: none;
    background: none; }
  .button--small-pad-x {
    padding-left: 0.7rem;
    padding-right: 0.7rem; }
  .button:visited {
    color: #fff !important; }

body .tag span {
  display: inline-block;
  padding: 0.3rem 0.4rem;
  margin-bottom: 0.4em;
  background-color: #d1e9b2;
  color: #000; }
body .tag--purple span, body .tag--dark span {
  background-color: #301745;
  color: #ccc; }
body .tag--blue span {
  background-color: #00579e;
  color: #ccc; }
body .tag--green span {
  background-color: #006b33;
  color: #d1e9b2; }
body .tag--gray span {
  background-color: #4d4d4d;
  color: #fff; }

.report-index {
  padding: 2rem 1.555rem;
  background: #f2f2f2; }
  .report-index h3 {
    margin-bottom: 1rem; }
  .report-index ol {
    margin: 0 0 1rem 0;
    list-style: none;
    color: #00579e;
    font-weight: 600;
    font-size: 1.1rem; }
    .report-index ol li {
      padding-left: 4ch; }
    .report-index ol .marker {
      display: inline-block;
      width: 4ch;
      margin-left: -4ch; }

.slideshow {
  position: relative; }
  .slideshow--max-3 .shadow-tile {
    margin-left: auto !important;
    margin-right: auto !important; }
  .slideshow [data-controls] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    border-radius: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    position: absolute;
    top: 50%;
    z-index: 3;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 32px;
    height: 32px; }
    .slideshow [data-controls]::before {
      position: absolute;
      top: 0;
      left: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 32px;
      height: 32px;
      color: #fff; }
      .banner--gray .slideshow [data-controls]::before {
        color: #4d4d4d; }
    .slideshow [data-controls]:first-child {
      left: 0; }
      .slideshow [data-controls]:first-child::before {
        content: '\f053';
        font-family: 'FontAwesome'; }
    .slideshow [data-controls]:last-child {
      right: 0; }
      .slideshow [data-controls]:last-child::before {
        content: '\f054';
        font-family: 'FontAwesome'; }
  @media (min-width: 499px) {
    .slideshow .tns-outer {
      margin: 0 60px; } }
  .slideshow .tns-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
    .slideshow .tns-nav button {
      display: block;
      width: 14px;
      height: 14px;
      margin: 0 0.25rem;
      background-color: #fff;
      border: 1px solid #999;
      border-radius: 100%; }
      .slideshow .tns-nav button.tns-nav-active {
        background-color: #999; }

.voices-slideshow .profile {
  margin: 0 auto;
  padding: 0 5%; }
  @media (max-width: 640px) {
    .voices-slideshow .profile {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      text-align: center; }
      .voices-slideshow .profile img {
        margin-right: 0;
        margin-bottom: 20px; } }

.media-slideshow [data-controls]::before {
  color: #4d4d4d; }
  .text-white .media-slideshow [data-controls]::before {
    color: #fff; }
.media-slideshow .shadow-tile {
  margin: 10px;
  aspect-ratio: unset;
  max-height: none; }
  @media (max-width: 780px) {
    .media-slideshow .shadow-tile {
      margin: 10px auto; } }
  .media-slideshow .shadow-tile a {
    display: block;
    height: 100%; }
  .media-slideshow .shadow-tile .link-title {
    padding-bottom: 0.5rem; }
  .media-slideshow .shadow-tile--enforce-aspect-ratio {
    padding: 0.85rem; }
    .media-slideshow .shadow-tile--enforce-aspect-ratio .media-slideshow-logo {
      aspect-ratio: 16 / 9; }
      .media-slideshow .shadow-tile--enforce-aspect-ratio .media-slideshow-logo img {
        display: block;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover; }
.media-slideshow-logo {
  margin-bottom: 0.5rem; }
  .media-slideshow-logo img {
    display: block;
    width: 200px;
    height: 65px;
    -o-object-fit: contain;
       object-fit: contain; }

.divider {
  margin: 1.6rem auto;
  height: 1px;
  max-width: 14rem;
  background-color: #fff; }

.page-header {
  padding: 4.444rem 0; }
  .page-header h1 {
    margin-bottom: 0; }

.enclosure {
  position: relative;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  @media screen {
    .enclosure.is-leading {
      padding-top: var(--masthead-height); } }
  .enclosure h2 {
    margin-bottom: 1.2em; }
  .enclosure .body-copy h2,
  .enclosure .body-copy h3 {
    margin-bottom: 0.2em; }
  .enclosure video {
    position: absolute;
    width: 100%;
    height: auto;
    inset: 0; }
    @media print {
      .enclosure video {
        display: none; } }
  .enclosure p:last-child {
    margin-bottom: 0; }
  @media print {
    .enclosure {
      background-image: none !important;
      background-color: #fff !important;
      color: #000 !important; }
      .enclosure .text-white {
        color: #000 !important; } }
  .enclosure--newsletter {
    border-bottom: 2px solid #0a73a8; }
  .enclosure--purple {
    background: -webkit-gradient(linear, left top, left bottom, from(#572484), to(#3d2461));
    background: linear-gradient(#572484, #3d2461);
    color: #fff; }
    .enclosure--purple h2, .enclosure--purple h3 {
      color: #fff;
      margin-bottom: 1rem; }
  .enclosure--green {
    background-color: #fff; }
  .enclosure--white {
    background-color: #fff; }
  .enclosure--gray {
    background-color: #f2f2f2; }

.banner {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  background-color: #572485;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff; }
  @media print {
    .banner {
      background-image: none !important;
      background-color: #fff !important;
      color: #000 !important; }
      .banner .text-white {
        color: #000 !important; } }
  @media screen {
    .banner.is-leading {
      padding-top: 130px; } }
  .banner img {
    display: block;
    width: 100%;
    height: auto; }
  .banner video {
    display: block;
    position: static !important; }
    @media print {
      .banner video {
        display: none; } }
  .banner h2 {
    margin-bottom: 1.2em; }
  .banner p:last-child {
    margin-bottom: 0; }
  .banner--newsletter {
    border-bottom: 2px solid #0a73a8; }
  .banner--purple {
    background: -webkit-gradient(linear, left top, left bottom, from(#572484), to(#3d2461));
    background: linear-gradient(#572484, #3d2461);
    color: #fff;
    text-align: center; }
    .banner--purple h2, .banner--purple h3 {
      color: #fff;
      margin-bottom: 1rem; }
  .banner--white {
    background-color: #fff; }
  .banner--gray {
    background-color: #f2f2f2; }

.highlight {
  padding-left: 2.7rem;
  padding-right: 2.7rem;
  background-color: #dbf1fa;
  border-top: 5px solid #8cd1ee;
  border-bottom: 5px solid #8cd1ee; }
  .highlight ul:last-child,
  .highlight p:last-child {
    margin-bottom: 0; }

.cta {
  padding-left: 1.38rem;
  padding-right: 1.38rem;
  background-color: #4d4d4d;
  background-position: center;
  background-repeat: no-repeat; }
  .cta ul:last-child,
  .cta p:last-child {
    margin-bottom: 0; }
  .cta--newsletter {
    background-image: url(../images/temp/bg_water.png);
    background-size: cover;
    border-bottom: 5px solid #0a73a8;
    color: #fff; }
  .cta--support {
    background-image: url(../images/temp/bg-leaf.jpg);
    background-size: cover; }
  .cta--donate {
    margin-left: auto;
    margin-right: auto;
    background: -webkit-gradient(linear, left top, left bottom, from(#572484), to(#3d2461));
    background: linear-gradient(#572484, #3d2461);
    border-top: 5px solid #3d2461;
    border-bottom: 5px solid #562484;
    color: #fff;
    text-align: center; }
    .cta--donate h2, .cta--donate h3 {
      color: #fff;
      margin-bottom: 1rem; }

.button-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 850px;
  margin: 0 auto; }
  .button-list .button {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    min-width: 110px;
    max-width: 150px;
    margin: 0 0.25rem 0.5rem;
    padding-left: 0;
    padding-right: 0; }

.newsletter-signup.enclosure {
  border-bottom: 5px solid #0a73a8; }
.newsletter-signup h2 {
  margin-bottom: 0.75rem; }
.newsletter-signup form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: flex; }
  @media (max-width: 640px) {
    .newsletter-signup form {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; } }
.newsletter-signup input[type="submit"],
.newsletter-signup button {
  white-space: nowrap;
  width: 130px;
  min-width: 130px;
  margin: 0 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }
  @media (max-width: 640px) {
    .newsletter-signup input[type="submit"],
    .newsletter-signup button {
      margin: auto; } }
.newsletter-signup input {
  width: 100%;
  margin: 0 0.25rem;
  --email: calc(45% - 1rem);
  --zip: calc(20% - 1rem); }
  @media (max-width: 640px) {
    .newsletter-signup input {
      --email: 100%;
      --zip: 100%;
      margin-bottom: 1rem; } }
  .newsletter-signup input[type="email"] {
    -ms-flex-preferred-size: var(--email);
        flex-basis: var(--email); }
  .newsletter-signup input[type="text"] {
    -ms-flex-preferred-size: var(--zip);
        flex-basis: var(--zip); }

.promo {
  padding-left: 1.38rem;
  padding-right: 1.38rem;
  background-color: #4d4d4d;
  background-position: center;
  background-repeat: no-repeat; }
  .promo--newsletter {
    padding-top: 1.38rem;
    padding-bottom: 1.66rem;
    background-image: url(../images/temp/bg_water.png);
    background-size: cover;
    border-bottom: 5px solid #0a73a8;
    color: #fff; }
    .promo--newsletter .mini-form {
      max-width: 275px;
      margin: auto; }
  .promo--support {
    padding-top: 1.38rem;
    padding-bottom: 1.66rem;
    background-image: url(../images/temp/bg-leaf.jpg);
    background-size: cover;
    border-top: 5px solid #006b33;
    border-bottom: 5px solid #006b33; }
  .promo--donate {
    margin-left: auto;
    margin-right: auto;
    background: -webkit-gradient(linear, left top, left bottom, from(#572484), to(#3d2461));
    background: linear-gradient(#572484, #3d2461);
    border-top: 5px solid #3d2461;
    border-bottom: 5px solid #562484;
    color: #fff;
    text-align: center; }
    .promo--donate h2, .promo--donate h3 {
      color: #fff;
      margin-bottom: 1rem; }

.headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .headline a {
    color: #572485; }
    .headline a:visited {
      color: #00579e; }
  .headline--featured {
    grid-template-columns: 40% 1fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .headline--featured .headline__body {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .headline--featured .headline__image img {
      max-height: none;
      height: auto;
      -o-object-fit: auto;
         object-fit: auto; }
  .headline__link {
    margin-bottom: 0.4rem; }
  .headline__image {
    min-width: 120px;
    max-width: 260px;
    -ms-flex-preferred-size: 260px;
        flex-basis: 260px;
    margin: 0.2rem 1.111rem 0 0;
    text-align: right;
    aspect-ratio: 16 / 9; }
    .is-wide .headline__image {
      min-width: 260px; }
      .is-wide .headline__image img {
        height: 150px; }
    .headline__image img {
      display: inline-block;
      width: 100%;
      max-width: 100%;
      height: 90px;
      -o-object-fit: cover;
         object-fit: cover; }
      .headline__image img.no-max-height {
        max-height: none; }
    .headline__image--no-aspect-ratio {
      aspect-ratio: initial; }
      .headline__image--no-aspect-ratio img {
        height: auto; }
  .headline--compact .headline__image {
    max-width: 150px; }
  .headline__body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 45%;
            flex: 1 1 45%; }
    .headline__body h2, .headline__body h3, .headline__body h4 {
      margin-bottom: 0; }

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .card--featured {
    grid-template-columns: 40% 1fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .card--featured .card__body {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
  .card__image {
    min-width: 120px;
    max-width: 260px;
    margin: 0 1.111rem 0.5rem 0; }
    .is-wide .card__image {
      min-width: 260px; }
    .card__image img {
      display: block;
      width: 100%;
      height: auto; }
  .card__body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 45%;
            flex: 1 1 45%; }
    .card__body h2, .card__body h3, .card__body h4 {
      margin-bottom: 0;
      -webkit-transform: translateY(-0.388rem);
              transform: translateY(-0.388rem); }

.take-action-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%; }
  @media (min-width: 767px) {
    .take-action-card--horz {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .take-action-card--horz .take-action-card__img,
      .take-action-card--horz .take-action-card__body {
        -webkit-box-flex: 1;
            -ms-flex: 1 1 50%;
                flex: 1 1 50%; }
        .take-action-card--horz .take-action-card__img img,
        .take-action-card--horz .take-action-card__body img {
          max-height: none; }
      .take-action-card--horz .take-action-card__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        text-align: left; } }
  .take-action-card__img {
    background-color: #4d4d4d;
    aspect-ratio: 2 / 1; }
    .take-action-card__img--tall {
      aspect-ratio: 1.25 / 1; }
    .take-action-card__img img {
      display: block;
      width: 100%;
      height: 100%;
      max-height: 200px;
      -o-object-fit: cover;
         object-fit: cover; }
  .take-action-card__body {
    background-color: #fff;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 1rem 2.5rem; }

.rc-tile-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.38rem; }
  .rc-tile-group .rc-tile:not(:last-child) {
    margin-bottom: 1.38rem; }

.rc-tile {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 1.222rem;
  line-height: 1.25;
  width: 100%;
  max-width: 383px;
  overflow: hidden;
  border-radius: 12px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  text-align: center; }
  @media (max-width: 768px) {
    .rc-tile {
      margin: 0 auto; } }
  @media (min-width: 767px) {
    .rc-tile--100 {
      max-width: none; } }
  .rc-tile a {
    color: #572485 !important;
    text-decoration: none; }
    .rc-tile a:visited {
      color: #572485 !important; }

.rc-tile-item-link {
  margin: 1rem 0;
  text-align: center; }

.line-title {
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #999;
  position: relative;
  margin: 0 0 1.666rem; }
  .line-title > span {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding-right: 0.75rem;
    background-color: #fff; }
  .line-title::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%; }
  .line-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc; }

.icon-link {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 1.222rem;
  line-height: 1.25;
  display: inline-block;
  max-width: 260px;
  color: #00579e;
  text-decoration: underline; }
  .icon-link::before, .icon-link::after {
    display: inline-block;
    margin-left: 0.3em;
    line-height: 1;
    font-family: 'FontAwesome';
    font-size: inherit;
    color: inherit; }
  .icon-link--100 {
    max-width: none; }
  .icon-link--small {
    font-size: 1.1rem; }
  .icon-link--arrow::after {
    content: '\f0a9'; }
  .icon-link--arrow-reverse::before {
    margin-left: 0;
    margin-right: 0.3rem;
    content: '\f0a8'; }
  .icon-link--external::after {
    content: '\f08e'; }
  .icon-link--pdf::after {
    display: none; }
  .icon-link--pdf::before {
    content: '';
    display: inline-block;
    width: 1.3rem;
    height: 1.3rem;
    background: transparent url(../images/icons/icon-pdf.svg) center/1.3rem no-repeat;
    margin-left: 0;
    margin-right: 0.5rem;
    -webkit-transform: translateY(0.25rem);
            transform: translateY(0.25rem); }

ul.resource-link-list {
  margin: 0;
  padding: 0;
  list-style: none; }
  @media (min-width: 767px) {
    ul.resource-link-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      ul.resource-link-list li {
        -ms-flex-preferred-size: 46%;
            flex-basis: 46%;
        margin: 0 4% 1rem 0; } }
  ul.resource-link-list li .resource-item {
    max-width: 580px;
    padding-right: 2rem; }
  ul.resource-link-list--centered {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    ul.resource-link-list--centered li {
      -ms-flex-preferred-size: initial;
          flex-basis: initial;
      margin-right: 0; }
    ul.resource-link-list--centered .resource-item {
      text-align: center;
      padding-right: 0; }
  @media (min-width: 1000px) {
    ul.resource-link-list.three-col li {
      -ms-flex-preferred-size: 30%;
          flex-basis: 30%;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      margin-right: 3%; }
    ul.resource-link-list.three-col .headline {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; } }

.resource-link {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 1.222rem;
  line-height: 1.25;
  position: relative;
  display: inline-block;
  padding-left: 33px;
  color: #00579e;
  text-decoration: underline; }
  @media (max-width: 768px) {
    .resource-link {
      margin-bottom: 0.5em; } }
  .resource-link::before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 26px;
    margin-right: 0.5rem;
    line-height: 1;
    text-align: center;
    font-family: 'FontAwesome';
    font-size: inherit;
    color: #277b3b; }
  .resource-link--external::before {
    content: '\f08e'; }
  .resource-link--arrow::before {
    content: '\f0a9'; }
  .resource-link--link::before {
    content: '\f0c1'; }
  .resource-link--arrow-up-right-from-square::before {
    content: '\f08e'; }
  .resource-link--file-pdf::before {
    content: '\f1c1'; }
  .resource-link--file-image::before {
    content: '\f1c5'; }
  .resource-link--file-word::before {
    content: '\f1c2'; }
  .resource-link--file-excel::before {
    content: '\f1c3'; }
  .resource-link--file-powerpoint::before {
    content: '\f1c4'; }
  .resource-link--file-audio::before {
    content: '\f1c7'; }
  .resource-link--file-video::before {
    content: '\f1c8'; }
  .resource-link--file::before {
    content: '\f15b'; }
  .resource-link--thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
    .resource-link--thumb::before {
      display: none; }
    .resource-link--thumb img {
      display: block;
      max-width: 120px; }

.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(77, 77, 77, 0.9);
  z-index: 503; }
  .zoom-overlay:not(.is-visible) {
    opacity: 0;
    width: 0;
    height: 0;
    visibility: hidden;
    overflow: hidden; }
  .zoom-overlay.is-visible {
    opacity: 1;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .zoom-overlay__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding: 5%; }
    .zoom-overlay__container img {
      display: block;
      max-width: none !important; }
  .zoom-overlay__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 503;
    padding: 0.15rem 0.6rem 0.2rem 0.6rem; }

.headlines {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem; }
  @media (min-width: 767px) {
    .headlines--columns {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .headlines--columns .headline {
        -ms-flex-preferred-size: calc(50% - 2rem);
            flex-basis: calc(50% - 2rem); } }

.tiles {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -1.38rem; }
  .tiles .tile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: calc(25% - 1.5rem);
        flex-basis: calc(25% - 1.5rem);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 250px;
    padding: 2.6rem;
    margin: calc(1.38rem / 2) 0 calc(1.38rem / 2) 1.38rem;
    aspect-ratio: 1;
    background-color: #ccc;
    background-position: center;
    background-size: cover;
    text-align: center;
    -webkit-transition: background-size 0.3s ease, -webkit-transform 0.3s ease;
    transition: background-size 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, background-size 0.3s ease;
    transition: transform 0.3s ease, background-size 0.3s ease, -webkit-transform 0.3s ease; }
    @media screen {
      .tiles .tile {
        position: relative; }
        .tiles .tile::before {
          content: '';
          position: absolute;
          inset: 0;
          background-color: rgba(0, 0, 0, 0.4);
          z-index: 0; }
        .tiles .tile > div {
          position: relative;
          z-index: 1; } }
    @media (max-width: 960px) {
      .tiles .tile {
        -ms-flex-preferred-size: calc(33% - 1.5rem);
            flex-basis: calc(33% - 1.5rem); } }
    @media (max-width: 660px) {
      .tiles .tile {
        -ms-flex-preferred-size: calc(50% - 1.5rem);
            flex-basis: calc(50% - 1.5rem); } }
    .tiles .tile:focus, .tiles .tile:hover {
      -webkit-transform: scale(1.065);
              transform: scale(1.065); }
    .tiles .tile > a {
      position: absolute;
      inset: 0;
      z-index: 1;
      padding: 1.38rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .tiles .tile a {
      color: #fff;
      text-decoration: none; }
      .tiles .tile a:hover {
        opacity: 1; }

.shadow-tile {
  max-width: 250px;
  max-height: 250px;
  padding: 1rem;
  aspect-ratio: 1;
  -webkit-box-shadow: 0px 0px 9px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 9px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  text-align: center; }

.mini-form {
  text-align: center; }
  .mini-form .mini-header h2, .mini-form .mini-header h3 {
    margin-bottom: 0.25rem; }
  .mini-form .mini-header p {
    max-width: 200px;
    margin: 0 auto 1rem; }
  .mini-form h2, .mini-form h3 {
    margin-bottom: 0.8rem; }
  .mini-form select,
  .mini-form input {
    width: 100%;
    max-width: 15rem;
    margin-bottom: 0.5rem;
    padding: 0.4rem 0.5rem; }
    .mini-form select::-webkit-input-placeholder,
    .mini-form input::-webkit-input-placeholder {
      text-align: center; }
    .mini-form select:-moz-placeholder,
    .mini-form input:-moz-placeholder {
      text-align: center; }
    .mini-form select::-moz-placeholder,
    .mini-form input::-moz-placeholder {
      text-align: center; }
    .mini-form select:-ms-input-placeholder,
    .mini-form input:-ms-input-placeholder {
      text-align: center; }
  .mini-form [type="submit"] {
    margin-top: 0.5rem; }

.accordion {
  position: relative; }
  .accordion details {
    margin-bottom: 1rem; }
    .accordion details[open] summary {
      background-color: #dbf1fa; }
      .accordion details[open] summary::after {
        content: '\f077'; }
    .accordion details[open] .expanded-content {
      padding: 1rem; }
  .accordion summary {
    font-family: "Fira Sans", sans-serif;
    font-weight: 500;
    font-size: 1.222rem;
    line-height: 1.25;
    position: relative;
    padding: 0.6rem 3rem 0.6rem 1rem;
    background-color: #fff;
    -webkit-box-shadow: 0 0 4px 0 rgba(77, 77, 77, 0.4);
            box-shadow: 0 0 4px 0 rgba(77, 77, 77, 0.4);
    border: 1px solid #999;
    color: #572485;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    cursor: pointer; }
    .accordion summary::after {
      content: '\f078';
      position: absolute;
      top: 0;
      right: 0;
      height: 100%;
      width: 50px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      border-left: 1px solid #4d4d4d;
      line-height: 1;
      text-align: center;
      font-family: 'FontAwesome';
      background-color: #00579e;
      color: #fff;
      font-size: 1.3rem; }
    .accordion summary::-webkit-details-marker, .accordion summary::marker {
      content: none; }
  .accordion:last-child {
    margin-bottom: 0; }
  .accordion .expanded-content {
    border: 1px solid #999;
    padding: 0 1rem;
    -webkit-transition: padding 0.2s cubic-bezier(0.64, 0.57, 0.67, 1.53);
    transition: padding 0.2s cubic-bezier(0.64, 0.57, 0.67, 1.53);
    background-color: #fff;
    color: #000 !important; }

.flex-grid {
  --width: 100%; }
  @media (min-width: 767px) {
    .flex-grid {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      --width: 31%; } }
  .flex-grid > div {
    -ms-flex-preferred-size: var(--width);
        flex-basis: var(--width);
    max-width: 360px;
    margin-left: auto;
    margin-right: auto; }
    @media (max-width: 768px) {
      .flex-grid > div:not(:last-child) {
        margin-bottom: 1.625rem; } }

.col-group {
  display: grid;
  grid-gap: 2.5rem;
  grid-template-columns: 1fr 1fr; }
  @media (max-width: 768px) {
    .col-group {
      grid-template-columns: 1fr;
      grid-auto-rows: auto; } }

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .grid div[class^="col-"] {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: 0 auto; }
  .grid .col-1 {
    width: 8.3333333333%; }
  .grid .col-2 {
    width: 16.6666666667%; }
  .grid .col-3 {
    width: 25%; }
  .grid .col-4 {
    width: 33.3333333333%; }
  .grid .col-5 {
    width: 41.6666666667%; }
  .grid .col-6 {
    width: 50%; }
  .grid .col-7 {
    width: 58.3333333333%; }
  .grid .col-8 {
    width: 66.6666666667%; }
  .grid .col-9 {
    width: 75%; }
  .grid .col-10 {
    width: 83.3333333333%; }
  .grid .col-11 {
    width: 91.6666666667%; }
  .grid .col-12 {
    width: 100%; }
  .grid--left div[class^="col-"] {
    margin-left: 0;
    margin-right: 0; }

.people-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5%; }
  .people-grid .profile--vertical {
    gap: 2rem; }
  .people-grid .profile--med {
    gap: 2rem; }
  .people-grid .profile img {
    margin-bottom: 1rem; }
  .people-grid .col {
    -ms-flex-preferred-size: 47.5%;
        flex-basis: 47.5%; }
    .people-grid .col:not(:last-child) {
      margin-bottom: 2rem; }
    @media (max-width: 600px) {
      .people-grid .col {
        margin-left: auto;
        margin-right: auto; } }
  .people-grid--med {
    gap: 10%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .people-grid--med .col {
      -ms-flex-preferred-size: 45%;
          flex-basis: 45%; }
  .people-grid--lrg {
    gap: 0; }
    @media (min-width: 601px) {
      .people-grid--lrg .col {
        max-width: 600px;
        margin: auto; } }
    @media (min-width: 601px) {
      .people-grid--lrg .profile {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
    .people-grid--lrg .col {
      -ms-flex-preferred-size: 100% !important;
          flex-basis: 100% !important; }
  @media (max-width: 900px) {
    .people-grid {
      gap: 10%; }
      .people-grid .col {
        -ms-flex-preferred-size: 45%;
            flex-basis: 45%; } }
  @media (max-width: 600px) {
    .people-grid {
      gap: 0; }
      .people-grid .col {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }

.image-grid {
  --spacing: 1.111rem;
  --size: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -var(--spacing); }
  @media (max-width: 1000px) {
    .image-grid {
      --size: 33%; } }
  @media (max-width: 680px) {
    .image-grid {
      --size: 50%; } }
  .image-grid__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-preferred-size: calc(var(--size) - var(--spacing));
        flex-basis: calc(var(--size) - var(--spacing));
    padding: var(--spacing);
    margin: 0 0 var(--spacing) var(--spacing); }
    .image-grid__item img {
      max-width: 100%; }

.profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 300;
  text-align: left;
  display: grid;
  grid-template-areas: "image profile" ". contact"; }
  @media (max-width: 768px) {
    .profile:not(.profile--horz) {
      grid-template-areas: "image" "profile" "contact"; } }
  .profile__image {
    min-width: 120px;
    grid-area: image; }
  .profile__body {
    width: 100%;
    grid-area: profile; }
  .profile__contact {
    grid-area: contact;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.8rem; }
  .profile--vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    .profile--vertical .profile-photo-circle {
      margin-bottom: 1rem; }
  .profile img {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0; }
  .profile .profile-photo-circle {
    border-radius: 100%;
    width: 90px;
    height: 90px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 1.111rem; }
  .profile--lrg .profile-photo-circle {
    width: 120px;
    height: 120px; }
  .profile > :nth-child(2) {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }

.post-detail {
  padding: 2.666rem 0;
  text-align: left; }
  .post-detail__content {
    max-width: 980px; }
  .post-detail__img.is-boxed-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    @media (max-width: 768px) {
      .post-detail__img.is-boxed-img {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; } }
    .post-detail__img.is-boxed-img > div {
      background-color: #fff;
      padding: 2rem; }
      @media (max-width: 768px) {
        .post-detail__img.is-boxed-img > div {
          margin-top: 1rem; } }
      .post-detail__img.is-boxed-img > div img {
        display: block;
        margin: auto;
        max-width: 12rem; }
  @media (min-width: 769px) {
    .post-detail {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%; }
      .post-detail__content {
        padding-right: 3rem;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1; }
      .post-detail__img {
        min-width: 48%; }
      .post-detail .post-meta {
        margin-bottom: 0; } }
  .post-detail .post-meta {
    color: #ccc;
    margin-bottom: 1rem; }

.post-header {
  margin-bottom: 3.5rem; }

.post-image {
  margin-bottom: 1.444rem; }
  .post-image img {
    display: block;
    width: 100%; }

.post-title h2, .post-title h3 {
  margin-bottom: 0.4rem; }
.post-title .display-date {
  margin-top: 1.5em;
  font-size: 1.1rem; }

.post-meta {
  margin-bottom: 0.4rem;
  color: #4d4d4d;
  font-size: 0.8rem;
  font-weight: 300; }

.post-categories {
  font-size: 0.9rem; }
  .post-categories > div + div {
    margin-top: 0.5rem; }

.post-footer {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #ccc;
  color: #4d4d4d; }
  .post-footer strong {
    color: #000; }
  .post-footer .title-text {
    margin-bottom: 0.6rem; }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  margin-bottom: 1.2rem;
  height: 0; }
  .video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%; }

.modal {
  -webkit-box-shadow: 2px 2px 19px 9px rgba(77, 77, 77, 0.3);
          box-shadow: 2px 2px 19px 9px rgba(77, 77, 77, 0.3);
  width: 100vw;
  max-width: 800px;
  max-height: 600px;
  background-color: #fff; }
  .modal::before {
    content: '';
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 502; }
  .modal__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 502;
    width: 100%;
    height: 100%;
    background-color: #fff; }
  .modal__bg {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    background-color: #f2f2f2;
    background-repeat: no-repeat;
    background-size: cover; }
  .modal__content {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding: 3rem 1.5rem; }
  .modal__close {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    border-radius: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0.5rem;
    z-index: 503;
    color: #999;
    font-size: 1.5rem;
    font-weight: 600; }

.body-copy .endnote {
  font-size: 0.8rem;
  font-style: italic; }
  .body-copy .endnote ul, .body-copy .endnote ol {
    margin-left: 1rem; }

:root {
  --wp-algn-spc: 2rem; }

.alignright {
  float: right;
  margin: 0 0 var(--wp-algn-spc) var(--wp-algn-spc); }

.alignleft {
  float: left;
  margin: 0 var(--wp-algn-spc) var(--wp-algn-spc) 0; }

.aligncenter {
  margin: var(--wp-algn-spc) auto; }

.more-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 3rem;
          column-gap: 3rem;
  row-gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

.single-healthy_choices main h2,
.single-healthy_choices main h3,
.single-healthy_choices main h4 {
  color: #006b33; }
@media (min-width: 1000px) {
  .single-healthy_choices main .alignright {
    margin-right: -5vw; } }

/*# sourceMappingURL=global.css.map */