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

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

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

a {
  color: #057c6f;
}

a:is(:hover, :focus) {
  color: #057c6f;
}

b,
strong {
  font-weight: 600;
}

:is(header, #leistungen, #team, #feedback, #termin) {
  overflow: hidden;
  position: relative;
}

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

/* #region --------------------------------- buttonStyle ---------------------------------------- */

.buttonStyle a {
  background: #1d9e92;
  border-radius: 8px;
  color: #ffffff;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 14px 19px;
  transition: all 300ms;
  position: relative;
  line-height: 1.2;
  border: solid 2px #1d9e92;
}

.buttonStyle a:is(:hover, :focus) {
  background: #ffffff;
  border-radius: 8px;
  color: #057c6f;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 14px 19px;
  transition: all 300ms;
  position: relative;
  line-height: 1.2;
  border: solid 2px #057c6f;
}

.buttonStyle2 a {
  background: #e2f1ef;
  border-radius: 8px;
  color: #057c6f !important;
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  padding: 8px 22px;
  transition: all 300ms;
  position: relative;
  line-height: 1.2;
  border: solid 2px #e2f1ef;
  text-decoration: none !important;
  margin-top: 15px;
}

.buttonStyle2 a:is(:hover, :focus) {
  background: #057c6f;
  color: #ffffff !important;
  border: solid 2px #e2f1ef;
  text-decoration: none !important;
}

/* #endregion ------------------------------ buttonStyle ---------------------------------------- */

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

#logo {
  display: inline-block;
}

#logo img {
  display: block;
}

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

/* #region ----------------------------------- options ------------------------------------------ */

#options {
  font-size: 0.875rem;
  line-height: 1.2;
  gap: 20px;
}

@media (max-width: 575px) {
  #options {
    flex-wrap: wrap;
    gap: clamp(5px, 2vw, 20px);
  }

  #options .col-xs-12 {
    padding: 0;
  }
}

/* buttons */

.button1 {
  background: #ffffff;
  padding: 16px 20px 16px 45px;
  position: relative;
  box-shadow: 0 2px 6px rgba(75, 89, 227, 0.2);
  transition: all 300ms;
  border-radius: 8px;
}

.button1:is(:hover, :focus-within) {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.button1 a {
  text-decoration: none;
}

.button1::before {
  content: "";
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="%23057c6f" height="48" viewBox="0 -960 960 960" width="48"><path d="M777-487q-5-121.325-89.291-205.551Q603.418-776.778 482-781.778V-842q73 2 136.5 30.5T730-735q48 48 76.5 111.5T837-487h-60Zm-170 0q-5-50-40-84.5T482-611v-60q75 5 127.5 57T667-487h-60Zm188 367q-116 0-236.5-56T335-335Q232-438 176-558.5T120-795q0-19 13-32t32-13h140q14 0 24 10t14 25l27 126q2 14-.5 25.5T359-634L259-533q26 44 55 82t64 72q37 38 78 69.5t86 55.5l95-98q10-11 23-15t26-2l119 26q15 4 25 16t10 27v135q0 19-13 32t-32 13Z"/></svg>') center / 24px auto no-repeat;
  display: block;
  left: 0;
  position: absolute;
  top: 2px;
  bottom: 0;
  width: 50px;
}

.button1:is(:hover, :focus-within)::before {
  animation: shake 1s ease 1;
}

@media (min-width: 992px) {
  #style {
    border-radius: 8px;
    display: flex;
    padding: 8px 15px 0 15px;
    align-items: center;
    align-content: center;
  }

  #style h2 {
    color: #ffffff;
    font-size: 14px !important;
    margin-bottom: 0;
    padding-right: 10px;
    font-weight: 400;

  }

  #style button {
    border: none;
    color: #354947;
    display: inline-block;
    min-width: 30px !important;
    height: 30px;
    border-radius: 5px;
    font-weight: 400;
    text-align: center;
    background-color: rgba(45, 180, 169, 0.6);
    position: relative;
    line-height: 1;
    -webkit-transition: transform 150ms linear;
    -moz-transition: transform 150ms linear;
    -ms-transition: transform 150ms linear;
    -o-transition: transform 150ms linear;
    transition: transform 150ms linear;
    padding: 0;
    font-size: 1.125rem;
  }

  #style button+button {
    margin-left: 6px;
  }

  #style button:hover {
    background-color: #ffffff;
    color: #057c6f;
  }

  #style button:focus-visible {
    outline: 2px auto;
  }
}

