/**
 * Color Palette
 * -------------
 * This file defines the color palette and utility functions for the project.
 * It provides a structured way to manage and use colors consistently across the application.
 */
/**
 * Color retrieval function
 * ------------------------
 * Use this function to access colors from the palette.
 *
 * @param {string} $color-name - The name of the color (e.g., 'red', 'blue')
 * @param {string} $color-variant - The variant of the color (e.g., 'base', 'light')
 * @return {color} The requested color
 *
 * Usage: color('blue', 'primary')
 */
/**
 * Usage Examples
 * --------------
 * Uncomment and modify these examples as needed for your project.
 */
/* .alert-debug { */
/*     color: color('black'); */
/*     background-color: color('white'); */
/*     border-color: color('green', 'light'); */
/* } */
.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

:root, [data-bs-theme=light] {
  --bs-primary: #b0cf8d;
  --bs-primary-rgb: 176,207,141;
  --bs-link-color-rgb: var(--bs-primary-rgb);
  --bs-primary-hover: color-mix(in lch, var(--bs-primary) 90%, black 10%);
  --bs-primary-active: color-mix(in lch, var(--bs-primary) 80%, black 20%);
  --bs-text-on-primary-color: var(--bs-white);
  --bs-text-on-primary-color-hover: var(--bs-text-on-primary-color);
  --bs-text-on-primary-color-active: var(--bs-text-on-primary-color);
  --bs-text-on-primary-color-disabled: var(var(--bs-gray-200));
  --bs-font-sans-serif: "Lato", sans-serif;
  --bs-font-monospace: "Frank Ruhl Libre", serif;
  --bs-body-font-size: max(min(20px, calc( 0.32rem + 1.2vw )), 14px);
  --bs-font-size-lg: calc(1.2 * var(--bs-body-font-size));
  --bs-font-size-xl: calc(1.8 * var(--bs-body-font-size));
  --bs-link-color: var(--bs-primary);
  --bs-link-hover-color: var(--bs-primary-hover);
}

[data-bs-theme=dark] {
  color-scheme: dark;
  --bs-body-color: #ffffff;
  --bs-body-color-rgb: 255, 255, 255;
  --bs-body-bg: #1a2d52;
  --bs-body-bg-rgb: 26, 45, 82;
  --bs-primary-hover: #ffffff;
  --bs-primary-active: #ffffff;
  --bs-text-on-primary-color: var(--bs-body-bg);
  --bs-text-on-primary-color-hover: var(--bs-text-on-primary-color);
  --bs-text-on-primary-color-active: var(--bs-text-on-primary-color);
  --bs-text-on-primary-color-disabled: var(--bs-text-on-primary-color);
  --bs-link-color-rgb: var(--bs-primary-rgb);
  --bs-link-hover-color-rgb: var(--bs-body-color-rgb);
}

.btn-primary {
  --bs-btn-color: var(--bs-text-on-primary-color);
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-text-on-primary-color-hover);
  --bs-btn-hover-bg: var(--bs-primary-hover);
  --bs-btn-hover-border-color: var(--bs-primary-hover);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--bs-text-on-primary-color-active);
  --bs-btn-active-bg: var(--bs-primary-active);
  --bs-btn-active-border-color: var(--bs-primary-active);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-text-on-primary-color-disabled);
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-gradient: none;
}

a {
  text-decoration: none;
}

h1, .h1 {
  font-size: calc(2.4 * var(--bs-body-font-size));
}

h2, .h2 {
  font-size: var(--bs-font-size-xl);
}

h3, .h3, .fs-lg {
  font-size: var(--bs-font-size-lg);
}

h4, .h4 {
  font-size: var(--bs-body-font-size);
}

h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  font-weight: bold;
}

.btn-lg {
  --bs-btn-padding-y: 16px;
  --bs-btn-padding-y: 1rem;
  --bs-btn-padding-x: 32px;
  --bs-btn-padding-x: 2rem;
  --bs-btn-font-size: var(--bs-font-size-lg);
}

