@import url("https://fonts.verwaltungsportal.de/import/?family=Amatic+SC:300,400,500,600,700,300i,400i,500i,600i,700i");
@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: #fffdf9;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scrollbar-color: #7a2f00 #ffffff;
  scrollbar-width: thin;
}

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

a {
  color: #7a2f00;
}

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

main a {
  font-weight: 500;
  text-decoration: underline;
}

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

b,
strong {
  font-weight: 600;
}

hr {
  height: 2px;
  opacity: 0.2;
  background: #000000;
}

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

#overflow {
  overflow: clip;
  position: relative;
}


.stickyBtn a {
  background-color: #7a2f00;
  padding: 10px 25px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
}

.stickyBtn {
  padding-top: 5px;
}
/* #region ----------------------------------- topbar ------------------------------------------- */

#topbar {
  color: #4e5840;
  background: rgba(255, 255, 255, 0.94);
  position: absolute;
  z-index: 12;
  left: 0;
  right: 0;
  margin: auto;
  padding: 14px 0;
}

#topbar > .row {
  width: 100%;
  max-width: 1800px;
}
#topbar #sloganBereich {
  font-weight: 600;
  font-size: 1.25rem;
  color: #4e5840;
}

@media (max-width: 991px) {
  #topbar #sloganBereich {
    font-weight: 600;
    font-size: 1rem;
    color: #4e5840;
  }

  #topbar {
    position: relative !important;
  }
}

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

#logo {
  display: inline-block;
}

#logo img {
  display: block;
}

body:not(.index) #logo img {
  max-width: 240px;
}

@media (max-width: 991px) {
  #logo {
    padding: 15px 0;
  }

  #logo img {
   max-width: 160px;
    width: 100%;
  }
}
/* -------------------------------------------- @nav4 Navigation ------------------------------------------- */

/* --------------------------------------- navigation --------------------------------------- */

/* burgermenu for tablet */

#burgerButton {
  font-size: 0;
  border: none !important;
  position: relative;
  z-index: 1002;
  display: block;
  width: 48px;
  height: 48px;
  cursor: pointer;
  background: #4e5840;
  border-radius: 50%;
  border: 1px solid #ffffff;
}

@media (max-width: 991px) {
  #burgerButton {
    position: fixed;
    right: 15px;
    top: 15px;
  }
}

@media (min-width: 992px) {
  #burgerButton {
    width: 48px;
    height: 48px;
    margin-left: auto;
    z-index: 1003;
  }
}

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

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

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

#burgerButtonInner2,
#burgerButton:after,
#burgerButtonInner {
  position: absolute;
  background: #fff;
  width: 24px;
  height: 2px;
  left: 12px;
  -webkit-transition:
    transform 200ms linear,
    opacity 200ms linear;
  -moz-transition:
    transform 200ms linear,
    opacity 200ms linear;
  -ms-transition:
    transform 200ms linear,
    opacity 200ms linear;
  -o-transition:
    transform 200ms linear,
    opacity 200ms linear;
  transition:
    transform 200ms linear,
    opacity 200ms linear;
}

@media (min-width: 992px) {
  #burgerButtonInner2,
  #burgerButton:after,
  #burgerButtonInner {
    left: 12px;
  }
}

#burgerButtonInner {
  top: 16px;
}

#burgerButtonInner2 {
  top: 23px;
}

#burgerButton:after {
  top: 30px;
  content: "";
  display: block;
}

@media (min-width: 992px) {
  #burgerButtonInner {
    top: 16px;
  }

  #burgerButtonInner2 {
    top: 23px;
  }

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

/* burgermenu for tablet */

