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

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

body {
   font-family: "Montserrat", sans-serif;
   color: #0c0c0c;
   background: #f6f1ee;
   font-weight: 400;
   font-size: clamp(1rem, 2vw, 1.25rem);
   /* 1rem = 16px */
   line-height: 1.5;
}

a {
   color: #685831;
}

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

b,
strong {
   font-weight: 600;
}

#overflow {
   overflow: hidden;
}

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

#topbar {
   background: #ffffff;
   padding: 18px 0;
}

@media (min-width: 992px) {
   #topbar {
      padding: 27px 0;
      background: #ffffff;
   }
}

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

#logo {
   display: inline-block;
}

#logo img {
   display: block;
   max-width: 370px;
}

@media (max-width: 991px) {
   #logo img {
      max-width: 300px;
   }
}
@media (max-width: 575px) {
   #logo img {
      max-width: 250px;
   }
}

/* #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: #8e7e50;
      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: #8e7e50;
      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: #c8b889;
      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 {
      background: #c8b889;
   }

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

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

@media (max-width: 991px) {
   nav.horizontally .navbar-nav li[class*="toplevel"] {
      border-top: 1px solid rgba(255, 255, 255, 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: #282828;
   transition: width 200ms linear;
}

/* toplevel-over */

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-color: #ffffff;
    -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.3);
}

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

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

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

    nav.horizontally [class*="toplevel"]>ul {
        margin-top: 10px;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
    }

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

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

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

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

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

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
    content: "";
    display: block;
    position: absolute;
    left: 20px;
    top: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c8b889;
    transition: background 300ms linear;
}

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

/* 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: #685831;
}

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 {
    background: #685831;
}

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


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

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

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

#bannerOverlay {
   padding-top: 25px;
}

#bannerOverlay :is(h1, h2, h3, h4, h5, h6) {
   font-size: clamp(22px, 4vw, 30px);
   font-family: "Montserrat", sans-serif;
}

#bannerOverlay :is(h1, h2, h3, h4, h5, h6) :is(b, strong) {
   font-weight: 700;
   font-size: clamp(30px, 4vw, 60px);
   display: block;
}

#bannerOverlay a {
   text-decoration: underline;
}

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

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

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

@media (min-width: 992px) {
   #bannerOverlay {
      bottom: 160px;
   }
}

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

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

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

.slider-mask {
   display: none;
}

@media (min-width: 576px) {
   .slider-mask {
      display: block;
      background: linear-gradient(to top, rgba(12, 12, 12, 0.7), rgba(255, 255, 255, 0) 60%);
   }
}

/* #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: #9c8b58 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) {
   #headerpic .nivo-controlNav {
      bottom: 15px;
   }
}

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

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

 .theme-nivo .nivo-controlNav .slick-dots li {
      color: #fff;
   }

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

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

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



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

#topInfo {
   padding-top: 40px;
   position: relative;
   z-index: 11;
}

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

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

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

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

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

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

#topInfo .tab-text a:is(:hover, :focus) {
   color: #282828;
}

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

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

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

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

#topInfo .tab {
   background: #ffffff;
   padding: clamp(30px, 3vw, 40px);
   min-height: 100%;
   height: 100%;
   position: relative;
}

@media (min-width: 768px) {
   #topInfo .tab {
      font-size: 1.125rem;
   }

   .tab_spacer {
      height: 16px;
   }
}

@media (min-width: 992px) {
   #topInfo .tab {
      padding-bottom: 70px;
      top: -80px;
   }
}

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

#tab1 {
   position: relative;
}

#tab1::before {
   content: '';
    display: block;
    position: absolute;
    bottom: -80px;
    left: -160px;
    width: 318px;
    height: 311px;
    background: url('../img/aquarell.png');
    z-index: -1;
}

#tab1 .tabHeadline {
   background-image: url('../img/icon-schwangerschaft.png');
}

#tab2 .tabHeadline {
   background-image: url('../img/icon-mutter.png');
}

#topInfo .tab_link_mehr {
   color: transparent;
   font-size: 0;
}

.teaserText a,
#topInfo a {
   background: #9c8b58;
   display: inline-block;
   color: #000000;
   font-weight: 700;
   text-transform: uppercase;
   padding: 6px 15px;
   text-decoration: none;
   font-size: 1rem;
}

@media (min-width: 992px) {
   #topInfo a {
      padding: 15px 24px;
   }
}

.teaserText a:is(:hover, :focus),
#topInfo a:is(:hover, :focus) {
   background: #c8b889;
}

.teaserText a::after,
#topInfo a::after {
   content: "\2192";
   font-weight: 400;
   position: relative;
   left: 0;
   margin-left: 4px;
   transition: left 200ms linear;
}

.teaserText a:is(:hover, :focus)::after,
#topInfo a:is(:hover, :focus):after {
   left: 6px;
}

.tab_link_title a {
   font-weight: 600;
}

:is(.tab_link_title, .tab_link_mandat) a {
   color: inherit;
}

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

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

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

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

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

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

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

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

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

/* ----------------------------------------------- @16ev events -------------------------------------------- */

#ev16 {
    position: relative;
    margin-top: 30px;
    padding-top: 210px;
    margin-bottom: 0px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

@media (max-width: 767px) {
    #ev16 {
        padding-top: 110px;
    }
}

#ev16>.row>* {
    position: relative;
    z-index: 12;
    margin-bottom: -60px;
}

