@import url("https://fonts.verwaltungsportal.de/import/?family=Jost:300,400,500,600,700,300i,400i,500i,600i,700i");

html {
  max-width: 1930px;
  margin-left: auto;
  margin-right: auto;
  background: #f5f8f3;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scrollbar-color: #4b7226 #ffffff;
  scrollbar-width: thin;
}

body {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: #333333;
  background: #ffffff;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
}

a {
  color: #d1206d;
}

a:is(:hover, :focus) {
  color: #d1206d;
  text-decoration: underline;
}

#content a {
  text-decoration: underline;
}
#content a:is(:hover, :focus) {
  text-decoration: none;
}

b,
strong {
  font-weight: 600;
}

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

a:focus-visible,
button:focus-visible,
form:focus-visible,
input:focus-visible {
  outline: 3px solid #0066ff !important;
}

#overflow {
  overflow: clip;
  position: relative;
}
/* ------------------------------------------------- logo ------------------------------------------------ */

#logo {
  display: inline-block;
}

#logo img {
  display: block;
}

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

@media (min-width: 992px) {
  #logo img {
    max-width: 330px;
    transition: all 300ms linear;
  }
  .is-sticky #logo img {
    max-width: 200px;
  }
}

/* #region ---------------------------------- navigation ---------------------------------------- */


/* burgermenu for tablet */

@media (max-width: 991px) {
  nav.horizontally {
    background-color: #fff;
    padding: 19px 0 15px 0;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
  }
  #burgerButton {
    font-size: 0;
    display: block;
    height: 50px;
    width: 60px;
    border-radius: 2px;
    padding: 6px 8px;
    cursor: pointer;
    background: #ffffff;
    border: none !important;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
  }

  #burgerButton::before,
  #burgerButton::after,
  #burgerButtonInner {
    background-color: #d1206d;
    border-radius: 2px;
    position: absolute;
    width: 40px;
    height: 3px;
    left: 10px;
    transition:
      transform 200ms linear,
      opacity 200ms linear;
  }

  #burgerButton[aria-expanded="true"] #burgerButtonInner {
    transform: rotate(-45deg) translate(-6px, 6px);
  }

  #burgerButton[aria-expanded="true"]::before {
    opacity: 0;
  }

  #burgerButton[aria-expanded="true"]:after {
    transform: rotate(45deg) translate(-4px, -6px);
  }

  #burgerButtonInner {
    top: 16px;
  }

  #burgerButton::before {
    top: 24px;
    content: "";
  }

  #burgerButton::after {
    top: 32px;
    content: "";
  }

  .navbar-nav {
    margin: 20px 0;
  }

  .navbar-collapse {
    width: calc(100% - 90px);
    max-width: 300px;
    top: 0;
    background: #fff;
    position: fixed;
    left: -100%;
    bottom: 0;
    z-index: 100;
    height: auto !important;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    overflow-y: auto;
    transition:
      left 300ms linear,
      opacity 300ms linear,
      box-shadow 600ms linear;
    box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
  }

  .navbar-collapse:is([aria-expanded="true"], .in) {
    left: 0;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
  }

  .navbar-header {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 101;
  }

  .dropdown-toggle-button-wrapper {
    top: 6px;
  }

  .dropdown-toggle-button-wrapper2 {
    top: 4px;
  }
    #search2 {
    padding: 10px;
  }

}

/* menu desktop */

@media (min-width: 992px) {
  #search {
    padding-bottom: 10px;
  }

  nav.horizontally {
    background-color: #fff;
    padding: 19px 0 15px 0;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
  }
  nav.horizontally .navbar-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-grow: 1;
  }

  nav.horizontally .navbar-nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: block !important;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms linear;
  }

  nav.horizontally .navbar-nav [class*="secondlevel"] > ul {
    left: 100%;
    top: 0;
  }

  nav.horizontally .navbar-nav li {
    position: relative;
  }

  nav.horizontally .navbar-nav li:is(.open:focus-within, :hover) > ul,
  nav.horizontally .navbar-nav li[class*="secondlevel"] > ul[style*="block"] {
    pointer-events: auto !important;
    opacity: 1 !important;
    visibility: visible;
  }

  nav.horizontally .navbar-nav li:is(:hover, :focus-within) > ul {
    z-index: 1003;
  }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
  color: #333333;
  font-weight: 700;
  text-align: left;
  padding: 12px 15px;
  position: relative;
  font-size: 1.25rem;
  line-height: 1.2;
  text-decoration: none;
}

