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

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

body {
   font-family: "Work Sans", sans-serif;
   font-weight: 400;
   color: #232323;
   background: #ffffff;
   font-size: 1rem;
   /* 1rem = 16px */
   line-height: 1.5;
}

a {
   color: #2a661e;
}

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

main a,
b,
strong {
   font-weight: 700;
}
/* -------------------------------------------- @nav1 Navigation ------------------------------------------- */

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

#logo {
   display: inline-block;
}

#logo img {
   display: block;
}

@media (min-width: 992px) {
   #logo img {
      max-width: 340px;
      width: 100%;
   }
   #logo {
      position: absolute;
      top: 10px;
   }
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
   #menu {
      padding: 10px 0;
      position: static !important;
      background-color: #1a1a1a;
      -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);
   }

   #burgerButton {
      font-size: 0;
      border: none !important;
      position: relative;
      z-index: 1002;
      display: block;
      width: 46px;
      height: 40px;
      border-radius: 2px;
      cursor: pointer;
      background-color: #ffffff;
      padding: 3px;
   }

   #burgerButton:before,
   #burgerButton:after,
   #burgerButtonInner {
      background-color: #2a661e;
      color: #ffffff;
      border-radius: 2px;
      position: absolute;
      width: 40px;
      height: 3px;
      left: 2px;
      -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;
   }

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

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

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

   #burgerButtonInner {
      top: 10px;
   }

   #burgerButton:before {
      top: 18px;
   }

   #burgerButton:after {
      top: 26px;
   }

   #burgerButton:before,
   #burgerButton:after {
      content: "";
      display: block;
   }

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

   .navbar-collapse {
      top: 0;
      background: #1a1a1a;
      position: fixed;
      left: -100%;
      bottom: 0;
      z-index: 100;
      height: auto !important;
      -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
      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.collapse.in {
      left: 0;
      opacity: 1;
      pointer-events: auto;
   }

   .navbar-header {
      height: 50px;
      width: 60px;
      border-radius: 2px;
      padding: 6px 8px;
      background-color: #ffffff;
      position: fixed;
      top: 15px;
      right: 15px;
      z-index: 101;
      -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
      box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
   }

   .navbar-collapse.in:after {
      content: "";
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: -1;
      display: block;
      width: 90px;
      background-color: rgba(0, 0, 0, 0.5);
   }
}

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

   .navbar-collapse.collapse.in:after {
      width: 40%;
   }
}

/* menu desktop */

@media (min-width: 992px) {
   #menu {
      background-color: #1a1a1a;
      -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);
   }
   .is-sticky #menu {
      width: 100vw !important;
      width: 100svw !important;
      width: 100dvw !important;
   }

   nav.horizontally .navbar-nav {
      padding-top: 45px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
      justify-content: flex-end !important;
      -webkit-box-align: center !important;
      -ms-flex-align: center !important;
      align-items: center !important;
      flex-wrap: wrap;
   }

   nav.horizontally .navbar-nav > li {
      flex-grow: 1;
   }

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

.navbar-default .navbar-nav > li > a {
   color: #ffffff;
   font-weight: 500;
   text-align: left;
   padding: 15px 35px 15px 15px;
   position: relative;
   font-size: 1.3125rem;
   text-transform: uppercase;
   line-height: 1.2;
   text-decoration: none;
   font-family: "Oswald", sans-serif;
}

@media (max-width: 991px) {
   .navbar-default .navbar-nav > li {
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
   }
}

@media (min-width: 992px) {
   .navbar-default .navbar-nav > li > a {
      padding: 40px 5px;
      display: flex;
      align-content: center;
      align-items: center;
      justify-content: center;
      text-align: center;
      height: 100%;
   }

   .navbar-default .navbar-nav > li > a::after {
      content: "";
      position: absolute;
      display: block;
      top: 30px;
      left: 50%;
      transform: translate(-50%, -250%);
      background: url(../img/activ-dart.png);
      width: 17px;
      height: 65px;
      transition: transform 200ms ease-out, opacity 150ms;
      pointer-events: none;
      opacity: 0;
   }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (min-width: 992px) {
   .navbar-default .navbar-nav > li > a {
      display: block;
   }
}

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

.navbar-nav > li:hover > a,
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > li.open > a,
.navbar-nav > li.open > a:hover,
.navbar-nav > li.open > a:focus,
.navbar-nav > li[class$="_over"] > a,
.navbar-nav > li[class$="_over"] > a:hover,
.navbar-nav > li[class$="_over"] > a:focus {
   color: #4cbc38;
}

.navbar-nav > li:focus-within > a {
   color: #4cbc38;
}

.navbar-nav > li:hover > a::after,
.navbar-nav > li > a:hover::after,
.navbar-nav > li > a:focus::after,
.navbar-nav > li.open > a::after,
.navbar-nav > li.open > a:hover::after,
.navbar-nav > li.open > a:focus::after,
.navbar-nav > li[class$="_over"] > a::after,
.navbar-nav > li[class$="_over"] > a:hover::after,
.navbar-nav > li[class$="_over"] > a:focus::after {
   transform: translate(-50%, -100%);
   opacity: 1;
}

.navbar-nav > li:focus-within > a::after {
   transform: translate(-50%, -100%);
   opacity: 1;
}

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

.navbar-default .navbar-nav > li > .dropdown-menu,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
   background: #1a1a1a;
}

