@import url("https://fonts.verwaltungsportal.de/import/?family=Poppins:400,400i,600,600i");

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

body {
   font-family: "Poppins", sans-serif;
   color: #555555;
   background: #ffffff;
   font-size: clamp(1rem, 2vw, 1.125rem);
   /* 1rem = 16px */
   line-height: 1.5;
   isolation: isolate;
   position: relative;
}

body::after {
   content: "";
   top: 0;
   left: 0;
   right: 0;
   position: absolute;
   background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 1)), url(../img/grafik-linien.png);
   height: 1113px;
   background-position: top center;
   background-repeat: no-repeat;
   z-index: -1;
}

a {
   color: #c40f44;
}

#content a {
   font-style: italic;
}

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

b,
strong {
   font-weight: 600;
}

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

/* ----------------------------------------- optionsbar ----------------------------------------- */

@media (max-width: 991px) {
   #optionsbar {
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid rgba(0, 0, 0, 0.2);
   }
}

@media (min-width: 992px) {
   #optionsbar {
      padding: 14px 0 10px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      transition: all 0.1s 0s linear;
   }

   .is-sticky #optionsbar {
      display: none !important;
   }

   #optionsbar > * + * {
      border-left: 1px solid rgba(0, 0, 0, 0.2);
   }
}

#optionsbar > * {
   padding: 0 29px;
   font-size: 1rem;
}

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

#logo {
   display: inline-block;
   margin: 15px 0;
   transition: max-width 300ms;
   max-width: 100%;
}

.is-sticky #logo {
   max-width: 100px;
}

#logo img {
   display: block;
}

@media (min-width: 992px) and (max-width: 1199px) {
   #logo {
      margin: 20px 0 15px 0;
      transition: all 0.1s 0s linear;
      overflow: hidden;
   }

   .is-sticky #logo {
      height: 0;
      margin: 0;
   }
}

@media (min-width: 1200px) {
   #logo {
      margin-left: 40px;
   }
}

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

/* -------------------------------------------- language -------------------------------------------- */

#language {
   position: relative;
   z-index: 60;
   font-size: 0.8125rem;
   text-align: center;
   display: inline-block;
   margin-left: 10px;
   padding-right: 0;
}

@media (min-width: 576px) and (max-width: 991px) {
   #language {
      margin-right: 90px;
   }
}

#language > :is(span, a) {
   display: block;
   background: #c40f44;
   color: #ffffff;
   width: 30px;
   height: 30px;
   border-radius: 50%;
   padding-top: 5px;
   pointer-events: none;
   font-weight: bold;
}

@media (max-width: 991px) {
   #language > :is(span, a) {
      width: 40px;
      height: 40px;
      padding-top: 12px;
   }
}

#chooseLanguage {
   position: absolute;
   top: 70%;
   top: calc(70% - 20px);
   margin-top: 8px;
   left: 30px;
   right: 0;
   opacity: 0;
   pointer-events: none;
   -webkit-transition: opacity 300ms linear, top 300ms linear;
   -moz-transition: opacity 300ms linear, top 300ms linear;
   -ms-transition: opacity 300ms linear, top 300ms linear;
   -o-transition: opacity 300ms linear, top 300ms linear;
   transition: opacity 300ms linear, top 300ms linear;
}

#chooseLanguage::before {
   content: "";
   display: block;
   position: absolute;
   left: 0;
   right: 0;
   height: 10px;
   top: -10px;
}

#language:hover #chooseLanguage {
   top: 100%;
   top: calc(100% - 0);
   opacity: 1;
   pointer-events: all;
}

#chooseLanguage > a {
   display: block;
   font-weight: bold;
   color: #2d2d2d;
   padding: 8px 4px;
   background: #f4e8e6;
   position: relative;
   -webkit-transform: rotateY(90deg);
   -moz-transform: rotateY(90deg);
   -ms-transform: rotateY(90deg);
   -o-transform: rotateY(90deg);
   transform: rotateY(90deg);
   -webkit-transition: all 300ms linear;
   -moz-transition: all 300ms linear;
   -ms-transition: all 300ms linear;
   -o-transition: all 300ms linear;
   transition: all 300ms linear;
}

#chooseLanguage > a:hover {
   background: #c40f44;
   color: #ffffff;
   text-decoration: none;
}

