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

html {
  max-width: 1930px;
  margin-left: auto;
  margin-right: auto;
  background: #3c3c3c;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  scrollbar-color: #790c44 #3c3c3c;
  scrollbar-width: thin;
}

body {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  color: #000000;
  background: #a9a9a9;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.5;
  box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

#contentBox {
  background: #a9a9a9;
}

#content {
  background: #2f2f2f;
}

a {
  color: #790c44;
}

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

.linkUnderline a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration 300ms;
  font-style: italic;
}

.linkUnderline a:is(:hover, :focus) {
  text-decoration-color: transparent;
}

b,
strong {
  font-weight: 700;
}

@media (min-width: 1200px) {
  .row {
    width: 100%;
    max-width: 1440px;
  }
}

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

.bgDark {
  background: rgba(16, 16, 16, 0.5);
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

/* #region --------------------------------------- logo ----------------------------------------- */

#logo {
  display: inline-block;
}

#logo img {
  display: block;
}

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

#logo .row {
  margin-left: -15px;
  margin-right: -15px;
}

/* #endregion ----------------------------------- logo ------------------------------------------ */

/* -------------------------------------------- search ------------------------------------------ */

#search {
  display: block;
}

@media (min-width: 992px) {
  #search {
    border-top: none;
    padding: 16px 0 16px 15px;
    flex: 0 0 auto;
  }
}

@media (min-width: 1200px) {
  #search {
    padding: 16px 9px 16px 24px;
  }
}

#search img {
  display: block;
  margin: 0 auto;
  padding: 10px;
}

@media (min-width: 992px) {
  #search img {
    padding: 4px;
  }
}

#language {
  gap: 15px;
  display: flex;
}

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

#menu>.row {
  gap: 15px 0;
}

/* burgermenu for tablet */

@media (max-width: 991px) {
  nav.horizontally {
padding: 15px 0 0 0;
    background: #fff;
  }
  .is-sticky   nav.horizontally {
    border-bottom: solid 1px #790c44;
  }

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

  #burgerButton::before,
  #burgerButton::after,
  #burgerButtonInner {
    background-color: #000000;
    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 {
    padding: 20px 10px;
  }

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

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

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

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

  .dropdown-toggle-button-wrapper2 {
    top: 5px;
    right: 0;
  }
}

/* menu desktop */

@media (min-width: 992px) {
  #menu {
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.15);
    padding: 17.5px 0;
    left: unset !important;
  }

  nav.horizontally .navbar-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    flex-wrap: wrap;
    gap: 10px 0;
    margin: -30px 0;
    width: 100%;
  }

  nav.horizontally .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }

  nav.horizontally .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
  }

  nav.horizontally .navbar-nav>li,
  nav.horizontally .navbar-nav>li>.dropdown-menu>li {
    position: relative;
  }

  .navbar-default .navbar-nav li[class*="toplevel"]>ul,
  .navbar-default .navbar-nav li[class*="secondlevel"]>ul {
    display: block !important;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 300ms linear;
    -moz-transition: opacity 300ms linear;
    -ms-transition: opacity 300ms linear;
    -o-transition: opacity 300ms linear;
    transition: opacity 300ms linear;
  }

  .navbar-default .open>.dropdown-menu,
  .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul,
  .navbar-default .navbar-nav li[class*="secondlevel"]:hover>ul,
  .navbar-default .navbar-nav li[class*="secondlevel"]>ul[style*="block"] {
    pointer-events: auto !important;
    opacity: 1 !important;
  }

  .navbar-default .navbar-nav li[class*="toplevel"]:focus-within>ul,
  .navbar-default .navbar-nav li[class*="secondlevel"]:focus-within>ul {
    pointer-events: auto !important;
    opacity: 1 !important;
  }

  .navbar-default .nav .open>.dropdown-menu {
    pointer-events: none !important;
    opacity: 0 !important;
  }

  .navbar-default .navbar-nav li[class*="toplevel"]:hover>ul,
  .navbar-default .navbar-nav li[class*="secondlevel"]:hover>u {
    z-index: 1003;
  }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
  color: #121212;
  font-weight: 600;
  text-align: left;
  padding: 12px 15px 12px 18px;
  position: relative;
 font-size: clamp(1.125rem,1.5vw,1.25rem);
  line-height: 1.2;
  text-decoration: none;
}

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

  nav.horizontally a[class*="toplevel"] {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

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

@media (min-width: 992px) {
  nav.horizontally li[class*="toplevel"]+li {
    margin-left: clamp(5px, 0.4vw, 15px);
  }

  nav.horizontally a[class*="toplevel"] {
    padding: 40px 0 40px 20px;
  }

  nav.horizontally a[class*="toplevel"] {
    padding-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
  }
}

nav.horizontally a[class*="toplevel"]::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: calc(50% - 6px);
  width: 13px;
  height: 13px;
  background: #666666;
  pointer-events: none;
  transition: background 300ms linear, height 300ms linear;
}

/* toplevel-over */

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 {
  background: #121212;
  height: calc(50% + 6px);
}

@media (min-width: 992px) {

  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 {
    height: calc(50% + 0);
  }
}

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

