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

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

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

a {
  color: #a25701;
}

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

b,
strong {
  font-weight: 600;
}

@media (min-width: 1200px) {
  .row,
  .compact,
  ._op-container .container {
    max-width: 1440px;
  }
}

.overflow {
  overflow: clip;
  position: relative;
}
/* ------------------------------------------------- topbar ------------------------------------------------ */
#topbar {
  background-color: #ff7100;
  padding-bottom: 52px;
  color: #191919;
  padding-top: 20px;
  font-size: 1rem;
}
#topbar > .row {
  row-gap: 20px;
}
#topbar .tabContact a {
  color: #191919;
  text-decoration: underline;
}
#topbar .tabContact a:is(:hover, :focus) {
  text-decoration: none;
}
/* #region ----------------------------------- search ------------------------------------------- */

form[id^="search"] {
  background: #ff7100;
  display: inline-flex;
  border-radius: 30px;
  margin: 15px 15px 0 15px;
  border: solid 1px #191919;
}

@media (min-width: 992px) {
  form[id^="search"] {
    min-width: 325px;
    margin: 0 00px 0 0;
  }
}

form [id^="search_input"] {
  color: #6e6e6e;
  font-size: 1rem;
  font-style: normal !important;
  background: transparent;
  border: 0;
  width: 100%;
  border-radius: 30px;
  padding: 6px 14px;
}

form [id^="search_submit"] {
  background: #191919 url("../img/icon-suche.png") center / 18px auto no-repeat;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  margin: 0px 0px 0px 0;
  font-size: 0;
  aspect-ratio: 1/1;
  min-width: 36px;
  min-height: 36px;
  flex-shrink: 0;
  transition: transform 150ms linear;
}

form [id^="search_submit"]:is(:hover, :focus) {
  transform: scale(1.2);
}

form [id^="search_input"]::placeholder {
  color: #191919 !important;
  opacity: 1 !important;
  font-style: normal !important;
}

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

#logo {
  display: inline-block;
}

#logo img {
  display: block;
}

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

@media (min-width: 992px) {
  #logo {
    margin-left: 15px;
  }
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
  nav.horizontally {
    position: static !important;
  }

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

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

  .navbar-collapse {
    width: calc(100% - 90px);
    max-width: 300px;
    top: 0;
    background: #ffffff;
    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: 2px;
  }

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

/* menu desktop */

#menu {
  padding: 9px 0;
}

@media (min-width: 992px) {
  #menu {
    background: #ffffff;
    padding: 2px 20px;
    transition: box-shadow 300ms linear;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  }
  .is-sticky #menu {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0);
  }
  .is-sticky nav.horizontally {
    background-color: #fff;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  }

  nav.horizontally,
  .sticky-wrapper {
    position: absolute;
    z-index: 56;
    left: 0;
    right: 0;
  }

  header > :is(nav.horizontally, .sticky-wrapper) {
    margin-top: -40px;
  }

  nav.horizontally .navbar-nav {
    padding-left: clamp(15px, 2vw, 30px);
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-right: 25px;
  }

  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;
  }
}

@media (min-width: 992px) {
  nav.horizontally .dropdown-menu {
    min-width: 270px;
  }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
  color: #191919;
  font-weight: 600;
  text-align: left;
  padding: 10px 35px;
  font-size: 1.1875rem;
  line-height: 1.2;
  text-decoration: none;
}

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

  nav.horizontally a[class*="toplevel"] {
    padding: 10px 0;
    text-align: center;
  }
}

/* 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: #a25701;
  background-color: #ffffff;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
  background-color: #ffffff;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: solid 1px #ff7100;
}

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

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

  nav.horizontally [class*="toplevel"] > ul {
    margin-top: 30px;
    left: -20px;
  }

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

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

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

  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: #191919;
  font-weight: 400;
  text-align: left;
  padding: 7px 35px;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
}

@media (min-width: 992px) {
  nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    text-align: left;
    padding: 8px 30px;
  }

}

  nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
    content: "";
    display: inline-block;
    position: relative;
    bottom: 2px;
    position: absolute;
    left: 5px;
    top: 10px;
    opacity: 0;
    transition: opacity 300ms linear;
    background: url(../img/hover-blume-v2.png);
    width: 16px;
    height: 15px;
  }
/* 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) {
  background: #f2f2f2;
  color: #a25701;
}

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 ---------------------------------------- */

