@charset "UTF-8";
/*--------------------------------------------------------------
TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
    - Normalize
    - Box sizing
    - Imports
# Base
    - Colors
    - Background Color
    - Typography
    - Logo
    - Buttons
    - Links
    - Variables
    - Elements
    - Grid

# Components
    - Navigation
    - Footer
    - Posts and pages
    - Media
    - FAB
    - Contact Form 7

# Utilities
    - Accessibility
    - Alignments

# Content
    - Front Page
    - Bibliothek
    - FAQ
    - Impressum
    - Datenschutz
    - Projekt Single

--------------------------------------------------------------*/
/*--------------------------------------------------------------
Generic:
--------------------------------------------------------------*/
/* START: Normalize */
* {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

input,
button,
submit {
  border: none;
  background: none;
}

/* END: Normalize */
/* START: Box Sizing */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/* END: Box Sizing */
/*--------------------------------------------------------------
Imports:
--------------------------------------------------------------*/
/* START: Media Queries */
/* END: Media Queries */
/*--------------------------------------------------------------
Base:
--------------------------------------------------------------*/
/* START: Colors */
.theme-dark {
  --color-light: #fff;
  --color-dark: #000;
  --color-blue: #2b2765;
}

.theme-light {
  --color-primary: hsl(0, 0%, 100%);
  --color-secondary: hsl(229, 24%, 91%);
  --color-blue: red;
}

/* END: Colors */
/* START: Background Color */
body {
  background-color: #fff;
}

.darkBg {
  background-color: #2b2765;
  width: 100%;
}

.pinkBg {
  background-color: #af1d77;
  width: 100%;
}

.orangeBg {
  background-color: #ff7600;
  width: 100%;
}

.lightBg {
  background-color: #e9e3dd;
}
.lightBg h1,
.lightBg h2,
.lightBg h3,
.lightBg h4 {
  color: #2b2765;
}

.darkBg,
.orangeBg,
.pinkBg {
  margin: 0 auto;
}
.darkBg *,
.darkBg h1,
.darkBg h2,
.darkBg h3,
.darkBg h4,
.darkBg p,
.darkBg ul,
.darkBg a,
.orangeBg *,
.orangeBg h1,
.orangeBg h2,
.orangeBg h3,
.orangeBg h4,
.orangeBg p,
.orangeBg ul,
.orangeBg a,
.pinkBg *,
.pinkBg h1,
.pinkBg h2,
.pinkBg h3,
.pinkBg h4,
.pinkBg p,
.pinkBg ul,
.pinkBg a {
  color: #fff;
}

.lightBg .cardtitle {
  color: #2b2765;
}

.orangeBg .cardtitle {
  color: #fff;
}

/* END: Background Color */
/* START: Typography */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.ttf") format("ttf"), url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.ttf") format("ttf"), url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.ttf") format("ttf"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.ttf") format("ttf"), url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html {
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  line-height: 1.2em;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5em;
  hyphens: auto;
}

.h1-style {
  color: #2b2765;
  font-size: 2em;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5em;
}

.h2-style {
  font-size: 1.5em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5em;
  color: #2b2765;
}

.h3-style {
  font-size: 1.25em;
  font-weight: 600;
  margin-bottom: 0.5em;
}

.h4-style {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 0.75em;
  color: #2b2765;
}

p,
span {
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  line-height: 1.7em;
  font-weight: 300;
  color: #000;
}

.p-small {
  font-size: 0.9em;
  margin-bottom: 1em;
}

.p-medium p,
p.p-medium {
  margin-bottom: 1.2em;
}

.p-large {
  font-size: 1.25em;
  margin-bottom: 1.2em;
}

main ul {
  margin-bottom: 1em;
}
main ul li {
  font-size: 1em;
  line-height: 1.7em;
  font-weight: 300;
  list-style-type: disc;
  margin-left: 1.25em;
  margin-bottom: 0.5em;
}

.paginationjs-pages li {
  list-style: none;
  margin-left: 0;
}

.center-text {
  text-align: center;
}

/* END: Typography */
/* START: Buttons */
a {
  color: #ff7600;
  word-break: break-word;
}

button {
  cursor: pointer;
}

.transpBtn,
.lightBtn {
  min-width: 12rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8em;
  letter-spacing: 1px;
  font-weight: 600;
  color: #2b2765;
  border: 2px solid #2b2765;
  padding: 1.3em 2.5em;
  transition: all 300ms ease;
}

.center-btn {
  display: block;
  margin: 3em auto;
}

.lightBtn {
  border-color: #fff;
  color: #fff;
}

.transpBtn:hover,
.lightBtn:hover {
  background: #af1d77;
  border-color: #af1d77;
  color: #fff;
}

.darkBg .lightBtn:hover {
  background: #ff7600;
  border-color: #ff7600;
}

.orangeBg .lightBtn:hover,
.pinkBg .lightBtn:hover {
  background: #2b2765;
  border-color: #2b2765;
}

.button-row {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
  padding: 1em 0;
}
.button-row button {
  min-width: 220px;
  margin: 1em 0;
}

.whiteIcon {
  font-size: 1em;
  color: #fff;
  position: relative;
}
.whiteIcon::after {
  background-image: url("../img/arrowIcon-white.svg");
  content: "";
  background-size: 1.4rem 1.4rem;
  height: 1.4rem;
  width: 1.4rem;
  margin-left: 0.8rem;
  display: inline-block;
  transform: translate(0, 28%) rotate(-90deg);
  transition: transform 300ms ease;
}
.whiteIcon:hover::after {
  transform: translate(12px, 28%) rotate(-90deg);
}

.cardlink {
  font-size: 1em;
  color: #2b2765;
  position: relative;
}
.cardlink::after {
  background-image: url("../img/arrow.svg");
  content: "";
  background-size: 1.4rem 1.4rem;
  height: 1.4rem;
  width: 1.4rem;
  margin-left: 0.8rem;
  display: inline-block;
  transform: translate(0, 25%);
  transition: transform 300ms ease;
}
.cardlink:hover::after {
  transform: translate(12px, 25%);
}

.goBackBtn {
  padding: 1em 0;
}
.goBackBtn button {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #2b2765;
}
.goBackBtn .prevBtn::before {
  background-image: url("../img/gobackIcon.svg");
  content: "";
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
  height: 1rem;
  width: 1rem;
  margin-right: 0.8rem;
  display: inline-block;
  transform: translate(0, 25%) rotate(-90deg);
  transition: transform 300ms ease;
}

#backToTop {
  width: 54px;
  height: 54px;
  display: none;
  background: #2b2765;
  border: 0.5px solid #fff;
  padding: 13px 16px;
  position: fixed;
  cursor: pointer;
  top: 90%;
  right: 0;
  z-index: 11;
}

#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle {
  box-shadow: none !important;
}
#pojo-a11y-toolbar .pojo-a11y-toolbar-toggle .pojo-a11y-toolbar-link {
  width: 54px;
  height: 54px;
  border: 0.5px solid #fff;
}

.fixedIcon {
  cursor: pointer;
  height: 54px;
  position: fixed;
  right: 0;
  z-index: 111;
  display: flex;
  flex-flow: row;
  align-items: center;
  border: 0.5px solid #fff;
  background: #2b2765;
  color: white;
  transition: transform 300ms ease;
}
@media screen and (max-width: 767px) {
  .fixedIcon {
    display: none;
  }
}
.fixedIcon:hover {
  transform: translateX(0%);
  background: #ff7600;
}
.fixedIcon img {
  width: 32px;
  height: 54px;
  width: 54px;
  padding: 10px;
}
.fixedIcon p {
  font-size: 0.8rem;
  padding-right: 10px;
  color: #fff;
}

