@import url("https://fonts.verwaltungsportal.de/import/?family=Outfit:200,200i,400,400i,500,500i%7CRed+Hat+Text:400,500,600,400i,500i,600i");
@import url("https://fonts.verwaltungsportal.de/import/?family=Corinthia:400");

body {
  font-family: "Red Hat Text", sans-serif;
  color: #666666;
  background: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
}

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

a {
  color: #c24c76;
}

a:hover,
a:focus {
  color: #832143;
  text-decoration: underline;
}

b,
strong {
  font-weight: 600;
}

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

#logo {
  display: inline-block;
  padding: 15px 0;
}

#logo img {
  display: block;
}

@media (max-width: 991px) {
  #logo img {
    max-width: 210px;
    width: 100%;
  }
}

@media (min-width: 992px) {
  #logo {
    position: absolute;
    top: 0;
    padding: 20px;
    background-color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    -webkit-box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.3);
    z-index: 13;
  }
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
  #burgerButton {
    font-size: 0;
    border: none !important;
    position: relative;
    z-index: 1002;
    display: block;
    width: 50px;
    height: 40px;
    border-radius: 2px;
    cursor: pointer;
    background-color: #ffffff;
    padding: 3px;
  }
  #burgerButton:before,
  #burgerButton:after,
  #burgerButtonInner {
    background-color: #c24c76;
    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%;
  }
}

/* menu desktop */

@media (min-width: 992px) {
  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: 100%;
    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;
  }

  /* Fade in Hover Start */
  .navbar-default .navbar-nav li[class*="toplevel"] > ul,
  .navbar-default .navbar-nav li[class*="secondlevel"] > ul {
    display: block !important;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 300ms linear;
    -moz-transition: opacity 300ms linear;
    -ms-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
  }
  .navbar-default .open > .dropdown-menu,
  .navbar-default .navbar-nav li[class*="toplevel"]:hover > ul,
  .navbar-default .navbar-nav li[class*="secondlevel"]:hover > ul,
  .navbar-default .navbar-nav li[class*="secondlevel"] > ul[style*="block"] {
    pointer-events: auto !important;
    opacity: 1 !important;
  }
  .navbar-default .navbar-nav li[class*="toplevel"]:focus-within > ul,
  .navbar-default .navbar-nav li[class*="secondlevel"]:focus-within > ul {
    pointer-events: auto !important;
    opacity: 1 !important;
  }
  .navbar-default .nav .open > .dropdown-menu {
    pointer-events: none !important;
    opacity: 0 !important;
  }

  /* Pseudo */

  .navbar-default .navbar-nav > li > .dropdown-menu::before {
    content: "";
    position: absolute;
    display: block;
    height: 10px;
    left: 0;
    right: 0;
    top: -10px;
  }

  /* 3rd */

  .navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu::before {
    content: "";
    position: absolute;
    display: block;
    width: 33px;
    top: 0;
    bottom: 0;
    left: -33px;
  }

  /* Fade in Hover End */
}

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

.navbar-default .navbar-nav > li > a {
  color: #666666;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  text-align: center;
  padding: 10px 35px 15px 35px;
  text-transform: uppercase;
  position: relative;
  font-size: 1.375rem;
  line-height: 1.2;
  text-decoration: none;
}

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

@media (min-width: 992px) {
  .navbar-default .navbar-nav > li + li {
    margin-left: 20px;
  }
  .navbar-default .navbar-nav > li > a {
    padding: 21px 0;
    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:hover > a,
.navbar-nav > li > a:focus,
.navbar-nav > li:focus > a,
.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 {
  color: #2e3c48;
  background-color: transparent;
}

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

.navbar-default .navbar-nav > li > .dropdown-menu,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
  background-color: rgba(194, 76, 118, 0.9);
  -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);
}

@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: 33px;
  }
  .navbar-default .navbar-nav > li > .dropdown-menu {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  .navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
    border-radius: 12px;
  }
}

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

.navbar-default .navbar-nav > li > .dropdown-menu > li > a,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a {
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  text-align: left;
  padding: 5px 25px;
  margin: 2px 0;
  font-size: 1.125rem;
  line-height: 1.2;
  text-decoration: none;
}