@media (max-width: 991px) {
  .navbar-collapse {
    top: 0;
    background: #ffffff;
    position: fixed;
    left: -100%;
    bottom: 0;
    z-index: 100;
    height: auto !important;
    -webkit-box-shadow: 0 0 150px 0 rgba(0, 0, 0, 1);
    box-shadow: 0 0 150px 0 rgba(0, 0, 0, 1);
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    -webkit-transition:
      left 300ms linear,
      opacity 300ms linear;
    -moz-transition:
      left 300ms linear,
      opacity 300ms linear;
    -ms-transition:
      left 300ms linear,
      opacity 300ms linear;
    -o-transition:
      left 300ms linear,
      opacity 300ms linear;
    transition:
      left 300ms linear,
      opacity 300ms linear;
  }

  .navbar-collapse[aria-expanded="true"],
  .navbar-collapse.in {
    left: 0;
    opacity: 1;
    pointer-events: auto;
  }

  .navbar-toggle::before {
    content: "";
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0;
    z-index: -1;
    display: block;
    -webkit-transition:
      width 300ms linear,
      opacity 300ms linear;
    -moz-transition:
      width 300ms linear,
      opacity 300ms linear;
    -ms-transition:
      width 300ms linear,
      opacity 300ms linear;
    -o-transition:
      width 300ms linear,
      opacity 300ms linear;
    transition:
      width 300ms linear,
      opacity 300ms linear;
  }

  .navbar-toggle[aria-expanded="true"]::before {
    opacity: 1;
    width: 90px;
  }
}

@media (min-width: 575px) and (max-width: 991px) {
  .navbar-collapse {
    width: 60%;
  }

  .navbar-collapse.collapse.in:after,
  .navbar-toggle[aria-expanded="true"]::before {
    width: 40%;
  }
}

/* menu desktop */

@media (min-width: 992px) {
  nav {
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1005;
  }

  nav > .row {
    padding-top: 27px;
    padding-bottom: 27px;
  }

  nav > .row,
  nav > .row > div {
    position: static;
  }

  .navbar-default {
    width: auto;
    margin-left: 35px;
  }

  .navbar-default .navbar-nav {
    width: 100%;
    margin: 0;
    display: block;
    padding: 30px;
    overflow-y: auto;
    position: relative;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    max-width: 992px;
    margin-left: auto;
    margin-right: auto;
    background: #ffffff;
  }

  .navbar-default li[class*="toplevel"] {
    float: none;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
    display: list-item !important;
  }

  .navbar-nav::after,
  .navbar-nav::before {
    display: none;
  }

  #myNavbar {
    max-height: 70vh;
  }

  #myNavbar.navbar-collapse {
    pointer-events: none;
    position: absolute;
    z-index: 1002;
    top: 50%;
    right: 0%;
    opacity: 0;
    width: 600px;
    background: #ffffff;
    height: auto !important;
    filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.15));
    -webkit-transition:
      opacity 300ms linear,
      top 300ms linear;
    -moz-transition:
      opacity 300ms linear,
      top 300ms linear;
    -ms-transition:
      opacity 300ms linear,
      top 300ms linear;
    -o-transition:
      opacity 300ms linear,
      top 300ms linear;
    transition:
      opacity 300ms linear,
      top 300ms linear;
  }

  #burgerButton[aria-expanded="true"]::before {
    opacity: 1;
    bottom: -47px;
  }

  #burgerButton[aria-expanded="true"] + #myNavbar {
    pointer-events: auto;
    opacity: 1;
    top: calc(100% + 30px);
  }

  #myNavbar:focus-within {
    pointer-events: auto;
    opacity: 1;
    top: calc(100% + 30px);
  }

  #myNavbar {
    max-height: 50vh;
    overflow: auto;
    scrollbar-color: #7a2f00 #f1f1f1;
    scrollbar-width: thin;
  }
}