.fixed1 {
  top: 30%;
  transform: translateX(59%);
}

.fixed2 {
  top: 40.25%;
  transform: translateX(63%);
}

/* Call To Action Button (Mitglied werden) */
.btn-member {
  background: #ff7600;
  text-align: center;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 12px;
  position: fixed;
  bottom: 5vh;
  right: 3vw;
  transition: 250ms ease;
  z-index: 11;
  box-shadow: -1px 3px 16px rgba(0, 0, 0, 0.2);
}
.btn-member:hover {
  background: #af1d77;
}
@media (max-width: 599px) {
  .btn-member {
    transform: scale(0.8);
    right: 1vw;
    bottom: 1vh;
  }
}

/* END: Buttons */
/* START: Links */
a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
}

/* END: Links */
/*START: Variables */
/*END: Variables */
/* START: Elements */
main {
  padding-top: 80px;
  overflow-x: hidden;
}

.top-space {
  padding-top: 2em;
  padding-top: clamp(2em, 8vh, 6em);
}

.bottom-space {
  padding-bottom: 2em;
  padding-bottom: clamp(2em, 8vh, 6em);
}

/* END: Elements */
/* START: Grid */
.grid-width {
  margin: 0 auto;
  width: 90vw;
  max-width: 1200px;
}
@media (min-width: 600px) {
  .grid-width {
    width: 80vw;
  }
}
@media (min-width: 900px) {
  .grid-width {
    width: 70vw;
  }
}
@media (min-width: 1200px) {
  .grid-width {
    width: 60vw;
  }
}
@media (min-width: 1800px) {
  .grid-width {
    width: 50vw;
  }
}

.grid-width-wide {
  max-width: 1920px;
  width: 90vw;
  margin: 0 auto;
}
.grid-width-narrow {
  max-width: 900px;
  width: 90vw;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .grid-width-narrow {
    width: 80vw;
  }
}
@media (min-width: 900px) {
  .grid-width-narrow {
    width: 60vw;
  }
}
@media (min-width: 1200px) {
  .grid-width-narrow {
    width: 40vw;
  }
}

/* END: Grid */
/* Accordeon */
.wpsm_panel-group {
  margin-top: 1em;
}

.wpsm_panel-body_inner a {
  color: #fff;
}

.accordeon .wpsm_panel-heading h4 {
  text-align: left;
  font-weight: 450;
}
.accordeon .wpsm_panel-body {
  padding-left: 30px !important;
}
.accordeon .ac_title_class {
  padding-top: 22px !important;
  line-height: 20px;
}
.accordeon .wpsm_panel-collapse .wpsm_panel-body {
  text-align: left;
}
.accordeon #wpsm_accordion_290 .wpsm_panel-default {
  border: none !important;
}
.accordeon .fa-plus::before {
  content: url("../img/icon-plus.png");
}
.accordeon .fa-minus::before {
  content: url("../img/icon-minus.png");
}

/*--------------------------------------------------------------
Components:
--------------------------------------------------------------*/
/* START: Navigation */
.anchor {
  display: block;
  position: relative;
  top: -125px;
  visibility: hidden;
}

@media only screen and (max-width: 900px) {
  .anchor {
    top: -100px;
  }
}
header.site-header {
  box-shadow: 0px 4px 8px -2px rgba(40, 84, 171, 0.1);
  background: #fff;
  z-index: 999;
  position: fixed;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 80px;
  display: flex;
  align-items: center;
  transition: background 0.2s ease-in-out, height 0.2s ease-in-out;
}
header.site-header .grid-width-wide {
  transition: all 0.2s ease-in-out;
}
header.site-header #nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.site-header .logo {
  max-width: 125px;
  transition: opacity 0.2s ease-in-out;
}
header.site-header .logo:hover {
  opacity: 1;
}
header.site-header nav a {
  font-size: 1em;
  letter-spacing: 1.25px;
  font-weight: 400;
  color: #2b2765;
  transition: color 0.2 ease-in-out;
}
@media screen and (max-width: 1100px) {
  header.site-header nav a {
    font-size: 0.75rem;
  }
}
header.site-header nav a:hover {
  color: #2b2765;
  opacity: 0.8;
}
header.site-header nav a:last-child {
  padding-right: 0;
}
header.site-header .current-menu-item a {
  color: #2b2765;
  position: relative;
}
header.site-header .current-menu-item a::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -8px;
  border-bottom: 0.5px solid #2b2765;
}
header.site-header ul {
  display: flex;
  justify-content: flex-end;
}
header.site-header .nav-menu {
  width: 100%;
  display: none;
}
@media (min-width: 900px) {
  header.site-header .nav-menu {
    display: block;
  }
}
header.site-header .nav-menu li {
  list-style-type: none;
  line-height: 1.2em;
  margin-left: 0;
  padding: 0 1em;
  width: max-content;
}
header.site-header .nav-menu li .sub-menu {
  display: none;
  position: absolute;
  background: white;
  padding: 1em;
  padding-top: 20px;
}
header.site-header .nav-menu li .sub-menu li {
  padding: 0;
  margin-top: 1em;
}
header.site-header .nav-menu li:hover .sub-menu {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 8px -2px rgba(40, 84, 171, 0.1);
}
header.site-header .menu-header-menu-1-container,
header.site-header .menu-header-menu-2-container {
  width: 100%;
}

header.scrolled {
  background: #fff;
  height: 80px;
}

svg.burger-btn {
  z-index: 9999;
}
@media (min-width: 900px) {
  svg.burger-btn {
    display: none;
  }
}

.burger-btn {
  overflow: visible;
  cursor: pointer;
  fill: #2b2765;
}
.burger-btn--1, .burger-btn--2, .burger-btn--3 {
  transition: 0.2s;
  transform-origin: center center;
}
.burger-btn.active .burger-btn--1 {
  transform: translate(-7px, 7px) rotate(45deg);
}
.burger-btn.active .burger-btn--2 {
  transform: translateX(20px);
  opacity: 0;
}
.burger-btn.active .burger-btn--3 {
  transform: translate(-7px, -7px) rotate(-45deg);
}

.nav-mobile {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 900px) {
  .nav-mobile {
    display: none;
  }
}
.nav-mobile ul {
  flex-direction: column;
}
.nav-mobile ul li {
  list-style: none;
  padding: 1rem 0;
  margin-left: 0;
}
.nav-mobile ul li a {
  font-size: 1.35rem;
}
.nav-mobile .nav-mobile-content {
  width: 80%;
}
.nav-mobile .current-menu-item a::after {
  display: none;
}
.nav-mobile .sub-menu {
  display: none;
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  width: auto;
  left: -2rem;
  right: -2rem;
  max-width: none;
}
.nav-mobile.open li {
  list-style: none;
  padding: 0.75rem 0;
  margin-left: 0;
}

/* END: Navigation */
/* START: Footer */
footer {
  z-index: 2;
  width: 100%;
  background: #e9e3dd;
  position: relative;
  left: 0;
  bottom: 0;
}
footer .footer {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 1em;
  padding: 1em 0;
}
@media screen and (min-width: 600px) {
  footer .footer {
    gap: 2em;
    padding: 3em 0;
  }
}
footer .footer .phineoLogo {
  margin: 0 auto;
  text-align: right;
  flex: 1;
}
@media screen and (max-width: 1115px) {
  footer .footer .phineoLogo {
    text-align: center;
  }
}
footer .footer .phineoLogo img {
  max-width: 180px;
}
footer .menu-footer_menu-container .menu {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding: 2em;
  gap: 4em;
}
@media (max-width: 599px) {
  footer .menu-footer_menu-container .menu {
    gap: 2em;
  }
}
footer .menu-footer_menu-container .menu li,
footer .menu-footer_menu-container .menu a {
  color: #2b2765;
  font-size: 1em;
  font-weight: 200;
  list-style: none;
  margin-left: 0;
}
footer .copyrigth {
  font-size: 0.7rem;
  padding: 1.5em 0 0.5em 0;
  opacity: 0.8;
}

