@import url("https://fonts.verwaltungsportal.de/import/?family=Jost:300,300i,400,400i,600,600i");
@import url("https://fonts.verwaltungsportal.de/import/?family=DM+Sans:400,600,700,400i,600i,700i");
@import url("https://fonts.verwaltungsportal.de/import/?family=Maven+Pro:300,400,500,600,700,300i,400i,500i,600i,700i");
html {
  max-width: 1930px;
  margin-left: auto;
  margin-right: auto;
  background: #e5e5e5;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scrollbar-color: #0f5b8d #ffffff;
  scrollbar-width: thin;
}

body {
  font-family: "Maven Pro", sans-serif;
  font-weight: 400;
  color: #2a2a2a;
  background: #ffffff;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  /* 1rem = 16px */
  line-height: 1.5;
}

a {
  color: #0f5b8d;
}

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

#content a,
b,
strong {
  font-weight: 600;
}

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

@media (min-width: 1200px) {
  .row,
  .compact,
  ._op-container .container {
    width: 100%;
    max-width: 1600px;
  }
}

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

#logo {
  display: inline-block;
}

#logo img {
  display: block;
}

#logo :is(h1, h2, h3, h4, h5, h6) {
  color: #2a2a2a;
}

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

/* -------------------------------------------- @nav1 Navigation ------------------------------------------- */

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

#logo {
  display: inline-block;
  text-decoration: none;
}

#logo .logoWord h2 {
  font-size: 1.625rem;
  margin: 0;
  margin-left: 10px;
}

@media (max-width: 575px) {
  #logo .logoWord h2 {
    font-size: 1.125rem;
    margin-left: 0px;
    hyphens: auto;
  }
}
/* --------------------------------------- navigation --------------------------------------- */

/* burgermenu for tablet */

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

  #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: #0f5b8d;
    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: #1aa4e0;
    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: #1aa4e0;
    -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 {
    right: 0;
    margin: 0 auto;
    width: 100% !important;
  }

  nav.horizontally .navbar-nav {
    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: #2a2a2a;
  font-weight: 400;
  text-align: left;
  padding: 15px 35px 15px 15px;
  position: relative;
  font-size: 1.25rem;
  text-transform: uppercase;
  line-height: 1.2;
  text-decoration: none;
}

.navbar-default .navbar-nav > li:last-child > a {
  font-size: 0;
  background: url("../img/icon-search-v2.png") center no-repeat;
  padding: 0;
  height: 94px;
  width: 100%;
  min-width: 27px;
}

@media (max-width: 991px) {
  .navbar-default .navbar-nav > li {
    border-bottom: 1px solid rgba(68, 68, 68, 0.2);
  }
  .navbar-default .navbar-nav > li > a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
  }
}

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

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

.navbar-default .navbar-nav > li > a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  bottom: 0;
  height: 6px;
  left: 50%;
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #a4ddf5;
  -webkit-transition: width 300ms linear;
  -moz-transition: width 300ms linear;
  -ms-transition: width 300ms linear;
  -o-transition: width 300ms linear;
  transition: width 300ms linear;
}

@media (min-width: 992px) {
  .navbar-default .navbar-nav > li > a::after {
    top: 0;
    bottom: auto;
  }
}

