.sbf-card-list[data-card-theme="green-accent"] {
  --sbf-card-accent: var(--sbf-palette-green-700);
  --sbf-card-bg: var(--sbf-palette-green-300);
  --sbf-card-text: inherit;
}

.sbf-card-list[data-card-theme="blue-accent"] {
  --sbf-card-accent: var(--sbf-palette-blue-500);
  --sbf-card-bg: var(--sbf-palette-blue-200);
  --sbf-card-text: inherit;
}

.sbf-card-list[data-card-theme="pink-accent"] {
  --sbf-card-accent: var(--sbf-palette-pink-400);
  --sbf-card-bg: var(--sbf-palette-pink-200);
  --sbf-card-text: inherit;
}

.sbf-card-list[data-card-theme="purple-accent"] {
  --sbf-card-accent: var(--sbf-palette-purple-400);
  --sbf-card-bg: var(--sbf-palette-purple-200);
  --sbf-card-text: inherit;
}

.sbf-card-list[data-card-theme="yellow-accent"] {
  --sbf-card-accent: var(--sbf-palette-yellow-300);
  --sbf-card-bg: var(--sbf-palette-yellow-200);
  --sbf-card-text: inherit;
}

.sbf-card-list[data-card-theme="white-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-white);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card-list[data-card-theme="gray-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-gray-100);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card-list[data-card-theme="red-light-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-red-100);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card-list[data-card-theme="green-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-green-400);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card-list[data-card-theme="green-light-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-green-300);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card-list[data-card-theme="green-dark-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-green-700);
  --sbf-card-text: var(--sbf-palette-white);
}

.sbf-card-list[data-card-theme="blue-light-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-blue-200);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card-list[data-card-theme="blue-dark-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-blue-500);
  --sbf-card-text: var(--sbf-palette-white);
}

.sbf-card-list[data-card-theme="pink-light-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-pink-200);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card-list[data-card-theme="pink-dark-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-pink-400);
  --sbf-card-text: var(--sbf-palette-white);
}

.sbf-card-list[data-card-theme="purple-light-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-purple-200);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card-list[data-card-theme="purple-dark-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-purple-400);
  --sbf-card-text: var(--sbf-palette-white);
}

.sbf-card-list[data-card-theme="yellow-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-yellow-200);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card-list[data-card-theme="orange-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-orange-200);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card-list {
  background-color: var(--sbf-card-bg, var(--sbf-palette-white));
  border-radius: var(--sbf-border-radius-4);
  color: var(--sbf-card-text, var(--sbf-palette-black));
  align-items: stretch;
  display: flex;
  position: relative;
  box-shadow: 0 0 10px #3535351a;
}

.sbf-card-list .sbf-card-list__content {
  flex: 1;
  padding: 20px;
}

.sbf-card-list .sbf-card-list__heading {
  letter-spacing: normal;
  margin: 0;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1.375;
}

@media (min-width: 480px) {
  .sbf-card-list .sbf-card-list__heading {
    letter-spacing: -.008em;
    margin: 0 0 4px;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 1.125em;
    font-weight: 700;
    line-height: 1.33333;
  }
}

.sbf-card-list .sbf-card-list__copy {
  letter-spacing: normal;
  margin: 0;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: .875em;
  line-height: 1.28571;
}

@media (min-width: 480px) {
  .sbf-card-list .sbf-card-list__copy {
    letter-spacing: normal;
    margin: 0;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 1em;
    line-height: 1.375;
  }
}

.sbf-card-list .sbf-card-list__img-container, .sbf-card-list .sbf-card-list__icon-container {
  background-color: var(--sbf-card-accent, var(--sbf-card-bg));
  display: none;
}

@media (min-width: 480px) {
  .sbf-card-list .sbf-card-list__img-container, .sbf-card-list .sbf-card-list__icon-container {
    border-radius: var(--sbf-border-radius-8) 0 0 var(--sbf-border-radius-8);
    border-right: 1px solid #35353580;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

.sbf-card-list .sbf-card-list__icon-arrow-container {
  border-radius: var(--sbf-border-radius-8) 0 0 var(--sbf-border-radius-8);
  justify-content: center;
  align-items: center;
  display: flex;
}

.sbf-card-list .sbf-card-list__img {
  object-fit: cover;
  width: 66px;
  height: 100%;
}

@media (min-width: 480px) {
  .sbf-card-list .sbf-card-list__icon {
    margin: 0 20px;
    display: inline-block;
  }
}

.sbf-card-list .sbf-card-list__icon--arrow-right {
  width: 20px;
  height: 22px;
  margin: 0 24px 0 auto;
}

.sbf-card-list > a {
  z-index: 100;
  text-decoration: none;
  position: absolute;
  inset: 0;
}

.sbf-card-list > a:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
  border-radius: var(--sbf-border-radius-8);
}

.sbf-card-list > a:hover, .sbf-card-list > a:focus {
  background-color: color-mix(in srgb, var(--sbf-palette-black) 10%, transparent);
}

.sbf-card-list-grid {
  grid-template-columns: 1fr;
  align-items: stretch;
  list-style-type: none;
  display: grid;
}

.sbf-card-list-grid--gap-xsmall {
  gap: var(--sbf-space-16);
}

.sbf-card-list-grid--gap-small {
  gap: var(--sbf-space-20);
}

.sbf-card-list-grid--gap-medium {
  gap: var(--sbf-space-24);
}

.sbf-card-list-grid--gap-large {
  gap: var(--sbf-space-32);
}

.sbf-card-list-grid--gap-xlarge {
  gap: var(--sbf-space-36);
}

.sbf-card-list-grid--row-gap-xxlarge {
  row-gap: var(--sbf-space-52);
}

.sbf-card[data-card-theme="green-accent"] {
  --sbf-card-accent: var(--sbf-palette-green-700);
  --sbf-card-bg: var(--sbf-palette-green-300);
  --sbf-card-text: inherit;
}

.sbf-card[data-card-theme="blue-accent"] {
  --sbf-card-accent: var(--sbf-palette-blue-500);
  --sbf-card-bg: var(--sbf-palette-blue-200);
  --sbf-card-text: inherit;
}

.sbf-card[data-card-theme="pink-accent"] {
  --sbf-card-accent: var(--sbf-palette-pink-400);
  --sbf-card-bg: var(--sbf-palette-pink-200);
  --sbf-card-text: inherit;
}

.sbf-card[data-card-theme="purple-accent"] {
  --sbf-card-accent: var(--sbf-palette-purple-400);
  --sbf-card-bg: var(--sbf-palette-purple-200);
  --sbf-card-text: inherit;
}

.sbf-card[data-card-theme="yellow-accent"] {
  --sbf-card-accent: var(--sbf-palette-yellow-300);
  --sbf-card-bg: var(--sbf-palette-yellow-200);
  --sbf-card-text: inherit;
}

.sbf-card[data-card-theme="white-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-white);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card[data-card-theme="gray-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-gray-100);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card[data-card-theme="red-light-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-red-100);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card[data-card-theme="green-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-green-400);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card[data-card-theme="green-light-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-green-300);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card[data-card-theme="green-dark-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-green-700);
  --sbf-card-text: var(--sbf-palette-white);
}

.sbf-card[data-card-theme="blue-light-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-blue-200);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card[data-card-theme="blue-dark-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-blue-500);
  --sbf-card-text: var(--sbf-palette-white);
}

.sbf-card[data-card-theme="pink-light-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-pink-200);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card[data-card-theme="pink-dark-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-pink-400);
  --sbf-card-text: var(--sbf-palette-white);
}

.sbf-card[data-card-theme="purple-light-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-purple-200);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card[data-card-theme="purple-dark-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-purple-400);
  --sbf-card-text: var(--sbf-palette-white);
}

.sbf-card[data-card-theme="yellow-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-yellow-200);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card[data-card-theme="orange-solid"] {
  --sbf-card-accent: none;
  --sbf-card-bg: var(--sbf-palette-orange-200);
  --sbf-card-text: var(--sbf-palette-black);
}

.sbf-card[data-card-border="bottom-green"] {
  border: 1px solid #d8d8d8 !important;
  border-bottom: 4px solid #11a05b !important;
}

.sbf-card[data-card-border="bottom-blue"] {
  border: 1px solid #d8d8d8 !important;
  border-bottom: 4px solid #3588c8 !important;
}

.sbf-card[data-card-border="bottom-purple"] {
  border: 1px solid #d8d8d8 !important;
  border-bottom: 4px solid #a66eae !important;
}