.social-icons {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 2em;
  padding: 1em;
}
.social-icons img {
  height: 1.5em;
}

/* END: Footer */
/* START: Posts and pages */
.single-post .h1-style {
  text-align: left;
  margin-bottom: 0.5em;
}
.single-post .p-category-date {
  font-weight: 600;
  font-size: 1.2rem;
  color: #2b2765;
  margin-bottom: 1.5em;
}
.single-post .header-img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  object-fit: cover;
  margin-bottom: 1em;
}

.flexieble-inhalte-flex-container-news-blog {
  display: flex;
  flex-flow: column nowrap;
  gap: 2em;
  gap: clamp(2em, 8vh, 6em);
  padding: 1em 0;
}
.flexieble-inhalte-flex-container-news-blog .center-btn {
  display: block;
  margin: 0em auto;
}
.flexieble-inhalte-flex-container-news-blog img {
  display: block;
  margin: 0em auto;
}
.flexieble-inhalte-flex-container-news-blog .p-medium :last-child {
  margin-bottom: 0;
}
.flexieble-inhalte-flex-container-news-blog .video-container {
  margin: 0 auto;
}
.flexieble-inhalte-flex-container-news-blog .video-container iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.single .gallery,
.single-news .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.single .gallery__item,
.single-news .gallery__item {
  width: calc(33.333% - 0.7em);
}
@media (max-width: 599px) {
  .single .gallery__item,
.single-news .gallery__item {
    width: 47%;
  }
}
.single .gallery__item a,
.single-news .gallery__item a {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 60%;
  overflow: hidden;
  transition: all 0.2s ease-out;
}
.single .gallery__item a:hover,
.single-news .gallery__item a:hover {
  opacity: 0.8;
}
.single .gallery__item img,
.single-news .gallery__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  object-fit: cover;
}

.mfp-bg {
  opacity: 0.9;
}

.mfp-arrow {
  opacity: 1 !important;
}

.mfp-arrow:hover {
  opacity: 0.9 !important;
}

.mfp-close {
  color: #ff7600 !important;
  opacity: 1 !important;
}

.mfp-close:hover {
  opacity: 0.9 !important;
}

.mfp-arrow-right::before {
  border-left: 27px solid #ff7600;
  opacity: 1 !important;
}

.mfp-arrow-right::after {
  border-left: 17px solid #ff7600;
  opacity: 1 !important;
}

.mfp-arrow-left::before {
  border-right: 27px solid #ff7600;
  opacity: 1 !important;
}

.mfp-arrow-left::after {
  border-right: 17px solid #ff7600;
  opacity: 1 !important;
}

/* END: Posts and pages */
/* START: Single Page */
/* END: Single Page */
/* START: Media */
/* END: Media */
/* START: Contact form 7 Style*/
div.wpcf7 {
  margin: 0 auto;
  max-width: 600px;
  padding: 1rem;
}

.wpcf7 select,
.wpcf7 input,
.wpcf7 textarea {
  width: 100%;
  background: white;
  border: 2px solid #2b2765;
  padding: 12px 8px;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  color: #000;
}

.wpcf7 textarea:last-child {
  margin-bottom: 0;
}

.wpcf7 input[type=checkbox] {
  width: 13px;
  margin-bottom: 0;
}