/* -------------------------------------------- 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: #0c5c82;
}

.navbar-nav > li:focus-within > a {
  color: #0c5c82;
}

.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 {
  width: 100%;
}

.navbar-nav > li:focus-within > a::after {
  width: 100%;
}

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

.navbar-default .navbar-nav > li > .dropdown-menu,
.navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
  background: #ffffff;
  border-top: solid 6px #a4ddf5;
  box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 5px 12px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 5px 12px 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,
  .navbar-default .navbar-nav > li > .dropdown-menu > li > .dropdown-menu {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
  }
}

@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 > 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: #2a2a2a;
  font-weight: 400;
  text-align: left;
  padding: 8px 25px;
  font-size: 1.125rem;
  line-height: 1.2;
  text-decoration: none;
}

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

/* ------------------------------------------ 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: #1aa4e0;
}

.navbar-nav > li > .dropdown-menu > li:focus-within > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:focus-within > a {
  background: #1aa4e0;
}

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

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

.index #slider {
  max-height: clamp(300px, 22vw, 345px);
  position: relative;
}

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

@media (min-width: 992px) {
  #headerpic {
    background: #21242a;
  }
}

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

.slider-mask {
  display: none;
}

@media (min-width: 992px) {
  /* banner arrows */

  #headerpic .nivo-directionNav a {
    background: #ffffff;
    width: 60px;
    height: 48px;
    transform: skewX(-25deg);
    transition:
      width 300ms linear,
      opacity 300ms linear,
      background 300ms linear;
  }

  #headerpic:is(:hover, :focus-within) .nivo-directionNav a {
    width: 100px;
  }

  #headerpic .nivo-directionNav a:is(:hover, :focus) {
    background: #21242a;
  }

  #headerpic .nivo-directionNav a::before,
  #headerpic .nivo-directionNav a::after {
    content: "";
    display: block;
    position: absolute;
  }

  #headerpic .nivo-directionNav a::before {
    height: 2px;
    width: 16px;
    right: 16px;
    top: 50%;
    margin-top: -1px;
    background: #21242a;
    transition: background 300ms linear;
  }

  #headerpic .nivo-directionNav a:is(:hover, :focus)::before {
    background: #ffffff;
  }

  #headerpic .nivo-directionNav a::after {
    height: 8px;
    width: 8px;
    top: 50%;
    margin-top: -5px;
    right: 22px;
    border-left: 2px solid #21242a;
    border-bottom: 2px solid #21242a;
    transform: rotate(45deg);
    transition: border-color 300ms linear;
  }

  #headerpic .nivo-directionNav a:is(:hover, :focus)::after {
    border-color: #ffffff;
  }

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

  #headerpic a.nivo-nextNav {
    right: -11px;
    transform: scaleX(-1) skewX(25deg);
  }

  /* banner dots */

  #headerpic .nivo-controlNav {
    font-size: 0;
    max-width: 992px;
    text-align: right;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
  }

  #headerpic .nivo-controlNav li {
    width: auto;
  }

  #headerpic .nivo-controlNav :is(a, button) {
    position: relative;
    background: #ffffff !important;
    opacity: 0.4;
    margin: 0;
    height: 5px;
    width: 30px;
    padding: 0 !important;
    transition: opacity 300ms linear;
  }

  #headerpic .nivo-controlNav :is(a, button) ::before {
    content: "";
    display: block;
    position: absolute;
    top: -15px;
    right: 0;
    bottom: -15px;
    left: 0;
  }

  #headerpic .nivo-controlNav :is(a, button):is(.active, :hover, :focus),
  #headerpic .nivo-controlNav .slick-active :is(a, button) {
    opacity: 1;
  }
}

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

#banneroverlay {
  position: relative;
}

@media (min-width: 992px) {
  #banneroverlay {
    position: absolute;
    bottom: 30px;
    width: 100%;
    z-index: 55;
  }
}

.slogan {
  font-size: clamp(1rem, 3vw, 1.75rem);
  color: #0f5b8d;
  font-weight: 700;
  font-style: italic;
  position: relative;
  padding: 20px 200px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 15%, rgba(255, 255, 255, 0.8) 85%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.sloganInner {
  position: relative;
  padding-left: 150px;
}

.sloganInner::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 130px;
  height: 134px;
  background: url("../img/logo-turnverein-mundelsheim.png") no-repeat;
}

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

/* -------------------------------------------- overlay ----------------------------------------- */

#overlay {
  font-weight: 600;
  font-style: italic;
  font-size: clamp(1rem, 2.4vw, 1.5rem);
}

#overlay :is(h1, h2, h3) {
  text-transform: uppercase;
}

@media (min-width: 1200px) {
  #overlay::after {
    content: "";
    pointer-events: none;
    background: url(../img/transparent-logo.png) no-repeat top left;
    width: 370px;
    height: 380px;
    position: absolute;
    left: -44.8px;
    top: -66.8px;
    display: block;
  }
}

