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

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

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

a {
  color: #9c4002;
}

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

main a,
b,
strong {
  font-weight: 500;
}

main a {
  text-decoration: underline;
}

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

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

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

#logo {
  display: inline-block;
}

#logo img {
  display: block;
}

@media (max-width: 991px) {
  #logo {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  #logo img {
    max-width: 210px;
    width: 100%;
  }

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

@media (min-width: 992px) {
  #logo {
    margin-bottom: 30px;
  }
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
  nav.horizontally {
    background: #fff;
    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: #4d4b8a;
    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: #fff;
    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;
  }
}

/* menu desktop */

@media (min-width: 992px) {
  nav.horizontally {
    padding: 30px 0;
    transition: background 300ms linear, padding 300ms linear;
  }

  .is-sticky nav.horizontally {
    padding: 20px 0;
    background: #fff;
    border-bottom: 2px solid #4d4b8a;
  }

  .sticky-wrapper {
    z-index: auto;
  }

  .is-sticky.sticky-wrapper {
    z-index: 101;
  }

  nav.horizontally .navbar-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  nav.horizontally [class*="toplevel"]>ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }

  nav.horizontally [class*="secondlevel"]>ul {
    position: absolute;
    left: 100%;
    top: 0;
  }

  nav.horizontally .navbar-nav li :is([class*="toplevel"] > ul, [class*="secondlevel"] > ul) {
    display: block !important;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms linear;
  }

  nav.horizontally .navbar-nav li {
    position: relative;
  }

  nav.horizontally .navbar-nav li.open>ul {
    pointer-events: none !important;
    opacity: 0 !important;
    visibility: hidden;
  }

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

/* menu desktop */

@media (min-width: 992px) {
  nav.horizontally .navbar-nav {
    padding-right: 20px;
  }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
  font-family: "Roboto", sans-serif;
  color: #333333;
  font-weight: 500;
  text-align: left;
  padding: 13px 15px 11px 15px;
  position: relative;
  font-size: 1.1875rem;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  transition: border 300ms linear;
}

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

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

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

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

nav.horizontally a[class*="toplevel"]::before {
  content: "";
  position: absolute;
  display: block;
  left: 30px;
  top: 4px;
  width: 38px;
  height: 38px;
  border-radius: 100%;
  background-color: #fbfbdb;
  opacity: 0;
  transition: opacity 300ms linear;
  z-index: -1;
}

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

/* toplevel-over */

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

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

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
  background-color: #ffffff;
  box-shadow: 24px 9px 27px 0px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 24px 9px 27px 0px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 24px 9px 27px 0px rgba(0, 0, 0, 0.14);
}

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

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

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

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

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

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

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

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

/* secondlevel + thirdlevel */

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

@media (min-width: 992px) {
  nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    padding: 8px 30px;
  }
}

@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) {
  color: #4d4b8a;
}

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

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

@media (min-width: 1200px) {
  header::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    background: #77cb9c url("../img/tennisspieler-header.png") bottom 40px left 40px no-repeat;
    pointer-events: none;
    width: 407px;
  }
}

@media (max-width: 1199px) {
  header::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    background: #77cb9c;
    pointer-events: none;
    width: 100%;
  }
}

@media (min-width: 992px) {
  header::before {
    width: calc(50% + 414px);
  }
}

@media (min-width: 1200px) {
  header::before {
    width: calc(53.6% + 508px);
  }
}

:is(nav.horizontally, #headerpic)>.row>*:first-child {
  background: #fff;
}

nav.horizontally>.row>*:first-child>* {
  position: relative;
  z-index: 101;
  background-color: #fff;
  box-shadow: 0px 9px 27px 0px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0px 9px 27px 0px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 9px 27px 0px rgba(0, 0, 0, 0.14);
}

.is-sticky nav.horizontally>.row>*:first-child>* {
  box-shadow: 0px 9px 27px 0px rgba(0, 0, 0, 0);
  -webkit-box-shadow: 0px 9px 27px 0px rgba(0, 0, 0, 0);
  -moz-box-shadow: 0px 9px 27px 0px rgba(0, 0, 0, 0);
}

@media (min-width: 1200px) {
  nav.horizontally>.row>*:first-child>*::after {
    content: "";
    position: absolute;
    background: #fff;
    width: 365px;
    height: 74px;
    bottom: 0px;
    z-index: 0;
    pointer-events: none;
    right: -365px;
    display: block;
    box-shadow: 24px 9px 27px 0px rgba(0, 0, 0, 0.14);
    -webkit-box-shadow: 24px 9px 27px 0px rgba(0, 0, 0, 0.14);
    -moz-box-shadow: 24px 9px 27px 0px rgba(0, 0, 0, 0.14);
  }

  .is-sticky nav.horizontally>.row>*:first-child>*::after {
    display: none;
  }
}