@media (max-width: 1199px) {
  #style h2 {
    margin-bottom: 10px;

  }
}

/* #endregion -------------------------------- options ------------------------------------------ */

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

nav.horizontally {
  padding: 20px 0;
  background: #057c6f;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

nav.horizontally>.row {
  row-gap: 20px;
}

/* burgermenu for tablet */

@media (max-width: 991px) {

  #myNavbar {
    padding: 0 5px;
  }

  nav.horizontally {
    position: static !important;
  }

  #burgerButton {
    font-size: 0;
    border: none !important;
    display: block;
    height: 50px;
    width: 60px;
    border-radius: 8px;
    padding: 6px 8px;
    cursor: pointer;
    background-color: #fff;
  }

  #burgerButton::before,
  #burgerButton::after,
  #burgerButtonInner {
    background-color: #057c6f;
    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: #057c6f;
    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;
    right: 15px;
    top: 15px;
    z-index: 101;
  }

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

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

/* menu desktop */

@media (min-width: 992px) {
  nav.horizontally {
    padding: 20px 0 25px 0;
    transition: padding 200ms linear;
  }

  .is-sticky nav.horizontally {
    padding: 10px 0 10px 0;
  }

  nav.horizontally .navbar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 2px;
    margin-top: 26px;
    transition: margin-top 200ms linear;
  }

  .is-sticky nav.horizontally .navbar-nav {
    margin-top: 12px;
  }

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

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

  nav.horizontally li[class*="toplevel"]+li {
    margin-left: 5px;
  }
}

/* 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) {
  background: #ebf7f6;
  color: #057c6f;
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 10px;
}

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

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

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

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

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

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

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

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
  color: #354947;
  font-weight: normal;
  text-align: left;
  padding: 9px 15px;
  font-size: 0.875rem;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 8px;
}

@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: rgba(45, 180, 169, 0.1);
  color: #057c6f;
}

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

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

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

@media (min-width: 768px) {
  body.index #headerpic .nivo-controlNav {
    bottom: 70px;
  }
}

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

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

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

#headerpic {
  padding: 30px 0 clamp(40px, 6vw, 80px) 0;
  z-index: 2;
  background: #e2f1ef;
}

@media (min-width: 992px) {
  #headerpic {
    padding-top: 0;
  }
}

#headerpic>.row:first-child {
  max-width: 1400px;
  width: 100%;
}

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

.slider-mask {
  display: none;
}

/* Banner-Tabs */

#bannerTabs {
  margin-top: 30px;
}

@media (min-width: 768px) {
  #bannerTabs {
    margin-top: -60px;
  }
}

#bannerTabs,
#bannerTabs .tab1>.row {
  row-gap: 30px;
}

#bannerTabs a {
  text-decoration: underline;
}

#bannerTabs .tab {
  border-radius: 20px;
  font-size: 1rem;
  line-height: 1.75;
  min-height: 100%;
  padding: 40px 50px 30px 30px;
  position: relative;
  z-index: 12;
}

#bannterTabs b,
#bannerTabs strong {
  font-weight: 700;
}

#bannerTabs .tab {
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#bannerTabs .tab :is(h1, h2, h3, h4, h5, h6) {
  color: #354947;
  font-size: 1.125rem;
  margin-bottom: 20px;
  font-weight: 700;
}

@media (min-width: 992px) {
  #bannerTabs .tab1>.row>*:not(:last-child) {
    padding-right: 30px;
  }

  #bannerTabs .tab1>.row>*+* {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    padding-left: 30px;
  }
}