@media (max-width: 991px) {
  #overlay {
    padding-top: 25px;
    padding-bottom: 20px;
  }
}

@media (min-width: 992px) {
  #overlay {
    color: #ffffff;
    position: absolute;
    z-index: 60;
    right: 0;
    bottom: 100px;
    left: 0;
  }
}

#overlay :is(h1, h2, h3, h4, h5, h6) {
  line-height: 1.1;
}

@media (min-width: 992px) {
  #overlay :is(h1, h2, h3, h4, h5, h6) {
    color: #ffffff;
    hyphens: auto;
  }

  #overlay p:first-of-type {
    padding-left: 15px;
  }
}

#overlay h2 {
  font-size: clamp(1.875rem, 6vw, 5.9375rem);
}

#overlay h3 {
  font-size: clamp(1.875rem, 4vw, 3.75rem);
}

#overlay {
  right: 59vw;
  left: 5%;
  text-align: center;
}

/* #region -------------------------------- button design --------------------------------------- */

#overlay a {
  color: #ccdc65;
  font-style: normal;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1;
  padding: 10px clamp(20px, 2vw, 35px);
  text-decoration: none;
  border: 2px solid transparent;
  transition:
    background 200ms linear 200ms,
    border 200ms linear 200ms;
}

#overlay a:is(:hover, :focus) {
  color: #0f5b8d;
  background: #fff;
  border-color: #fff;
}

#overlay a {
  background: rgba(0, 0, 0, 0.4);
  border-color: #ccdc65;
}

@media (max-width: 991px) {
  #overlay a {
    background: #2a2a2a;
  }
}

#overlay a::after {
  content: "";
  display: block;
  position: absolute;
  background: #2a2a2a;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  pointer-events: none;
  text-decoration: none;
  transition: width 300ms linear;
}

#overlay a:is(:hover, :focus)::after {
  width: 100%;
}

#overlay a::after {
  background: #fff;
}

#overlay a + a {
  margin-left: clamp(15px, 2vw, 30px);
}

.buttonStyle a {
  font-size: 1rem;
  font-weight: 400;
  background-color: #a3dbf3;
  display: inline-block;
  padding: 10px 15px;
  text-decoration: none !important;
  text-transform: uppercase;
  color: #2a2a2a;
}

.buttonStyle a:hover,
.buttonStyle a:focus {
  background: #0f5b8d;
  color: #fff;
}

/* ------------------------------------------- asideTabs ------------------------------------------ */

#asideTabs .tab {
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(217, 217, 217, 1);
  padding: 30px;
  font-size: 1rem;
}
@media (max-width: 1199px) {
  #asideTabs .tab {
    hyphens: auto;
  }
}

#asideTabs > .row > * + * {
  margin-top: 30px;
}

@media (max-width: 991px) {
  #asideTabs > .row > * {
    margin-top: 30px;
  }
}

#asideTabs .tabHeadline {
  font-size: clamp(1.875rem, 3vw, 2.0625rem);
}

#asideTabs .tab2 .tabHeadline {
  font-size: clamp(1.125rem, 2vw, 1.5625rem);
}

#asideTabs .tab2 {
  max-width: 340px;
}

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

#content {
  text-align: left;
  background: #ededed;
}
#contentBereich {
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  padding-top: 30px;
  padding-bottom: 30px;
  max-width: 1630px;
  left: 0;
  right: 0;
  margin: auto;
}
/* ----------------------------------------------- @6nw news -------------------------------------------- */

#nw6 {
  font-size: 1rem;
  padding-top: clamp(30px, 4vw, 65px);
  padding-bottom: clamp(30px, 3vw, 50px);
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll, fixed;
  background-size: cover;
}

#nw6 .tabHeadline {
  font-size: clamp(2.1875rem, 3vw, 3.125rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 5px;
}

#nw6 .tabContent {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #2a2a2a;
}

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

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

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

@media (min-width: 1200px) {
  #nw6 .tab_link {
    margin-top: 18px;
  }

  #nw6 .tab_link_entries {
    grid-template-columns: repeat(3, 1fr);
  }
}