@media (max-width: 991px) {
  nav.horizontally li[class*="toplevel"] {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
  nav.horizontally a[class*="toplevel"] {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
  }

  nav.horizontally a[class*="toplevel"].dropdown-toggle {
    padding-right: 35px;
  }
}

@media (min-width: 992px) {
  nav.horizontally li[class*="toplevel"] + li {
    margin-left: 15px;
  }

  nav.horizontally a[class*="toplevel"] {
    padding: 20px 0 19px 0;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
  }
}

nav.horizontally a[class*="toplevel"]::before {
  content: "";
  width: 0;
  height: 4px;
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  background-color: #4b7226;
  opacity: 0;
  transform: translateX(-50%);
  transition:
    opacity 300ms linear,
    width 300ms linear;
}

/* toplevel-over */

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within) > a,
nav.horizontally li[class*="toplevel"] > a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"].open > a,
nav.horizontally li[class*="toplevel"].open > a:is(:hover, :focus),
nav.horizontally li[class*="toplevel"][class*="_over"] > a,
nav.horizontally li[class*="toplevel"][class*="_over"] > a:is(:hover, :focus) {
  color: #4b7226;
}

nav.horizontally li[class*="toplevel"]:is(:hover, :focus-within) > a::before,
nav.horizontally li[class*="toplevel"] > a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"].open > a::before,
nav.horizontally li[class*="toplevel"].open > a:is(:hover, :focus)::before,
nav.horizontally li[class*="toplevel"][class*="_over"] > a::before,
nav.horizontally li[class*="toplevel"][class*="_over"] > a:is(:hover, :focus)::before {
  opacity: 1;
  width: 100%;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
  background: rgba(246, 246, 246, 0.95);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: solid 1px #f39200;
}

@media (max-width: 991px) {
  nav.horizontally [class*="toplevel"] > ul {
    padding: 10px 0;
  }
}

@media (min-width: 992px) {
  nav.horizontally [class*="toplevel"] ul {
    padding: 18px 40px;
    min-width: 310px;
  }

  nav.horizontally [class*="toplevel"] > ul {
    margin-top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  nav.horizontally :is([class*="toplevel"], [class*="secondlevel"]) > ul::before {
    content: "";
    position: absolute;
    display: block;
  }

  nav.horizontally [class*="toplevel"] > ul::before {
    height: 20px;
    left: 0;
    right: 0;
    top: -20px;
  }

  nav.horizontally [class*="secondlevel"] > ul {
    margin-top: -18px;
    margin-left: 50px;
  }

  nav.horizontally [class*="secondlevel"] > ul::before {
width: 190px;
    top: 0;
    bottom: 0;
    left: -106px;
  }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
  color: #333333;
  font-weight: 700;
  text-align: center;
  padding: 10px 15px;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
}

@media (max-width: 991px) {
  nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    text-align: left;
  }
  nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
  }

  nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
    padding-right: 35px;
  }
}

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]) + li:not(:nth-child(2)) {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
  content: "\203A \203A";
  display: inline-block;
  position: relative;
  bottom: 2px;
  position: absolute;
  left: 0;
  top: 8px;
  opacity: 0;
  transition: opacity 300ms linear;
}

/* secondlevel + thirdlevel over */

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within) > a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]) > a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a:is(:hover, :focus),
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a:is(:hover, :focus) {
  color: #4a7226;
}

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within) > a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]) > a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open > a:is(:hover, :focus)::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a::before,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"] > a:is(:hover, :focus)::before {
  opacity: 1;
}

/* #endregion ------------------------------- navigation ---------------------------------------- */

/* #region ------------------------------------ banner ------------------------------------------ */

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

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

#slider {
  overflow: hidden;
  position: relative;
  height: 100%;
}