#language:hover #chooseLanguage > a {
   -webkit-transform: none;
   -moz-transform: none;
   -ms-transform: none;
   -o-transform: none;
   transform: none;
}

#language #chooseLanguage > a:nth-child(2) {
   -webkit-transition-delay: 50ms;
   -moz-transition-delay: 50ms;
   -ms-transition-delay: 50ms;
   -o-transition-delay: 50ms;
   transition-delay: 50ms;
}

#language #chooseLanguage > a:nth-child(3) {
   -webkit-transition-delay: 100ms;
   -moz-transition-delay: 100ms;
   -ms-transition-delay: 100ms;
   -o-transition-delay: 100ms;
   transition-delay: 100ms;
}

#language #chooseLanguage > a:nth-child(4) {
   -webkit-transition-delay: 150ms;
   -moz-transition-delay: 150ms;
   -ms-transition-delay: 150ms;
   -o-transition-delay: 150ms;
   transition-delay: 150ms;
}

#chooseLanguage > a.hideActive {
   display: none;
}

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

/* burgermenu for tablet */

@media (max-width: 991px) {
   nav.horizontally {
      position: static !important;
      padding: 20px 0 18px 0;
   }

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

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

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

/* menu desktop */

@media (min-width: 992px) {
   nav.horizontally {
      background: transparent;
      transition: all 0.2s 0s linear;
   }

   .is-sticky nav.horizontally {
      box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.18);
      background: #ffffff;
   }

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

   nav.horizontally .navbar-nav ul {
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      display: block !important;
      pointer-events: none;
      opacity: 0;
      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: #555555;
   font-weight: 400;
   text-align: left;
   padding: 12px 15px;
   position: relative;
   font-size: clamp(1rem, 1.25vw, 1.125rem);
   line-height: 1.2;
   text-decoration: none;
}

@media (max-width: 991px) {
   nav.horizontally li[class*="toplevel"] {
      border-bottom: 1px solid rgba(46, 60, 72, 0.2);
   }

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

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

   nav.horizontally a[class*="toplevel"] {
      padding: 42px 0;
      text-align: center;
      font-size: clamp(1rem, 1.2vw, 1.25rem);
   }

   nav.horizontally a[class*="toplevel"].dropdown-toggle::before,
   nav.horizontally a[class*="toplevel"].dropdown-toggle::after {
      content: "";
      display: block;
      position: absolute;
      z-index: 1004;
      background-color: #c40f44;
      left: 50%;
      transform: translate(-50%, 0);
      height: 0;
   }

   nav.horizontally a[class*="toplevel"].dropdown-toggle::before {
      width: 3px;
      top: 80px;
      transition: all 150ms linear;
   }

   nav.horizontally a[class*="toplevel"].dropdown-toggle::after {
      width: 0;
      bottom: -25px;
      border-radius: 50%;
      transition: all 300ms linear;
   }
}

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

@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 {
      height: 48px;
   }

   nav.horizontally li[class*="toplevel"]:hover > a.dropdown-toggle::after,
   nav.horizontally li[class*="toplevel"].open > a.dropdown-toggle::after,
   nav.horizontally li[class*="toplevel"].open > a.dropdown-toggle:is(:hover, :focus)::after {
      width: 15px;
      height: 15px;
   }
}

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
   background-color: #ffffff;
   box-shadow: -1px 0px 5px 0 rgba(0, 0, 0, 0.2);
   border-radius: 30px;
}

@media (max-width: 991px) {
   nav.horizontally [class*="toplevel"] ul {
      box-shadow: inset -1px 0px 5px 0 rgba(0, 0, 0, 0.2);
   }

   nav.horizontally [class*="toplevel"] > ul {
      padding: 15px;
      background-color: rgba(255, 255, 255, 0.65);
   }

   nav.horizontally [class*="secondlevel"] > ul {
      padding: 15px 0;
      background-color: rgba(255, 255, 255, 0.15);
   }
}

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

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

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

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
   color: #555555;
   font-weight: 400;
   text-align: left;
   padding: 7px 16px;
   font-size: clamp(1rem, 1.25vw, 1.125rem);
   line-height: 1.2;
   text-decoration: none;
}

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

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

   nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]) + li:not(:nth-child(2)) {
      border-top: 1px solid rgba(0, 0, 0, 0.2);
   }
}

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::before {
   content: "";
   width: 0;
   height: 0;
   border-radius: 50%;
   background-color: #c40f44;
   display: inline-block;
   position: absolute;
   left: 5px;
   top: 50%;
   transition: all 200ms;
   transform: translate(-50%, -50%);
}

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

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 {
   width: 6px;
   height: 6px;
}

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

