/*
    @font   eine Font
    @fonts  zwei Fonts
*/

@import url("https://fonts.verwaltungsportal.de/import/?family=Blinker:200,400,600,700%7CAbril+Fatface");

body {
  font-family: "Blinker", sans-serif;
  color: #4d4d4d;
  background: #ffffff;
  font-size: 1rem; /* 1rem = 16px */
  line-height: 1.5;
}

@media (min-width: 768px) {
  body {
    font-size: 1.125rem;
  }
}

a {
  color: #a180b1;
}

a:hover {
  color: #a180b1;
}

b,
strong {
  font-weight: 600;
}

/* ------------------------------------------------- row ------------------------------------------------ */

@media (min-width: 1200px) {
  .row {
    width: 1920px;
    max-width: 100%;
  }
}

/* ------------------------------------------------- language ------------------------------------------------ */

#language {
  font-variant: small-caps;
  margin-bottom: 18px;
}

@media (max-width: 991px) {
  #language {
    margin-top: 18px;
  }
}

#language a {
  color: #111111;
}

#language a + a::before {
  content: "|";
  margin-right: 5px;
}

/* ------------------------------------------------- h1-h6 ------------------------------------------------ */

h1, #content .legacy_h1, .legacy_h1,
.h1,
h2, #content .legacy_h2, .legacy_h2,
.h2,
h3, #content .legacy_h3, .legacy_h3,
h3, #content .legacy_h3, .legacy_h3,
h4, #content .legacy_h4, .legacy_h4,
.h4,
h5, #content .legacy_h5, .legacy_h5,
.h5,
h6, #content .legacy_h6, .legacy_h6,
.h6 {
  font-family: "Abril Fatface";
  color: #a180b1;
  line-height: 1.2;
}

h1, #content .legacy_h1, .legacy_h1,
.h1 {
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  h1, #content .legacy_h1, .legacy_h1,
  .h1 {
    font-size: 2.25rem;
  }
}

h2, #content .legacy_h2, .legacy_h2,
.h2 {
  font-size: 1.75rem;
}

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

h3, #content .legacy_h3, .legacy_h3,
.h3 {
  font-size: 1.7rem;
}

@media (min-width: 768px) {
  h3, #content .legacy_h3, .legacy_h3,
  .h3 {
    font-size: 1.8125rem;
  }
}

h4, #content .legacy_h4, .legacy_h4,
.h4 {
  font-size: 1.65rem;
}

@media (min-width: 768px) {
  h4, #content .legacy_h4, .legacy_h4,
  .h4 {
    font-size: 1.6875rem;
  }
}

h5, #content .legacy_h5, .legacy_h5,
.h5 {
  font-size: 1.6rem;
}

@media (min-width: 768px) {
  h5, #content .legacy_h5, .legacy_h5,
  .h5 {
    font-size: 1.5rem;
  }
  
}

h6, #content .legacy_h6, .legacy_h6,
.h6 {
  font-size: 1.65rem;
}

@media (min-width: 768px) {
  h6, #content .legacy_h6, .legacy_h6,
  .h6 {
    font-size: 1.3125rem;
  }
}

/* ------------------------------------------------- logo ------------------------------------------------ */

#logo {
  display: inline-block;
}

#logo img {
  display: block;
}

