@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");
/*
|--------------------------------------------------------------------------
| Colors
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Media Queries
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Paths
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Behavior
|--------------------------------------------------------------------------
*/
html,
body {
  min-height: 100vw;
  font-family: 'Montserrat', sans-serif;
}
html {
  scroll-behavior: smooth;
  position: relative;
  scroll-padding-top: 10rem;
}
::-webkit-scrollbar {
  width: 5px;
}
h1,
h2,
h3,
h4 {
  margin-bottom: 0.5em;
  margin-top: 1em;
}
/* not always a margin-top */
.card h1,
.news-article h1,
.card h2,
.news-article h2,
.card h3,
.news-article h3,
.card h4,
.news-article h4 {
  margin-top: 0;
}
a {
  color: #02a5d9;
}
p {
  margin-bottom: 1em;
}
strong {
  font-weight: 500;
  font-style: normal;
}
small,
.small {
  font-size: 0.85em;
}
big,
.big {
  font-size: 1.25em;
}
.color-inherit h1,
.color-inherit h2,
.color-inherit h3,
.color-inherit h4,
.color-inherit a {
  color: inherit;
}
.color-inherit a.btn {
  border-color: inherit;
}
.color-inherit a:hover:not(.btn),
.color-inherit a:focus:not(.btn) {
  color: inherit;
  text-decoration: underline;
}
a.btn.btn-primary {
  border: 2px solid #fff;
}
a.btn.btn-primary:hover {
  border: 2px solid #000;
}
img {
  max-width: 100%;
}
a.btn:hover,
.buttons-block a:hover {
  text-decoration: none !important;
}
@keyframes blink-down {
  from {
    opacity: 0;
    transform: translate(0, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, -100%);
  }
}
/*
|--------------------------------------------------------------------------
| Logo (header & footer
|--------------------------------------------------------------------------
*/
.navbar-brand img {
  width: 50vw;
  max-width: 250px;
}
/*
|--------------------------------------------------------------------------
| header
|--------------------------------------------------------------------------
*/
header {
  max-height: 100vh;
  overflow-y: auto;
}
@media (min-width: 992px) {
  header {
    max-height: none;
    overflow-y: visible;
  }
}
header::-webkit-scrollbar {
  display: none;
}
header.nav-expanded {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
header .header-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #ffffff;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #000000 100%);
}
header:not(.scrolled-down):not(.nav-expanded) .header-bg.banner-overlay {
  opacity: 0.5;
}
header:not(.scrolled-down):not(.nav-expanded) .header-bg.banner-overlay:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}
header .navbar-brand img {
  transition: all 0.6s ease-in;
}
header #main-nav .navbar-nav.main li a {
  transition: all 0.6s ease-in;
}
header.scrolled-down .navbar-brand img {
  max-width: 200px;
  transition: all 0.6s ease-in;
}
header.scrolled-down #main-nav .navbar-nav.main li a {
  padding-top: 0;
  transition: all 0.6s ease-in;
}
/*
|--------------------------------------------------------------------------
| search form
|--------------------------------------------------------------------------
*/
.search-form {
  position: relative;
}
.search-form .btn.search-button {
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.search-form .btn.search-button:hover,
.search-form .btn.search-button:focus {
  background-color: transparent;
  color: inherit;
}
@media (min-width: 992px) {
  .search-form .search-input {
    display: none;
  }
  .search-form.show-input .search-input {
    display: block;
  }
  .search-form.show-input .btn.search-button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid transparent;
  }
}
/*
|--------------------------------------------------------------------------
| Navbar Toggler (hamburger)
|--------------------------------------------------------------------------
*/
.navbar-toggler {
  width: 45px;
  height: 30px;
  padding: 0;
  position: relative;
  box-shadow: none !important;
}
.navbar-toggler .menu-icon {
  width: 100%;
  height: 3px;
  transition: all 0.3s;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000;
}
.navbar-toggler .menu-icon:before,
.navbar-toggler .menu-icon:after {
  content: "";
  height: 3px;
  width: 100%;
  position: absolute;
  left: 0;
  transition: all 0.3s;
  background-color: #000;
}
.navbar-toggler .menu-icon:before {
  top: -10px;
}
.navbar-toggler .menu-icon:after {
  bottom: -10px;
}
.navbar-toggler[aria-expanded="true"] .menu-icon {
  background-color: transparent;
}
.navbar-toggler[aria-expanded="true"] .menu-icon:before {
  top: 0;
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .menu-icon:after {
  bottom: 0;
  transform: rotate(-45deg);
}
/*
|--------------------------------------------------------------------------
| Menu
|--------------------------------------------------------------------------
*/
.dropdown-menu {
  overflow: hidden;
}
/*
|--------------------------------------------------------------------------
| navigation mobile
|--------------------------------------------------------------------------
*/
header .navbar-nav .nav-item.dropdown .dropdown-toggle {
  position: relative;
}
header .navbar-nav .nav-item.dropdown .dropdown-toggle:after {
  display: none;
}
header .navbar-nav .nav-item.dropdown .dropdown-toggle .dropdown-toggler {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  background-image: url("/static/art/chevron-right.fb8e76dcc72e.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 1em;
  height: 1em;
  transition: 0.3s all;
}
header .navbar-nav .nav-item.dropdown .dropdown-toggle.show .dropdown-toggler {
  transform: translateY(-50%) rotate(90deg) scaleX(-1);
}
header .navbar-nav .nav-item.dropdown .dropdown-item.active {
  background-color: #fff;
  color: #02a5d9;
}
header .navbar-nav .nav-item.dropdown.lang-nav .dropdown-toggler {
  pointer-events: none;
}
@media (min-width: 992px) {
  header .navbar-nav .nav-item.dropdown.lang-nav .dropdown-toggler {
    right: 5px;
  }
  header .navbar-nav .nav-item.dropdown.lang-nav .dropdown-menu {
    left: auto;
    right: 0;
    text-align: right;
    min-width: 0;
  }
}
/*
|--------------------------------------------------------------------------
| banner
|--------------------------------------------------------------------------
*/
#banner .carousel-item {
  min-height: 56.15vh !important;
}
@media (orientation: landscape) {
  #banner .carousel-item {
    min-height: 100vh !important;
  }
}
#banner .carousel-item .parallax-banner {
  min-height: 56.15vh !important;
  width: 100%;
  background-size: cover;
  background-position: center center;
}
@media (orientation: landscape) {
  #banner .carousel-item .parallax-banner {
    min-height: 100vh !important;
    background-attachment: fixed;
  }
}
#banner .ratio {
  overflow: hidden;
  --bs-aspect-ratio: 56.15vh;
}
@media (orientation: landscape) {
  #banner .ratio.ratio-4to1 {
    --bs-aspect-ratio: 25%;
  }
  #banner .ratio.ratio-3to1 {
    --bs-aspect-ratio: 33.333333%;
  }
  #banner .ratio.ratio-fullscreen {
    --bs-aspect-ratio: 100vh;
  }
}
#banner .ratio > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#banner .buttons-block a,
#banner .btn {
  color: inherit;
  background: transparent;
  border-color: #fff;
}
#banner .carousel-caption {
  right: 0;
  bottom: 3rem;
  left: unset;
  text-align: left;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  width: 33%;
}
@media (max-width: 1199.98px) {
  #banner .carousel-caption {
    width: auto;
  }
}
#banner .carousel-caption h3 {
  font-weight: 300;
  margin-top: 0.3rem;
}
@media (min-width: 992px) {
  #banner .carousel-caption h3 {
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  #banner .carousel-caption p {
    font-size: 20px;
  }
}
#banner .carousel-indicators {
  position: absolute;
  left: 0;
  right: unset;
  bottom: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding-left: 12px;
}
#banner .carousel-indicators [data-bs-target] {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  opacity: 1;
  border: none;
  background-color: #fff;
}
#banner .carousel-indicators [data-bs-target].active {
  background-color: #02a5d9;
}
#banner.banner-large .arrow-down {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  display: block;
}
#banner.banner-large .arrow-down::after {
  content: '';
  background-image: url("/static/art/arrow-down.0257b1d22f4c.svg");
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 25px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  animation: blink-down 0.8s linear infinite;
}
/*
|--------------------------------------------------------------------------
| gallery thumbnails
|--------------------------------------------------------------------------
*/
.fancybox figure {
  position: relative;
}
.fancybox .thumbnails-caption {
  position: absolute;
  right: 15%;
  bottom: 0;
  left: 15%;
  color: #fff;
  text-align: center;
  filter: drop-shadow(0 0 0.3rem #000);
}
/*
|--------------------------------------------------------------------------
| gallery slideshow
|--------------------------------------------------------------------------
*/
.carousel .carousel-caption {
  filter: drop-shadow(0 0 0.3rem #000);
}
@media (max-width: 767.98px) {
  .carousel .carousel-caption {
    font-size: smaller;
    left: 0;
    right: 0;
  }
}
.carousel .carousel-caption h1,
.carousel .carousel-caption h2,
.carousel .carousel-caption h3,
.carousel .carousel-caption h4,
.carousel .carousel-caption a {
  color: inherit;
}
.carousel.slider-with-title-and-text .carousel-caption {
  position: static;
  text-align: left;
}
.carousel.slider-with-title-and-text .carousel-caption h3 {
  font-weight: 300;
}
@media (min-width: 992px) {
  .carousel.slider-with-title-and-text .carousel-caption h3 {
    font-size: 45px;
  }
}
.carousel.slider-with-title-and-text .carousel-indicators {
  position: static;
  margin-bottom: 0;
}
.carousel.slider-with-title-and-text .carousel-indicators [data-bs-target] {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  opacity: 1;
  border: 1px solid #fff;
  background-color: #fff;
}
.carousel.slider-with-title-and-text .carousel-indicators [data-bs-target].active {
  background-color: #02a5d9;
}
/*
|--------------------------------------------------------------------------
| Gallerie fancybox
|--------------------------------------------------------------------------
*/
[data-fancybox] figure {
  cursor: pointer;
}
/*
|--------------------------------------------------------------------------
| news
|--------------------------------------------------------------------------
*/
.news-date-categories-list {
  line-height: 1;
}
.news-date-categories-list .list-inline-item {
  margin-right: 0;
}
.news-date-categories-list .list-inline-item:not(:first-child) {
  padding-left: 1em;
  border-left: 1px solid;
  margin-left: 1em;
}
/*
|--------------------------------------------------------------------------
| video embed
|--------------------------------------------------------------------------
*/
.video-container {
  overflow: hidden;
  /* 16:9 aspect ratio */
  padding-top: 56.25%;
  position: relative;
}
.video-container iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
/*
|--------------------------------------------------------------------------
| Hero Sections
|--------------------------------------------------------------------------
*/
.section-split h1,
.section-parallax h1,
.section-split h2,
.section-parallax h2,
.section-split h3,
.section-parallax h3,
.section-split h4,
.section-parallax h4,
.section-split a,
.section-parallax a {
  color: inherit;
}
.section-split.has-bg .buttons-block a,
.section-parallax.has-bg .buttons-block a,
.section-split.has-bg .btn,
.section-parallax.has-bg .btn {
  color: inherit;
  background: transparent;
  border-color: inherit;
}
.section-parallax {
  overflow: hidden;
  clip-path: inset(0);
}
.section-parallax .parallax-image {
  left: 0;
  top: 0;
}
.section-parallax:not(.section-slider) .parallax-content {
  filter: drop-shadow(0 0 1rem #000);
}
.section-parallax.section-slider img.parallax-image {
  filter: blur(10px) brightness(75%);
}
.section-split h2 {
  margin-top: 0;
  color: #02a5d9;
  font-size: 37px;
  font-weight: normal;
}
.section-split span.big {
  font-weight: 600;
  font-size: 1.4rem;
}
@media (min-width: 992px) {
  .w-lg-40 {
    width: 40% !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
  .position-lg-absolute {
    position: absolute;
  }
  .img-fit {
    height: 100%;
  }
}
.img-fit {
  object-fit: cover;
  object-position: center center;
}
/*
|--------------------------------------------------------------------------
| Cards
|--------------------------------------------------------------------------
*/
.card {
  overflow: hidden;
  position: relative;
}
.card:not(.card-referenten) .card-image {
  overflow: hidden;
}
.card:not(.card-referenten) .card-image img {
  transition: 0.3s all ease-in-out;
  min-height: 350px;
  object-fit: cover;
}
.card:not(.card-referenten):hover .card-image img {
  transform: scale(1.15);
}
.card .logo-image {
  position: relative;
  padding-top: 62.5%;
}
@media (max-width: 767.98px) {
  .card .logo-image {
    padding-top: 180px;
  }
}
.card .logo-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: calc(100% - 20px);
  max-width: calc(100% - 20px);
}
.card.card-standard .card-body {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
}
.card.card-standard .card-body h3 {
  color: #fff;
}
.card.card-standard .card-body a {
  color: #fff;
}
@media (min-width: 992px) {
  .card.card-standard .card-body a {
    font-size: 25px;
  }
}
.card.card-standard .card-body a.btn-primary:hover {
  color: #000;
}
.card.card-referenten .card-image {
  text-align: center;
}
.card.card-referenten .card-image img {
  border-radius: 100%;
  filter: grayscale(100%);
  width: auto !important;
  max-height: 300px;
}
.card.card-referenten h3 {
  font-size: 18px;
}
/*
|--------------------------------------------------------------------------
| Forms
|--------------------------------------------------------------------------
*/
#div_id_wagtailcaptcha .form-control {
  padding: 0;
  border: none;
}
/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/
footer {
  position: relative;
  padding: 1rem 0;
}
footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-menu .nav-item .nav-link {
  padding-top: 0;
  padding-bottom: 0;
}
.bottom-bar a {
  font-weight: 400;
  color: inherit;
}
.bottom-bar .hstack {
  flex-direction: column;
}
@media (min-width: 576px) {
  .bottom-bar .hstack {
    flex-direction: row;
  }
}
/*
|--------------------------------------------------------------------------
| cookie banner
|--------------------------------------------------------------------------
*/
#cookie-notification {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}
/*
|--------------------------------------------------------------------------
| Accordion
|--------------------------------------------------------------------------
*/
.accordion-item {
  border: none;
  border-radius: 0;
}
.accordion-item .accordion-header .accordion-button {
  border-radius: 0;
}
.accordion-item .accordion-header .accordion-button:after {
  display: none;
}
.accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
}
.accordion-item .accordion-header .accordion-button[aria-expanded="true"] {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.accordion-item .accordion-header .accordion-button[aria-expanded="true"] .bi {
  transform: rotate(-180deg);
}
.accordion-item .accordion-header .accordion-button .bi {
  font-size: inherit;
  transition: all 0.3s;
}
.contact-icon {
  height: 70px;
  width: 70px;
  background-image: url("/static/art/icon_contact_sticky.64f66ba290f7.svg");
  background-size: cover;
  position: fixed;
  right: 10px;
  bottom: 145px;
  cursor: pointer;
  z-index: 30;
}
.contact-inner-icon {
  padding: 15px;
  position: fixed;
  height: 60px;
  width: 60px;
  right: 20px;
  bottom: 150px;
  border-radius: 100%;
  background-color: #000;
  z-index: 29;
}
.contact-phone {
  transition: 0.5s all ease-out;
}
.contact-phone.moved {
  right: 66px;
  bottom: 221px;
  transition: 0.3s all ease-out;
}
.contact-mail {
  transition: 0.3s all ease-out;
}
.contact-mail.moved {
  right: 66px;
  bottom: 83px;
  transition: 0.5s all ease-out;
}
.counter-section span {
  font-size: 2.2rem;
  font-weight: bold;
}
.counter-section p {
  font-size: 1.8rem;
}
.navbar {
  padding-top: 0;
}
.backgrounded.e-forum {
  background-image: url("/static/art/e_bg.ba2eaa015b78.svg");
  background-repeat: no-repeat;
  background-position: 120% center;
  background-size: auto 120%;
}
.backgrounded.crowd {
  background-image: url("/static/art/crowd_blurred.5eed1f6cffee.jpg");
  background-position: center;
  background-size: cover;
}
.backgrounded .programmzeitpunkt-left,
.backgrounded .programmzeitpunkt-right,
.backgrounded .programmreferent-right {
  color: #fff;
  line-height: 1.3;
}
.backgrounded .programmzeitpunkt-left p,
.backgrounded .programmzeitpunkt-right p,
.backgrounded .programmreferent-right p,
.backgrounded .programmzeitpunkt-left span,
.backgrounded .programmzeitpunkt-right span,
.backgrounded .programmreferent-right span {
  font-size: 1.2rem !important;
}
.backgrounded .programmzeitpunkt-left {
  font-weight: bold;
}
.backgrounded .programmreferent-right span {
  color: #02a5d9;
  display: block;
  margin-bottom: 0.7rem;
}
.backgrounded [data-block-key="8tb6g"],
.backgrounded [data-block-key="502qk"] {
  color: #fff;
}
input.textinput,
input.numberinput,
input.emailinput,
textarea.textarea {
  border-radius: 30px;
  border-color: #000;
}
[id^="div_id_zusatzliche_person_"] {
  display: none;
}