@media (min-width: 992px) {
  #headerpic a.nivo-prevNav {
    left: 65px;
  }

  #headerpic a.nivo-nextNav {
    right: 65px;
  }

  .slider-wrapper {
    position: absolute !important;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  body:not(.index) #headerpic {
    min-height: 500px;
  }

  .index #bannerOverlay {
  padding: clamp(60px, 10vw, 69px) 0 clamp(60px, 10vw, 69px) 0;
  }

  #slogan {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  #slider-onebanner,
  #slider .nivo-box > div,
  #slider .nivo-slice > div,
  #slider .nivo-main-image {
    background-attachment: unset !important;
    background-size: 100% auto !important;
  }

  #slider {
    height: 400px;
  }

  body:not(.index) #slider {
    height: 300px;
  }
}

#bannerOverlay {
  position: relative;
  pointer-events: all;
  z-index: 53;
  padding: 30px 0 20px 0;
  border-bottom: 2px solid #4b7226;
}

@media (min-width: 992px) {
  #headerpic {
    position: relative;
    background-color: #2b2b2b;
  }

  #headerpic .slick-sr-only {
    color: #ffffff;
  }

  #bannerOverlay {
    padding: 0;
    border-bottom: none;
  }
}

#slogan {
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  font-weight: 600;
   hyphens: auto;
}

#slogan :is(h1, h2, h3, h4, h5, h6) {
  font-size: clamp(1.875rem, 4vw, 4.375rem);
  font-weight: 700;
  color: #4b7226;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1.2;
}

#slogan a {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 15px 36px;
  background-color: rgba(75, 114, 38, 0.85);
  border-radius: 29px;
  transition: all 300ms linear;
  margin-top: 10px;
  display: inline-block;
}

#slogan a:is(:hover, :focus) {
  background-color: rgba(243, 146, 0, 0.85);
  color: #333333;
  text-decoration: none !important;
}

@media (min-width: 992px) {
  #slogan {
    color: #333333;
  }
}

.slider-mask {
  display: none;
}

@media (min-width: 992px) {
  .index .slider-mask {
    display: block;
    background: linear-gradient(90deg, #fdfcfa 0%, rgba(248, 216, 180, 0) 100%);
  }
}
/* ------------------------------------------------ content ----------------------------------------------- */

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

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

body:not(.index)   #content{
padding-bottom: 80px;
}

/* #region ------------------------------------- tabs ------------------------------------------- */

#tabs {
  font-size: clamp(1rem, 2vw, 1.125rem);
  background: #fff;
  margin: 30px 0;
   hyphens: auto;
}

#tabs > .row {
  row-gap: 30px;
  padding: clamp(40px, 5vw, 50px) 0;
}

#tabs :is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 5px;
}

#tabs .tab .tabHeadline {
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

#tabs .tab.tab-1 .tabHeadline {
  color: #d1206d;
}

#tabs .tab.tab-2 .tabHeadline {
  color: #4b7226;
}

#tabs .tab.tab-3 .tabHeadline {
  color: #a86500;
}

#tabs .tab.tab-4 .tabHeadline {
  color: #d1206d;
}

#tabs .tab::before {
  content: "";
  display: block;
  width: 100px !important;
  height: 100px !important;
  background: #fceef5 url("../img/icon-team.png") center no-repeat;
  border-radius: 50%;
  margin: 0 auto 15px auto;
}

#tabs .tab.tab-2::before {
  background: #ecf4e5 url("../img/icon-plant.png") center no-repeat;
}

#tabs .tab.tab-3::before {
  background: #f7edd2 url("../img/icon-biene.png") center no-repeat;
}

#tabs .tab.tab-4::before {
  background: #fceef5 url("../img/icon-herz.png") center no-repeat;
}
#tabs a:not(.has-image) {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 30px;
  background-color: rgba(75, 114, 38, 0.85);
  border-radius: 29px;
  transition: all 300ms linear;
  display: inline-block;
}

#tabs a:not(.has-image):is(:hover, :focus) {
  background-color: rgba(243, 146, 0, 0.85);
  color: #333333;
  text-decoration: none !important;
}

#tabs .headlineBereich .tabHeadline {
  position: relative;
}

