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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  scrollbar-color: #da1b21 #ffffff;
  scrollbar-width: thin;
}

body {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  color: #222222;
  background-color: #ffffff;
  font-size: clamp(1rem, 2vw, 1.125rem);
  /* 1rem = 16px */
  line-height: 1.5;
  background-attachment: fixed;
  background-size: cover;
}

body::after {
  background: url(../img/deko-header.png) no-repeat;
  display: block;
  right: 0 !important;
  top: 0;
  content: "";
  z-index: 0;
  position: absolute;
  width: 119px;
  height: 988px;
}
body::before {
  background: url(../img/deko-footer.png) no-repeat;
  display: block;
  left: 0 !important;
  bottom: 0;
  content: "";
  z-index: 0;
  position: absolute;
  width: 119px;
  height: 988px;
}

@media (min-width: 768px) {
  html {
    position: relative;
  }
}

a {
  color: #da1b21;
}

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

b,
strong {
  font-weight: 600;
}

.overflow {
  overflow: clip;
  position: relative;
}
/* ----------------------------------------------- topbar ----------------------------------------------- */

#topbar {
  color: #222222;
}

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

#topbar > div.row:nth-child(1) {
  margin-bottom: 5px;
}

@media (max-width: 991px) {
  #topbar > div.row:nth-child(1) {
    margin-top: 10px;
  }
}

/* #region ------------------------------------ phone + mail -------------------------------------------- */
.bgContact {
  background: #fff;
  padding: 10px 0;
}
#mail,
#phone {
  color: #222222;
  display: inline-block;
  font-weight: 400;
  margin-top: 15px;
  line-height: 1;
  position: relative;
  min-height: 18px;
  font-size: 1rem;
}

@media (min-width: 992px) {
  #mail,
  #phone {
    margin-top: 0;
    display: inline-flex;
    align-items: center;
  }

  #mail {
    margin-left: 30px;
  }
}

#mail {
  padding-right: 28px;
  background: url("../img/icon-mail.png") center right no-repeat;
  margin-top: 20px;
}

#phone {
  padding-right: 25px;
  background: url("../img/icon-telefon.png") center right no-repeat;
}

#kontakt {
  font-style: 400;
  font-size: 1.125rem;
}

/* #endregion --------------------------------- phone + mail -------------------------------------------- */

/* ----------------------------------------------- styler ----------------------------------------------- */

@media (min-width: 992px) {
  #style {
    margin-right: -10px;
  }

  #style h2 {
    font-size: 1.125rem;
    font-weight: 400;
    color: inherit;
    width: auto;
    margin: 0;
    font-style: normal;
  }

  #style button {
    color: #222222;
    font-weight: 400;
    background: transparent;
    border: none;
    padding: 0 10px;
    line-height: 1;
    font-size: 1.125rem;
  }

  #style button:is(:hover, :focus) {
    color: #da1b21;
  }

  #style button + button {
    border-left: 1px solid #222222;
  }
}

/* ----------------------------------------------- logo ----------------------------------------------- */
#logo {
  display: flex;
  align-items: center;
  align-content: center;
  gap: 10px;
  text-decoration: none;
}

#logo .logoImg img {
  display: block;
}

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

  #logo {
    display: flex;
    align-items: center;
    align-content: center;
    text-decoration: none;
    justify-content: center;
  }
}

#logo .logoTxt {
  line-height: 1.2;
  font-size: clamp(1.5rem, 2vw, 1.875rem) !important;
  color: #222222;
  hyphens: auto;
}

#logo .logoTxt :is(b, strong) {
  color: #0175a7;
  display: block;
  font-size: 2.4375rem !important;
  font-weight: 600;
  text-transform: uppercase;
}
/* #region ------------------------------------- navigation --------------------------------------------- */

.navbar-nav {
  background-color: #222222;
}

/* burgermenu for tablet */

@media (max-width: 991px) {
  #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: #da1b21;
    border-radius: 2px;
    position: absolute;
    width: 40px;
    height: 3px;
    left: 10px;
    transition: transform 200ms linear, opacity 200ms linear;
    display: block;
  }

  #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 {
    margin: 20px 0;
  }

  .navbar-collapse {
    width: calc(100% - 90px);
    max-width: 300px;
    top: 0;
    background: #222222;
    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: 5px;
  }

  .dropdown-toggle-button-wrapper2 {
    top: 2px;
  }
}

/* menu desktop */