/* Banner-Tabs icon */
@media (min-width: 992px) {
  #bannerTabs .tab::before {
    content: "";
    display: block;
    height: 30px;
    position: absolute;
    right: 30px;
    top: 30px;
    width: 30px;
  }

  #bannerTabs .tab:is(:hover, :focus-within)::before {
    animation: shake 1s ease 1;
  }

  #bannerTabs .tab::before {
    background: url(../img/icon-fuss.png) no-repeat;
  }
}

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

/* ------------------------------------------ ICONS Shake --------------------------------------- */

@keyframes shake {

  40%,
  60% {
    transform: rotate(-5deg);
  }

  50% {
    transform: rotate(5deg);
  }

  70% {
    transform: rotate(0deg);
  }

  100% {
    transform: scale(1);
  }
}

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

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

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

  #nw4>.row::before,
  body:not(.index) #content>.row::before,
  #content>.row::after {
    content: "";
    background: url(../img/kreuz.png);
    display: block;
    position: absolute;
    height: 234px;
    width: 234px;
  }

  #nw4>.row::before {
    top: 245px;
    left: -335px;
  }

  body:not(.index) #content>.row::before {
    bottom: -50px;
    left: -335px;
  }

  #content>.row::after {
    right: -340px;
    top: 96px;
  }

}

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

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

h1,
.h1,
.legacy_h1,
:is(#leistungen, #team, #feedback .tabHeadline, #termin) :is(h1, h2) {
  font-size: clamp(1.75rem, 4vw, 2rem);
}

h2,
.h2,
.legacy_h2 {
  font-size: clamp(1.6875rem, 3.5vw, 1.875rem);
}

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

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

#bannerTabs .tab .tabHeadline,
#team .member :is(h3, h4, h5, h6),
#footer :is(h1, h2, h3, h4, h5, h6) {
  font-size: 1.125rem;
}

main :is(h1, h2) {
  margin-bottom: 25px;
}

/* ----------------------------------------------- @4nw news -------------------------------------------- */

#nw4 {
  font-size: 1rem;
  padding: clamp(30px, 4vw, 70px) 0 clamp(30px, 5vw, 62px) 0;
  position: relative;
}

#nw4>.row {
  row-gap: clamp(30px, 3.5vw, 70px);
}

#nw4 .tab {
  color: #ffffff;
}

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

#nw4 .tabHeadline {
  font-weight: 700;
  color: #057c6f;
  font-size: clamp(1.5625rem, 3vw, 1.875rem);
  margin-bottom: 0;
}

#nw4 .tab_link_entries {
  position: relative;
  display: grid;
  gap: clamp(30px, 4vw, 60px);
}

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

#nw4 .tab_link_entry {
  position: relative;
  font-size: 1rem;
  padding: 20px;
  hyphens: auto;
  background: #ffffff;
  border-bottom: none !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

#nw4 .tab_link_title a {
  display: block;
  color: #057c6f;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: clamp(20px, 3vw, 30px);
}

#nw4 .tab_link_mandat a {
  color: inherit;
}

#nw4 .tab_link_entry::after,
#nw4 .tab_preview_picture {
  position: absolute;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

#nw4 .tab_link_entry::after {
  content: "";
  background: center / cover no-repeat, #ffffff;
  border-radius: 20px;
}

#nw4 .tab_preview_picture {
  background: #ffffff;
  border-radius: 20px;
}

#nw4 .tab_preview_picture img {
  position: absolute;
  z-index: 2;
  margin: 0 !important;
  left: 50%;
  top: 50%;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  max-width: 350px;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 20px;
}

@media (max-width: 767px) {
  #nw4 .tab_link_entry {
    margin-top: 190px;
  }

  #nw4 .tab_link_entry::after,
  #nw4 .tab_preview_picture {
    top: -190px;
    width: 100%;
    height: 170px;
    left: 0;
    right: 0;
    border-radius: 20px;
  }
}