.navbar-default .navbar-nav>li>.dropdown-menu,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
  background: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .navbar-default .navbar-nav>li>.dropdown-menu {
    padding: 10px;
  }

  .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    margin: 10px;
  }
}

@media (min-width: 992px) {

  .navbar-default .navbar-nav>li>.dropdown-menu,
  .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-default .navbar-nav>li>.dropdown-menu {
    margin-top: 10px;
  }

  .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    margin-top: -15px;
    margin-left: 10px;
  }

  .navbar-default .navbar-nav>li>.dropdown-menu::before {
    content: "";
    position: absolute;
    display: block;
    height: 10px;
    left: 0;
    right: 0;
    top: -10px;
  }

  .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu::before {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    top: 0;
    bottom: 0;
    left: -10px;
  }
}

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

.navbar-default .navbar-nav>li>.dropdown-menu>li>a,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
  color: #121212;
  font-weight: 400;
  text-align: left;
  padding: 8px 25px;
  font-size: 1.125rem;
  line-height: 1.2;
  text-decoration: none;
}

@media (max-width: 991px) {

.navbar-default .navbar-nav>li>.dropdown-menu>li>a,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  padding-left: 15px;
}
}

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

.navbar-nav>li>.dropdown-menu>li:hover>a,
.navbar-nav>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li[class$="_over"]>a:focus {
  background: #121212;
  color: #fff;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a {
  background: #121212;
  color: #fff;
}

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

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

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

@media (min-width: 992px) {
  #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: none;
}

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

.paddingTopBottom {
  text-align: left;
  padding-bottom: 30px;
  padding-top: 30px;
}

@media (min-width: 992px) {
  .paddingTopBottom {
    padding-bottom: 60px;
    padding-top: 35px;
  }

  #contentBox {
    padding-top: 30px;
  }

  .rowPadding {
    padding: 0 30px;
  }
}

@media (min-width: 1200px) {
  #contentBox {
    max-width: 1440px;
    width: 100%;
    margin: auto;
    position: relative;
  }

  #contentBox::before {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    left: -240px;
    bottom: 0;
    height: 100%;
    width: 240px;
    background: top center repeat-y;
  }

  #contentBox::after {
    content: '';
    position: absolute;
    pointer-events: none;
    top: 0;
    right: -240px;
    bottom: 0;
    height: 100%;
    width: 240px;
    background: top center repeat-y;
  }
}

/* #region ---------------------------------- h1 - h6, newslink --------------------------------- */

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

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

h1,
.h1,
.legacy_h1 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  margin-bottom: clamp(15px, 4vw, 25px);
}

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

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

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

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

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

/* #endregion ---------------------------------- h1 - h6, newslink ------------------------------ */

/* #region ----------------------------------- news + events ------------------------------------ */

:is(#events, #news) .tab-headline :is(h1, h2, h3, h4, h5, h6) {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1;
  -moz-hyphens: auto;
  hyphens: auto;
  color: #000000;
  padding: 20px 0;
}

@media (min-width: 992px) {
  :is(#events, #news) .tab-headline :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 0;
  }
}

:is(#events, #news) .tab-content a {
  display: inline-block;
  padding-right: 25px;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.2;
  color: #000000;
}

:is(#events, #news) .tab-content a::after {
  content: url(../img/arrow.png);
  margin-left: 5px;
}

@media (max-width: 991px) {
  :is(#events, #news) :is(.tab-headline + .tab-content, .tab-content + .tab-headline) {
    margin-top: 20px;
  }
}

/* tabnews/tabevents */

:is(#news, #events) .tab_link_entries {
  display: grid;
  gap: 30px 30px;
  margin-top: clamp(15px, 4vw, 30px);
}

@media (min-width: 576px) {
  :is(#news, #events) .tab_link_entries {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  :is(#news) .tab_link_entries {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1199px) {
  :is(#events) .tab_link_entries {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
:is(#news, #events) .tab_link_entry {
  font-size: 1rem;
  color: #ffffff;
  border-bottom: none !important;
  position: relative;
}

@media (min-width: 576px) and (max-width: 991px) {
  :is( #news) .tab_link_entry:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  :is(#events) .tab_link_entry:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

#news .tab_link_entries {
  isolation: isolate;
}

#news .tab_link_entry {
  margin-left: 15px;
  margin-top: 114px;
  background: #404040;
  padding: 80px clamp(15px, 4vw, 30px) clamp(15px, 4vw, 26px) clamp(15px, 4vw, 30px);
}

#news .tab_link_entry::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: 0;
  top: -114px;
  right: 15px;
  height: 114px;
  border: 4px solid #82b83e;
  transition: border-color 300ms, opacity 300ms;
  opacity: 0.3;
}

#news .tab_link_entry:is(:hover, :focus-within)::after {
  border-color: #790c44;
  opacity: 1;
}

#events .tab_link_entry {
  padding: 80px clamp(15px, 4vw, 40px) clamp(15px, 4vw, 50px) clamp(15px, 4vw, 40px);
  background: #3c3c3c linear-gradient(to top, rgba(102, 102, 102, 0.92), rgba(60, 60, 60, 0.92) 60%) top center no-repeat;
  transition: background 300ms linear;
}

