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

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

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

body:not(.index),
body:not(.index) #footer,
body:not(.index) #newsletterInputs,
body:not(.index) #newsletter_submit {
   background-color: #fff1e8;
}

a {
   color: #7d0d24;
}

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

body:not(.index) #content a {
   text-decoration: underline;
}

b,
strong {
   font-weight: 600;
}

#over {
   overflow: hidden;
}

/* ------------------------------------------- topbar ------------------------------------------- */

#topbar {
   background: #45735c;
   padding: 18px 0;
}

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

#logo {
   display: inline-block;
   color: #ffffff;
   text-decoration: none;
   font-size: clamp(1.5rem, 3vw, 2rem);
}

#logo img {
   display: block;
   margin-right: 15px;
}

@media (max-width: 767px) {
   #logo img {
      max-width: 100px;
      width: 100%;
      margin-right: 0;
      margin-bottom: 15px;
   }
}

@media (min-width: 768px) {
   #logo {
      display: flex;
      align-content: center;
      align-items: center;
   }

   #logo img {
      max-width: 97px;
   }
}

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

#language a+a {
   margin-left: 15px;
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
   #burgerButton {
      font-size: 13px;
      display: block;
      width: 48px;
      height: 48px;
      border-radius: 2px;
      padding: 8px 0 0 0 !important;
      cursor: pointer;
      background: #ffffff;
      border: none !important;
      border-radius: 4px;
      color: #7d0d24;
      font-weight: 700;
      line-height: 1;
      text-transform: uppercase;
      text-align: center;
      box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
   }

   #burgerButtonInner {
      margin-bottom: 26px;
      display: inline-block;
   }

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

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

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

   #burgerButton::before {
      top: 26px;
   }

   #burgerButton::after {
      top: 36px;
   }

   #burgerButton::before,
   #burgerButton::after {
      content: "";
      display: block;
      position: absolute;
      background: #7d0d24;
      border-radius: 2px;
      width: 38px;
      height: 3px;
      left: 5px;
      font-size: 0;
      transition: transform 200ms linear, opacity 200ms linear;
   }

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

   .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: 22px;
      right: 15px;
      z-index: 101;
   }

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

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

/* menu desktop */

@media (min-width: 992px) {

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

   nav.horizontally {
      background: rgba(255, 255, 255, 0.9);
   }

   .is-sticky nav.horizontally {
      right: unset !important;
      left: unset !important;
      box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.1);
   }

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

   nav.horizontally .navbar-nav>li {
      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, :hover)>ul,
   nav.horizontally .navbar-nav li.open:focus-within>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.open>ul {
      pointer-events: none !important;
      opacity: 0 !important;
      visibility: hidden;
   }

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

/* toplevel */

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

@media (max-width: 991px) {
   nav.horizontally .navbar-nav li[class*="toplevel"] {
      border-top: 1px solid rgba(18, 18, 18, 0.1);
   }

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

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

.navbar-default .navbar-nav li[class*="toplevel"]>a::after {
   content: "";
   display: block;
   height: 2px;
   width: 0;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   bottom: 0;
   background: #7d0d24;
   transition: width 200ms linear;
}

/* toplevel-over */

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

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

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
   background: #ffffff;
   box-shadow: 0 5px 12px 0 rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
   color: #121212;
   font-weight: 400;
   text-align: left;
   padding: 8px 25px;
   font-size: 1.125rem;
   line-height: 1.2;
   text-decoration: none;
}

@media (max-width: 991px) {
   nav.horizontally a[class*="secondlevel"].dropdown-toggle2 {
      padding-right: 35px;
   }
}