@media (min-width: 768px) {
  #nw4 .tab_link_entry {
    margin-left: 210px;
    min-height: 105px;
  }

  #nw4 .tab_link_entry::after,
  #nw4 .tab_preview_picture {
    top: 0;
    left: -210px;
    width: 190px;
    height: 100%;
    border-radius: 20px;
  }
}

@media (min-width: 1200px) {
  #nw4 .tab_link_entry>* {
    width: 100%;
  }

  #nw4 .tab_link_entry {
    position: relative;
    margin-left: 285px;
    min-height: 277px;
    display: flex;
    flex-wrap: wrap;
    padding: 30px 20px 30px 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  #nw4 .tab_link_entry::after,
  #nw4 .tab_preview_picture {
    left: -285px;
    top: 0;
    width: 270px;
    height: 100%;
    border-radius: 20px;
  }

  #nw4 .vorschau {
    opacity: 1;
    font-weight: 400;
  }

  #nw4 .tab_date {
    text-align: center;
    position: absolute;
    z-index: 55;
    top: -15px;
    left: -55%;
    color: #ffffff;
    font-size: 1rem;
    padding: 3px 10px;
    width: fit-content;
    background: #057c6f;
    transform: translate(-50%, 0);
    border-radius: 8px;
  }
}

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

/* ----------------------------------------- @4nw tab_link_mehr ---------------------------------------- */

#nw4 .tab_link_mehr {
  margin-top: 20px;
  color: transparent;
  font-size: 0;
  text-align: right;
}

#nw4 .tab_link_mehr a {
  text-decoration: none;
  display: inline-block;
  position: relative;
  text-align: center;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #057c6f;
  padding: 12px 42px;
  background: #eaf7f6;
  transition: color 300ms linear, background 300ms linear;
  border-radius: 8px;
}

#nw4 .tab_link_mehr a:hover,
#nw4 .tab_link_mehr a:focus {
  color: #eaf7f6;
  background: #057c6f;
}

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

#footer>.row::after {
  content: "";
  background: url(../img/kreuz-footer.png);
  display: block;
  position: absolute;
  z-index: 0;
  bottom: 0px;
  right: -300px;
  height: 260px;
  width: 260px;
}

#footer {
  color: #ffffff;
  font-size: 1rem;
  padding: clamp(40px, 6vw, 80px) 0;
  background: #057c6f;
  position: relative;
}

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

#footer :is(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 25px;
  color: #ffffff;
  font-weight: 700;
}

#footer b,
#footer strong {
  font-weight: 700;
}

#footer .footerTab a {
  color: #ffffff;
  text-decoration: underline;
}

#footer hr {
  background: rgba(0, 0, 0, 0.2);
  margin: clamp(30px, 3vw, 38px) 0;
  opacity: 1;
}

#footer .iframeTab {
  min-height: 250px;
  border-radius: 20px;
}

#footer .iframeTab :is(.row, .row > *) {
  position: static !important;
}

#footer :is(.iframe-wrapper-manual-enabling, iframe) {
  width: 100% !important;
  min-width: 100% !important;
  border-radius: 20px;
}

@media (min-width: 768px) {
  #footer :is(.iframe-wrapper-manual-enabling, iframe) {
    position: absolute;
    top: 0;
    right: 15px;
    bottom: 0;
    left: 15px;
    height: 100% !important;
    width: calc(100% - 30px) !important;
    min-width: calc(100% - 30px) !important;
  }
}

@media (min-width: 992px) {
  #innerfooter {
    margin-top: 20px;
  }
}

#innerfooter ul {
  padding: 0;
}

#innerfooter ul a:is(:hover, :focus) {
  color: #ffffff;
}

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

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

@media (min-width: 576px) {
  #innerfooter li {
    display: inline-block;
  }

  #innerfooter li+li::before {
    color: #ffffff;
    content: "•";
    margin: 0 15px;
  }
}

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

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

#footer #vernetzt {
  gap: 15px;
  text-align: left;
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.3;
  font-weight: 400;
  text-decoration: none;
}

#footer #vernetzt span span {
  display: block;
}