@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: #e2e2e2;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scrollbar-color: #008044 #ffffff;
  scrollbar-width: thin;
}

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

a {
  color: #008044;
}

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

#content a,
b,
strong {
  font-weight: 700;
}
a:focus-visible,
button:focus-visible,
form:focus-visible,
input:focus-visible {
  outline: 3px solid #ff0000 !important;
}

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

#logo {
  align-items: center;
  align-content: center;
  gap: 20px;
  text-decoration: none;
}
@media (min-width: 992px) {
  #logo {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 20px;
    text-decoration: none;
  }
}
#logo .logoImg img {
  display: block;
}

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

#logo .logoTxt {
  line-height: 1.2;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #fff;
  font-weight: 400;
}

#logo .logoTxt :is(b, strong) {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.25rem);
}
/* #region ---------------------------------- navigation ---------------------------------------- */

/* burgermenu for tablet */

@media (max-width: 991px) {
  nav.horizontally {
    background: #000000;
    padding: 10px 0;
  }

  #burgerButton {
    font-size: 0;
    display: block;
    height: 50px;
    width: 60px;
    border-radius: 2px;
    padding: 6px 8px;
    cursor: pointer;
    border: none;
    background-color: #ffffff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
  }

  #burgerButton::before,
  #burgerButton::after,
  #burgerButtonInner {
    background-color: #008044;
    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: #444444;
    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: 7px;
  }

  .dropdown-toggle-button-wrapper2 {
    top: 4px;
  }
}

/* menu desktop */

@media (min-width: 992px) {
  .sticky-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
  }

  nav.horizontally {
    padding: 15px 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    top: 0;
    max-width: 1930px;
    width: 100%;
    z-index: 101;
    transition: 300ms linear background;
  }

  nav.horizontally > .row {
    max-width: 1800px;
    width: 100%;
  }

  .is-sticky nav.horizontally {
    background: #444444;
  }

  nav.horizontally .navbar-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
  }

  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: #fff;
  font-weight: 700;
  text-align: center;
  padding: 10px 35px;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.2;
  text-decoration: none;
}

@media (min-width: 992px) {
  nav.horizontally a[class*="toplevel"] {
    padding: 20px 0px;
  }

  nav.horizontally li[class*="toplevel"] + li {
    margin-left: 20px;
  }
}
@media (max-width: 991px) {
  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"] {
    text-align: left;
  }
}
nav.horizontally a[class*="toplevel"]::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transform: translate(-50%, 0);
  transition: 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: #ffffff;
}

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

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}
nav.horizontally [class*="toplevel"] ul {
  background-color: #008044;
}
nav.horizontally [class*="secondlevel"] ul {
  background-color: #0a7894;
}
@media (max-width: 991px) {
  nav.horizontally [class*="toplevel"] ul {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

@media (min-width: 992px) {
  nav.horizontally [class*="toplevel"] > ul {
    margin-top: 12px;
  }

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

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

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

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
  color: #fff;
  font-weight: 300;
  text-align: left;
  padding: 6px 35px;
  position: relative;
  font-size: 1.125rem;
  line-height: 1.2;
  text-decoration: none;
}
nav.horizontally a:is([class*="secondlevel"]) {
  background-color: #008044;
}
nav.horizontally a:is([class*="thirdlevel"]) {
  background-color: #0a7894;
}
@media (min-width: 992px) {
  nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    padding: 6px 25px;
  }
}

@media (max-width: 991px) {
  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;
  }
}

/* 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: #2d2d2d;
  background-color: #d5dae3;
}

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

#slider {
  max-height: clamp(300px, 52vw, 300px);
  position: relative;
}

@media (min-width: 992px) {
  body.index #slider {
    max-height: clamp(400px, 72vw, 550px);
  }

  #headerpic a.nivo-prevNav {
    left: 65px;
  }

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

#headerpic {
  padding: 0;
  position: relative;
}

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

.slider-mask {
  display: block;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 70%);
}

/* -------------------------------------------- welcome ----------------------------------------- */