/* 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: #ffbb8a;
   color: #7d0d24;
}

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

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

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

@media (min-width: 576px) {
   body.index #slider {
      max-height: clamp(400px, 62vw, 640px);
   }
}

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

@media (min-width: 992px) {
   #headerpic {
      background: #ffffff;
   }
}

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

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

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

#headerpic .nivo-directionNav {
   height: 40px;
   pointer-events: none;
   width: 100%;
   position: absolute;
   z-index: 7;
   left: 50%;
   bottom: 80px;
   transform: translateX(-50%);
}

@media (min-width: 992px) {
   #headerpic .nivo-directionNav {
      max-width: 992px;
      bottom: 100px;
   }
}

@media (min-width: 1200px) {
   #headerpic .nivo-directionNav {
      max-width: 1200px;
   }
}

#headerpic .nivo-directionNav a {
   pointer-events: auto;
   background: #ffbb8a url('../img/banner-arrows.png') top 10px center / 18px auto no-repeat;
   width: 40px;
   height: 40px;
}

#headerpic .nivo-directionNav a.nivo-nextNav {
   transform: scaleX(-1)
}

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

@media (min-width: 576px) {
   .index #headerpic .nivo-controlNav {
      bottom: 65px;
   }
}

@media (min-width: 992px) {
   .index #headerpic .nivo-controlNav {
      bottom: 78px;
   }
}

#headerpic .nivo-controlNav button {
   background: transparent;
   border-radius: 50%;
   border: 1px solid #ffffff;
   width: 12px;
   height: 12px;
   padding: 0;
}

#headerpic .nivo-controlNav button:is(:hover, :focus),
#headerpic .nivo-controlNav .slick-active button {
   background: #ffffff !important;
}

#headerpic .nivo-controlNav {
   pointer-events: none;
}

#headerpic .nivo-controlNav button {
   pointer-events: auto;
}

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

@media (min-width: 576px) {
   #searchArea {
      background: linear-gradient(to right, #45735c, #45735c 50%, rgba(255, 255, 255, 0) 50%);
   }
}

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

#searchBox {
   background: #ffffff;
   padding: 25px 0;
   box-shadow: 0 50px 50px -40px rgba(153, 67, 67, 0.5);
}

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

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

.importantLinks {
   color: #0b3e25;
   font-size: clamp(1.375rem, 4vw, 2rem);
}

.importantLinks a {
   color: #ffffff;
   background: #7d0d24;
   padding-right: 80px;
   font-size: 1.125rem;
   position: relative;
   text-decoration: none;
   margin-left: 20px;
   overflow: hidden;
   border-radius: 18px;
   padding: 8px 60px 8px 15px;
   transition: transform 200ms linear, filter 200ms linear;
}

.importantLinks a::after {
   content: "";
   display: block;
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   width: 50px;
   border-radius: 0 18px 18px 0;
   background: #7d0d24 url(../img/love-icon.png) center / 23px auto no-repeat;
}

.importantLinks a:is(:hover, :focus) {
   z-index: 1;
   transform: scale(1.1);
   filter: drop-shadow(0 15px 10px rgba(0, 0, 0, 0.15));
}

.importantLinks a+a {
   margin-left: 4px;
}

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

/* #region ------------------------------------ topInfo ----------------------------------------- */

#topInfo {
   padding-top: clamp(40px, 8vw, 80px);
   position: relative;
   z-index: 1;
}

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

#topInfo .tab-text {
   font-weight: 400;
}

@media (min-width: 992px) {
   #topInfo .tab-text {
      padding-top: 50px;
      padding-right: 30px;
      padding-bottom: 140px;
   }
}

#topInfo .tab-text>* {
   background: #45735c;
}

#topInfo .tab-text,
#topInfo .tab-text :is(h1, h2, h3, h4, h5, h6, a) {
   color: #ffffff;
}

#topInfo .tab-text a {
   text-decoration: underline;
}

#topInfo .tab-text h2::after {
   content: "";
   display: block;
   width: 20px;
   height: 8px;
   background: #ffffff;
   margin: 20px auto;
}

@media (min-width: 992px) {
   #topInfo .tab-text h2::after {
      margin-right: 0;
   }
}

#topInfo::after {
   content: "";
   position: absolute;
   z-index: -1;
   display: block;
   top: 0;
   left: 0;
   right: 0;
   bottom: 60px;
   background: #45735c;
   border-bottom-right-radius: 500px;
}

@media (min-width: 992px) {
   #topInfo::after {
      right: 50%;
   }

   #topInfo::before {
      content: '';
      position: absolute;
      pointer-events: none;
      right: 0;
      top: -50px;
      width: 653px;
      height: 206px;
      border-radius: 0 0 0 60px;
      background: #ffbb8a;
   }
}

#topInfo .tabHeadline {
   text-transform: uppercase;
   font-size: clamp(1.25rem, 3vw, 1.625rem);
   margin-bottom: 20px;
   padding-top: 75px;
   background-position: top left;
   background-repeat: no-repeat;
}

/* ----------------------------------------------- @1nw news -------------------------------------------- */

#nw1 .tab,
#nw1 .tab_link,
#nw1 .tab_link>div {
   height: 100%;
   min-height: 100%;
}

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

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

#nw1 .tab_link_entry {
   font-size: 1rem;
   position: relative;
   width: 100%;
   border-radius: 0 0 60px 0;
   padding: 160px 30px 30px 30px;
   background: #ffffff;
   border: none !important;
   box-shadow: 0 0 10px 0 rgba(1, 1, 1, 0.15);
}

#nw1 .vorschau {
   opacity: 1;
}

#nw1 .tab_preview_picture {
   background: #ffffff;
}

#nw1 .tab_link_entry::before,
#nw1 .tab_link_entry .tab_preview_picture {
   position: absolute;
   display: block;
   top: -1px;
   left: -1px;
   right: -1px;
   height: 120px;
   overflow: hidden;
}