.wpcf7-list-item-label {
  margin-right: 0.5rem;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7 input[type=submit] {
  width: 40%;
  max-width: 220px;
  min-width: 150px;
  margin: 0 auto;
  display: block;
  color: #2b2765;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.wpcf7 input[type=submit]:hover {
  background: #ff7600;
  border: 2px solid #ff7600;
  color: white;
  display: block;
}

.datenschutz-flex {
  margin: 1rem 0 2rem 0;
  align-items: baseline;
}

.datenschutz-flex p {
  line-height: 1.5em;
}

/* END: Contact form 7 Style*/
/*--------------------------------------------------------------
Utilities:
--------------------------------------------------------------*/
/* START: Accessibility */
.fontSizeAccessible p {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.fontSizeAccessible:hover p {
  position: relative;
  visibility: visible;
  opacity: 1;
}

/* END: Accessibility */
/* START: Alignments */
/* END: Alignments */
/*--------------------------------------------------------------
Content:
--------------------------------------------------------------*/
/* START: Front Page */
@keyframes slides {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.fadeSlide {
  animation-name: fade;
  animation-duration: 0.3s;
}

.slider {
  width: 100vw;
  height: calc(100vh - 80px);
  max-width: 1920px;
  max-height: 1000px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.slider .slider--title {
  position: absolute;
  z-index: 99;
  top: 8vh;
  left: 100px;
}
@media screen and (max-width: 1100px) {
  .slider .slider--title {
    top: unset;
    bottom: 10vw;
  }
}
@media (max-width: 599px) {
  .slider .slider--title {
    left: 1rem;
    bottom: 1rem;
  }
}
.slider .slider-navi {
  display: flex;
  flex-flow: row nowrap;
  gap: 12px;
}
.slider .slider-navi .slider-btn {
  max-width: 28px;
  transform: rotate(-90deg);
  padding: 0 6px;
}
.slider .slider-navi .sliderDots {
  top: 10%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 12px;
}
.slider .slider-navi .sliderDots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #ff7600;
}
.slider .slider-navi .sliderDots .activedot {
  background: #ff7600;
}
.slider .h1-style {
  max-width: 340px;
  font-size: 2.5em;
  letter-spacing: 2.25px;
  text-align: left;
  text-decoration: none;
  margin: 0.5em 0;
}
@media (max-width: 599px) {
  .slider .h1-style {
    max-width: 280px;
    font-size: 2em;
    letter-spacing: 1.25px;
  }
}
.slider .sub-title {
  color: #000;
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-decoration: none;
}
@media (max-width: 599px) {
  .slider .sub-title {
    font-size: 1rem;
  }
}
.slider .head-btn {
  margin-top: 2.5em;
}
@media (max-width: 599px) {
  .slider .head-btn {
    margin-top: 2em;
  }
}
.slider .slideshow {
  position: relative;
}
.slider .slideshow .slider--image {
  position: absolute;
  display: block;
  width: 100%;
  height: calc(100vh - 80px);
  max-height: 1000px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
@media (max-width: 599px) {
  .slider .mobile-fade-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 380px;
    z-index: 10;
    background: linear-gradient(0deg, rgba(233, 227, 221, 0.5) 0%, rgba(233, 227, 221, 0) 100%);
  }
}

.recent--posts {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recent--posts .posts {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 3em;
}
.recent--posts .posts .post__infos {
  min-width: 280px;
  max-width: 368px;
}
.recent--posts .posts .post__infos img {
  width: 100%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 5/3;
  object-fit: cover;
}
.recent--posts .posts .text .p-category-date {
  font-weight: 600;
  font-size: 1rem;
  color: #2b2765;
  margin-bottom: 0.4em;
}
@media screen and (min-width: 900px) {
  .recent--posts .posts .post__infos:nth-child(1) {
    min-width: 100%;
  }
  .recent--posts .posts .post__infos:nth-child(1) a {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    gap: 3em;
    margin-bottom: 3em;
  }
}
@media screen and (min-width: 900px) and (min-width: 1100px) {
  .recent--posts .posts .post__infos:nth-child(1) a {
    flex-flow: row;
  }
}
@media screen and (min-width: 900px) {
  .recent--posts .posts .post__infos:nth-child(1) .text {
    max-width: 600px;
  }
}

.infoArea2 {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 3em;
}
.infoArea2 .card {
  display: flex;
  align-items: center;
  max-width: 368px;
}
.infoArea2 .card__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.infoArea2 .card__content img {
  align-self: center;
  height: 80px;
}
.infoArea2 .card__content .h3-style {
  text-align: center;
  align-self: center;
  height: 60px;
  margin-top: 1em;
  margin-bottom: 2em;
  max-width: 280px;
}

.gallerySct {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 3em;
  padding: 2em 0;
  position: relative;
}
.gallerySct .gallery {
  position: relative;
  width: 368px;
  height: 368px;
}
@media (max-width: 599px) {
  .gallerySct .gallery {
    height: 100%;
  }
}
.gallerySct .gallery:hover .overlay {
  opacity: 1;
}
.gallerySct .gallery:nth-child(3n+1) .overlay {
  background-color: #ff7600;
}
.gallerySct .gallery:nth-child(3n+1) .overlay a {
  color: #fff;
}
.gallerySct .gallery:nth-child(3n+1) .overlay p {
  color: #fff;
  margin-bottom: 1em;
}
.gallerySct .gallery:nth-child(3n+2) .overlay {
  background-color: #2b2765;
  color: #fff;
}
.gallerySct .gallery:nth-child(3n+2) .overlay a {
  color: #fff;
}
.gallerySct .gallery:nth-child(3n+2) .overlay p {
  color: #fff;
  margin-bottom: 1em;
}
.gallerySct .gallery:nth-child(3n+3) .overlay {
  background-color: #af1d77;
}
.gallerySct .gallery:nth-child(3n+3) .overlay a {
  color: #fff;
}
.gallerySct .gallery:nth-child(3n+3) .overlay p {
  color: #fff;
  margin-bottom: 1em;
}
.gallerySct .gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.gallerySct .gallery .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #e9e3dd;
  overflow: hidden;
}
.gallerySct .gallery .overlay .gallerytext {
  position: absolute;
  padding: 1em;
}
.gallerySct .gallery .overlay .gallerytext p {
  font-size: 0.9em;
}

.front-page .gallerySct .gallery--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .front-page .gallerySct .gallery {
    display: none;
  }
  .front-page .gallerySct .gallery--mobile {
    display: block;
  }
}

/* END: Front Page */
/* START: Depression Page */
.factsGroup {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  align-items: center;
  gap: 3em;
  margin-bottom: 4em;
}
@media (min-width: 900px) {
  .factsGroup {
    flex-flow: row nowrap;
    align-items: baseline;
    width: 80%;
    max-width: 960px;
    margin-top: 4em;
  }
}
.factsGroup .facts-wrapper span {
  display: block;
  text-align: center;
  max-width: 250px;
}
.factsGroup .facts-wrapper .vals {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ff7600;
}

@media screen and (max-width: 1110px) {
  .linkcard:nth-child(2) {
    order: 2;
  }
  .linkcard:nth-child(4) {
    order: 3;
  }
}

.first-steps-container {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4em;
  padding: 3em 0;
  max-width: 1200px;
  margin: 0 auto;
}
.first-steps-container .first-steps-card {
  max-width: 530px;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  gap: 2em;
}
@media (max-width: 599px) {
  .first-steps-container .first-steps-card {
    flex-flow: column;
    align-items: center;
  }
}
.first-steps-container .first-steps-card img {
  min-width: 100px;
  height: 100px;
}
.first-steps-container .first-steps-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.2em;
}

.depression-erkennen-container {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .depression-erkennen-container {
    width: 80vw;
  }
}
@media screen and (min-width: 900px) {
  .depression-erkennen-container {
    width: 60vw;
  }
}
@media screen and (min-width: 1200px) {
  .depression-erkennen-container {
    width: 80vw;
  }
}
.depression-erkennen-container div:nth-child(4) {
  padding-bottom: 0;
}
.depression-erkennen-container .depression-erkennen-content {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 3em;
  padding: 3em 0;
  width: 100%;
  max-width: 1200px;
}
@media screen and (min-width: 1200px) {
  .depression-erkennen-container .depression-erkennen-content {
    justify-content: start;
  }
}
.depression-erkennen-container .depression-erkennen-content img {
  height: 240px;
}
@media screen and (min-width: 1200px) {
  .depression-erkennen-container .depression-erkennen-content img {
    width: 30%;
  }
}
.depression-erkennen-container .depression-erkennen-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1em;
}
.depression-erkennen-container .depression-erkennen-content .p-medium {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .depression-erkennen-container .depression-erkennen-content .p-medium {
    width: 60%;
  }
}
@media screen and (min-width: 600px) {
  .depression-erkennen-container .depression-erkennen-content .p-medium ul {
    columns: 2;
    column-gap: 2em;
  }
}

.imageQuote {
  margin: 0 auto;
  width: 90vw;
}
.imageQuote img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  object-fit: cover;
}
@media screen and (min-width: 600px) {
  .imageQuote {
    width: 80vw;
  }
}
@media screen and (min-width: 900px) {
  .imageQuote {
    width: 60vw;
  }
}
@media screen and (min-width: 1200px) {
  .imageQuote {
    width: 100%;
    max-width: 1920px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
  }
  .imageQuote img {
    width: 50%;
  }
  .imageQuote div {
    width: 50%;
  }
}
.imageQuote div {
  max-width: 700px;
  padding: 1em;
}
@media screen and (min-width: 600px) {
  .imageQuote div {
    padding: 2em;
  }
}
@media screen and (min-width: 1200px) {
  .imageQuote div {
    padding: 0 3em;
  }
}
.imageQuote div p {
  font-weight: 600;
  font-size: 1rem;
  color: #2b2765;
  margin-bottom: 1em;
}
.imageQuote div .quote-mark {
  max-width: 2em;
  display: block;
  aspect-ratio: 0;
}