@media (min-width: 1200px) {
  .navbar-default {
    margin-left: 52px;
  }

  .navbar-default .navbar-nav {
    max-width: 1200px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default li[class*="toplevel"] > a {
  color: #404040;
  font-weight: 600;
  text-align: left;
  padding: 9px 20px;
  position: relative;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  background: #f1ebe1;
  margin-bottom: 2px;
}

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

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

/* -------------------------------------------- toplevel-over ------------------------------------------- */

.navbar-default li[class*="toplevel"]:hover > a:after,
.navbar-default li[class*="toplevel"] > a:hover,
.navbar-default li[class*="toplevel"] > a:focus,
.navbar-default li[class*="toplevel"].open > a,
.navbar-default li[class*="toplevel"].open > a:hover,
.navbar-default li[class*="toplevel"].open > a:focus,
.navbar-default li[class*="toplevel"][class$="_over"] > a,
.navbar-default li[class*="toplevel"][class$="_over"] > a:hover,
.navbar-default li[class*="toplevel"][class$="_over"] > a:focus {
  color: #fff;
  background: #4e5840;
}

/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

@media (max-width: 991px) {
  .navbar-default li[class*="toplevel"] > .dropdown-menu {
    padding: 10px;
  }

  .navbar-default li[class*="toplevel"] > .dropdown-menu,
  .navbar-default li[class*="toplevel"] > .dropdown-menu > li > .dropdown-menu {
    background: rgba(255, 255, 255, 0.5);
  }
}

@media (min-width: 992px) {
  .navbar-default li[class*="toplevel"] > .dropdown-menu,
  .navbar-default li[class*="toplevel"] > .dropdown-menu > li > .dropdown-menu {
    display: block;
  }
}

/* --------------------------------------------- secondlevel + thirdlevel -------------------------------------------- */

.navbar-default li[class*="secondlevel"] > a,
.navbar-default li[class*="thirdlevel"] > a {
  color: #404040;
  font-weight: 400;
  text-align: left;
  padding: 8px 35px 8px 15px;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  position: relative;
}

@media (max-width: 991px) {
  .navbar-default li[class*="thirdlevel"] > a {
    padding-left: 25px;
  }
}

@media (min-width: 992px) {
  .navbar-default li[class*="secondlevel"] > a {
    padding: 5px 15px 5px 30px;
  }

  .navbar-default li[class*="thirdlevel"] > a {
    padding: 5px 15px 5px 50px;
  }

  .navbar-default li[class*="secondlevel"] > a::before,
  .navbar-default li[class*="thirdlevel"] > a::before {
    content: "";
    position: absolute;
    margin-top: -2px;
    top: 50%;
    left: 15px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4e5840;
    transition: background 150ms linear;
  }

  .navbar-default li[class*="thirdlevel"] > a::before {
    left: 35px;
  }
}

/* ------------------------------------------ secondlevel + thirdlevel over ------------------------------------------ */

.navbar-nav li[class*="secondlevel"]:hover > a,
.navbar-nav li[class*="secondlevel"] > a:hover,
.navbar-nav li[class*="secondlevel"] > a:focus,
.navbar-nav li[class*="secondlevel"].open > a,
.navbar-nav li[class*="secondlevel"].open > a:hover,
.navbar-nav li[class*="secondlevel"].open > a:focus,
.navbar-nav li[class*="secondlevel"][class$="_over"] > a,
.navbar-nav li[class*="secondlevel"][class$="_over"] > a:hover,
.navbar-nav li[class*="secondlevel"][class$="_over"] > a:focus,
.navbar-nav li[class*="thirdlevel"] > a:hover,
.navbar-nav li[class*="thirdlevel"] > a:focus,
.navbar-nav li[class*="thirdlevel"].open > a,
.navbar-nav li[class*="thirdlevel"].open > a:hover,
.navbar-nav li[class*="thirdlevel"].open > a:focus,
.navbar-nav li[class*="thirdlevel"][class$="_over"] > a,
.navbar-nav li[class*="thirdlevel"][class$="_over"] > a:hover,
.navbar-nav li[class*="thirdlevel"][class$="_over"] > a:focus {
  color: #7a2f00;
}

.navbar-nav li[class*="secondlevel"]:hover > a::before,
.navbar-nav li[class*="secondlevel"] > a:hover::before,
.navbar-nav li[class*="secondlevel"] > a:focus::before,
.navbar-nav li[class*="secondlevel"].open > a::before,
.navbar-nav li[class*="secondlevel"].open > a:hover::before,
.navbar-nav li[class*="secondlevel"].open > a:focus::before,
.navbar-nav li[class*="secondlevel"][class$="_over"] > a::before,
.navbar-nav li[class*="secondlevel"][class$="_over"] > a:hover::before,
.navbar-nav li[class*="secondlevel"][class$="_over"] > a:focus::before,
.navbar-nav li[class*="thirdlevel"] > a:hover::before,
.navbar-nav li[class*="thirdlevel"] > a:focus::before,
.navbar-nav li[class*="thirdlevel"].open > a::before,
.navbar-nav li[class*="thirdlevel"].open > a:hover::before,
.navbar-nav li[class*="thirdlevel"].open > a:focus::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"] > a::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"] > a:hover::before,
.navbar-nav li[class*="thirdlevel"][class$="_over"] > a:focus::before {
  background: #7a2f00;
}

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

#slider {
  height: clamp(300px, 55vw, 550px);
  position: relative;
}

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

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

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

  body:not(.index) #headerpic .nivo-controlNav {
    bottom: 26px;
  }
}

