@import url("https://fonts.verwaltungsportal.de/import/?family=Nunito:300,400,500,600,700,800,300i,400i,500i,600i,700i,800i");
@import url("https://fonts.verwaltungsportal.de/import/?family=Oswald:300,400,500,600,700,300i,400i,500i,600i,700i");

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

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

a {
  color: #3d7b62;
}

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

:is(main, #header-text) a,
b,
strong {
  font-weight: 500;
}

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

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

#logo {
  display: inline-block;
  padding: 4px;
}

#logo img {
  display: block;
}

@media (max-width: 575px) {
  #logo {
    margin-top: 15px;
  }

  #logo img {
    max-width: 150px;
  }

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

@media (min-width: 576px) {
  #logo {
    position: absolute;
    left: 15px;
    top: -80px;
    max-width: 170px;
    display: flex;
    align-content: end;
    align-items: end;
    justify-content: center;
    transition: bottom 200ms linear;
  }

  #logo img {
    max-height: 163px;
  }
}

@media (min-width: 992px) {
  #logo {
    max-width: 100%;
    top: -73px;
    margin-left: -25px;
  }

  .is-sticky #logo {
    bottom: -20px;
  }

  #logo img {
    transition: max-height 200ms linear;
    max-height: 100%;
    max-width: 100% !important;
  }
  #logo {
    max-width: 100%;
  }

  .is-sticky #logo img {
    max-height: 90px;
  }

  #logo-col {
    position: static;
  }
}

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

/* #region -------------------------------------- topbar ---------------------------------------- */

#topbar {
  padding: 35px 0;
  font-size: 1rem;
  line-height: 1;
}

/* #endregion ----------------------------------- topbar ---------------------------------------- */

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

/* burgermenu for tablet */

@media (max-width: 991px) {
  .sticky-wrapper {
    height: auto !important;
  }

  nav.horizontally {
    position: static !important;
  }

  #burgerButton {
    font-size: 0;
    border: none !important;
    display: block;
    height: 50px;
    width: 60px;
    border-radius: 2px;
    padding: 6px 8px;
    cursor: pointer;
    background-color: #ffffff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
  }

  #burgerButton::before,
  #burgerButton::after,
  #burgerButtonInner {
    background-color: #3d7b62;
    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: #3d7b62;
    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: 11px;
  }

  .dropdown-toggle-button-wrapper2 {
    top: 1px;
    right: -10px;
  }
}

/* menu desktop */