/* ------------------------------------------ bannerOverlay ------------------------------------- */

#bannerOverlay {
  z-index: 12;
  position: relative;
  font-size: clamp(26px, 5vw, 50px);
  line-height: 1.2;
  font-weight: 300;
  width: 100%;
}

@media (min-width: 1200px) {
  #bannerOverlay {
    bottom: 50px;
    position: absolute;
    z-index: 20;
  }
}

#bannerOverlay :is(b, strong) {
  font-size: clamp(30px, 6vw, 70px);
  font-weight: 600;
}
@media (max-width: 1199px) {
  #bannerOverlay {
    background-color: #444444;
    padding: 60px 30px;
  }
}
@media (max-width: 991px) {
  #bannerOverlay {
    background-color: #444444;
    padding: 20px 0px;
    margin-top: 0px;
  }
}

/* #region ----------------------------------- search ------------------------------------------- */

form[id^="search"] {
  background: #ffffff;
  display: inline-flex;
  width: 100%;
  position: relative;
  border-radius: 30px;
}

@media (max-width: 575px) {
  form[id^="search"] {
    margin-top: 20px;
  }
}

form[id^="search"]::before {
  content: "";
  position: absolute;
  right: 60px;
  top: 9px;
  bottom: 9px;
  width: 2px;
  background: rgba(41, 35, 0, 0.2);
}

[id^="search_input"] {
  color: inherit;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-style: normal;
  background: transparent;
  padding: 13px clamp(15px, 2vw, 22px);
  border: 0;
  width: 100%;
  border-radius: 30px;
  border: unset !important;
  color: #444444;
}

form [id^="search_submit"] {
  width: 60px;
  flex-shrink: 0;
  background: url("../img/icon-suche.png") center no-repeat;
  padding: 0;
  cursor: pointer;
  border: none;
  font-size: 0;
  transition: all 300ms linear;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

form [id^="search_submit"]:is(:hover, :focus) {
  background-color: #f4f4f4;
}

[id^="search_input"]::placeholder {
  color: #444444 !important;
  opacity: 0.8 !important;
}

/* #endregion -------------------------------- search ------------------------------------------- */




/* ---------------------------------------------- tabs ------------------------------------------ */
#tabsBereich {
  margin: 60px 0;
}

.tabsBox .tab1,
.tabsBox .tab2,
.tabsBox .tab3,
.tabsBox .tab4 {
  font-size: 1.25rem;
  font-weight: 400;
  position: relative;
  padding-top: 80px;
  padding-bottom: 30px;
  height: 100%;
}
@media (min-width: 992px) {
  #tabsBereich > .row > * + * {
    border-left: solid 1px rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 992px) {
  #tabsBereich > .row > * + * {
    border-top: solid 1px rgba(0, 0, 0, 0.2);
    padding-top: 15px;
  }
}
.tabsBox .tab1 a::after,
.tabsBox .tab2 a::after,
.tabsBox .tab3 a::after {
  content: "";
  position: absolute;
  inset: -100vw;
}

.tabsBox a {
  position: absolute;
  font-size: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent !important;
}
.tabsBox {
  position: relative;
  overflow: clip;
  height: 100%;
}

.tabsBox:is(:hover, :focus) {
  background-color: #f4f4f4;
}

.tabsBox .tab1::after {
  content: "";
  position: absolute;
  background: url(../img/icon-kontakt.png) no-repeat;
  width: 44px;
  height: 49px;
  top: 15px;
  z-index: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}
.tabsBox .tab2::after {
  content: "";
  position: absolute;
  background: url(../img/icon-fundbuero.png) no-repeat;
  width: 38px;
  height: 48px;
  top: 15px;
  z-index: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}
.tabsBox .tab3::after {
  content: "";
  position: absolute;
  background: url(../img/icon-stellenausschreibung.png) no-repeat;
  width: 51px;
  height: 48px;
  top: 15px;
  z-index: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}