/* END: Depression Page */
/* START: Depressions-Check Page */
.depressionscheck-page section {
  display: grid;
  place-items: center;
  min-height: 80vh;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-1200px);
    position: absolute;
  }
  to {
    opacity: 1;
    transform: translateY(0%);
    position: relative;
    pointer-events: all;
  }
}
@keyframes fadeIn2 {
  from {
    opacity: 0;
    transform: translateY(-30%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0%);
    position: relative;
  }
  50% {
    position: relative;
    opacity: 0;
    transform: translateY(-600px);
  }
  100% {
    opacity: 0;
    transform: translateY(-1200px);
    position: absolute;
    top: 0;
  }
}
@keyframes fadeOut2 {
  from {
    opacity: 1;
    transform: translateY(0%);
  }
  to {
    opacity: 0;
    transform: translateY(-20%);
  }
}
@keyframes fading {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
  }
}
@keyframes fading2 {
  from {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation: fadeIn 400ms ease-out 250ms forwards;
}

.fadeOut {
  animation: fadeOut 400ms ease-in forwards;
}

.fadeIn2 {
  animation: fadeIn2 400ms ease-out 200ms forwards;
}

.fadeOut2 {
  animation: fadeOut2 200ms ease-in forwards;
}

.displayNone {
  display: none;
}

.displayBlock {
  display: block;
}

.startAnswers {
  animation: fading 500ms ease-in forwards;
}

.backToStart {
  animation: fading2 500ms ease-out forwards;
}

.check__view1 {
  transform: translateY(0%);
  display: grid;
  place-items: center;
}

.check__view2 {
  transform: translateY(-1200px);
  display: grid;
  place-items: center;
  position: absolute;
  opacity: 0;
}

.test {
  background: #e9e3dd;
  display: flex;
  flex-flow: column wrap;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.test .testContainer {
  flex: 1;
  opacity: 0;
}
.test .testContainer #question {
  color: #2b2765;
  font-size: 1em;
  font-weight: 400;
  height: 120px;
}
@media screen and (min-width: 600px) {
  .test .testContainer #question {
    font-size: 1.25rem;
  }
}
.test .testContainer .answers {
  margin: 5% 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 50px;
}
.test .testContainer .answers label span {
  color: #2b2765;
  font-weight: 400;
  font-size: 1em;
  padding-left: 0.75em;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .test .testContainer .answers label span {
    font-size: 1.25rem;
  }
}
.test .testContainer .answers label input::after {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: -2px;
  left: -1px;
  position: relative;
  content: "";
  display: inline-block;
  visibility: visible;
  background: #e9e3dd;
  border: 1px solid #ff7600;
}
.test .testContainer .answers label input:checked::after {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  top: -2px;
  left: -1px;
  position: relative;
  background-color: #2b2765;
  content: "";
  display: inline-block;
  visibility: visible;
}
.test .controls .prevBtn::before {
  background-image: url("../img/arrow.svg");
  content: "";
  background-repeat: no-repeat;
  background-size: 1.4rem 1.4rem;
  height: 1.4rem;
  width: 1.4rem;
  margin-right: 0.8rem;
  display: inline-block;
  transform: translate(0, 25%) rotate(180deg);
  transition: transform 300ms ease;
}
.test .bullets {
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 1em;
}
@media screen and (min-width: 600px) {
  .test .bullets {
    gap: 1.25em;
  }
}
.test .bullets span {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #b8b8b8;
}
@media screen and (max-width: 600px) {
  .test .bullets span {
    width: 0.75em;
    height: 0.75em;
  }
}
.test .bullets .activeQ {
  background: #2b2765;
}

.finishedTest {
  background: #e9e3dd;
  display: none;
  grid-column: none;
}
.finishedTest p {
  color: #2b2765;
}

.resultContainer {
  background: #e9e3dd;
  text-align: left;
  color: #2b2765;
  display: none;
  grid-column: none;
  place-items: unset;
}
.resultContainer .h2-style {
  margin-bottom: 0.5em;
}
.resultContainer .resultTitle {
  text-align: center;
  font-size: 1.2rem;
}
.resultContainer .result {
  color: #2b2765;
}
.resultContainer .result a {
  font-weight: 600;
  color: #2b2765;
}
.resultContainer .alert {
  color: red;
  border: 2px solid red;
  padding: 1em;
}

/* END: Depressions-Check Page */
/* START: Projekte Page */
/* END: Projekte Page */
/* START: Unterseiten Lichtblicke & Projekte Page */
.intro__img--text {
  width: 90vw;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-flow: row-reverse wrap;
  justify-content: center;
  align-items: center;
  gap: 3em;
}
@media (min-width: 600px) {
  .intro__img--text {
    width: 80vw;
  }
}
@media (min-width: 900px) {
  .intro__img--text {
    width: 70vw;
  }
}
@media screen and (min-width: 1200px) {
  .intro__img--text {
    width: 90vw;
    flex-wrap: nowrap;
    gap: 8em;
  }
}
@media screen and (min-width: 1200px) {
  .intro__img--text .info--left {
    max-width: 50%;
  }
}
@media screen and (min-width: 1800px) {
  .intro__img--text .info--left {
    max-width: 60%;
  }
}
.intro__img--text .info--left .h1-style {
  text-align: left;
  margin-bottom: 0.5em;
}
.intro__img--text .info--right {
  max-width: 380px;
}
.intro__img--text .info--right img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.quoteSct p {
  font-weight: 600;
}
.quoteSct .quote-mark {
  max-width: 2em;
  display: block;
  margin: 0;
}

.flexieble-inhalte-flex-container {
  display: flex;
  flex-flow: column nowrap;
  gap: 2em;
  gap: clamp(2em, 8vh, 6em);
  margin-bottom: 2em;
  margin-bottom: clamp(2em, 10vh, 8em);
}
.flexieble-inhalte-flex-container .center-btn {
  display: block;
  margin: 0em auto;
}
.flexieble-inhalte-flex-container img {
  display: block;
  margin: 1em auto;
}
.flexieble-inhalte-flex-container .gallery img {
  margin: 0 auto;
}
.flexieble-inhalte-flex-container .p-medium :last-child {
  margin-bottom: 0;
}
.flexieble-inhalte-flex-container .video-container {
  margin: 0 auto;
}
.flexieble-inhalte-flex-container .video-container iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.morePages ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5em;
}
.morePages ul li {
  border: 2px solid #2b2765;
  padding: 0.5em 1.25em;
  list-style-type: none;
  margin: 0;
}
.morePages ul li:hover {
  background: #af1d77;
  border: 2px solid #af1d77;
}
.morePages ul li:hover a {
  color: #fff;
}
.morePages ul li > a {
  color: #2b2765;
}

/*Roadmovie Projketseite*/
.blueIcon {
  font-size: 1em;
  position: relative;
  font-weight: bold;
  color: #2b2765;
}

.blueIcon::after {
  background-image: url("/wp-content/uploads/2023/02/Arrow.svg");
  content: "";
  background-size: 1.4rem 1.4rem;
  height: 1.4rem;
  width: 1.4rem;
  margin-left: 0.8rem;
  display: inline-block;
  transform: translate(0, 28%);
  transition: transform 300ms ease;
}

.blueIcon:hover::after {
  transform: translate(12px, 28%);
}

.page-id-6462 .first-steps-container {
  gap: 2em;
}

.page-id-6462 .flexieble-inhalte-flex-container .video-container {
  margin: 4.5em auto;
}

.page-id-6462 .video-header {
  margin-bottom: 5%;
  /*width: 100%;*/
  height: 0;
  padding-top: 32.8571%;
  background-color: #ccc;
  position: relative;
}

.page-id-6462 .video-header video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.page-id-6462 .intro__img--text .info--right > img {
  aspect-ratio: auto;
}

.page-id-6462 .gallerySct {
  justify-content: flex-start !important;
}

@media (max-width: 1199px) {
  .page-id-6462 .intro__img--text {
    justify-content: flex-end;
  }

  .page-id-6462 .intro__img--text .info--right {
    display: flex;
    order: 2;
  }

  .page-id-6462 .intro__img--text .info--right > img {
    aspect-ratio: auto;
  }
}
.flex-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}

@media (max-width: 900px) {
  .flex-header {
    flex-flow: row wrap;
  }
}
.flex-header h2,
.flex-header2 h2,
.pinkBg h2 {
  text-align: left !important;
  margin-bottom: 0.5em;
}

.flex-header img,
.accordeon-sct img {
  max-width: 125px;
}

@media (max-width: 768px) {
  .flex-header img,
.accordeon-sct img {
    max-width: 80px;
  }
}
.flex-header2 {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}

.flex-header2 img {
  max-width: 350px;
}

.flex-header2 button {
  margin-top: 2em;
  margin-right: 1em;
}

.flex_title .flex-header {
  justify-content: center;
}

@media (max-width: 900px) {
  .flex_title .flex-header {
    justify-content: flex-start;
  }
}
.page-id-6462 .flexieble-inhalte-flex-container {
  gap: 0em;
}

.text-galerie-flexv01 {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 2em auto;
}