/* ------------------------------------------ optionsbar ---------------------------------------- */

@media (max-width: 1200px) {
  body:not(.index) #searchArea {
    display: none;
  }
}

#searchBox {
  background: #ffffff;
  padding: 12px 0 15px 0;
  border: solid 1px #a25701;
  border-radius: 10px;
  box-shadow: 0 0px 40px 0px rgba(25, 25, 25, 0.15);
}

@media (min-width: 1200px) {
  #searchBox {
    position: relative;
    z-index: 54;
    margin-top: -50px;
    padding-left: clamp(25px, 4vw, 40px);
    padding-right: clamp(25px, 4vw, 40px);
  }
}

#searchBox > .row {
  row-gap: 20px;
}

@media (min-width: 768px) {
  #searchBox .quicksearchTitle {
    border-right: #ad5c01 solid 2px;
  }
}
@media (min-width: 1200px) {
  #searchBox .quicksearchTitle {
    margin-right: 30px;
  }
}
#searchBox .quicksearchTitle :is(h1, h2, h3, h4, h5, h6) {
  color: #191919;
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 0;
  margin-left: 20px;
}
#searchBox .quicksearchTitle :is(h1, h2, h3, h4, h5, h6) :is(b, strong) {
  color: #a25701;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 0;
}

#searchBox .importantLinks {
  font-size: 1.125rem;
  font-weight: 400;
  color: #191919;
  margin-left: -15px;
}

#searchBox .importantLinks a {
  margin-bottom: 5px;
}

#searchBox .importantLinks > .template-page .row {
  display: flex;
  align-items: center;
  align-content: center;
}
/* -------------------------------------------- banner ------------------------------------------ */

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

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

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

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

  #headerpic .nivo-controlNav {
    bottom: 45px;
  }
}

#headerpic {
  padding: 0;
  position: relative;
  min-height: 100px;
}

@media (min-width: 1200px) {
  #headerpic > .row::before {
    content: "";
    position: absolute;
    background: url(../img/wasserzeichen-chinesischeschrift.png) no-repeat;
    width: 146px;
    height: 386px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    left: -200px;
    display: block;
  }
  #headerpic > .row::after {
    content: "";
    position: absolute;
    background: url(../img/wasserzeichen-logo-mit-blume.png) no-repeat;
    width: 199px;
    height: 329px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
    right: -200px;
    display: block;
  }

}

.slider-wrapper,
#slider {
  height: unset !important;
}
.slider-mask {
  display: none;
}

@media (min-width: 1200px) {
  .slider-mask {
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0) 70%);
    display: block;
  }
}

#bannerOverlay {
  padding-top: 25px;
  position: relative;
  color: #191919;
}

#bannerOverlay :is(h1, h2, h3, h4, h5, h6) {
  font-size: clamp(1.375rem, 4vw, 1.875rem);
}

#bannerOverlay :is(h1, h2, h3, h4, h5, h6) :is(b, strong) {
  font-weight: 600;
  font-size: clamp(1.875rem, 4vw, 3.75rem);
  display: block;
}

#bannerOverlay a {
  text-decoration: underline;
}

@media (min-width: 1200px) {
  #bannerOverlay {
    padding-top: 0;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 97px;
    z-index: 55;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    font-weight: 400;
  }

  #bannerOverlay :is(h1, h2, h3, h4, h5, h6, a) {
    color: #ffffff;
    font-weight: 400;
  }

  #bannerOverlay :is(b, strong) {
    font-weight: 600;
  }
}

@media (min-width: 1200px) {
  #bannerOverlay {
    bottom: 97px;
  }
}

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

#content {
  text-align: left;
  padding-top: clamp(30px, 4vw, 60px);
  padding-bottom: clamp(30px, 4vw, 60px);
}

/* ------------------------------------------------ Button Design ----------------------------------------------- */