.tabsBox .tab4::after {
  content: "";
  position: absolute;
  background: url(../img/icon-einwohner.png) no-repeat;
  width: 42px;
  height: 48px;
  top: 15px;
  z-index: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
}
/* ------------------------------------------------ content ----------------------------------------------- */

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

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

/* #region ------------------------------------ news -------------------------------------------- */

#news {
  background-color: #f4f4f4;
  padding: clamp(40px, 6vw, 70px) 0;
}

#news .tabSpecialHeadline :is(h1, h2, h3, h4, h5, h6)::after {
  content: "";
  display: none;
}

#news .tab_link_entries {
  display: grid;
  gap: 30px;
  margin-top: clamp(30px, 4vw, 60px);
}

@media (min-width: 576px) {
  #news .tab_link_entries {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  #news .tab_link_entries {
    grid-template-columns: repeat(3, 1fr);
  }
}

#news .tab_link_entry {
  font-size: 1rem;
  position: relative;

  background: #ffffff;
  padding: 230px 20px 70px 20px;
  border: none !important;
}

#news .tab_link_entry::after {
  content: "";
  position: absolute;
  display: block;
  top: 180px;
  left: 0;
  right: 0;
  width: 50px;
  height: 50px;
  margin: auto;
  background: #ffffff url("../img/icon-aktuelles.png") center no-repeat;
  border-radius: 50%;
  z-index: 2;
}

#news .tab_link_entry::before,
#news .tab_link_entry .tab_preview_picture {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  overflow: hidden;
}

#news .tab_link_entry::before {
  content: "";
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

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

#news .tab_date {
  font-size: 0.875rem;
  font-style: italic;
}

#news .tab_link_entry .tab_link_mehr {
  font-size: 0;
}

#news .tab_link_entry .tab_link_mehr a {
  display: inline-block;
  position: absolute;
  text-decoration: none;
  bottom: 20px;
  left: 20px;
  font-size: 0.875rem;
  color: inherit;
  padding: 7px 26px;
  background-color: #ffffff;
  border: 2px solid #0a7894;
  margin-top: 25px;
  transition: all 200ms linear;
}

#news .tab_link_entry .tab_link_mehr :is(a:hover, :focus) {
  background-color: #0a7894;
  color: #ffffff;
}

#news .tab_spacer {
  height: 5px;
}

/* #endregion --------------------------------- news -------------------------------------------- */
/* #region ----------------------------- tabSpecialHeadline ------------------------------------- */

.tabSpecialHeadline {
  font-size: 1rem;
}

.tabSpecialHeadline :is(h1, h2, h3, h4, h5, h6) {
  text-transform: none;
  font-weight: 600;
  position: relative;
  margin: 0;
}

.tabSpecialHeadline :is(h1, h2, h3, h4, h5, h6)::after {
  content: "";
  display: block;
  width: 100px;
  height: 8px;
  background: #f4cc2b;
}

.tabSpecialHeadline :is(i, em) {
  text-transform: uppercase;
  font-style: normal;
}

#tab6 .tab_link_mehr {
  font-size: 0;
}
.tabSpecialButton a,
#tab6 .tab_link_mehr a {
  background: #0a7894;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 70px 16px 20px;
  display: inline-block;
  width: 100%;
  position: relative;
  margin-top: 10px;
  line-height: 1.2;
  text-align: center;
}

@media (min-width: 768px) {
  .tabSpecialButton a,
  #tab6 .tab_link_mehr a {
    max-width: 270px;
  }
}

.tabSpecialButton a::before,
#tab6 .tab_link_mehr a::before {
  content: "\00BB";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  line-height: 45px;
  font-size: 30px;
  display: block;
  background-color: #008044;
  transition: background-color 300ms linear;
}

.tabSpecialButton a:is(:hover, :focus),
#tab6 .tab_link_mehr a:is(:hover, :focus) {
  background: #008044;
}