#tabs .headlineBereich .tabHeadline::before {
  content: "";
  position: absolute;
  background: #2e522e;
  width: 86px;
  height: 3px;
  bottom: -20px;
  z-index: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}

/* #endregion ---------------------------------- tabs ------------------------------------------- */

/* ------------------------------------------------ @8tab ----------------------------------------------- */

#tab8 {
  padding: 60px 0;
  margin: 30px 0;
   hyphens: auto;
}

#tab8 #tab8Box {
  padding: 30px;
  border-radius: 10px;
  background: #fafafa;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  #tab8 #tab8Box::before {
    content: "";
    position: absolute;
    background: url(../img/biene-wasserzeichen.png) no-repeat;
    width: 234px;
    height: 160px;
    bottom: 10px;
    z-index: 0;
    pointer-events: none;
    right: -35px;
    display: block;
  }
}

@media (max-width: 991px) {
  #tab8 .tab {
    padding: 30px;
    hyphens: auto;
    font-size: clamp(1rem, 3vw, 1.25rem);
    position: relative;
    z-index: 1;
  }
}
@media (min-width: 992px) {
  #tab8 .tab {
    padding: 20px 0;
    hyphens: auto;
    font-size: clamp(1rem, 3vw, 1.25rem);
    position: relative;
    z-index: 1;
  }
}



@media (min-width: 768px) {
  #tab8 .tab {
    padding-left: 70px;
  }
}

#tab8 .tab :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 700;
  color: #4b7226;
  font-size: clamp(1.5625rem, 4vw, 2.5rem);
  line-height: 1.1;
  margin: 0;
  margin-bottom: 30px;
}

#tab8 .tab {
  font-size: clamp(1.25rem, 2vw, 1.375rem);
  font-weight: 500;
  color: #333333;
  font-style: 500;
  text-transform: none;
  margin: 0;
}

#tabImg {
  position: relative;
  z-index: 1;
}

@media (max-width: 575px) {
  #tab8 #tab8Box {
    padding: 20px;
  }
}

@media (min-width: 992px) {
  #tabImg {
    max-width: 707px;
  }
}

#tab8 #tabImg .banner {
  height: 100%;
  line-height: 0;
}

#tab8 #tabImg .banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 992px) {
  #tab8 #tab8Box {
    padding: 40px 45px;
  }

  #tabImg {
    width: 100%;
    overflow: hidden;
    background-position: center;
  }

  #tabImg img {
    min-height: 360px;
    max-width: unset;
  }

  #tab8 .tab {
    max-width: 560px;
  }
}

#tab8 #tab8Box {
  padding: 0px 0px;
  padding-right: 30px;
}

#tab8 a:not(.has-image) {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 15px 37px;
  background-color: rgb(75, 114, 38);
  border-radius: 29px;
  transition: all 300ms linear;
  display: inline-block;
}

#tab8 a:not(.has-image):is(:hover, :focus) {
  background-color: rgba(243, 146, 0, 0.85);
  color: #333333;
  text-decoration: none !important;
}

/* Wenn Banner animiert sein soll (Wechselbanner mit alten Bannermodul) */

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

#tab8 #slider img {
  object-fit: cover;
  object-position: center;
  width: 100% !important;
  height: 100% !important;
}

/* #region --------------------------------------- news ----------------------------------------- */
#infoBereich {
  margin: 30px 0 120px 0;
   hyphens: auto;
}

#infoBereich > .row {
  row-gap: 30px;;
}

#news {
  padding-bottom: clamp(30px, 2vw, 42px);
  background: #ecf4e5;
  border-radius: 20px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  padding: 40px 60px 40px 60px;
}

#news .tabHeadline {
  color: #4b7226;
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
}

#news :is(h1, h2, h3, h4, h5, h6) {
  font-weight: 400;
  margin-bottom: 0;
  font-size: clamp(1.6875rem, 4vw, 2.1875rem);
}

#news :is(h1, h2, h3, h4, h5, h6) :is(b, strong) {
  color: #252525;
}

#news .tab_link {
  margin-top: 30px;
}