/* ------------------------------------------ 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:hover > a,
.navbar-nav > li > .dropdown-menu > li:focus > a,
.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:hover > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:focus > a,
.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 {
  background: #dbe1b5;
  color: #393939;
}

@media (min-width: 992px) {
  .navbar-nav > li > .dropdown-menu > li > a::before,
  .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a::before {
    content: "";
    width: 20px;
    height: 100%;
    display: block;
    position: absolute;
    left: -10px;
    margin-left: -9px;
    bottom: 0;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    background-color: #c24c76;
    opacity: 0;
    transition: background-color 300ms linear, opacity 300ms linear;
  }

  .navbar-nav > li > .dropdown-menu > li:hover > a::before,
  .navbar-nav > li > .dropdown-menu > li:focus > a::before,
  .navbar-nav > li > .dropdown-menu > li > a:focus::before,
  .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:hover > a::before,
  .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:focus > a::before,
  .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus::before {
    opacity: 1;
    background-color: #dbe1b5;
  }
}

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

#slider {
  max-height: 300px;
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {
  #slider {
    max-height: 500px;
  }
  body.index #slider {
    max-height: 1000px;
  }
  #headerpic a.nivo-prevNav {
    left: 65px;
  }
  #headerpic a.nivo-nextNav {
    right: 65px;
  }
  .nivo-controlNav {
    width: 50% !important;
    right: 0 !important;
  }
}

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

#banner-tab {
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  font-size: 1.688rem;
  position: relative;
  line-height: 1.2;
  bottom: 0;
  z-index: 13;
}

#banner-tab b,
#banner-tab strong {
  color: #c24c76;
  font-weight: 400;
}

#banner-tab > div {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: relative;
  z-index: 14;
  margin-top: -150px;
  padding: 30px 30px 20px 30px;
  background-color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
  #banner-tab > div {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  #banner-tab {
    font-family: "Outfit", sans-serif;
    font-weight: 200;
    position: relative;
    bottom: unset;
    z-index: 13;
  }
}

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

.slider-mask {
  display: none;
}

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

#content {
  text-align: left;
  padding-bottom: 30px;
  padding-top: 30px;
}

#extra-content {
  padding-top: 30px;
  padding-bottom: 30px;
}

#about-me {
  color: #ffffff;
  padding-top: 55px;
  padding-bottom: 55px;
  background-position: center;
  text-align: center;
}
#about-me .tabHeadline {
  color: #ffffff;
}
#about-me > .row::before {
  content: "";
  height: 5px;
  width: 115px;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  top: -35px;
  left: -30px;
  -webkit-box-shadow: -35px 20px 0px 0px rgba(255, 255, 255, 1);
  -moz-box-shadow: -35px 20px 0px 0px rgba(255, 255, 255, 1);
  box-shadow: -35px 20px 0px 0px rgba(255, 255, 255, 1);
}
#about-me > .row::after {
  content: "";
  height: 5px;
  width: 115px;
  background-color: #fff;
  display: inline-block;
  position: absolute;
  bottom: -15px;
  right: -30px;
  -webkit-box-shadow: 35px 20px 0px 0px rgba(255, 255, 255, 1);
  -moz-box-shadow: 35px 20px 0px 0px rgba(255, 255, 255, 1);
  box-shadow: 35px 20px 0px 0px rgba(255, 255, 255, 1);
}
#about-me a {
  background-color: transparent;
  font-weight: 500;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 12px;
  padding: 5px 25px;
}
#about-me a:hover,
#about-me a:focus {
  background-color: #ffffff;
  color: #c24c76;
  text-decoration: none;
}

@media (min-width: 992px) {
  #extra-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #about-me {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}

/* ------------------------------------------ h1 - h6, newslink ----------------------------------------- */

.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
H6,
H5,
H4,
H3,
H2,
H1 {
  color: #c24c76;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Corinthia", sans-serif;
}

h1,
.h1,
.legacy_h1 {
  font-size: 3.438rem;
}

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

h2,
.h2,
.legacy_h2 {
  font-size: 3.125rem;
}

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

h3,
.h3,
.legacy_h3 {
  font-size: 2.813rem;
}

h4,
.h4,
.h4link a:link,
.h4link a:hover,
.h4link a:focus,
.h4link a:visited,
.legacy_h4 {
  font-size: 2.5rem;
}

h5,
.h5,
.legacy_h5 {
  font-size: 2.188rem;
}

h6,
.h6,
.legacy_h6 {
  font-size: 1.875rem;
}

#newslinks,
#newsmandate {
  border: 1px solid #c24c76;
}

/* ------------------------------------------ 8f footer ---------------------------------------- */

footer {
  background-color: #004261;
  overflow: hidden;
}

#maps_contact {
  padding-top: 60px;
  background: #e9edd3 url(../img/Kringeling.png) no-repeat center;
  background-position: center;
}

footer .tabHeadline {
  font-size: 2.813rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 28px;
  position: relative;
}

footer a {
  color: #ffffff;
  text-decoration: underline;
}