.tabSpecialButton a:is(:hover, :focus)::before,
#tab6 .tab_link_mehr a:is(:hover, :focus)::before {
  background: #0a7894;
}

.tabSpecialButton .btgrid > .row {
  align-items: center;
}
.tabButtons a {
  font-size: 1.125rem;
  font-weight: 500;
  border: 2px solid rgba(0, 0, 0, 0.2);
  text-decoration: none;
  padding: 12px 55px 12px 20px;
  display: block;
  position: relative;
  line-height: 1.2;
}

.tabButtons a:is(:hover, :focus) {
  background-color: rgba(0, 0, 0, 0.1);
}

.tabButtons a::after {
  content: "\00BB";
  position: absolute;
  width: 50px;
  text-align: center;
  right: 0;
  top: 8px;
  bottom: 8px;
  font-size: 30px;
  line-height: 25px;
  border-left: 2px solid rgba(0, 0, 0, 0.2);
}

/* ------------------------------------------------ @6tab ----------------------------------------------- */
#tab6 {
  margin: 60px 0;
}
#tab6 > .row {
  max-width: 1800px !important;
  width: 100%;
}

#tab6 > .row + .row {
  margin-top: 40px;
}

@media (max-width: 991px) {
  #tab6 > .row:nth-child(2) > *:nth-child(1),
  #tab6 > .row:nth-child(1) > *:nth-child(2) {
    margin-top: 40px;
  }

  #tab6 > .row:nth-child(2) > *:first-child {
    order: 2;
  }

  #tab6 > .row:nth-child(2) > *:last-child {
    order: 1;
  }
}

@media (min-width: 992px) {
  #tab6 > .row + .row {
    margin-top: 85px;
  }
}

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

#tab6 .tab {
  color: #444444;
  position: relative;
  z-index: 55;
  padding: 30px 30px;
  font-size: 1.125rem;
  background: #ffffff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

#tab6 .tabHeadline {
  color: #444444;
  font-size: 1.875rem;
  margin-bottom: 20px;
  font-weight: 700;
}

#tab6 .tab_link_entry {
  display: grid;
  margin-top: 15px;
}

#tab6 .tab_link_title {
  color: #008044;
  font-size: 1.25rem;
  font-weight: 700;
  order: 3 !important;
}

#tab6 .tab_link_date,
#tab6 .tab_link_mandat a {
  order: 2 !important;
  color: #444444;
  font-style: italic;
  font-size: 0.875rem;
}
#tab6 .tab_link_mandat {
  line-height: 1;
  order: 2 !important;
}

#tab6 .bildImg-left,
#tab6 .bildImg-right {
  min-height: 225px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  max-width: 887px;
}

@media (min-width: 992px) {
  #tab6 .tab {
    padding: 50px;
  }

  #tab6 .tabRight {
    margin-left: -200px !important;
  }

  #tab6 .tabLeft {
    margin-right: -200px !important;
  }

  #tab6 .bildImg-left,
  #tab6 .bildImg-right {
    min-height: 425px;
  }
}
#tab6 .tabLeft a {
  text-decoration: none;
  font-weight: 700;
}
#tab6 .tabLeft a:is(:hover, :focus) {
  text-decoration: underline;
}
/* -------------------------------------- h1 - h6, newslink ------------------------------------- */

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

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

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

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.875rem);
}

h5,
.h5,
.legacy_h5 {
  font-size: clamp(1.5rem, 5.5vw, 1.75rem);
}

h6,
.h6,
.legacy_h6 {
  font-size: clamp(1.375rem, 5.5vw, 1.625rem);
}
/* ----------------------------------------------- footer Kontaktbereich----------------------------------------------- */

#footerBereich {
  padding: 60px 0;
  background-color: #f4f4f4;
}
#footerBereich > .row {
  row-gap: 30px;
}
#footerBereich :is(iframe, .iframe-wrapper-manual-enabling) {
  min-width: 100% !important;
  width: 100% !important;
  display: block;
}

