@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease-in-out;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto/roboto-regular.woff2") format("woff2"), url("../fonts/roboto/roboto-regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto/roboto-regular-italic.woff2") format("woff2"), url("../fonts/roboto/roboto-regular-italic.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/roboto/roboto-medium.woff2") format("woff2"), url("../fonts/roboto/roboto-medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/roboto/roboto-medium-italic.woff2") format("woff2"), url("../fonts/roboto/roboto-medium-italic.ttf") format("truetype");
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #646875;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #123592;
}

h1, .h1 {
  font-size: 2.25rem;
}
@media (min-width: 1024px) {
  h1, .h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 4.875rem;
  }
}

h2, .h2 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 1.25rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

strong,
b {
  font-weight: 500;
}

a:hover {
  color: #123592;
}

.site-content {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
  min-height: 60vh;
  z-index: 50;
}
@media (min-width: 1440px) {
  .site-content {
    padding: 0;
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-full {
  width: 100%;
  padding: 0 1rem;
}

.hero-section,
.hero-section.alignfull,
.full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: 1rem;
  padding-right: 1rem;
}

.alignwide {
  max-width: calc(1440px);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  max-width: 100%;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
  margin-right: 1rem;
}

.alignright {
  float: right;
  margin-left: 1rem;
}

.site-header {
  background-color: #ffffff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .site-header__container {
    flex-wrap: nowrap;
  }
}
@media (min-width: 1441px) {
  .site-header__container {
    padding: 0;
  }
}
.site-header__logo img {
  width: 114px;
  height: auto;
}
@media (min-width: 768px) {
  .site-header__logo img {
    width: 227px;
  }
}
.site-header__navigation {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
  order: 3;
  background-color: #123592;
}
@media (min-width: 1024px) {
  .site-header__navigation {
    position: static;
    flex-direction: row;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    gap: clamp(1rem, 2vw, 8rem);
    order: initial;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
  }
}
@media (min-width: 1440px) {
  .site-header__navigation {
    gap: clamp(1rem, 4vw, 8rem);
  }
}
.site-header__menu-toggle {
  display: block;
  order: 2;
  font-size: 1.5rem;
  color: #123592;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.site-header__menu-toggle .hamburger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: relative;
}
.site-header__menu-toggle .hamburger-icon svg {
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.site-header__menu-toggle .icon-menu-close {
  display: none;
}
.site-header__menu-toggle[aria-expanded=true] .icon-menu-open {
  display: none;
}
.site-header__menu-toggle[aria-expanded=true] .icon-menu-close {
  display: block;
}
@media (min-width: 1024px) {
  .site-header__menu-toggle {
    display: none;
  }
}

.blog-archive {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .blog-archive {
    padding: 6rem 2rem;
  }
}
@media (min-width: 1440px) {
  .blog-archive {
    padding: 6rem 0;
  }
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 7.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem;
    margin-right: -2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1024px) {
  .blog-posts-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-right: 0;
    padding-right: 0;
  }
}

.blog-post-card {
  position: relative;
}
@media (min-width: 768px) {
  .blog-post-card:not(:nth-child(2n))::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #123592;
  }
}
@media (min-width: 1024px) {
  .blog-post-card::after {
    display: none;
  }
  .blog-post-card:not(:nth-child(3n))::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #123592;
    display: block;
  }
}

.blog-post-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-post-card__inner .post-thumbnail {
  margin-bottom: 2.25rem;
}
.blog-post-card__inner .post-thumbnail a {
  display: block;
  overflow: hidden;
}
.blog-post-card__inner .post-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.blog-post-card__inner .post-thumbnail a:hover img {
  transform: scale(1.05);
}
.blog-post-card__inner .post-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 500;
}
.blog-post-card__inner .post-date {
  font-weight: 500;
}
.blog-post-card__inner .post-categories a {
  color: #646875;
  text-decoration: none;
}
.blog-post-card__inner .post-categories a:hover {
  text-decoration: underline;
}
.blog-post-card__inner .post-title {
  margin-bottom: 1.5rem;
}
.blog-post-card__inner .post-title a {
  color: #123592;
  text-decoration: none;
}
.blog-post-card__inner .post-title a:hover {
  color: #000000;
}
.blog-post-card__inner .post-excerpt {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #646875;
  margin-bottom: 2.25rem;
  flex-grow: 1;
}
.blog-post-card__inner .post-excerpt p {
  margin-bottom: 0;
}
.blog-post-card__inner .read-more {
  color: #123592;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  display: inline-block;
  margin-top: auto;
}
.blog-post-card__inner .read-more:hover {
  text-decoration: underline;
}

.pagination {
  margin-top: 4rem;
}
.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  gap: 1rem;
  position: relative;
}
.pagination .page-numbers {
  padding: 0.5rem 1rem;
  color: #123592;
  text-decoration: none;
  border: 1px solid #123592;
  transition: all 0.3s ease-in-out;
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
  background-color: rgba(18, 53, 146, 0.1);
  color: #123592;
}
.pagination .page-numbers.dots {
  border: none;
  cursor: default;
}
.pagination .page-numbers.dots:hover {
  background-color: transparent;
  color: #123592;
}
.pagination .prev,
.pagination .next {
  font-weight: 500;
  position: absolute;
  padding: 0.5rem;
}
.pagination .prev a,
.pagination .next a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 1px solid #123592;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.pagination .prev a:hover,
.pagination .next a:hover {
  background-color: rgba(18, 53, 146, 0.1);
}
.pagination .prev .pagination-arrow,
.pagination .next .pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.pagination .prev .pagination-arrow img,
.pagination .next .pagination-arrow img {
  width: 100%;
  height: 100%;
  display: block;
  transition: filter 0.3s ease-in-out;
}
.pagination .prev .pagination-arrow--prev img,
.pagination .next .pagination-arrow--prev img {
  transform: rotate(180deg);
}
.pagination .prev a:hover .pagination-arrow img,
.pagination .next a:hover .pagination-arrow img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(94%) saturate(2571%) hue-rotate(215deg);
}
.pagination .prev {
  left: 0;
}
.pagination .next {
  right: 0;
}
.pagination .page-numbers:not(.prev):not(.next) {
  position: static;
}

.archive-cover {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 1rem 3rem;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .archive-cover {
    min-height: 620px;
  }
}
.archive-cover img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.archive-cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.archive-cover__content {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  width: 100%;
  padding: 2rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .archive-cover__content {
    padding: 0;
  }
}
.archive-cover__content h1 {
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.archive-cover__content .archive-teaser {
  font-size: 18px;
  line-height: 1.5;
  max-width: 700px;
}
.archive-cover__content .archive-teaser p:last-child {
  margin-bottom: 0;
}

.blog-posts-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .blog-posts-wrapper {
    padding: 5rem 0;
  }
}

.contact-row {
  column-gap: 3.75rem;
  gap: 3.5rem;
}
.contact-row .contact-txt {
  font-size: 18px;
}

