@font-face {
  font-display: swap;
  font-family: "Dosis";
  font-style: normal;
  font-weight: 200 800;
  src: url("../fonts/dosis-source-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-display: swap;
  font-family: "Dosis";
  font-style: normal;
  font-weight: 200 800;
  src: url("../fonts/dosis-source-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  src: url("../fonts/inter-variable.ttf") format("truetype");
}

:root {
  --tb-color-navy: #13274b;
  --tb-color-coral: #f26458;
  --tb-color-coral-text: #c63f36;
  --tb-color-action-primary: var(--tb-color-coral-text);
  --tb-color-active: #4f8fcc;
  --tb-color-cruise-surface: #b8e2f4;
  --tb-color-deep-navy: #001236;
  --tb-color-text: #2f2f2f;
  --tb-color-muted: #596579;
  --tb-color-border: #c8d0dc;
  --tb-color-border-subtle: #d9dee7;
  --tb-color-info-surface: #f1f6fb;
  --tb-color-error-surface: #fff3f2;
  --tb-color-success: #2e7d32;
  --tb-color-success-surface: #f2f8f2;
  --tb-color-white: #fff;
  --tb-color-canvas: #f4f6f9;
  --tb-font-body: "Dosis", "Trebuchet MS", sans-serif;
  --tb-font-heading: "Inter", Arial, sans-serif;
  --tb-content-wide: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track {
  background: #ccc;
}

html::-webkit-scrollbar-thumb {
  background: var(--tb-color-coral);
  border-radius: 5px;
}

body {
  background: var(--tb-color-white);
  color: var(--tb-color-text);
  font-family: var(--tb-font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  margin: 0;
}

body,
button,
input,
select,
textarea {
  font-family: var(--tb-font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--tb-color-navy);
  font-family: var(--tb-font-heading);
  line-height: 1.15;
}

a {
  color: var(--tb-color-active);
}

a:hover {
  color: var(--tb-color-coral);
}

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

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background: var(--tb-color-white);
  clip: auto !important;
  clip-path: none;
  color: var(--tb-color-navy);
  display: block;
  height: auto;
  left: 1rem;
  padding: 0.75rem 1rem;
  top: 1rem;
  width: auto;
  z-index: 100000;
}

.tb-container {
  margin-inline: auto;
  max-width: var(--tb-content-wide);
  padding-inline: 1rem;
  width: 100%;
}

.tb-site-header {
  background: var(--tb-color-white);
  border-bottom: 1px solid rgb(19 39 75 / 10%);
  position: relative;
  z-index: 20;
}

.tb-header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 5.5rem;
}

.tb-site-name {
  color: var(--tb-color-navy);
  font-family: var(--tb-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}

.tb-source-logo,
.tb-source-logo picture {
  display: block;
}

.tb-source-logo img,
.custom-logo-link img {
  display: block;
  max-height: 3.75rem;
  width: auto;
}

.tb-menu,
.tb-footer-menu {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.tb-menu a,
.tb-menu .tb-submenu-toggle {
  background: transparent;
  border: 0;
  color: var(--tb-color-navy);
  display: block;
  font: inherit;
  font-weight: 700;
  padding-block: 0.75rem;
  text-align: left;
  text-decoration: none;
}

.tb-menu .tb-submenu-toggle {
  cursor: pointer;
}

.tb-menu li {
  position: relative;
}

.tb-menu .sub-menu {
  background: var(--tb-color-white);
  box-shadow: 0 0.75rem 2rem rgb(19 39 75 / 14%);
  display: none;
  left: 0;
  list-style: none;
  margin: 0;
  min-width: 15rem;
  padding: 0.5rem;
  position: absolute;
  top: 100%;
}

.tb-menu li:hover > .sub-menu,
.tb-menu li[data-submenu-open] > .sub-menu {
  display: block;
}

.tb-menu li[data-submenu-dismissed] > .sub-menu {
  display: none;
}

.tb-menu .sub-menu a {
  padding: 0.6rem 0.75rem;
}

.tb-menu .current-menu-item > a,
.tb-menu .current-menu-ancestor > .tb-submenu-toggle {
  color: var(--tb-color-active);
}

.tb-menu a:hover,
.tb-menu .tb-submenu-toggle:hover {
  color: var(--tb-color-coral);
}

.tb-search-icon {
  display: block;
  height: 20px;
  position: relative;
  width: 20px;
}

.tb-search-icon::before {
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  top: 0;
  width: 15px;
}

.tb-search-icon::after {
  background: currentColor;
  content: "";
  height: 2px;
  position: absolute;
  right: 0;
  top: 13px;
  transform: rotate(45deg);
  transform-origin: left center;
  width: 7px;
}

.tb-nav-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 3rem;
  position: relative;
  width: 3rem;
}

.tb-nav-toggle > span[aria-hidden]::before,
.tb-nav-toggle > span[aria-hidden]::after,
.tb-nav-toggle > span[aria-hidden] {
  background: var(--tb-color-navy);
  display: block;
  height: 2px;
  position: absolute;
  width: 1.5rem;
}

.tb-nav-toggle > span[aria-hidden] {
  left: 0.75rem;
  top: 1.45rem;
}

.tb-nav-toggle > span[aria-hidden]::before,
.tb-nav-toggle > span[aria-hidden]::after {
  content: "";
  left: 0;
}

.tb-nav-toggle > span[aria-hidden]::before { top: -0.45rem; }
.tb-nav-toggle > span[aria-hidden]::after { top: 0.45rem; }

.tb-site-main {
  min-height: 60vh;
  padding-block: clamp(2rem, 5vw, 5rem);
}

.tb-site-main--direct {
  padding-block: 0;
}

.tb-entry {
  margin-inline: auto;
  max-width: 760px;
  min-width: 0;
  width: 100%;
}

.tb-entry--front {
  max-width: none;
}

.tb-entry-content :where(p, li, a) {
  overflow-wrap: anywhere;
}

.tb-entry-content .tb-longform-table {
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-gutter: stable;
}

.tb-entry-content .tb-longform-table:focus-visible {
  outline: 3px solid var(--tb-color-active);
  outline-offset: 3px;
}

.tb-entry-content .tb-longform-table table {
  border-collapse: collapse;
  max-width: none;
}

.tb-site-search,
.tb-site-search__controls {
  display: grid;
  gap: 0.5rem;
}

.tb-site-search__controls {
  grid-template-columns: minmax(0, 1fr) auto;
}

.tb-site-search input {
  border: 1px solid var(--tb-color-border);
  font: inherit;
  min-height: 3rem;
  padding: 0.65rem 0.75rem;
  width: 100%;
}

.tb-search-result {
  border-bottom: 1px solid var(--tb-color-border-subtle);
  padding-block: 1rem;
}

.tb-sitemap {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tb-sitemap-list {
  padding-left: 1.25rem;
}

.tb-site-footer {
  background: var(--tb-color-navy);
  color: var(--tb-color-white);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.tb-site-footer > .particles-js-canvas-el {
  display: block;
  height: 100% !important;
  inset: 0;
  pointer-events: none;
  position: absolute;
  width: 100% !important;
  z-index: 0;
}

.tb-brand-footer__inner {
  position: relative;
  z-index: 1;
}

.tb-brand-footer__content {
  text-align: center;
}

.tb-brand-footer__title,
.tb-brand-footer__description,
.tb-site-copyright__license,
.tb-site-copyright__line {
  margin: 0;
}

.tb-brand-footer__title {
  color: inherit;
}

.tb-site-copyright {
  background: var(--tb-color-deep-navy);
  color: var(--tb-color-white);
  text-align: center;
}

.tb-site-copyright a {
  color: var(--tb-color-white);
}

:focus-visible {
  outline: 3px solid var(--tb-color-active);
  outline-offset: 3px;
}

@media (min-width: 960px) {
  .tb-header-inner {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 80px 30px 80px;
    height: 190px;
    max-width: 1170px;
    padding-inline: 0;
  }

  .tb-brand {
    align-self: center;
    grid-row: 1;
    justify-self: center;
  }

  .tb-source-logo img,
  .custom-logo-link img {
    height: 80px;
    max-height: 80px;
    object-fit: contain;
    width: 320px;
  }

  .tb-primary-nav {
    grid-row: 3;
    padding-inline: 24px;
    width: 100%;
  }

  .tb-menu {
    align-items: stretch;
    gap: 0;
    height: 80px;
    justify-content: space-between;
  }

  .tb-menu > li {
    align-items: center;
    display: flex;
  }

  .tb-menu > li > a,
  .tb-menu > li > .tb-submenu-toggle {
    align-items: center;
    display: flex;
    font-size: 17px;
    font-weight: 400;
    min-height: 80px;
    padding: 0 2.5px;
  }

  .tb-menu > li > .tb-submenu-toggle::after {
    border-bottom: 1px solid currentColor;
    border-right: 1px solid currentColor;
    content: "";
    height: 8px;
    margin-left: 25px;
    transform: rotate(45deg) translateY(-2px);
    width: 8px;
  }

  .tb-menu > .tb-menu-search > a {
    height: 80px;
    justify-content: center;
    min-height: 80px;
    padding: 6px;
    width: 29px;
  }
}

@media (max-width: 959px) {
  .tb-nav-toggle {
    display: block;
  }

  .tb-primary-nav {
    background: var(--tb-color-white);
    display: none;
    left: 0;
    padding: 1rem;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .tb-primary-nav[data-open] {
    display: block;
  }

  .tb-menu {
    align-items: stretch;
    flex-direction: column;
  }

  .tb-menu a,
  .tb-menu .tb-submenu-toggle {
    display: block;
    padding: 0.65rem;
    width: 100%;
  }

  .tb-menu .sub-menu {
    box-shadow: none;
    display: block;
    min-width: 0;
    padding: 0 0 0 1rem;
    position: static;
  }

  .tb-menu .menu-item-has-children[data-submenu-collapsed] > .sub-menu {
    display: none;
  }
}

@media (max-width: 959px) {
  body {
    font-size: 1rem;
  }

  .tb-header-inner {
    min-height: 80px;
    padding-inline: 0;
    position: relative;
  }

  .tb-brand {
    left: calc(50% - 111px);
    position: absolute;
    top: 15px;
  }

  .tb-source-logo img,
  .custom-logo-link img {
    height: 50px;
    max-height: 50px;
    object-fit: contain;
    width: 201px;
  }

  .tb-nav-toggle {
    height: 80px;
    position: absolute;
    right: calc(50% - 124px);
    top: 0;
    width: 48px;
  }

  .tb-nav-toggle > span[aria-hidden] {
    top: 39px;
  }

  .tb-footer-inner {
    align-items: flex-start;
    gap: 1.25rem;
  }

  .tb-footer-menus {
    grid-template-columns: 1fr;
  }

  .tb-site-search__controls,
  .tb-sitemap {
    grid-template-columns: 1fr;
  }
}

@media (hover: none), (pointer: coarse) {
  .tb-menu .tb-submenu-toggle,
  .tb-footer-menu a {
    align-items: center;
    display: inline-flex;
    min-height: 2.75rem;
  }
}

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