#nw6 .tab_link_entry {
  text-align: center;
  position: relative;
  width: 100%;
  border-bottom: none !important;
  padding: 165px 20px 20px 20px;
  background: #ffffff;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 575px) {
  #nw6 .tab_link_entry {
    padding: 165px 5px 20px 5px;
  }
}

#nw6 .tab_link_entry::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background:
    center / cover no-repeat,
    #666666;
}

#nw6 .tab_link_entry .tab_preview_picture {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0;
  height: 150px;
  overflow: hidden;
  background: #ffffff;
}

#nw6 .tab_preview_picture img {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

#nw6 .tab_date {
  position: absolute;
  display: inline-block;
  z-index: 1;
  left: 50%;
  top: 134px;
  font-weight: 400;
  font-size: 0.875rem;
  color: #1f1f1f;
  padding: 4px 10px;
  background: #a3dbf3;
  transform: translateX(-50%);
}

#nw6 .tab_link_title a {
  color: #0f5b8d;
  font-weight: 600;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

#nw6 .tab_link_entry > div:nth-last-child(2) {
  font-size: 0;
  line-height: 0;
}

#nw6 .tab_link_entry > div:nth-last-child(2) > a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  text-align: center;
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 400;
  display: flex !important;
  justify-content: center;
  align-items: center;
  align-content: center;
  background: linear-gradient(to bottom, rgba(15, 91, 141, 0.8), rgba(9, 60, 93, 1) 150px);
  opacity: 0;
  transition: opacity 200ms linear;
  text-transform: uppercase;
  padding-top: 100px;
}

#nw6 .tab_link_entry:hover div:nth-last-child(2) > a {
  opacity: 1;
}

#nw6 .tab_link_entry div:nth-last-child(2) > a::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -40px;
  margin-top: -60px;
  width: 80px;
  height: 80px;
  background: url("../img/mehr-erfahren.png") center no-repeat;
}

#nw6 a:hover,
#nw6 a:focus {
  text-decoration: none;
}

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

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

h1,
.h1,
.legacy_h1 {
  margin-bottom: clamp(20px, 3vw, 40px);
}

h1,
.h1,
.legacy_h1 {
  font-size: clamp(1.875rem, 4vw, 3.75rem);
}

:is(h1, h2) :is(i, em) {
  font-size: 66%;
  display: block;
}

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

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

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

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

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

/* ------------------------------------------------ @28tab ----------------------------------------------- */

#tab28 {
  padding: 40px 0;
  padding-bottom: clamp(60px, 10vw, 140px);
  background-position: center;
  background-size: cover;
}

#tab28 .secondRow {
  margin-top: 30px;
}

#tab28 > .row {
  gap: clamp(30px, 3vw, 45px) 0;
}

#tab28 .flip-box :is(h1, h2, h3, h4, h5, h6, .tabBox) {
  color: #ffffff;
}

#tab28 .flip-box {
  color: #fff;
}

#tab28 .tabHeadline {
  font-size: clamp(1.875rem, 4vw, 3.75rem);
  text-transform: uppercase;
  hyphens: auto;
}

#tab28 .flip-box .tabHeadline {
  font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 2.0625rem);
  padding: 0 25px;
}

#tab28 .tabBox {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  min-height: 100%;
  min-height: 370px;
  max-width: 340px;
  perspective: 1000px;
  background: #093c5d;
  box-shadow: 0px 0px 16px 12px rgba(0, 0, 0, 0.2);
  transition: all, 300ms;
}

#tab28 .tabBox a:not(.has-image):not([rel]) {
  content: "";
  position: absolute;
  display: block;
  width: 38px;
  height: 18px;
  bottom: 50px;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 1;
  z-index: 1;
  background: url("../img/pfeil.png") center no-repeat;
  -webkit-transition: opacity 0.4s 0s ease;
  -moz-transition: opacity 0.4s 0s ease;
  -o-transition: opacity 0.4s 0s ease;
  transition: opacity 0.4s 0s ease;
  font-size: 0;
}

#tab28 .template-page > .row,
#tab28 .template-page {
  min-height: 100%;
}

