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

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

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

a {
   color: #48591c;
   text-decoration: underline;
}

a:is(:hover, :focus) {
   color: #48591c;
   text-decoration: none;
}

b,
strong {
   font-weight: 700;
}

/* ------------------------------------------ contact ------------------------------------------- */

.contact {
   background-color: #653332;
   color: #ffffff;
   font-size: 1rem;
   padding-top: 6px;
   padding-bottom: 6px;
}

@media (max-width: 991px) {
   nav .contact {
      padding: 15px;
   }
}

.contact a {
   color: #ffffff;
}

.contact p {
   margin: 0;
   display: inline-block;
}

.contact p + p {
   margin-left: clamp(15px, 2vw, 25px);
}

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

#topbar {
   padding-top: clamp(20px, 4vw, 60px);
   padding-bottom: clamp(20px, 4vw, 60px);
}

@media (min-width: 992px) {
   #topbar {
      background: url(../img/nav-welle.png), url(../img/welle-kontakt-topnav.png);
      background-size: contain;
      background-position: bottom -1px center, top -1px center;
      background-repeat: no-repeat;
   }
}

.logo {
   display: inline-block;
   text-decoration: none;
   color: #191919;
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   gap: 5px;
}

@media (max-width: 991px) {
   .logo {
      margin: 10px 0;
   }
}

.logo .template-page {
   width: auto;
}

#logoText {
   display: inline-block;
   font-size: 1.125rem;
   line-height: 1.1;
   hyphens: auto;
}

@media (min-width: 1200px) {
   #logoText {
      margin-left: -30px;
   }
}

#logoText :is(b, strong) {
   font-size: clamp(1.3125rem, 4vw, 1.75rem);
   color: #653332;
   display: block;
}

#logoText br {
   display: none;
}

.logo img {
   display: block;
}

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

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

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

@media (min-width: 992px) {
   form[id^="search"] {
      background: rgba(201, 201, 201, 0.2);
   }
}

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

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

form [id^="search_submit"] {
   border: 2px solid #191919;
   outline: 5px solid #ffffff;
   background: #e9f6cc url("../img/icon-lupe.png") center / 14px auto no-repeat;
   padding: 0;
   border-radius: 50%;
   cursor: pointer;
   margin: 0;
   font-size: 0;
   aspect-ratio: 1/1;
   min-width: 36px;
   flex-shrink: 0;
   transition: background 150ms linear, color 150ms linear, border 150ms linear;
}

@media (min-width: 992px) {
   form [id^="search_submit"] {
      border-color: #48591c;
   }
}

form [id^="search_submit"]:is(:hover, :focus) {
   background-color: #ffffff;
   border: 2px solid #653332;
}

#search input::placeholder {
   color: #191919 !important;
   opacity: 1 !important;
   font-style: normal !important;
}

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

/* ------------------------------------------- styler ------------------------------------------- */

@media (min-width: 992px) {
   #style {
      gap: 8px;
   }

   #style button {
      border: none;
      color: #48591c;
      display: inline-block;
      border-radius: 50%;
      font-weight: 700;
      text-align: center;
      background: #e9f6cc;
      border: 2px solid #48591c;
      line-height: 1;
      font-size: 1rem;
      min-width: 38px;
      min-height: 38px;
      transition: background 150ms linear, color 150ms linear, border 150ms linear;
   }

   #style button:is(:hover, :focus) {
      background: #653332;
      color: #ffffff;
      border: 2px solid #653332;
   }
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
   #burgerButton {
      font-size: 0;
      border: none !important;
      display: block;
      height: 50px;
      width: 60px;
      border-radius: 2px;
      padding: 6px 8px;
      cursor: pointer;
      background-color: #e9f6cc;
      outline: 2px solid #48591c;
   }

   #burgerButton::before,
   #burgerButton::after,
   #burgerButtonInner {
      background-color: #48591c;
      color: #ffffff;
      border-radius: 2px;
      position: absolute;
      width: 40px;
      height: 3px;
      left: 10px;
      transition: transform 200ms linear, opacity 200ms linear;
   }

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

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

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

   #burgerButtonInner {
      top: 16px;
   }

   #burgerButton::before {
      top: 24px;
      content: "";
   }

   #burgerButton:after {
      top: 32px;
      content: "";
   }

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

   .navbar-collapse {
      width: calc(100% - 90px);
      max-width: 300px;
      top: 0;
      background: #653332;
      position: fixed;
      left: -100%;
      bottom: 0;
      z-index: 100;
      height: auto !important;
      opacity: 0;
      pointer-events: none;
      visibility: hidden;
      overflow-y: auto;
      transition: left 300ms linear, opacity 300ms linear, box-shadow 600ms linear;
      box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
   }

   .navbar-collapse:is([aria-expanded="true"], .in) {
      left: 0;
      opacity: 1;
      pointer-events: auto;
      visibility: visible;
      box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
   }

   .navbar-header {
      position: fixed;
      top: 15px;
      right: 15px;
      z-index: 101;
   }

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

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