/* -------------------------------------------- banner ------------------------------------------ */

#slider {
   max-height: clamp(300px, 45vw, 450px);
   position: relative;
   border-radius: 50px;
}

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

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

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

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

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

.slider-mask {
   display: none;
}

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

main {
   overflow: hidden;
}

main {
   text-align: left;
   padding-top: clamp(30px, 4vw, 70px);
   padding-bottom: clamp(30px, 6vw, 40px);
}

#contentRow .sgTab::after {
   content: "";
   position: absolute;
   bottom: -160px;
   right: -15px;
   transform: translateX(100%);
   background: url(../img/grafik-frauen.png);
   width: 276px;
   height: 374px;
}

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

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

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

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

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

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

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

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

/* #region ------------------------------------- SG-Tab ------------------------------------------- */

.sgTab .tab {
   background: #ffffff;
   box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
   border-radius: 20px;
   padding: 25px;
}
.sgTab .tabHeadline {
   font-size: 1.5625rem;
}

/* #endregion ---------------------------------- SG-Tab ------------------------------------------- */

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

#news {
   margin-bottom: 40px;
   margin-top: 60px;
}

#news .newstitle .tabHeadline {
   display: inline-block;
   width: auto;
   margin-bottom: 0;
}

#news .newscontent {
   margin-top: 45px;
   padding: 70px 0 70px 0;
   background-position: center !important;
   background-repeat: no-repeat;
   background-size: cover !important;
   background-attachment: fixed !important;
   background-color: #555555;
   position: relative;
}

#news .newscontent .tab_link_entries {
   display: grid;
   gap: 30px;
   flex-grow: 1;
}

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

#news .newscontent .tab_link_entry {
   background-color: #ffffff;
   padding: 20px 25px;
   box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.15);
   border-radius: 20px;
}

#news .newscontent .tab_link_title a {
   font-size: 1.25rem;
   line-height: 1.2;
   font-weight: 600;
   color: #c40f44;
   display: inline-block;
}

#news .newscontent .tab_link_date {
   font-style: italic;
}

#news .tab_spacer {
   display: none;
}

/* button */

#news .newscontent .tab_link {
   display: grid;
   gap: 30px;
}

@media (min-width: 576px) {
   #news .newscontent .tab_link {
      display: flex;
   }

   #news .newscontent .tab_link > div:nth-child(2) {
      width: 70px !important;
      flex-shrink: 0;
   }
}

@media (min-width: 992px) {
   #news .newscontent .tab_link > .tab_link_entries {
      width: auto !important;
   }
}

@media (min-width: 1200px) {
   #news .newscontent .tab_link {
      column-gap: 60px;
   }
}

#news .newscontent .tab_link > div:nth-child(2) :is(.tab_link_mehr, .tab_link_mehr a) {
   font-size: 0px;
   height: 100%;
}

@media (max-width: 575px) {
   #news .newscontent .tab_link > div:nth-child(2) :is(.tab_link_mehr, .tab_link_mehr a) {
      height: 60px;
      max-width: inherit;
   }
}

#news .newscontent .tab_link > div:nth-child(2) .tab_link_mehr a {
   display: block;
   position: relative;
   color: #ffffff;
   background-color: #c40f44;
   border-radius: 20px;
   max-width: 100%;
   width: 100%;
}

#news .newscontent .tab_link > div:nth-child(2) .tab_link_mehr a:is(:hover, :focus) {
   background-color: #b50623;
}

#news .newscontent .tab_link > div:nth-child(2) .tab_link_mehr a::after {
   content: "\00BB";
   font-size: 60px;
   color: #ffffff;
   top: 50%;
   left: 50%;
   line-height: 38px;
   height: 50px;
   transform: translate(-50%, -50%);
   position: absolute;
   display: block;
   text-align: center;
   pointer-events: none;
}

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

/* ----------------------------------- tabHeadline with dekoration ------------------------------ */