footer .tab {
  padding: 30px 30px;
  border-bottom: 1px solid #c24c76;
  padding-top: 50px;
  background: #c24c76 url(../img/Bildmarke-Logo-Hebamme-LauraBriehl.png) no-repeat center;
  height: 100%;
  color: #fff;
  font-weight: 500;
}

footer .tab a {
  color: #ffffff;
  text-decoration: underline;
}

@media (min-width: 992px) {
  footer .tab::before {
    content: "";
    height: 5px;
    width: 85px;
    background-color: #fff;
    display: inline-block;
    position: absolute;
    top: 55px;
    left: -30px;
    -webkit-box-shadow: -35px 20px 0px 0px rgba(255, 255, 255, 1);
    -moz-box-shadow: -35px 20px 0px 0px rgba(255, 255, 255, 1);
    box-shadow: -35px 20px 0px 0px rgba(255, 255, 255, 1);
  }
  footer .tab {
    padding: 56px 115px 30px 30px;
  }
}

@media (min-width: 1200px) {
  footer .tab {
    padding: 56px 115px 30px 115px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  footer .tab::before {
    width: 115px;
    top: 70px;
  }
}

.contactBTN {
  display: block;
  text-align: center;
  margin-top: 46px;
}

.contactBTN a {
  color: #fff !important;
  background-color: #c24c76;
  font-style: normal !important;
  font-weight: 700;
  font-size: 18px;
  padding: 8px;
  text-align: center;
  border: 2px solid #ffffff;
  border-radius: 12px;
  text-decoration: none !important;
  position: relative;
}

@media (min-width: 992px) {
  .contactBTN a::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    right: -215px;
    height: 5px;
    width: 215px;
    background: #ffffff;
  }
}

.contactBTN a:hover {
  color: #c24c76 !important;
  background: #ffffff;
}

@media (min-width: 992px) {
  .noPadding {
    padding-left: 0;
    padding-right: 0;
  }
}

#innerfooter {
  margin-top: auto;
  padding: 30px 0 35px 0;
  position: relative;
}

#innerfooter ul {
  padding: 0;
}

#innerfooter li {
  display: inline-block;
}

#innerfooter a {
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  color: #212121;
}

#innerfooter a:hover,
#innerfooter a:focus {
  color: #c24c76;
  text-decoration: underline;
}

#innerfooter li + li::before {
  content: "|";
  margin: 0 4px;
  color: #212121;
}

@media (min-width: 992px) {
  #innerfooter li + li::before {
    margin: 0 20px;
  }
}
/* --------------------------------------------- GoogleMaps -------------------------------------------- */

.iframeMapsTab {
  margin-left: -100px;
  height: 332px;
}

.iframeMapsTab img {
    max-width: none;
}

.iframeMapsTab .template-page > .row {
  margin-left: 0;
}
.iframeMapsTab .template-page > .row > div {
  padding-right: 0;
}

.iframeMapsTab iframe,
.iframeMapsTab .template-page,
.iframeMapsTab .template-page > .row,
.iframeMapsTab .template-page > .row > div,
.iframeMapsTab .template-page > .row > div > p,
.iframeMapsTab .iframe-wrapper-manual-enabling {
  min-width: 100%;
  width: 100%;
  display: block;
  max-height: 100%;
  min-height: 100%;
  height: 100%;
  max-height: 335px;
}

@media (max-width: 767px) {
  .frameMobileView {
    width: 100vw;
    max-width: unset;
    flex: 0 0 100vw;
    left: 50%;
    transform: translate(-50%);
    padding: 0;
  }
}

@media (min-width: 1200px) {
  .btgrid > .row > div:nth-child(1) {
    flex: 0 0 35%;
    max-width: 35%;
    min-width: 35%;
  }

  .btgrid > .row > div:nth-child(2) {
    flex: 0 0 65%;
    max-width: 65%;
    min-width: 65%;
  }
}

/* --------------------------------------------- #Footer -------------------------------------------- */

#footer {
  background-color: #fff;
  padding: 20px 0;
}

#logoFooter {
  color: #444444;
  padding: 15px 0;
}

#logoFooter a {
  color: #444444;
}

#logoFooter img {
  max-width: 220px;
}

@media (max-width: 767px) {
  #footer > .row > div:last-child {
    margin-top: 15px;
  }
}

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

#vernetzt {
  color: #444444;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
}

#vernetzt b {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #c24c76;
}

#vernetzt span {
  color: #444444;
}

#vernetzt span span {
  display: block;
}

#vernetzt img {
  margin-right: 18px;
}