#nw1 .tab_link_entry::before {
   content: "";
   background: center / cover no-repeat, #fff1e8;
}

#nw1 .tab_preview_picture img {
   position: absolute;
   margin: 0 !important;
   left: 50%;
   top: 50%;
   max-width: none;
   min-width: 100%;
   min-height: 100%;
   max-width: 350px;
   width: auto;
   height: auto;
   -ms-interpolation-mode: bicubic;
   transform: translateX(-50%) translateY(-50%);
}

#nw1 .tab_date {
   display: inline-block;
   position: absolute;
   z-index: 1;
   left: -1px;
   top: 105px;
   font-weight: 400;
   color: #121212;
   font-size: 1rem;
   padding: 6px 20px;
   background: #ffbb8a;
}

#nw1 .tab_link_title a {
   display: block;
   font-weight: 600;
   font-size: clamp(18px, 4vw, 1.375rem);
   color: #0b3e25;
   line-height: 1.2;
   margin-bottom: 8px;
}

#nw1 .tab_link_entries+div,
#nw1 .tab_link_entries .tab_spacer,
#nw1 .tab_link_entry>div:nth-last-child(2) {
   display: none;
}

/* #endregion --------------------------------- topInfo ----------------------------------------- */

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

#content {
   text-align: left;
   padding-top: clamp(50px, 5vw, 70px);
   padding-bottom: clamp(50px, 5vw, 75px);
}

.index #content {
   padding-bottom: clamp(40px, 8vw, 100px);
}

@media (min-width: 1200px) {
   body:not(.index) #content {
      position: relative;
   }

   body:not(.index) #content>.row::after {
      content: '';
      position: absolute;
      pointer-events: none;
      bottom: 30px;
      right: -300px;
      width: 109px;
      height: 132px;
      background: url('../img/wasserzeichen-bildmarke-akina.png') center no-repeat;
   }
}

/* ------------------------------------------- tabs ------------------------------------------ */

#tabs {
   padding-bottom: clamp(50px, 5vw, 90px);
   position: relative;
   z-index: 1;
}

#tabs::after {
   content: "";
   position: absolute;
   z-index: -1;
   display: block;
   top: 0;
   left: 50%;
   right: 0;
   bottom: 0;
   background: #45735c;
   border-top-left-radius: 500px;
}

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

#tabs .tab {
   padding: 30px;
}

#tabs .tab .tabHeadline {
   font-size: 1.375rem;
   font-weight: 600;
}

#tabs .tab a {
   text-decoration: none;
   display: inline-block;
   color: #ffffff;
   padding: 5px 20px;
   border-radius: 18px;
   background: #7d0d24;
}

#tabs .tab1Box .tabsImg {
   min-height: 376px;
   line-height: 0;
   border-radius: 60px 60px 0 0;
}

#tabs .tab.tabgruen {
   color: #ffffff;
   background: #45735c;
}

#tabs .tab.tabgruen .tabHeadline {
   color: #ffffff;
}

#tabs .tab.taborange {
   padding: 35px 30px;
   background: #ffbb8a;
}

@media (min-width: 768px) {
   #tabs .tab.taborange {
      height: calc(100% - 155px);
      margin-top: 155px;
   }
}

#tabs .tab.tabrot {
   color: #ffffff;
   border-radius: 0 0 60px 0;
   padding: 35px 30px;
   background: #7d0d24;
}

#tabs .tab.tabrot .tabHeadline {
   color: #ffffff;
}

#tabs .tab.tabrot a {
   color: #121212;
   background: #ffbb8a;
}

#tabs .tab a:is(:hover, :focus) {
   text-decoration: underline !important;
}

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

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

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

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

h3,
.h3,
.legacy_h3 {
   font-size: clamp(1.875rem, 4vw, 2.0625rem);
}

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

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

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

/* --------------------------------------------- facts ------------------------------------------ */

#facts {
   padding: 56px 0;
   color: #ffffff;
   background: #7d0d24;
}

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

#facts a {
   text-decoration: underline;
}

#facts :is(b, strong) {
   color: #ffffff;
   font-size: clamp(1.375rem, 4vw, 2rem);
   display: block;
   font-weight: 700;
   line-height: 1.1;
}

#facts>.row>div:last-child a {
   color: #ffffff;
   font-size: clamp(1.25rem, 4vw, 1.625rem);
   font-weight: 600;
   line-height: 1.2;
   text-decoration: none;
}

#facts>.row>div:last-child a::after {
   content: "\2192";
   display: block;
   font-weight: 400;
   color: #ffffff;
   font-size: 3.5rem;
}