#headerpic>.row>*:first-child>* {
  position: relative;
  z-index: 3;
}

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

/* header text */

#header-text {
  text-align: center;
  color: #282828;
  font-size: 1.25rem;
}

#header-text :is(h1, h2, h3, h4, h5, h6) {
  text-transform: uppercase;
  line-height: 0.8;
  font-weight: 700;
  font-size: clamp(1.375rem, 9vw, 1.75rem);
  margin-bottom: clamp(15px, 4vw, 25px);
  color: #282828;
  font-family: "Lora", sans-serif;
}

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

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

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

#slider {
  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  body.index #slider {
    height: 330px;
  }
}

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

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

#headerpic {
  padding: 4px 0 clamp(30px, 9vw, 156px) 0px;
  position: relative;
}

@media (max-width: 991px) {
  #headerpic {
    padding-top: clamp(20px, 6vw, 30px);
  }
}

.slider-mask {
  display: none;
}

.slider-wrapper,
.nivo-main-image,
#slider>a>div {
  height: 100% !important;
}

@media (min-width: 1200px) {
  .slider-wrapper {
    max-width: 665px;
    margin-left: auto;
    margin-right: -100px;
  }
}

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

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

#events {
  padding: clamp(30px, 10vw, 120px) 0 clamp(30px, 6vw, 95px) 0;
}

/* tab */

:is(#news, #events) .tab-img {
  position: relative;
  z-index: 1;
}

:is(#news, #events) .tab {
  font-size: 1rem;
  position: relative;
  z-index: 2;
  background: #f7f7b8;
  padding: clamp(15px, 3vw, 35px) clamp(15px, 3vw, 40px) clamp(15px, 3vw, 25px) clamp(15px, 3vw, 40px);
  box-shadow: 0px 9px 27px 0px rgba(0, 0, 0, 0.14);
  -webkit-box-shadow: 0px 9px 27px 0px rgba(0, 0, 0, 0.14);
  -moz-box-shadow: 0px 9px 27px 0px rgba(0, 0, 0, 0.14);
}

:is(#news, #events) .tab :is(h1, h2, h3, h4, h5, h6, a) {
  color: #424077;
  font-weight: 700;
  font-family: "Lora", sans-serif;
  font-size: 1.875rem;
  text-transform: uppercase;
}

:is(#news, #events) .tab-img .banner img {
  display: block;
}

@media (min-width: 576px) {
  #news .tab {
    margin-right: -30px;
  }

  #events .tab {
    margin-left: -30px;
  }
}

:is(#news, #events) .tab-img .banner {
  position: relative;
}

@media (min-width: 992px) {
  :is(#news, #events) .tab-img .banner {
    position: absolute;
    left: 15px;
    right: 15px;
  }

  #events .tab-img .banner {
    top: 50px;
    bottom: 60px;
  }

  :is(#news, #events) .tab-img .banner img {
    object-fit: cover;
    object-position: 50% 100%;
    width: 100%;
    height: 100%;
    margin: 0;
  }

  :is(#news, #events) .tab {
    display: inline-block;
  }

  #news .tab {
    margin: 100px -30px 0 30px;
  }

  #events .tab {
    margin: 0 30px 0 -100px;
  }
}

/* tabnews/tabevents */

:is(#news, #events) .tab-container {
  font-size: 1rem;
  border: clamp(4px, 1vw, 10px) solid #4d4b8a;
  background-color: #ffffff;
  padding: clamp(10px, 5vw, 75px) 30px 30px 0;
}

#events .tab-container {
  padding-left: 30px;
}

@media (min-width: 768px) {
  :is(#news, #events) .tab-container {
    margin-left: -115px;
    min-height: 400px;
  }

  #news .tab-container {
    padding-left: 115px;
  }

  #events .tab-container {
    padding-left: 85px;
    margin-top: -59px;
  }
}

@media (min-width: 992px) {
  #news .tab-container {
    padding-left: 135px;
  }

  #events .tab-container {
    padding-left: 105px;
    padding-right: 75px;
    padding-bottom: 35px;
  }

  #events #clr-events-hide {
    padding-left: 35px;
  }
}

@media (min-width: 1200px) {
  :is(#news, #events) .tab-container {
    margin-left: -215px;
  }

  #news .tab-container {
    padding-left: 235px;
  }

  #events .tab-container {
    padding-left: 205px;
  }
}