#news .tab_link_entries {
  display: grid;
  gap: 30px;
}

#news #mehrButton a {
  color: #4b7226;
  font-weight: 700;
  text-decoration: underline;
  font-size: 1.125rem;
  display: inline-block;
  margin-top: 20px;
}
#news #mehrButton a:is(:hover, :focus) {
  text-decoration: none;
}

#news .tab_link_entry {
  font-size: 1rem;
  position: relative;
  background: #ecf4e5;
  padding: 35px 30px 35px 30px;
  box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.15);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.15);
  -moz-box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.15);
  border: none !important;
  left: 130px;
  border-radius: 10px;
max-width: calc(100% - 130px);
}

#news .tab_link_entry:is(:hover, :focus),
#news .tab_link_entry:is(:hover, :focus) .tab_date {
  background-color: #fafafa;
}

@media (min-width: 768px) {
  #news .tab_link_entry {
    padding-top: 35px;
  }
}

@media (min-width: 1200px) {
  #news .tab_link_entry {
    padding-left: 30px;
  }
}



#news .tab_link_title a {
  line-height: 1.2;
  font-weight: 700;
  font-size: 1.25rem;
  display: block;
  margin-bottom: 20px;
  color: inherit;
}

#news .tab_link_entry .tab_link_title a::before {
  content: "";
  background: center / cover no-repeat;
}

#news .tab_preview_picture img {
  margin: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

#news .tab_date {
  position: absolute;
  top: 0px;
  width: 106px;
  height: 100%;
  background: #ecf4e5;
  color: #4b7226;
  display: inline-grid;
  justify-content: center;
  align-items: center;
  padding: 5px;
  word-break: break-word;
  text-align: center;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  z-index: 12;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.15);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.15);
  -moz-box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.15);
  left: -130px;
}

@media (max-width: 767px) {
#news .tab_date {
  position: absolute;
  width: 100%;
  height: 90px;
  top: -110px;
  left: 0;
}
#news .tab_link_entry {
  margin-top: 110px;
  border-radius: 10px;
  max-width: unset;
  left:0;
}
#news {
  padding:30px;
}
}

#news .vorschau {
  opacity: 1 !important;
}

#news :is(.tab_link_mehr, .tab_link_mandat, .tab_spacer) {
  display: none;
  height: 0;
}

/* #endregion ------------------------------------ news ----------------------------------------- */
/*  ------------------------------------ Ortsvereine ----------------------------------------- */
#ortsvereine {
  background: #fceef5;
  border-radius: 20px;
  padding: 40px 60px;
  height: 100%;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
  hyphens: auto;
}

#ortsvereine .tabHeadline {
  color: #d1206d;
  font-weight: 700;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
}

#ortsvereine li {
  font-size: 1rem;
  position: relative;
  background: #fceef5;
  padding: 35px 30px 35px 80px;
  box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.15);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.15);
  -moz-box-shadow: 0px 0px 5px 0px rgba(51, 51, 51, 0.15);
  border: none !important;
  border-radius: 10px;
  color: #d1206d;
  font-size: clamp(1.5rem, 4vw, 1.625rem);
  font-weight: 700;
  margin-bottom: 20px;
}

#ortsvereine li .tiny_p {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 575px) {
#ortsvereine li .tiny_p {
  display: inline-block;
  justify-content: space-between;
}
#ortsvereine {
  padding:30px;
}
}

#ortsvereine li::before {
  content: "";
  position: absolute;
  background: url(../img/icon-gps.png) no-repeat;
  width: 34px;
  height: 48px;
  bottom: 0px;
  top: 0;
  margin: auto;
  z-index: 0;
  pointer-events: none;
  left: 20px;
  display: block;
}

#ortsvereine li a {
  color: #d1206d;
  font-weight: 700;
  text-decoration: underline;
  font-size: 1.125rem;
}

#ortsvereine li:is(:hover, :focus) {
  background-color: #fafafa;
}
/* -------------------------------------- h1 - h6, newslink ------------------------------------- */

.h4link a:is(:link, :hover, :focus, :visited),
h6,
h5,
h4,
h3,
h2,
h1 {
  color: #4b7226;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Jost", sans-serif;
}