#facts>.row>div:last-child a:is(:hover, :focus) {
   color: #ffffff;
}

/* #region -------------------------------------- kontaktFooter ---------------------------------------- */

#kontaktFooter {
   background: #ffbb8a;
   position: relative;
}

@media (min-width: 1200px) {
   #kontaktFooter>.row::after {
      content: '';
      position: absolute;
      pointer-events: none;
      bottom: 0;
      top: 0;
      right: -365px;
      width: 385px;
      background: #45735c
   }
}

#kontaktFooter .footerTab {
   height: 100%;
   padding: clamp(40px, 8vw, 65px) 0;
}

#kontaktFooter .footerHeadline {
   margin: 0 0 15px 0;
   font-size: 1.625rem;
}

#kontaktFooter a {
   text-decoration: underline;
}

#kontaktFooter .footerTab2 a {
   text-decoration: none;
}

#kontaktFooter a:is(:hover, :focus) {
   color: #121212;
}

#kontaktFooter .footerTab2 {
   color: #ffffff;
   padding-left: 25px;
   background: #45735c;
}

#kontaktFooter .footerTab2 .footerHeadline {
   color: #ffffff;
}

#kontaktFooter .footerTab2 a,
#kontaktFooter .footerTab2 a:is(:hover, :focus) {
   color: #ffffff;
}

#kontaktFooter .footerTab2 a:is(:hover, :focus) {
   text-decoration: underline;
}

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

#footer {
   background: #ffffff;
   font-size: 1rem;
   position: relative;
}

@media (min-width: 1200px) {
   #footer>.row>*:first-child {
      z-index: 1;
   }

   #footer>.row>*:first-child::after {
      content: '';
      position: absolute;
      pointer-events: none;
      bottom: 0;
      top: 0;
      left: -365px;
      right: -30px;
      background: #7d0d24;
      z-index: -1;
   }
}

#footer .footertab {
   padding: clamp(30px, 3vw, 40px) 0;
}

#footer .footertab1 {
   color: #ffffff;
   background: #7d0d24;
}

#footer a {
   text-decoration: underline;
}

#footer a:is(:hover, :focus) {
   color: #121212;
}

#footer .footerHeadline {
   margin: 0 0 15px 0;
   font-size: 1.625rem;
}

#footer iframe,
#footer .iframe-wrapper-manual-enabling {
   width: 100% !important;
   display: block !important;
   min-width: 100% !important;
   max-height: 280px;
}

#footer .shadow {
   box-shadow: 0 30px 50px -30px rgba(153, 67, 67, 0.3);
}

#newsletter #labelLetter {
   font-size: clamp(1rem, 3vw, 1.125rem);
   font-weight: 400;
   margin-bottom: 4px;
}

#newsletterInputs {
   margin-top: 15px;
   height: 36px;
   background: #ffffff;
   display: inline-block;
   position: relative;
   width: 100%;
   border: 1px solid rgba(18, 18, 18, 0.5);
}

#newsletter_input {
   color: rgba(18, 18, 18, 0.5);
   font-size: 16px;
   font-style: italic;
   background: transparent;
   padding: 0;
   border: 0;
   line-height: 36px;
   padding-left: 10px;
   padding-right: 43px;
   height: 36px;
   width: 100%;
}

#newsletter_submit {
   width: 36px;
   background: #ffffff url('../img/icon-newsletter.png') center no-repeat;
   padding: 0;
   cursor: pointer;
   line-height: 36px;
   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;
}

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

#newsletter_input::-ms-input-placeholder {
   color: rgba(18, 18, 18, 0.5) !important;
   font-style: italic !important;
}

#newsletter_input::-webkit-input-placeholder {
   color: rgba(18, 18, 18, 0.5) !important;
   font-style: italic !important;
}

#newsletter_input::-moz-placeholder {
   color: rgba(18, 18, 18, 0.5) !important;
   font-style: italic !important;
   opacity: 1;
}

#newsletter_input:-moz-placeholder {
   color: rgba(18, 18, 18, 0.5) !important;
   font-style: italic !important;
   opacity: 1;
}

/* --------------------------------------------- breaker -------------------------------------------- */

#breaker {
   background-attachment: fixed;
   background-position: center;
   background-repeat: no-repeat;
   background-size: cover;
   min-height: 150px;
}

@media (min-width: 992px) {
   #breaker {
      min-height: 350px;
   }
}

/* ----------------------------------------------- @5f footer ----------------------------------------------- */

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

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

@media (max-width: 767px) {
   #innerfooter {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 15px;
      margin-top: 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;
}

@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: left;
   font-size: 0.9375rem;
   color: #ffffff;
   line-height: 1.3;
   text-decoration: none;
}

#vernetzt span span {
   display: block;
}