@charset "UTF-8";
html {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  height: auto;
  max-width: 100%;
}

img[src$=".svg"] {
  width: 100%;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

input[type=text], input[type=email], input[type=submit], textarea {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/*==============================================================*/
/*==============================================================*/
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:hover, .screen-reader-text:active, .screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.grid.flex-end {
  justify-content: flex-end;
}
.grid.flex-start {
  justify-content: flex-start;
}
.grid.flex-center {
  justify-content: center;
}
.grid .w-50 {
  width: 100%;
}
@media (min-width: 900px) {
  .grid .w-50 {
    width: 50%;
  }
}
.grid .w-33 {
  width: 100%;
}
@media (min-width: 900px) {
  .grid .w-33 {
    width: 33.3333333%;
  }
}
.grid .w-25 {
  width: 100%;
}
@media (min-width: 768px) {
  .grid .w-25 {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .grid .w-25 {
    width: 25%;
  }
}

.mobile {
  display: block;
}
@media (min-width: 900px) {
  .mobile {
    display: none;
  }
}

.desktop {
  display: none;
}
@media (min-width: 900px) {
  .desktop {
    display: block;
  }
}

.wrap900 {
  max-width: 900px;
  width: 94%;
  margin: 0 auto;
}

.wrap1000 {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
}

.wrap1100 {
  max-width: 1100px;
  width: 94%;
  margin: 0 auto;
}

.wrap1200 {
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
}

.wrap1400 {
  max-width: 1400px;
  width: 94%;
  margin: 0 auto;
}

@media (max-width: 899px) {
  .mobile-full {
    width: 100% !important;
  }
}

.text-center {
  text-align: center;
}

body, html {
  font-size: 16px;
  background: #ffffff;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  overflow-x: hidden;
  color: #3a4856;
}
@media (min-width: 900px) {
  body, html {
    font-size: 18px;
    scroll-behavior: smooth;
  }
}

::selection {
  background: #004c76;
  color: #ffffff;
}

::-moz-selection {
  background: #004c76;
  color: #ffffff;
}

.button {
  position: relative;
  background: #ffffff;
  color: #3b80ae;
  border: 1px solid #3b80ae;
  display: inline-block;
  padding: 12px 20px;
  text-align: center;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  border-radius: 4px;
}
.button:hover {
  color: #004c76;
  border-color: #004c76;
}

.site-main {
  transition: ease-out 0.3s;
}

.page-base {
  margin: 60px auto;
}
@media (min-width: 900px) {
  .page-base {
    margin: 90px auto;
  }
}

.base p {
  line-height: 1.6;
  margin-bottom: 30px;
}
.base p.large {
  font-size: 16px;
}
@media (min-width: 600px) {
  .base p.large {
    font-size: 18px;
  }
}
@media (min-width: 900px) {
  .base p.large {
    font-size: 20px;
  }
}
.base em {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.base strong {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.base strong em,
.base em strong {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.base h2 {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  color: #3b80ae;
  font-size: 28px;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .base h2 {
    font-size: 32px;
  }
}
@media (min-width: 900px) {
  .base h2 {
    font-size: 35px;
  }
}
.base h3 {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  color: #004c76;
  font-size: 20px;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .base h3 {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .base h3 {
    font-size: 30px;
  }
}
.base a:not(.button) {
  color: #004c76;
  display: inline-block;
  border-bottom: 1px solid #3b80ae;
}
.base a:not(.button):hover {
  color: #3b80ae;
}
.base ul {
  margin: 0 0 30px 20px;
  list-style: none;
}
@media (min-width: 900px) {
  .base ul {
    margin: 0 0 40px 20px;
  }
}
.base ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 12px;
  line-height: 1.5;
}
.base ul li::before {
  position: absolute;
  top: -1px;
  left: 8px;
  text-indent: -15px;
  content: "•";
  color: #3b80ae;
}
.base ul li ul {
  margin: 12px 0 30px 0;
}
.base ol {
  list-style: none;
  counter-reset: a;
  margin: 0 0 30px 20px;
}
@media (min-width: 900px) {
  .base ol {
    margin: 0 0 30px 30px;
  }
}
.base ol li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  line-height: 1.5;
}
.base ol li::before {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  text-indent: -35px;
  counter-increment: a;
  content: counter(a) ".";
  color: #3b80ae;
  top: 0px;
}
.base .alignnone, .base .aligncenter {
  margin: 0 auto 30px;
}
.base .alignright {
  margin: 0 auto 30px;
}
@media (min-width: 900px) {
  .base .alignright {
    margin: 0 0 30px 30px;
    float: right;
  }
}
.base .alignleft {
  margin: 0 auto 30px;
}
@media (min-width: 900px) {
  .base .alignleft {
    float: left;
    margin: 0 30px 30px 0;
  }
}
.base .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  margin: 30px auto;
}
.base .embed-container iframe, .base .embed-container object, .base .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.base .pdfjs-iframe {
  margin-top: 30px;
}

.site-header {
  transition: ease-out 0.3s;
}
.site-header .grid {
  position: relative;
  padding: 40px 0;
  align-items: center;
  border-bottom: 1px solid #3b80ae;
}
.site-header .site-logo {
  display: block;
  width: 175px;
  background: #ffffff;
  margin-bottom: -78px;
  position: relative;
  z-index: 2;
  padding-right: 10px;
}
@media (min-width: 600px) {
  .site-header .site-logo {
    width: 200px;
    margin-bottom: -80px;
  }
}
@media (min-width: 900px) {
  .site-header .site-logo {
    width: 300px;
    margin-bottom: -88px;
  }
}
.site-header .menu-primary-container {
  position: fixed;
  z-index: 999;
  display: block;
  background: #004c76;
  width: 250px;
  top: 0;
  left: auto;
  right: 0;
  height: 100vh;
  visibility: hidden;
  transform: translateX(250px);
  transition: ease-out 0.3s;
}
@media (min-width: 600px) {
  .site-header .menu-primary-container {
    width: 300px;
    transform: translateX(300px);
  }
}
@media (min-width: 900px) {
  .site-header .menu-primary-container {
    width: 400px;
    transform: translateX(400px);
  }
}
.site-header .menu-primary-container .menu {
  padding-top: 30px;
}
.site-header .menu-primary-container .menu li {
  margin: 0px 20px;
  text-align: left;
}
.site-header .menu-primary-container .menu li a {
  font-size: 18px;
  line-height: 1.2;
  display: block;
  color: #ffffff;
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-style: normal;
  padding: 15px 0;
  border-bottom: 1px solid #3b80ae;
}
@media (min-width: 600px) {
  .site-header .menu-primary-container .menu li a {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  .site-header .menu-primary-container .menu li a {
    padding: 20px 0;
    font-size: 24px;
  }
}
.site-header .menu-primary-container .menu li a:hover {
  color: #3b80ae;
}

.site-footer {
  transition: ease-out 0.3s;
  background: #004c76;
  padding: 60px 0;
}
.site-footer .site-logo {
  display: block;
  width: 175px;
  margin: 0 auto 30px;
}
@media (min-width: 600px) {
  .site-footer .site-logo {
    width: 200px;
  }
}
@media (min-width: 900px) {
  .site-footer .site-logo {
    width: 300px;
  }
}
.site-footer p {
  color: #effbff;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media (min-width: 600px) {
  .site-footer p {
    font-size: 12px;
  }
}
.site-footer p a {
  display: inline-block;
  border-bottom: 1px solid #3b80ae;
}

.hero {
  margin: 70px auto;
}
@media (min-width: 600px) {
  .hero {
    margin: 90px auto;
  }
}
.hero .subheadline {
  font-size: 16px;
}
@media (min-width: 600px) {
  .hero .subheadline {
    font-size: 18px;
  }
}
@media (min-width: 900px) {
  .hero .subheadline {
    font-size: 20px;
  }
}

.day {
  text-align: center;
  border-bottom: 1px solid #ddeff7;
}
.day h4 {
  position: relative;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3b80ae;
  background: #ffffff;
  display: inline-block;
  margin: 0 auto;
  padding: 0 20px;
  bottom: -9px;
  font-size: 14px;
}
@media (min-width: 600px) {
  .day h4 {
    font-size: 16px;
  }
}
@media (min-width: 900px) {
  .day h4 {
    font-size: 18px;
  }
}

.articles .row {
  margin: 40px auto 90px;
  border-bottom: 1px solid #3b80ae;
}
.articles .row .cat {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .articles .row .cat {
    font-size: 14px;
  }
}
.articles .row .cat a {
  color: #3b80ae;
}
.articles .row .cat a:hover {
  color: #004c76;
}
.articles .row h2 {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .articles .row h2 {
    font-size: 24px;
  }
}
@media (min-width: 900px) {
  .articles .row h2 {
    font-size: 28px;
  }
}
.articles .row h2 a {
  color: #004c76;
}
.articles .row h2 a:hover {
  color: #3b80ae;
}
.articles .row .date {
  color: #3a4856;
  margin-bottom: 20px;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}
@media (min-width: 600px) {
  .articles .row .date {
    font-size: 16px;
  }
}
.articles .row .tags, .articles .row .words {
  line-height: 1.6;
  font-size: 14px;
}
@media (min-width: 600px) {
  .articles .row .tags, .articles .row .words {
    font-size: 16px;
  }
}
.articles .row .tags em, .articles .row .words em {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.articles .row .tags a, .articles .row .words a {
  color: #3b80ae;
}
.articles .row .tags a:hover, .articles .row .words a:hover {
  color: #004c76;
}
.articles .row .readmore {
  position: relative;
  bottom: -20px;
  background: #ffffff;
  color: #004c76;
  border: 1px solid #3b80ae;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  text-align: center;
  width: 135px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  border-radius: 4px;
}
.articles .row .readmore:hover {
  color: #3b80ae;
}

.glossary {
  margin: 60px auto;
}
.glossary .jumplinks {
  padding: 40px 10px 30px;
  position: relative;
  z-index: 2;
  background: #effbff;
  border: 1px solid #3b80ae;
  border-radius: 4px;
  margin-bottom: 60px;
}
@media (min-width: 600px) {
  .glossary .jumplinks {
    padding: 60px 60px 50px;
  }
}
.glossary .jumplinks h4 {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-style: normal;
  color: #004c76;
  font-size: 18px;
  letter-spacing: -0.03em;
  display: block;
  width: 100%;
  margin: 0 auto 20px;
  text-align: center;
}
@media (min-width: 1200px) {
  .glossary .jumplinks h4 {
    font-size: 20px;
  }
}
.glossary .jumplinks a {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #3b80ae;
  font-size: 14px;
  border: 1px solid #3b80ae;
  border-radius: 999em;
  padding: 4px 20px;
  margin: 10px 5px;
  display: inline-block;
  text-transform: uppercase;
}
.glossary .jumplinks a:hover {
  background: #3b80ae;
  color: #ffffff;
}
.glossary section:last-of-type .row:last-of-type {
  border: none;
}
.glossary .row {
  padding: 15px 0;
  border-bottom: 1px solid #ddeff7;
  margin-bottom: 30px;
}
.glossary strong {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #3b80ae;
}
.glossary .button {
  position: relative;
  margin: 0 auto;
}
.glossary .button .icon-left {
  display: inline-block;
  margin-left: 4px;
  vertical-align: bottom;
  transform: rotate(90deg);
}

.sources {
  margin: 60px auto 30px;
}
@media (min-width: 900px) {
  .sources {
    margin: 60px auto 90px;
  }
}
.sources .row {
  padding: 15px 0 45px;
  border-bottom: 1px solid #3b80ae;
  margin-bottom: 30px;
}
.sources .row:last-of-type {
  border: none;
}
.sources .citation {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 10px;
  color: #3b80ae;
}
@media (min-width: 600px) {
  .sources .citation {
    font-size: 14px;
  }
}
.sources h3 {
  font-size: 20px;
}
@media (min-width: 900px) {
  .sources h3 {
    font-size: 24px;
  }
}
.sources h3 a:not(.button) {
  border: none;
}
.sources h3 a:not(.button):hover {
  color: #3b80ae;
}
.sources .date {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 10px;
}
.sources .button {
  margin-top: 20px;
}
.sources .button .icon-file {
  margin-right: 5px;
}

.nav-link-container {
  margin: 30px auto 90px;
  position: relative;
}
.nav-link-container .wrap1200 {
  border-bottom: 1px solid #ddeff7;
}
.nav-link-container .page-numbers {
  display: flex;
  justify-content: center;
  margin-bottom: -10px;
}
.nav-link-container li {
  margin: 0 2px;
}
@media (min-width: 600px) {
  .nav-link-container li {
    margin: 0 5px;
  }
}
.nav-link-container li a {
  background: #ffffff;
  color: #3b80ae;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  transition: 0.2s ease-in-out;
}
.nav-link-container li a:hover {
  background: #effbff;
}
.nav-link-container li .page-numbers {
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid #3b80ae;
  padding: 12px 10px;
  background: #ffffff;
  color: #3b80ae;
  font-size: 12px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: none;
}
@media (min-width: 600px) {
  .nav-link-container li .page-numbers {
    display: flex;
  }
}
@media (min-width: 768px) {
  .nav-link-container li .page-numbers {
    font-size: 14px;
    padding: 12px 12px;
  }
}
.nav-link-container li .page-numbers.current {
  background: #ddeff7;
  color: #3a4856;
}
.nav-link-container li a.next, .nav-link-container li .prev {
  border-radius: 4px;
  border: 1px solid #3b80ae;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 10px;
  position: relative;
  z-index: 2;
  width: 140px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .nav-link-container li a.next, .nav-link-container li .prev {
    width: 155px;
    font-size: 14px;
  }
}

.search-bar {
  margin: 60px auto 90px;
}
.search-bar .wrap1200 {
  position: relative;
  z-index: 2;
}
.search-bar .searchform {
  padding: 40px 30px 20px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  background: #effbff;
  border: 1px solid #3b80ae;
  border-radius: 4px;
}
@media (min-width: 900px) {
  .search-bar .searchform {
    padding: 60px 10px 30px;
  }
}
.search-bar .searchform fieldset {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  .search-bar .searchform fieldset {
    width: 33.3333333%;
    padding: 0 20px;
  }
}
.search-bar .searchform fieldset:last-of-type {
  width: 100%;
  text-align: center;
}
.search-bar .searchform label {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-style: normal;
  color: #004c76;
  font-size: 16px;
  letter-spacing: -0.03em;
  display: block;
  width: 100%;
  margin: 0 auto 10px;
}
@media (min-width: 1200px) {
  .search-bar .searchform label {
    font-size: 18px;
  }
}
.search-bar .searchform input {
  appearance: none;
  -webkit-appearance: none;
  font-size: 14px;
  border: none;
  background: #ffffff;
  height: 45px;
  color: #004c76;
  padding: 8px 15px;
  width: 100%;
  border: 1px solid rgba(59, 128, 174, 0.5);
  border-radius: 4px;
}
@media (min-width: 600px) {
  .search-bar .searchform input {
    font-size: 16px;
  }
}
.search-bar .searchform input ::-webkit-input-placeholder {
  color: #004c76;
}
.search-bar .searchform input ::placeholder {
  color: #004c76;
}
.search-bar .custom-select {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(59, 128, 174, 0.5);
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
}
.search-bar .custom-select:after {
  display: none\9 ;
  pointer-events: none;
  content: "▾";
  font-size: 22px;
  position: absolute;
  top: 8px;
  right: 15px;
  color: #3b80ae;
}
.search-bar .custom-select select {
  font-size: 14px;
  border: none;
  background: #ffffff;
  height: 45px;
  color: #004c76;
  padding: 8px 15px;
  width: 100%;
  -webkit-appearance: none !important;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 600px) {
  .search-bar .custom-select select {
    font-size: 16px;
  }
}
@support ( -webkit-appearance: none ) or ( appearance: none ) or ( ( -moz-appearance: none ) and ( mask-type: alpha ) ) {
  .search-bar .custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
}
.search-bar .custom-select:after {
  display: block;
}
.search-bar .clear {
  display: flex;
  max-width: max-content;
  align-items: center;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #004c76;
  font-size: 14px;
}
.search-bar .clear:hover {
  color: #3b80ae;
}
.search-bar .clear img {
  width: 20px;
  margin-right: 3px;
}
.search-bar .button {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  background: #3b80ae;
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  min-width: 200px;
  letter-spacing: 0.1em;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -22px;
}
.search-bar .button:hover {
  background: #004c76;
}

.page-hero {
  margin: 70px auto;
}
@media (min-width: 600px) {
  .page-hero {
    margin: 90px auto;
  }
}
.page-hero h1 {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  letter-spacing: -0.05em;
  line-height: 1.2;
}
@media (min-width: 480px) {
  .page-hero h1 {
    font-size: 35px;
  }
}
@media (min-width: 600px) {
  .page-hero h1 {
    font-size: 40px;
  }
}
@media (min-width: 900px) {
  .page-hero h1 {
    font-size: 55px;
  }
}
.page-hero h1 span {
  display: block;
  text-align: center;
  color: #3b80ae;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 10px;
}
@media (min-width: 480px) {
  .page-hero h1 span {
    font-size: 14px;
  }
}
@media (min-width: 900px) {
  .page-hero h1 span {
    font-size: 16px;
  }
}
.page-hero .searched {
  margin: 30px auto 0;
  line-height: 1.6;
}
.page-hero .searched span {
  display: inline-block;
  margin: 0 10px 10px;
}
.page-hero .searched strong {
  color: #004c76;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.mobile-toggle-container {
  display: block;
  position: absolute;
  z-index: 2;
  padding: 12px 15px;
  text-align: center;
  cursor: pointer;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: block;
  background: #3b80ae;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
}
@media (min-width: 600px) {
  .mobile-toggle-container {
    padding: 15px 20px;
  }
}
.mobile-toggle-container:hover::before {
  color: #3b80ae;
  border-color: #3b80ae;
  transform: translate(4px, 4px);
}
.mobile-toggle-container::before {
  color: #3b80ae;
  transition: 0.2s ease-in-out;
  content: "MENU";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -4px;
  left: -4px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #effbff;
  border: 1px solid #3b80ae;
  border-radius: 4px;
}

.menu-open .site-main, .menu-open .site-header, .menu-open .site-footer {
  margin-left: -250px;
  padding-right: 250px;
}
@media (min-width: 600px) {
  .menu-open .site-main, .menu-open .site-header, .menu-open .site-footer {
    margin-left: -300px;
    padding-right: 300px;
  }
}
@media (min-width: 900px) {
  .menu-open .site-main, .menu-open .site-header, .menu-open .site-footer {
    margin-left: -400px;
    padding-right: 400px;
  }
}
.menu-open .mobile-toggle-container::before {
  content: "CLOSE";
  color: #3b80ae;
  border-color: #3b80ae;
  transform: translate(4px, 4px);
}
.menu-open .menu-primary-container {
  transform: translateX(0px);
  visibility: visible !important;
}

/*# sourceMappingURL=base.css.map */