/* menu desktop */

@media (min-width: 992px) {
   nav.horizontally {
      background-color: #653332;
   }

   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;
      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 a[class*="toplevel"] {
   color: #ffffff;
   font-weight: 700;
   text-align: left;
   padding: 10px 15px 15px 15px;
   position: relative;
   font-size: 1.25rem;
   line-height: 1.2;
   text-decoration: none;
}

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

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

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

nav.horizontally a[class*="toplevel"]::before,
nav.horizontally a[class*="toplevel"]::after {
   content: "";
   width: 0;
   height: 1px;
   display: block;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   bottom: 10px;
   border-top-left-radius: 90px;
   border-top-right-radius: 90px;
   background-color: #ffffff;
   transition: width 300ms linear;
}

nav.horizontally a[class*="toplevel"]::after {
   top: 10px;
   bottom: auto;
}

@media (max-width: 991px) {
   nav.horizontally a[class*="toplevel"]::before,
   nav.horizontally a[class*="toplevel"]::after {
      bottom: 5px;
   }

   nav.horizontally a[class*="toplevel"]::after {
      top: 5px;
      bottom: auto;
   }
}

/* toplevel-over */

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

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

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
   background-color: #653332;
   box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

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

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

   nav.horizontally [class*="toplevel"] > ul {
      border-bottom-left-radius: 4px;
      border-bottom-right-radius: 4px;
      left: 50%;
      transform: translate(-50%, 0);
   }

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

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

/* secondlevel + thirdlevel */

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

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

   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: #e9f6cc;
   color: #191919;
}

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

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

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

@media (min-width: 992px) {
   body.index #slider {
      max-height: clamp(300px, 62vw, 650px);
   }

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

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

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

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

.slider-mask {
   display: block;
   background: url(../img/welle-banner.png);
   background-position: bottom center;
   background-repeat: no-repeat;
   background-size: contain;
}

/* #region -------------------------------- scroll bottom --------------------------------------- */

#scrollBottom {
   font-size: 0;
   border-radius: 50%;
   display: block;
   width: 40px;
   height: 40px;
   text-align: center;
   background-color: #ffffff;
   animation: bounceAni 2s infinite 2s;
   transition: all 0.2s ease-in;
   position: absolute;
   left: calc(50% - 20px);
   bottom: 50px;
   z-index: 50;
}

@media (min-width: 768px) {
   #scrollBottom {
      bottom: 60px;
   }
}

#scrollBottom:is(:hover, :focus) {
   animation-play-state: paused;
}

#scrollBottom::after {
   content: "";
   width: 10px;
   height: 10px;
   border-radius: 1px;
   margin-top: 13px;
   display: inline-block;
   border-left: 2px solid #191919;
   border-bottom: 2px solid #191919;
   transform: rotate(-45deg);
   transition: border 300ms linear;
}

@keyframes bounceAni {
   0%,
   100%,
   20%,
   50%,
   80% {
      transform: translateY(0);
   }

   40% {
      transform: translateY(-10px);
   }

   60% {
      transform: translateY(-5px);
   }
}

#scrollBottom:is(:hover, :focus)::after {
   border-color: #653332;
}

/* #endregion ----------------------------- scroll bottom --------------------------------------- */

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

#content {
   text-align: left;
}

main {
   background-image: url(../img/kontaktdaten-footer-welle.png);
   padding-bottom: clamp(60px, 7vw, 80px);
   padding-top: clamp(30px, 4vw, 60px);
   background-repeat: no-repeat;
   background-size: contain;
   background-position: bottom center;
}
/* ------------------------------------------------ 12ev events ----------------------------------------------- */

.events {
   background-color: #ffffff;
   padding: 0px 0px 20px 0px;
   color: #191919;
   font-size: 1rem;
   position: relative;
   box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
   border-radius: 20px;
   overflow: clip;
}

@media (max-width: 991px) {
   .events {
      margin: 40px auto 0 auto;
      max-width: 400px;
   }
}

.events .tabHeadline {
   background: #653332;
   color: #fff;
   font-size: 1.375rem;
   font-weight: 700;
   padding: 18px 25px;
   text-align: center;
   margin-bottom: 0;
   font-style: italic;
}

.events .tabContent {
   padding: 25px;
}

.eventclndr-tab {
   margin-left: -25px;
   margin-right: -25px;
   margin-top: -25px;
}

.events .tab_link_title a {
   font-weight: 700;
   color: #653332;
   text-decoration: none;
}

.events .tab_link_mandat a {
   color: #191919;
   font-style: italic;
   text-decoration: none;
}

.events .tab_link_mehr {
   font-size: 0;
   position: relative;
}

.events .tab_link_mehr a {
   font-size: 0.875rem;
   font-weight: 700;
   color: #48591c;
   text-decoration: none;
   background: #e9f6cc;
   border: 2px solid #48591c;
   border-radius: 100px;
   line-height: 1;
   padding: 8px 15px;
   transition: background 150ms linear, color 150ms linear, border 150ms linear;
}