.button-design a {
  display: inline-block;
  color: #191919;
  font-size: 0.875rem;
  font-weight: 400;
  background: #f78301;
  padding: 7px 46px 7px 13px;
  border-radius: 30px;
  position: relative;
  text-decoration: none !important;
}

.button-design a::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  right: 7px;
  bottom: 4px;
  width: 30px;
  background: #fa9e38 url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M27 34.85q-.45-.45-.45-1.075t.4-1.025l7.35-7.35H9.5q-.65 0-1.075-.425Q8 24.55 8 23.9q0-.65.425-1.075Q8.85 22.4 9.5 22.4h24.8L26.9 15q-.45-.45-.425-1.05.025-.6.475-1.05.45-.4 1.075-.4t1.025.4L39 22.85q.25.25.35.5.1.25.1.55 0 .3-.1.55-.1.25-.35.5l-9.9 9.9q-.45.45-1.05.45-.6 0-1.05-.45Z' fill='%23191919'/%3E%3C/svg%3E") center / 24px auto no-repeat;
  border-radius: 50%;
  transition: background 300ms linear;
}

.button-design a:is(:hover, :focus) {
  color: #fff;
  background-color: #a25701;
}

.button-design a:is(:hover, :focus)::after {
  background: #191919 url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M27 34.85q-.45-.45-.45-1.075t.4-1.025l7.35-7.35H9.5q-.65 0-1.075-.425Q8 24.55 8 23.9q0-.65.425-1.075Q8.85 22.4 9.5 22.4h24.8L26.9 15q-.45-.45-.425-1.05.025-.6.475-1.05.45-.4 1.075-.4t1.025.4L39 22.85q.25.25.35.5.1.25.1.55 0 .3-.1.55-.1.25-.35.5l-9.9 9.9q-.45.45-1.05.45-.6 0-1.05-.45Z' fill='%23fff'/%3E%3C/svg%3E") center / 24px auto no-repeat;
}

.button-design a + a {
  margin-left: 1px;
  margin-block: 5px;
}

/* ----------------------------------------------- @7nw news -------------------------------------------- */
#nw7 {
  background-color: #f78301;
  padding: 45px 0;
}
#nw7 > .row {
  row-gap: 30px;
}

#nw7 .tab {
  color: #191919;
  min-height: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  font-size: 1.125rem;
  padding: 20px 0;
}

@media (min-width: 992px) {
  #nw7 .tab {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
}

#nw7 .tabHeadline {
  margin: 0;
  padding: 30px;
  text-align: center;
  color: #191919;
  font-weight: 600;
  font-size: 1.625rem;
  position: relative;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  font-family: "Work Sans", sans-serif;
}

@media (min-width: 992px) {
  #nw7 .tabHeadline {
    border-right: 2px solid #a25701;
    height: 100%;
    min-height: 100%;
    max-width: 210px;
  }
}

#nw7 .tabHeadline::before {
  content: "";
  display: block;
  height: 110px;
  width: 100%;
  margin-bottom: 14px;
  background: url("../img/icon-aktuelles.png") center no-repeat;
}
#nw7 .tab2 .tabHeadline::before {
  background: url("../img/icon-termine.png") center no-repeat;
}

#nw7 .tabContent {
  padding: 25px 30px 20px 30px;
  line-height: 1.3;
}

#nw7 .tab_link_title a {
  color: #a25701;
  font-weight: 600;
  font-size: 1.125rem;
}

#nw7 .tab_link_mandat a {
  color: #191919;
}

#nw7 .tab_link_date,
#nw7 .tab1 .tab_date {
  font-size: 1rem;
}

#nw7 .tab_spacer {
  height: 20px;
}

/* ----------------------------------------- @7nw mehr-button ---------------------------------------- */

#nw7 .tab_link_mehr a {
  display: inline-block;
  color: #191919;
  font-size: 0.875rem;
  font-weight: 400;
  background: #f78301;
  padding: 9px 60px 9px 20px;
  border-radius: 30px;
  position: relative;
  text-decoration: none !important;
}