@media (max-width: 991px) {
   .navbar-default .navbar-nav > li > .dropdown-menu,
   .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: 30px;
      padding-bottom: 30px;
   }

   .navbar-default .navbar-nav > li > .dropdown-menu {
      left: 50%;
      -moz-transform: translate(-50%, 0);
      -webkit-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      transform: translate(-50%, 0);
   }

   .navbar-default .navbar-nav > li > .dropdown-menu::after {
      content: "";
      display: block;
      position: absolute;
      left: 50%;
      top: -20px;
      margin-left: -20px;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 20px 20px 0 20px;
      border-color: #4cbc38 transparent transparent transparent;
      -webkit-transition: top 150ms linear;
      -moz-transition: top 150ms linear;
      -ms-transition: top 150ms linear;
      -o-transition: top 150ms linear;
      transition: top 150ms linear;
   }

   .navbar-default .navbar-nav > li:hover > .dropdown-menu::after {
      top: 0;
   }

   .navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
      margin-top: -30px;
      margin-left: 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: #ffffff;
   font-weight: 400;
   text-align: left;
   padding: 8px 25px;
   font-size: 1rem;
   line-height: 1.2;
   text-decoration: none;
   isolation: isolate;
}

@media (min-width: 992px) {
   .navbar-default .navbar-nav > li > .dropdown-menu > li > a,
   .navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a {
      text-align: center;
      padding: 13px 25px;
   }
   .navbar-default .navbar-nav > li > .dropdown-menu > li > a::before,
   .navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a::before {
      content: "";
      position: absolute;
      display: block;
      top: 50%;
      left: 10px;
      transform: translate(-120%, -50%);
      background: url(../img/aktiv-dart-horizontal.png);
      width: 53px;
      height: 14px;
      transition: transform 200ms ease-out, opacity 150ms;
      opacity: 0;
      z-index: -1;
   }
}