.contact-grid {
  row-gap: 3.5rem;
  column-gap: 0;
}
.contact-grid .wp-block-heading {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: #000000;
}
.contact-grid p {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  color: #123592;
}

.contact-map {
  margin-bottom: 10rem;
}

.single-post__header-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}
@media (min-width: 1024px) {
  .single-post__header-wrapper {
    padding: 6rem 2rem 4rem;
  }
}

.single-post__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .single-post__header {
    grid-template-columns: minmax(auto, 992px) 1fr;
    gap: 0;
  }
}

@media (min-width: 768px) {
  .single-post__title-col {
    border-right: 1px solid #123592;
    padding-right: 2rem;
  }
}
.single-post__title-col .entry-title {
  margin: 0;
  color: #123592;
}

@media (min-width: 768px) {
  .single-post__meta-col {
    padding-left: 3rem;
  }
}
.single-post__meta-col .post-meta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
}
.single-post__meta-col .post-date-wrapper,
.single-post__meta-col .post-categories,
.single-post__meta-col .post-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.single-post__meta-col .meta-label {
  font-weight: 400;
  color: #000000;
}
.single-post__meta-col .post-date,
.single-post__meta-col .author-name {
  font-weight: 400;
  color: #646875;
}
.single-post__meta-col .post-categories {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.single-post__meta-col .post-categories .categories-list a {
  font-weight: 400;
  color: #646875;
  text-decoration: none;
}
.single-post__meta-col .post-categories .categories-list a:hover {
  text-decoration: underline;
}

.single-post__featured-image {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 620px;
  overflow: hidden;
}
.single-post__featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-post__content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
@media (min-width: 1024px) {
  .single-post__content-wrapper {
    padding: 6rem 2rem;
  }
}

.entry-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #646875;
}
.entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  color: #123592;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.entry-content p {
  margin-bottom: 2rem;
}
.entry-content a {
  color: #123592;
  text-decoration: underline;
}
.entry-content a:hover {
  color: #000000;
}
.entry-content ul, .entry-content ol {
  margin-bottom: 2rem;
  padding-left: 3rem;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 3rem 0;
}

.single-post__related-wrapper {
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .single-post__related-wrapper {
    padding: 6rem 0;
  }
}

.single-post__related {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}
.single-post__related .related-posts-title {
  color: #123592;
  margin-bottom: 4rem;
}
.single-post__related .blog-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4rem;
}
@media (min-width: 768px) {
  .single-post__related .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4rem;
  }
}
@media (min-width: 1024px) {
  .single-post__related .blog-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.single-post__related .blog-post-card {
  position: relative;
}
@media (min-width: 768px) {
  .single-post__related .blog-post-card:not(:nth-child(2n))::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #123592;
  }
}
@media (min-width: 1024px) {
  .single-post__related .blog-post-card::after {
    display: none;
  }
  .single-post__related .blog-post-card:not(:nth-child(3n))::after {
    content: "";
    position: absolute;
    right: -2rem;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #123592;
    display: block;
  }
}

.single-post__navigation-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
@media (min-width: 1024px) {
  .single-post__navigation-wrapper {
    padding: 6rem 2rem;
  }
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid #123592;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 0 0 auto;
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #123592;
  color: #123592;
  transition: all 0.3s ease-in-out;
}
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  background-color: rgba(18, 53, 146, 0.1);
}
.post-navigation .nav-previous a img,
.post-navigation .nav-next a img {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease-in-out;
}
.post-navigation .nav-previous a img {
  transform: rotate(180deg);
}
.post-navigation .nav-all {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}
.post-navigation .nav-all a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  background-color: #ffffff;
  color: #123592;
  border: 1px solid #123592;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.post-navigation .nav-all a:hover {
  background-color: rgba(18, 53, 146, 0.1);
}
.post-navigation .nav-all a img {
  width: 24px;
  height: 24px;
}

.site-footer {
  background-color: #ffffff;
  margin-top: 4.875rem;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (min-width: 1200px) {
  .site-footer {
    margin-top: 10rem;
  }
}
@media (min-width: 1440px) {
  .site-footer {
    padding-right: 0;
    padding-left: 0;
  }
}
.site-footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 1px solid #123592;
}
.site-footer__widgets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  row-gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 480px) {
  .site-footer__widgets {
    grid-template-columns: repeat(2, 1fr);
  }
  .site-footer__widgets .site-footer__widget:nth-child(1) {
    grid-column: 1/-1;
  }
  .site-footer__widgets .site-footer__widget:nth-child(3), .site-footer__widgets .site-footer__widget:nth-child(4) {
    grid-column: span 1;
  }
  .site-footer__widgets .site-footer__widget:nth-child(5) {
    grid-column: 1/-1;
  }
}
@media (min-width: 768px) {
  .site-footer__widgets {
    grid-template-columns: repeat(3, 1fr);
  }
  .site-footer__widgets .site-footer__widget:nth-child(1) {
    grid-column: 1/-1;
  }
  .site-footer__widgets .site-footer__widget:nth-child(3), .site-footer__widgets .site-footer__widget:nth-child(4), .site-footer__widgets .site-footer__widget:nth-child(5) {
    grid-column: span 1;
  }
}
@media (min-width: 1200px) {
  .site-footer__widgets {
    grid-template-columns: 2.5fr repeat(4, 1fr);
  }
  .site-footer__widgets .site-footer__widget {
    grid-column: span 1;
  }
  .site-footer__widgets .site-footer__widget:nth-child(1) {
    grid-column: 1;
  }
}
.site-footer__widget--logo .widget-title {
  display: none;
}
.site-footer__widget--logo .widget_media_image img {
  max-width: 227px;
  height: auto;
}
.site-footer__widget--logo .wp-block-image {
  margin-bottom: 1.5rem;
}
.site-footer__widget--logo .widget_text p {
  margin-bottom: 0;
}
.site-footer__widget--trust {
  display: none;
}
@media (min-width: 1200px) {
  .site-footer__widget--trust {
    display: grid;
    grid-template-columns: auto 156px;
  }
}
.site-footer__widget--trust img {
  max-width: 120px;
  margin-bottom: 0.5rem;
}
.site-footer__widget--trust p {
  font-size: 0.875rem;
}
.site-footer__widget--contact .phone {
  font-weight: 500;
  font-size: 1.125rem;
  color: #123592;
}
.site-footer__widget--contact .menu {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.site-footer__widget--contact .menu li {
  display: flex;
}
.site-footer__widget--contact .menu li a {
  color: #123592;
}
.site-footer__widget--contact .menu li a:hover {
  color: #000000;
}

.site-footer .widget_nav_menu .widget-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #000000;
}
.site-footer .widget_nav_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .widget_nav_menu ul li {
  margin-bottom: 1rem;
}
.site-footer .widget_nav_menu ul li a {
  color: #000000;
  font-size: 1.125rem;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
}
.site-footer .widget_nav_menu ul li a:hover {
  color: #123592;
}
.site-footer .widget_nav_menu ul .current-menu-item > a,
.site-footer .widget_nav_menu ul .current_page_item > a {
  color: #123592;
  font-weight: 500;
}
.site-footer .widget_nav_menu .sub-menu {
  padding-left: 1rem;
  margin-top: 0.5rem;
}
.site-footer .footer-widget--contact ul li {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  justify-content: flex-start;
}
.site-footer .footer-widget--contact ul li a {
  color: #123592;
}
.site-footer .footer-widget--contact ul li a:hover {
  color: #000000;
}
.site-footer .footer-widget--contact ul li.menu-item-phone {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}
@media (min-width: 768px) {
  .site-footer .footer-widget--contact ul li.menu-item-phone {
    justify-content: flex-start;
  }
}
.site-footer .footer-widget--contact ul li.menu-item-phone a {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
  background-color: #ffffff;
  color: #123592;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer .footer-widget--contact ul li.menu-item-phone a {
    max-width: 208px;
  }
}
.site-footer .footer-widget--contact ul li.menu-item-phone a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 8px;
}
.site-footer .footer-widget--contact ul .contact-button {
  display: flex;
  flex-grow: 1;
}
.site-footer .footer-widget--contact ul .contact-button a {
  display: inline-block;
  width: 100%;
  margin-bottom: 0;
  padding: 0.625rem 0;
  background-color: #ffffff;
  color: #123592;
  border: 1px solid #123592;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer .footer-widget--contact ul .contact-button a {
    max-width: 208px;
  }
}
.site-footer .footer-widget--contact ul .contact-button a:hover {
  background-color: #123592;
  color: #ffffff;
}
.site-footer .widget_text .widget-title {
  font-weight: 500;
  margin-bottom: 1rem;
  color: #000000;
}
.site-footer .widget_text p {
  font-size: 1.125rem;
  color: #646875;
  line-height: 1.5;
}
.site-footer .widget_media_image img {
  max-width: 100%;
  height: auto;
}
.site-footer .widget_custom_html .widget-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #000000;
}