.text-galerie-flexv01 .text-galerie-titel {
  font-weight: bold;
}

.text-galerie-flexv01 .text-galerie-subtitel {
  margin-bottom: 1em;
}

.text-galerie-flexv01 a {
  text-decoration: underline;
}

.page-id-6462  #wps_accordion_pro_5871 .wpsm_panel-body_inner  .flex-header{
	align-items: flex-start !important;
}
.page-id-6462  #wps_accordion_pro_5871 .wpsm_panel-body_inner  .flex-header > img{
	max-width: 225px !important;
}
.page-id-6462  #wps_accordion_pro_5871 .wpsm_panel-body_inner  .flex-header > div{
	flex: 0.95 !important;
}

.page-id-6462  #wps_accordion_pro_5871 .wpsm_panel-body_inner iframe{
	display: block;
	margin: 0 auto;
}

.page-id-6462  #wps_accordion_pro_5870 .wpsm_panel-body_inner{
	width: 100%;
    padding-top: 56.25%;
    height: 0px;
    position: relative;
}
.page-id-6462 #wps_accordion_pro_5870 .wpsm_panel-body_inner iframe{
	 width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.overlay-popup-item{
	display: none;
	z-index: 20;
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0px;
    left: 0px;
	right: 0;
	margin: 0;
}
.overlay-popup-item #close-overlay{
	right: 0;
	top: 0;
	position: absolute;
	color: white;
	width: 30px;
	height: 30px;
	z-index: 30;
	cursor: pointer;
}
#fadeOverlay{
  display: none;
  opacity: 0.8; 
  background: #2b2765; 
  width:      100%;
  height:     100%; 
  z-index:    10;
  top:        0; 
  left:       0; 
  position:   fixed; 
}

/* END: Unterseiten Lichtblicke & Projekte Page */
/* START: Glossar */
.glossar-content {
  margin-bottom: 3em;
}

.glossar-quelle .h3-style {
  color: #2b2765;
}

.dataTables_filter {
  position: absolute;
  right: 8%;
  top: 15px;
  z-index: 99;
}
@media screen and (max-width: 599px) {
  .dataTables_filter {
    right: 10%;
  }
}
.dataTables_filter label {
  color: transparent;
}
.dataTables_filter label input {
  padding: 8px 30px;
}
@media screen and (max-width: 400px) {
  .dataTables_filter label input {
    padding: 6px 20px;
  }
}

.dataTables_wrapper {
  position: relative;
}
.dataTables_wrapper #tablepress-2 caption {
  display: none;
  pointer-events: none;
}
.dataTables_wrapper #tablepress-2 thead th {
  background: #2b2765;
  color: #fff;
  padding: 16px;
  font-weight: 400;
}
.dataTables_wrapper #tablepress-2 thead th::after {
  right: 16px;
  font-size: 20px;
}
.dataTables_wrapper #tablepress-2 tbody tr td {
  border: 2px solid #2b2765;
  background: #fff !important;
  padding: 16px;
  font-weight: 600;
  color: #2b2765;
}
.dataTables_wrapper #tablepress-2 tbody tr td:hover {
  background: #ff7600 !important;
}
.dataTables_wrapper #tablepress-2 tbody tr td a {
  color: #2b2765;
}

.dataTables_paginate .paginate_button {
  text-decoration: none;
  margin: 0 12px;
}
.dataTables_paginate .paginate_button::before {
  display: none !important;
  visibility: hidden;
  opacity: 0;
}
.dataTables_paginate .paginate_button::after {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* END: Glossar */
/* START: Infothek Page */
.infothek-anchor-menue {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4em;
  padding: 2em 0;
  max-width: 1200px;
  margin: 0 auto;
}
.infothek-anchor-menue .anchor-menue-card {
  max-width: 530px;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  gap: 2em;
}
@media (max-width: 599px) {
  .infothek-anchor-menue .anchor-menue-card {
    flex-flow: column;
    align-items: center;
  }
}
.infothek-anchor-menue .anchor-menue-card img {
  min-width: 100px;
  height: 100px;
}
.infothek-anchor-menue .anchor-menue-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.2em;
}

.medientipps-intro {
  margin-bottom: 2em;
}

.downloadSct {
  padding: 8px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2em;
  margin-bottom: 2em;
}
.downloadSct:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .downloadSct {
    flex-flow: column wrap;
    gap: 1em;
  }
}
.downloadSct .t1 {
  flex: 1.6;
  color: #2b2765;
  font-weight: 600;
}
.downloadSct .t2 {
  flex: 0.6;
}

.linktipps ul {
  margin-top: 2em;
  columns: 1;
}
@media screen and (min-width: 700px) {
  .linktipps ul {
    columns: 2;
  }
}

/* END: Infothek Page */
/* Start: Kliniksuche */
.container--wide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.padding-top {
  padding-top: 1.75rem;
}

.two-fifths {
  width: 40%;
}

.flex__item.two-fifths strong {
  width: 5rem;
  font-weight: 500;
}

.three-fifths {
  width: 60%;
}

.three-fifths strong {
  width: 10.5rem;
  font-weight: 500;
}

.flexgrid {
  display: flex;
  margin-left: -2rem;
  max-width: none;
  margin-bottom: 2.5rem;
}

.flex__item {
  padding-left: 2rem;
}

.listing .flex__item p {
  display: flex;
  padding: 0.25rem 0;
  align-items: baseline;
}

.table-box {
  border-top: 1px solid #2b2765;
}

.table-box__row {
  display: flex;
  border: 1px solid #2b2765;
  border-top: 0;
}

.table-box__row p {
  margin: 0;
}

.table-box__label {
  width: 40%;
  padding: 0.75rem 1rem 0.7rem;
  border-right: 1px solid #2b2765;
}

.table-box__label p {
  font-weight: 500;
}

.table-box__text {
  width: 60%;
  padding: 0.75rem 1rem 0.7rem;
}

.more-and-form .flex {
  display: flex;
  margin-left: -0.75rem;
  max-width: none;
}

.more-and-form .flex__item {
  width: 50%;
  padding-left: 0.75rem;
}

.more-and-form form {
  width: 400px;
  margin: 3rem auto 0;
}

.more-and-form form br {
  display: none;
}

.more-and-form form span,
.more-and-form form label {
  display: block;
}

.more-and-form form label {
  margin-bottom: 1.2rem;
}

.more-and-form input:not([type=submit]),
.more-and-form textarea {
  width: 100%;
  color: #2b2765;
  display: block;
  border: 2px solid #2b2765;
  outline: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0.8rem 1rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.more-and-form .datenschutz-flex input {
  float: left;
  width: 13px;
  margin-right: 0.5rem;
}

.more-and-form .datenschutz-flex .wpcf7-form-control-wrap {
  display: inline-block;
}

.more-and-form .datenschutz-flex .wpcf7-form-control-wrap + p {
  transform: translateY(-15px);
}

.more-and-form [type=submit] {
  display: block;
  font-size: 1rem;
  letter-spacing: 1px;
  vertical-align: middle;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  border: none;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.4;
  padding: 0.85rem 1rem 0.75rem;
  border-radius: 0;
  text-decoration: none !important;
  text-align: center;
  color: #2b2765;
  border: 2px solid #2b2765;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
  margin: 0 auto;
  width: 150px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 300ms ease;
}

.more-and-form [type=submit]:hover {
  background: #af1d77;
  border: 2px solid #af1d77;
  color: #ffffff;
}

.wpcf7-not-valid-tip {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-top: 2px;
}

.filter-grid {
  display: flex;
}

.filter-grid__filters {
  width: 260px;
  padding-right: 2rem;
  padding-top: 2rem;
}

.filter-grid__results-area {
  width: calc(100% - 260px);
}

.filter-grid__filters h3 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #2b2765;
  margin-bottom: 1rem;
}