#ev16 .tab {
    font-size: 1rem;
    color: #282828;
    padding: 33px 36px;
    background: #c8b889;
}

#ev16 .tab a {
    color: #282828;
}

#ev16 .tabHeadline {
    color: #282828;
    font-weight: 700;
    font-size: 1.875rem;
    margin: 0;
}

#ev16 .events16Box {
    background: #fff;
}

#ev16 .events16Box::before {
   content: '';
    display: block;
    position: absolute;
    bottom: -110px;
    right: -140px;
    width: 295px;
    height: 267px;
    background: url('../img/aquarell-termnie.png');
    z-index: -1;
    pointer-events: none;
}

@media (min-width: 576px) {
    #ev16 .tab_link_entries {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #ev16 .tab_link_entry {
        width: calc(50% - 15px);
    }

    #ev16 .tab_link_entry:nth-child(2n+1) {
        margin-right: 15px;
    }

    #ev16 .tab_link_entry:nth-child(2n+2) {
        margin-left: 15px;
    }
}

@media (min-width: 768px) {
    #ev16 .tab_link_entry {
        width: calc(33.33% - 25px);
        padding: 10px 0;
    }

    #ev16 .tab_link_entry:is(:nth-child(3n+2), :nth-child(3n+3)) {
        margin-left: 25px;
        padding-left: 25px;
        border-left: 1px solid #b5ad99;
    }
}

@media (min-width: 1200px) {
    #ev16 .tab_link_entry {
        width: calc(33.33% - 45px);
        padding: 22px 0 10px 0;
    }

    #ev16 .tab_link_entry:is(:nth-child(3n+2), :nth-child(3n+3)) {
        margin-left: 45px;
        padding-left: 45px;
        border-left: 1px solid #b5ad99;
    }
}

@media (max-width: 767px) {
    #ev16 .tab_link_entry+.tab_link_entry {
        margin-top: 25px;
        padding-top: 25px;
        border-top: 1px solid #b5ad99;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #ev16 .tab_link_entry:nth-child(2) {
        margin-top: 0;
        border-top: 0;
        padding-top: 0;
    }
}

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

#ev16 .tab_link_entry {
    font-size: 1rem;
    color: #282828;
    position: relative;
}

#ev16 .tab_link {
    padding: 25px 30px;
}

#ev16 .tab_link_title a {
    color: #282828;
    font-weight: 700;
    font-size: 1rem;
    display: block;
    line-height: 1.2;
    margin-bottom: 8px;
}

#ev16 .tab_link_mandat a {
    color: #282828;
}

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

@media (min-width: 768px) {
    #ev16 .tab_link_mehr {
        position: absolute;
        top: 33px;
        right: 33px;
    }
}

@media (max-width: 767px) {
    #ev16 .tab_link_mehr {
        margin-top: 25px;
    }

    #ev16 .tab_link_mehr a {
        border: 1px solid #b5ad99;
    }
}

#ev16 .tab_link_mehr a,
#buttonStyle a{
    text-decoration: none;
    position: relative;
    display: inline-block;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    padding: 10px 20px;
    background: #9c8b58;
    transition: color 300ms linear, background 300ms linear;
}

#ev16 .tab_link_mehr a:hover,
#ev16 .tab_link_mehr a:focus,
#buttonStyle a:hover,
#buttonStyle a:focus {
    color: #000;
    background: #c8b889;
}

#buttonStyle a {
   margin-bottom: 40px;
}
/* ----------------------------------------------- @2f footer ----------------------------------------------- */

#footer {
    color: #282828;
    padding-top: 130px;
    padding-bottom: 30px;
    background-color: #f6f1ee;
}

#footerTab a {
   color: #0c0c0c;
   text-decoration: underline;
}

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

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

#logoFooter {
    display: inline-block;
}

#logoFooter img {
    display: block;
    max-width: 280px;
}

/* --------------------------------------------- footerTab -------------------------------------------- */

#footerTab {
    font-size: 1rem;
    margin-top: 18px;
    padding-top: 15px;
    border-top: 2px solid #b1a690;
}

/* ----------------------------------------------- scrollTop ----------------------------------------------- */

#scrollTop {
    text-decoration: none;
    text-transform: uppercase;
    color: #0c0c0c;
    font-size: 1rem;
    font-weight: 600;
    opacity: 1 !important;
    max-width: 170px;
    padding: 10px 20px;
    margin: 0 auto;
}

#scrollTop span {
    position: relative;
    display: inline-block;
    font-size: 0;
    height: 35px;
    width: 18px;
    margin-right: 4px;
    transition: border-radius 300ms linear;
}

#scrollTop span::after {
    content: "";
    position: absolute;
    display: inline-block;
    margin-top: -1px;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 1px;
    border-right: 2px solid #0c0c0c;
    border-top: 2px solid #0c0c0c;
    transform: rotate(-45deg);
}

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

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

#vernetzt span span {
    display: block;
}

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

#innerfooter {
    font-size: 1rem;
    color: #0c0c0c;
    padding-top: 22px;
    padding-bottom: 22px;
    background-color: #fff;
}

#innerfooter ul {
    padding: 0 !important;
}

#innerfooter li {
    display: inline-block;
}

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

#innerfooter a:hover,
#innerfooter a:focus {
    color: #685831;
    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;
    }
}