@media (min-width: 992px) {
  nav.horizontally .navbar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 100px;
  }

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

  nav.horizontally .navbar-nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: block !important;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms linear;
  }

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

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

  nav.horizontally .navbar-nav li:is(.open, :hover) > ul,
  nav.horizontally .navbar-nav li.open:focus-within > 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.open > ul {
    pointer-events: none !important;
    opacity: 0 !important;
    visibility: hidden;
  }

  nav.horizontally .navbar-nav li:is(:hover, :focus) > ul {
    z-index: 1003;
  }
}

/* toplevel */

nav.horizontally a[class*="toplevel"] {
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 10px 15px;
  font-size: 1.25rem;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

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

@media (min-width: 992px) {
  nav.horizontally a[class*="toplevel"] {
    padding: 17px;
    text-align: center;
  }
}

/* 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: #222222;
  background-color: #01a0e2;
}

/* secondlevel + thirdlevel dropdown-box */

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

@media (min-width: 992px) {
  nav.horizontally [class*="toplevel"] > ul {
    margin-top: 18px;
    left: 50%;
    transform: translate(-50%, 0);
  }

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

  nav.horizontally [class*="toplevel"] > ul:before {
    content: "";
    position: absolute;
    display: block;
    height: 18px;
    left: 0;
    right: 0;
    top: -18px;
  }

  nav.horizontally [class*="thirdlevel"]::before {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    top: 0;
    bottom: 0;
    left: -10px;
  }
}

/* secondlevel + thirdlevel */

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

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

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 12px;
  display: block;
  width: 7px;
  height: 7px;
  background-color: #222222;
  opacity: 0;
  transition: opacity 300ms linear;
}

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

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

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

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

#slider,
.slider-wrapper {
  max-height: clamp(300px, 44vw, 430px);
  overflow: hidden;
  height: 100%;
}

@media (min-width: 768px) {
  #headerpic .nivo-directionNav a {
    top: auto;
    bottom: 12px;
  }

  #headerpic .nivo-controlNav {
    pointer-events: none;
  }

  #headerpic .nivo-controlNav a {
    pointer-events: auto;
  }
}

@media (min-width: 992px) {
  #headerpic .nivo-directionNav a {
    bottom: 18px;
  }
}

#headerpic {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

@media (min-width: 992px) {
  #headerpic {
    margin-top: 10px;
  }
}

.slider-mask {
  display: none;
}

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

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

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

@media (min-width: 768px) {
  #content.md-gutter {
    margin-left: -15px;
    margin-right: -15px;
  }
}

@media (min-width: 992px) {
  #contentCol {
    padding: clamp(20px, 3vw, 30px) clamp(25px, 4vw, 45px) 0 clamp(20px, 4vw, 45px);
  }
}

@media (min-width: 1200px) {
  body:not(.noListStyle) main ul:not([class*="menue"]):not([class*="slick-dots"]):not(.rsbtn_toollist) li:not(.gallery-list-item):not(.album-list-item):not(.entry)::before {
    top: 24px;
  }
}

.compact {
  padding: 15px;
  background-color: #ffffff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 5;
}

@media (min-width: 768px) {
  .compact {
    padding: 20px clamp(15px, 3vw, 30px) clamp(15px, 3vw, 30px) clamp(15px, 3vw, 30px);
    margin-top: clamp(30px, 5vw, 60px);
    margin-bottom: clamp(30px, 5vw, 60px);
  }
}

/* ---------------------------------------------- aside tab --------------------------------------------- */

#asideTab {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

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

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

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

h2,
.h2,
.legacy_h2 {
  font-size: clamp(1.875rem, 3vw, 2rem);
}

h3,
.h3,
.legacy_h3 {
  font-size: 1.75rem;
}

h4,
.h4,
.h4link a:is(:link, :hover, :focus, :visited) .legacy_h4 {
  font-size: 1.625rem;
}

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

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

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

#news,
#events {
  padding-top: clamp(40px, 4vw, 55px);
  padding-bottom: clamp(40px, 4vw, 60px);
}

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

#news {
  padding-left: 25px;
  padding-right: 25px;
}

#events {
  padding-left: 15px;
  padding-right: 15px;
}