@media (max-width: 991px) {
  .theme-nivo .nivo-controlNav {
    text-align: center;
    position: absolute;
    bottom: 0;
    z-index: 10 !important;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .theme-nivo .nivo-directionNav a {
    position: absolute;
    top: unset !important;
    bottom: 0;
    z-index: 9;
    cursor: pointer;
  }
}

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

.slider-wrapper,
.nivo-main-image,
#slider > a > div {
  height: 100% !important;
}

.index .slider-mask {
  display: block;
  background: url("../img/slider-mask.png") no-repeat bottom -1px right / 102% auto;
}

.slider-mask {
  display: block;
  background: url("../img/slider-mask-weiss-1.png") no-repeat bottom -1px right / 102% auto;
}

/* overlay */

@media (max-width: 991px) {
  #overlay {
    background: #ffffff;
    padding-top: 10px;
  }
}

@media (min-width: 992px) {
  #overlay {
    position: absolute;
    pointer-events: none;
    z-index: 10;
    left: 0;
    right: 0;
    bottom: 33%;
  }
  body:not(.index) #overlay {
    bottom: 40%;
    transform: translateY(50%);
  }
}

#overlay .tab {
  pointer-events: auto;
  font-size: 2.25rem;
  font-weight: 700;
  color: #012952;
  max-width: 470px;
  left: 0;
  right: 0;
  margin: auto;
}

body:not(.index) #overlay .tab {
  max-width: 300px;
}

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

/* ------------------------------------------ buttonStyle --------------------------------------- */

.tab_link_mehr {
  font-size: 0;
}

.tab_link_mehr a,
.buttonStyle a:not(.has-image):not([rel]) {
  font-weight: 600;
  display: inline-block;
  padding: 7px 18px 8px 18px;
  color: #ffffff;
  background: #7a2f00;
  font-size: 1rem;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  border-radius: 10px;
}

#images .buttonStyle a {
  padding: 9px 35px 10px 35px;
}

.tab_link_mehr a:is(:hover, :focus),
.buttonStyle a:not(.has-image):not([rel]):is(:hover, :focus) {
  background: #642f19;
}

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

#tabs {
  background:
    url("../img/slider-mask-weiss.png") no-repeat bottom -1px right / 102% auto,
    #f1ebe1;
  padding: clamp(40px, 6vw, 60px) 0 clamp(40px, 6vw, 120px) 0px;
  position: relative;
}

#tabs .headlineTab {
  margin-bottom: 70px;
}

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

#tabs .tab {
  font-size: 1rem;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding-bottom: 20px;
}

#tabs .tab :is(h1, h2, h3, h4, h5, h6, .tabHeadline) {
  color: #262626;
  text-align: center;
  font-family: "Amatic SC", sans-serif;
  font-size: 1.875rem;
}

#tabs img {
  border-radius: 10px;
}

#tabs .tab::before {
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  border: 8px solid #a9ae9e;
  background: #4e5840 center no-repeat;
  position: absolute;
  z-index: 55;
}

#tabs .tab1::before {
  background-image: url(../img/icon-biene.png);
}

#tabs .tab2::before {
  background-image: url(../img/icon-nadelbaeume.png);
}

#tabs .tab3::before {
  background-image: url(../img/icon-blatt.png);
}

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

/* ---------------------------------------- specialHeadline ------------------------------------- */

.headlineTab {
  z-index: 2;
  position: relative;
}

.headlineTab .tabHeadline {
  color: #262626;
  text-align: center;
  margin: 0;
  position: relative;
}

.headlineTab .tabHeadline::before,
.headlineTab .tabHeadline::after {
  content: "";
  display: block;
  pointer-events: none;
}

.headlineTab .tabHeadline::before {
  width: 11px;
  height: 11px;
  background: #644619;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%);
}

.headlineTab .tabHeadline::after {
  max-width: 200px;
  width: 100%;
  height: 2px;
  background: rgba(100, 70, 25, 0.2);
  margin: 30px auto 30px auto;
}

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