#tab28 .flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#tab28 .flip-box-front {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  min-height: 370px;
  flex-direction: column;
}

#tab28 .flip-box-front p:has(img) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  display: flex !important;
  align-content: center;
  align-items: center;
  justify-content: center;
}

#tab28 .flip-box-front {
  transition: opacity 0.4s 0s ease;
}

#tab28 p:has(img)::after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  bottom: 0;
  left: -25px;
  right: -25px;
  width: calc(100% + 50px);
  background: #093c5d;
  transition:
    opacity 0.4s 0s ease,
    background 0.4s 0 ease;
  opacity: 0.68;
  z-index: 0;
}

#tab28 :is(.flip-box-front, .flip-box-back) p:has(img) img {
  max-width: min-content;
  height: 100%;
}

#tab28 :is(.flip-box-front, .flip-box-back) p:has(img) img {
  max-width: min-content;
  height: 100%;
}

#tab28 .flip-box-front :is(h1, h2, h3, h4, h5, h6) {
  position: absolute;
  z-index: 12;
}

/* --------------------------------------------- team ------------------------------------------- */

#team {
  background-color: #21242a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

#team > .row {
  padding: clamp(40px, 11vw, 105px) 0 clamp(40px, 11vw, 120px) 0;
  position: relative;
  z-index: 2;
}

#team,
#team :is(h1, h2, h3, h4, h5, h6) {
  color: #ffffff;
}

@media (min-width: 1200px) {
  #team > .row::before {
    content: "";
    background: url(../img/figur-mitglied.png) no-repeat bottom;
    width: 216px;
    height: 417px;
    display: block;
    position: absolute;
    left: -93.8px;
    bottom: -15px;
    pointer-events: none;
  }
}

#team :is(h1, h2, h3) {
  font-size: clamp(1.875rem, 4vw, 3.75rem);
  text-transform: uppercase;
}

#team::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: -10vw;
  bottom: 0;
  width: 67vw;
  background: rgba(9, 60, 93, 0.87);
  transform: skewX(-25deg);
  border-right: 5px solid #fff;
}

@media (max-width: 991px) {
  #team::after {
    width: 100vw;
  }
}

/* -------------------------------------------- partner ----------------------------------------- */

#partner {
  padding: clamp(40px, 4vw, 60px) 0 clamp(40px, 4vw, 60px) 0;
  font-size: 1rem;
}

#partner .tabHeadline {
  text-transform: uppercase;
  font-size: clamp(1.875rem, 3vw, 2.8125rem);
}

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

footer {
  background: #1aa4e0;
  color: #2a2a2a;
  font-size: 1.125rem;
}

@media (min-width: 992px) {
  #footerBottom > .row::after {
    content: "";
    background: url(../img/figur-footer.png) no-repeat bottom center;
    width: 389px;
    height: 379px;
    display: block;
    position: absolute;
    right: -243px;
    bottom: -19.2px;
    pointer-events: none;
  }
}

#scrollTopBtn {
  transition:
    border-color 200ms linear,
    background-color 200ms linear;
}

#footerTop {
  padding: 30px;
}

#footerMiddle {
  padding-bottom: 60px;
}

#footerBottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.59);
}

#footerTop a,
#footerMiddle .footerContact a {
  text-decoration: underline;
  color: #2a2a2a;
}

@media (max-width: 991px) {
  #footerTop .footerLogo {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
  }
}
/* -------------------------------------------- vernetzt ---------------------------------------- */

#vernetzt {
  gap: 18px;
  text-align: right;
  font-size: 0.875rem;
  color: #2a2a2a;
  line-height: 1.3;
  text-decoration: none;
}

#vernetzt span span {
  display: block;
}

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

#innerfooter ul {
  padding: 0;
}

@media (max-width: 991px) {
  #innerfooter {
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
  }
}

#innerfooter li {
  display: inline-block;
}

#innerfooter a {
  color: #2a2a2a;
}

#innerfooter li + li::before {
  content: "";
  margin: 0 clamp(15px, 2vw, 30px);
  color: #2a2a2a;
}

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