/* ----------------------------------------------- newsletter----------------------------------------------- */
#newsletter {
  margin-bottom: 30px;
}

#newsletter label {
  font-size: 0;
  margin-bottom: 4px;
}
#newsletter .tabHeadline {
  color: #444444;
  font-size: 1.5625rem;
  font-weight: 700;
}
#newsletter .tabBeschreibung {
  font-size: 1rem;
  color: #444444;
}

#newsletterInputs {
  height: 36px;
  background: #ffffff;
  display: inline-block;
  position: relative;
  border-radius: 18px;
}
#newsletter_input {
  color: #444444;
  font-size: 16px;
  font-style: normal;
  background: transparent;
  padding: 0;
  border: 0;
  line-height: 33px;
  padding-left: 10px;
  padding-right: 43px;
  height: 33px;
  width: 100% !important;
  border-radius: 18px;
  max-width: 340px;
}
#newsletter_submit {
  width: 33px;
  background: #fff url("../img/icon-newsletter.png") center no-repeat;
  padding: 0;
  cursor: pointer;
  line-height: 33px;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  font-size: 0;
  -webkit-transition: background-color 300ms linear;
  -moz-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  -o-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  border-radius: 18px;
}
#newsletter_submit:hover {
  background-color: #dfdfdf;
}
#newsletter_input::-ms-input-placeholder {
  color: #444444 !important;
}
#newsletter_input::-webkit-input-placeholder {
  color: #444444 !important;
}
#newsletter_input::-moz-placeholder {
  opacity: 1;
}
#newsletter_input:-moz-placeholder {
  opacity: 1;
}
/* ----------------------------------------------- @5f footer ----------------------------------------------- */

#f5 {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #444444;
}

/* --------------------------------------------- innerfooter -------------------------------------------- */

@media (max-width: 767px) {
  #innerfooter {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

#innerfooter ul {
  padding: 0;
}

#innerfooter li {
  display: inline-block;
}

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

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

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

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

@media (max-width: 767px) {
  #innerfooter li {
    display: block;
    text-align: center;
    padding: 5px;
    margin: 0;
  }

  #innerfooter li + li::before {
    display: none;
  }
}

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

#vernetzt {
  gap: 12px;
  text-align: right;
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.3;
  text-decoration: none;
}

#vernetzt span span {
  display: block;
}

/* --------------------------------------------- Kontrast -------------------------------------------- */
.contrast_dark #tab6 .tab_link_mehr a,
.contrast_dark .tabSpecialButton a {
  border: solid 1px #fff;
}

.contrast_dark .tabsBox a::after {
  background-color: transparent !important;
}
.contrast_dark #bannerOverlay {
  padding: 30px 0;
}

.contrast_dark :is(#style, .contrast_style) button + button,
.contrast_dark :is(#style, .contrast_style) button {
  border: solid 1px #fff;
}
.contrast_dark #newsletter_input {
  border: solid 1px #fff;
}
.contrast_dark .tabMearker img {
  background-color: #fff;
  padding: 5px;
}

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

.contrast_light :is(.contrast_style, #style) h2 {
  color: #fff !important;
}

.contrast_light #logo .logoTxt img {
  background-color: #000 !important;
}
.contrast_light :is(#style, .contrast_style) button + button,
.contrast_light :is(#style, .contrast_style) button {
  border: solid 1px #000;
}
.contrast_light #tab6 .tab_link_mehr a,
.contrast_light .tabSpecialButton a {
  border: solid 1px #000;
}
.contrast_light #newsletter_input {
  border: solid 1px #000;
}

.contrast_light .is-sticky nav.horizontally {
  background-color: #fff !important;
  border-bottom: solid 1px #000;
}
.contrast_light #burgerButton::before,
.contrast_light #burgerButton::after,
.contrast_light #burgerButtonInner {
  background-color: #000 !important;
}