#content {
  text-align: left;
  padding-top: 40px;
  padding-bottom: clamp(40px, 6vw, 90px);
}

/* -------------------------------------------- images ------------------------------------------ */

#images {
  background:
    url("../img/slider-mask-weiss-2.png") no-repeat top -1px center / 102% auto,
    url("../img/slider-mask-weiss-1.png") no-repeat bottom 125px center / 102% auto,
    linear-gradient(to top, #fff 125px, #f1ebe1 125px);
  padding: 80px 0 0px 0;
  position: relative;
  z-index: 1;
}

#images :is(h1, h2, h3, h4, h5, h6) {
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  #images > .row::before {
    content: "";
    position: absolute;
    background: url(../img/logo-fuchs.png) no-repeat;
    width: 457px;
    height: 290px;
    bottom: 139px;
    z-index: 0;
    pointer-events: none;
    left: -260px;
    display: block;
  }
}

#images .textBereich :is(h1, h2, h3, h4, h5, h6) {
  color: #262626;
  font-size: 2.125rem;
  margin-bottom: 0;
}

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

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

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

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

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

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

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

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

.event-entry h2 {
font-family: "Jost", sans-serif;
font-size: 1.25rem;
}
/* #region ----------------------------------- contactRow --------------------------------------- */

#contactRow {
  padding-bottom: clamp(30px, 7vw, 65px);
  padding-top: clamp(30px, 7vw, 40px);
}

@media (max-width: 991px) {
  #contactRow {
    padding-top: 30px;
  }
}

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

#contactRow .tabHeadline {
  color: #4e5840;
  margin: 0;
  font-size: 2.125rem;
  margin-bottom: 0;
}

.contactElement {
  padding-left: 40px;
  font-size: 1rem;
  margin-top: 25px;
  min-height: 30px;
  line-height: 1.6;
}

.contactElement a {
  text-decoration: underline;
}

.location {
  background: url("../img/icon-telefon.png") no-repeat left center / 25px auto;
}

.phone {
  background: url("../img/icon-mail.png") no-repeat left center / 25px auto;
}

.mail {
  background: url("../img/icon-newsletter.png") no-repeat left center / 25px auto;
}

.iframeTab {
  min-height: 230px;
}

.iframeTab .template-page :is(.row, .row > *) {
  position: static !important;
}

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

/* #endregion -------------------------------- contactRow --------------------------------------- */


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

#tabs2 {
  background:
    url("../img/slider-mask-footer.png") no-repeat top -1px right / 102% auto,
    #f1ebe1;
  padding: clamp(40px, 7vw, 90px) 0 clamp(40px, 6vw, 60px) 0px;
  position: relative;
}

#tabs2 .headlineTab {
  margin-bottom: 40px;
}

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

#tabs2 .tab {
  font-size: 1rem;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 70px 0 20px 0;
}

#tabs2 .tab :is(h1, h2, h3, h4, h5, h6, .tabHeadline) {
  color: #262626;
  text-align: center;
  font-family: "Amatic SC", sans-serif;
  font-size: 1.875rem;
}

#tabs2 .tab::before {
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  border: 8px solid #a9ae9e;
  background: #4e5840 center no-repeat;
  position: absolute;
  z-index: 55;
}

#tabs2 .tab1::before {
  background-image: url(../img/icon-blatt-small.png);
}

#tabs2 .tab2::before {
  background-image: url(../img/direction-icon.png);
}

#tabs2 .tab3::before {
  background-image: url(../img/eco-activism-icon.png);
}

#tabs2 .tab4::before {
  background-image: url(../img/community-icon.png);
}

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


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

#footerNav {
  background: #4e5840;
  padding: 13px 0;
}

@media (max-width: 767px) {
  #footerNav > .row > * + * {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

#innerfooter ul {
  padding: 0;
  font-size: 1rem;
}

#innerfooter li {
  display: inline-block;
}

#innerfooter li + li {
  margin-left: 20px;
}

#innerfooter a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
}

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

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

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

#vernetzt {
  gap: 18px;
  text-align: right;
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.5;
  font-weight: 400;
  text-decoration: none;
}

#vernetzt span span {
  display: block;
}
