@charset "UTF-8";
:root {
  --white: #fff;
  --primary: #002554;
  --secondary: #8092a9;
  --red: #c8102e;
  --red10: #d64c62;
  --border-color: rgba(35, 70, 97, 0.14);
  --border-width: 3px;
  --btn-color: #405b7f;
  --btn-hover-color: var(--primary);
  --table-head-background: var(--primary);
  --text-color: #54585d;
  --heading-color: var(--primary);
  --body-background: #000;
  --main-background: #fff;
  --section-margin: 120px;
  --standard-gap: 60px;
  --base-font: "metronic_pro", arial;
  --text-font: "proxima_nova",arial;
}
@media screen and (max-width: 1024px) {
  :root {
    --section-margin: 32px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --standard-gap: 30px;
  }
}

* {
  direction: ltr;
  margin: 0;
  padding: 0;
}

html {
  font-size: 15px;
  font-family: var(--text-font);
  line-height: 1.35;
  text-rendering: geometricPrecision;
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 17px;
  }
}

body {
  max-width: 1440px;
  margin: 0 auto;
  color: var(--text-color);
  background: var(--body-background);
}
@media screen and (max-width: 767px) {
  body {
    --body-background: #fff;
  }
}

main {
  background: var(--main-background);
}

ul {
  list-style-position: inside;
  margin-bottom: 1rem;
}
ul.unstyled {
  list-style-type: none;
}
ul.unstyled li {
  list-style-type: none;
  display: grid;
}
ul li ul {
  padding-left: 25px;
}

a {
  font-weight: bold;
  text-decoration: underline;
  touch-action: manipulation;
  color: #002554;
}
a:hover, a:focus {
  color: #000308;
}

*[class*=textformat-h], h1, h2, h3, h4, h5, h6 {
  font-family: var(--base-font);
  font-weight: normal !important;
  color: var(--heading-color);
}

.textformat-h1 {
  font-size: 2.4rem;
  line-height: 1.0476;
}
@media screen and (min-width: 1200px) {
  .textformat-h1 {
    font-size: 2.4705rem;
  }
}

.textformat-h2 {
  line-height: 1.0476;
  text-transform: none;
  font-size: 2.1333rem;
}
@media screen and (min-width: 1200px) {
  .textformat-h2 {
    font-size: 2.4705rem;
  }
}

.textformat-h3 {
  font-size: 1.7333rem;
  line-height: 1.0555;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .textformat-h3 {
    font-size: 2.1176rem;
  }
}

.textformat-h4 {
  font-size: 1.6rem;
  line-height: 1.0625;
}
@media screen and (min-width: 1200px) {
  .textformat-h4 {
    font-size: 1.8823rem;
  }
}

.textformat-h5 {
  font-size: 1.4667rem;
  line-height: 1.0625;
  text-transform: none;
}
@media screen and (min-width: 1200px) {
  .textformat-h5 {
    font-size: 1.8823rem;
  }
}

.textformat-h6, .editor h2 {
  font-size: 1.2rem;
  line-height: 1.0769;
}
@media screen and (min-width: 1200px) {
  .textformat-h6, .editor h2 {
    font-size: 1.4118rem;
  }
}

.textformat-h7 {
  line-height: 1.0909;
  text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
  .textformat-h7 {
    font-size: 1.2941rem;
  }
}

.textformat-h8, .editor h3 {
  font-size: 1.2rem;
  line-height: 1.0909;
  text-transform: none;
}
@media screen and (min-width: 1200px) {
  .textformat-h8, .editor h3 {
    font-size: 1.2941rem;
  }
}

.textformat-h9, .editor h5, .editor h4 {
  font-size: 1rem;
  text-transform: none;
}
@media screen and (min-width: 1200px) {
  .textformat-h9, .editor h5, .editor h4 {
    line-height: 1.2941;
  }
}

.textformat-link {
  font-family: var(--base-font);
  font-size: 0.7647rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
}

.textformat-copytext-small {
  font-size: 0.8823rem;
}

