/* stylelint-disable */
:root {
  --vf-color--green: #18974c;
  --vf-color--green--darkest: #0a5032;
  --vf-color--green--dark: #007b53;
  --vf-color--green--light: #6cc24a;
  --vf-color--green--lightest: #d0debb;
  --vf-color--grey: #707372;
  --vf-color--grey--darkest: #373a36;
  --vf-color--grey--dark: #54585a;
  --vf-color--grey--light: #a8a99e;
  --vf-color--grey--lightest: #d0d0ce;
  --vf-color--red: #d41645;
  --vf-color--red--dark: #a6093d;
  --vf-color--red--light: #e58f9e;
  --vf-color--blue: #3b6fb6;
  --vf-color--blue--dark: #193f90;
  --vf-color--blue--light: #8bb8e8;
  --vf-color--purple: #734595;
  --vf-color--purple--dark: #563d82;
  --vf-color--purple--light: #cba3d8;
  --vf-color--orange: #f49e17;
  --vf-color--orange--dark: #b65417;
  --vf-color--orange--light: #efc06e;
  --vf-color--yellow: #f4c61f;
  --vf-color--yellow--dark: #ffb81c;
  --vf-color--yellow--light: #fdd757;
  --vf-color--bright-green: #a1be1f;
  --vf-color--bright-green--dark: #7fb428;
  --vf-color--bright-green--light: #e2e868;
}

:root {
  --vf-color__text--primary: #1a1c1a;
  --vf-color__text--secondary: #373a36;
  --vf-color__link: #3b6fb6;
  --vf-color__link--hover: #193f90;
  --vf-color__link--focus: #193f90;
  --vf-color__link--visited: #563d82;
}

:root {
  --vf-color__button__text--primary: #ffffff;
  --vf-color__button__border--primary: #3b6fb6;
  --vf-color__button__background--primary: #3b6fb6;
  --vf-color__button__shadow--primary: #193f90;
  --vf-color__button__text--secondary: #3b6fb6;
  --vf-color__button__border--secondary: #3b6fb6;
  --vf-color__button__background--secondary: #ffffff;
  --vf-color__button__shadow--secondary: #193f90;
  --vf-color__button__text--tertiary: #ffffff;
  --vf-color__button__border--tertiary: #373a36;
  --vf-color__button__background--tertiary: #373a36;
  --vf-color__button__shadow--tertiary: #000000;
}

:root {
  --vf-color__brand: #18974c;
  --vf-color__brand--dark: #0a5032;
}

:root {
  --vf-ui-color--black: #000000;
  --vf-ui-color--grey: #d8d8d8;
  --vf-ui-color--grey--light: #f3f3f3;
  --vf-ui-color--yellow: #fffadc;
  --vf-ui-color--red: #d32f2f;
  --vf-ui-color--white: #ffffff;
  --vf-ui-color--off-white: #fafafa;
}

:root {
  --vf-color--neutral--0: #ffffff;
  --vf-color--neutral--100: #f3f3f3;
  --vf-color--neutral--200: #e4e4e4;
  --vf-color--neutral--300: #d0d0ce;
  --vf-color--neutral--400: #a9abaa;
  --vf-color--neutral--500: #8d8f8e;
  --vf-color--neutral--600: #707372;
  --vf-color--neutral--700: #54585a;
  --vf-color--neutral--800: #373a36;
  --vf-color--neutral--900: #000000;
}

:root {
  --vf-theme--primary: #3b6fb6;
  --vf-theme--primary--dark: #193f90;
  --vf-theme--secondary: #18974c;
  --vf-theme--secondary--dark: #007b53;
  --vf-theme--tertiary: #54585a;
  --vf-theme--quaternary: #f4c61f;
  --vf-theme--quinary: #d0d0ce;
}

/* stylelint-enable */
/*!
 * Component: @visual-framework/vf-card
 * Version: 2.7.1
 * Location: components/undefined
 */
