@charset "UTF-8";
:root {
  --bs-primary: #005DAA;
  --bs-secondary: #133A61;
  --bs-success: #77BC1F;
  --bs-info: #007CBA;
  --bs-warning: #ffc107;
  --bs-danger: #CC0000;
  --bs-light: #e9eaeb;
  --bs-dark: #555559;
  --bs-primary-rgb: 0, 93, 170;
  --bs-secondary-rgb: 19, 58, 97;
  --bs-success-rgb: 119, 188, 31;
  --bs-info-rgb: 0, 124, 186;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 204, 0, 0;
  --bs-light-rgb: 233, 234, 235;
  --bs-dark-rgb: 85, 85, 89;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 85, 85, 89;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: "Roboto", sans-serif;
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #555559;
  --bs-body-bg: #fff;
}

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

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

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  color: #555559;
}

h1 {
  font-size: calc(1.3324rem + 0.9888vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.074rem;
  }
}

h2 {
  font-size: calc(1.2978rem + 0.5736vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 1.728rem;
  }
}

h3 {
  font-size: calc(1.269rem + 0.228vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.44rem;
  }
}

h4 {
  font-size: 1.2rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  padding-left: 2rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

small {
  font-size: 0.875em;
}

a {
  color: #005DAA;
  text-decoration: underline;
}
a:hover {
  color: #004a88;
}

button:focus:not(:focus-visible) {
  outline: 0;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #555559;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #555559;
}
.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 93, 170, 0.25);
}
.btn:disabled {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #fff;
  background-color: #005DAA;
  border-color: #005DAA;
}
.btn-primary:hover {
  color: #fff;
  background-color: #004f91;
  border-color: #004a88;
}
.btn-primary:focus {
  color: #fff;
  background-color: #004f91;
  border-color: #004a88;
  box-shadow: 0 0 0 0.25rem rgba(38, 117, 183, 0.5);
}
.btn-primary:active {
  color: #fff;
  background-color: #004a88;
  border-color: #004680;
}
.btn-primary:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(38, 117, 183, 0.5);
}
.btn-primary:disabled {
  color: #fff;
  background-color: #005DAA;
  border-color: #005DAA;
}

.btn-secondary {
  color: #fff;
  background-color: #133A61;
  border-color: #133A61;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #103152;
  border-color: #0f2e4e;
}
.btn-secondary:focus {
  color: #fff;
  background-color: #103152;
  border-color: #0f2e4e;
  box-shadow: 0 0 0 0.25rem rgba(54, 88, 121, 0.5);
}
.btn-secondary:active {
  color: #fff;
  background-color: #0f2e4e;
  border-color: #0e2c49;
}
.btn-secondary:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(54, 88, 121, 0.5);
}
.btn-secondary:disabled {
  color: #fff;
  background-color: #133A61;
  border-color: #133A61;
}

.collapse:not(.show) {
  display: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #005DAA;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: #004a88;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  padding: 0;
  margin-bottom: 0;
  border-bottom: 1px solid #e9eaeb;
  border-top: 3px solid #005DAA;
}
.site-header .navbar-collapse {
  flex-grow: 0;
  margin: 0 0 0 auto;
}
.site-header .navbar-collapse .nav-link {
  color: #133A61;
}
.skin--dark .site-header {
  background-color: #005DAA;
  border: none;
}
.skin--dark .site-header .navbar-collapse .nav-link {
  color: white;
}

.site-footer {
  background-color: white;
  border-bottom: 3px solid #005DAA;
  padding: 0.5rem 1rem;
}
.site-footer__copyright {
  display: flex;
  justify-content: center;
  text-align: center;
  color: #555559;
}
.skin--dark .site-footer {
  background-color: #005DAA;
  border: none;
}
.skin--dark .site-footer .site-footer__copyright {
  color: white;
}
