@font-face {
  font-family: "MyriadPro";
  src: url("../fonts/MyriadPro-Regular.woff2") format("woff2"),
       url("../fonts/MyriadPro-Regular.woff") format("woff"),
       url("../fonts/MyriadPro-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "MyriadPro-SemiBold";
  src: url("../fonts/MyriadPro-Semibold.woff2") format("woff2"),
       url("../fonts/MyriadPro-Semibold.woff") format("woff"),
       url("../fonts/MyriadPro-Semibold.ttf") format("truetype");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "MyriadPro-Bold";
  src: url("../fonts/MyriadPro-Bold.woff2") format("woff2"),
       url("../fonts/MyriadPro-Bold.woff") format("woff"),
       url("../fonts/MyriadPro-Bold.ttf") format("truetype");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "MyriadPro-Italic";
  src: url("../fonts/MyriadPro-It.woff2") format("woff2"),
       url("../fonts/MyriadPro-It.woff") format("woff"),
       url("../fonts/MyriadPro-It.ttf") format("truetype");
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "MyriadPro-Light";
  src: url("../fonts/MyriadPro-Light.woff2") format("woff2"),
       url("../fonts/MyriadPro-Light.woff") format("woff"),
       url("../fonts/MyriadPro-Light.ttf") format("truetype");
  font-weight: 300; font-style: normal; font-display: swap;
}

@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* =====================================================
   PREFERS-REDUCED-MOTION — WCAG 2.1 AA SC 2.3.3
   Suppresses all animation/transition for users who
   have enabled "Reduce Motion" at the OS level.
====================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }

    /* Confetti pseudo-elements */
    .confetti-button.animate::before,
    .confetti-button.animate::after {
        display: none !important;
        animation: none !important;
    }

    /* Badge spin/grow/jiggle animations */
    .badge-wrap [id^="Path_"],
    .badge-1 [class*="score"],
    .badge-3 [class*="stage"],
    .badge-4 [class*="stage"] {
        animation: none !important;
        transform: none !important;
    }

    /* Pledge button scroll-triggered spin */
    .pledgebuttonspinner {
        animation: none !important;
    }
}

/* === SKIP LINK (WCAG 2.4.1) === */
.skip-link {
    position:absolute;
    top:-100%; left:50%;
    transform:translateX(-50%);
    background:#BF5602;
    color:#fff;
    padding:.75rem 1.5rem;
    border-radius:0 0 .5rem .5rem;
    font-weight:700;
    z-index:9999;
    text-decoration:none;
    transition:top .2s;
    text-align: center;
    line-height: 1.25rem;}

.skip-link:focus {
    top: -4px;
    outline: 2px solid #ffffff;
    outline-offset: 0px;
    }

.skip-link:hover {
    background: #9FCC3B;
    top: -4px;
    outline: 2px solid #ffffff;
    outline-offset: 0px;
    color: #002b4e;
    }

html body *:focus-visible {
   /* outline: 2px dotted #fff;
    outline-offset: 0px;
    border-radius: 12px;*/
    }

@media (prefers-reduced-motion: no-preference) {
html { scroll-behavior: smooth; }
}


* {
    margin: 0;
    padding: 0;
    font-kerning: none;
    }

body {
    font-family: "MyriadPro";
    text-align: left;
    overflow: scroll;
    font-weight: 400;
    line-height: 1.6;
    font-size: 1rem;
    color: #00203a;
    background-color: #fff;
    }

html body h1,
html body h2,
html body h3,
html body h4,
html body h5,
html body h6 {
    font-family: "MyriadPro-Bold";
    margin: 0 0 1.25rem;
    color: #003865;
    text-align: center;
    }

html body h1 {
    font-size: 3rem;
    line-height: 3rem;
    }

html body h2 {
    font-size: 1.25rem;
    line-height: 1.25rem;
    color: rgb(0, 88, 164);
    }

p {
    font-size: 1rem;
    font-family: "MyriadPro";
    }

a {
    text-decoration: none;
    background-color: transparent;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    }

sub, sup {
    font-size: 60%;
    }

.chart-bar-pct sup {
  top: -.25em;
}

@media screen and (max-width: 500px) {
    html body h1 {
        font-size: 2rem;
        line-height: 2rem;
        }
    }