:is(#news, #events) .tab_link_entries {
  margin-bottom: 30px;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

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

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

/* news events button */

:is(#news, #events) .tab_link_mehr {
  color: transparent;
  font-size: 0;
}

:is(#news, #events) .tab_link_mehr a {
  background: #da1b21;
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
  padding: 8px 55px 8px 20px;
  position: relative;
  text-decoration: none;
  display: inline-block;
}

:is(#news, #events) .tab_link_mehr a::after {
  content: "\00BB";
  display: block;
  position: absolute;
  right: 0;
  top: 9px;
  bottom: 9px;
  width: 35px;
  text-align: center;
  font-size: 26px;
  line-height: 18px;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
}

:is(#news, #events) .tab_link_mehr a:is(:hover, :focus) {
  background: #0175a7;
  color: #ffffff;
}

/* news */

#news {
  max-width: 1170px;
  padding: 0 30px;
  margin: 0 auto;
}

#news > .row {
  position: relative;
  z-index: 2;
  max-width: 1110px;
  margin: 0 auto;
}

#news h2 {
  color: #ffffff;
  background-color: #0175a7;
  font-weight: 600;
  font-size: clamp(2.25rem, 4vw, 3rem);
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: clamp(30px, 4vw, 55px);
  text-transform: uppercase;
  padding: 5px 30px;
}

#news .tab_link_entry {
  padding: 70px 20px 20px 20px;
  background: #ffffff;
  position: relative;
  min-height: 106px;
  display: flex;
  align-items: center;
}

@media (min-width: 576px) {
  #news .tab_link_entry {
    padding: 20px 30px 20px 135px;
  }
}

#news .tab_link_title a {
  color: #222222;
  font-weight: 600;
  line-height: 1.3;
  display: inline-block;
}

#news .tab_link_date {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 400;
  background: #da1b21 url("../img/kalender-icon.png") top 8px center no-repeat;
  text-align: center;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 15px 10px 15px;
}

#news .tab_link_entry:nth-child(4n+2) .tab_link_date,
#news .tab_link_entry:nth-child(4n+3) .tab_link_date {
  background: #0175a7 url("../img/kalender-icon.png") top 8px center no-repeat;
}

@media (min-width: 576px) {
  #news .tab_link_date {
    right: auto;
    bottom: 0;
    width: 105px;
    padding: 65px 0 20px 0;
    background-position: top 25px center;
  }
}

/* events */
#events {
  max-width: 1170px;
  padding: 30px;
  background-color: #fff;
  margin: 0 auto;
}

#events > .row {
  max-width: 1110px;
  margin: 0 auto;
}

#events :is(h1, h2, h3) {
  font-size: 2.25rem;
  text-transform: uppercase;
}

#events .tab_link_title a {
  font-weight: 600;
}

#events :is(.tab_link_title, .tab_link_mandat) a {
  color: #222222;
}

#events .tab_link_entry:not(:last-of-type) {
  padding-bottom: 25px;
  border-bottom: 2px solid #bfbfbf;
}

@media (min-width: 768px) {
  #events .tab_link_entry:nth-last-of-type(2) {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

@media (min-width: 992px) {
  #events .tab_link_entry:nth-last-of-type(3) {
    padding-bottom: 0;
    border-bottom: 0;
  }
}

#events .tab_spacer {
  display: none;
}

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

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

footer {
  padding: 30px 15px;
  position: relative;
}

@media (min-width: 768px) {
  footer::after {
    background: linear-gradient(135deg, rgba(34, 34, 34, 0.8) 36%, rgba(34, 34, 34, 0.6) 36%);
  }
}

footer > .row {
  position: relative;
  z-index: 2;
}

#innerfooter ul {
  padding: 0;
}

@media (max-width: 575px) {
  #innerfooter {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    padding-top: 15px;
  }
}

@media (min-width: 768px) {
  footer {
    padding: 55px 30px;
  }
}

#innerfooter a {
  color: #222222;
  display: inline-block;
  font-weight: 400;
  font-size: 1.125rem;
}

#innerfooter a::before {
  content: "";
  position: absolute;
  right: -15px;
  margin-top: 12px;
  display: block;
  width: 7px;
  height: 7px;
  background-color: #222222;
  opacity: 0;
  transition: opacity 300ms linear;
}

#innerfooter a:is(:hover, :focus)::before {
  opacity: 1;
}

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

#vernetzt {
  display: grid;
  gap: 12px;
  font-size: 0.875rem;
  color: #222222;
  line-height: 1.3;
  font-weight: 400;
  text-decoration: none;
}

#vernetzt b {
  font-weight: 600;
}

#vernetzt :is(span, img) {
  display: block;
}

@media (max-width: 575px) {
  #vernetzt img {
    margin: 0 auto;
  }
}
