/**
    Fonts
 */
/**
    Colors
 */
/* Font size */
[role=button] {
  cursor: pointer;
}

.skip-links {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  pointer-events: none;
}
.skip-links .skip-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none outside none;
}
.skip-links .skip-links__link {
  position: absolute;
  width: 1px;
  min-width: 0;
  height: 1px;
  min-height: 0;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-links:focus-within,
.skip-links .skip-links__link:focus,
.skip-links .skip-links__link:focus-visible {
  pointer-events: auto;
}
.skip-links .skip-links__link:focus,
.skip-links .skip-links__link:focus-visible {
  position: static;
  display: inline-flex;
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 3.125rem;
  margin: 0;
  padding: 0.8125rem 1.125rem;
  border: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

#main-content:focus,
#site-navigation:focus,
#site-footer:focus {
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 3.125rem;
  padding: 0.8125rem 1.125rem;
  border: 0;
  border-radius: 0.625rem;
  background-color: var(--button-bg, #121384);
  color: var(--button-text, #ffffff);
  font-size: 1.125rem;
  font-family: inherit;
  line-height: 1.5rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.button:hover, .button:focus, .button:focus-visible {
  background-color: var(--button-bg-hover, #000000);
  color: var(--button-text-hover, #ffffff);
}
.button i {
  flex: 0 0 auto;
  font-size: 1.125rem;
  line-height: 1;
}
.button.button--icon-only {
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  padding: 0;
}
.button.button--icon-left {
  flex-direction: row;
}
.button.button--icon-right {
  flex-direction: row-reverse;
}
.button.button--hero {
  min-height: 3rem;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  white-space: normal;
}
.button.button--dark-blue {
  --button-bg: #121384;
  --button-text: #ffffff;
  --button-bg-hover: #000000;
  --button-text-hover: #ffffff;
}
.button.button--yellow {
  --button-bg: #ffe500;
  --button-text: #121384;
  --button-bg-hover: #ffffff;
  --button-text-hover: #121384;
}
.button.button--small {
  min-height: 1.875rem;
  padding: 0.3125rem 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.grid,
.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  row-gap: 1.25rem;
}

.grid > *,
.row > * {
  min-width: 0;
  --grid-span: 12;
  --grid-start: auto;
  grid-column: var(--grid-start)/span var(--grid-span);
}

.col {
  --grid-span: 12;
}

.col-1,
.grid__column--1 {
  --grid-span: 1;
}

.col-2,
.grid__column--2 {
  --grid-span: 2;
}

.col-3,
.grid__column--3 {
  --grid-span: 3;
}

.col-4,
.grid__column--4 {
  --grid-span: 4;
}

.col-5,
.grid__column--5 {
  --grid-span: 5;
}

.col-6,
.grid__column--6 {
  --grid-span: 6;
}

.col-7,
.grid__column--7 {
  --grid-span: 7;
}

.col-8,
.grid__column--8 {
  --grid-span: 8;
}

.col-9,
.grid__column--9 {
  --grid-span: 9;
}

.col-10,
.grid__column--10 {
  --grid-span: 10;
}

.col-11,
.grid__column--11 {
  --grid-span: 11;
}

.col-12,
.grid__column--12 {
  --grid-span: 12;
}

.push-0,
.offset-0,
.grid__column--push-0 {
  --grid-start: auto;
}

.push-1,
.offset-1,
.grid__column--push-1 {
  --grid-start: 2;
}

.push-2,
.offset-2,
.grid__column--push-2 {
  --grid-start: 3;
}

.push-3,
.offset-3,
.grid__column--push-3 {
  --grid-start: 4;
}

.push-4,
.offset-4,
.grid__column--push-4 {
  --grid-start: 5;
}

.push-5,
.offset-5,
.grid__column--push-5 {
  --grid-start: 6;
}

.push-6,
.offset-6,
.grid__column--push-6 {
  --grid-start: 7;
}

.push-7,
.offset-7,
.grid__column--push-7 {
  --grid-start: 8;
}

.push-8,
.offset-8,
.grid__column--push-8 {
  --grid-start: 9;
}

.push-9,
.offset-9,
.grid__column--push-9 {
  --grid-start: 10;
}

.push-10,
.offset-10,
.grid__column--push-10 {
  --grid-start: 11;
}

.push-11,
.offset-11,
.grid__column--push-11 {
  --grid-start: 12;
}

@media only screen and (min-width: 576px) {
  .col-sm {
    --grid-span: 12;
  }
  .col-sm-1,
  .grid__column--sm-1 {
    --grid-span: 1;
  }
  .col-sm-2,
  .grid__column--sm-2 {
    --grid-span: 2;
  }
  .col-sm-3,
  .grid__column--sm-3 {
    --grid-span: 3;
  }
  .col-sm-4,
  .grid__column--sm-4 {
    --grid-span: 4;
  }
  .col-sm-5,
  .grid__column--sm-5 {
    --grid-span: 5;
  }
  .col-sm-6,
  .grid__column--sm-6 {
    --grid-span: 6;
  }
  .col-sm-7,
  .grid__column--sm-7 {
    --grid-span: 7;
  }
  .col-sm-8,
  .grid__column--sm-8 {
    --grid-span: 8;
  }
  .col-sm-9,
  .grid__column--sm-9 {
    --grid-span: 9;
  }
  .col-sm-10,
  .grid__column--sm-10 {
    --grid-span: 10;
  }
  .col-sm-11,
  .grid__column--sm-11 {
    --grid-span: 11;
  }
  .col-sm-12,
  .grid__column--sm-12 {
    --grid-span: 12;
  }
  .push-sm-0,
  .offset-sm-0,
  .grid__column--push-sm-0 {
    --grid-start: auto;
  }
  .push-sm-1,
  .offset-sm-1,
  .grid__column--push-sm-1 {
    --grid-start: 2;
  }
  .push-sm-2,
  .offset-sm-2,
  .grid__column--push-sm-2 {
    --grid-start: 3;
  }
  .push-sm-3,
  .offset-sm-3,
  .grid__column--push-sm-3 {
    --grid-start: 4;
  }
  .push-sm-4,
  .offset-sm-4,
  .grid__column--push-sm-4 {
    --grid-start: 5;
  }
  .push-sm-5,
  .offset-sm-5,
  .grid__column--push-sm-5 {
    --grid-start: 6;
  }
  .push-sm-6,
  .offset-sm-6,
  .grid__column--push-sm-6 {
    --grid-start: 7;
  }
  .push-sm-7,
  .offset-sm-7,
  .grid__column--push-sm-7 {
    --grid-start: 8;
  }
  .push-sm-8,
  .offset-sm-8,
  .grid__column--push-sm-8 {
    --grid-start: 9;
  }
  .push-sm-9,
  .offset-sm-9,
  .grid__column--push-sm-9 {
    --grid-start: 10;
  }
  .push-sm-10,
  .offset-sm-10,
  .grid__column--push-sm-10 {
    --grid-start: 11;
  }
  .push-sm-11,
  .offset-sm-11,
  .grid__column--push-sm-11 {
    --grid-start: 12;
  }
}
@media only screen and (min-width: 768px) {
  .col-md {
    --grid-span: 12;
  }
  .col-md-1,
  .grid__column--md-1 {
    --grid-span: 1;
  }
  .col-md-2,
  .grid__column--md-2 {
    --grid-span: 2;
  }
  .col-md-3,
  .grid__column--md-3 {
    --grid-span: 3;
  }
  .col-md-4,
  .grid__column--md-4 {
    --grid-span: 4;
  }
  .col-md-5,
  .grid__column--md-5 {
    --grid-span: 5;
  }
  .col-md-6,
  .grid__column--md-6 {
    --grid-span: 6;
  }
  .col-md-7,
  .grid__column--md-7 {
    --grid-span: 7;
  }
  .col-md-8,
  .grid__column--md-8 {
    --grid-span: 8;
  }
  .col-md-9,
  .grid__column--md-9 {
    --grid-span: 9;
  }
  .col-md-10,
  .grid__column--md-10 {
    --grid-span: 10;
  }
  .col-md-11,
  .grid__column--md-11 {
    --grid-span: 11;
  }
  .col-md-12,
  .grid__column--md-12 {
    --grid-span: 12;
  }
  .push-md-0,
  .offset-md-0,
  .grid__column--push-md-0 {
    --grid-start: auto;
  }
  .push-md-1,
  .offset-md-1,
  .grid__column--push-md-1 {
    --grid-start: 2;
  }
  .push-md-2,
  .offset-md-2,
  .grid__column--push-md-2 {
    --grid-start: 3;
  }
  .push-md-3,
  .offset-md-3,
  .grid__column--push-md-3 {
    --grid-start: 4;
  }
  .push-md-4,
  .offset-md-4,
  .grid__column--push-md-4 {
    --grid-start: 5;
  }
  .push-md-5,
  .offset-md-5,
  .grid__column--push-md-5 {
    --grid-start: 6;
  }
  .push-md-6,
  .offset-md-6,
  .grid__column--push-md-6 {
    --grid-start: 7;
  }
  .push-md-7,
  .offset-md-7,
  .grid__column--push-md-7 {
    --grid-start: 8;
  }
  .push-md-8,
  .offset-md-8,
  .grid__column--push-md-8 {
    --grid-start: 9;
  }
  .push-md-9,
  .offset-md-9,
  .grid__column--push-md-9 {
    --grid-start: 10;
  }
  .push-md-10,
  .offset-md-10,
  .grid__column--push-md-10 {
    --grid-start: 11;
  }
  .push-md-11,
  .offset-md-11,
  .grid__column--push-md-11 {
    --grid-start: 12;
  }
}
@media only screen and (min-width: 992px) {
  .col-lg {
    --grid-span: 12;
  }
  .col-lg-1,
  .grid__column--lg-1 {
    --grid-span: 1;
  }
  .col-lg-2,
  .grid__column--lg-2 {
    --grid-span: 2;
  }
  .col-lg-3,
  .grid__column--lg-3 {
    --grid-span: 3;
  }
  .col-lg-4,
  .grid__column--lg-4 {
    --grid-span: 4;
  }
  .col-lg-5,
  .grid__column--lg-5 {
    --grid-span: 5;
  }
  .col-lg-6,
  .grid__column--lg-6 {
    --grid-span: 6;
  }
  .col-lg-7,
  .grid__column--lg-7 {
    --grid-span: 7;
  }
  .col-lg-8,
  .grid__column--lg-8 {
    --grid-span: 8;
  }
  .col-lg-9,
  .grid__column--lg-9 {
    --grid-span: 9;
  }
  .col-lg-10,
  .grid__column--lg-10 {
    --grid-span: 10;
  }
  .col-lg-11,
  .grid__column--lg-11 {
    --grid-span: 11;
  }
  .col-lg-12,
  .grid__column--lg-12 {
    --grid-span: 12;
  }
  .push-lg-0,
  .offset-lg-0,
  .grid__column--push-lg-0 {
    --grid-start: auto;
  }
  .push-lg-1,
  .offset-lg-1,
  .grid__column--push-lg-1 {
    --grid-start: 2;
  }
  .push-lg-2,
  .offset-lg-2,
  .grid__column--push-lg-2 {
    --grid-start: 3;
  }
  .push-lg-3,
  .offset-lg-3,
  .grid__column--push-lg-3 {
    --grid-start: 4;
  }
  .push-lg-4,
  .offset-lg-4,
  .grid__column--push-lg-4 {
    --grid-start: 5;
  }
  .push-lg-5,
  .offset-lg-5,
  .grid__column--push-lg-5 {
    --grid-start: 6;
  }
  .push-lg-6,
  .offset-lg-6,
  .grid__column--push-lg-6 {
    --grid-start: 7;
  }
  .push-lg-7,
  .offset-lg-7,
  .grid__column--push-lg-7 {
    --grid-start: 8;
  }
  .push-lg-8,
  .offset-lg-8,
  .grid__column--push-lg-8 {
    --grid-start: 9;
  }
  .push-lg-9,
  .offset-lg-9,
  .grid__column--push-lg-9 {
    --grid-start: 10;
  }
  .push-lg-10,
  .offset-lg-10,
  .grid__column--push-lg-10 {
    --grid-start: 11;
  }
  .push-lg-11,
  .offset-lg-11,
  .grid__column--push-lg-11 {
    --grid-start: 12;
  }
}
@media only screen and (min-width: 1280px) {
  .col-xl {
    --grid-span: 12;
  }
  .col-xl-1,
  .grid__column--xl-1 {
    --grid-span: 1;
  }
  .col-xl-2,
  .grid__column--xl-2 {
    --grid-span: 2;
  }
  .col-xl-3,
  .grid__column--xl-3 {
    --grid-span: 3;
  }
  .col-xl-4,
  .grid__column--xl-4 {
    --grid-span: 4;
  }
  .col-xl-5,
  .grid__column--xl-5 {
    --grid-span: 5;
  }
  .col-xl-6,
  .grid__column--xl-6 {
    --grid-span: 6;
  }
  .col-xl-7,
  .grid__column--xl-7 {
    --grid-span: 7;
  }
  .col-xl-8,
  .grid__column--xl-8 {
    --grid-span: 8;
  }
  .col-xl-9,
  .grid__column--xl-9 {
    --grid-span: 9;
  }
  .col-xl-10,
  .grid__column--xl-10 {
    --grid-span: 10;
  }
  .col-xl-11,
  .grid__column--xl-11 {
    --grid-span: 11;
  }
  .col-xl-12,
  .grid__column--xl-12 {
    --grid-span: 12;
  }
  .push-xl-0,
  .offset-xl-0,
  .grid__column--push-xl-0 {
    --grid-start: auto;
  }
  .push-xl-1,
  .offset-xl-1,
  .grid__column--push-xl-1 {
    --grid-start: 2;
  }
  .push-xl-2,
  .offset-xl-2,
  .grid__column--push-xl-2 {
    --grid-start: 3;
  }
  .push-xl-3,
  .offset-xl-3,
  .grid__column--push-xl-3 {
    --grid-start: 4;
  }
  .push-xl-4,
  .offset-xl-4,
  .grid__column--push-xl-4 {
    --grid-start: 5;
  }
  .push-xl-5,
  .offset-xl-5,
  .grid__column--push-xl-5 {
    --grid-start: 6;
  }
  .push-xl-6,
  .offset-xl-6,
  .grid__column--push-xl-6 {
    --grid-start: 7;
  }
  .push-xl-7,
  .offset-xl-7,
  .grid__column--push-xl-7 {
    --grid-start: 8;
  }
  .push-xl-8,
  .offset-xl-8,
  .grid__column--push-xl-8 {
    --grid-start: 9;
  }
  .push-xl-9,
  .offset-xl-9,
  .grid__column--push-xl-9 {
    --grid-start: 10;
  }
  .push-xl-10,
  .offset-xl-10,
  .grid__column--push-xl-10 {
    --grid-start: 11;
  }
  .push-xl-11,
  .offset-xl-11,
  .grid__column--push-xl-11 {
    --grid-start: 12;
  }
}
@media only screen and (min-width: 1400px) {
  .col-xxl {
    --grid-span: 12;
  }
  .col-xxl-1,
  .grid__column--xxl-1 {
    --grid-span: 1;
  }
  .col-xxl-2,
  .grid__column--xxl-2 {
    --grid-span: 2;
  }
  .col-xxl-3,
  .grid__column--xxl-3 {
    --grid-span: 3;
  }
  .col-xxl-4,
  .grid__column--xxl-4 {
    --grid-span: 4;
  }
  .col-xxl-5,
  .grid__column--xxl-5 {
    --grid-span: 5;
  }
  .col-xxl-6,
  .grid__column--xxl-6 {
    --grid-span: 6;
  }
  .col-xxl-7,
  .grid__column--xxl-7 {
    --grid-span: 7;
  }
  .col-xxl-8,
  .grid__column--xxl-8 {
    --grid-span: 8;
  }
  .col-xxl-9,
  .grid__column--xxl-9 {
    --grid-span: 9;
  }
  .col-xxl-10,
  .grid__column--xxl-10 {
    --grid-span: 10;
  }
  .col-xxl-11,
  .grid__column--xxl-11 {
    --grid-span: 11;
  }
  .col-xxl-12,
  .grid__column--xxl-12 {
    --grid-span: 12;
  }
  .push-xxl-0,
  .offset-xxl-0,
  .grid__column--push-xxl-0 {
    --grid-start: auto;
  }
  .push-xxl-1,
  .offset-xxl-1,
  .grid__column--push-xxl-1 {
    --grid-start: 2;
  }
  .push-xxl-2,
  .offset-xxl-2,
  .grid__column--push-xxl-2 {
    --grid-start: 3;
  }
  .push-xxl-3,
  .offset-xxl-3,
  .grid__column--push-xxl-3 {
    --grid-start: 4;
  }
  .push-xxl-4,
  .offset-xxl-4,
  .grid__column--push-xxl-4 {
    --grid-start: 5;
  }
  .push-xxl-5,
  .offset-xxl-5,
  .grid__column--push-xxl-5 {
    --grid-start: 6;
  }
  .push-xxl-6,
  .offset-xxl-6,
  .grid__column--push-xxl-6 {
    --grid-start: 7;
  }
  .push-xxl-7,
  .offset-xxl-7,
  .grid__column--push-xxl-7 {
    --grid-start: 8;
  }
  .push-xxl-8,
  .offset-xxl-8,
  .grid__column--push-xxl-8 {
    --grid-start: 9;
  }
  .push-xxl-9,
  .offset-xxl-9,
  .grid__column--push-xxl-9 {
    --grid-start: 10;
  }
  .push-xxl-10,
  .offset-xxl-10,
  .grid__column--push-xxl-10 {
    --grid-start: 11;
  }
  .push-xxl-11,
  .offset-xxl-11,
  .grid__column--push-xxl-11 {
    --grid-start: 12;
  }
}
*, *:before, *:after {
  padding: 0;
  margin: 0;
  outline: none;
  box-sizing: border-box;
}

img {
  vertical-align: middle;
  border: 0;
}

button {
  cursor: pointer;
}

html {
  font-size: 16px;
}

body {
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 300;
}
body * {
  font-weight: 300;
}

h1, .h1 {
  font-size: 2.625rem;
  line-height: 3.125rem;
}
h1 strong, .h1 strong {
  font-size: inherit;
  line-height: inherit;
}
@media only screen and (max-width: 768px) {
  h1, .h1 {
    font-size: 2rem;
    line-height: 2.625rem;
  }
}

h2, .h2 {
  font-size: 2.1875rem !important;
  line-height: 2.625rem !important;
}
h2 strong, .h2 strong {
  font-size: inherit;
  line-height: inherit;
}
@media only screen and (max-width: 768px) {
  h2, .h2 {
    font-size: 1.75rem !important;
    line-height: 2.25rem !important;
  }
}

h3, .h3 {
  font-size: 1.8125rem;
  line-height: 2.1875rem;
}
@media only screen and (max-width: 768px) {
  h3, .h3 {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
}
h3 strong, .h3 strong {
  font-size: inherit;
  line-height: inherit;
}

h4, .h4 {
  font-size: 1.5rem;
  line-height: 1.8125rem;
}
@media only screen and (max-width: 768px) {
  h4, .h4 {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
h4 strong, .h4 strong {
  font-size: inherit;
  line-height: inherit;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5 {
  margin: 1em 0;
}
h1:first-child, .h1:first-child,
h2:first-child, .h2:first-child,
h3:first-child, .h3:first-child,
h4:first-child, .h4:first-child,
h5:first-child, .h5:first-child {
  margin-top: 0;
}
h1:last-child, .h1:last-child,
h2:last-child, .h2:last-child,
h3:last-child, .h3:last-child,
h4:last-child, .h4:last-child,
h5:last-child, .h5:last-child {
  margin-bottom: 0;
}
h1 span, .h1 span,
h2 span, .h2 span,
h3 span, .h3 span,
h4 span, .h4 span,
h5 span, .h5 span {
  font-weight: 700;
}

h1, .h1 {
  font-weight: 300;
}

h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5 {
  font-weight: 700 !important;
}

strong, .strong {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: bold;
}
strong.big, .strong.big {
  font-size: 1.25rem;
  line-height: 1.875rem;
}

p {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
@media only screen and (max-width: 768px) {
  p {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
p.big {
  font-size: 1.125rem;
  line-height: 1.625rem;
}
@media only screen and (max-width: 768px) {
  p.big {
    font-size: 1.125rem;
    line-height: 1.625rem;
  }
}

a {
  text-decoration: none;
  display: inline-block;
}
a.read-more:hover:after {
  margin: 0 0 0 0.625rem;
}
a.read-more:after {
  content: "";
  display: inline-block;
  width: 1.125rem;
  height: 1.125rem;
  background-color: currentColor;
  -webkit-mask: url("../Vendor/FontAwesome/svgs/solid/arrow-right.svg") no-repeat center/contain;
  mask: url("../Vendor/FontAwesome/svgs/solid/arrow-right.svg") no-repeat center/contain;
  margin: 0 0 0 0.3125rem;
  position: relative;
  transition: ease-in-out margin 0.3s;
}

.link.link--icon {
  margin: 0 0 8px;
}
.link.link--icon[href^="mailto:"]:before, .link.link--icon[href^="tel:"]:before {
  position: relative;
  top: 0.125rem;
  margin: 0 0.5rem 0 0;
}
.link.link--icon[href^="mailto:"]:before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: currentColor;
  -webkit-mask: url("../Vendor/FontAwesome/svgs/solid/envelope.svg") no-repeat center/contain;
  mask: url("../Vendor/FontAwesome/svgs/solid/envelope.svg") no-repeat center/contain;
}
.link.link--icon[href^="tel:"]:before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: currentColor;
  -webkit-mask: url("../Vendor/FontAwesome/svgs/solid/phone.svg") no-repeat center/contain;
  mask: url("../Vendor/FontAwesome/svgs/solid/phone.svg") no-repeat center/contain;
}

.section header {
  margin: 0 0 1.875rem;
}

p, table {
  margin: 1em 0;
}
p:first-child, table:first-child {
  margin-top: 0;
}
p:last-child, table:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin: 1.25rem 0 1.25rem 1.25rem;
}
ul:first-child, ol:first-child {
  margin-top: 0;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}
ul li, ol li {
  margin: 0 0 0.375rem;
}

strong {
  font-weight: 700;
}

.content-element.content-element--space-before-0 {
  padding-block-start: 0;
}
.content-element.content-element--space-after-0 {
  padding-block-end: 0;
}
.content-element.content-element--space-before-10 {
  padding-block-start: 0.625rem;
}
.content-element.content-element--space-after-10 {
  padding-block-end: 0.625rem;
}
.content-element.content-element--space-before-25 {
  padding-block-start: 1.5625rem;
}
.content-element.content-element--space-after-25 {
  padding-block-end: 1.5625rem;
}
.content-element.content-element--space-before-50 {
  padding-block-start: 3.125rem;
}
.content-element.content-element--space-after-50 {
  padding-block-end: 3.125rem;
}
.content-element.content-element--space-before-80 {
  padding-block-start: 5rem;
}
.content-element.content-element--space-after-80 {
  padding-block-end: 5rem;
}
.content-element .content-element__heading {
  margin: 0 0 1.875rem;
}

.footer {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 3.125rem 0;
  }
}
.footer .footer__column.footer__column--right {
  text-align: right;
}
.footer .footer__column.footer__column--center {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .footer .footer__column.footer__column--center {
    order: 1;
    margin-top: 1.25rem;
  }
}
.footer .footer__column .ce-menu .ce-menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: flex-end;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .footer .footer__column .ce-menu .ce-menu__list {
    justify-content: flex-start;
  }
}
.footer .footer__column .ce-menu .ce-menu__list .ce-menu__item {
  list-style: none outside none;
}
.footer .footer__column .footer__social-network .footer__social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: flex-end;
}
@media only screen and (max-width: 768px) {
  .footer .footer__column .footer__social-network .footer__social-list {
    justify-content: flex-start;
  }
}
.footer .footer__column .footer__social-network .footer__social-list .footer__social-item {
  list-style: none outside none;
}
.footer .footer__column .footer__social-network .footer__social-list .footer__social-item i {
  font-size: 2rem;
}
.footer .footer__eu-stars {
  display: block;
  width: 100%;
  max-width: 14.1875rem;
  height: auto;
}
@media only screen and (max-width: 992px) {
  .footer .footer__eu-stars {
    max-width: 10rem;
  }
}
.footer.theme--white {
  --section-bg: #ffffff;
  --section-text: #000000;
  --section-link: #121384;
}
.footer.theme--white a:not(.button) {
  color: var(--section-link);
}
.footer.theme--white a:not(.button) > * {
  color: var(--section-link);
}
.footer.theme--blue {
  --section-bg: #121384;
  --section-text: #ffffff;
  --section-link: #ffffff;
}
.footer.theme--blue a:not(.button) {
  color: var(--section-link);
}
.footer.theme--blue a:not(.button) > * {
  color: var(--section-link);
}
.footer.theme--blue-90 {
  --section-bg: rgb(231.3, 231.4, 242.7);
  --section-text: #000000;
  --section-link: #121384;
}
.footer.theme--blue-90 a:not(.button) {
  color: var(--section-link);
}
.footer.theme--blue-90 a:not(.button) > * {
  color: var(--section-link);
}
.footer.theme--yellow {
  --section-bg: #ffe500;
  --section-text: #121384;
  --section-link: #121384;
}
.footer.theme--yellow a:not(.button) {
  color: var(--section-link);
}
.footer.theme--yellow a:not(.button) > * {
  color: var(--section-link);
}

.section-anchor {
  position: absolute;
  left: -99999px;
}

.container {
  width: 113.75rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media only screen and (max-width: 576px) {
  .container {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

main .container > *:first-child {
  margin-top: 0;
}
main .container > *:last-child {
  margin-bottom: 0;
}

.section {
  padding: 6.25rem 0;
}
@media only screen and (max-width: 768px) {
  .section {
    padding: 3.125rem 0;
  }
}
.section.theme--white {
  --section-bg: #ffffff;
  --section-text: #000000;
  --section-link: #121384;
}
.section.theme--blue {
  --section-bg: #121384;
  --section-text: #ffffff;
  --section-link: #ffffff;
}
.section.theme--blue-90 {
  --section-bg: rgb(231.3, 231.4, 242.7);
  --section-text: #000000;
  --section-link: #121384;
}
.section.theme--yellow {
  --section-bg: #ffe500;
  --section-text: #121384;
  --section-link: #121384;
}

.cookie-detail-settings {
  display: none;
}
.cookie-detail-settings.cookie-detail-settings--open {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.5);
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  width: 50rem;
  max-width: calc(100% - 2.5rem);
  max-height: 80vh;
  background-color: #ffffff;
  border-radius: 1.25rem;
  overflow: hidden;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__close-button {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__close-button:before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #121384;
  -webkit-mask: url("../Vendor/FontAwesome/svgs/solid/xmark.svg") no-repeat center/contain;
  mask: url("../Vendor/FontAwesome/svgs/solid/xmark.svg") no-repeat center/contain;
  transition: background-color 0.3s ease-in-out;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__close-button:hover:before, .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__close-button:focus-visible:before {
  background-color: #000000;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 3.125rem 3.125rem 1.25rem;
  overflow-y: auto;
}
@media only screen and (max-width: 576px) {
  .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow {
    padding: 2.5rem 1.25rem 0.9375rem;
  }
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__introduction .cookie-detail-settings__header {
  margin: 0;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__introduction .cookie-detail-settings__header h1, .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__introduction .cookie-detail-settings__header h2, .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__introduction .cookie-detail-settings__header h3, .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__introduction .cookie-detail-settings__header h4, .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__introduction .cookie-detail-settings__header h5 {
  margin: 0;
  font-size: 2.625rem !important;
  line-height: 3.125rem !important;
  font-weight: 200 !important;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__introduction .cookie-detail-settings__header h1, .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__introduction .cookie-detail-settings__header h2, .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__introduction .cookie-detail-settings__header h3, .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__introduction .cookie-detail-settings__header h4, .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__introduction .cookie-detail-settings__header h5 {
    font-size: 2rem !important;
    line-height: 2.625rem !important;
  }
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__introduction p {
  margin: 0.625rem 0 0;
  font-weight: 200;
  color: #000000;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list {
  margin: 0;
  padding: 0;
  list-style: none outside none;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item {
  margin: 0 0 0.625rem;
  padding: 0;
  list-style: none outside none;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item:last-child {
  margin-bottom: 0;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description label {
  flex: 1 1 0;
  min-width: 0;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.8125rem;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description label {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description input[type=checkbox] {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  position: relative;
  width: 2.75rem;
  height: 1.5rem;
  margin: 0;
  padding: 0;
  border-radius: 0.75rem;
  background-color: rgb(216.75, 216.75, 216.75);
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description input[type=checkbox]:before {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: #ffffff;
  transition: transform 0.3s ease-in-out;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description input[type=checkbox]:checked {
  background-color: #008000;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description input[type=checkbox]:checked:before {
  transform: translateX(1.25rem);
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description input[type=checkbox][disabled] {
  cursor: default;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description .cookie-detail-settings__button {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 0.3125rem;
  background-color: transparent;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description .cookie-detail-settings__button:before {
  content: "";
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #121384;
  -webkit-mask: url("../Vendor/FontAwesome/svgs/solid/chevron-down.svg") no-repeat center/contain;
  mask: url("../Vendor/FontAwesome/svgs/solid/chevron-down.svg") no-repeat center/contain;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description .cookie-detail-settings__button.cookie-detail-settings__button--opened {
  transform: rotate(180deg);
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description .cookie-detail-settings__hidden-content {
  display: none;
  flex: 0 0 100%;
  margin: 0.625rem 0 0;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description .cookie-detail-settings__hidden-content.cookie-detail-settings__hidden-content--show {
  display: block;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description .cookie-detail-settings__hidden-content p {
  margin: 0 0 0.625rem;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.75rem;
  color: #000000;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description .cookie-detail-settings__hidden-content .cookie-detail-settings__table-wrapper {
  width: 100%;
  overflow-x: auto;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description .cookie-detail-settings__hidden-content .cookie-detail-settings__table-wrapper .cookie-detail-settings__cookie-table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0 0.0625rem;
  background-color: rgba(18, 19, 132, 0.1);
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__overflow .cookie-detail-settings__list .cookie-detail-settings__list-item .cookie-detail-settings__description .cookie-detail-settings__hidden-content .cookie-detail-settings__table-wrapper .cookie-detail-settings__cookie-table td {
  padding: 0.625rem;
  background-color: #ffffff;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.75rem;
  color: #000000;
  white-space: nowrap;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__buttons {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.25rem;
  padding: 1.25rem 3.125rem 3.125rem;
}
@media only screen and (max-width: 576px) {
  .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__buttons {
    padding: 0.9375rem 1.25rem 1.875rem;
  }
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__buttons button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6875rem 0.9375rem;
  border: 0;
  border-radius: 0.3125rem;
  background-color: #121384;
  color: #ffffff;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__buttons button:hover, .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__buttons button:focus, .cookie-detail-settings.cookie-detail-settings--open .cookie-detail-settings__content .cookie-detail-settings__buttons button:focus-visible {
  background-color: #ffe500;
  color: #121384;
}

.tx-netl-social-media .netl-social-media-info {
  margin: 0 0 1.25rem;
}
.tx-netl-social-media .netl-social-media-info p {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.tx-netl-social-media .netl-social-media-content .youtube-wrap,
.tx-netl-social-media .netl-social-media-content .vimeo-wrap {
  position: relative;
}
.tx-netl-social-media .netl-social-media-content .youtube-wrap:before,
.tx-netl-social-media .netl-social-media-content .vimeo-wrap:before {
  content: " ";
  position: relative;
  display: block;
  padding-top: 56.25%;
}
.tx-netl-social-media .netl-social-media-content .youtube-wrap iframe,
.tx-netl-social-media .netl-social-media-content .vimeo-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.tx-netl-social-media.inactive .netl-social-media-inner-wrap {
  background-color: #efefef;
}
.tx-netl-social-media .netl-social-media-inner-wrap {
  background-color: rgb(207.6, 207.8, 230.4);
  width: 100%;
  padding: 1.25rem;
}

.tx-netl-gdpr .cookie-optin {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #121384;
}
.tx-netl-gdpr .cookie-optin .container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 3.375rem 4.375rem;
}
@media only screen and (max-width: 768px) {
  .tx-netl-gdpr .cookie-optin .container {
    padding: 1.875rem 1.25rem;
  }
}
.tx-netl-gdpr .cookie-optin .cookie-optin__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}
.tx-netl-gdpr .cookie-optin .cookie-optin__message {
  flex: 0 0 100%;
  margin: 0;
  color: #ffffff;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-weight: 200;
  font-size: 1.25rem;
  line-height: 1.875rem;
}
.tx-netl-gdpr .cookie-optin button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6875rem 0.9375rem;
  border: 0;
  border-radius: 0.3125rem;
  background-color: #ffffff;
  color: #121384;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.tx-netl-gdpr .cookie-optin button:hover, .tx-netl-gdpr .cookie-optin button:focus, .tx-netl-gdpr .cookie-optin button:focus-visible {
  background-color: #ffe500;
  color: #121384;
}

.news.news--details .news__image {
  text-align: center;
  background-color: #efefef;
}
@media only screen and (max-width: 1280px) {
  .news.news--details .news__image .container {
    padding: 0;
  }
}
.news.news--details .news__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news.news--details .news__content .news__fact-line {
  border-bottom: 3px dashed #efefef;
  padding: 1.25rem 0 0.9375rem;
}
.news.news--details .news__content .news__fact-line .news__date i {
  margin: 0 0.3125rem 0 0;
  color: #121384;
}
.news.news--details .news__content .news__back-link {
  border-top: 3px dashed #efefef;
  padding: 1.25rem 0;
}
.news.news--details .news__content .news__back-link a {
  color: #000000;
}
.news.news--details .news__content .news__back-link a i {
  color: #121384;
}
.news.news--details .news__content .news__back-link a:hover {
  border-bottom: 1px solid #000000;
}

.news .news__list .news__item {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem;
  row-gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.news .news__list .news__item .news__image {
  grid-column: 1/5;
}
@media only screen and (max-width: 992px) {
  .news .news__list .news__item .news__image {
    grid-column: 1/7;
  }
}
@media only screen and (max-width: 768px) {
  .news .news__list .news__item .news__image {
    grid-column: 1/13;
  }
}
.news .news__list .news__item .news__image .news__image-inner {
  height: 100%;
}
.news .news__list .news__item .news__image .news__image-inner a {
  display: block;
  width: 100%;
  height: 100%;
  border-bottom: 0;
}
.news .news__list .news__item .news__image .news__image-inner a:before {
  display: none;
}
.news .news__list .news__item .news__image .news__image-inner a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news .news__list .news__item .news__content {
  grid-column: 5/13;
}
@media only screen and (max-width: 992px) {
  .news .news__list .news__item .news__content {
    grid-column: 7/13;
  }
}
@media only screen and (max-width: 768px) {
  .news .news__list .news__item .news__content {
    grid-column: 1/13;
    padding: 0 1.25rem 1.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .news .news__list .news__item .news__content .news__heading {
    margin: 0 0 1.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .news .news__list .news__item .news__content .news__heading h3 {
    margin: 0;
  }
}
@media only screen and (max-width: 992px) {
  .news .news__list .news__item .news__content .news__text {
    display: none;
  }
}
.news .news__list .news__item .news__content a {
  border: none;
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: -0.125em;
  flex: none;
}
.icon svg {
  display: block;
  width: auto;
  height: 1em;
  fill: currentColor;
}