@media (min-width: 992px) {
  nav.horizontally {
    position: relative;
    z-index: 10;
    transition: background 300ms linear, padding 300ms linear;
  }

  .is-sticky nav.horizontally {
    background: #3d7b62;
    border-bottom: 1px solid #ffffff;
  }

  nav.horizontally .navbar-nav {
    position: relative;
    padding-top: 38px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .is-sticky nav.horizontally .navbar-nav {
    padding-top: 20px;
  }

  .is-sticky .navbar-nav {
    margin-bottom: -1px;
  }

  nav.horizontally .navbar-nav::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: clamp(-275px, -15vw, -15px);
    height: 1px;
    background: #ffffff;
  }

  nav.horizontally :is([class*="toplevel"], [class*="secondlevel"]) > ul {
    display: block !important;
  }

  nav.horizontally .navbar-nav li[class*="toplevel"] > ul {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms linear;
  }

  nav.horizontally .navbar-nav > li:is(.open, :hover) > ul,
  nav.horizontally .navbar-nav > li.open:focus-within > ul {
    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;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  nav.horizontally .navbar-nav {
    padding-left: 30px;
  }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
  font-family: "Nunito", sans-serif;
  color: #ffffff;
  font-weight: 800;
  text-align: left;
  padding: 14px 15px;
  position: relative;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.2;
  text-decoration: none;
  transition: border 300ms linear;
}

@media (max-width: 991px) {
  nav.horizontally li[class*="toplevel"] + li {
    margin-top: 1px;
  }

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

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

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

  nav.horizontally a[class*="toplevel"].dropdown-toggle::before {
    content: "";
    display: block;
    position: absolute;
    left: calc(50% - 13px);
    bottom: -20px;
    width: 26px;
    height: 10px;
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    background: #ffffff;
    pointer-events: none;
    opacity: 0;
    transition: opacity 300ms linear;
  }
}

nav.horizontally a[class*="toplevel"]::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  height: 4px;
  width: 0;
  background: #60b08d;
  transform: translateX(-50%);
  transition: width 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 {
  width: 100%;
}

@media (min-width: 992px) {
  nav.horizontally li[class*="toplevel"]:hover > a.dropdown-toggle::before,
  nav.horizontally li[class*="toplevel"].open > a.dropdown-toggle::before,
  nav.horizontally li[class*="toplevel"].open > a.dropdown-toggle:is(:hover, :focus)::before {
    opacity: 1;
  }
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] > ul {
  background-color: #ffffff;
  padding: 15px;
}

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

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

  nav.horizontally [class*="toplevel"] > ul {
    min-height: 200px;
    background: #fff linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4) 1px, rgba(255, 255, 255, 0) 1px) 210px 30px / 1px calc(100% - 60px) no-repeat;
    column-count: 2;
    column-gap: 0;
    padding: 40px 80px 40px 240px;
    left: 0;
    right: 0;
    box-shadow: 0 15px 15px 0 rgba(0, 0, 0, 0.15);
  }

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

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

  nav.horizontally [class*="toplevel"] > ul::after {
    top: 30px;
    left: 30px;
    bottom: 30px;
    width: 150px;
    background: #1c451e;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
  }

  nav.horizontally li[class*="secondlevel"] {
    padding-left: 30px;
    padding-right: 30px;
    display: table;
    width: 100%;
    margin-bottom: 6px;
  }
}

/* secondlevel + thirdlevel */

nav.horizontally a[class*="secondlevel"] {
  font-weight: 500;
  padding: 8px 0;
}

nav.horizontally a[class*="thirdlevel"] {
  font-weight: 400;
  padding: 6px 0 6px 12px;
}

nav.horizontally a[class*="thirdlevel"]::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 6px;
}

nav.horizontally a:is([class*="secondlevel"]) {
  color: #333333;
  text-align: left;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  position: relative;
  font-weight: 700;
}
nav.horizontally a:is([class*="thirdlevel"]) {
  color: #333333;
  text-align: left;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  position: relative;
  font-weight: 400;
}

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

/* 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) {
  color: #3d7b62;
}

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

/* #region ------------------------------- max-width + resp-gaps -------------------------------- */

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

#teams .row {
  row-gap: 20px;
}

/* #endregion ---------------------------- max-width + resp-gaps -------------------------------- */

/* #region -------------------------------------- header ---------------------------------------- */

#headerpic {
  background: #3d7b62;
  position: relative;
}

/* header text */

#header-text {
  line-height: 1.4;
  position: relative;
  z-index: 10;
  padding: 60px 0 clamp(60px, 8vw, 124px) 0;
  padding-top: 60px;
  font-size: clamp(1rem, 3vw, 1.625rem);
  margin-top: -10px;
}

#header-text a {
  text-decoration: underline;
}

@media (min-width: 576px) {
  #header-text {
    padding-top: clamp(110px, 13vw, 202px);
  }
}

#header-text,
#header-text :is(h1, h2, h3, h4, h5, h6, a) {
  color: #ffffff;
}

#header-text :is(h1, h2, h3, h4, h5, h6) {
  text-transform: uppercase;
  font-size: clamp(2.25rem, 7vw, 5rem);
  margin-bottom: clamp(15px, 4vw, 32px);
  text-shadow: 15px 15px 15px rgba(0, 0, 0, 0.2);
  font-family: "Oswald", sans-serif;
}