.events .tab_link_mehr a:hover,
.events .tab_link_mehr a:focus {
   color: #ffffff;
   background: #653332;
   border: 2px solid #653332;
}

.events .tab_link_mehr a::after {
   content: " »";
}


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

#nw1 {
    padding-top: 30px;
    padding-bottom: 30px;
}

#nw1 .tab {
    color: #ffffff;
    padding: 30px;
    overflow: hidden;
    border-radius: 20px;
    background: url('../img/icon-news.png') top 20px right 20px no-repeat, #653332;
}

#nw1 .tab a {
    color: #ffffff;
    text-decoration: underline;
}

#nw1 .tabHeadline {
    color: #ffffff;
    font-weight: 700;
}

@media (min-width: 768px) {
    #nw1 .tabHeadline {
        font-size: 2rem;
    }
}

#nw1 .tabHeadline::after {
    display: none;
}

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

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

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

#nw1 .vorschau {
    opacity: 1;
}

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

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

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

@media (max-width: 767px) {
    #nw1 .tab_link_entry+.tab_link_entry {
        margin-top: 30px;
    }
}

@media (min-width: 768px) {
    #nw1 .tab_link_entry {
        width: calc(33.33% - 20px);
    }

    #nw1 .tab_link_entry+.tab_link_entry {
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    #nw1 .tab_link_entry+.tab_link_entry {
        margin-top: 30px;
    }
}

@media (min-width: 576px) {
    #nw1 .tab_link_entry:nth-child(2) {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    #nw1 .tab_link {
        margin-top: 30px;
    }
}

#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;
    border-radius: 20px 20px 0 0;
}

#nw1 .tab_link_entry::before {
    content: "";
    background: #666666 url("../img/platzhalter-aktuelles.jpg") center / cover no-repeat;
}

#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;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#nw1 .tab_date {
    display: inline-block;
    position: absolute;
    z-index: 1;
    left: -1px;
    top: 105px;
    font-weight: 600;
    color: #6e7b4a;
    font-size: 0.75rem;
    padding: 6px 20px;
    background: #e9f6cc;
    border: 2px solid #6e7b4a;
    border-radius: 0 20px 20px 0;
}

#nw1 .tab_link_title a {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #653332;
    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;
}

/* ------------------------------------------- @1nw buttonStyle ------------------------------------------- */

#nw1 .buttonStyle a {
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #606f3a;
    padding: 5px 12px;
    border-radius: 20px;
    background: #ffffff;
    -webkit-transition: background 300ms linear, color 300ms linear;
    -moz-transition: background 300ms linear, color 300ms linear;
    -ms-transition: background 300ms linear, color 300ms linear;
    -o-transition: background 300ms linear, color 300ms linear;
    transition: background 300ms linear, color 300ms linear;
}

@media (min-width: 768px) {
    #nw1 .buttonStyle a+a {
        margin-left: 12px;
    }
}

#nw1 .buttonStyle a::after {
    content: " \00BB";
}

#nw1 .buttonStyle a:hover,
#nw1 .buttonStyle a:focus {
    color: #ffffff;
    background: #606f3a;
}

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

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

h1,
.h1,
.legacy_h1 {
   font-size: 3rem;
}

h2,
.h2,
.legacy_h2 {
   font-size: 2.375rem;
}

h3,
.h3,
.legacy_h3 {
   font-size: 1.875rem;
}

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

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

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

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

#footer {
   background-color: #e9f6cc;
   padding: clamp(30px, 4vw, 55px) 0;
   color: #191919;
}

@media (max-width: 767px) {
   #footer > .row > .col-xs-12 + * {
      border-top: 1px solid rgba(0, 0, 0, 0.2);
      margin-top: 15px;
      padding-top: 15px;
   }
}

@media (max-width: 991px) {
   #footer > .row > .col-xs-12:last-child {
      border-top: 1px solid rgba(0, 0, 0, 0.2);
      margin-top: 15px;
      padding-top: 15px;
   }
}

@media (min-width: 992px) {
   #footer {
      font-size: 1rem;
   }
}

#footer a:not(#vernetzt) {
   color: #48591c;
   text-decoration: underline;
}

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

#footer .footerSlogan {
   font-size: clamp(1.375rem, 4vw, 1.875rem);
   font-weight: 700;
   color: #48591c;
}

#innerfooter {
   background-color: #653332;
   padding-top: 15px;
   padding-bottom: 15px;
   font-size: 1rem;
}

#innerfooter ul {
   padding: 0;
}

#innerfooter li {
   display: block;
}

#innerfooter a {
   color: #fff;
   text-decoration: none;
   font-weight: 400;
}

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

@media (min-width: 500px) {
   #innerfooter li + li::before {
      content: "•";
      margin: 0 clamp(15px, 2vw, 25px);
      color: #fff;
   }

   #innerfooter li {
      display: inline-block;
   }
}

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

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

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

#vernetzt span span {
   display: block;
}