/* ------------------------------------------ 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: transparent;
   color: #4cbc38;
}

.navbar-nav > li > .dropdown-menu > li:focus-within > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:focus-within > a {
   background: transparent;
   color: #4cbc38
}
.navbar-nav > li > .dropdown-menu > li:hover > a::before,
.navbar-nav > li > .dropdown-menu > li > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > a:focus::before,
.navbar-nav > li > .dropdown-menu > li.open > a::before,
.navbar-nav > li > .dropdown-menu > li.open > a:hover::before,
.navbar-nav > li > .dropdown-menu > li.open > a:focus::before,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a::before,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:hover::before,
.navbar-nav > li > .dropdown-menu > li[class$="_over"] > a:focus::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li > a:focus::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li.open > a:focus::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:hover::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li[class$="_over"] > a:focus::before {
   transform: translate(0%, -50%);
   opacity: 1;
}

.navbar-nav > li > .dropdown-menu > li:focus-within > a::before,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:focus-within > a::before {
   transform: translate(0%, -50%);

   opacity: 1;
}

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

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

@media (min-width: 992px) {
   body.index #slider {
      max-height: clamp(00px, 69vw, 670px);
   }

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

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

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

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

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

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

.slider-mask {
   display: block;
   background: url("../img/overlay-border.png") center bottom / 100% auto no-repeat;
}

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

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

main {
   background-position: center;
   background-size: cover;
   background-repeat: no-repeat;
   background-attachment: fixed;
   background: #d5e8d2;
}

@media (max-width: 991px) {
   main {
      background: transparent !important;
   }
}

#content {
   background: linear-gradient(to top, #1a1a1a, #1a1a1a 21px, rgba(255, 255, 255, 0) 21px), url("../img/border.png") center bottom 20px / 100% auto no-repeat;
   padding-bottom: 70px;
}

@media (min-width: 992px) {
   #content {
      background: linear-gradient(to top, #1a1a1a, #1a1a1a 131px, rgba(255, 255, 255, 0) 131px), url("../img/border.png") center bottom 130px / 100% auto no-repeat, url("../img/background-overlay.svg") center top / 100% auto repeat-y;
      padding-bottom: 250px;
   }
}

#contentBG {
   text-align: left;
   padding: 30px clamp(15px, 2vw, 40px) clamp(40px, 4vw, 60px) clamp(15px, 2vw, 40px);
   background: #ffffff;
   position: relative;
   z-index: 45;
   box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.15);
}

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

@media (min-width: 1200px) {
   #contentBG {
      margin-top: -120px;
   }
}

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

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

h1,
.h1,
.legacy_h1 {
   font-size: clamp(2.375rem, 4vw, 2.8125rem);
   text-transform: uppercase;
   margin-bottom: clamp(15px, 2vw, 25px);
}

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

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

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

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

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

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

#tabs {
   padding: clamp(40px, 4vw, 60px) clamp(15px, 2vw, 40px);
   background: #1a1a1a;
   background-position: top center;
   background-size: cover;
   background-repeat: no-repeat;
   box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.15);
}

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

#tabs .tabHeadline :is(h1, h2, h3, h4, h5, h6) {
   padding-left: 15px;
   border-left: 4px solid rgba(255, 255, 255, 0.6);
}

#tabs .tabHeadline,
#tabs .tabHeadline a {
   color: #ffffff;
}

#tabs .tabHeadline a {
   text-decoration: underline;
}

#tabs .tabHeadline :is(h1, h2, h3, h4, h5, h6) {
   font-size: clamp(1.3rem, 2vw, 1.625rem);
   color: #ffffff;
   margin: 0;
   text-transform: uppercase;
}

#tabs .tab {
   color: #ffffff;
   padding: 0 20px;
}

#tabs .tab :is(h1, h2, h3, h4, h5, h6) {
   font-size: 1.2rem;
   margin-bottom: 10px;
}

#tabs .tab img {
   display: block;
   width: 100%;
}

#tabs .tab a {
   font-weight: 700;
   font-size: 1rem;
   text-decoration: none;
   background: #4cbc38;
   color: #1a1a1a;
   line-height: 1;
   display: inline-block;
   padding: 10px 15px;
}

#tabs .tab a:is(:hover, :focus) {
   color: #4cbc38;
   background: #1a1a1a;
}

#tabs .tab a::after {
   content: "\00BB";
   margin-left: 4px;
}

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

/* #region ------------------------------------- tabs2 ------------------------------------------ */

@media (min-width: 992px) {
   #tabs2 {
      margin-top: 20px;
      padding-left: 0;
      padding-bottom: 60px;
   }
}

#tabs2 .tab {
   max-width: 400px;
   margin-left: auto;
   margin-right: auto;
   padding: 30px 30px 65px 30px;
   font-size: 0.875rem;
   position: relative;
}

@media (min-width: 992px) {
   #tabs2 .tab {
      margin-left: -15px;
      overflow: hidden;
      isolation: isolate;
   }
}

#tabs2 .tab + .tab {
   margin-top: 30px;
}

@media (min-width: 1200px) {
   #events .tab_link {
      padding-right: 65px;
   }

   #events .tab_link::after {
      content: "";
      display: block;
      position: absolute;
      bottom: 25px;
      right: -40px;
      background: url("../img/wasserzeichen-pritzwalker-dart-club.png") center no-repeat;
      width: 186px;
      height: 206px;
      z-index: -1;
      pointer-events: none;
   }
}

#tabs2 .tab2 {
   background: #fcfcfc;
   color: #232323;
}

#tabs2 .tabHeadline {
   font-size: 1.5rem;
   margin: 0 0 clamp(10px, 2vw, 18px) 0;
}

#tabs2 .tab2 .tabHeadline {
   color: #1a1a1a;
}

#tabs2 .tab_link_mandat a {
   font-weight: 400;
}

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

#tabs2 .tab_spacer {
   height: 15px;
}

#tabs2 .tab_link_entry {
   position: relative;
}

#tabs2 .tab_link_entry + .tab_link_entry {
   margin-top: 24px;
}

#tabs2 .tab_link_entry + .tab_link_entry::before {
   content: "";
   display: block;
   position: absolute;
   top: -12px;
   left: -30px;
   right: 0;
   height: 1px;
   background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 10%, rgba(255, 255, 255, 0));
}

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

#tabs2 .tab_link_mehr a {
   display: block;
   position: absolute;
   left: 0;
   right: 0;
   bottom: 0;
   background: #4cbc38;
   font-weight: 700;
   text-align: left;
   padding: 16px 30px 12px 30px;
   text-decoration: none;
   line-height: 1.2;
   font-size: 1rem;
   color: #1a1a1a;
}