.filter-grid__filters p {
  font-weight: 500;
  color: #2b2765;
  margin-bottom: 0.5rem;
}

.filter-grid__results-area input,
.filter-grid__results-area .btn {
  width: 100%;
  font-size: 1em;
  font-weight: 600;
  color: #2b2765;
  display: block;
  border: 2px solid #2b2765;
  outline: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0.9rem 1rem 0.8rem;
}

.filter-grid__results-area .btn:hover {
  background: #af1d77;
  border: 2px solid #af1d77;
  color: #ffffff;
}

.filter-grid__results-area .btn {
  transition: all 300ms ease;
  text-align: center;
}

.search label {
  color: #2b2765;
  font-weight: 500;
  font-size: 16px;
  display: block;
  margin-bottom: 0.25rem;
}

.search label span {
  font-weight: normal;
}

.city-field,
.area-field {
  width: 40%;
}

.button-field {
  width: 20%;
}

.expandable a {
  display: block;
  padding-left: 20px;
  font-size: 16px;
  position: relative;
  color: #2b2765;
  margin-bottom: 10px;
}

.expandable div + p {
  margin-top: 20px;
}

.expandable a::before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid #2b2765;
  position: absolute;
  left: 0;
  top: 3px;
}

.expandable .js-check::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.327' height='10.693' viewBox='0 0 11.327 10.693'%3E%3Cpath id='Path_847' data-name='Path 847' d='M14325.442,1080l4.318,4.962,2.153-3.817,3.23-5.728' transform='translate(-14324.688 -1074.926)' fill='none' stroke='%23ff7600' stroke-linejoin='bevel' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 2px;
  top: 4px;
  width: 9px;
  height: 9px;
}

.filter-grid__results-area .search {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1rem;
  max-width: none;
  margin-bottom: 1.5rem;
}

.filter-grid__results-area .search > div {
  padding-left: 1rem;
}

.error-city {
  color: #af1d77;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 16px;
}

div.map {
  height: 500px;
  margin-bottom: 1.5rem;
}

div.map * {
  max-width: none;
}

.cluster span {
  color: #fff;
  font-weight: 500;
}

.filter-grid__results-area h2.h1-style {
  text-align: left;
  margin-bottom: 0.5em;
}

.results-listing {
  border: 1.5px solid #2b2765;
  border-top: 0;
}

.results-listing__header {
  background: #2b2765;
  color: #fff;
  font-weight: 500;
}

.results-listing__header > div {
  border-left: 1.5px solid #fff;
  position: relative;
  cursor: pointer;
}

.results-listing__header svg {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
}

.results-listing__header > div.up .up {
  fill: #fff;
}

.results-listing__header > div.down .down {
  fill: #fff;
}

.results-listing__header,
.listing__row {
  display: flex;
  align-items: center;
}

.listing__row {
  border-bottom: 1.5px solid #2b2765;
  color: #000;
}

.listing__row:hover {
  background: #ff7700;
  /*color:#FFF;*/
}

.listing__row:last-child {
  border: 0;
}

.results-listing__header > div,
.listing__row > div {
  font-size: 16px;
  width: 25%;
  padding: 1rem 1rem 0.9rem;
}

.results-listing__header > div:first-child,
.listing__row > div:first-child {
  width: 50%;
  border-left: 0;
}

.pagination {
  display: flex;
  padding-top: 1.25rem;
}

.pagination__info {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 16px;
}

.paginationjs ul {
  display: flex;
}

.paginationjs a {
  display: block;
  padding: 0.25rem 0.6rem;
  color: #000;
  font-size: 16px;
}

.paginationjs li.active a {
  font-weight: bold;
}

.paginationjs li a:hover {
  text-decoration: underline;
}

.paginationjs-next a {
  color: transparent;
  margin-left: 1rem;
}

.paginationjs-next a::before {
  content: "Nächste Seite";
  display: inline-block;
  color: #000;
}

.paginationjs-prev a {
  color: transparent;
  margin-right: 1rem;
}

.paginationjs li.disabled {
  opacity: 0.1;
}

.paginationjs-prev a::before {
  content: "Vorherige Seite";
  display: inline-block;
  color: #000;
}

.pagination__pages {
  padding-left: 2rem;
}

.link-activate,
.link-deactivate {
  font-size: 15px;
  color: #2b2765;
  display: block;
  position: relative;
  padding-top: 2px;
  padding-bottom: 2px;
  margin-top: 5px;
  cursor: pointer;
}

.link-activate {
  margin-top: 16px;
}

.link-activate svg,
.link-deactivate svg {
  width: 10px;
  display: inline-block;
  margin-right: 3px;
  vertical-align: -3px;
}

.expand-link {
  display: block;
  position: relative;
  margin-top: 1rem;
}

.expand-link::before {
  content: "";
  position: absolute;
  bottom: 100%;
  background: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
  width: 100%;
  left: 0;
  height: 5rem;
  pointer-events: none;
}

.expand-link.js-open::before {
  display: none;
}

.expand-link svg {
  width: 18px;
  display: inline-block;
  margin-right: 3px;
  vertical-align: -2px;
}

.expand-link span {
  font-size: 16px;
  color: #2b2765;
}

.expand-link .close {
  display: none;
}

.expand-link.js-open .close {
  display: inline-block;
}

.expand-link.js-open .open {
  display: none;
}

.expand-link.js-open svg {
  transform: rotate(180deg);
}