#header-text :is(b, strong) {
  font-weight: normal;
  display: block;
  font-size: clamp(1.25rem, 4vw, 2.375rem);
  margin-bottom: clamp(10px, 4vw, 24px);
  font-family: "Nunito", sans-serif;
}

body:not(.index) #header-text p {
  display: none;
}

@media (min-width: 992px) {
  body.index #header-text > article {
    opacity: 0;
    transform: translate(-100px, -100px);
    animation: showHeaderText 500ms linear 300ms 1 normal forwards;
  }
}

@keyframes showHeaderText {
  0% {
    opacity: 0;
    transform: translate(-100px, -100px);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

#header-text::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -130px;
  left: 44%;
  bottom: 40px;
  width: 100%;
  max-width: 440px;
  background: url("../img/fussballer.png") center left / auto 100% no-repeat;
}

@media (min-width: 576px) {
  #header-text::after {
    top: 55px;
    left: 54%;
    max-width: 70vw;
    bottom: -55px;
  }

  body.index #header-text.has-info-tab::after {
    bottom: -90px;
  }
}

@media (min-width: 992px) {
  body.index #header-text::after {
    transform: translate(100px, 100px);
    opacity: 0;
    animation: showFigure 500ms linear 300ms 1 normal forwards;
  }
}

@media (min-width: 1200px) {
  #header-text::after {
    right: 15px;
    left: auto;
    width: 100%;
    max-width: 741px;
    background-size: contain;
    background-position: center right;
  }

  body.index #header-text.has-info-tab::after {
    right: -201px;
    bottom: -294px;
    max-width: 929px;
  }
}

@keyframes showFigure {
  0% {
    opacity: 0;
    transform: translate(100px, 100px);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

/* info tab */

#info-tab {
  position: relative;
  z-index: 1;
  padding: 12px 0 0 clamp(15px, 4vw, 30px);
  border-left: 4px solid #60b08d;
  box-shadow: -25px 25px 25px 0 rgba(0, 0, 0, 0.08);
  margin-top: clamp(40px, 6vw, 60px);
}

#info-tab :is(h1, h2, #info-headline) {
  color: #3d7b62;
  font-size: clamp(1.5625rem, 7vw, 1.875rem);
  margin-bottom: 6px;
  font-family: "Nunito", sans-serif;
  font-weight: 800;
}

#info-tab :is(h3, h4, h5, h6) {
  color: #1a1a1a;
  font-size: clamp(2.25rem, 7vw, 3.125rem);
  margin-bottom: clamp(28px, 4vw, 35px);
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}

#info-tab a:not(.has-image) {
  margin-bottom: -1px;
}

/* #endregion ----------------------------------- header ---------------------------------------- */

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

#slider {
  height: 100%;
  overflow: hidden;
}

@media (max-width: 1199px) {
  #headerpic :is(a.nivo-prevNav, a.nivo-nextNav) {
    display: none;
  }
}

@media (min-width: 992px) {
  #headerpic a.nivo-prevNav {
    left: 30px;
  }

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

#headerpic .nivo-main-image {
  min-height: 100% !important;
}

#headerpic .nivo-controlNav {
  bottom: 8px;
}

#headerpic .slider-mask {
  display: block;
  background: linear-gradient(to bottom, #1c451e, rgba(61, 123, 98, 0.7));
}

.slider-wrapper {
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

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

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

#content-area {
  position: relative;
  text-align: left;
  padding: clamp(40px, 6vw, 70px) 0 clamp(40px, 10vw, 120px) 0;
}

body.index #content-area::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  left: 0;
  right: 0;
  top: 0;
  bottom: -220px;
  background: url("../img/platzmarkierung.png") center bottom / 100% auto no-repeat;
}

#content-area > * {
  position: relative;
  z-index: 10;
}

/* #region --------------------------------------- news ----------------------------------------- */