#events .tab_link_entries {
  isolation: isolate;
}

#events .tab_link_entry:is(:hover, :focus) {
  background-position: 0 250px;
}

#events .tab_link_entry::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transform: rotate(0);
  transition: background 300ms, transform 300ms;
  z-index: -1;
}

#events .tab_link_entry:is(:hover, :focus)::after {
  background: #82b83e;
  transform: rotate(-5deg);
}

#news .tab_link_entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transform: rotate(0);
  transition: background 300ms, transform 300ms;
  z-index: -1;
}

#news .tab_link_entry:is(:hover, :focus)::before {
  background: #790c44;
  transform: rotate(5deg);
}

:is(#news, #events) .tab_link_entry a {
  color: #ffffff;
}

:is(#news, #events) .tab_link_mandat a {
  text-decoration: underline;
  display: block;
  margin: 10px 0;
}

:is(#news, #events) .tab_link_entry :is(.tab_date, .tab_link_date) {
  font-size: 1rem;
  font-weight: 400;
  color: #121212;
  background: #fff;
  line-height: 1.2;
  padding: 8px 10px;
  position: absolute;
  top: 0;
  z-index: 1;
  right: 0;
  max-width: calc(100% - 15px);
  min-width: 100px;
  text-align: center;
  font-style: italic;
}

#events .tab_link_entry .tab_link_date {
  top: 30px;
}

:is(#news, #events) .tab_link_entry .tab_link_title a {
  font-size: clamp(1.25rem, 3vw, 1.375rem);
  margin-bottom: 4px;
  font-weight: 600;
  line-height: 1.2;
  display: block;
}

#news .tab_link_entry .tab_link_title a::before,
#events .tab_link_entry:not(:has(.tab_preview_picture img)) .tab_link_title a::before {
  content: "";
  background: center / cover no-repeat;
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.15);
}

:is(#news, #events) .tab_link_entry .tab_preview_picture,
#news .tab_link_entry .tab_link_title a::before {
  display: block;
  overflow: hidden;
  position: absolute;
}

#news .tab_link_entry .tab_preview_picture,
#news .tab_link_entry .tab_link_title a::before {
  height: 150px;
  top: -95px;
  left: -15px;
  width: calc(100% - 18px);
}

#events .tab_link_entry .tab_preview_picture,
#events .tab_link_entry:not(:has(.tab_preview_picture img)) .tab_link_title a::before {
  height: 100%;
  opacity: 0.1;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 300ms;
  position: absolute;
}

#events .tab_link_entry:is(:hover, :focus) .tab_preview_picture,
#events .tab_link_entry:is(:hover, :focus):not(:has(.tab_preview_picture img)) .tab_link_title a::before {
  opacity: 0;
}

:is(#news, #events) .tab_link_entry .tab_preview_picture img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin: 0;
}

:is(#news, #events) .tab_link_entry :is(.tab_spacer, .tab_link_mehr) {
  display: none;
}

#news .tab_link_entry .tab_link_title a::before {
  opacity: 1;
}

:is(#news) .tab_link_entry:has(.tab_preview_picture) .tab_link_title a::before {
  opacity: 0;
}

/* #endregion -------------------------------- news + events ------------------------------------ */

/* ----------------------------------------------- @1f footer ----------------------------------------------- */

#f1 {
  color: #121212;
  padding-top: 35px;
  padding-bottom: 30px;
  background-color: #ffffff;
  position: relative;
}

#f1::before,
#f1::after {
  content: "";
  position: absolute;
  width: 16.6667vw;
  max-width: 320px;
  height: 3.1771vw;
  max-height: 61px;
  background: #82b83e;
  transition: clip-path 300ms;
}

#f1::before {
  clip-path: polygon(100% 100%, 100% 0, 0 0);
  top: 0;
  right: 0;
}

#f1::after {
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  bottom: 0;
  left: 0;
}

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

#f1 a,
#f1 a:hover,
#f1 a:focus {
  color: #121212;
  text-decoration: underline;
}

#f1 .tabHeadline {
  font-size: 1.375rem;
  font-weight: 700;
  color: #121212;
  margin-bottom: 10px;
}

#f1 strong {
  font-weight: 600;
}

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

#innerfooter ul {
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding: 0;
}

#innerfooter li {
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

#innerfooter a {
  text-decoration: none;
  position: relative;
  display: block;
  font-weight: 400;
  padding: 6px 10px 6px 25px;
  color: #3c3c3c;
}

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

#innerfooter a::before {
  content: "";
  position: absolute;
  display: block;
  left: 10px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transition: background 300ms linear;
}

#innerfooter a:hover::before,
#innerfooter a:focus::before {
  background: #121212;
}

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

#vernetzt {
  gap: 12px;
  text-align: right;
  font-size: 0.9375rem;
  color: #121212;
  line-height: 1.3;
  text-decoration: none !important;
  flex-direction: column;
}

@media (max-width: 575px) {

#vernetzt {
  text-align: center;
}
}

#vernetzt strong {
  font-weight: 600;
}

#vernetzt span span {
  display: block;
}