@media (max-width: 960px) {
  .filter-grid {
    flex-wrap: wrap;
  }

  .filter-grid__filters,
.filter-grid__results-area {
    width: 100%;
  }

  .filter-grid__filters {
    margin-bottom: 40px;
    padding-right: 0;
  }

  .expandable a {
    float: left;
    margin-right: 1rem;
    width: 29%;
  }

  .expandable > div::after {
    content: " ";
    display: table;
    clear: both;
  }
}
@media (max-width: 800px) {
  .flexgrid {
    flex-wrap: wrap;
  }

  .flexgrid .three-fifths,
.flexgrid .two-fifths {
    width: 100%;
  }

  .flexgrid .three-fifths strong,
.flexgrid .two-fifths strong {
    width: 10.5rem;
  }

  .expandable a {
    width: 46%;
  }
}
@media (max-width: 680px) {
  .table-box__row {
    flex-wrap: wrap;
  }

  .table-box__label,
.table-box__text {
    width: 100%;
    border: 0;
  }

  .table-box__label {
    padding-bottom: 0;
  }

  .table-box__text {
    padding-top: 0;
  }

  .paginationjs-prev,
.paginationjs-next {
    display: none !important;
  }
}
@media (max-width: 680px) {
  .listing .flex__item p {
    display: block;
    margin-bottom: 0.25rem;
  }

  .listing .flex__item strong {
    display: block;
    width: 100%;
  }
}
@media (max-width: 540px) {
  .filter-grid__results-area .search {
    flex-wrap: wrap;
  }

  .button-field {
    width: 100%;
  }

  .city-field,
.area-field {
    width: 50%;
  }

  .results-listing__header,
.listing__row {
    flex-wrap: wrap;
  }

  .results-listing__header > div,
.listing__row > div {
    width: 50%;
  }

  .results-listing__header > div:first-child,
.listing__row > div:first-child {
    width: 100%;
  }

  #sort-name {
    border-bottom: 1px solid #fff;
  }

  #sort-city {
    border-left: 0;
  }

  .listing__row > div:first-child {
    padding-bottom: 0;
  }
}
@media (max-width: 480px) {
  .expandable a {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  .pagination {
    display: block;
  }

  .pagination__pages {
    padding-left: 0;
  }

  .pagination__info {
    display: none !important;
  }

  .paginationjs ul {
    justify-content: center;
  }
}
@media (max-width: 400px) {
  .city-field,
.area-field {
    width: 100%;
  }

  .area-field {
    margin-top: 1rem;
  }
}
.single-klinik .h1-style {
  text-align: left;
  margin-bottom: 0.5em;
}

/* END: Kliniksuche */
/* Start: Medientipps Unterseite */
.info__cat .h2-style {
  margin-bottom: 2.5em;
}

.info__book {
  padding-bottom: 4em;
}
@media (min-width: 640px) {
  .info__book {
    min-height: 364px;
  }
}
.info__book p {
  margin-bottom: 1.2em;
}
.info__book p span {
  font-weight: 600;
}
.info__book h3 {
  font-size: 1.25em;
  font-weight: 400;
  margin-bottom: 1.5em;
  color: #2b2765;
}
.info__book img {
  margin-bottom: 2rem;
  max-width: 300px;
  max-height: 300px;
  object-fit: contain;
  object-position: right;
}
@media (min-width: 640px) {
  .info__book img {
    float: right;
    margin-left: 4rem;
    margin-bottom: 2rem;
    object-fit: contain;
    object-position: right;
  }
}

/* END: Medientipps Unterseite */
/* START: Hilfecenter / Helpcenter Page */
.page-id-269 {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  width: 100vw;
  margin: 0px;
  padding: 0px;
  background-color: #e9e3dd;
}
.page-id-269 header,
.page-id-269 .fixedIcon {
  display: none;
}
.page-id-269 main {
  padding-top: 0;
  overflow-x: unset;
}
.page-id-269 .h2-style {
  color: #2b2765;
}
.page-id-269 .helpcenter-flex-container {
  max-width: 1200px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 auto;
  gap: 6em;
}
.page-id-269 .helpcenter-flex-container .helpcenter-flex-item {
  max-width: 550px;
  text-align: center;
}
.page-id-269 .helpcenter-flex-container .helpcenter-flex-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5em;
}
.page-id-269 .helpcenter-flex-container .helpcenter-flex-item .p-medium {
  text-align: left;
}
.page-id-269 .helpcenter-flex-container .helpcenter-flex-item .numbers p:first-child {
  margin-top: 1em;
}
.page-id-269 .helpcenter-flex-container .helpcenter-flex-item .number {
  color: #2b2765;
  font-weight: 700;
  font-size: 1.4rem;
}
.page-id-269 .helpcenter-flex-container .helpcenter-flex-item .cardlink {
  display: block;
  text-align: left;
  color: #000;
  font-weight: 300;
}

/* END: Helpcenter Page */
/* START: About us / Über uns */
.section-vision p {
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 600;
  color: #2b2765;
}

.gallery-split {
  display: block;
  width: 100%;
  max-width: 368px;
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
  gap: 3em;
}
@media screen and (min-width: 872px) {
  .gallery-split {
    max-width: 1200px;
    flex-flow: row;
  }
}
.gallery-split .gallery-split__text {
  max-width: 784px;
}

/* END: About us / Über uns */
/* START: Archive / Aktuelles */
.recent_posts {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 3em;
}

.post-text .p-category-date {
  font-weight: 600;
  font-size: 1rem;
  color: #2b2765;
  margin-bottom: 0.4em;
}

.single-post-preview {
  display: inline-block;
  position: relative;
}
.single-post-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  object-fit: cover;
  margin-bottom: 1em;
}

@media screen and (min-width: 900px) {
  .vert .single-post-preview {
    width: 30%;
    max-width: 368px;
  }
}
@media screen and (min-width: 900px) {
  .news .single-post-preview a {
    display: flex;
    align-items: flex-start;
  }
  .news .single-post-preview a img {
    width: 40%;
    min-width: 40%;
    margin-right: 1.5em;
  }
}

.news-page .pagination,
.blog-page .pagination {
  text-align: center;
  justify-content: center;
}
.news-page .pagination a,
.blog-page .pagination a {
  display: block;
  padding: 0.25rem 0.6rem;
  color: #000;
  font-size: 1rem;
}
.news-page .pagination .current,
.blog-page .pagination .current {
  display: block;
  padding: 0 0.6rem;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
}

/* END: Archive / Aktuelles */
/* START: News Page */
/* END: News Page */
/* START: Blog Page */
/* END: Blog Page */
/* START: Kontakt */
main.kontakt-page {
  padding-bottom: 0;
}
main.kontakt-page section.kontakt h1 {
  line-height: 1.3;
  margin-bottom: 2rem;
}
main.kontakt-page section.kontakt .kontakt-elements {
  display: block;
  justify-content: space-between;
  margin: 3em 0;
}
main.kontakt-page section.kontakt .kontakt-elements .address {
  margin-top: 2em;
}
@media (min-width: 600px) {
  main.kontakt-page section.kontakt .kontakt-elements {
    display: flex;
    gap: 3em;
  }
  main.kontakt-page section.kontakt .kontakt-elements .contact {
    width: 60%;
  }
  main.kontakt-page section.kontakt .kontakt-elements .address {
    margin-top: 0;
    min-width: 242px;
  }
}
main.kontakt-page section.kontakt .kontakt-elements h2 {
  text-align: left;
}
main.kontakt-page section.kontakt .kontakt-elements span {
  display: block;
  margin-top: 1em;
}
main.kontakt-page section.bg-blue {
  background: #2b2765;
  padding: 3rem 0;
  margin-top: 3rem;
  margin-bottom: 0;
}
main.kontakt-page section.bg-blue h2 {
  color: white;
  margin-bottom: 1rem;
  padding: 1rem;
}
main.kontakt-page section.bg-blue p {
  color: white;
}
main.kontakt-page section.bg-blue p a {
  color: #ff7600;
}

/* END: Kontakt */
/* START: Support Page */
.support-container {
  margin: 0 auto;
  text-align: left;
}
.support-container .support-flex-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 6em;
}
@media screen and (min-width: 900px) {
  .support-container .support-flex-container {
    gap: 3em;
  }
}
.support-container .support-flex-container .support-flex-box {
  max-width: 368px;
  display: flex;
  flex-flow: column wrap;
}
.support-container .support-flex-container .support-flex-box img {
  max-height: 80px;
  align-self: center;
  margin-bottom: 2em;
}
.support-container .support-flex-container .support-flex-box h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5em;
  padding-bottom: 0.75em;
}

/* START: Support Page */
/* START: Medikamente */
.image-text .image-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
@media screen and (min-width: 900px) {
  .image-text .image-wrapper {
    width: 75%;
  }
}
@media screen and (min-width: 1200px) {
  .image-text .image-wrapper {
    width: 50%;
  }
}
.image-text .image-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 5/3;
  object-fit: cover;
}
.image-text .image-wrapper span {
  font-size: 0.8rem;
  margin-top: 5px;
}

/* END: Medikamente */
/* START: Datenschutz / Impressum / Rights Page */
.rights__text .h2-style {
  text-align: left;
  margin-top: 3em;
}

/* END: Datenschutz / Impressum / Rights Page  */
/* START: 404 */
.main-content-404 {
  padding: 150px 0;
}
.main-content-404 p {
  margin-bottom: 2rem;
}

/* END: 404 */
/* START: Fixes */
.paginationjs-pages ul li {
  list-style: none;
}

/* END: Fixes */

/*# sourceMappingURL=styles.min.css.map */