.vf-card {
  --card-text-color: var(--vf-card-theme-color--foreground, #1a1c1a);
  --card-background-color: var(--vf-card-theme-color--background , #ffffff);
  -ms-flex-line-pack: start;
      align-content: start;
  background-color: var(--card-background-color);
  /* border: 1px solid var(--vf-card-theme-color--border, var(--card-border-color, )); */
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(84, 88, 90, 0.5);
          box-shadow: 0 0.125rem 0.25rem rgba(84, 88, 90, 0.5);
  display: grid;
  position: relative;
}

.vf-card__image {
  height: auto;
  min-height: 16rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
@supports (aspect-ratio: 1/1) {
  .vf-card__image {
    aspect-ratio: var(--vf-card__image--aspect-ratio, 8/4);
    min-height: unset;
  }
}

.vf-card__content {
  grid-column: 1/-1;
  padding: 1rem;
}
.vf-card__content .vf-button {
  position: relative;
  z-index: 1984;
}
.vf-card__content .vf-list {
  margin-bottom: 0;
}
.vf-card__content .vf-list > *:last-child {
  margin-bottom: 0;
}
.vf-card__content .vf-content > *:last-child {
  margin-bottom: 0;
}
.vf-card__content .vf-content a {
  text-decoration: none;
}
.vf-card__content .vf-content a:hover {
  color: #193f90;
  text-decoration: underline;
  text-decoration-thickness: 2px !important;
}

.vf-card__heading__icon {
  fill: currentColor;
  padding-top: 0.1em;
  -webkit-transform: translateX(0.25rem);
          transform: translateX(0.25rem);
  -webkit-transition-duration: 125ms;
          transition-duration: 125ms;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
          transition-timing-function: cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.vf-card__title,
.vf-card__heading {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  margin: var(--vf-stack-margin, 0) 0 0 0;
  background-color: var(--card-background-color);
  color: #1a1c1a;
  color: var(--card-text-color, #1a1c1a);
  line-height: 1.333;
  text-decoration: none;
  word-break: break-word;
}
.vf-card__title .vf-card__link,
.vf-card__heading .vf-card__link {
  color: #3b6fb6;
  display: grid;
  grid-column-gap: 0.25rem;
  grid-template-columns: auto 1fr;
  text-decoration: none;
}
.vf-card__title .vf-card__link::after,
.vf-card__heading .vf-card__link::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition-duration: 125ms;
          transition-duration: 125ms;
  -webkit-transition-property: -webkit-box-shadow;
  transition-property: -webkit-box-shadow;
  transition-property: box-shadow;
  transition-property: box-shadow, -webkit-box-shadow;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
  z-index: 512;
}
.vf-card__title .vf-card__link:hover,
.vf-card__heading .vf-card__link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 4px;
}
.vf-card__title .vf-card__link:hover::after,
.vf-card__heading .vf-card__link:hover::after {
  -webkit-box-shadow: 0 0 0.125rem 0.125rem rgba(112, 115, 114, 0.75);
          box-shadow: 0 0 0.125rem 0.125rem rgba(112, 115, 114, 0.75);
}
.vf-card__title .vf-card__link:hover .vf-card__heading__icon,
.vf-card__title .vf-card__link:focus .vf-card__heading__icon,
.vf-card__heading .vf-card__link:hover .vf-card__heading__icon,
.vf-card__heading .vf-card__link:focus .vf-card__heading__icon {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
.vf-card__title .vf-card__link:visited,
.vf-card__title .vf-card__link:visited:hover,
.vf-card__title .vf-card__link:hover,
.vf-card__title .vf-card__link:focus,
.vf-card__heading .vf-card__link:visited,
.vf-card__heading .vf-card__link:visited:hover,
.vf-card__heading .vf-card__link:hover,
.vf-card__heading .vf-card__link:focus {
  color: var(--vf-color--blue--dark);
}

.vf-card__subheading {
  --vf-stack-margin--custom: 0.25rem;
  --vf-stack-margin: 0.25rem;
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.5;
  margin: var(--vf-stack-margin, 0) 0 0 0;
  word-break: break-word;
}

.vf-card__text {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.421;
  margin: var(--vf-stack-margin, 0) 0 0 0;
  color: #ffffff;
  color: var(--card-text-color, #ffffff);
  word-break: break-word;
}
.vf-card__text .vf-card__link,
.vf-card__text a {
  color: #3b6fb6;
  position: relative;
  text-decoration: none;
  z-index: 1984;
}
.vf-card__text .vf-card__link:hover,
.vf-card__text a:hover {
  color: #193f90;
  text-decoration: underline;
  text-decoration-thickness: 2px !important;
}

.vf-card--bordered {
  border-bottom: 8px solid #18974c;
  border-bottom-color: var(--vf-card-border-color, #18974c);
}
.vf-card--bordered .vf-card__link::after {
  height: calc(100% + 8px);
}

.vf-card--striped {
  background-color: #007b53;
  background-color: var(--vf-card--striped-bg-color, #007b53);
}
.vf-card--striped .vf-card__content {
  padding-bottom: 0;
}
.vf-card--striped .vf-card__content > *:last-child:not(.vf-card__link) {
  padding-bottom: 1rem;
}
.vf-card--striped .vf-card__content .vf-list,
.vf-card--striped .vf-card__content .vf-content * {
  color: #ffffff;
}
.vf-card--striped .vf-card__content .vf-list a,
.vf-card--striped .vf-card__content .vf-content * a {
  color: inherit;
  position: relative;
  text-decoration: underline;
  z-index: 1984;
}
.vf-card--striped .vf-card__title,
.vf-card--striped .vf-card__heading {
  background-color: #18974c;
  background-color: var(--vf-card-bg-color, #18974c);
  color: #ffffff;
  margin: -1rem;
  margin-bottom: -0.5rem;
  padding: 1rem;
  padding-bottom: 0.5rem;
}
.vf-card--striped .vf-card__title .vf-card__link,
.vf-card--striped .vf-card__heading .vf-card__link {
  color: currentColor;
}
.vf-card--striped .vf-card__title .vf-card__link:hover,
.vf-card--striped .vf-card__heading .vf-card__link:hover {
  color: currentColor;
}
.vf-card--striped .vf-card__subheading {
  background-color: #007b53;
  background-color: var(--vf-card--striped-bg-color, #007b53);
  color: #ffffff;
  margin: -1rem;
  margin-top: 0;
  padding: 1rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.vf-card--striped .vf-card__text {
  color: #ffffff;
}
.vf-card--striped .vf-card__text:first-of-type {
  --vf-stack-margin--custom: 0;
  --vf-stack-margin: 0;
}
.vf-card--striped .vf-card__text .vf-card__link,
.vf-card--striped .vf-card__text a {
  color: inherit;
  text-decoration: underline;
}
.vf-card--striped .vf-card__title + .vf-card__text,
.vf-card--striped .vf-card__heading + .vf-card__text {
  --vf-stack-margin--custom: 1rem;
  --vf-stack-margin: 1rem;
}

.vf-card--primary,
.vf-card--brand {
  --vf-card-bg-color: #18974c;
  --vf-card-text-color: #ffffff;
  --vf-card-border-color: #18974c;
  --vf-card--striped-bg-color: #007b53;
  --vf-card--striped-text-color: #ffffff;
}

.vf-card--secondary {
  --vf-card-bg-color: #3b6fb6;
  --vf-card-text-color: #ffffff;
  --vf-card-border-color: #3b6fb6;
  --vf-card--striped-bg-color: #193f90;
  --vf-card--striped-text-color: #ffffff;
}

.vf-card--tertiary {
  --vf-card-bg-color: #707372;
  --vf-card-text-color: #ffffff;
  --vf-card-border-color: #707372;
  --vf-card--striped-bg-color: #54585a;
  --vf-card--striped-text-color: #ffffff;
}

.vf-card__content.vf-stack .vf-card__title,
.vf-card__content.vf-stack .vf-card__heading,
.vf-card__content.vf-stack .vf-card__text {
  margin-bottom: 0;
}
.vf-card__content.vf-stack .vf-card__text {
  margin-top: 1rem; /* IE Fallback */
  margin-top: var(--vf-stack-margin, 1rem);
}

html:not(.vf-disable-deprecated) .vf-card--very-easy {
  border-bottom: 8px solid rgba(0, 0, 0, 0);
}
html:not(.vf-disable-deprecated) .vf-card--easy {
  border-bottom: 8px solid #000000;
  border-bottom-color: var(--vf-card-theme-color--border, #000000);
}
html:not(.vf-disable-deprecated) .vf-card--easy .vf-card__title,
html:not(.vf-disable-deprecated) .vf-card--easy .vf-card__heading {
  --card-text-color: #3b6fb6;
}
html:not(.vf-disable-deprecated) .vf-card--easy .vf-card__text {
  --card-text-color: #000000;
}
html:not(.vf-disable-deprecated) .vf-card--normal {
  --card-text-color: var(--vf-card-theme-color--foreground, #ffffff);
  --card-background-color: var(--vf-card-theme-color--background, #000000);
}
html:not(.vf-disable-deprecated) .vf-card--hard {
  --card-text-color: var(--vf-card-theme-color--foreground, #ffffff);
  --card-background-color: var(--vf-card-theme-color--background, #000000);
}
html:not(.vf-disable-deprecated) .vf-card--hard .vf-card__content {
  grid-row: 2/-1;
}
html:not(.vf-disable-deprecated) .vf-card--hard .vf-card__title,
html:not(.vf-disable-deprecated) .vf-card--hard .vf-card__heading {
  font-family: "IBM Plex Sans", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.57;
  margin: 0 0 16px 0;
  margin: var(--vf-stack-margin, 0) 0 var(--vf-text-margin--bottom, 16px) 0;
  display: inline-block;
  margin-bottom: 0;
  margin-left: -24px;
  margin-top: 2px;
  padding: 16px 24px;
  text-transform: uppercase;
}
html:not(.vf-disable-deprecated) .vf-card--hard .vf-card__text {
  padding-top: 16px;
}
html:not(.vf-disable-deprecated) [class*=vf-card-theme].vf-card--easy {
  --vf-card-theme-color--background: #ffffff;
}
html:not(.vf-disable-deprecated) [class*=vf-card-theme] .vf-card__text .vf-card__link {
  color: inherit;
  text-decoration: underline;
}
html:not(.vf-disable-deprecated) .vf-card-theme--primary {
  --vf-card-theme-color--foreground: #ffffff;
  --vf-card-theme-color--border: #3b6fb6;
  --vf-card-theme-color--background: #3b6fb6;
}
html:not(.vf-disable-deprecated) .vf-card-theme--secondary {
  --vf-card-theme-color--foreground: #000000;
  --vf-card-theme-color--border: #18974c;
  --vf-card-theme-color--background: #18974c;
}
html:not(.vf-disable-deprecated) .vf-card-theme--tertiary {
  --vf-card-theme-color--foreground: #ffffff;
  --vf-card-theme-color--border: #54585a;
  --vf-card-theme-color--background: #54585a;
}
html:not(.vf-disable-deprecated) .vf-card-theme--quaternary {
  --vf-card-theme-color--foreground: #000000;
  --vf-card-theme-color--border: #f4c61f;
  --vf-card-theme-color--background: #f4c61f;
}