#news {
  padding: clamp(40px, 6vw, 70px) 0;
  position: relative;
  z-index: 1;
  background-color: #3d7b62;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 576px) {
  #news {
    padding-bottom: 0;
  }

  #news .button-design {
    margin-bottom: clamp(30px, 6vw, 60px);
  }
}

@media (max-width: 767px) {
  #news {
    background-image: none !important;
  }

  #news .button-design {
    margin-top: clamp(30px, 6vw, 60px);
  }
}

#news .tab {
  padding-bottom: clamp(30px, 4vw, 36px);
}

#news,
#news :is(h1, h2, h3, h4, h5, h6, a:not(.more-link)) {
  color: #ffffff;
}

#news .news-headline {
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 32px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.25rem, 6vw, 3.125rem);
}

#news .tab_link_entries {
  display: flex;
}

@media (max-width: 575px) {
  #news .tab_link_entries {
    flex-wrap: wrap;
  }
}

#news .tab_link_entry {
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background: #31624e;
  padding: clamp(215px, 12vw, 240px) clamp(15px, 4vw, 30px) clamp(30px, 4vw, 55px) clamp(15px, 4vw, 30px);
  display: flex;
  flex-direction: column;
  border: none !important;
}

#news .tab_link_entry::after,
#news .tab_link_entry + .tab_link_entry::before {
  content: "";
  display: block;
  position: absolute;
}

#news .tab_link_entry::after {
  top: 20px;
  right: 20px;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  pointer-events: none;
  background: #ffffff url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M7 42q-1.25 0-2.125-.875T4 39V6l3.35 3.35L10.65 6 14 9.35 17.35 6l3.3 3.35L24 6l3.35 3.35L30.65 6 34 9.35 37.35 6l3.3 3.35L44 6v33q0 1.25-.875 2.125T41 42Zm0-3h15.5V25H7v14Zm18.5 0H41v-5.5H25.5Zm0-8.5H41V25H25.5ZM7 22h34v-6H7Z' fill='%233d7b62'/%3E%3C/svg%3E") center / 25px auto no-repeat;
}

@media (min-width: 576px) {
  #news .tab_link_entry {
    width: 50%;
  }

  #news .tab_link_entry + .tab_link_entry::before {
    top: 220px;
    left: 0;
    width: 1px;
    bottom: 30px;
    background: rgba(255, 255, 255, 0.3);
    max-height: 133px;
  }

  #news .tab_link_entry:first-child .tab_preview_picture img,
  #news .tab_link_entry:first-child::before {
    width: calc(100% - 1px);
  }
}

#news .tab_link_entry .tab_preview_picture,
#news .tab_link_entry::before {
  height: 190px;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  overflow: hidden;
  position: absolute;
}

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

#news .tab_link_entry::before {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #c8c8c8;
}

#news .tab_link_title {
  line-height: 1.2;
  font-size: clamp(1.125rem, 0.5rem, 1.25rem);
  order: 1;
  color: #ffffff;
  font-weight: 500;
}

#news .tab_link_title a:not(:hover):not(:focus) {
  text-decoration: none;
}

#news .tab_date {
  font-size: 1rem;
  margin-bottom: 10px;
  order: 2;
  font-weight: 400;
}

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

/* #endregion ------------------------------------ news ----------------------------------------- */
/* ----------------------------------------------- @19ev events -------------------------------------------- */
#ev19 {
  position: relative;
  padding-top: 90px;
  padding-bottom: 60px;
}

@media (max-width: 767px) {
  #ev19 {
    padding-top: 40px;
    padding-bottom: 130px;
  }
}

#ev19 > .row::before {
  content: "";
  position: absolute;
  left: 13px;
  top: -92px;
  width: 470px;
  height: 470px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

@media (max-width: 1199px) {
  #ev19 > .row::before {
    width: 370px;
    height: 370px;
  }
}

@media (max-width: 767px) {
  #ev19 > .row::before {
    bottom: -92px;
    top: unset;
  }
}

#ev19 .ev19Box {
  position: relative;
}