.sbf-card[data-card-border="bottom-orange"] {
  border: 1px solid #d8d8d8 !important;
  border-bottom: 4px solid #e58424 !important;
}

.sbf-card[data-card-border="bottom-pink"] {
  border: 1px solid #d8d8d8 !important;
  border-bottom: 4px solid #c07493 !important;
}

.sbf-card[data-card-border="bottom-yellow"] {
  border: 1px solid #d8d8d8 !important;
  border-bottom: 4px solid #e9af1f !important;
}

.sbf-card[data-card-border="bottom-light-green"] {
  border: 1px solid #d8d8d8 !important;
  border-bottom: 4px solid #93c45b !important;
}

.sbf-card[data-card-border="top-orange"] {
  border: 1px solid #d8d8d8 !important;
  border-top: 4px solid #e58424 !important;
}

.sbf-card[data-card-border="top-green"] {
  border: 1px solid #d8d8d8 !important;
  border-top: 4px solid #11a05b !important;
}

.sbf-card[data-card-border="top-light-green"] {
  border: 1px solid #d8d8d8 !important;
  border-top: 4px solid #93c45b !important;
}

.sbf-card[data-card-border="top-blue"] {
  border: 1px solid #d8d8d8 !important;
  border-top: 4px solid #3588c8 !important;
}

.sbf-card[data-card-border="top-purple"] {
  border: 1px solid #d8d8d8 !important;
  border-top: 4px solid #a66eae !important;
}

.sbf-card[data-card-border="top-brand-blue"] {
  border: 1px solid #d8d8d8 !important;
  border-top: 4px solid #005595 !important;
}

.sbf-card[data-card-border="top-dark-green"] {
  border: 1px solid #d8d8d8 !important;
  border-top: 4px solid #1c6b3d !important;
}

.sbf-card[data-card-border="top-brand-green"] {
  border: 1px solid #d8d8d8 !important;
  border-top: 4px solid #63883d !important;
}

.sbf-card[data-card-border="top-light-blue"] {
  border: 1px solid #d8d8d8 !important;
  border-top: 4px solid #70bfff !important;
}

.sbf-card[data-card-border="left-dark-green"] {
  border: 1px solid #d8d8d8 !important;
  border-left: 4px solid #1c6b3d !important;
}

.sbf-card[data-card-border="left-brand-blue"] {
  border: 1px solid #d8d8d8 !important;
  border-left: 4px solid #005595 !important;
}

.sbf-card[data-card-border="left-purple"] {
  border: 1px solid #d8d8d8 !important;
  border-left: 4px solid #562363 !important;
}

.sbf-card[data-card-border="left-red"] {
  border: 1px solid #d8d8d8 !important;
  border-left: 4px solid #cd2617 !important;
}

.sbf-card {
  height: 100%;
  color: var(--sbf-card-text, var(--sbf-palette-black));
  background-color: var(--sbf-card-bg, var(--sbf-palette-white));
  border-radius: var(--sbf-border-radius-4);
  flex-direction: column;
  display: flex;
  position: relative;
  box-shadow: 0 0 10px #3535351a;
}

.sbf-card:is(figure) {
  margin: 0;
}

.sbf-card .sbf-card__image {
  height: 12.5rem;
  min-height: 12.5rem;
  position: relative;
}

.sbf-card .sbf-card__image--large {
  height: 12.5rem;
  min-height: 12.5rem;
}

@media (min-width: 900px) {
  .sbf-card .sbf-card__image--large {
    height: 15.5rem;
    min-height: 15.5rem;
  }
}

.sbf-card .sbf-card__image > .sbf-ce-section {
  width: 100%;
  height: 100%;
}

.sbf-card .sbf-card__image img:not(.sbf-card__image--avatar) {
  object-fit: cover;
  border-radius: var(--sbf-border-radius-4) var(--sbf-border-radius-4) 0 0;
  width: 100%;
  height: 100%;
}

.sbf-card .sbf-card__image img.sbf-card__image--avatar {
  z-index: 1;
  border: solid var(--sbf-border-width-5) var(--sbf-palette-white);
  border-radius: var(--sbf-border-radius-round);
  aspect-ratio: 1;
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: -40px;
  left: 24px;
}

@media (min-width: 480px) {
  .sbf-card .sbf-card__image img.sbf-card__image--avatar {
    width: 80px;
    height: 80px;
  }
}

.sbf-card .sbf-card__icon {
  width: 48px;
  height: 48px;
}

.sbf-card .sbf-card__icon--small {
  width: 26px;
  height: 26px;
}

.sbf-card .sbf-card__icon--medium {
  width: 34px;
  height: 34px;
}

.sbf-card .sbf-card__image-bg {
  border: solid var(--sbf-border-width-2) var(--sbf-palette-white);
  border-radius: var(--sbf-border-radius-round);
  z-index: 2;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 160px;
  height: 160px;
  display: flex;
  position: absolute;
}

.sbf-card .sbf-card__icon-bg {
  border-radius: var(--sbf-border-radius-round);
  z-index: 2;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 72px;
  height: 72px;
  display: flex;
  position: absolute;
  top: -40px;
}

.sbf-card .sbf-card__icon-bg--pink {
  background-color: var(--sbf-palette-pink-400);
  border: solid var(--sbf-border-width-3) var(--sbf-palette-pink-300);
}

.sbf-card .sbf-card__icon-bg--blue {
  background-color: var(--sbf-palette-blue-500);
  border: solid var(--sbf-border-width-3) var(--sbf-palette-blue-400);
}

.sbf-card .sbf-card__icon-bg--green {
  background-color: var(--sbf-palette-green-700);
  border: solid var(--sbf-border-width-3) var(--sbf-palette-green-500);
}

.sbf-card .sbf-card__icon-bg--yellow {
  background-color: var(--sbf-palette-gold-300);
  border: solid var(--sbf-border-width-3) var(--sbf-palette-yellow-300);
}

.sbf-card .sbf-card__icon-bg--purple {
  background-color: var(--sbf-palette-purple-400);
  border: solid var(--sbf-border-width-3) var(--sbf-palette-purple-300);
}

.sbf-card .sbf-card__image-container, .sbf-card .sbf-card__icon-container {
  justify-content: center;
  display: flex;
}

.sbf-card hr {
  border-color: #0000;
  border-width: var(--sbf-border-width-1);
  background: #d8d8d8;
  margin: 8px 0 24px;
}

.sbf-card:has(.sbf-card__icon-container) {
  gap: var(--sbf-space-20);
}

.sbf-card:has(.sbf-card__image-container) {
  gap: var(--sbf-space-80);
}

.sbf-card .sbf-card__body {
  padding: var(--sbf-space-28);
  background-color: inherit;
  flex-direction: column;
  flex: auto;
  display: flex;
}

.sbf-card .sbf-card__body figure {
  margin: 0;
}

.sbf-card .sbf-card__body:has(.sbf-card__icon), .sbf-card .sbf-card__body:has(.sbf-card__button), .sbf-card .sbf-card__body:has(.sbf-card__link), .sbf-card .sbf-card__body:has(cite) {
  gap: var(--sbf-space-20);
}

.sbf-card .sbf-card__image + .sbf-card__body {
  border-radius: 0 0 var(--sbf-border-radius-4) var(--sbf-border-radius-4);
  border: 1px solid var(--sbf-palette-gray-300);
  padding: var(--sbf-space-28);
}

.sbf-card .sbf-card__image + .sbf-card__body figure {
  gap: var(--sbf-space-24);
  flex-direction: column;
  flex: auto;
  display: flex;
}

.sbf-card .sbf-card__image + .sbf-card__body:has(figure) {
  padding-top: var(--sbf-space-48);
}

@media (min-width: 480px) {
  .sbf-card .sbf-card__image + .sbf-card__body:has(figure) {
    padding-top: var(--sbf-space-60);
  }
}

.sbf-card a:not(.sbf-button, .sbf-card__button) {
  color: #005595;
}

.sbf-card a:not(.sbf-button, .sbf-card__button):hover, .sbf-card a:not(.sbf-button, .sbf-card__button):active {
  color: #002949;
}

.sbf-card a:not(.sbf-button, .sbf-card__button) {
  font-weight: var(--sbf-font-weight-700);
  text-decoration: underline;
}

.sbf-card a:not(.sbf-button, .sbf-card__button) svg {
  width: 16px;
  height: 16px;
  margin: 0 0 0 var(--sbf-space-8);
  vertical-align: middle;
}

.sbf-card .sbf-form {
  margin: var(--sbf-space-8) 0;
}

