/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Generic base elements.
 */

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

html {
  font-family: "metropolis", sans-serif;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  line-height: 1.6875rem;
}

body {
  margin: 0;
  color: #313637;
  background-color: #f7f9fa;
  background-image: none;
  background-position: top left /* LTR */
}

body.js-fixed {
    position: fixed;
    overflow: hidden;
    width: 100%;
  }

[dir="rtl"] body {
  background-position: top right;
}

a {
  color: #0d77b5
}

a:hover {
    color: #2494db;
  }

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

audio {
  display: block;
  max-width: 100%;
}

h1 {
  margin-top: 1.125rem;
  margin-bottom: 1.125rem;
  letter-spacing: -0.01em;
  color: #0d1214;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6875rem
}

@media (min-width: 43.75rem) {

h1 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
    font-size: 3.75rem;
    line-height: 4.5rem
}
  }

h2 {
  margin-top: 1.125rem;
  margin-bottom: 1.125rem;
  letter-spacing: -0.01em;
  color: #0d1214;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6875rem
}

@media (min-width: 43.75rem) {

h2 {
    margin-top: 2.25rem;
    margin-bottom: 2.25rem;
    font-size: 2.25rem;
    line-height: 3.375rem
}
  }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "metropolis", sans-serif;
}

[dir="ltr"] ul {
  margin-left: 1.5em;
}

[dir="rtl"] ul {
  margin-right: 1.5em;
}

[dir="ltr"] ul {
  margin-right: 0;
}

[dir="rtl"] ul {
  margin-left: 0;
}

[dir="ltr"] ul {
  padding-left: 0;
}

[dir="rtl"] ul {
  padding-right: 0;
}

ul {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  list-style-type: disc;
  list-style-image: none;
}

[dir="ltr"] .overlay {
  left: 0;
}

[dir="rtl"] .overlay {
  right: 0;
}

.overlay {
  position: fixed;
  top: 0;
  display: none;
  width: 100%;
  height: 100vh;
  opacity: 0.2;
  background: #0d77b5;
}

.js-overlay-active .overlay {
  display: block;
}
