@charset "UTF-8";
/**
    Fonts
 */
/**
    Colors
 */
/* Font size */
.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;
}

.tag-list.tag-list--big {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tag-list.tag-list--big .tag-list__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 2.375rem;
  padding: 0 16px 0 0;
  background: #ffffff;
  color: #000000;
  border-radius: 4px;
  font-size: 1.125rem;
  line-height: 1;
  font-family: inherit;
  overflow: hidden;
}
.tag-list.tag-list--big .tag-list__tag i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
  background: #121384;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1;
}
.tag-list.tag-list--language {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tag-list.tag-list--language .tag-list__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 2.375rem;
  padding: 0 16px 0 0;
  background: rgb(207.6, 207.8, 230.4);
  color: #000000;
  border-radius: 4px;
  font-size: 1.125rem;
  line-height: 1;
  font-family: inherit;
  overflow: hidden;
}
.tag-list.tag-list--language .tag-list__tag i.flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.375rem;
  height: 2.375rem;
}
.tag-list.tag-list--language .tag-list__tag i.flag.flag--1 {
  background: url("../Icons/Flags/flag-de.png") no-repeat center center/cover;
}
.tag-list.tag-list--language .tag-list__tag i.flag.flag--2 {
  background: url("../Icons/Flags/flag-en.png") no-repeat center center/cover;
}
.tag-list.tag-list--language .tag-list__tag i.flag.flag--3 {
  background: url("../Icons/Flags/flag-es.png") no-repeat center center/cover;
}
.tag-list.tag-list--language .tag-list__tag i.flag.flag--5 {
  background: #121384;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: bold;
}
.tag-list.tag-list--language .tag-list__tag i.flag.flag--5::before {
  content: "…";
}

.paginator-wrap {
  margin-top: 32px;
}

.paginator {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.paginator li {
  color: #121384;
  font-size: 18px;
  line-height: 1;
}
.paginator li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  background: #ffffff;
  color: #121384;
  border: 2px solid #121384;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.paginator li > a:hover, .paginator li > a:focus {
  background: #121384;
  color: #ffffff;
  outline: none;
}
.paginator li > a:focus-visible {
  box-shadow: 0 0 0 3px rgba(23, 20, 143, 0.18);
}
.paginator li.current > a {
  background: #121384;
  color: #ffffff;
  pointer-events: none;
}
.paginator li.previous > a, .paginator li.next > a {
  padding: 0 16px;
  background: #121384;
  color: #ffffff;
}
.paginator li.previous > a:hover,
.paginator li.previous > a:focus, .paginator li.next > a:hover,
.paginator li.next > a:focus {
  background: #121384;
}

.default-list .default-list__item {
  background-color: rgb(231.3, 231.4, 242.7);
  border-radius: 0.625rem;
  margin-bottom: 1.25rem;
}
.default-list .default-list__item .image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.default-list .default-list__item .image.image--logo {
  padding: 1.875rem;
}
.default-list .default-list__item .image.image--logo img {
  border-radius: 0;
}
.default-list .default-list__item .image img {
  width: 100%;
  height: auto;
  border-radius: 0.625rem 0 0 0.625rem;
}
@media only screen and (max-width: 992px) {
  .default-list .default-list__item .image img {
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
.default-list .default-list__item .content {
  padding: 1.875rem;
}
@media only screen and (max-width: 768px) {
  .default-list .default-list__item .content {
    padding: 0 1.875rem 1.875rem 1.875rem;
  }
}
@media only screen and (max-width: 576px) {
  .default-list .default-list__item .content h2 {
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
.default-list .default-list__item .content h2 a {
  color: #000000;
}
.default-list .image.image--landscape {
  display: none;
}
@media only screen and (max-width: 768px) {
  .default-list .image.image--landscape {
    display: block;
  }
  .default-list .image.image--portrait {
    display: none;
  }
}