#tabs2 .tab_link_mehr a:is(:hover, :focus) {
   background: #1a1a1a;
   color: #4cbc38;
}

#tabs2 .tab_link_mehr a::after {
   content: "\00BB";
   margin-left: 4px;
}

/* #endregion ---------------------------------- tabs2 ------------------------------------------ */


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

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

@media (min-width: 992px) {
   #nw1 {
      padding-top: 30px;
      padding-bottom: 30px;
      position: relative;
      margin-bottom: -170px;
  }
}

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

#nw1 .tab {
    color: #ffffff;
    padding: 30px;
    overflow: hidden;
    border-radius: 3px;
    background: url('../img/icon-meldnungen.png') top 20px right 20px no-repeat, linear-gradient(to bottom, rgba(26,26,26,1) 0%,rgba(40,93,30,1) 100%);
}

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

#nw1 .tabHeadline {
    color: #ffffff;
    font-weight: 700;
    hyphens: auto;
    font-size: clamp(1.75rem, 2vw, 2rem);
}

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

#nw1 .tab_link_entries {
    display: grid;
    gap: 30px;
}

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

@media (min-width: 768px) {
    #nw1 .tab_link_entries {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

#nw1 .vorschau {
    opacity: 1;
}

#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: 3px 3px 0 0;
}

#nw1 .tab_link_entry::before {
    content: "";
    background: center / cover no-repeat, #666666;
}

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

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

#nw1 .tab_link_title a {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #232323;
    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: #232323;
    padding: 5px 12px;
    border-radius: 3px;
    background: #4cbc38;
    transition: background 300ms linear, color 300ms linear;
}

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

#nw1 .buttonStyle a:hover,
#nw1 .buttonStyle a:focus {
    color: #4cbc38;
    background: #232323;
}


/* ------------------------------------------- footer ------------------------------------------- */

footer {
   background: #1a1a1a;
   color: #ffffff;
   font-size: 1rem;
   padding: 30px 0;
}

@media (min-width: 576px) {
   footer {
      padding-top: 0;
   }
}

@media (min-width: 992px) {
   footer {
      padding-bottom: 60px;
      margin-top: -20px;
   }
}

footer :is(h1, h2, h3, h4, h5, h6) {
   color: #ffffff;
   font-size: 1.5rem;
}

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

footer a {
   color: inherit;
   text-decoration: underline;
}

footer a:is(:hover, :focus) {
   color: #4cbc38;
}

#innerfooter ul {
   padding: 0;
}

@media (max-width: 767px) {
   #innerfooter ul {
      margin-top: 20px;
   }
}
#innerfooter li {
   display: block;
}
@media (min-width: 576px) and (max-width: 991px) {
   #innerfooter li + li {
      margin-left: clamp(20px, 2vw, 35px);
   }
   #innerfooter li {
      display: inline-block;
   }
}

#innerfooter a {
   color: #ffffff;
   text-decoration: none;
}

#innerfooter a:is(:hover, :focus) {
   color: #4cbc38;
   text-decoration: none;
}
@media (min-width: 992px) {
   #innerfooter a {
      position: relative;
   }
   #innerfooter a::before {
      content: "";
      position: absolute;
      left: -10px;
      top: 50%;
      transform: translate(-200%, -50%);
      background: url(../img/aktiv-dart-horizontal.png);
      width: 53px;
      height: 14px;
      opacity: 0;
      transition: transform 200ms ease-out, opacity 150ms;
   }
   #innerfooter a:is(:hover, :focus)::before {
      transform: translate(-100%, -50%);
      opacity: 1;
   }
   #innerfooter li + li {
      margin-top: clamp(5px, 2vw, 10px);
   }

   footer .tab {
      padding-right: 50px;
   }
}

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

#vernetzt {
   display: inline-block;
   font-size: .875rem;
   color: #ffffff;
   line-height: 1.4;
   text-decoration: none;
}

#vernetzt span {
   display: block;
}

#vernetzt img {
   margin-bottom: 4px;
}

/* ------------------------------------------ contrast ------------------------------------------ */

:is(.contrast_dark, .contrast_dark_font) :is(main, #content),
.contrast_dark_font :is(main, #content),
:is(.contrast_dark, .contrast_dark_font) .slider-mask {
   background: none !important;
}

.contrast_dark_font #tabs2 .tab_link_mehr a::after {
   color: #000000 !important;
}

:is(.contrast_dark, .contrast_dark_font) :is(#contrast_style, #style) button + button {
   margin-left: 0 !important;
}