#nw7 .tab_link_mehr a::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  width: 34px;
  background: #fa9e38 url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M27 34.85q-.45-.45-.45-1.075t.4-1.025l7.35-7.35H9.5q-.65 0-1.075-.425Q8 24.55 8 23.9q0-.65.425-1.075Q8.85 22.4 9.5 22.4h24.8L26.9 15q-.45-.45-.425-1.05.025-.6.475-1.05.45-.4 1.075-.4t1.025.4L39 22.85q.25.25.35.5.1.25.1.55 0 .3-.1.55-.1.25-.35.5l-9.9 9.9q-.45.45-1.05.45-.6 0-1.05-.45Z' fill='%23191919'/%3E%3C/svg%3E") center / 24px auto no-repeat;
  border-radius: 50%;
  transition: background 300ms linear;
}

#nw7 .tab_link_mehr a:is(:hover, :focus) {
  color: #fff;
  background-color: #a25701;
}

#nw7 .tab_link_mehr a:is(:hover, :focus)::after {
  background: #191919 url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M27 34.85q-.45-.45-.45-1.075t.4-1.025l7.35-7.35H9.5q-.65 0-1.075-.425Q8 24.55 8 23.9q0-.65.425-1.075Q8.85 22.4 9.5 22.4h24.8L26.9 15q-.45-.45-.425-1.05.025-.6.475-1.05.45-.4 1.075-.4t1.025.4L39 22.85q.25.25.35.5.1.25.1.55 0 .3-.1.55-.1.25-.35.5l-9.9 9.9q-.45.45-1.05.45-.6 0-1.05-.45Z' fill='%23fff'/%3E%3C/svg%3E") center / 24px auto no-repeat;
}

#nw7 .tab_link_mehr a + a {
  margin-left: 10px;
}

#nw7 .tab_link_mehr {
  font-size: 0;
}

/* ------------------------------------------------ newsletterBox ----------------------------------------------- */
#newsletterBox {
  padding: 65px 0;
}


#newsletterBox .tab {
  background-color: #f2f2f2;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 65px 4px 65px 60px;
  border-right: 2px solid #a25701;
}

#newsletterBox .tabTeaser {
  color: #191919;
  font-size: 1rem;
}

#newsletterBox .tabTeaser :is(h1, h2, h3, h4, h5, h6) {
  color: #191919;
  font-weight: 400;
  font-size: 1.375rem;
}
#newsletterBox .tabTeaser :is(h1, h2, h3, h4, h5, h6) :is(b, strong) {
  color: #a25701;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.5vw, 1.75rem);
  margin-bottom: 30px;
}

#newsletterBox .newsletterInputBereich {
  background-color: #f2f2f2;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 65px 30px 65px 30px;
  height: 100%;
  align-content: center;
}
#newsletterBox .newsletterInputBereich #newsletter {
  justify-content: center;
  display: flex;
}

@media (min-width: 1200px) {
  #newsletterBox .newsletterInputBereich {
    background-color: #f2f2f2;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 65px 74px 65px 30px;
    margin-left: -20px;
    height: 100%;
    align-content: center;
  }
  #newsletterBox .tab {
    background-color: #f2f2f2;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 65px 4px 65px 60px;
    border-right: 2px solid #a25701;
    margin-right: -10px;
  }
}
@media (max-width: 1200px) {
  #newsletterBox .tab {
    border-right: unset;
    border-bottom: 2px solid #a25701;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
    padding: 65px 30px 65px 30px;
  }
  #newsletterBox .newsletterInputBereich {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}
#newsletterInputs {
  height: 60px;
  background: #fff;
  display: inline-block;
  position: relative;
  border: solid 1px #a25701;
  border-radius: 10px;
  top: 70%;
  width: 100%;
}

#newsletter_input {
  color: #191919;
  font-size: 16px;
  font-style: normal;
  background: transparent;
  padding: 0;
  border: 0;
  line-height: 60px;
  padding-left: 10px;
  padding-right: 43px;
  height: 60px;
  width: 100%;
  opacity: 1 !important;
}