@media (min-width: 1200px) {
  #ev19 .ev19Box {
    margin-left: -47px;
  }
}

#eventsHeadline {
  text-transform: uppercase;
  position: relative;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  color: #3d7b62;
  font-weight: 600;
  line-height: 0.8;
  margin: 0px 0px 2px -58px;
}

@media (max-width: 767px) {
  #eventsHeadline {
    margin: 0px 0px 4px 0px;
  }
}

#EventsDekoHeadline {
  position: relative;
  text-transform: uppercase;
  color: #3d7b62;
  font-weight: 600;
  line-height: 0.8;
  font-size: clamp(1.75rem, 4vw, 3.75rem);
  margin: 0;
  z-index: 0;
}

#eventsBox {
  padding: 80px 70px 25px 100px;
  background-color: #f6f7f8;
  margin-top: -5px;
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  #eventsBox {
    padding: 30px 30px 35px 30px;
    margin-top: -2px;
  }
}

#eventsKalender #clr-events-hide,
#eventsKalender .tab_link_mehr {
  display: none;
  height: 0;
}

#eventsKalender .eventclndr-tab {
  margin-bottom: 0;
  margin-top: 16px;
}

@media (max-width: 767px) {
  #eventsKalender .eventclndr-tab {
    margin-top: 0;
    margin-bottom: 15px;
  }
}

#eventsList {
  position: relative;
  color: #444444;
  font-size: clamp(1rem, 2vw, 1.125rem);
}

#eventsList .tab_spacer {
  height: 0;
  display: none;
}

#eventsList .tab_link_entries {
  display: grid;
  gap: clamp(20px, 2vw, 30px);
}

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

#eventsList .tab_link_mandat a {
  color: #444444;
  text-decoration: none;
}

#eventsList .tab_link_mehr {
  font-size: 0;
  position: relative;
  text-align: left !important;
}

#eventsList .tab_link_mehr a {
  margin-top: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
  font-size: 1rem;
  color: #fff;
  padding: 8px 20px;
  background-color: #3d7b62;
  font-weight: 400;
}

#eventsList .tab_link_mehr a:hover,
#eventsList .tab_link_mehr a:focus {
  background-color: #31624e;
}

#ev19-bg {
  padding-top: 120px;
  padding-bottom: 75px;
}

@media (min-width: 992px) {
  #ev19-bg {
    min-height: 430px;
    position: relative;
    z-index: 0;
  }

  #ev19-bg::before,
  #ev19-bg::after {
    content: "";
    display: block;
    position: absolute;
    pointer-events: none;
    background-repeat: no-repeat;
  }

  #ev19-bg::before {
    bottom: 150px;
    left: 0;
    background-image: url("../img/fussball-netz.png");
    width: 300px;
    height: 695px;
    z-index: -1;
  }

  #ev19-bg::after {
    top: -136px;
    right: 0px;
    background-image: url("../img/klee.png");
    width: 352px;
    height: 671px;
    z-index: -1;
  }

  #ev19 {
    z-index: 0;
  }
  #ev19 > .row {
    position: relative;
  }

  #ev19 > .row::after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: -30px;
    bottom: -30px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    filter: blur(15px) brightness(1.1) grayscale(0.5);
  }
}

#breaker {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 208px 0;
  position: relative;
  background-color: rgba(0, 0, 0, 0.08);
}
#breaker::before {
  content: "";
  position: absolute;
  background: url(../img/footer-bogen.png) top -1px center / 100% auto no-repeat;
  z-index: 0;
  pointer-events: none;
  left: 0;
  right: 0;
  display: block;
  z-index: 1;
  top: 0;
  bottom: 0;
}
/* #region --------------------------------------- buttons -------------------------------------- */

.button-design a:not(.has-image) {
  display: inline-block;
  line-height: 1.2;
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 500;
  background: #60b08d;
  padding: 14px 60px 14px 20px;
  position: relative;
  text-decoration: none;
  transition: transform 200ms linear, filter 200ms linear;
  text-decoration: none;
}