.footer-navigation .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-navigation .footer-menu li {
  margin-bottom: 1rem;
}
.footer-navigation .footer-menu li a {
  color: #000000;
  font-size: 1.125rem;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}
.footer-navigation .footer-menu li a:hover {
  color: #123592;
}
.footer-navigation .footer-menu .current-menu-item > a,
.footer-navigation .footer-menu .current_page_item > a {
  color: #123592;
  font-weight: 500;
}

.main-navigation ul {
  flex-direction: column;
  width: 100%;
  display: flex;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, padding 0.4s ease-in-out;
}
.main-navigation ul.is-open {
  max-height: 1000px;
  padding: 3.75rem 1.25rem;
  opacity: 1;
}
@media (min-width: 1024px) {
  .main-navigation ul {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: center;
    width: auto;
    max-height: none;
    overflow: visible;
    opacity: 1;
    padding: 0;
  }
}
.main-navigation li {
  position: relative;
  padding: 1rem;
  border-top: 1px solid #ffffff;
}
.main-navigation li:last-child {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 1024px) {
  .main-navigation li {
    padding: 0;
    border-top: 0;
  }
  .main-navigation li:last-child {
    border-bottom: 0;
  }
}
.main-navigation a {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease-in-out;
  color: #ffffff;
}
.main-navigation a:hover {
  color: #123592;
}
@media (min-width: 1024px) {
  .main-navigation a {
    color: #000000;
  }
  .main-navigation a:hover {
    color: #123592;
  }
}
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: #ffffff;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .main-navigation .current-menu-item > a,
  .main-navigation .current_page_item > a {
    color: #123592;
    border-bottom: 2px solid #123592;
  }
}
.main-navigation .sub-menu {
  display: none;
  position: static;
  background-color: #ffffff;
  padding-left: 1rem;
  z-index: 110;
}
@media (min-width: 1024px) {
  .main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 1rem;
    min-width: 200px;
  }
}
.main-navigation .menu-item-has-children:hover > .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-navigation {
  flex-direction: column;
  width: 100%;
  display: flex;
  max-height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out, padding 0.4s ease-in-out, background-color 0.3s ease-in-out;
}
.contact-navigation.is-open {
  max-height: 500px;
  padding-bottom: 2rem;
  background-color: #123592;
  opacity: 1;
}
@media (min-width: 1024px) {
  .contact-navigation {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    max-height: none;
    overflow: visible;
    opacity: 1;
    padding: 0;
  }
}
.contact-navigation .contact-menu {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.25rem;
}
@media (min-width: 1024px) {
  .contact-navigation .contact-menu {
    flex-direction: row;
    gap: 1rem;
    padding: 0;
  }
}
@media (min-width: 1440px) {
  .contact-navigation .contact-menu {
    gap: 2rem;
  }
}
.contact-navigation .contact-menu li {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  justify-content: center;
}
@media (min-width: 1024px) {
  .contact-navigation .contact-menu li {
    flex: 0 0 auto;
    width: auto;
  }
}
@media (min-width: 1024px) and (max-width: 1220px) {
  .contact-navigation .contact-menu .menu-item-phone {
    display: none;
  }
}
.contact-navigation a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .contact-navigation a {
    font-size: 1.125rem;
    color: #123592;
  }
}
.contact-navigation .phone-number {
  font-weight: 500;
  color: #123592;
}
.contact-navigation .contact-button {
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .contact-navigation .contact-button {
    margin-bottom: 0;
  }
}
.contact-navigation .contact-button a {
  display: block;
  width: 100%;
  padding: 0.5rem 2rem;
  background-color: #123592;
  color: #ffffff;
  border: 1px solid #ffffff;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.contact-navigation .contact-button a:hover {
  background-color: rgb(16.2, 47.7, 131.4);
  color: #ffffff;
}
@media (min-width: 1024px) {
  .contact-navigation .contact-button a {
    width: auto;
    padding: 0.625rem 2rem;
    background-color: #ffffff;
    color: #123592;
    border: 1px solid #123592;
  }
  .contact-navigation .contact-button a:hover {
    background-color: #123592;
    color: #ffffff;
  }
}

.button,
.wp-block-button__link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  color: #123592;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid #123592;
}
.button:hover,
.wp-block-button__link:hover {
  background-color: #123592;
  color: #ffffff;
}
.button--secondary,
.wp-block-button__link--secondary {
  background-color: transparent;
  color: #123592;
}
.button--secondary:hover,
.wp-block-button__link--secondary:hover {
  background-color: #123592;
  color: #ffffff;
}
.button--outline,
.wp-block-button__link--outline {
  background-color: transparent;
  color: #123592;
  border: 2px solid #123592;
}
.button--outline:hover,
.wp-block-button__link--outline:hover {
  background-color: #123592;
  color: #ffffff;
}
.button--small,
.wp-block-button__link--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}
.button--large,
.wp-block-button__link--large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.wp-block-button {
  margin-bottom: 1rem;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: #123592;
  border: 2px solid #123592;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: #123592;
  color: #ffffff;
}