.tabHeadline {
   position: relative;
}

:is(#news .newstitle)::before,
:is(#news .newstitle)::after {
   content: "";
   display: block;
   position: absolute;
   left: 50%;
   background: #c40f44;
   z-index: 2;
   transform: translate(-50%, 0);
}

#news .newstitle::before,
#news .newstitle::after {
   left: 30px !important;
}

@media (min-width: 1200px) {
   #news .newstitle::before,
   #news .newstitle::after {
      left: 11% !important;
   }
}

:is(#news .newstitle)::before {
   width: 3px;
   height: 65px;
   bottom: -80px;
}

:is(#news .newstitle)::after {
   width: 15px;
   height: 15px;
   border-radius: 50%;
   bottom: -90px;
}

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

footer {
   background: url("../img/grafik-handzeichnung.png") bottom left 60px no-repeat, #c40f44;
   padding: clamp(25px, 4vw, 50px) 0;
   color: #ffffff;
   position: relative;
}

@media (max-width: 991px) {
   footer > .row > .col-xs-12 + * {
      border-top: 1px solid rgba(255, 255, 255, 0.25);
      margin-top: 25px;
      padding-top: 25px;
   }
}

@media (min-width: 768px) {
   footer > .row > .col-xs-12:nth-child(2) {
      border: none;
      margin-top: unset;
      padding-top: unset;
   }
}

@media (min-width: 992px) {
   footer::after {
      content: "";
      background: #ffffff;
      position: absolute;
      left: 50%;
      top: 50px;
      bottom: 50px;
      width: 1px;
      display: block;
      opacity: 0.25;
   }

   footer > .row > div {
      padding-top: 30px;
      padding-bottom: 30px;
   }

   footer > .row > div:nth-child(2) {
      padding-right: 30px;
   }

   footer > .row > div:nth-child(3) {
      padding-left: 30px;
   }
}

#innerfooter {
   line-height: 1.7;
}

#innerfooter ul {
   padding: 0;
}

#innerfooter a {
   color: #fff;
   text-decoration: none;
   display: inline-block;
   font-weight: 400;
   font-size: 1rem;
}

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

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

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

#vernetzt {
   gap: 18px;
   text-align: left;
   font-size: 0.875rem;
   color: #fff;
   line-height: 1.4;
   font-weight: 400;
   text-decoration: none;
}

#vernetzt span span {
   display: block;
}

/* ------------------------------------------- kontakt ------------------------------------------ */

#kontakt {
   font-size: 1rem;
}

#kontakt .tabHeadline {
   color: #ffffff;
   margin: 0 0 20px 0;
   font-size: 2rem;
}

#kontakt a {
   color: #ffffff;
   text-decoration: underline;
}

/* ------------------------------------------ scroll top ---------------------------------------- */

#scrollTop {
   font-size: 0;
   border: 1px solid #ffffff;
   border-radius: 3px;
   width: 40px;
   height: 40px;
   display: block !important;
   position: relative;
   margin: 0 auto;
}

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

#scrollTop::after {
   content: "";
   position: absolute;
   left: 12px;
   top: 5px;
   width: 10px;
   height: 10px;
   border-radius: 3px;
   margin-top: 10px;
   display: inline-block;
   border-right: 3px solid #ffffff;
   border-top: 3px solid #ffffff;
   transform: rotate(-45deg);
   transition: border 300ms linear;
}

#scrollTop:is(:hover, :focus) {
   background: rgba(0, 0, 0, 0.2);
}

.stickyBtn {
   background: url(../img/exit.png) center right 5px no-repeat, #c40f44;
   padding: 15px 80px 15px 20px;
   color: #fff;
   font-size: 1.5625rem;
   position: fixed;
   left: 0;
   transform: translateX(calc(-100% + 70px));
   top: 250px;
   height: 70px;
   z-index: 55;
   transition: transform 500ms;
}

.stickyBtn::before {
   width: 0;
   height: 0;
   border-left: 15px solid #c40f44;
   border-top: 35px solid transparent;
   border-bottom: 35px solid transparent;
   content: "";
   display: block;
   position: absolute;
   right: -14px;
   top: 0;
}

.stickyBtn a {
   color: #fff;
}

.stickyBtn:hover {
   transform: translateX(calc(0% + 0px));
}
