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

/* Skip link */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  padding: 0.75rem 1.5rem; background: #002B4E; color: #fff;
  font-weight: 700; border-radius: 0 0 0.5rem 0.5rem; text-decoration: none;
    }

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

/* Focus visible (WCAG 2.4.7) */
html body *:focus-visible {
    outline: 2px dotted #fff;
    outline-offset: 0px;
    border-radius: 4px;
    }

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

p {
    font-size: 1rem;
    }

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