.secondary-nav {
  color: #005595;
  text-align: center;
  background-color: #ebf3f9;
  border-bottom: 1px solid #cde5ff;
  display: none;
}

@media (min-width: 760px) {
  .secondary-nav {
    display: block;
  }
}

.secondary-nav nav {
  justify-content: center;
  display: flex;
}

.secondary-nav ul {
  margin: 0;
  list-style: none;
  display: flex;
}

.secondary-nav li:before {
  content: "·";
  font-weight: 700;
}

.secondary-nav li:first-child:before {
  content: "";
}

.secondary-nav a {
  color: inherit;
  border-bottom: none;
  padding: 14px 5px 11px;
  font-family: Zilla Slab, Georgia, serif;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  text-decoration: underline;
  display: inline-block;
}

.secondary-nav a:hover {
  color: #001b2f;
}

header {
  margin-bottom: 0;
}

.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;
}

.inline-input input, .inline-input textarea, .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;
}

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

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

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

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

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

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

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

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

.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;
}

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

.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);
}

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

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

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

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

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

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

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

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

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

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

.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;
}

.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;
}

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

.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;
}

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

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

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

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

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

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

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

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

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

.inline-input {
  margin: 0;
}

.inline-input + label {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.inline-input.empty input[required] + label:after, .inline-input.empty select[required] + label:after, .inline-input.empty textarea[required] + label:after {
  content: " *";
  color: #cd2617;
}

.inline-input .email-checker {
  background-color: #0000;
}

section a {
  color: #005595;
}

section a:hover, section a:active {
  color: #002949;
}

section a {
  font-weight: 600;
  text-decoration: underline;
}

section p {
  text-wrap: balance;
}

.sb-hr {
  color: #6e6e6e;
  margin: 23px auto;
}

@media (min-width: 760px) {
  .sb-hr {
    max-width: 465px;
  }
}

.section-container {
  width: auto;
  max-width: 880px;
  margin: 0 auto;
}

.flex-container {
  justify-content: center;
  display: flex;
}

@media (min-width: 720px) {
  .flex-container {
    justify-content: flex-end;
  }
}

.section-hero {
  background: #d0d8d2 url("/fa/min/assets/section-hero-bg-mobile-5b79c340.jpg") 0 100% no-repeat;
  min-height: 900px;
  padding: 45px 0;
}

@media (min-width: 720px) {
  .section-hero {
    background-position: bottom;
    min-height: 580px;
  }
}

@media (min-width: 900px) {
  .section-hero {
    background: #d0d8d2 url("/fa/min/assets/section-hero-bg-43e192a5.jpg") bottom no-repeat;
  }
}

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

.section-hero .section-container {
  padding: 0;
}

.section-hero .content-container {
  text-wrap: balance;
  text-align: center;
  max-width: 65ch;
  padding: 0 10px;
}

.section-hero ul {
  text-align: center;
  margin: 16px 0;
  font-size: 16px;
}

.section-hero ul li {
  font-family: Zilla Slab, Georgia, serif;
  display: inline-block;
}

.section-hero ul li:first-child {
  line-height: 20.125px;
  display: block;
}

@media (min-width: 620px) {
  .section-hero ul li:first-child {
    display: inline-block;
  }
}

.section-hero ul li:first-child:after {
  content: "▸";
  margin: 0 0 0 12px;
  display: inline-block;
}

@media (min-width: 800px) {
  .section-hero ul li:first-child:after {
    margin: 0 12px;
  }
}

.section-hero ul li:nth-child(2):after {
  content: "·";
  margin: 0 12px;
  font-weight: 700;
  display: inline-block;
}

.section-hero h1 {
  letter-spacing: -.025em;
  text-align: center;
  margin: 16px 0;
  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: 720px) {
  .section-hero h1 {
    letter-spacing: -.035em;
    margin: 16px 0 22px;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: 3.125em;
    font-weight: 700;
    line-height: 1.1;
  }
}

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

.section-hero p {
  letter-spacing: .005em;
  margin: 0 0 12px;
  font-family: Zilla Slab, Georgia, serif;
  font-size: 1.125em;
  line-height: 1.33333;
}

@media (min-width: 480px) {
  .section-hero p {
    text-align: center;
  }
}

.section-closer-look {
  background-color: #0b0b0b;
}

.section-closer-look > div:not(.section-container) {
  height: 0;
}

@media (min-width: 768px) {
  .section-closer-look {
    padding: 0 0 40px;
  }
}

.section-closer-look .section-container {
  text-align: center;
  padding: 0 20px;
}

.section-closer-look a {
  color: #f5f5f5;
}

.section-closer-look a:hover, .section-closer-look a:active {
  color: #cfcfcf;
}

@media (min-width: 768px) {
  .section-closer-look .section-closer-look__microscope-image {
    margin: 0 0 -160px;
  }
}

.section-closer-look .section-closer-look__microscope-image img {
  max-width: 100%;
  height: 155px;
  margin: -19px auto 12px;
}

@media (min-width: 620px) {
  .section-closer-look .section-closer-look__microscope-image img {
    margin: -23px auto 12px;
  }
}

@media (min-width: 720px) {
  .section-closer-look .section-closer-look__microscope-image img {
    margin: -19px auto 12px;
  }
}

@media (min-width: 768px) {
  .section-closer-look .section-closer-look__microscope-image img {
    height: 310px;
    margin: -38px 0 13px -70px;
  }
}

.section-closer-look h2 {
  letter-spacing: .01em;
  color: #fff;
  letter-spacing: 3.7px;
  text-transform: uppercase;
  border-top: 1px solid #353535;
  border-bottom: 1px solid #353535;
  margin: 0 0 20px;
  padding: 20px 0;
  font-family: Zilla Slab, Georgia, serif;
  font-size: 1em;
  line-height: 1.375;
}

@media (min-width: 768px) {
  .section-closer-look h2 {
    letter-spacing: 4.2px;
    border: none;
    margin: 0 0 90px;
  }
}

.section-closer-look h2 span {
  display: block;
}

@media (min-width: 768px) {
  .section-closer-look h2 span {
    border-top: 1px solid #353535;
    border-bottom: 1px solid #353535;
    margin: 0 0 0 85px;
    padding: 12px 0;
    display: inline-block;
  }

  .section-closer-look h2 span:first-child {
    margin: 0 85px 0 0;
  }
}

.section-closer-look h2 em {
  text-transform: none;
  letter-spacing: normal;
}

@media (min-width: 768px) {
  .section-closer-look .section-closer-look__content {
    display: flex;
  }
}

.section-closer-look ul {
  display: none;
}

@media (min-width: 768px) {
  .section-closer-look ul {
    letter-spacing: normal;
    text-align: left;
    width: 33%;
    padding: 0 26px;
    font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
    font-size: .875em;
    line-height: 23px;
    display: inline-block;
  }
}

.section-closer-look ul a {
  color: #fff;
  font-weight: normal;
}

.section-closer-look ul a.selected {
  color: #f3d36e;
}

.section-closer-look select {
  max-width: 290px;
}

@media (min-width: 768px) {
  .section-closer-look select {
    display: none;
  }
}

.section-closer-look .section-closer-look__cancer-images {
  background: #fefbf2 url("/fa/min/assets/slides-3f9eccb5.jpg") no-repeat;
  width: 220px;
  height: 220px;
  margin: 30px auto;
  padding: 0;
}

@media (min-width: 768px) {
  .section-closer-look .section-closer-look__cancer-images {
    width: 33%;
    max-width: 220px;
    margin: 30px auto 30px 14px;
    display: inline-block;
  }
}

.section-closer-look .section-closer-look__cancer-images img {
  width: 220px;
  height: 220px;
}

.section-closer-look .cancer-descriptions {
  padding: 0 0 40px;
}

@media (min-width: 600px) {
  .section-closer-look .cancer-descriptions {
    width: 60%;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .section-closer-look .cancer-descriptions {
    text-align: left;
    border-top: 1px solid #353535;
    width: 33%;
    padding: 10px 0 40px 16px;
    display: inline-block;
  }
}

.section-closer-look .cancer-descriptions p {
  letter-spacing: normal;
  color: #ccc;
  text-align: left;
  margin: 0;
  padding: 0;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: .875em;
  line-height: 23px;
}

.section-closer-look .cancer-descriptions p.hide {
  display: none;
}

.section-closer-look .cancer-descriptions .sbf-ce-section p.hide {
  display: block;
}

.section-sign-me-up {
  background: #d0d8d2 url("/fa/min/assets/section-sign-me-up-bg-mobile-64fd218c.jpg") -100px 100% no-repeat;
  padding: 50px 0;
}

@media (min-width: 960px) {
  .section-sign-me-up {
    background: #d0d8d2 url("/fa/min/assets/section-sign-me-up-bg-b74f300f.jpg") bottom no-repeat;
  }
}

.section-sign-me-up .sbf-ce-section {
  outline: 1px dotted #353535 !important;
}

.section-sign-me-up .section-container {
  max-width: 70ch;
  padding: 0 20px;
}

.section-sign-me-up p {
  letter-spacing: .005em;
  text-align: center;
  margin: 0 0 16px;
  font-family: Zilla Slab, Georgia, serif;
  font-size: 1.125em;
  line-height: 1.33333;
}

@media (min-width: 768px) {
  .section-sign-me-up p {
    letter-spacing: -.0015em;
    max-width: 65ch;
    margin: 0 auto 16px;
    font-family: Zilla Slab, Georgia, serif;
    font-size: 1.5em;
    line-height: 1.25;
  }
}

.section-sign-me-up .fine-print {
  letter-spacing: normal;
  text-align: left;
  margin: 0;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1.375;
}

.section-sign-me-up form {
  margin: 12px 0 0;
}

.section-sign-me-up form .full-width {
  display: block;
}

.section-sign-me-up form .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-sign-me-up form .sbf-button:hover, .section-sign-me-up form .sbf-button:focus {
  color: #f5f5f5;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #003862;
  border-color: #003862;
}

.section-sign-me-up form .sbf-button:focus {
  outline: solid var(--sbf-border-width-2) var(--sbf-state-focus);
  outline-offset: var(--sbf-border-width-2);
}

.section-sign-me-up form .sbf-button.disabled, .section-sign-me-up form .sbf-button[disabled] {
  opacity: var(--sbf-opacity-50);
  pointer-events: none;
}

.section-sign-me-up form .sbf-button.disabled:hover, .section-sign-me-up form .sbf-button.disabled:focus, .section-sign-me-up form .sbf-button[disabled]:hover, .section-sign-me-up form .sbf-button[disabled]:focus {
  color: #fff;
  border-bottom-width: var(--sbf-border-width-2);
  background-color: #005595;
  border-color: #005595;
}

.section-sign-me-up form .sbf-button {
  font-size: var(--sbf-font-size-18);
  min-width: 200px;
  margin: 10px 0 16px;
  padding: 16px;
  line-height: 1.15em;
  display: block;
}

.section-sign-me-up .form-required {
  letter-spacing: normal;
  font-family: "Source Sans 3", Helvetica Neue, Arial, Helvetica, sans-serif;
  font-size: 1em;
  line-height: 1.375;
}

.section-sign-me-up .form-required:after {
  content: " *";
  color: #cd2617;
}

.section-sign-me-up .section-sign-me-up__thanks {
  letter-spacing: .01em;
  text-align: center;
  max-width: none;
  margin: -8px 0 -24px;
  font-family: Zilla Slab, Georgia, serif;
  font-size: 1em;
  font-style: italic;
  font-weight: bold;
  line-height: 23px;
  display: none;
}

@media (min-width: 768px) {
  .section-sign-me-up .section-sign-me-up__thanks {
    letter-spacing: .005em;
    margin: -8px 0 -24px;
    font-family: Zilla Slab, Georgia, serif;
    font-size: 1.125em;
    line-height: 26px;
  }
}