h1,
.h1,
.legacy_h1 {
  font-size: clamp(2.1875rem, 5.5vw, 2.5rem);
}

h2,
.h2,
.legacy_h2 {
  font-size: clamp(2rem, 5.5vw, 2.25rem);
}

h3,
.h3,
.legacy_h3 {
  font-size: clamp(1.75rem, 5.5vw, 2rem);
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
  font-size: clamp(1.625rem, 5.5vw, 1.75rem);
}

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

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

/* #region ----------------------------------- footer ------------------------------------------- */

footer {
  color: #333333;
  background: #fff;
  font-size: 0.9375rem;
  position: relative;
  padding-top: 60px;
  hyphens: auto;
}

footer::after {
  content: "";
  position: absolute;
  background: url(../img/schmuck.png) no-repeat;
  width: 100%;
  height: 115px;
  top: -70px;
  z-index: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}

footer :is(h1, h2, h3, h4, h5, h6, .footerHeadline) {
  color: #4b7226;
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: 1px;
  margin-bottom: 15px;
}
#footer .footerTab a {
  color: #d1206d;
  font-size: 1rem;
}
#footer .footerTab {
  position: relative;
}

.footerTab #footer a :is(:hover, :focus) {
  text-decoration: none;
}
.footerTab footer {
  padding: 20px 0 40px 0;
}


#footer {
  padding:20px 0;
}
@media (min-width: 992px) {
  #footer {
   padding: 40px 0 40px 0;
  }
}

@media (min-width: 1200px) {
  #footer .footerTab::after{
content: "";
    position: absolute;
    background: url(../img/deko-dreiecke.png) no-repeat;
    width: 429px;
    height: 302px;
    bottom: -40px;
    z-index: 0;
    pointer-events: none;
    right: -400px;
    display: block;
  }
}

#footer > .row {
  row-gap: 30px;
}

:is(.footerTab, .socialTab) a {
  text-decoration: underline;
}

.footerTab :is(iframe, .iframe-wrapper-manual-enabling) {
  min-width: 100% !important;
  width: 100% !important;
  display: block;
}

#innerfooter ul {
  padding: 0;
  line-height: 1.7;
}

@media (min-width: 992px) {
  #innerfooter ul {
    margin-bottom: -10px;
  }
}

#innerfooter a {
  font-size: 1.125rem;
  color: #333333;
  line-height: 2;
}

#innerfooter a:is(:hover, .Focus) {
  color: #d1206d;
  text-decoration: underline;
}
@media (min-width: 992px) {
  #innerfooter::after {
    content: "";
    position: absolute;
    background: #000 no-repeat;
    width: 1px;
    height: 100%;
    top: 0px;
    z-index: 0;
    pointer-events: none;
    left: 0;
    margin: auto;
    display: block;
  }
}

/* #endregion -------------------------------- footer ------------------------------------------- */

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

#vernetzt {
  gap: 18px;
  text-align: right;
  font-size: 0.9375rem;
  color: #333333;
  line-height: 1.3;
  font-weight: 400;
  text-decoration: none;
}

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



/* ------------------------------------------ Kontrast ------------------------------------------ */

   .contrast_dark_font #burgerButton::before,
   .contrast_dark_font #burgerButton::after,
   .contrast_dark_font #burgerButtonInner,
   .contrast_light_font .dropdown-toggle-button {
      background-color: #000 !important;
   }
   .contrast_light_font #burgerButton::before,
   .contrast_light_font #burgerButton::after,
   .contrast_light_font #burgerButtonInner {
      background-color: #fff !important;
   }



   .contrast_light_font #news .tab_link_entry,
  .contrast_light_font  #news .tab_date,
  .contrast_light_font #ortsvereine li,
  .contrast_light_font #tab8 a:not(.has-image),
 .contrast_light_font #slogan a{
border: solid 1px #fff !important;
   }
  .contrast_dark_font #tab8 a:not(.has-image),
 .contrast_dark_font #slogan a{
border: solid 1px #000 !important;
   }


   .contrast_light_font #search,
    .contrast_light_font #logo img{
    background-color: #fff !important;
   }