@media (max-width: 991px) {
  #logo img {
    max-width: 450px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

/* --------------------------------------- navigation --------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
  #burgerButton {
    font-size: 0;
    position: relative;
    z-index: 1002;
    display: block;
    width: 46px;
    height: 40px;
    border-radius: 2px;
    cursor: pointer;
    background-color: #ffffff;
    padding: 3px;
  }
  #burgerButton:before,
  #burgerButton:after,
  #burgerButtonInner {
    background-color: #2e3c48;
    border-radius: 2px;
    position: absolute;
    width: 40px;
    height: 3px;
    left: 2px;
    -webkit-transition: transform 200ms linear, opacity 200ms linear;
    -moz-transition: transform 200ms linear, opacity 200ms linear;
    -ms-transition: transform 200ms linear, opacity 200ms linear;
    -o-transition: transform 200ms linear, opacity 200ms linear;
    transition: transform 200ms linear, opacity 200ms linear;
  }
  #burgerButton[aria-expanded="true"] #burgerButtonInner {
    -webkit-transform: rotate(-45deg) translate(-6px, 6px);
    transform: rotate(-45deg) translate(-6px, 6px);
  }
  #burgerButton[aria-expanded="true"]:before {
    opacity: 0;
  }
  #burgerButton[aria-expanded="true"]:after {
    -webkit-transform: rotate(45deg) translate(-4px, -6px);
    transform: rotate(45deg) translate(-4px, -6px);
  }
  #burgerButtonInner {
    top: 10px;
  }
  #burgerButton:before {
    top: 18px;
  }
  #burgerButton:after {
    top: 26px;
  }
  #burgerButton:before,
  #burgerButton:after {
    content: "";
    display: block;
  }
  .navbar-nav {
    margin: 20px 0;
  }
  .navbar-collapse {
    top: 0;
    background: #ffffff;
    position: fixed;
    left: -100%;
    bottom: 0;
    z-index: 100;
    height: auto !important;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    -webkit-transition: left 300ms linear, opacity 300ms linear;
    -moz-transition: left 300ms linear, opacity 300ms linear;
    -ms-transition: left 300ms linear, opacity 300ms linear;
    -o-transition: left 300ms linear, opacity 300ms linear;
    transition: left 300ms linear, opacity 300ms linear;
  }
  .navbar-collapse.collapse.in {
    left: 0;
    opacity: 1;
    pointer-events: auto;
  }
  .navbar-header {
    height: 50px;
    width: 60px;
    border-radius: 2px;
    padding: 6px 8px;
    background-color: #ffffff;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 101;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
  }
  .navbar-collapse.in:after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    width: 90px;
    background-color: rgba(0, 0, 0, 0.5);
  }
}

@media (min-width: 575px) and (max-width: 991px) {
  .navbar-collapse {
    width: 60%;
  }
  .navbar-collapse.collapse.in:after {
    width: 40%;
  }
}

/*
    @nav      horizontal nav
    @navLeft  vertical nav
*/

/* menu desktop */

@media (min-width: 992px) {
  nav {
    padding-top: 7px;
    padding-bottom: 20px;
  }
  nav.horizontally .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  nav.horizontally .navbar-nav > li {
    flex-grow: 1;
  }
  nav.horizontally .dropdown-menu {
    position: absolute;
    top: 218%;
    left: 0;
    z-index: 1000;
  }
  nav.horizontally .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
  }
  nav.horizontally .navbar-nav > li,
  nav.horizontally .navbar-nav > li > .dropdown-menu > li {
    position: relative;
  }
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default .navbar-nav > li > a {
  color: #111111;
  font-weight: 400;
  text-align: center;
  font-variant: small-caps;
  position: relative;
  font-size: 1.3125rem;
  line-height: 1;
}

@media (max-width: 991px) {
  .navbar-default .navbar-nav > li {
    border-bottom: 1px solid rgba(46, 60, 72, 0.2);
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (min-width: 992px) {
  .navbar-default .navbar-nav > li + li {
    margin-left: 20px;
  }
  .navbar-default .navbar-nav > li > a {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
}

@media screen and (-ms-high-contrast: active),
  (-ms-high-contrast: none) and (min-width: 992px) {
  .navbar-default .navbar-nav > li > a {
    display: block;
  }
}

/* -------------------------------------------- toplevel-over ------------------------------------------- */

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > li.open > a,
.navbar-nav > li.open > a:hover,
.navbar-nav > li.open > a:focus,
.navbar-nav > li[class$="_over"] > a,
.navbar-nav > li[class$="_over"] > a:hover,
.navbar-nav > li[class$="_over"] > a:focus {
  background-image: url("../img/nav-over.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.navbar-nav > li > a:hover::before,
.navbar-nav > li > a:focus::before,
.navbar-nav > li.open > a::before,
.navbar-nav > li.open > a:hover::before,
.navbar-nav > li.open > a:focus::before,
.navbar-nav > li[class$="_over"] > a::before,
.navbar-nav > li[class$="_over"] > a:hover::before,
.navbar-nav > li[class$="_over"] > a:focus::before {
  opacity: 1;
}

/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

.navbar-default .navbar-nav > li > .dropdown-menu,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
  background: #ddcee0;
  background-size: cover;
  -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 9px;
}

@media (max-width: 991px) {
  .navbar-default .navbar-nav > li > .dropdown-menu {
    padding: 15px;
  }
}

@media (min-width: 992px) {
  .navbar-default .navbar-nav > li > .dropdown-menu,
  .navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
    margin-top: -18px;
    margin-left: 10px;
  }
}

/* --------------------------------------------- secondlevel + thirdlevel -------------------------------------------- */

.navbar-default .navbar-nav > li > .dropdown-menu > li > a,
.navbar-default
  .navbar-nav
  > li
  > .dropdown-menu
  > li
  > .dropdown-menu
  > li
  > a {
  color: #111111;
  font-weight: 400;
  text-align: center;
  padding: 8px 25px;
  font-size: 1.0625rem;
}

/* ------------------------------------------ secondlevel + thirdlevel over ------------------------------------------ */

.navbar-nav > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li.open > a:focus,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:hover,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:hover,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:focus,
.navbar-nav
  > li
  > .dropdown-menu
  > li
  > .dropdown-menu
  > li[class$="_over"]
  > a,
.navbar-nav
  > li
  > .dropdown-menu
  > li
  > .dropdown-menu
  > li[class$="_over"]
  > a:hover,
.navbar-nav
  > li
  > .dropdown-menu
  > li
  > .dropdown-menu
  > li[class$="_over"]
  > a:focus {
  text-decoration: underline;
}

/* ----------------------------------------------- banner ----------------------------------------------- */

/*
    @banner     Wechselbanner 
    @parallax   Parallax-Banner (ein Bild)
*/

#headerpic {
  margin: 0 auto;
  position: relative;
  width: 100%;
}

#slider {
  max-height: 540px;
}

.slider-wrapper,
#slider {
  height: 100%;
}

.slider-mask {
  display: none;
}

@media (min-width: 992px) {
  .slider-mask {
    display: block;
    background: url("../img/banner-welle.png") center bottom / contain no-repeat;
  }
  #headerpic .theme-default .nivo-controlNav {
    bottom: auto;
    top: 10px;
  }
}