@media (max-width: 1200px) {
  #newsletterBox .newsletterInputBereich {
    padding: 65px 30px 65px 30px;
  }
  #newsletter_input {
    width: 100%;
  }
}

#newsletter_submit {
  width: 63px;
  background: #fff url("../img/icon-mail-newsletter.png") center no-repeat;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 0;
  cursor: pointer;
  line-height: 33px;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  font-size: 0;
  transition: background-color 300ms linear;
}

#newsletter_submit:hover {
  background-color: #f2f2f2;
}

#newsletter_input::-ms-input-placeholder {
  color: #191919 !important;
}

#newsletter_input::-webkit-input-placeholder {
  color: #191919 !important;
}

#newsletter_input::-moz-placeholder {
  opacity: 1 !important;
}

#newsletter_input:-moz-placeholder {
  opacity: 1 !important;
}
#newsletter_input::-webkit-input-placeholder {
  opacity: 1 !important;
}

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

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

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

h2,
.h2,
.legacy_h2 {
  font-size: clamp(1.75rem, 5vw, 2.625rem);
}

h3,
.h3,
.legacy_h3 {
  font-size: clamp(1.625rem, 4.5vw, 2.5rem);
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
  font-size: clamp(1.5rem, 4vw, 2.1875rem);
}

h5,
.h5,
.legacy_h5 {
  font-size: clamp(1.375rem, 3.5vw, 1.875rem);
}

h6,
.h6,
.legacy_h6 {
  font-size: clamp(1.25rem, 3vw, 1.5625rem);
}

/* ----------------------------------------------- @2f footer ----------------------------------------------- */

#footer {
  color: #191919;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f2f2f2;
}

@media (min-width: 992px) {
  #footer {
    padding-top: 38px;
    padding-bottom: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #footer > .row > * + * {
    margin-top: 30px;
  }
}

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

  #footer .row > .col-xs-12.hidden-xs ~ .col-xs-12::before,
  #footer .row > .col-xs-12.hidden-sm ~ .col-xs-12::before {
    display: none;
  }
}

/* --------------------------------------------- logoFooter -------------------------------------------- */

.tabFooterlogo {
  font-size: 1.25rem;
  color: #191919;
}
.tabFooterlogo img {
  vertical-align: middle;
}
/* --------------------------------------------- footerTab -------------------------------------------- */

#footerTab {
  font-size: 1.125rem;
  margin-top: 12px;
  padding-top: 5px;
  border-top: 2px solid #a25701;
}

#footerTab a {
  text-decoration: underline;
}

#footerTab a:is(:hover, :focus) {
  text-decoration: none;
}
/* ----------------------------------------------- scrollTop ----------------------------------------------- */

#scrollTop {
  display: inline-block;
  color: #191919;
  font-size: 0.875rem;
  font-weight: 400;
  background: #f78301;
  padding: 9px 60px 9px 20px;
  border-radius: 30px;
  position: relative;
  text-decoration: none !important;
  max-width: 177px;
  margin-left: auto;
  margin-bottom: 50px;
}

#scrollTop::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  width: 34px;
  background: #fa9e38 url("../img/pfeil-dunkel.png") center / 12px auto no-repeat;
  border-radius: 50%;
  transition: background 300ms linear;
}

#scrollTop:is(:hover, :focus) {
  color: #fff;
  background-color: #a25701;
}

#scrollTop:is(:hover, :focus)::after {
  background: #191919 url("../img/pfeil-hell.png") center / 12px auto no-repeat;
}

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

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

#vernetzt span span {
  display: block;
}

#vernetzt :is(b, strong) {
  font-weight: 600;
  color: #a25701;
}
/* ---------------------------------------------- innerfooter ---------------------------------------------- */

#innerfooter {
  font-size: 1rem;
  color: #191919;
  padding-top: 19px;
  padding-bottom: 19px;
  background-color: #f78301;
}

#innerfooter ul {
  padding: 0 !important;
}

#innerfooter li {
  display: inline-block;
}

#innerfooter a {
  color: #191919;
  text-decoration: none;
  display: inline-block;
}

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

#innerfooter li + li::before {
  content: "•";
  margin: 0 10px;
}

@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;
  }
}