@media (min-width: 992px) {
  .button-design a:not(.has-image) {
    font-size: 1.125rem;
  }
}

#tabs .button-design a:not(.has-image) {
  margin-top: clamp(5px, 1vw, 20px);
}

.button-design a:not(.has-image):is(:hover, :focus) {
  z-index: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 15px 10px rgba(0, 0, 0, 0.15));
}

.button-design.button-design-2 a:not(.has-image) {
  color: #ffffff;
  background: #3d7b62;
  text-transform: uppercase;
  padding-right: 80px;
  text-decoration: none !important;
}

.button-design a:not(.has-image)::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  background: #c8c8c8 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11px' height='12px'%3E%3Cpath d='M0.942,11.636 L5.320,6.488 L5.320,5.256 L0.942,0.108 L0.942,3.540 L3.230,5.850 L0.942,8.204 L0.942,11.636 ZM5.694,11.636 L10.072,6.488 L10.072,5.256 L5.694,0.108 L5.694,3.540 L7.982,5.850 L5.694,8.204 L5.694,11.636 Z' fill='%231a1a1a'/%3E%3C/svg%3E") center / 12px auto no-repeat;
}

.button-design.button-design-2 a:not(.has-image)::after {
  width: 60px;
  background: rgba(0, 0, 0, 0.2) url("../img/icon-fussball.png") center / 30px auto no-repeat;
}

/* #endregion ------------------------------------ buttons -------------------------------------- */

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

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

h1,
.h1,
.legacy_h1 {
  font-size: clamp(2.25rem, 6vw, 3.125rem);
  margin-bottom: clamp(15px, 4vw, 40px);
}

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

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

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

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

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

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

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

#searchbar {
  background: #f0f0f0;
  color: #444444;
  padding: 20px 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

#searchbar > .row {
  row-gap: 20px;
}

#searchbar a {
  color: #444444;
  text-decoration: underline;
}

#search {
  background: #3d7b62;
  display: flex;
}

#search_input {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  font-style: normal;
  background: transparent;
  font-weight: 300;
  border: 0;
  width: 100%;
  padding: 11px 15px;
}

@media (min-width: 768px) {
  #search_input {
    font-size: 1.125rem;
  }
}

#search_submit {
  width: 55px;
  flex-shrink: 0;
  font-size: 0;
  background: url("../img/lupe-icon.png") center no-repeat;
  padding: 0;
  cursor: pointer;
  border: none;
  transition: background-color 300ms linear;
}

#search_submit:is(:hover, :focus) {
  background-color: rgba(0, 0, 0, 0.2);
}

#search input::placeholder {
  color: rgba(255, 255, 255, 0.9) !important;
  opacity: 1 !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

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

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

#footer {
  color: #fff;
  background-color: #3d7b62;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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

#footer > .row:first-child {
  row-gap: 30px;
  padding: 40px 0 30px 0;
}

#footer > .row:first-child a {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #footer > .row:last-child {
    padding: 20px 0 25px 0;
  }
}

#footer .footerHeadline {
  color: #fff;
  font-size: 1.5625rem;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  margin-bottom: 5px;
}

#footer hr {
  margin: 0 auto;
  max-width: 1170px;
  height: 2px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.2);
  border: unset;
}

#innerfooter ul {
  padding: 0;
}

#innerfooter a {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  font-weight: 400;
  font-size: 1rem;
  padding: clamp(6px, 4vw, 36px) 10px;
}

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

#innerfooter a:is(:hover, :focus) {
  background: #31624e;
}

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

#vernetzt {
  gap: 12px;
  text-align: right;
  font-size: 0.9375rem;
  color: #fff;
  line-height: 1.4;
  text-decoration: none;
}
#vernetzt :is(b, strong) {
  font-weight: 700;
}

@media (max-width: 767px) {
  #vernetzt {
    margin-top: 20px;
  }
}

#vernetzt span span {
  display: block;
}