:is(#news, #events) .tab_link {
  padding-left: 30px;
}

:is(#news, #events) .tab_link_entry {
  border-bottom: none !important;
  position: relative;
  padding: clamp(20px, 4vw, 30px) 0;
}

#news .tab_link_entry {
  padding-top: calc(100px + clamp(15px, 4vw, 30px));
}

:is(#news, #events) .tab_link_entry+.tab_link_entry {
  border-top: 1px solid rgba(51, 51, 51, 0.35);
}

:is(#news, #events) .tab_link_entry .tab_link_title a {
  font-size: 1.25rem;
  line-height: 1.2;
  display: block;
  color: #333333;
  font-weight: 600;
}

#news .tab_link_entry .tab_link_title {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  #news .tab_link_entry .tab_link_title {
    margin-left: 100px;
    margin-bottom: 25px;
  }

  #news .tab_link_entry:not(:has(.tab_date)) .tab_link_title {
    margin-top: -74px;
    margin-bottom: 35px;
  }

  #news .tab_link_entry .tab_date {
    margin-top: -84px;
    margin-left: 100px;
  }
}

#events .tab_link_entry .tab_link_title {
  margin-bottom: 10px;
}

#events .tab_link_title a {
  color: #333333;
  font-size: 1.25rem;
  text-decoration: none;
}

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

#news .tab_link_entry .tab_link_title a::before {
  content: "";
  background: #f0f0f0 center / cover no-repeat;
}

#news .tab_link_entry .tab_preview_picture,
#news .tab_link_entry .tab_link_title a::before {
  display: block;
  overflow: hidden;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: absolute;
  top: clamp(20px, 4vw, 30px);
  left: 0;
}

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

#events .tab_link_mandat a,
#events .tiny_p {
  color: #4c4c4c;
  font-weight: 600;
}

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

@media (min-width: 992px) {
  :is(#news, #events) .button-design {
    margin-top: 10px;
  }
}

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

/* #region -------------------------------------- about us -------------------------------------- */

#about-us {
  font-size: 1rem;
}

@media (min-width: 992px) {
  #about-us {
    padding-right: clamp(15px, 3vw, 40px);
  }
}

#about-us :is(h1, h2) {
  color: #424077;
  margin-bottom: clamp(15px, 4vw, 40px);
  font-size: 1.875rem;
  text-transform: uppercase;
  font-weight: 700;
}

#about-us :is(b, strong, h3, h4, h5, h6) {
  color: #333333;
  font-size: 1.25rem;
  margin-bottom: 4px;
  display: block;
}

#about-us img {
  display: block;
  margin-bottom: 10px;
}

#about-us a {
  padding-right: 20px;
  display: inline-block;
  min-height: 20px;
  color: #4d4b8a;
  font-weight: 500;
}

#about-us a:not(.has-image)+a:not(.has-image) {
  margin-left: 10px;
}

/* #endregion ----------------------------------- about us -------------------------------------- */

/* #region ----------------------------------- deco stripes ------------------------------------- */

@media (min-width: 1200px) {

  :is(#news, #footer, #headerpic)>.row::before,
  #events .tab-img::before {
    content: "";
    display: block;
    width: 186px;
    height: 145px;
    position: absolute;
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 6%, rgba(255, 255, 255, 0) 6%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.35) 56%, rgba(255, 255, 255, 0) 56%, rgba(255, 255, 255, 0) 100%);
    background-size: 10px 10px;
    pointer-events: none;
  }
}

@media (max-width: 991px) {

  :is(#news, #footer, #headerpic)>.row::before,
  #events .tab-img::before {
    opacity: 0.5;
  }
}

#headerpic>.row::before {
  right: -25px;
  bottom: -220px;
}

#news>.row::before {
  left: -125px;
  bottom: 60%;
}

#events .tab-img::before {
  right: 15px;
  top: -50px;
}

#footer>.row::before {
  right: -15px;
  top: -60px;
}

/* #endregion -------------------------------- deco stripes ------------------------------------- */

/* #region ------------------------------------ deco words -------------------------------------- */

footer,
header {
  position: relative;
}

@media (min-width: 992px) {

  footer::after,
  header::after {
    color: rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: clamp(100px, 10vw, 150px);
    line-height: 0;
    position: absolute;
    right: 0;
    width: clamp(60px, 7vw, 100px);
  }


}

@media (min-width: 1200px) {
  footer::after {
    content: "";
    position: absolute;
    background: url(../img/tennisspieler-footer.png) no-repeat;
    width: 287px;
    height: 607px;
    bottom: 10px;
    z-index: 0;
    pointer-events: none;
    right: 30px;
    display: block;
  }
}