.sbf-card .inline-input {
  font-family: var(--sbf-font-family-sans);
  cursor: text;
  margin: 0 12px 0 0;
  padding: 12px 0;
  font-size: 1em;
  font-weight: normal;
  line-height: normal;
  display: inline-block;
  position: relative;
}

.sbf-card .inline-input input, .sbf-card .inline-input textarea, .sbf-card .inline-input select {
  width: 100%;
  font-size: 1em;
  font-family: var(--sbf-font-family-sans);
  color: var(--sbf-palette-black);
  border-radius: var(--sbf-border-radius-4);
  background: var(--sbf-palette-white);
  border: 1px solid var(--sbf-palette-gray-400);
  box-shadow: none;
  appearance: none;
  padding: 1em;
}

.sbf-card .inline-input input[type="number"], .sbf-card .inline-input textarea[type="number"], .sbf-card .inline-input select[type="number"] {
  appearance: none;
  -moz-appearance: textfield;
}

.sbf-card .inline-input input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.sbf-card .inline-input input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.sbf-card .inline-input textarea[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.sbf-card .inline-input textarea[type="number"]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.sbf-card .inline-input select[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.sbf-card .inline-input select[type="number"]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

.sbf-card .inline-input input:focus, .sbf-card .inline-input textarea:focus, .sbf-card .inline-input select:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.sbf-card .inline-input select {
  background: url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg'%20width='14'%20height='7'%20viewBox='0%200%2014%207'%20fill='none'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M14%200L7.2807%207L0%200L14%200Z'%20fill='%23979797'/%3e%3c/svg%3e") right 1rem center / .6rem no-repeat;
  background-color: var(--sbf-palette-white);
  cursor: pointer;
}

.sbf-card .inline-input input, .sbf-card .inline-input select {
  height: 54px;
  min-height: 54px;
}

.sbf-card .inline-input label {
  font-size: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 1;
  cursor: text;
  transform-origin: 0;
  pointer-events: none;
  transition: transform .2s ease-out;
  position: absolute;
  top: 1.75em;
  left: 1em;
  transform: scale(.8) translate(-1em, -3em);
}

.sbf-card .inline-input.empty label {
  color: var(--sbf-palette-gray-500);
  transform: none;
}

.sbf-card .inline-input.currency-usd input {
  padding: 10px 63px 10px 30px;
}

.sbf-card .inline-input.currency-usd input::-webkit-input-placeholder {
  color: var(--sbf-palette-blue-500);
}

.sbf-card .inline-input.currency-usd input::placeholder {
  color: var(--sbf-palette-blue-500);
}

.sbf-card .inline-input.currency-usd input:placeholder-shown {
  color: var(--sbf-palette-blue-500);
}

.sbf-card .inline-input.currency-usd input:-ms-placeholder-shown {
  color: var(--sbf-palette-blue-500);
}

.sbf-card .inline-input.currency-usd label {
  padding-left: 0;
}

.sbf-card .inline-input.empty.currency-usd label {
  padding-left: .4em;
}

.sbf-card .inline-input.invalid input, .sbf-card .inline-input.invalid select {
  border: 1px solid var(--sbf-palette-red-200);
}

.sbf-card .inline-input.invalid.empty label {
  color: var(--sbf-palette-red-200);
  padding-left: 24px;
}

.sbf-card .inline-input.invalid.empty label:before {
  content: "!";
  background-color: var(--sbf-palette-red-200);
  color: var(--sbf-palette-white);
  border-radius: var(--sbf-border-radius-round);
  width: 15px;
  line-height: 15px;
  font-weight: var(--sbf-font-weight-700);
  text-align: center;
  font-size: 12px;
  display: block;
  position: absolute;
  top: 3px;
  left: 2px;
}

.sbf-card .inline-input .email-checker {
  z-index: 1002;
  white-space: nowrap;
  background-color: #fff;
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.45;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
}

.sbf-card .inline-input .email-checker__label {
  display: flex;
  overflow: hidden;
}

.sbf-card .inline-input .email-checker__result {
  cursor: pointer;
  text-overflow: ellipsis;
  font-weight: var(--sbf-font-weight-600);
  direction: rtl;
  margin-left: .2em;
  padding: 0;
  text-decoration: underline;
  overflow: hidden;
}

.sbf-card .inline-input .email-checker__result:focus-visible {
  outline-offset: -2px;
}

.sbf-card .inline-input .email-checker__close {
  cursor: pointer;
  height: 14px;
  margin-top: 2px;
  margin-left: 3px;
  padding: 0;
  display: inline-block;
}

.sbf-card .inline-input .icon {
  color: var(--sbf-palette-gray-500);
}

.sbf-card .inline-input ::-webkit-input-placeholder {
  color: var(--sbf-palette-gray-500);
}

.sbf-card .inline-input :-moz-placeholder-shown {
  color: var(--sbf-palette-gray-500);
}

.sbf-card .inline-input ::-moz-placeholder {
  color: var(--sbf-palette-gray-500);
}

.sbf-card .inline-input :-ms-placeholder-shown {
  color: var(--sbf-palette-gray-500);
}

.sbf-card .inline-input .inline-input__button {
  background: none;
  border: 0;
  outline: 0;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 18px;
  right: 0;
}

.sbf-card .inline-input .inline-input__button .inline-input__button-search-icon {
  width: 17px;
  height: 17px;
}

.sbf-card .inline-input {
  width: 100%;
  margin: 0;
}

.sbf-card .sbf-card__button {
  border-radius: var(--sbf-border-radius-4);
  color: #fff;
  font-family: var(--sbf-font-family-sans);
  font-weight: var(--sbf-font-weight-700);
  border-color: #005595;
  border-width: var(--sbf-border-width-2);
  cursor: pointer;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: -.005em;
  text-align: center;
  background-color: #005595;
  border-style: solid;
  margin-bottom: 10px;
  text-decoration: none;
  transition: background 50ms linear, border-color 50ms linear, color 50ms linear, opacity 50ms linear;
  display: inline-block;
}

.sbf-card .sbf-card__button:hover, .sbf-card .sbf-card__button:focus {
  color: #f5f5f5;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #003862;
  border-color: #003862;
}

.sbf-card .sbf-card__button:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.sbf-card .sbf-card__button.disabled, .sbf-card .sbf-card__button[disabled] {
  opacity: var(--sbf-opacity-50);
  pointer-events: none;
}

.sbf-card .sbf-card__button.disabled:hover, .sbf-card .sbf-card__button.disabled:focus, .sbf-card .sbf-card__button[disabled]:hover, .sbf-card .sbf-card__button[disabled]:focus {
  color: #fff;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #005595;
  border-color: #005595;
}

.sbf-card .sbf-card__button {
  font-size: var(--sbf-font-size-18);
  text-align: center;
  min-width: 200px;
  padding: 16px;
  line-height: 1.15em;
  text-decoration: none;
}

.sbf-card .sbf-card__button--small {
  font-size: var(--sbf-font-size-16);
  line-height: var(--sbf-line-height-sm);
  padding: 12px;
}

.sbf-card .sbf-card__button--blue {
  background-color: var(--sbf-palette-blue-500);
  border-color: var(--sbf-palette-blue-500);
}

.sbf-card .sbf-card__button--blue:hover, .sbf-card .sbf-card__button--blue:focus {
  background-color: #003862;
  border-color: #003862;
}

.sbf-card .sbf-card__button--orange {
  background-color: var(--sbf-palette-orange-500);
  border-color: var(--sbf-palette-orange-500);
}

.sbf-card .sbf-card__button--orange:hover, .sbf-card .sbf-card__button--orange:focus {
  background-color: #963c00;
  border-color: #963c00;
}

.sbf-card .sbf-card__button--green {
  background-color: var(--sbf-palette-green-700);
  border-color: var(--sbf-palette-green-700);
}

.sbf-card .sbf-card__button--green:hover, .sbf-card .sbf-card__button--green:focus {
  background-color: #114326;
  border-color: #114326;
}

.sbf-card .sbf-card__button--brown {
  background-color: var(--sbf-palette-brown-200);
  border-color: var(--sbf-palette-brown-200);
}

.sbf-card .sbf-card__button--brown:hover, .sbf-card .sbf-card__button--brown:focus {
  background-color: #6c2e20;
  border-color: #6c2e20;
}

.sbf-card .sbf-card__button--light-yellow {
  background-color: var(--sbf-palette-yellow-200);
  border-color: var(--sbf-palette-yellow-200);
  color: var(--sbf-palette-black);
}

.sbf-card .sbf-card__button--light-yellow:hover, .sbf-card .sbf-card__button--light-yellow:focus {
  color: var(--sbf-palette-black);
  background-color: #efc53f;
  border-color: #efc53f;
}

.sbf-card .sbf-card__button--light-green {
  background-color: var(--sbf-palette-green-400);
  border-color: var(--sbf-palette-green-400);
  color: var(--sbf-palette-black);
}

.sbf-card .sbf-card__button--light-green:hover, .sbf-card .sbf-card__button--light-green:focus {
  color: var(--sbf-palette-black);
  background-color: #7aae3e;
  border-color: #7aae3e;
}

.sbf-card .sbf-card__button--light-blue {
  background-color: var(--sbf-palette-blue-200);
  border-color: var(--sbf-palette-blue-200);
  color: var(--sbf-palette-black);
}

.sbf-card .sbf-card__button--light-blue:hover, .sbf-card .sbf-card__button--light-blue:focus {
  color: var(--sbf-palette-black);
  background-color: #9acaff;
  border-color: #9acaff;
}

.sbf-card .sbf-card__button--dark-pink {
  background-color: var(--sbf-palette-pink-400);
  border-color: var(--sbf-palette-pink-400);
}

.sbf-card .sbf-card__button--dark-pink:hover, .sbf-card .sbf-card__button--dark-pink:focus {
  background-color: #591a33;
  border-color: #591a33;
}

.sbf-card .sbf-card__button--purple {
  background-color: var(--sbf-palette-purple-400);
  border-color: var(--sbf-palette-purple-400);
}

.sbf-card .sbf-card__button--purple:hover, .sbf-card .sbf-card__button--purple:focus {
  background-color: #35163d;
  border-color: #35163d;
}

.sbf-card .sbf-card__content {
  gap: var(--sbf-space-8);
  flex-direction: column;
  flex-grow: 1;
  display: flex;
}

.sbf-card .sbf-card__heading {
  letter-spacing: -.015em;
  text-wrap: balance;
  margin-top: 0;
  margin-bottom: 24px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.16667;
}

.sbf-card .sbf-card__tag {
  font-family: var(--sbf-font-family-sans);
  font-size: var(--sbf-font-size-16);
  font-weight: var(--sbf-font-weight-700);
  letter-spacing: var(--sbf-letter-spacing-xl);
  line-height: var(--sbf-line-height-sm);
  text-transform: uppercase;
  color: var(--sbf-palette-black);
  margin: 0;
}

.sbf-card .sbf-card__copy {
  letter-spacing: normal;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1.375;
}

.sbf-card .sbf-card__button, .sbf-card .sbf-card__heading, .sbf-card .sbf-card__tag, .sbf-card .sbf-card__copy, .sbf-card .sbf-card__copy--serif, .sbf-card .sbf-card__copy--quote-sans, .sbf-card .sbf-card__copy--quote-serif, .sbf-card blockquote {
  margin: 0;
}

.sbf-card .sbf-card__copy--quote-sans {
  letter-spacing: -.01em;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  font-style: italic;
  line-height: 1.33333;
}

@media (min-width: 760px) {
  .sbf-card .sbf-card__copy--quote-sans {
    letter-spacing: -.01em;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 1.5em;
    font-style: italic;
    line-height: 1.25;
  }
}

.sbf-card .sbf-card__copy--serif {
  letter-spacing: .005em;
  font-family: Zilla Slab, Georgia, serif;
  font-size: 1.125em;
  line-height: 1.33333;
}

.sbf-card .sbf-card__copy--quote-serif {
  letter-spacing: -.01em;
  font-family: Zilla Slab, Georgia, serif;
  font-size: 1.125em;
  font-style: italic;
  line-height: 1.33333;
}

@media (min-width: 760px) {
  .sbf-card .sbf-card__copy--quote-serif {
    letter-spacing: -.005em;
    font-family: Zilla Slab, Georgia, serif;
    font-size: 1.5em;
    font-style: italic;
    line-height: 1.25;
  }
}

.sbf-card .sbf-card__heading {
  text-wrap: balance;
}

.sbf-card .sbf-card__address {
  font-style: normal;
}

.sbf-card .sbf-card__footer:has(.sbf-card__button):has(.sbf-card__link) {
  align-items: flex-start;
  gap: var(--sbf-space-16);
  flex-direction: column;
  display: flex;
}

@media (min-width: 900px) {
  .sbf-card .sbf-card__footer:has(.sbf-card__button):has(.sbf-card__link) {
    align-items: center;
    gap: var(--sbf-space-20);
    flex-direction: row;
  }
}

.sbf-card .sbf-card__footer:is(cite) .sbf-card__heading {
  letter-spacing: -.008em;
  margin: 0;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.33333;
}

@media (min-width: 760px) {
  .sbf-card .sbf-card__footer:is(cite) .sbf-card__heading {
    letter-spacing: -.015em;
    margin: 0;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.16667;
  }
}

.sbf-card .sbf-card__footer:is(cite) .sbf-card__copy {
  letter-spacing: normal;
  margin: 0;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: .875em;
  line-height: 1.28571;
}

.sbf-card[data-content-align="left"] .sbf-card__body, .sbf-card[data-content-align="left"] .sbf-card__content, .sbf-card[data-content-align="left"] .sbf-card__footer {
  text-align: left;
  align-items: flex-start;
}

.sbf-card[data-content-align="center"] .sbf-card__body, .sbf-card[data-content-align="center"] .sbf-card__content, .sbf-card[data-content-align="center"] .sbf-card__footer {
  text-align: center;
  align-items: center;
}

.sbf-card[data-content-align="right"] .sbf-card__body, .sbf-card[data-content-align="right"] .sbf-card__content, .sbf-card[data-content-align="right"] .sbf-card__footer {
  text-align: right;
  align-items: flex-end;
}

.sbf-card .sbf-card__section {
  margin: 0 0 var(--sbf-space-12) 0;
}

.sbf-card .sbf-card__section .sbf-card__section-heading {
  letter-spacing: -.008em;
  align-items: center;
  gap: var(--sbf-space-8);
  margin: 0 0 4px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.33333;
  display: flex;
}

.sbf-card .sbf-card__section .sbf-card__section-heading > .sbf-card__icon {
  width: 14px;
  height: 20px;
}

.sbf-card .sbf-card__section .sbf-card__section-copy {
  letter-spacing: normal;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1.375;
}

.sbf-card .sbf-card__section .sbf-card__address, .sbf-card .sbf-card__section .sbf-card__section-copy {
  padding: 0 0 0 var(--sbf-space-24);
  margin: 0;
}

.sbf-card:not(:has(.sbf-card__image)) .sbf-card__body {
  border-radius: var(--sbf-border-radius-4);
}

.sbf-card--bg-transparent {
  box-shadow: none;
  background: none;
}

.sbf-card--bg-transparent .sbf-card__image img {
  border-radius: var(--sbf-border-radius-4);
}

.sbf-card--bg-transparent .sbf-card__image + .sbf-card__body {
  border-style: none none solid;
  border-width: 0 0 1px;
  border-color: transparent transparent var(--sbf-palette-gray-300) transparent;
  background-color: #0000;
  border-radius: 0;
  padding: 16px 0 24px;
}

@media (min-width: 480px) {
  .sbf-card--bg-transparent .sbf-card__image + .sbf-card__body {
    padding: 20px 0 28px;
  }
}

.sbf-card--has-light-bg .sbf-card__body {
  color: var(--sbf-palette-black);
}

.sbf-card--has-light-bg .sbf-card__body a:not(.sbf-card__button), .sbf-card--has-light-bg .sbf-card__link {
  color: #353535;
}

.sbf-card--has-light-bg .sbf-card__body a:not(.sbf-card__button):hover, .sbf-card--has-light-bg .sbf-card__link:hover, .sbf-card--has-light-bg .sbf-card__body a:not(.sbf-card__button):active, .sbf-card--has-light-bg .sbf-card__link:active {
  color: #0f0f0f;
}

.sbf-card--has-dark-bg .sbf-card__body {
  color: var(--sbf-palette-white);
}

.sbf-card--has-dark-bg .sbf-card__link {
  color: #fff;
}

.sbf-card--has-dark-bg .sbf-card__link:hover, .sbf-card--has-dark-bg .sbf-card__link:active {
  color: #d9d9d9;
}

.sbf-card--landscape {
  border-radius: var(--sbf-border-radius-4);
}

@media (min-width: 480px) and (max-width: 760px) {
  .sbf-card--landscape {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (min-width: 760px) {
  .sbf-card--landscape {
    flex-direction: row;
  }

  .sbf-card--landscape .sbf-card__image {
    height: auto;
    min-height: auto;
  }
}

.sbf-card--landscape .sbf-card__image img:not(.sbf-card__image--avatar) {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

@media (min-width: 760px) {
  .sbf-card--landscape .sbf-card__image img:not(.sbf-card__image--avatar) {
    border-radius: var(--sbf-border-radius-4) 0 0 var(--sbf-border-radius-4);
  }
}

.sbf-card--landscape .sbf-card__image + .sbf-card__body {
  border: none;
}

@media (min-width: 760px) {
  .sbf-card--landscape .sbf-card__image + .sbf-card__body {
    border-radius: 0 var(--sbf-border-radius-4) var(--sbf-border-radius-4) 0;
    padding: var(--sbf-fluid-space-xl);
  }

  .sbf-card--landscape .sbf-card__image, .sbf-card--landscape .sbf-card__body {
    flex: 50%;
  }

  .sbf-card--landscape .sbf-card__body {
    padding: var(--sbf-fluid-space-xl);
  }
}

.sbf-card--landscape .sbf-card__body .sbf-card__heading {
  font-family: var(--sbf-font-family-sans);
  font-size: var(--sbf-fluid-font-size-step-2);
  font-weight: var(--sbf-font-weight-700);
  letter-spacing: var(--sbf-letter-spacing-md);
  line-height: var(--sbf-line-height-xs);
  color: var(--sbf-palette-black);
  margin: 0;
}

.sbf-card--landscape .sbf-card__body:has(.sbf-card__button) {
  gap: var(--sbf-fluid-space-md-lg);
}

@media (min-width: 760px) {
  .sbf-card--landscape .sbf-card__body:has(.sbf-card__button) {
    gap: var(--sbf-space-24);
  }
}

.sbf-card--landscape .sbf-card__content {
  gap: var(--sbf-fluid-space-xs-sm);
}

.sbf-card--landscape .sbf-card__content .sbf-card__extended {
  display: none;
}

@media (min-width: 760px) {
  .sbf-card--landscape .sbf-card__content .sbf-card__extended {
    gap: var(--sbf-fluid-space-xs-sm);
    flex-direction: column;
    display: flex;
  }
}

.sbf-card-grid {
  grid-template-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.sbf-card-grid .sbf-card-grid__item {
  grid-column: auto / span 1;
  width: auto;
  margin: 0;
}

@media (min-width: 480px) and (max-width: 760px) {
  .sbf-card-grid .sbf-card-grid__item {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (min-width: 600px) {
  .sbf-card-grid--two {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 760px) {
  .sbf-card-grid--three {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1080px) {
  .sbf-card-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sbf-card-grid--four {
  grid-gap: var(--sbf-space-20);
}

@media (min-width: 760px) {
  .sbf-card-grid--four {
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  }
}

.sbf-card-grid--gap-small {
  gap: var(--sbf-space-16);
}

.sbf-card-grid--gap-medium {
  gap: var(--sbf-space-24);
}

.sbf-card-grid--gap-large {
  gap: var(--sbf-space-32);
}

.sbf-card-grid--gap-xlarge {
  gap: var(--sbf-fluid-space-lg);
}

.sbf-card-grid--gap-xxlarge {
  gap: var(--sbf-space-48);
}

.sbf-card-grid--row-gap-medium {
  row-gap: var(--sbf-space-24);
}

.sbf-card-grid--row-gap-xxlarge {
  row-gap: var(--sbf-space-64);
}

.sbf-card-grid--row-gap-xxxlarge {
  row-gap: var(--sbf-space-104);
}

ul {
  margin: 0;
  list-style-type: none;
}

header {
  margin-bottom: 0;
}

section a:not(.special-button) {
  border: none;
  text-decoration: underline;
}

.iconset {
  width: 0;
  height: 0;
  position: absolute;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -.7px;
  margin-bottom: .5em;
}

.heading {
  letter-spacing: -.025em;
  margin: 0 0 8px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.875em;
  font-weight: 700;
  line-height: 1.16667;
}

@media (min-width: 775px) {
  .heading {
    letter-spacing: -.025em;
    margin: 0 0 8px;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.125;
  }
}

@media (min-width: 900px) {
  .heading {
    letter-spacing: -.035em;
    margin: 0 0 8px;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 3.125em;
    font-weight: 700;
    line-height: 1.1;
  }
}

.large-heading {
  letter-spacing: -.025em;
  margin: 0 0 12px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1.125;
}

@media (min-width: 900px) {
  .large-heading {
    letter-spacing: -.035em;
    margin: 0 0 12px;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 3.75em;
    font-weight: 700;
    line-height: 1.08333;
  }
}

.sub-heading {
  letter-spacing: -.015em;
  margin: 0 0 14px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.16667;
}

p {
  letter-spacing: .005em;
  font-family: Zilla Slab, Georgia, serif;
  font-size: 1.125em;
  line-height: 1.33333;
}

@media (min-width: 1080px) {
  .section-container {
    width: 1080px;
    margin: 0 auto;
  }
}

.flex-grid-1-2 {
  flex-flow: wrap;
  justify-content: center;
  display: flex;
}

.flex-grid-1-2 .flex-item {
  flex: 100%;
}

@media (min-width: 1080px) {
  .flex-grid-1-2 .flex-item {
    flex: 50%;
    max-width: 540px;
  }
}

.flex-grid-1-2-2 {
  flex-flow: wrap;
  justify-content: center;
  display: flex;
}

@media (min-width: 775px) {
  .flex-grid-1-2-2 {
    justify-content: space-between;
  }
}

@media (min-width: 1080px) {
  .flex-grid-1-2-2 {
    justify-content: center;
  }
}

.flex-grid-1-2-2 .flex-item {
  flex: 100%;
}

@media (min-width: 775px) {
  .flex-grid-1-2-2 .flex-item {
    flex: 0 0 50%;
    max-width: 540px;
  }
}

@media (min-width: 1080px) {
  .flex-grid-1-2-2 .flex-item {
    flex: 0 0 50%;
    justify-content: center;
    max-width: 540px;
  }
}

.navigation {
  z-index: 9;
  background: #353535;
  width: 100%;
  transition: transform .4s ease-out;
  position: fixed;
  top: 0;
  left: 0;
}

.animate-nav {
  transform: translateY(-100%);
}

.special-navigation {
  color: #fff;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 0;
  list-style: none;
  display: flex;
}

.special-navigation .active a:after {
  opacity: 1;
  width: 100%;
  transition: width .2s linear;
}

.special-navigation .nav-go-right a:after {
  left: auto;
  right: 0;
}

@media (max-width: 1080px) {
  .special-navigation li {
    flex: 1 0 20%;
  }
}

.special-navigation li:first-child {
  border-left: 1px solid #353535;
}

.special-nav-item {
  letter-spacing: normal;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  border-bottom: 0;
  border-right: 1px solid #353535;
  outline: none;
  padding: 26px 0;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: .875em;
  font-weight: 600;
  line-height: 1.28571;
  transition: background .2s ease-out;
  display: block;
  position: relative;
}

@media (max-width: 775px) {
  .special-nav-item {
    display: none;
  }
}

@media (min-width: 775px) {
  .special-nav-item {
    letter-spacing: 2px;
    text-align: center;
  }
}

@media (min-width: 1080px) {
  .special-nav-item {
    letter-spacing: 4px;
    padding: 20px 40px;
  }
}

.special-nav-item:hover, .special-nav-item:active, .special-nav-item:focus {
  color: #fff;
}

.special-nav-item:hover:not(.active):after, .special-nav-item:active:not(.active):after, .special-nav-item:focus:not(.active):after {
  opacity: 1;
  width: 100%;
}

.special-nav-item:after {
  content: "";
  z-index: -1;
  opacity: 0;
  width: 0;
  height: 100%;
  transition: width .2s ease-out, opacity .2s ease-out;
  position: absolute;
  bottom: 0;
  left: 0;
}

.nav-item-head-shaving:hover, .nav-item-head-shaving:after {
  background-color: #11a05b;
}

.nav-item-fundraising:hover, .nav-item-fundraising:after {
  background-color: #c07493;
}

.nav-item-kids-and-families:hover, .nav-item-kids-and-families:after {
  background-color: #e9af1f;
}

.nav-item-advocacy:hover, .nav-item-advocacy:after {
  background-color: #3588c8;
}

.nav-item-your-business:hover, .nav-item-your-business:after, .nav-item-about-sbf:hover, .nav-item-about-sbf:after {
  background-color: #a66eae;
}

.section-hero {
  color: #fff;
  text-align: center;
  padding: 0;
}

@media (min-width: 775px) {
  .section-hero {
    background-image: url("/fa/min/assets/section-hero-bg-410c9296.jpg");
    background-position: 0;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 3px solid #b4975a;
    padding: 16px 0;
  }
}

@media (min-width: 900px) {
  .section-hero {
    padding: 50px 0 30px;
  }
}

@media (min-width: 1080px) {
  .section-hero {
    padding: 80px 0;
  }
}

@media (min-width: 775px) {
  .section-hero .flex-item {
    flex: 0 0 47%;
  }
}

.section-hero .content-container {
  background-image: url("/fa/min/assets/section-hero-bg-410c9296.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 42px 20px 51px;
}

@media (min-width: 775px) {
  .section-hero .content-container {
    background-image: none;
    padding: 16px 0 32px 10px;
  }
}

@media (min-width: 1080px) {
  .section-hero .content-container {
    margin-bottom: 0;
    padding: 16px 16px 32px 0;
  }
}

.section-hero .content-container p {
  letter-spacing: -.0015em;
  margin-bottom: 16px;
  padding: 5px 0;
  font-family: Zilla Slab, Georgia, serif;
  font-size: 1.5em;
  line-height: 1.25;
}

.section-hero .content-container .sb-hr {
  margin: 8px auto;
}

@media (min-width: 900px) {
  .section-hero .content-container .sb-hr {
    margin: 10px auto;
  }
}

.section-hero .content-container .tag {
  letter-spacing: .01em;
  margin: 0 0 16px;
  padding: 0;
  font-family: Zilla Slab, Georgia, serif;
  font-size: 1em;
  font-style: italic;
  line-height: 1.375;
}

@media (min-width: 900px) {
  .section-hero .content-container .tag {
    letter-spacing: -.0001em;
    margin: 0 0 16px;
    font-family: Zilla Slab, Georgia, serif;
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.16667;
  }
}

.tiles.tiles {
  flex-flow: wrap;
  place-content: flex-start space-between;
  display: flex;
}

@media (min-width: 775px) {
  .tiles.tiles {
    padding: 16px;
  }
}

.tile {
  color: #fff;
  text-align: right;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #fff;
  flex: 1 0 50%;
  max-width: 50%;
  min-height: 148px;
  padding: 8px;
  overflow: hidden;
}

.tile:hover, .tile:active {
  color: #fff;
  border-color: #fff;
}

@media (min-width: 775px) {
  .tile {
    border: 2px solid #fff;
    max-width: 48%;
    margin-bottom: 16px;
  }
}

.tile h2 {
  letter-spacing: normal;
  z-index: 3;
  text-align: right;
  margin: 0;
  padding: 0 8px;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1.125em;
  line-height: 1.33333;
  position: absolute;
  bottom: 8px;
  right: 8px;
}

.tile--head-shaving {
  color: #fff;
  background-image: url("/fa/min/assets/tile-head-shaving-fd6b9909.jpg");
  background-position: center;
  flex: 0 100%;
  max-width: 100%;
}

@media (min-width: 775px) {
  .tile--head-shaving {
    background-position: 0;
  }
}

.tile--head-shaving .hoverelem {
  background: #11a05b;
}

.tile--fundraising {
  background-image: url("/fa/min/assets/tile-fundraising-596a1912.jpg");
}

.tile--fundraising .hoverelem {
  background: #c07493;
}

.tile--kids-and-families {
  background-image: url("/fa/min/assets/tile-kids-and-families-c51e12b1.jpg");
}

.tile--kids-and-families .hoverelem {
  background: #e9af1f;
}

.tile--advocacy {
  background-image: url("data:image/jpeg;base64,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");
}

.tile--advocacy .hoverelem {
  background: #3588c8;
}

.tile--your-business {
  background-image: url("/fa/min/assets/tile-your-business-4055a68a.jpg");
}

.tile--your-business .hoverelem {
  background: #a66eae;
}

.hoverelem {
  content: "";
  opacity: .7;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
}

.section-head-shaving {
  text-align: center;
}

@media (min-width: 775px) {
  .section-head-shaving {
    text-align: left;
    background-image: url("/fa/min/assets/section-head-shaving-bg-f9543acb.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 32px;
  }
}

@media (min-width: 1080px) {
  .section-head-shaving {
    padding: 0;
  }
}

.section-head-shaving .sbf-ce-section {
  outline: 1px dotted #353535 !important;
}

@media (min-width: 775px) {
  .section-head-shaving .flex-grid-1-2-2 {
    justify-content: flex-start;
  }
}

.section-head-shaving .img {
  background-image: url("/fa/min/assets/section-head-shaving-bg-f9543acb.jpg");
  background-position: 75%;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 415px;
  position: relative;
}

@media (min-width: 775px) {
  .section-head-shaving .img {
    background-image: none;
    flex: 0 35%;
    order: 2;
  }

  .section-head-shaving .sub-heading {
    padding-right: 80px;
  }
}

.section-head-shaving .content-container {
  color: #353535;
  background: #f5f5f5;
  padding: 42px 20px 52px;
  position: static;
}

@media (min-width: 480px) {
  .section-head-shaving .content-container {
    padding: 32px 16px 52px;
  }
}

@media (min-width: 775px) {
  .section-head-shaving .content-container {
    background: none;
    flex: 65%;
    order: 1;
    padding: 64px 0 124px;
  }
}

@media (min-width: 1080px) {
  .section-head-shaving .content-container {
    padding: 100px 48px 88px 16px;
  }
}

@media (min-width: 775px) {
  .section-head-shaving .content-container p {
    text-align: left;
    padding-right: 80px;
  }
}

@media (min-width: 1080px) {
  .section-head-shaving .content-container p {
    padding-right: 0;
  }
}

.section-head-shaving .content-container a {
  color: #005595;
}

.section-head-shaving .content-container a:hover, .section-head-shaving .content-container a:active {
  color: #002949;
}

.section-head-shaving .content-container a {
  font-weight: 600;
}

.section-head-shaving .content-container .sbf-button-group {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  display: flex;
}

@media (min-width: 480px) {
  .section-head-shaving .content-container .sbf-button-group {
    flex-flow: row;
  }
}

@media (min-width: 775px) {
  .section-head-shaving .content-container .sbf-button-group {
    justify-content: flex-start;
  }
}

.section-head-shaving .content-container .sbf-button-group .sbf-button--primary {
  border-radius: var(--sbf-border-radius-4);
  color: #fff;
  font-family: var(--sbf-font-family-sans);
  font-weight: var(--sbf-font-weight-700);
  border-color: #005595;
  border-width: var(--sbf-border-width-2);
  cursor: pointer;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: -.005em;
  text-align: center;
  background-color: #005595;
  border-style: solid;
  margin-bottom: 10px;
  text-decoration: none;
  transition: background 50ms linear, border-color 50ms linear, color 50ms linear, opacity 50ms linear;
  display: inline-block;
}

.section-head-shaving .content-container .sbf-button-group .sbf-button--primary:hover, .section-head-shaving .content-container .sbf-button-group .sbf-button--primary:focus {
  color: #f5f5f5;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #003862;
  border-color: #003862;
}

.section-head-shaving .content-container .sbf-button-group .sbf-button--primary:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.section-head-shaving .content-container .sbf-button-group .sbf-button--primary.disabled, .section-head-shaving .content-container .sbf-button-group .sbf-button--primary[disabled] {
  opacity: var(--sbf-opacity-50);
  pointer-events: none;
}

.section-head-shaving .content-container .sbf-button-group .sbf-button--primary.disabled:hover, .section-head-shaving .content-container .sbf-button-group .sbf-button--primary.disabled:focus, .section-head-shaving .content-container .sbf-button-group .sbf-button--primary[disabled]:hover, .section-head-shaving .content-container .sbf-button-group .sbf-button--primary[disabled]:focus {
  color: #fff;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #005595;
  border-color: #005595;
}

.section-head-shaving .content-container .sbf-button-group .sbf-button--primary {
  font-size: var(--sbf-font-size-16);
  min-width: initial;
  padding: 12px;
  line-height: 1.15em;
}

.section-head-shaving .content-container .sbf-button-group .sbf-button--secondary {
  border-radius: var(--sbf-border-radius-4);
  color: #fff;
  font-family: var(--sbf-font-family-sans);
  font-weight: var(--sbf-font-weight-700);
  border-color: #1c6b3d;
  border-width: var(--sbf-border-width-2);
  cursor: pointer;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: -.005em;
  text-align: center;
  background-color: #1c6b3d;
  border-style: solid;
  margin-bottom: 10px;
  text-decoration: none;
  transition: background 50ms linear, border-color 50ms linear, color 50ms linear, opacity 50ms linear;
  display: inline-block;
}

.section-head-shaving .content-container .sbf-button-group .sbf-button--secondary:hover, .section-head-shaving .content-container .sbf-button-group .sbf-button--secondary:focus {
  color: #f5f5f5;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #114326;
  border-color: #114326;
}

.section-head-shaving .content-container .sbf-button-group .sbf-button--secondary:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.section-head-shaving .content-container .sbf-button-group .sbf-button--secondary.disabled, .section-head-shaving .content-container .sbf-button-group .sbf-button--secondary[disabled] {
  opacity: var(--sbf-opacity-50);
  pointer-events: none;
}

.section-head-shaving .content-container .sbf-button-group .sbf-button--secondary.disabled:hover, .section-head-shaving .content-container .sbf-button-group .sbf-button--secondary.disabled:focus, .section-head-shaving .content-container .sbf-button-group .sbf-button--secondary[disabled]:hover, .section-head-shaving .content-container .sbf-button-group .sbf-button--secondary[disabled]:focus {
  color: #fff;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #1c6b3d;
  border-color: #1c6b3d;
}

.section-head-shaving .content-container .sbf-button-group .sbf-button--secondary {
  font-size: var(--sbf-font-size-16);
  min-width: initial;
  padding: 12px;
  line-height: 1.15em;
}

.section-head-shaving .content-container .sbf-button-group .sbf-button {
  text-align: center;
  width: 100%;
  margin: 0;
}

@media (min-width: 480px) {
  .section-head-shaving .content-container .sbf-button-group .sbf-button {
    width: auto;
  }
}

.section-head-shaving .national-partners {
  color: #fff;
  text-align: center;
  z-index: 1;
  width: 100%;
  position: absolute;
  bottom: 0;
}

@media (min-width: 480px) {
  .section-head-shaving .national-partners {
    color: #353535;
    width: 300px;
  }
}

@media (min-width: 775px) {
  .section-head-shaving .national-partners {
    color: #fff;
    width: 300px;
    top: auto;
    left: auto;
    right: 0;
  }
}

.section-head-shaving .national-partners .national-partner-content {
  letter-spacing: normal;
  text-align: center;
  z-index: 2;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: .875em;
  font-weight: 500;
  line-height: 1.28571;
  display: block;
}

@media (min-width: 1820px) {
  .section-head-shaving .national-partners .national-partner-content {
    text-shadow: 0 0 8px #000;
  }
}

.section-head-shaving .national-partners .partner-logos {
  justify-content: center;
  align-items: center;
  height: 90px;
  display: flex;
}

.section-head-shaving .national-partners .partner-logos .svg-sportsclips {
  width: 100%;
  max-width: 175px;
}

.section-fundraiser {
  color: #353535;
  text-align: center;
}

@media (min-width: 775px) {
  .section-fundraiser {
    text-align: center;
  }
}

.section-fundraiser .img {
  background-image: url("/fa/min/assets/section-fundraiser-bg-30f11cdb.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 420px;
}

@media (min-width: 775px) {
  .section-fundraiser .img {
    max-width: 50%;
  }
}

.section-fundraiser .content-container {
  background-color: #fff;
  padding: 42px 32px;
}

@media (min-width: 775px) {
  .section-fundraiser .content-container {
    text-align: left;
    max-width: 50%;
    padding: 64px 48px;
  }

  .section-fundraiser .content-container * {
    max-width: 475px;
  }
}

.section-fundraiser .content-container .sbf-button.primary {
  border-radius: var(--sbf-border-radius-4);
  color: #fff;
  font-family: var(--sbf-font-family-sans);
  font-weight: var(--sbf-font-weight-700);
  border-color: #562363;
  border-width: var(--sbf-border-width-2);
  cursor: pointer;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: -.005em;
  text-align: center;
  background-color: #562363;
  border-style: solid;
  margin-bottom: 10px;
  text-decoration: none;
  transition: background 50ms linear, border-color 50ms linear, color 50ms linear, opacity 50ms linear;
  display: inline-block;
}

.section-fundraiser .content-container .sbf-button.primary:hover, .section-fundraiser .content-container .sbf-button.primary:focus {
  color: #f5f5f5;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #35163d;
  border-color: #35163d;
}

.section-fundraiser .content-container .sbf-button.primary:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.section-fundraiser .content-container .sbf-button.primary.disabled, .section-fundraiser .content-container .sbf-button.primary[disabled] {
  opacity: var(--sbf-opacity-50);
  pointer-events: none;
}

.section-fundraiser .content-container .sbf-button.primary.disabled:hover, .section-fundraiser .content-container .sbf-button.primary.disabled:focus, .section-fundraiser .content-container .sbf-button.primary[disabled]:hover, .section-fundraiser .content-container .sbf-button.primary[disabled]:focus {
  color: #fff;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #562363;
  border-color: #562363;
}

.section-fundraiser .content-container .sbf-button.primary {
  font-size: var(--sbf-font-size-18);
  text-align: center;
  min-width: 100%;
  max-width: 80%;
  margin: 0;
  padding: 16px;
  line-height: 1.15em;
  display: inline-block;
}

@media (min-width: 480px) {
  .section-fundraiser .content-container .sbf-button.primary {
    min-width: 200px;
    max-width: 250px;
  }
}

@media (min-width: 775px) {
  .section-fundraiser .content-container .sbf-button.primary {
    max-width: none;
  }
}

.section-kids-and-families {
  text-align: center;
  color: #fff;
  background-color: #3588c8;
  background-image: url("/fa/min/assets/section-kids-and-families-bg-c7d67b47.jpg");
  background-repeat: no-repeat;
  background-size: inherit;
  background-position: bottom;
  padding: 0 0 700px;
}

@media (min-width: 775px) {
  .section-kids-and-families {
    background-position: bottom;
    background-size: contain;
    padding: 48px 0 360px;
  }
}

@media (min-width: 900px) {
  .section-kids-and-families {
    background-position: center;
    background-size: cover;
    padding: 48px 0 700px;
  }
}

.section-kids-and-families .section-container {
  padding: 0 16px;
}

.section-kids-and-families .content-container {
  flex: 1 0 100%;
  max-width: 100%;
  padding: 42px 20px 0;
}

@media (min-width: 775px) {
  .section-kids-and-families .content-container {
    padding: 24px 16px;
  }
}

.section-kids-and-families .content-container * {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}

.section-kids-and-families .sbf-card-container {
  max-width: 1080px;
  padding: 80px 0 0;
}

.section-advocacy {
  color: #fff;
  background-image: url("/fa/min/assets/section-advocacy-bg-12effba4.jpg");
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 3px solid #fff;
  height: 594px;
  padding-top: 8px;
  overflow: hidden;
}

@media (min-width: 480px) {
  .section-advocacy {
    height: 500px;
  }
}

@media (min-width: 775px) {
  .section-advocacy {
    border-bottom: none;
    padding-top: 24px;
  }
}

@media (min-width: 900px) {
  .section-advocacy {
    height: 536px;
  }
}

@media (min-width: 1080px) {
  .section-advocacy {
    background-position: 100% 100%, center;
    border-bottom: 0;
    height: 620px;
    padding-top: 50px;
  }
}

.section-advocacy .content-container {
  padding: 42px 32px;
}

@media (min-width: 480px) {
  .section-advocacy .content-container {
    max-width: 90%;
  }
}

@media (min-width: 775px) {
  .section-advocacy .content-container {
    max-width: 70%;
    padding: 48px 16px 16px 48px;
  }
}

@media (min-width: 900px) {
  .section-advocacy .content-container {
    max-width: 540px;
  }
}

@media (min-width: 1080px) {
  .section-advocacy .content-container {
    padding: 16px;
  }
}

.section-advocacy .content-container p {
  text-align: left;
  z-index: 3;
}

.section-advocacy .content-container a {
  color: #63883d;
  border: none;
}

.section-advocacy .content-container .star-divider {
  z-index: 1;
  width: 110%;
  margin-bottom: 32px;
  display: none;
  left: -10%;
}

@media (min-width: 775px) {
  .section-advocacy .content-container .star-divider {
    display: inline;
  }
}

.section-advocacy .content-container .sbf-button {
  border-radius: var(--sbf-border-radius-4);
  color: #fff;
  font-family: var(--sbf-font-family-sans);
  font-weight: var(--sbf-font-weight-700);
  border-color: #cd2617;
  border-width: var(--sbf-border-width-2);
  cursor: pointer;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: -.005em;
  text-align: center;
  background-color: #cd2617;
  border-style: solid;
  margin-bottom: 10px;
  text-decoration: none;
  transition: background 50ms linear, border-color 50ms linear, color 50ms linear, opacity 50ms linear;
  display: inline-block;
}

.section-advocacy .content-container .sbf-button:hover, .section-advocacy .content-container .sbf-button:focus {
  color: #f5f5f5;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #9f1e12;
  border-color: #9f1e12;
}

.section-advocacy .content-container .sbf-button:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.section-advocacy .content-container .sbf-button.disabled, .section-advocacy .content-container .sbf-button[disabled] {
  opacity: var(--sbf-opacity-50);
  pointer-events: none;
}

.section-advocacy .content-container .sbf-button.disabled:hover, .section-advocacy .content-container .sbf-button.disabled:focus, .section-advocacy .content-container .sbf-button[disabled]:hover, .section-advocacy .content-container .sbf-button[disabled]:focus {
  color: #fff;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #cd2617;
  border-color: #cd2617;
}

.section-advocacy .content-container .sbf-button {
  font-size: var(--sbf-font-size-18);
  text-align: center;
  z-index: 3;
  min-width: 200px;
  max-width: 80%;
  padding: 16px;
  line-height: 1.15em;
}

@media (min-width: 480px) {
  .section-advocacy .content-container .sbf-button {
    display: inline-block;
  }
}

.section-advocacy .img {
  display: none;
}

@media (min-width: 1080px) {
  .section-advocacy .img {
    display: block;
  }
}

.section-advocacy img.capital {
  z-index: 2;
  opacity: .7;
  width: 645px;
  height: 360px;
  display: block;
  position: absolute;
  bottom: 0;
  right: -330px;
}

@media (min-width: 775px) {
  .section-advocacy img.capital {
    opacity: 1;
    width: auto;
    height: 70%;
    right: -30%;
  }
}

@media (min-width: 900px) {
  .section-advocacy img.capital {
    width: 860px;
    height: 480px;
  }
}

@media (min-width: 1080px) {
  .section-advocacy img.capital {
    right: -120px;
  }
}

.section-your-business {
  text-align: center;
}

@media (min-width: 775px) {
  .section-your-business {
    text-align: left;
  }
}

.section-your-business .sbf-ce-section {
  outline: 1px dotted #353535 !important;
}

.section-your-business .img {
  background-image: url("/fa/min/assets/section-your-business-bg-aea85ece.jpg");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 315px;
}

@media (min-width: 775px) {
  .section-your-business .img {
    max-width: 50%;
  }
}

.section-your-business .content-container {
  color: #353535;
  background-color: #fff;
  padding: 42px 30px;
}

@media (min-width: 775px) {
  .section-your-business .content-container {
    max-width: 50%;
    padding: 80px 48px 112px;
  }
}

@media (min-width: 1080px) {
  .section-your-business .content-container * {
    max-width: 490px;
  }
}

.section-your-business .content-container .sbf-button {
  border-radius: var(--sbf-border-radius-4);
  color: #fff;
  font-family: var(--sbf-font-family-sans);
  font-weight: var(--sbf-font-weight-700);
  border-color: #005595;
  border-width: var(--sbf-border-width-2);
  cursor: pointer;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: -.005em;
  text-align: center;
  background-color: #005595;
  border-style: solid;
  margin-bottom: 10px;
  text-decoration: none;
  transition: background 50ms linear, border-color 50ms linear, color 50ms linear, opacity 50ms linear;
  display: inline-block;
}

.section-your-business .content-container .sbf-button:hover, .section-your-business .content-container .sbf-button:focus {
  color: #f5f5f5;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #003862;
  border-color: #003862;
}

.section-your-business .content-container .sbf-button:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.section-your-business .content-container .sbf-button.disabled, .section-your-business .content-container .sbf-button[disabled] {
  opacity: var(--sbf-opacity-50);
  pointer-events: none;
}

.section-your-business .content-container .sbf-button.disabled:hover, .section-your-business .content-container .sbf-button.disabled:focus, .section-your-business .content-container .sbf-button[disabled]:hover, .section-your-business .content-container .sbf-button[disabled]:focus {
  color: #fff;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #005595;
  border-color: #005595;
}

.section-your-business .content-container .sbf-button {
  font-size: var(--sbf-font-size-18);
  text-align: center;
  min-width: 200px;
  max-width: 80%;
  margin: 0 auto;
  padding: 16px;
  line-height: 1.15em;
  display: block;
}

@media (min-width: 480px) {
  .section-your-business .content-container .sbf-button {
    max-width: 250px;
  }
}

@media (min-width: 775px) {
  .section-your-business .content-container .sbf-button {
    max-width: none;
    display: inline-block;
  }
}

.section-about-sbf {
  text-align: center;
  color: #fff;
  background-color: #100310;
  background-image: url("/fa/min/assets/section-about-sbf-bg-d12034a7.jpg");
  background-position: -155px bottom;
  background-repeat: no-repeat;
  background-size: 565px;
  padding: 0 16px 449px;
}

@media (min-width: 480px) {
  .section-about-sbf {
    background-position: bottom;
  }
}

@media (min-width: 775px) {
  .section-about-sbf {
    text-align: left;
    background-position: 120px bottom;
    background-size: cover;
    justify-content: flex-start;
    padding: 32px 0 48px;
  }
}

@media (min-width: 1080px) {
  .section-about-sbf {
    background-image: none;
    justify-content: center;
    height: 705px;
  }
}

.section-about-sbf .content-container {
  z-index: 2;
  padding: 42px 12px;
}

@media (min-width: 775px) {
  .section-about-sbf .content-container {
    width: 50%;
    padding: 42px 40px;
  }
}

@media (min-width: 900px) {
  .section-about-sbf .content-container {
    padding: 42px 12px;
  }
}

.section-about-sbf .content-container .sbf-button {
  border-radius: var(--sbf-border-radius-4);
  color: #353535;
  font-family: var(--sbf-font-family-sans);
  font-weight: var(--sbf-font-weight-700);
  border-color: #93c45b;
  border-width: var(--sbf-border-width-2);
  cursor: pointer;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: -.005em;
  text-align: center;
  background-color: #93c45b;
  border-style: solid;
  margin-bottom: 10px;
  text-decoration: none;
  transition: background 50ms linear, border-color 50ms linear, color 50ms linear, opacity 50ms linear;
  display: inline-block;
}

.section-about-sbf .content-container .sbf-button:hover, .section-about-sbf .content-container .sbf-button:focus {
  color: #353535;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #7aae3e;
  border-color: #7aae3e;
}

.section-about-sbf .content-container .sbf-button:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.section-about-sbf .content-container .sbf-button.disabled, .section-about-sbf .content-container .sbf-button[disabled] {
  opacity: var(--sbf-opacity-50);
  pointer-events: none;
}

.section-about-sbf .content-container .sbf-button.disabled:hover, .section-about-sbf .content-container .sbf-button.disabled:focus, .section-about-sbf .content-container .sbf-button[disabled]:hover, .section-about-sbf .content-container .sbf-button[disabled]:focus {
  color: #353535;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #93c45b;
  border-color: #93c45b;
}

.section-about-sbf .content-container .sbf-button {
  font-size: var(--sbf-font-size-18);
  text-align: center;
  color: #353535;
  min-width: 200px;
  max-width: 80%;
  margin: 0 auto;
  padding: 16px;
  line-height: 1.15em;
  display: block;
}

.section-about-sbf .content-container .sbf-button:hover, .section-about-sbf .content-container .sbf-button:focus {
  color: #353535;
}

@media (min-width: 480px) {
  .section-about-sbf .content-container .sbf-button {
    max-width: 250px;
  }
}

@media (min-width: 775px) {
  .section-about-sbf .content-container .sbf-button {
    max-width: none;
    display: inline-block;
  }
}

.section-about-sbf img {
  display: none;
}

@media (min-width: 1080px) {
  .section-about-sbf img {
    z-index: 1;
    height: 734px;
    display: block;
    position: absolute;
    top: -29px;
    right: 0;
  }
}