.btn-group {
  position: relative;
}
.btn-group .dropdown-menu {
  opacity: 0;
  -webkit-transition: 0.25s, -webkit-transform 0.25s ease;
  transition: 0.25s, -webkit-transform 0.25s ease;
  transition: 0.25s, transform 0.25s ease;
  transition: 0.25s, transform 0.25s ease, -webkit-transform 0.25s ease;
  visibility: hidden;
  display: block !important;
}
.btn-group .dropdown-menu:has(.dropdown-menu-inlet) {
  -webkit-transform: translate(0px, 70px) !important;
          transform: translate(0px, 70px) !important;
  padding-top: 19px;
  background: transparent;
  position: absolute;
  inset: 0px auto auto 0px;
  margin: 0px;
  border: transparent !important;
}
.btn-group .dropdown-menu:has(.dropdown-menu-inlet) ul.dropdown-menu-inlet {
  background: rgba(255, 255, 255, 0.8666666667);
  border-radius: 0.5rem;
  color: #1A2D52;
  list-style: none;
  padding: 12px 8px;
  padding: 0.75rem 0.5rem;
}
.btn-group button.dropdown-toggle::before {
  content: "";
  display: inline-block;
  height: var(--bs-body-font-size);
  width: var(--bs-body-font-size);
  background-image: url("/static/icons/Icon_Dreieck.e05f71a10331.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 0.5em 0 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
}
.btn-group button.dropdown-toggle.btn-lg::before {
  height: var(--bs-font-size-xl);
  width: var(--bs-font-size-xl);
  margin: 0 0.5em calc(-0.5 * (var(--bs-font-size-xl) - var(--bs-body-font-size))) 0;
}
.btn-group button.dropdown-toggle::after {
  content: none;
}
.btn-group button.dropdown-toggle[aria-expanded=true]::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.btn-group button.dropdown-toggle[aria-expanded=true] + .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

body {
  --font-family: "Lato", sans-serif;
  padding-top: 60px;
  padding-top: 3.75rem;
}

div.container {
  overflow: hidden;
}

section {
  padding: 40px 0;
  padding: 2.5rem 0;
  overflow: hidden;
}

.content {
  min-height: calc(100vh - 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 2;
}
.content .footer {
  margin-top: auto;
  margin-bottom: 0;
}

.cursor-pointer {
  cursor: pointer;
}

.share-icon {
  margin-left: 16px;
  margin-left: 1rem;
  height: calc(2 * var(--bs-body-font-size));
}
.share-icon svg {
  width: calc(2 * var(--bs-body-font-size));
  height: auto;
  max-height: calc(2 * var(--bs-body-font-size));
  fill: var(--bs-primary);
  margin-left: 0;
  margin-bottom: 0;
  margin-top: auto;
}
.share-icon:hover svg {
  fill: var(--bs-primary-hover) !important;
}

.filters .filter-button:has(svg) label.ev-checkbox-label {
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
  padding-bottom: 0 !important;
  padding-top: 8.8px !important;
  padding-top: 0.55rem !important;
}
.filters .filter-button:has(svg) svg {
  margin: 0px 0 8px 0;
  margin: 0rem 0 0.5rem 0;
}
.filters .filter-button label.ev-checkbox-label {
  padding: 16px;
  padding: 1rem;
}
.filters .filter-button input.ev-checkbox[type=checkbox] + label.ev-checkbox-label::before {
  content: "";
  display: inline-block;
  height: var(--bs-font-size-xl);
  width: var(--bs-font-size-xl);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 0.5em calc(-0.5 * (var(--bs-font-size-xl) - var(--bs-body-font-size))) 0;
}
.filters .filter-button input.ev-checkbox[type=checkbox]:not(:checked) + label.ev-checkbox-label::before {
  background-image: url("/static/icons/Icon_Quadrat.bade30a52b05.svg");
}
.filters .filter-button input.ev-checkbox[type=checkbox]:checked + label.ev-checkbox-label::before {
  background-image: url("/static/icons/Icon_Quadrat_mit_Haken.fc7cd1e2b3da.svg");
}
.filters .filter-button input.ev-checkbox[type=checkbox] {
  display: none;
}
.filters .filter-button label.ev-checkbox-label {
  cursor: pointer;
}
.filters .filter-button label.ev-checkbox-label .ev-checkbox-label-text {
  display: inline-block;
}
.filters .dropdown-menu label {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: min(350px, 90vw);
}

.filter-item.over-limit {
  display: none !important;
}

section:has(.filters .dropdown-menu) {
  min-height: max(75vh, 600px);
  overflow: visible;
}

.btn-group.ev-support-hover:has(.dropdown-menu):hover .dropdown-menu {
  display: block;
  visibility: visible;
  opacity: 1;
}
.btn-group.ev-support-hover:has(.dropdown-menu):hover button.dropdown-toggle::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.text-icon-wrapper svg {
  fill: var(--bs-body-color);
  height: var(--bs-body-font-size);
  width: auto;
}

a .text-icon-wrapper svg {
  fill: var(--bs-primary);
}
a:hover .text-icon-wrapper svg {
  fill: var(--bs-primary-hover);
}

.matomo-opt-out label.ev-checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.matomo-opt-out input.ev-checkbox[type=checkbox] + label.ev-checkbox-label::before {
  content: "";
  display: inline-block;
  height: var(--bs-font-size-xl);
  width: var(--bs-font-size-xl);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 0.5em calc(-0.5 * (var(--bs-font-size-xl) - var(--bs-body-font-size))) 0;
  padding: 15px;
  border: 2px solid rgb(var(--bs-primary-rgb)) !important;
  border-radius: 5px;
}
.matomo-opt-out input.ev-checkbox[type=checkbox]:not(:checked) + label.ev-checkbox-label::before {
  background-image: url("/static/icons/Icon_Quadrat.bade30a52b05.svg");
}
.matomo-opt-out input.ev-checkbox[type=checkbox]:checked + label.ev-checkbox-label::before {
  background-image: url("/static/icons/Icon_Quadrat_mit_Haken.fc7cd1e2b3da.svg");
}
.matomo-opt-out input.ev-checkbox[type=checkbox] {
  display: none;
}
.matomo-opt-out label.ev-checkbox-label {
  cursor: pointer;
}
.matomo-opt-out label.ev-checkbox-label .ev-checkbox-label-text {
  display: inline-block;
}

img.icon {
  font-size: inherit;
  line-height: inherit;
  height: 0.9em;
}

.news-image-wrapper .img-frame {
  width: 100%;
}
.news-image-wrapper .img-frame .img-body {
  width: 100%;
}
.news-image-wrapper .news-image {
  aspect-ratio: 1.5;
  max-height: calc(100vh - 25rem);
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-article section:first-child {
  padding-top: 16px;
  padding-top: 1rem;
}

.auto-centered {
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.share-btn {
  cursor: pointer;
}

.author .author-description .richtext p:last-child {
  margin-bottom: 0;
}

.news-item a.article-link {
  color: unset;
}
.news-item .news-title .external-link-icon {
  max-height: var(--bs-font-size-lg);
  stroke: white;
  stroke-width: 3px;
  width: 35px;
}
.news-item .news-thumbnail-container .news-thumbnail-div {
  background-size: cover;
  height: 100%;
  width: 100%;
  background-position: center center;
}
.news-item .news-description p {
  margin-bottom: 0;
}
.news-item.filter-show:has(~ .filter-show:not(.over-limit)) {
  border-bottom: 1px solid var(--bs-light);
}

#other-news .news-item:not(:last-of-type) {
  border-bottom: 1px solid var(--bs-light);
}

.img-frame {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.img-frame, .img-frame .img-body {
  max-height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.img-frame .img-footer {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  position: relative;
}
.img-frame .img-footer .text, .img-frame .img-footer .symbol {
  padding: 6.4px;
  padding: 0.4rem;
  color: white;
  background-color: rgba(0, 0, 0, 0.5333333333);
}
.img-frame .img-footer .text {
  display: none;
  border-radius: 0.4rem;
  font-size: 11.6px;
  padding: 3.2px 12.8px;
  padding: 0.2rem 0.8rem;
  font-weight: 400;
  line-height: 2;
}
.img-frame .img-footer .symbol {
  display: block;
  border-radius: 50%;
  height: 32px;
  height: 2rem;
  width: 32px;
  width: 2rem;
  font-size: 18.4px;
  font-size: 1.15rem;
}
.img-frame .img-footer .img-caption {
  text-align: left;
  left: 0;
}
.img-frame .img-footer .img-source {
  text-align: right;
  right: 0;
}
.img-frame .img-footer .img-annotation {
  position: absolute;
  bottom: 0;
  margin: 8px;
  margin: 0.5rem;
  max-width: 80%;
  min-height: 32px;
  min-height: 2rem;
  display: table;
}
.img-frame .img-footer .img-annotation .symbol {
  padding: 0 6px 0 6px;
  text-align: center;
  text-anchor: middle;
  line-height: 1.9;
  font-size: 18.4px;
  font-size: 1.15rem;
}
.img-frame .img-footer .img-annotation:hover .symbol {
  display: none;
}
.img-frame .img-footer .img-annotation:hover .text {
  display: table-cell;
  vertical-align: middle;
}

.img-navbar-brand {
  position: absolute;
  top: 0%;
  left: 0%;
  height: 80px;
  height: 5rem;
  width: auto;
}

@media screen and (min-width: 768px) {
  .img-navbar-brand {
    height: 7rem;
  }
}
.member-logos .member-portfolio-item {
  max-height: 56px;
  max-height: 3.5rem;
  width: auto;
  max-width: min(240px, 33% - 16px);
  max-width: min(15rem, 33% - 1rem);
  width: auto;
  min-width: 64px;
  min-width: 4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.member-logos .member-portfolio-item .member-logo {
  width: auto;
  margin-left: auto;
  margin-right: auto;
  max-height: 56px;
  max-height: 3.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767.98px) {
  .member-logos .member-portfolio-item {
    max-height: 2.5rem;
  }
  .member-logos .member-portfolio-item .member-logo {
    max-height: 2.5rem;
  }
}

section.contact-list .contacts-wrapper {
  margin-right: calc(-1.5 * var(--bs-gutter-x));
  margin-left: calc(-1.5 * var(--bs-gutter-x));
}

.navbar {
  --bs-navbar-color: #fff;
  --bs-navbar-hover-color: #fff;
  --bs-navbar-disabled-color: #fff;
  --bs-navbar-active-color: #fff;
}
.navbar .navbar-brand {
  margin-right: 48px;
  margin-right: 3rem;
}
@media (max-width: 991.98px) {
  .navbar .navbar-brand {
    margin-right: 1rem;
  }
}
.navbar .nav-items {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  --bs-navbar-nav-link-padding-x: 8px;
  --bs-navbar-nav-link-padding-x: 0.5rem;
}
@media (max-width: 991.98px) {
  .navbar .nav-items {
    --bs-navbar-nav-link-padding-y: 0rem;
    --bs-navbar-padding-y: 0rem;
  }
}
@media (min-width: 992px) {
  .navbar .nav-items .nav-item a.nav-link {
    --bs-navbar-nav-link-padding-x: 1rem;
  }
}
@media (max-width: 991.98px) {
  .navbar .nav-items .nav-item a.nav-link {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
  }
}
.navbar .fixed-buttons {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.navbar .fixed-buttons .contact-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navbar .navbar-collapse .contact-button {
  display: none;
}
@media (max-width: 767.98px) {
  .navbar .navbar-brand {
    padding: 0;
  }
  .navbar .container-fluid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .navbar .container-fluid .fixed-buttons {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .navbar .container-fluid .fixed-buttons .contact-button {
    display: none;
  }
  .navbar .container-fluid .navbar-collapse {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .navbar .container-fluid .navbar-collapse ul.nav-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .navbar .container-fluid .navbar-collapse ul.nav-items .nav-item {
    padding: 0;
  }
  .navbar .container-fluid .navbar-collapse ul.nav-items .nav-item a {
    width: 100%;
    padding: 0.75rem 1rem;
  }
  .navbar .container-fluid .navbar-collapse ul.nav-items .nav-item a .page-title {
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .navbar .container-fluid .navbar-collapse ul.nav-items .contact-button {
    display: block;
  }
}

.navbar-gfbio {
  background-color: #335AA3;
  font-family: var(--font-family);
  padding: 0;
}

.nav-lang-button {
  width: 48px;
  width: 3rem;
  height: 48px;
  height: 3rem;
  color: white;
  font-size: 20.8px;
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav-lang-button:hover {
  background-color: rgb(38.8457943925, 68.5514018692, 124.1542056075);
  color: white;
}

.nav-lang-button.nav-lang-active {
  background-color: rgb(26.691588785, 47.1028037383, 85.308411215);
  color: #B0CF8D;
}

.nav-search-input {
  border-radius: 75px 0 0 75px;
}

.nav-search-input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.nav-search-button {
  border-radius: 0 75px 75px 0;
}

.nav-item {
  padding-top: var(--bs-navbar-padding-y);
  padding-bottom: var(--bs-navbar-padding-y);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-item .nav-link {
  font-family: var(--font-family);
  text-decoration: none !important;
}
.nav-item .nav-link .page-title {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  font-weight: bold;
  text-decoration: none !important;
  line-height: 1;
  margin-top: 4px;
  margin-top: 0.25rem;
  margin-bottom: 4px;
  margin-bottom: 0.25rem;
}
.nav-item .nav-link:hover {
  color: #FFFFFF;
}
.nav-item .nav-link:hover .page-title {
  border-bottom: 1px solid var(--bs-navbar-hover-color);
}
.nav-item.active-page {
  background-color: rgb(38.8457943925, 68.5514018692, 124.1542056075);
}
.nav-item.active-page .nav-link .page-title {
  border-bottom: 1px solid var(--bs-navbar-hover-color);
}

@media (min-width: 768px) {
  .navbar-gfbio {
    overflow: visible;
  }
  .navbar-nav-gfbio {
    margin-left: 150px;
  }
}
.hero {
  max-height: 90vh;
}
.hero section.hero-block {
  padding-bottom: 10%;
  background-color: #B0CF8D !important;
  background-position: 66.6%;
  position: relative;
}
.hero section.hero-block .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hero section.hero-block .container .left-side {
  width: min(max(35vw, 320px), 640px);
  width: min(max(35vw, 20rem), 40rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-height: max(320px, 40vh);
  min-height: max(20rem, 40vh);
}
.hero section.hero-block .container .left-side h1.title {
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 60px;
}
.hero section.hero-block .container .left-side .subtitle {
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 30px;
}
.hero section.hero-block .container .left-side a.button {
  padding: 12px;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-family: var(--font-family);
  font-weight: bold;
  font-size: 30px;
  text-align: center;
}
.hero section.hero-block .container .left-side.background-shape {
  background-position: center;
  background-size: 100% 100%;
  text-align: center;
  padding: 48px;
  padding: 3rem;
  max-height: 60vh;
}
.hero section.hero-block .container .left-side.background-shape, .hero section.hero-block .container .left-side.background-shape h1, .hero section.hero-block .container .left-side.background-shape div {
  color: #335AA3;
}
.hero section.hero-block .container .left-side.background-shape a.button {
  background-color: #335AA3;
  border-color: #335AA3;
  color: white;
}
.hero section.hero-block .container .left-side.background-shape a.button:hover {
  background-color: white;
  color: #335AA3;
}
.hero section.hero-block .container .left-side:not(.background-shape), .hero section.hero-block .container .left-side:not(.background-shape) h1, .hero section.hero-block .container .left-side:not(.background-shape) div {
  color: #1A2D52;
}
.hero section.hero-block .container .left-side:not(.background-shape) a.button {
  background-color: white;
  color: #1A2D52;
}
.hero section.hero-block .container .left-side:not(.background-shape) a.button:hover {
  background-color: #1A2D52;
  color: white;
}
.hero section.hero-block .container .right-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 48px;
  padding-left: 3rem;
}
.hero section.hero-block .container .right-side .hero-text {
  color: #1A2D52;
  font-family: var(--font-family);
  font-weight: bold;
  font-size: var(--bs-font-size-lg);
}
.hero section.hero-block .container .right-side img {
  width: 100%;
  max-width: 50vw;
  height: auto;
  max-height: 66vh;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: 0;
}
.hero section.hero-block .wave-divider {
  position: absolute;
  bottom: 0;
  left: -3vw;
  right: -3vw;
  overflow: hidden;
  color-scheme: normal;
}
.hero section.hero-block .wave-divider object {
  width: 106vw;
  margin-bottom: -15px;
}
@media (max-width: 100rem) {
  .hero section.hero-block .container .left-side h1.title {
    font-size: 50px;
  }
  .hero section.hero-block .container .left-side .subtitle, .hero section.hero-block .container .left-side a.button {
    font-size: 25px;
  }
}
@media (max-width: 75rem) {
  .hero section.hero-block {
    padding-top: 2rem;
  }
  .hero section.hero-block .container .left-side h1.title {
    font-size: 40px;
  }
  .hero section.hero-block .container .left-side .subtitle, .hero section.hero-block .container .left-side a.button {
    font-size: 20px;
  }
}
@media (max-width: 50rem) {
  .hero section.hero-block {
    background-position: center;
  }
  .hero section.hero-block .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero section.hero-block .container .left-side {
    width: 100% !important;
    min-height: 25vh;
    max-height: 40vh;
  }
  .hero section.hero-block .container .right-side {
    margin-top: 1rem;
    width: 100%;
    padding-left: unset;
  }
  .hero section.hero-block .container .right-side img {
    max-width: unset;
    width: 100%;
    max-height: calc(50vh - 10rem);
    margin: auto;
  }
}
@media (max-height: 30rem) {
  .hero section.hero-block {
    padding-top: 0;
  }
}
.hero:not(.placeholder) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 48px;
  padding-top: 3rem;
  z-index: 0;
}
.hero.placeholder {
  opacity: 0;
  position: relative;
  z-index: -10000;
  margin-top: -16px;
  margin-top: -1rem;
  width: 100%;
}
.hero.placeholder section.hero-block {
  padding-bottom: 8%;
}

.wave-divider-container {
  position: relative;
}
.wave-divider-container .wave-divider {
  position: absolute;
  bottom: 0px;
  bottom: 0rem;
  z-index: 1;
  left: 0;
  right: 0;
  color-scheme: normal;
}
.wave-divider-container .wave-divider svg {
  width: 100%;
  margin-bottom: -5px;
  height: auto;
}

@media (min-width: 768px) {
  section.text-block .content-wrapper.text-with-image-right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
section.text-block .content-wrapper .image img {
  width: 100%;
  height: auto;
  border-radius: var(--bs-border-radius-xl);
}

section section.headline-block {
  padding-top: 0;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

section.horizontal-line-block {
  padding: 0;
}
section.horizontal-line-block hr {
  border: 1px white solid;
  border-radius: 2px;
  opacity: 1;
}

.richtext ul {
  padding-left: calc(1.5 * var(--bs-body-font-size));
}
.richtext ul li {
  list-style: none;
}
.richtext ul li::before {
  content: "";
  display: inline-block;
  height: var(--bs-body-font-size);
  width: var(--bs-body-font-size);
  background-image: url("/static/icons/Icon_Haken.11589234b4d6.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 calc(0.5 * var(--bs-body-font-size)) -0.25em calc(-1.5 * var(--bs-body-font-size));
}
.richtext .responsive-object:has(iframe[src*=youtube]) {
  padding-bottom: 16px !important;
  padding-bottom: 1rem !important;
}
.richtext .responsive-object:has(iframe[src*=youtube]) iframe {
  height: auto;
  width: 100%;
  aspect-ratio: 1.7777777778;
  max-height: 75vh;
  min-height: 40vh;
}

.projects-page .funding-block:has(img) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.projects-page .funding-block img {
  max-height: 192px;
  max-height: 12rem;
  width: auto;
  max-width: min(75vw, 100%);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: var(--bs-border-radius-xl);
}
.projects-page .funding-block img, .projects-page .funding-block .img-frame {
  margin: auto;
}
.projects-page .all-projects-button {
  margin-top: -32px;
  margin-top: -2rem;
  margin-bottom: 112px;
  margin-bottom: 7rem;
}
.projects-page .share-icon {
  max-height: calc(2 * var(--bs-body-font-size));
  width: calc(2 * var(--bs-body-font-size));
  margin-left: 16px;
  margin-left: 1rem;
}
.projects-page section.contacts {
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
}
.projects-page section.contacts section.contact-list {
  padding-top: 0;
  padding-bottom: 0;
}

section.tiles-container {
  overflow: visible;
}
section.tiles-container .tiles-wrapper .tile {
  background-color: #B0CF8D;
  border-radius: 1rem;
}
section.tiles-container .tiles-wrapper .tile, section.tiles-container .tiles-wrapper .tile > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.tiles-container .tiles-wrapper .tile:has(a[href]) {
  cursor: pointer;
}
section.tiles-container .tiles-wrapper .tile:has(a[href]):hover {
  background-color: white;
}
section.tiles-container .tiles-wrapper .tile:has(a[href]):hover .link-text-span {
  border-bottom: 1px solid #1A2D52;
}
section.tiles-container .tiles-wrapper .tile.image-tile:hover .image-cover, section.tiles-container .tiles-wrapper .tile.image-tile-with-icon:hover .image-cover {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
  opacity: 0 !important;
  -webkit-transition: all 0.1s 0s linear !important;
  transition: all 0.1s 0s linear !important;
}
section.tiles-container .tiles-wrapper .tile.image-tile:hover .tile-text, section.tiles-container .tiles-wrapper .tile.image-tile-with-icon:hover .tile-text {
  opacity: 1 !important;
  -webkit-transition: all 0.1s 0.05s linear !important;
  transition: all 0.1s 0.05s linear !important;
}
section.tiles-container .tiles-wrapper .tile.image-tile-with-icon:hover .tile-cover .tile-title {
  opacity: 0;
  -webkit-transition: opacity 0.1s 0s linear !important;
  transition: opacity 0.1s 0s linear !important;
}
section.tiles-container .tiles-wrapper .tile > a {
  height: 100%;
}
section.tiles-container .tiles-wrapper .tile .icon-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 16px 23%;
  padding: 1rem 23%;
}
section.tiles-container .tiles-wrapper .tile .icon-wrapper .icon-circle {
  width: 100%;
  border-radius: 50%;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1;
}
section.tiles-container .tiles-wrapper .tile .icon-wrapper .icon-circle img {
  width: 70%;
  height: auto;
  margin: auto;
  max-height: 70%;
  max-width: 70%;
}
section.tiles-container .tiles-wrapper .tile .tile-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 12px 12px 12px;
  padding: 0 0.75rem 0.75rem 0.75rem;
  color: #1A2D52;
}
section.tiles-container .tiles-wrapper .tile .tile-body .text-wrapper .tile-text {
  -ms-hyphens: auto;
      hyphens: auto;
}
section.tiles-container .tiles-wrapper .tile .tile-body .text-wrapper .fact {
  font-size: calc(2.8 * var(--bs-body-font-size));
  font-weight: bold;
  line-height: 1;
}
section.tiles-container .tiles-wrapper .tile .tile-body .text-wrapper .fact-text {
  font-size: calc(1.2 * var(--bs-body-font-size));
}
section.tiles-container .tiles-wrapper .tile .tile-body .link-text {
  font-weight: bold;
}
section.tiles-container .tiles-wrapper .tile .tile-body .link-text svg {
  height: var(--bs-body-font-size);
  width: auto;
  vertical-align: sub;
  margin-left: 4px;
  margin-left: 0.25rem;
}
section.tiles-container .tiles-wrapper .tile.image-tile, section.tiles-container .tiles-wrapper .tile.image-tile-with-icon {
  background-color: #FFFFFF;
}
section.tiles-container .tiles-wrapper .tile.image-tile .tile-body, section.tiles-container .tiles-wrapper .tile.image-tile-with-icon .tile-body {
  padding: 0;
  min-height: 250px;
}
section.tiles-container .tiles-wrapper .tile.image-tile .tile-title, section.tiles-container .tiles-wrapper .tile.image-tile-with-icon .tile-title {
  margin-top: 16px;
  margin-top: 1rem;
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
section.tiles-container .tiles-wrapper .tile.image-tile .text-wrapper, section.tiles-container .tiles-wrapper .tile.image-tile-with-icon .text-wrapper {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 12px 12px 12px;
  padding: 0 0.75rem 0.75rem 0.75rem;
}
section.tiles-container .tiles-wrapper .tile.image-tile .text-wrapper .tile-text, section.tiles-container .tiles-wrapper .tile.image-tile-with-icon .text-wrapper .tile-text {
  opacity: 0;
  -webkit-transition: opacity 0.05s 0.5s linear;
  transition: opacity 0.05s 0.5s linear;
}
section.tiles-container .tiles-wrapper .tile.image-tile .text-wrapper .title-placholder, section.tiles-container .tiles-wrapper .tile.image-tile-with-icon .text-wrapper .title-placholder {
  color: transparent;
}
section.tiles-container .tiles-wrapper .tile.image-tile .link-text, section.tiles-container .tiles-wrapper .tile.image-tile-with-icon .link-text {
  padding: 0 12px 12px 12px;
  padding: 0 0.75rem 0.75rem 0.75rem;
}
section.tiles-container .tiles-wrapper .tile.image-tile .tile-cover, section.tiles-container .tiles-wrapper .tile.image-tile-with-icon .tile-cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
section.tiles-container .tiles-wrapper .tile.image-tile .tile-cover .image-cover, section.tiles-container .tiles-wrapper .tile.image-tile-with-icon .tile-cover .image-cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  opacity: 1;
  -webkit-transition: all 0.1s 0.5s linear;
  transition: all 0.1s 0.5s linear;
  border-top-left-radius: 16px;
  border-top-left-radius: 1rem;
  border-top-right-radius: 16px;
  border-top-right-radius: 1rem;
}
section.tiles-container .tiles-wrapper .tile.image-tile-with-icon .tile-cover .tile-title {
  opacity: 1;
  -webkit-transition: opacity 0.1s 0.5s linear;
  transition: opacity 0.1s 0.5s linear;
}
section.tiles-container .tiles-wrapper .tile.image-tile-with-icon .text-wrapper > .tile-title {
  padding-top: 8px;
  padding-top: 0.5rem;
  padding-right: 112px;
  padding-right: 7rem;
}
section.tiles-container .tiles-wrapper .tile.image-tile-with-icon .icon-badge {
  border-radius: 50%;
  background-color: #FFFFFF;
  height: 64px;
  height: 4rem;
  width: 64px;
  width: 4rem;
  position: absolute;
  right: 8px;
  right: 0.5rem;
  top: 8px;
  top: 0.5rem;
}
section.tiles-container .tiles-wrapper .tile.image-tile-with-icon .icon-badge svg, section.tiles-container .tiles-wrapper .tile.image-tile-with-icon .icon-badge .icon {
  margin: 8px;
  margin: 0.5rem;
  height: 48px;
  height: 3rem;
  width: 48px;
  width: 3rem;
}
section.tiles-container .tiles-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  --tiles-gutter: 2vw;
  --tiles-per-row: 2;
  margin: calc(-1 * var(--tiles-gutter) / 2);
}
section.tiles-container .tiles-wrapper .tile {
  margin: calc(var(--tiles-gutter) / 2);
  width: calc((100% - (var(--tiles-per-row)) * var(--tiles-gutter)) / var(--tiles-per-row) - 1px);
}
@media (max-width: 410px) {
  section.tiles-container.rows-of-4-tiles {
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
  }
  section.tiles-container.rows-of-4-tiles .head {
    margin-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: calc(var(--bs-gutter-x) * 0.5);
  }
}
@media (max-width: 410px) {
  section.tiles-container.rows-of-4-tiles .tiles-wrapper {
    --tiles-gutter: 1rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: scroll;
  }
  section.tiles-container.rows-of-4-tiles .tiles-wrapper .tile {
    min-width: 250px;
    width: 250px;
    max-width: 250px;
  }
  section.tiles-container.rows-of-4-tiles .tiles-wrapper .tile:first-child {
    margin-left: calc(var(--bs-gutter-x) * 2);
  }
  section.tiles-container.rows-of-4-tiles .tiles-wrapper .tile:last-child {
    margin-right: calc(var(--bs-gutter-x) * 2);
  }
}
@media (min-width: 768px) {
  section.tiles-container.rows-of-4-tiles .tiles-wrapper {
    --tiles-per-row: 3;
  }
}
@media (min-width: 992px) {
  section.tiles-container.rows-of-4-tiles .tiles-wrapper {
    --tiles-gutter: 2rem;
  }
}
@media (min-width: 1200px) {
  section.tiles-container.rows-of-4-tiles .tiles-wrapper {
    --tiles-per-row: 4;
    --tiles-gutter: 1vw;
  }
}
@media (min-width: 1400px) {
  section.tiles-container.rows-of-4-tiles .tiles-wrapper {
    --tiles-gutter: 2rem;
  }
}
@media (max-width: 767.98px) {
  section.tiles-container.rows-of-3-tiles {
    margin-left: calc(var(--bs-gutter-x) * -0.5);
    margin-right: calc(var(--bs-gutter-x) * -0.5);
  }
  section.tiles-container.rows-of-3-tiles .head {
    margin-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: calc(var(--bs-gutter-x) * 0.5);
  }
}
section.tiles-container.rows-of-3-tiles .tiles-wrapper {
  --tiles-per-row: 1;
  --tiles-gutter: 32px;
  --tiles-gutter: 2rem;
}
@media (max-width: 767.98px) {
  section.tiles-container.rows-of-3-tiles .tiles-wrapper {
    --tiles-per-row: 1;
    --tiles-gutter: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.tiles-container.rows-of-3-tiles .tiles-wrapper .tile {
    max-width: 350px;
  }
}
@media (max-width: 575.98px) {
  section.tiles-container.rows-of-3-tiles .tiles-wrapper {
    --tiles-gutter: 1rem;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    overflow-x: scroll;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  section.tiles-container.rows-of-3-tiles .tiles-wrapper .tile {
    min-width: min(max(80vw, 280px), 350px);
  }
  section.tiles-container.rows-of-3-tiles .tiles-wrapper .filter-item.over-limit {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media (min-width: 768px) {
  section.tiles-container.rows-of-3-tiles .tiles-wrapper {
    --tiles-per-row: 2;
    --tiles-gutter: 2rem;
  }
}
@media (min-width: 992px) {
  section.tiles-container.rows-of-3-tiles .tiles-wrapper {
    --tiles-per-row: 3;
    --tiles-gutter: 1vw;
  }
}
@media (min-width: 1200px) {
  section.tiles-container.rows-of-3-tiles .tiles-wrapper {
    --tiles-gutter: 2rem;
  }
}
@media (max-width: 575.98px) {
  section.tiles-container .more-button {
    display: none;
  }
}

.footer {
  width: 100%;
  min-height: 200px;
  background-color: #142141;
  background-repeat: no-repeat;
  background-size: contain;
  background-clip: border-box;
  background-position-x: right;
  background-position-y: bottom;
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 16px;
  padding-bottom: 1rem;
}
.footer .item {
  line-height: 2.5;
  font-weight: bold;
}
.footer .item a {
  color: #FFFFFF;
}
.footer .item a .page-title {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.footer .item a:hover .page-title {
  border-bottom: 1px solid #FFFFFF;
}
.footer .item a .icon-line {
  stroke: #FFFFFF;
  stroke-width: 3px;
}
.footer .item a .external-link-icon {
  height: var(--bs-body-font-size);
}
.footer .copyright {
  color: #B0CF8D;
}

.footer .container {
  display: grid;
  grid-auto-columns: min(20vw, 430px) min(20vw, 430px) min(20vw, 430px);
  grid-auto-rows: auto auto;
}
.footer .container .col-1, .footer .container .col-2, .footer .container .col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.footer .container .col-1 {
  grid-column: 1;
  grid-row-start: 1;
  grid-row-end: 3;
}
.footer .container .col-2 {
  grid-column: 2;
  grid-row: 1;
}
.footer .container .col-3 {
  grid-column: 3;
  grid-row: 1;
}
.footer .container .copyright {
  grid-row: 2;
  grid-column-start: 2;
  grid-column-end: 4;
}
@media (max-width: 1399.98px) {
  .footer {
    background-size: 35vw;
    min-height: 150px;
  }
  .footer .container {
    grid-auto-columns: 25% 25% 15%;
  }
}
@media (max-width: 991.98px) {
  .footer {
    background-size: 25vw;
    min-height: 340px;
  }
  .footer .container {
    grid-auto-columns: 40% 40% 20%;
  }
  .footer .container .col-1 {
    grid-row: 1;
  }
  .footer .container .copyright {
    grid-row: 2;
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (max-width: 767.98px) {
  .footer {
    background-size: 40vw;
  }
  .footer .container {
    grid-auto-columns: 50% 50%;
    grid-row: auto auto auto;
  }
  .footer .container .col-3 {
    margin-top: 2rem;
    grid-column: 1;
    grid-row: 2;
  }
  .footer .container .copyright {
    margin-top: 2rem;
    grid-row: 3;
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
@media (max-width: 410px) {
  .footer {
    background-size: 60vw;
    padding-bottom: 40vw;
  }
  .footer .container {
    grid-auto-columns: 100%;
    grid-auto-rows: auto auto auto auto;
  }
  .footer .container .col-1, .footer .container .col-2, .footer .container .col-3, .footer .container .copyright {
    grid-column: 1;
    margin-bottom: 2rem;
  }
  .footer .container .col-1 {
    grid-row: 1;
  }
  .footer .container .col-2 {
    grid-row: 2;
  }
  .footer .container .col-3 {
    grid-row: 3;
  }
  .footer .container .copyright {
    grid-row: 4;
  }
}