:root {

  --panel-bg: #fafbfc;
  --brand-black: #001e28;
  --brand-red: #dd0000;
  --hero-blue: #006b8e;
  --yellow-safety: #ffc800;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 16px; /*base*/
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  color: var(--brand-black);
  background: #ffffff;
  overflow-x: clip;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--brand-red);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