.tece {
  color: var(--secondary);
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

.small {
  font-size: 0.8rem;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
}

.editor {
  padding-top: 60px;
}
@media screen and (min-width: 1200px) {
  .editor {
    padding-top: 90px;
  }
}
.editor h4 {
  --heading-color: #000;
}
.editor h5 {
  --heading-color: #000;
}
.editor h2, .editor h3, .editor h4, .editor h5, .editor h6 {
  margin-top: 2rem;
}

.row {
  margin-left: var(--section-margin);
  margin-right: var(--section-margin);
}

.col-three {
  padding: 30px 0;
  display: grid;
  gap: var(--standard-gap);
  grid-template-columns: 100%;
}
@media screen and (min-width: 1200px) {
  .col-three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.col-two {
  padding: 30px 0;
  display: grid;
  gap: var(--standard-gap);
  grid-template-columns: 100%;
}
@media screen and (min-width: 1200px) {
  .col-two {
    grid-template-columns: repeat(2, 1fr);
  }
}

.two-col-sidebar {
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.two-col-sidebar > *:nth-child(1) {
  max-width: 840px;
  flex: 1;
}
.two-col-sidebar > *:nth-child(2) {
  min-width: 420px;
  width: 420px;
}
@media screen and (max-width: 483px) {
  .two-col-sidebar > *:nth-child(2) {
    min-width: unset;
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .two-col-sidebar {
    flex-direction: row;
  }
}

ul.col-two li {
  display: table;
}

.infobox {
  background: var(--primary);
  color: var(--white);
  padding: 30px;
}
.infobox *[class*=textformat-h], .infobox h1, .infobox h2, .infobox h3, .infobox h4, .infobox h5, .infobox h6 {
  --heading-color: var(--white);
}
.infobox a {
  color: var(--white);
  font-weight: normal;
}

header {
  background: var(--main-background);
  padding: 10px 50px;
  position: sticky;
  z-index: 100;
  width: calc(100% - 100px);
  top: 0;
  display: flex;
  gap: 50px;
  /* 2. Collapse the menu on mobile by default */
}
@media screen and (max-width: 767px) {
  header {
    justify-content: space-between;
    padding: 10px 32px;
    width: calc(100% - 64px);
  }
}
header picture img {
  max-width: 94px;
  width: 100%;
  height: auto;
}
header nav ul {
  list-style-type: none;
  display: flex;
  gap: 30px;
  row-gap: 15px;
  justify-content: start;
  align-items: center;
  height: 100%;
  flex-wrap: wrap;
}
header nav ul li a {
  color: var(--primary);
  font-weight: normal;
  text-decoration: none;
  font-family: var(--base-font);
  font-size: 0.9411rem;
  display: block;
}
header nav ul li a:hover, header nav ul li a:focus {
  text-decoration: underline;
  color: var(--primary);
}
header .nav-toggle {
  border: 0;
  background: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: currentColor;
  /* visually hide from desktop */
}
@media (min-width: 768px) {
  header .nav-toggle {
    display: none;
  }
}
@media (max-width: 767px) {
  header {
    /* open state – set with JS or checkbox-hack */
    /* vertical list instead of flex-row */
  }
  header nav {
    /* push nav below the header row */
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--main-background);
    padding: 1rem 32px 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* closed state */
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.25s ease;
    visibility: hidden;
  }
  header nav[aria-expanded=true] {
    transform: scaleY(1);
    visibility: visible;
  }
  header nav ul {
    flex-direction: column;
    gap: 0;
    row-gap: 0.75rem;
    align-items: flex-start;
  }
  header nav li a {
    font-size: 1rem;
  }
}

footer {
  border-top: 30px solid #fff;
  background: var(--primary);
  padding: 2.5882rem 2.9411rem 3.529rem;
  font-size: 0.94115em;
  font-family: var(--base-font);
  color: #fff;
}
footer .copy {
  text-align: center;
}
footer .copy img {
  height: 0.8em;
  width: auto;
  line-height: 1rem;
  margin-top: -0.2em;
}
footer nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
footer nav ul li a {
  color: var(--white);
  text-decoration: none;
}
footer nav ul li a:hover, footer nav ul li a:focus {
  text-decoration: underline;
  color: var(--white);
}

.keyvisual {
  margin-left: calc(var(--section-margin) * -1);
  margin-right: calc(var(--section-margin) * -1);
}

.teaser {
  height: auto;
  border: var(--border-width) solid;
  border-color: var(--border-color);
}
.teaser-headline {
  border-bottom: var(--border-width) solid var(--border-color);
  text-transform: uppercase;
  padding: 25px 17px;
  color: var(--heading-color);
  font-weight: normal;
}
@media screen and (min-width: 1024px) {
  .teaser-headline {
    padding: 30px 20px;
  }
}
.teaser-content {
  margin: 30px 20px;
}
@media screen and (min-width: 1024px) {
  .teaser-content {
    margin: 25px 17px;
  }
}

.btn {
  --button-background-color: transparent;
  --button-text-color: #fff;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  background-color: var(--button-background-color);
  color: var(--button-text-color);
  vertical-align: middle;
  height: 50px;
  display: inline-block;
  line-height: 2.6rem;
  margin-top: 1.5rem;
  padding: 0.15rem 10px 0;
}
@media screen and (min-width: 768px) {
  .btn {
    line-height: 2.8rem;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.btn:hover, .btn:focus {
  color: var(--button-text-color);
}

.btn-primary {
  --button-background-color: var(--btn-color);
  --button-text-color: #fff;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus {
  --button-background-color: var(--btn-hover-color);
}

.btn-secondary {
  --button-background-color: var(--red);
  --button-text-color: #fff;
  text-decoration: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  --button-background-color: var(--red10);
}

label {
  color: #333333;
  margin-bottom: 0;
  font-size: 1em;
}

input {
  color: #002554;
  border: rgba(35, 70, 97, 0.14) solid 2px;
  padding: 0 1rem;
  font-weight: bold;
  max-width: calc(100% - (2rem + 4px));
}

textarea {
  padding: 1rem;
  max-width: calc(100% - (2rem + 4px));
  font-weight: bold;
}

select {
  padding: 0.64rem 1rem;
}

input, select {
  height: 50px;
  margin: 0;
  width: 100%;
  min-width: auto;
  font-size: 0.7647rem;
}

select, textarea {
  font-size: 1rem;
  border: 2px solid rgba(35, 70, 97, 0.14);
  background-color: #fff;
}

input, select, textarea {
  margin-top: 0.3rem;
  display: block;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.form-description {
  margin-top: 0.5rem;
  font-style: italic;
}

table {
  border-collapse: collapse;
  font-size: 0.8823rem;
  text-indent: initial;
  border-spacing: 2px;
  caption-side: bottom;
  margin-bottom: 1.5rem;
}
table th {
  background-color: var(--table-head-background);
  color: #fff;
  padding: 0.5rem;
  text-align: left;
}
table td {
  padding: 0.5rem;
  border-bottom: 1px solid #CCD3DD;
}
table caption {
  margin-top: 0.5rem;
  text-decoration: dotted;
  text-align: start;
}

.table-overflow {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 1rem;
}

dialog {
  padding: 0 !important;
  border: none !important;
}
dialog .dialog-head {
  background-color: #405b7f;
  color: #fff;
  border-radius: 0;
  font-family: "metronic_pro", arial;
  font-size: 1.2rem;
  line-height: 1.0909;
  text-transform: none;
  padding: 1em;
  position: relative;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
dialog .dialog-head .dialog-title {
  color: #fff;
  font-size: inherit;
  margin-bottom: 0;
}
@media screen and (min-width: 1200px) {
  dialog .dialog-head {
    font-size: 1.2941rem;
  }
}
dialog .dialog-head-close-btn {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
}
dialog .dialog-head-close-btn img {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
dialog .dialog-head-close-btn:hover, dialog .dialog-head-close-btn:focus, dialog .dialog-head-close-btn:focus-visible {
  cursor: pointer;
}
dialog .dialog-head-close-btn:hover img, dialog .dialog-head-close-btn:focus img, dialog .dialog-head-close-btn:focus-visible img {
  opacity: 1;
}
dialog .dialog-body {
  padding: 1em;
}
dialog::backdrop, dialog + .backdrop {
  background: rgba(0, 0, 0, 0.4);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Skip‑Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 110;
  transition: top 0.2s ease-in-out;
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

img {
  max-width: 100%;
}

:focus, :focus-visible {
  outline: 2px solid #c8102e;
  outline-offset: 2px;
}

/*# sourceMappingURL=main.css.map */
