* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-black: #000;
  --color-black-rgb: 0, 0, 0;
  --color-bg: #d0edf8;
  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --color-key1: #00a650;
  --color-key2: #ed1b23;
  --color-key3: #0051a3;
  --color-key4: #f5c500;
  --color-key5: #212e67;
  --color-key5-light: #455494;
  --color-navy: #213e94;
  --color-navy-rgb: 33, 62, 148;
  --leading-trim: calc((1em - 1lh) / 2);
}

:where(html) {
  font-feature-settings: "palt";
  min-width: 320px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: contain;
  font-size: 0.7320644217vw;
}

:where(button) {
  all: unset;
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

:where(button):focus-visible {
  outline: auto;
}

:where(button):focus {
  outline: none;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(a) {
  color: inherit;
  text-decoration: none;
}

:where(svg, video, canvas, iframe) {
  display: block;
}

:where(img) {
  vertical-align: top;
  width: 100%;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

@media only screen and (max-width: 767.8px) {
  :where(html) {
    font-size: 1.3333333333vw;
    overscroll-behavior: none;
  }
}