#banner6735 img {
  display: block;
}

/* ------------------------------------------------ content ----------------------------------------------- */

main {
  text-align: left;
  padding-top: 30px;
  background: linear-gradient(to top, #fcf0fd, #ffffff);
}

@media (min-width: 992px) {
  main {
    padding-top: 30px;
  }
}

#content {
  padding-bottom: 170px;
}

/* ------------------------------------------------ contact ----------------------------------------------- */

.contact {
  padding-left: 0;
  padding-right: 0;
}

/* ------------------------------------------------ flatFacts ----------------------------------------------- */

.flatFacts {
  background-color: #ddcee0;
  color: #2a2e2c;
  padding: 50px 160px;
  overflow: hidden;
}

.flatFacts .tabHeadline {
  font-family: "Abril Fatface";
  color: #a180b1;
  font-size: 2.25rem;
}

.flatFacts ul {
  margin-top: 0;
}

@media (max-width: 675px) {
    .flatFacts {
        padding: 40px 60px;
    }
}

@media (max-width: 435px) {
    .flatFacts {
        padding: 20px 30px;
    }
}

/* ------------------------------------------------ buttonTab ----------------------------------------------- */

.buttonTab {
  display: table;
  margin: 27px auto;
  background: #fcf0fd;
}

.buttonTab a {
  display: inline-block;
  color: #fdfdfd;
  background-color: #a180b1;
  padding: 30px 42px;
  font-size: 1.5625rem;
  font-variant: small-caps;
}

.buttonTab a:hover {
  background-color: #886c96;
  color: #fdfdfd;

}

/* ----------------------------------------------- footerTab ----------------------------------------------- */

footer .tabHeadline,
.footerTab .tabHeadline {
  font-family: "Abril Fatface";
  color: #a180b1;
  font-size: 2.25rem;
  font-variant: small-caps;
}

/* ----------------------------------------------- footer ----------------------------------------------- */

footer {
  background-image: #ffffff;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #2a2e2c;
  position: relative;
}



@media (min-width: 768px) {
  footer::before {
    content: '';
      display: block;
      position: absolute;
      top: -710px;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
    background: url("../img/banner-welle.png") center bottom / contain no-repeat;
  }
}

@media (min-width: 992px) {
  footer::before {
    content: '';
      display: block;
      position: absolute;
      top: -320px;
      left: 0;
      right: 0;
      width: 100%;
      height: 100%;
    background: url("../img/banner-welle.png") center bottom / contain no-repeat;
  }
}

@media (max-width: 767px) {
  footer .row > .col-xs-12:not(:first-child)::before {
    background: #000000;
    content: " ";
    height: 1px;
    width: 100%;
    display: block;
    margin: 25px 0;
    opacity: 0.2;
  }
  footer .row > .col-xs-12.hidden-xs ~ .col-xs-12::before,
  footer .row > .col-xs-12.hidden-sm ~ .col-xs-12::before {
    display: none;
  }
}

@media (min-width: 768px) {
  #innerfooter {
    border-top: 1px solid #e0e0e0;
    margin-top: 20px;
    padding-top: 20px;
  }
}

#innerfooter a {
  color: #222222;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
}

#innerfooter a:hover {
  color: #a180b1;
}

#innerfooter a+a::before {
  content: "-";
  margin: 0 15px;
}

/* --------------------------------------------- vernetzt -------------------------------------------- */

@media (max-width: 991px) {
    .vernetztFlex {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .vernetztFlex {
        display: block;
    }
}

#vernetzt {
  text-align: center;
  font-size: 0.875rem;
  color: #222222;
  line-height: 1.3;
  margin: 0 auto;
  font-weight: 300;
}

@media (min-width: 992px) {
  #vernetzt {
    text-align: right;
    float: right;
    margin: 0;
  }
}

#vernetzt b {
  color: #222222;
  font-weight: 400;
  font-family: "Abril Fatface";
}

#vernetzt span {
  color: #222222;
  display: block;
}

#vernetzt img {
  margin-bottom: 4px;
}

#content #body:not(.noListStyle) .template-page ul, body:not(.noListStyle) main ul:not([class*="menue"]):not([class*="slick-dots"]) {
  margin: 5px 0 20px 0;
}