.all-posts {
  width: 100%;
  max-width: 250px;
}
.all-posts .wp-block-button__link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.625rem 0 0.625rem 4.625rem;
}
.all-posts .wp-block-button__link::after {
  content: "";
  width: 24px;
  height: 24px;
  margin-left: 25px;
  background-color: #123592;
  mask-image: url("../images/svg/icon-chevron-right.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}
.all-posts .wp-block-button__link:hover::after {
  background-color: #ffffff;
}

p a:where(:not(.wp-element-button)) {
  color: #123592;
}
p a:where(:not(.wp-element-button)):hover {
  text-decoration: underline;
}

.wp-block-image {
  margin-bottom: 2rem;
}
.wp-block-image img {
  max-width: 100%;
  height: auto;
}
.wp-block-image figcaption {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #646875;
  text-align: center;
}
.wp-block-image.is-style-blue-shadow {
  position: relative;
  display: block;
}
.wp-block-image.is-style-blue-shadow .inner {
  position: relative;
  display: block;
}
@media (min-width: 768px) {
  .wp-block-image.is-style-blue-shadow {
    display: inline-block;
    padding-right: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.wp-block-image.is-style-blue-shadow::after {
  /* Hier ist jetzt der Bildbereich, nicht das ganze figure */
  top: 3.75rem;
  left: 3.75rem;
  /* exakte Bildgröße */
  width: calc(100% - 3.75rem);
  height: calc(100% - 3.75rem);
  pointer-events: none;
  background: linear-gradient(to right, transparent 0%, transparent 33.33%, #123592 33.33%) left bottom/100% 1px no-repeat, linear-gradient(to bottom, transparent 0%, transparent 33.33%, #123592 33.33%) right top/1px 100% no-repeat;
}
@media (min-width: 768px) {
  .wp-block-image.is-style-blue-shadow::after {
    content: "";
    position: absolute;
  }
}
.wp-block-image.is-style-blue-shadow img {
  width: 100%;
  display: block;
}
.wp-block-image .wp-element-caption {
  display: none;
}

.wp-block-columns {
  gap: 2rem;
  margin-bottom: 2rem;
}
.wp-block-columns.is-style-kri-raster {
  column-gap: 5rem;
}
@media (min-width: 992px) {
  .wp-block-columns.is-style-kri-raster {
    column-gap: 10rem;
  }
}
@media (min-width: 1024px) {
  .wp-block-columns.is-style-kri-raster {
    column-gap: 17.5rem;
  }
}

@media (max-width: 781px) {
  #main-content .wp-block-columns.is-style-kri-raster {
    flex-direction: column !important;
    margin-bottom: 5rem;
  }
  #main-content .wp-block-columns.is-style-kri-raster > .wp-block-column:has(h2) {
    order: 1;
  }
  #main-content .wp-block-columns.is-style-kri-raster > .wp-block-column:has(figure.wp-block-image) {
    order: 2;
  }
}
.wp-block-group {
  margin-bottom: 2rem;
}
.wp-block-group.has-background {
  padding: 2rem;
}

.wp-block-cover {
  margin-bottom: 2rem;
  min-height: 300px;
}
@media (min-width: 768px) {
  .wp-block-cover {
    min-height: 400px;
  }
}
.wp-block-cover p {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .wp-block-cover p {
    font-size: 1.125rem;
  }
}

.wp-block-separator {
  border-color: rgba(18, 53, 146, 0.1);
  margin: 2rem auto;
}
.wp-block-separator.is-style-wide {
  border-bottom-width: 2px;
}

.wp-block-quote {
  border-left: 4px solid #123592;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
}
.wp-block-quote cite {
  font-style: normal;
  font-weight: 500;
  color: #123592;
}

.wp-block-list {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
.wp-block-list li {
  margin-bottom: 0.5rem;
}

ol.wp-block-list {
  list-style: decimal;
}

ul.wp-block-list {
  list-style: disc;
}

.wp-block-table {
  margin-bottom: 2rem;
}
.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.wp-block-table th,
.wp-block-table td {
  padding: 0.75rem;
  border: 1px solid rgba(18, 53, 146, 0.1);
}
.wp-block-table th {
  background-color: #F6F6FA;
  font-weight: 500;
}

.wp-block-query.is-style-numbered-posts {
  counter-reset: post-counter;
}
.wp-block-query.is-style-numbered-posts .wp-block-post-template {
  list-style: none;
  padding: 0;
}
@media (min-width: 1024px) {
  .wp-block-query.is-style-numbered-posts .wp-block-post-template {
    padding: 0;
  }
}
.wp-block-query.is-style-numbered-posts .wp-block-post {
  counter-increment: post-counter;
  display: grid;
  margin-bottom: 1rem;
  margin-block-start: 0;
  padding-bottom: 1.375rem;
  border-bottom: 1px solid #123592;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .wp-block-query.is-style-numbered-posts .wp-block-post {
    grid-template-columns: 80px clamp(200px, 30vw, 320px) 1fr;
    gap: 2rem;
    align-items: start;
    padding-bottom: 3.75rem;
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .wp-block-query.is-style-numbered-posts .wp-block-post {
    grid-template-columns: 80px clamp(200px, 30vw, 320px) 1fr;
  }
}
@media (min-width: 1024px) {
  .wp-block-query.is-style-numbered-posts .wp-block-post {
    grid-template-columns: 80px 426px 1fr;
    gap: 3rem;
  }
}
.wp-block-query.is-style-numbered-posts .wp-block-post::before {
  content: counter(post-counter, decimal-leading-zero) ".";
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  color: #123592;
  grid-column: 1;
  grid-row: 1;
}
@media (min-width: 768px) {
  .wp-block-query.is-style-numbered-posts .wp-block-post::before {
    font-size: 1.125rem;
    grid-column: 1;
    grid-row: auto;
    align-self: start;
  }
}
.wp-block-query.is-style-numbered-posts .wp-block-post > .wp-block-group {
  grid-column: 1/-1;
  display: contents;
}
.wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-featured-image {
  margin: 0 0 2.25rem;
  grid-column: 1;
  grid-row: 2;
}
@media (min-width: 768px) {
  .wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-featured-image {
    grid-column: 2;
    grid-row: auto;
    align-self: start;
    margin-bottom: 0;
  }
}
.wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}
@media (min-width: 1024px) {
  .wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-featured-image img {
    max-width: 426px;
  }
}
.wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-group.is-vertical {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 0;
  grid-column: 1;
  grid-row: 3;
}
@media (min-width: 768px) {
  .wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-group.is-vertical {
    grid-column: 3;
    grid-row: auto;
  }
}
.wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-date {
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
  color: #646875;
  margin: 0 0 0.5rem 0;
}
@media (min-width: 768px) {
  .wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-date {
    font-size: 1.125rem;
    margin: 0 0 3rem 0;
  }
}
@media (min-width: 1024px) {
  .wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-date {
    font-size: 1.125rem;
    margin: 0 0 6rem 0;
  }
}
.wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-title {
  margin: 0 0 1.5rem 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.2;
}
.wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-title a {
  color: #123592;
  text-decoration: none;
}
.wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-title a:hover {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-title {
    font-size: 1.5rem;
    font-weight: 500;
  }
}
@media (min-width: 1024px) {
  .wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-title {
    font-size: 2rem;
  }
}
.wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-excerpt {
  margin: 0;
  flex-grow: 1;
}
.wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-excerpt p {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  color: #646875;
}
@media (min-width: 768px) {
  .wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-post-excerpt p {
    font-size: 1.125rem;
  }
}
.wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-read-more {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
  color: #123592;
  position: relative;
  padding-right: 32px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-read-more {
    font-size: 1.125rem;
    text-decoration: none;
  }
}
.wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-read-more:hover {
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}
.wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-read-more:hover::after {
  transform: translateY(-50%) translateX(4px);
}
.wp-block-query.is-style-numbered-posts .wp-block-post .wp-block-read-more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  margin-top: 2px;
  background-color: #123592;
  mask-image: url("../images/svg/icon-chevron-right.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .home .wp-block-heading.has-text-align-center {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .home .headline-news {
    margin-bottom: 1rem !important;
    padding-bottom: 1rem !important;
  }
}

.row-engagement {
  margin-right: -1rem;
  margin-left: -1rem;
  padding-top: 6.25rem;
  padding-bottom: 3rem;
}
@media (min-width: 1440px) {
  .row-engagement {
    margin-right: 0;
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .row-engagement {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.row-engagement .wp-block-group.is-content-justification-center {
  gap: 5rem;
}
@media (min-width: 1024px) {
  .row-engagement .wp-block-group.is-content-justification-center {
    flex-wrap: nowrap;
    gap: 9.375rem;
  }
}
.row-engagement .wp-block-heading {
  font-size: 2.25rem;
}
@media (min-width: 1024px) {
  .row-engagement .wp-block-heading {
    font-size: 3.5rem;
  }
}

.frontpage-first-row {
  row-gap: 3rem;
  margin-bottom: 4.75rem;
}
.frontpage-first-row .wp-block-column {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.frontpage-first-row .flex-column:nth-child(3) {
  border: 1px solid #123592;
}

@media (max-width: 1099px) {
  .wp-block-columns.frontpage-first-row {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
  }
  .frontpage-first-row.wp-block-columns > .wp-block-column {
    flex-basis: 100% !important;
    max-width: 100% !important;
  }
}
@media (min-width: 1100px) {
  .frontpage-first-row {
    margin-bottom: 10rem;
    border-top: 1px solid #123592;
    border-bottom: 1px solid #123592;
  }
  .frontpage-first-row .flex-column:nth-child(1) {
    padding-top: 6rem;
    padding-right: 6rem;
    padding-bottom: 0;
  }
  .frontpage-first-row .flex-column:nth-child(2) {
    padding-top: 6rem;
    padding-right: 6rem;
    border-right: 1px solid #123592;
  }
  .frontpage-first-row .flex-column:nth-child(3) {
    border: 0;
  }
}
.wp-block-buttons.btn-more-posts {
  padding-bottom: 4.875rem;
}
@media (min-width: 1200px) {
  .wp-block-buttons.btn-more-posts {
    padding-bottom: 10rem;
  }
}

.is-style-large-paragraph {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000000;
}

.contact-banner {
  position: relative;
  min-height: 650px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  margin-bottom: 4rem;
  margin-right: -1rem;
  margin-left: -1rem;
  padding: 0 1.25rem 3rem 1.25rem;
}
@media (min-width: 768px) {
  .contact-banner {
    min-height: 620px;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-bottom: 10rem;
  }
}
@media (min-width: 1024px) {
  .contact-banner {
    margin-right: 0;
    margin-left: 0;
  }
}
.contact-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 1;
}
.contact-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: 25rem;
}
@media (min-width: 768px) {
  .contact-banner__content {
    align-items: center;
    margin-top: 0;
    flex-direction: row;
    max-width: 850px;
  }
}
.contact-banner__col {
  color: #ffffff;
}
.contact-banner__col--left {
  grid-column: 1/-1;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .contact-banner__col--left {
    text-align: left;
    margin-bottom: 0;
    padding-right: 4rem;
    border-right: 1px solid #ffffff;
  }
}
.contact-banner__col--right {
  border-left: 1px solid #ffffff;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .contact-banner__col--right {
    border-left: none;
    padding-left: 4rem;
  }
}
.contact-banner__divider {
  display: none;
}
@media (min-width: 768px) {
  .contact-banner__divider {
    background: #ffffff;
    grid-column: 3;
    grid-row: auto;
    width: 1px;
    height: 100%;
    align-self: stretch;
  }
}
.contact-banner__headline {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.5rem 0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .contact-banner__headline {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .contact-banner__headline {
    font-size: 3.5rem;
  }
}
.contact-banner__text {
  font-size: 0.875rem;
  margin: 0;
  color: #ffffff;
}
@media (min-width: 768px) {
  .contact-banner__text {
    font-size: 1.125rem;
  }
}
.contact-banner__phone, .contact-banner__mail {
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}
@media (min-width: 768px) {
  .contact-banner__phone, .contact-banner__mail {
    font-size: 2rem;
  }
}
.contact-banner__phone:hover, .contact-banner__mail:hover {
  color: #ffffff;
}
.contact-banner__phone .icon, .contact-banner__mail .icon {
  display: block;
  height: 24px;
  width: 24px;
}
@media (min-width: 768px) {
  .contact-banner__phone .icon, .contact-banner__mail .icon {
    height: 48px;
    width: 48px;
  }
}
.contact-banner__phone {
  margin-bottom: 0.5rem;
}

.our-solutions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  justify-content: center;
  margin: auto;
  margin-bottom: 4.75rem;
}
.our-solutions.page-leistungen {
  position: relative;
  z-index: 500;
  margin-top: 10rem;
}
@media (min-width: 768px) {
  .our-solutions {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 10rem;
  }
}
@media (min-width: 1024px) {
  .our-solutions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .our-solutions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1440px) {
  .our-solutions {
    padding-left: 0;
    padding-right: 0;
  }
}
.our-solutions__header {
  background: #ffffff;
  color: #123592;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: auto;
  padding: 1rem 0;
}
@media (min-width: 768px) {
  .our-solutions__header {
    aspect-ratio: 1/1;
    padding: 2rem;
    margin-bottom: 0;
  }
}
.our-solutions__header h2 {
  margin: 0;
}
@media (min-width: 1024px) {
  .our-solutions__header h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1350px) {
  .our-solutions__header h2 {
    font-size: 3.5rem;
  }
}
.our-solutions__card {
  background: #123592;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1/1;
  transition: background 0.3s ease-in-out;
  position: relative;
}
.our-solutions__card--hidden {
  display: none;
}
@media (min-width: 768px) {
  .our-solutions__card--hidden {
    display: flex;
  }
}
.our-solutions__card-number {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #ffffff;
}
@media (min-width: 480px) {
  .our-solutions__card-number {
    margin-bottom: 2.25rem;
    font-size: 1.125rem;
  }
}
@media (min-width: 1200px) {
  .our-solutions__card-number {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1440px) {
  .our-solutions__card-number {
    margin-bottom: 2.25rem;
  }
}
.our-solutions__card-title {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: #ffffff;
}
@media (min-width: 480px) {
  .our-solutions__card-title {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .our-solutions__card-title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1440px) {
  .our-solutions__card-title {
    font-size: 2rem;
  }
}
.our-solutions__card-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: auto;
  color: #C5C9D5;
}
.our-solutions__card-link {
  text-decoration: none;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem;
}
.our-solutions__card-link:hover {
  color: #ffffff;
}
.our-solutions__card-link:hover .our-solutions__card-more-text {
  text-decoration: underline;
  text-underline-offset: 12px;
}
.our-solutions__card-link:hover .our-solutions__card-arrow {
  transform: translateX(5px);
}
.our-solutions__card-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  color: #ffffff;
}
.our-solutions__card-more-text {
  text-decoration: none;
  font-weight: 500;
}
.our-solutions__card-arrow {
  margin-left: 8px;
  width: 24px;
  height: 24px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.our-solutions__card-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  mask-image: url("../images/svg/icon-chevron-right-white.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.our-solutions__show-all {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 0;
  background: #ffffff;
  color: #123592;
  border: 1px solid #123592;
  gap: 0.5rem;
  width: 100%;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .our-solutions__show-all {
    display: none;
  }
}
.our-solutions__show-all-text {
  color: inherit;
}
.our-solutions__show-all-icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.our-solutions__show-all-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #123592;
  mask-image: url("../images/svg/icon-chevron-down-bold.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.our-solutions.is-expanded .our-solutions__card--hidden {
  display: flex;
}
.our-solutions.is-expanded .our-solutions__show-all-icon {
  transform: rotate(180deg);
}

.page-leistungen .our-solutions__header {
  background: transparent;
}
.page-leistungen .our-solutions__header h2 {
  color: #ffffff;
  font-size: 2.5rem;
}

.our-values {
  padding: 3rem 0;
}
.our-values__container {
  max-width: 1440px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .our-values__container {
    display: flex;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .our-values__container {
    gap: 0;
  }
}
.our-values__slider-wrapper {
  position: relative;
  flex: 1;
  min-width: 0;
}
@media (min-width: 992px) {
  .our-values__slider-wrapper {
    display: flex;
  }
}
.our-values .our-values-swiper {
  width: 100%;
  overflow: hidden;
  padding-right: 3.75rem;
}
.our-values .our-values-swiper .swiper-wrapper {
  border-top: 1px solid #123592;
}
.our-values .our-values-swiper .swiper-wrapper::after {
  display: none;
  position: absolute;
  bottom: 1px;
  right: -10.75rem;
  height: 3.75rem;
  width: 100%;
  content: "";
  border-top: 1px solid #123592;
}
@media (min-width: 992px) {
  .our-values .our-values-swiper .swiper-wrapper::after {
    display: block;
  }
}
.our-values__slide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  min-height: auto;
}
@media (min-width: 992px) {
  .our-values__slide {
    grid-template-columns: auto 1fr;
    gap: 3rem;
    min-height: 400px;
  }
}
@media (min-width: 1024px) {
  .our-values__slide {
    gap: 4rem;
  }
}
.our-values__slide-number {
  font-size: 14px;
  font-weight: 500;
  color: #123592;
  line-height: 1;
}
@media (min-width: 992px) {
  .our-values__slide-number {
    font-size: 18px;
  }
}
.our-values__slide-number span {
  display: inline-block;
  padding: 0.625rem;
  border-right: 1px solid #123592;
}
@media (min-width: 992px) {
  .our-values__slide-number span {
    padding: 3rem;
  }
}
.our-values__slide-content {
  padding-top: 1.25rem;
}
@media (min-width: 992px) {
  .our-values__slide-content {
    padding-top: 7rem;
  }
}
.our-values__slide-title {
  font-size: 18px;
  font-weight: 500;
  color: #123592;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .our-values__slide-title {
    font-size: 1.75rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1024px) {
  .our-values__slide-title {
    font-size: 2rem;
  }
}
.our-values__slide-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #646875;
}
@media (min-width: 768px) {
  .our-values__slide-text {
    font-size: 1.125rem;
  }
}
.our-values__slide-text p {
  margin-bottom: 0.5rem;
}
.our-values__slide-text p:last-child {
  margin-bottom: 0;
}
.our-values__mobile-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #123592;
}
@media (min-width: 992px) {
  .our-values__mobile-nav {
    display: none;
  }
}
.our-values__mobile-nav .our-values-button-prev,
.our-values__mobile-nav .our-values-button-next {
  position: static;
  width: 42px;
  height: 42px;
  min-width: 42px;
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 1px solid #123592;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.our-values__mobile-nav .our-values-button-prev:hover:not(:disabled),
.our-values__mobile-nav .our-values-button-next:hover:not(:disabled) {
  background-color: rgba(18, 53, 146, 0.1);
}
.our-values__mobile-nav .our-values-button-prev {
  background-image: url("../images/svg/icon-arrow-forward.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  transform: rotate(180deg);
}
.our-values__mobile-nav .our-values-button-next {
  background-image: url("../images/svg/icon-arrow-forward.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}
.our-values__mobile-nav .our-values-pagination {
  position: static;
  width: auto;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.our-values__mobile-nav .our-values-pagination .swiper-pagination-bullet {
  background-color: #000000;
  opacity: 0.3;
}
.our-values__mobile-nav .our-values-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.our-values__nav {
  display: none;
}
@media (min-width: 992px) {
  .our-values__nav {
    display: flex;
    flex-direction: column;
    width: 300px;
    flex-shrink: 0;
    padding-top: 3.75rem;
    padding-bottom: 7rem;
  }
}
@media (min-width: 1024px) {
  .our-values__nav {
    width: 400px;
  }
}
.our-values__nav-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #123592;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.our-values__nav-item:first-child {
  border-top: 1px solid #123592;
}
.our-values__nav-item:hover {
  background-color: rgba(18, 53, 146, 0.1);
}
.our-values__nav-item.is-active {
  background-color: #123592;
  padding-left: 1rem;
}
.our-values__nav-item.is-active .our-values__nav-number,
.our-values__nav-item.is-active .our-values__nav-title {
  color: #ffffff;
}
.our-values__nav-number {
  font-size: 18px;
  font-weight: 500;
  color: #123592;
  line-height: 1;
  transition: color 0.3s ease-in-out;
}
.our-values__nav-title {
  font-size: 24px;
  font-weight: 500;
  color: #123592;
  line-height: 1.5;
  transition: color 0.3s ease-in-out;
}
.our-values__decorative-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 3.75rem;
}
.our-values__decorative-square {
  width: 100%;
}
.our-values__decorative-square.decorative-square__top, .our-values__decorative-square.decorative-square__bottom {
  display: none;
  aspect-ratio: 1/1;
  height: 3.75rem;
}
@media (min-width: 992px) {
  .our-values__decorative-square.decorative-square__top, .our-values__decorative-square.decorative-square__bottom {
    display: block;
  }
}
.our-values__decorative-square.decorative-square__bottom {
  border-top: 1px solid #123592;
  border-left: 1px solid #123592;
}
.our-values__decorative-square.decorative-square__middle {
  border-left: 1px solid #123592;
  flex: 1;
}

.wp-block-cover.site-hero {
  min-height: 650px;
  margin-bottom: 4.75rem;
}
@media (min-width: 768px) {
  .wp-block-cover.site-hero {
    min-height: 620px;
    margin-bottom: 7.5rem;
  }
}
.wp-block-cover.site-hero.alignfull {
  max-width: none;
}
.wp-block-cover.site-hero.has-custom-content-position.is-position-bottom-left {
  padding-bottom: 5.625rem;
}
.wp-block-cover.site-hero.has-custom-content-position.is-position-bottom-left .wp-block-cover__inner-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin: 0 auto;
  padding-left: 1rem;
}
.wp-block-cover.site-hero.is-light .wp-block-heading,
.wp-block-cover.site-hero.is-light p {
  color: #ffffff;
}
.wp-block-cover.site-hero .wp-block-cover__inner-container {
  max-width: 1440px;
}
.wp-block-cover.site-hero .wp-block-cover__inner-container .wp-block-heading,
.wp-block-cover.site-hero .wp-block-cover__inner-container p {
  margin-left: 0 !important;
}
.wp-block-cover.site-hero .wp-block-cover__inner-container .wp-block-heading {
  max-width: 990px;
}
.wp-block-cover.site-hero .wp-block-cover__inner-container p {
  max-width: 700px;
}
.wp-block-cover.site-hero .wp-block-heading {
  font-size: 2.25rem;
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .wp-block-cover.site-hero .wp-block-heading {
    font-size: 3.25rem;
  }
}
@media (min-width: 1200px) {
  .wp-block-cover.site-hero .wp-block-heading {
    font-size: 4.875rem;
  }
}
.wp-block-cover.site-hero p {
  margin-top: 1.5rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .wp-block-cover.site-hero p {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .home .wp-block-cover.site-hero {
    min-height: 850px;
  }
}
.home .wp-block-cover.site-hero .wp-block-cover__inner-container {
  max-width: 1100px;
}
.home .wp-block-cover.site-hero .wp-block-cover__inner-container .wp-block-heading,
.home .wp-block-cover.site-hero .wp-block-cover__inner-container .has-text-align-left {
  max-width: none;
}

.situation-block {
  display: grid;
  gap: 1rem;
  margin-bottom: 4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .situation-block {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    margin-bottom: 10rem;
  }
}
@media (min-width: 1440px) {
  .situation-block {
    padding-left: 3.75rem;
  }
}
.situation-block__left {
  display: contents;
}
@media (min-width: 768px) {
  .situation-block__left {
    display: block;
    grid-column: 1;
    grid-row: 1/3;
  }
}
.situation-block__image {
  margin: 0;
  position: relative;
  grid-column: 1;
  grid-row: 1;
}
@media (min-width: 768px) {
  .situation-block__image {
    grid-column: 1;
    grid-row: 1;
    margin-left: 0;
    padding-right: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .situation-block__image {
    padding-right: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
@media (min-width: 1440px) {
  .situation-block__image {
    margin-left: -3.75rem;
  }
}
.situation-block__image img {
  width: 100%;
  height: auto;
  display: block;
}
.situation-block__image figcaption {
  position: absolute;
  bottom: 1.25rem;
  padding-left: 1.25rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .situation-block__image figcaption {
    bottom: 6.75rem;
    padding-left: 3rem;
    font-size: 2rem;
  }
}
.situation-block__empty-cell {
  display: none;
}
@media (min-width: 768px) {
  .situation-block__empty-cell {
    display: block;
    grid-column: 1;
    grid-row: 2;
    border-top: 1px solid #123592;
  }
}
.situation-block__right {
  display: contents;
}
@media (min-width: 768px) {
  .situation-block__right {
    display: block;
    grid-column: 2;
    grid-row: 1/3;
  }
}
.situation-block__content {
  grid-column: 1;
  grid-row: 2;
}
@media (min-width: 768px) {
  .situation-block__content {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    border-left: 1px solid #123592;
    padding-right: 1rem;
    padding-left: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .situation-block__content {
    padding-left: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
@media (min-width: 1440px) {
  .situation-block__content {
    padding-right: 0;
  }
}
.situation-block__headline {
  margin: 0 0 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  color: #123592;
}
@media (min-width: 768px) {
  .situation-block__headline {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .situation-block__headline {
    font-size: 3.5rem;
  }
}
.situation-block__text {
  font-size: 1rem;
  line-height: 1.5;
  color: #646875;
}
.situation-block__text p {
  margin: 0 0 1rem 0;
}
.situation-block__text p:last-child {
  margin-bottom: 0;
}
.situation-block__text strong, .situation-block__text b {
  color: #000000;
  font-weight: 500;
}
.situation-block__text a {
  color: #123592;
  text-decoration: none;
}
.situation-block__text a:hover {
  text-decoration: underline;
}
.situation-block__key-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  grid-column: 1;
  grid-row: 3;
  list-style: none;
  margin: 0;
  padding-top: 2.5rem;
  padding-left: 1.25rem;
  border-top: 1px solid #123592;
  border-left: 1px solid #123592;
}
@media (min-width: 768px) {
  .situation-block__key-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    grid-column: 2;
    grid-row: 2;
    padding-top: 1.875rem;
    padding-right: 1rem;
    padding-left: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .situation-block__key-facts {
    padding-top: 3.75rem;
    padding-left: 3.75rem;
  }
}
@media (min-width: 1440px) {
  .situation-block__key-facts {
    padding-right: 0;
  }
}
.situation-block__key-fact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 0 0 auto;
}
.situation-block__key-fact:nth-child(3) {
  flex-shrink: 1;
  flex-basis: 50%;
}
@media (min-width: 768px) {
  .situation-block__key-fact {
    gap: 0.75rem;
  }
}
.situation-block__key-fact-number {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
  color: #123592;
}
@media (min-width: 768px) {
  .situation-block__key-fact-number {
    flex-shrink: 0;
    width: 64px;
    font-size: 3.5rem;
  }
}
.situation-block__key-fact-icon {
  width: 44px;
  height: 44px;
  display: block;
}
@media (min-width: 768px) {
  .situation-block__key-fact-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
  }
}
.situation-block__key-fact-text {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #000000;
}
@media (min-width: 768px) {
  .situation-block__key-fact-text {
    font-size: 1.125rem;
    flex: 1;
  }
}

.testimonial-slider-single {
  padding: 3.75rem 0 0 0;
  --swiper-pagination-color: #000000;
  --swiper-pagination-bullet-inactive-opacity: 0.3;
}
@media (min-width: 1024px) {
  .testimonial-slider-single {
    padding: 6rem 0 0 0;
  }
}
.testimonial-slider-single .swiper {
  max-width: 1440px;
  margin: 0 auto 1.25rem;
  padding: 0;
}
@media (min-width: 1024px) {
  .testimonial-slider-single .swiper {
    margin: 0 auto 4rem;
  }
}
.testimonial-slider-single .testimonial-slide {
  text-align: center;
  padding: 0 1.25rem 2rem;
}
@media (min-width: 1024px) {
  .testimonial-slider-single .testimonial-slide {
    padding: 0 2.75rem 4rem;
  }
}
.testimonial-slider-single .testimonial-slide__quote {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.5;
  color: #646875;
}
.testimonial-slider-single .testimonial-slide__quote p {
  margin-bottom: 0;
  font-size: 1.125rem;
}
.testimonial-slider-single .testimonial-slide__quote p::before, .testimonial-slider-single .testimonial-slide__quote p::after {
  display: inline;
  content: '"';
}
.testimonial-slider-single .testimonial-slide__author {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 0.25rem;
}
.testimonial-slider-single .testimonial-slide__position {
  font-size: 0.875rem;
  line-height: 1.2;
  color: #123592;
}
.testimonial-slider-single .swiper-pagination {
  bottom: 0;
}
.testimonial-slider-single .swiper-button-prev,
.testimonial-slider-single .swiper-button-next {
  color: #123592;
}

.testimonial-slider-multiple {
  padding: 3rem 0;
  --swiper-pagination-color: #000000;
  --swiper-pagination-bullet-inactive-opacity: 0.3;
}
.testimonial-slider-multiple .swiper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid #123592;
  border-bottom: 1px solid #123592;
}
.testimonial-slider-multiple .swiper-slide {
  height: auto;
  display: flex;
}
.testimonial-slider-multiple .testimonial-card {
  background-color: #ffffff;
  padding: 1.5rem;
  height: 100%;
  width: 100%;
  border-right: 1px solid #123592;
  display: flex;
  flex-direction: column;
}
.testimonial-slider-multiple .testimonial-card.is-last-visible {
  border-right: none;
}
.testimonial-slider-multiple .testimonial-card__quote {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.5;
  color: #646875;
  flex-grow: 1;
}
.testimonial-slider-multiple .testimonial-card__quote p {
  margin-bottom: 0;
  font-size: 1.125rem;
}
.testimonial-slider-multiple .testimonial-card__quote p::before, .testimonial-slider-multiple .testimonial-card__quote p::after {
  display: inline;
  content: '"';
}
.testimonial-slider-multiple .testimonial-card__author {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 0.25rem;
  margin-top: auto;
}
.testimonial-slider-multiple .testimonial-card__position {
  font-size: 0.875rem;
  line-height: 1.2;
  color: #123592;
}
.testimonial-slider-multiple .testimonial-slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.testimonial-slider-multiple .swiper-pagination.swiper-pagination-bullets {
  position: static;
  width: auto;
}
.testimonial-slider-multiple .swiper-button-prev,
.testimonial-slider-multiple .swiper-button-next {
  position: static;
  width: 3rem;
  height: 3rem;
  margin: 0;
  border: 1px solid #123592;
  transition: all 0.3s ease-in-out;
}
.testimonial-slider-multiple .swiper-button-prev::after,
.testimonial-slider-multiple .swiper-button-next::after {
  content: "";
  display: none;
}
.testimonial-slider-multiple .swiper-button-prev svg,
.testimonial-slider-multiple .swiper-button-next svg {
  display: none;
}
.testimonial-slider-multiple .swiper-button-prev:hover,
.testimonial-slider-multiple .swiper-button-next:hover {
  background-color: rgba(18, 53, 146, 0.1);
}
.testimonial-slider-multiple .swiper-button-prev {
  background-image: url("../images/svg/icon-arrow-forward.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  transform: rotate(180deg);
}
.testimonial-slider-multiple .swiper-button-next {
  background-image: url("../images/svg/icon-arrow-forward.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.jobs-accordion__items {
  display: flex;
  flex-direction: column;
}
.jobs-accordion__item {
  border-bottom: 1px solid #123592;
}
.jobs-accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2.5rem 0;
  background-color: #ffffff;
  color: #123592;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease-in-out;
}
.is-open .jobs-accordion__header {
  background-color: #ffffff;
  color: #123592;
}
.jobs-accordion__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  color: inherit;
}
@media (min-width: 768px) {
  .jobs-accordion__title {
    font-size: 2rem;
  }
}
.jobs-accordion__icon {
  flex-shrink: 0;
  margin-left: 2rem;
  transition: transform 0.3s ease-in-out;
}
.jobs-accordion__icon img {
  display: block;
  width: 24px;
  height: 24px;
}
.is-open .jobs-accordion__icon {
  transform: rotate(180deg);
}
.jobs-accordion__body {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.jobs-accordion__body[hidden] {
  display: none;
}
@media (min-width: 768px) {
  .jobs-accordion__content {
    padding-bottom: 3.75rem;
  }
}

.job-content {
  margin-bottom: 4rem;
}
.job-content .wp-block-columns {
  gap: 3.75rem;
}
.job-content h1, .job-content h2, .job-content h3, .job-content h4, .job-content h5, .job-content h6 {
  color: #123592;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.job-content h1:first-child, .job-content h2:first-child, .job-content h3:first-child, .job-content h4:first-child, .job-content h5:first-child, .job-content h6:first-child {
  margin-top: 0;
}
@media (min-width: 768px) {
  .job-content h1.wp-block-heading, .job-content h2.wp-block-heading, .job-content h3.wp-block-heading, .job-content h4.wp-block-heading, .job-content h5.wp-block-heading, .job-content h6.wp-block-heading {
    column-span: all;
  }
}
.job-content h4 {
  font-size: 32px;
  margin-bottom: 2.25rem;
}
.job-content h5 {
  font-size: 24px;
  margin-bottom: 1rem;
}
.job-content p {
  font-size: 18px;
  margin-bottom: 1.5rem;
}
.job-content ul, .job-content ol {
  margin-bottom: 2rem;
  padding-left: 2rem;
}
.job-content ul li, .job-content ol li {
  font-size: 18px;
  margin-bottom: 0.5rem;
}
.job-content strong, .job-content b {
  font-weight: 500;
}
.job-content .is-style-focus {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
  color: #000000;
}

.job-contact__headline {
  font-size: 32px;
  color: #123592;
  margin-bottom: 2.25rem;
}
.job-contact__subheadline {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 2.25rem;
}
.job-contact__label {
  font-size: 24px;
  font-weight: 500;
  color: #123592;
}
.job-contact__name {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin: 0;
}
.job-contact__phone, .job-contact__email {
  font-size: 18px;
  margin: 0;
  color: #646875;
}
.job-contact__phone strong, .job-contact__email strong {
  font-weight: 500;
  margin-right: 0.5rem;
}
.job-contact__phone a, .job-contact__email a {
  color: #646875;
  text-decoration: none;
}
.job-contact__phone a:hover, .job-contact__email a:hover {
  text-decoration: underline;
}

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