/* #endregion --------------------------------- deco words -------------------------------------- */

/* #region ------------------------------------- resp gaps -------------------------------------- */

:is(#footer-bg, #footer2-bg, #news, #events)>.row {
  row-gap: 30px;
}

#headerpic>.row> :first-child>.row {
  row-gap: clamp(50px, 6vw, 62px);
}

/* #endregion ---------------------------------- resp gaps -------------------------------------- */

/* #region --------------------------------------- buttons -------------------------------------- */

.button-design a:not(.has-image) {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  color: #13132c;
  font-size: 1.25rem;
  font-weight: 500;
  background: #ffffff;
  padding: 9px 20px 9px 20px;
  text-decoration: none;
  border-radius: 20px;
}

#header-text.button-design a:not(.has-image) {
  color: #1a1a1a;
  background: #ffffff;
  margin-top: clamp(5px, 2vw, 15px);
}

:is(.button-design, #header-text.button-design) :is(a:not(.has-image):hover, a:not(.has-image):focus) {
  color: #ffffff;
  background: #4d4b8a;
}

.button-design a:not(.has-image)+a:not(.has-image) {
  margin-left: clamp(10px, 2vw, 25px);
}

#events .tab_link_mehr a {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
  background: #4d4b8a;
  padding: 10px 25px 10px 25px;
  text-decoration: none;
  border-radius: 20px;
}

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

#events .tab_link_mehr a:is(:hover, :focus) {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 400;
  background: #9c4002;
  padding: 10px 25px 10px 25px;
  text-decoration: none;
  border-radius: 20px;
}

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

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

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

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

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

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

h2,
.h2,
.legacy_h2 {
  font-size: clamp(2.125rem, 4.5vw, 3.125rem);
}

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

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

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

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

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

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

footer {
  font-size: 1rem;
}

#footer-bg,
#footer2-bg {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

:is(#footer-bg, #footer2-bg)::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

@media (min-width: 576px) {
  :is(#footer-bg, #footer2-bg)::after {
    left: clamp(-365px, -19vw, -15px);
  }
}

#footer-bg,
#footer-bg::after {
  background: #f7f7b8;
  color: #4c4c4c;
}

#footer2-bg,
#footer2-bg::after {
  background: #77cb9c;
}

#footer2-bg {
  padding-top: 10px;
  padding-bottom: 10px;
}

:is(#footer-bg, #footer2-bg) :is(h1, h2, h3, h4, h5, h6) {
  color: #424077;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 3px;
}

.footer-headline {
  padding-top: clamp(55px, 8vw, 70px);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 48px auto;
}

@media (min-width: 768px) {
  .footer-headline {
    background-position-x: -4px;
  }
}

:is(#footer-bg, #footer2-bg) a {
  color: #bc3838;
}

#footer-bg a {
  padding: 2px 6px;
  text-decoration: underline;
  margin: 0 -6px;
}

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



@media (min-width: 576px) {
  #maps {
    padding-right: 0 !important;
  }
}

#maps iframe,
#maps .iframe-wrapper-manual-enabling {
  display: block;
  width: 100%;
}

#maps .iframe-wrapper-manual-enabling {
  min-width: 100% !important;
}

/* ----------------------------------------------- @5f footer ----------------------------------------------- */

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

@media (max-width: 767px) {
  #innerfooter {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

#innerfooter ul {
  padding: 0;
}

#innerfooter li {
  display: inline-block;
}

#innerfooter a {
  color: #333333 !important;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}

#innerfooter a:hover,
#innerfooter a:focus {
  text-decoration: underline;
  color: #403e74 !important;
}

#innerfooter li+li::before {
  content: "";
  margin: 0 6px;
}

@media (min-width: 992px) {
  #innerfooter li+li::before {
    margin: 0 15px;
  }
}

@media (max-width: 767px) {
  #innerfooter li {
    display: block;
    text-align: center;
    padding: 5px;
    margin: 0;
  }

  #innerfooter li+li::before {
    display: none;
  }
}

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

/* #region -------------------------------------- vernetzt -------------------------------------- */

#vernetzt {
  gap: 22px;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.3;
  margin: 0;
  font-weight: 400;
  text-decoration: none;
  color: #333333 !important;
}

#vernetzt strong {
  color: #403e74;
  font-weight: 700;
}

#vernetzt span {
  display: block;
}

/* #endregion -------------------------------- vernetzt ----------------------------------------- */