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

body {
    font-family: "Jost", sans-serif;
    color: #191919;
    background: #ffffff;
    font-size: 1rem;
    /* 1rem = 16px */
    line-height: 1.5;
}

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

a {
    color: #377079;
}

a:hover,
a:focus {
    color: #377079;
    text-decoration: underline;
}


b, strong {
    font-weight: 600;
}

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

@media (min-width: 992px) {
    #logo {
        position: absolute;
        top: -25px;
        z-index: 55;
    }
}

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

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

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

/* #region -------------------------------------- topbar ---------------------------------------- */
#bghead {
    background-color: rgba(255, 255, 255, 0.96);
    position: relative;
    z-index: 101;
}
#topbar {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 0.875rem;
}

@media (min-width: 992px) {
    #topbar {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

#topbar {
    color: #191919;
}

#topbar :is(b, strong) {
    color: #377079;
}

#topbar a {
    color: #377079;
}

#topbar :is(b, strong, a) {
    font-size: 1rem;
}

/* contact col */

#phone-tab,
#mail-tab {
    padding-top: 42px;
    display: block;
    min-height: 42px;
    min-width: 42px;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto 34px;
}

@media (min-width: 576px) {

    #phone-tab,
    #mail-tab {
        padding-top: 0;
        padding-left: 48px;
        background-position: center left;
    }
}

#phone-tab {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M38.75 40.9q-5.6 0-11.25-2.875T17.3 30.6q-4.55-4.55-7.4-10.175Q7.05 14.8 7.05 9.2q0-.95.625-1.575T9.25 7h5.7q.8 0 1.35.5t.75 1.35l1.2 5.35q.1.75-.05 1.35-.15.6-.6 1l-4.7 4.6q2.85 4.8 6.375 8.275Q22.8 32.9 27.35 35.4l4.5-4.7q.5-.55 1.125-.775.625-.225 1.325-.075l4.85 1.1q.8.15 1.3.75t.5 1.45v5.5q0 .95-.625 1.6-.625.65-1.575.65Zm-27-21.8 4.1-4q.1-.1.125-.225.025-.125.025-.225L14.9 9.6q-.05-.2-.15-.275-.1-.075-.25-.075H9.6q-.15 0-.225.075Q9.3 9.4 9.3 9.55q-.05 1.95.6 4.325t1.85 5.225ZM29.5 36.45q2.05 1 4.475 1.55t4.425.65q.15 0 .225-.075.075-.075.075-.225v-4.9q0-.15-.075-.25t-.225-.15l-4.55-.9q-.1-.05-.2 0l-.2.1ZM11.75 19.1ZM29.5 36.45Z' fill='%23abd3d9'/%3E%3C/svg%3E");
}

#mail-tab {
    margin-left: clamp(20px, 4vw, 60px);
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M7.9 39q-1.2 0-2.05-.85Q5 37.3 5 36.1V11.9q0-1.2.85-2.05Q6.7 9 7.9 9h32.2q1.2 0 2.05.85.85.85.85 2.05v24.2q0 1.2-.85 2.05-.85.85-2.05.85ZM24 24.3 7.25 13.25V36.1q0 .3.175.475t.475.175h32.2q.3 0 .475-.175t.175-.475V13.25Zm0-2.4 16.3-10.65H7.75ZM7.25 13.25v-2V36.1q0 .3.175.475t.475.175h-.65V36.1Z' fill='%23abd3d9'/%3E%3C/svg%3E");
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    #menu {
        position: static !important;
    }

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

    #burgerButtonInner2,
    #burgerButton:after,
    #burgerButtonInner {
        background-color: #377079;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 10px;
        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"] #burgerButtonInner2 {
        opacity: 0;
    }

    #burgerButton[aria-expanded="true"]:after {
        -webkit-transform: rotate(45deg) translate(-4px, -6px);
        transform: rotate(45deg) translate(-4px, -6px);
    }

    #burgerButtonInner {
        top: 16px;
    }

    #burgerButtonInner2 {
        top: 24px;
    }

    #burgerButton:after {
        top: 32px;
        content: "";
        display: block;
    }

    .navbar-nav {
        padding: 20px 10px;
    }

    .navbar-collapse {
        top: 0;
        background: #fff;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        transition: left 300ms linear, opacity 300ms linear;
    }

    .navbar-collapse[aria-expanded="true"],
    .navbar-collapse.in {
        left: 0;
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-header {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
        transition: top 300ms linear;
    }

    .navbar-toggle::before {
        content: "";
        opacity: 0;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 0;
        z-index: -1;
        display: block;
        background-color: rgba(0, 0, 0, 0.5);
        transition: width 300ms linear, opacity 300ms linear;
    }

    .navbar-toggle[aria-expanded="true"]::before {
        opacity: 1;
        width: 90px;
    }

    .dropdown-toggle-button-wrapper {
        top: 8px;
        right: 0;
    }

    .dropdown-toggle-button-wrapper2 {
        top: 6px;
        right: 0;
    }
}

@media (min-width: 575px) and (max-width: 991px) {
    .navbar-collapse {
        width: 60%;
    }

    .navbar-collapse.collapse.in:after,
    .navbar-toggle[aria-expanded="true"]::before {
        width: 40%;
    }
}

/* menu desktop */

@media (min-width: 992px) {
    #menu {
        transition: background 300ms linear;
    }

    #headerpic :is(.sticky-wrapper, #menu) {
        z-index: 101;
    }

    .is-sticky #menu {
        left: auto !important;
        background: #fff;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.08);
    }

    nav.horizontally .navbar-nav {
        border-top: 1px solid #b7b6b6;
        padding: 20px 0;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        flex-wrap: wrap;
    }

    .is-sticky nav.horizontally .navbar-nav {
        border-top: none;
    }

    nav.horizontally li[class*="toplevel"] {
        flex-grow: 1;
    }

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

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

    nav.horizontally :is([class*="toplevel"], [class*="secondlevel"]) {
        position: relative;
    }

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

    .navbar-default :is(.open>.dropdown-menu, .navbar-nav li[class*="toplevel"]:hover>ul, .navbar-nav li[class*="secondlevel"]:hover>ul, .navbar-nav li[class*="secondlevel"]>ul[style*="block"]) {
        pointer-events: auto !important;
        opacity: 1 !important;
    }

    .navbar-default .navbar-nav :is(li[class*="toplevel"]:focus-within>ul, 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 :is(li[class*="toplevel"]:hover>ul, li[class*="secondlevel"]:hover>ul) {
        z-index: 1003;
    }
}

/* ---------------------------------------------- toplevel ---------------------------------------------- */

.navbar-default li[class*="toplevel"]>a {
    color: #191919;
    font-weight: 600;
    text-align: left;
    padding: 14px 5px;
    position: relative;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
    transition: border 300ms linear;
}

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

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

@media (min-width: 992px) {
    .navbar-default li[class*="toplevel"]>a {
        padding: 6px 10px;
        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 li[class*="toplevel"]>a {
        display: block;
    }
}

.navbar-default li[class*="toplevel"]>a::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 0;
    height: 5px;
    width: 0;
    background: #abd3d9;
    transform: translateX(-50%);
    transition: width 300ms linear;
}

@media (min-width: 992px) {
    .navbar-default li[class*="toplevel"]>a::after {
        background: #abd3d9;
        top: -23px;
        bottom: auto;
    }

    .is-sticky .navbar-default li[class*="toplevel"]>a::after {
        background: #fff;
    }
}

/* -------------------------------------------- toplevel-over ------------------------------------------- */
.navbar-default li[class*="toplevel"]:hover>a,
.navbar-default li[class*="toplevel"]>a:hover,
.navbar-default li[class*="toplevel"]>a:focus,
.navbar-default li[class*="toplevel"].open>a,
.navbar-default li[class*="toplevel"].open>a:hover,
.navbar-default li[class*="toplevel"].open>a:focus,
.navbar-default li[class*="toplevel"][class*="_over"]>a,
.navbar-default li[class*="toplevel"][class*="_over"]>a:hover,
.navbar-default li[class*="toplevel"][class*="_over"]>a:focus {
    color: #377079;
}

.navbar-default li[class*="toplevel"]:focus-within>a {
    color: #377079;
}

.navbar-default li[class*="toplevel"]:hover>a::after,
.navbar-default li[class*="toplevel"]>a:hover::after,
.navbar-default li[class*="toplevel"]>a:focus::after,
.navbar-default li[class*="toplevel"].open>a::after,
.navbar-default li[class*="toplevel"].open>a:hover::after,
.navbar-default li[class*="toplevel"].open>a:focus::after,
.navbar-default li[class*="toplevel"][class*="_over"]>a::after,
.navbar-default li[class*="toplevel"][class*="_over"]>a:hover::after,
.navbar-default li[class*="toplevel"][class*="_over"]>a:focus::after {
    width: 100%;
}

.navbar-default li[class*="toplevel"]:focus-within>a::after {
    width: 100%;
}

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

.navbar-default :is([class*="toplevel"]>ul, [class*="secondlevel"]>ul) {
    padding: 10px;
    background: #ffffff;
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .navbar-default li[class*="secondlevel"]>ul {
        margin: 10px;
    }
}

@media(min-width: 992px) {
    .navbar-default :is(li[class*="toplevel"]>ul, li[class*="secondlevel"]>ul) {
        padding: 18px 30px;
    }

    .navbar-default li[class*="toplevel"]>ul {
        margin-top: 20px;
    }

    .navbar-default li[class*="secondlevel"]>ul {
        margin-top: -18px;
        margin-left: 50px;
    }

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

    .navbar-default li[class*="toplevel"]>ul::before {
        height: 50px;
        left: 0;
        right: 0;
        top: -30px;
    }

    .navbar-default li[class*="secondlevel"]>ul::before {
        width: 52px;
        top: 0;
        bottom: 0;
        left: -52px;
    }
}

/* --------------------------------------------- secondlevel + thirdlevel -------------------------------------------- */

.navbar-default :is(li[class*="secondlevel"]:not(:nth-last-child(2)), li[class*="thirdlevel"]):not(:nth-last-child(2)) {
    border-bottom: 1px solid #377079;
}

.navbar-default :is(li[class*="secondlevel"]>a, li[class*="thirdlevel"]>a) {
    color: #191919;
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
    padding: 11px 0;
    line-height: 1.2;
    text-decoration: none;
    position: relative;
}

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

/* ------------------------------------------ secondlevel + thirdlevel over ------------------------------------------ */

.navbar-default li[class*="secondlevel"]:hover>a,
.navbar-default li[class*="secondlevel"]>a:hover,
.navbar-default li[class*="secondlevel"]>a:focus,
.navbar-default li[class*="secondlevel"].open>a,
.navbar-default li[class*="secondlevel"].open>a:hover,
.navbar-default li[class*="secondlevel"].open>a:focus,
.navbar-default li[class*="secondlevel"][class*="_over"]>a,
.navbar-default li[class*="secondlevel"][class*="_over"]>a:hover,
.navbar-default li[class*="secondlevel"][class*="_over"]>a:focus,
.navbar-default li[class*="thirdlevel"]:hover>a,
.navbar-default li[class*="thirdlevel"]>a:hover,
.navbar-default li[class*="thirdlevel"]>a:focus,
.navbar-default li[class*="thirdlevel"].open>a,
.navbar-default li[class*="thirdlevel"].open>a:hover,
.navbar-default li[class*="thirdlevel"].open>a:focus,
.navbar-default li[class*="thirdlevel"][class*="_over"]>a,
.navbar-default li[class*="thirdlevel"][class*="_over"]>a:hover,
.navbar-default li[class*="thirdlevel"][class*="_over"]>a:focus {
    color: #377079;
}

.navbar-default li[class*="secondlevel"]:focus-within>a,
.navbar-default li[class*="thirdlevel"]:focus-within>a {
    color: #377079;
}

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

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

#topbar .row {
    row-gap: 25px;
}

#headerpic>.row,
#footer>.row {
    row-gap: 40px;
}

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

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

#headerpic {
    background: #377079;
    position: relative;
}

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

/* header text */

#header-text {
    font-weight: 600;
    font-size: 1.125rem;
    padding: clamp(60px, 20vw, 300px) 0 80px 0;
}

.theme-default .nivo-controlNav a,
#header-text {
    color: #fff;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    font-size: 1.125rem;
}

.theme-nivo .nivo-controlNav .slick-dots li {
    color: #fff;
}

#header-text :is(h1, h2, h3) {
    color: #fff;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    font-size: clamp(1.875rem, 3vw, 2.5rem);
}

#header-text :is(h4, h5, h6) {
    color: #fff;
    text-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    font-size: clamp(1.25rem, 3vw, 1.875rem);
}

#header-text a {
background-color: #377079;
color: #fff;
border-radius: 3px;
padding: 6px 12px;
font-size: 1rem;
}

#slider {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 992px) {
    #slider {
        max-height: 450px;
    }
    body.index #slider {
        max-height: 750px;
    }
    #headerpic a.nivo-prevNav {
        left: 65px;
    }
    #headerpic a.nivo-nextNav {
        right: 65px;
    }
}

.slider-mask {
    display: block;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0, rgba(255, 255, 255, 0));
}

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

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

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

#content {
    text-align: left;
    padding-bottom: 30px;
    padding-top: 30px;
}

@media (min-width: 992px) {
    #content {
        padding-bottom: 60px;
        padding-top: 60px;
    }
}

.buttonStyle {
    margin-top: 50px;
}

.buttonStyle a {
    background-color: #377079;
    color: #fff;
    border-radius: 3px;
    padding: 6px 12px;
    font-size: 1rem;
    font-weight: 600;
}
/* ------------------------------------------ h1 - h6, newslink ----------------------------------------- */

.h4link a:link, .h4link a:hover, .h4link a:focus, .h4link a:visited, H6, H5, H4, H3, H2, H1 {
    color: #377079;
    font-weight: 700;
    line-height: 1.2;
    font-family: "Jost", sans-serif;
}

h1, .h1, .legacy_h1 {
    font-size: 1.875rem;
}

@media (min-width: 768px) {
    h1, .h1, .legacy_h1 {
        font-size: 2.375rem;
    }
}

h2, .h2, .legacy_h2 {
    font-size: 1.7rem;
}

@media (min-width: 768px) {
    h2, .h2, .legacy_h2 {
        font-size: 1.875rem;
    }
}

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

h4, .h4, .h4link a:link, .h4link a:hover, .h4link a:focus, .h4link a:visited, .legacy_h4 {
    font-size: 1.5rem;
}

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

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

/* ------------------------------------------------ 2tab ----------------------------------------------- */

#tab2 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 50px 0 85px 0;
    background-attachment: fixed;
}

#tab2 .tab1,
#tab2 .tab2,
#tab2 .tab3 {
    margin-bottom: 30px;
}

#tab2 .tab {
    -webkit-box-shadow: 0px 12px 16px 5px rgba(0,0,0,0.20);
    box-shadow: 0px 12px 16px 5px rgba(0,0,0,0.20);
    background-color: #ffffff;
    color: #191919;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.4;
    min-height: 100%;
    padding: 60px 34px;
    position: relative;
    border-radius: 30px;
}

@media (max-width: 991px) {
    #tab2 > .row > div:last-child{
        margin-top: 30px;
    }

    #tab2 {
        padding: 30px 0;
    }
}

@media (max-width: 767px) {
    #tab2 > .row > div+div{
        margin-top: 30px;
        
    }
}
#tab2 .tabHeadline {
    color: #377079;
    font-size: clamp(1.3rem, 2vw, 1.875rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
    text-align: center;
}

#tab2 .tabHeadline::after {
    color: #377079;
    content: "-";
    display: block;
    margin: -2px 0 2px 0;
}

#tab2 .tab a:not(.has-image):not([rel]) {
    background: #abd3d9;
    border-radius: 4px;
    color: #191919;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 20px;
    padding: 9px 26px;
    text-decoration: none;
    transition: all, 300ms;
}

#tab2 .specialHeadline h1,
#tab2 .specialHeadline h2,
#tab2 .specialHeadline h3{
    color: #377079;
    font-size: clamp(1.875rem, 3vw, 2.375rem);
    font-weight: 700;
}

#tab2 .tab a:not(.has-image):not([rel]):focus,
#tab2 .tab a:not(.has-image):not([rel]):hover {
      transform: scale(1.05);
}

#tab2 .tab:focus a:not(.has-image):not([rel]),
#tab2 .tab:hover a:not(.has-image):not([rel]){
      background:#377079;
      color: #fff;
}

#tab2 .tab::before {
      border: 4px solid #abd3d9;
      bottom: 15px;
      content: "";
      left: 15px;
      pointer-events: none;
      position: absolute;
      right: 15px;
      top: 15px;
      border-radius: 10px;
}

#tab2 .tab::after {
      -moz-transition: top 300ms linear, right 300ms linear, bottom 300ms linear, left 300ms linear, opacity 300ms linear;
      -ms-transition: top 300ms linear, right 300ms linear, bottom 300ms linear, left 300ms linear, opacity 300ms linear;
      -o-transition: top 300ms linear, right 300ms linear, bottom 300ms linear, left 300ms linear, opacity 300ms linear;
      -webkit-transition: top 300ms linear, right 300ms linear, bottom 300ms linear, left 300ms linear, opacity 300ms linear;
      transition: top 300ms linear, right 300ms linear, bottom 300ms linear, left 300ms linear, opacity 300ms linear;
      border: 4px solid #377079;
      bottom: -100px;
      content: "";
      left: -100px;
      opacity: 0;
      pointer-events: none;
      position: absolute;
      right: -100px;
      top: -100px;
      z-index: 1;
      border-radius: 10px;
}

#tab2 .tab:hover::after,
#tab2 .tab:focus::after {
      bottom: 15px;
      left: 15px;
      opacity: 1;
      right: 15px;
      top: 15px;
}

/* ------------------------------------------ extraTab ----------------------------------------- */
.extraTab {
    padding: 40px 0;
}

/* ------------------------------------------ tab14 ----------------------------------------- */

#tab14 {
    padding-top: 60px;
    color: #fff;
}

@media (max-width: 575px) {
    #tab14 {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

#tab14 > .row {
    position: relative;
}

#tab14 > .shadow::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
}

#tab14 .tabHeadline {
    text-align: center;
    font-size: 1.25rem;
    color: #377079;
    font-weight: 600;
    font-style: italic;
}

#tab14 .tab {
    padding: 20px 45px 40px 45px;
    font-size: 1rem;
    background-color: #fff;
    transition: all, 400ms ease-in-out;
    position: relative;
    min-height: 100%;
    color: #191919;
}

@media (max-width: 1199px) {
    #tab14 .tabContent {
        padding: 0 15px;
    }
}

#tab14 .tab::before {
    content: '';
    display: block;
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    width: calc(100% - 38px);
    height: calc(100% - 38px);
    border: 4px solid #abd3d9;
    border-radius: 10px;
}

#tab14 .tab:hover::before {
    border: 4px solid #377079;
}

@media (max-width: 1199px) {
    #tab14 .tab {
        padding: 20px 20px 40px 20px;
        font-size: 1rem;
    }
}

#tab14 .tab a {
    color: #377079;
}

#tab14>.row>.col-xs-12 {
    padding: 0px;
}

@media (min-width: 768px) {
    #tab14>.row>div.col-xs-12:nth-of-type(1)>.tab {
        border-top-left-radius: 30px;
        border-bottom-left-radius: 30px;
    }

    #tab14>.row>div.col-xs-12:nth-last-of-type(1)>.tab {
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
    }
}

@media (max-width: 767px) {
    #tab14 {
        margin: 15px;
    }
    #tab14>.row {
        border-radius: 30px;
        overflow: hidden;

    }
}

#tab14 .tabHeadline::before {
    content: '';
    background-position: center !important;
    background-repeat: no-repeat !important;
    width: 75px;
    height: 75px;
    display: block;
    pointer-events: none;
    margin: auto;
    margin-bottom: 10px;
}

#tab14 .firstab .tabHeadline::before {
    background: url(../img/icon-notfallprofi.png)
}

#tab14 .secondtab .tabHeadline::before {
    background: url(../img/icon-zertifikat.png)
}

#tab14 .thirdtab .tabHeadline::before {
    background: url(../img/icon-medizinisches-buch.png)
}

#tab14 .fourthtab .tabHeadline::before {
    background: url(../img/icon-kurse.png)
}

@media (min-width: 768px) {
    #tab14 .tab:hover,
    #tab14 .tab:focus {
        border-top-right-radius: 30px;
        border-top-left-radius: 30px;
        min-height: calc(100% + 55px);
        margin-top: -55px;
        padding-top: 30px;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        z-index: 55;
    }
}

.specialHeadline {
    margin-bottom: 60px;
}
/* ------------------------------------------------ @13f footer ----------------------------------------------- */

.contactBTN a {
    background: #363636;
    padding: 8px 20px;
    text-align: center;
    color: #fff;
    font-size: 1rem;
    border-radius: 30px;
    display: block;
}

.contactSocial img {
    background: #abd3d9;
    padding: 10px;
    text-align: center;
    border-radius: 50%;
    width: 50px;
}

.contactSocial a+a {
    margin-left: 10px;
}
/* ----------------------------------------------- contact ----------------------------------------------- */

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

#contactFooter {
    background: #fff;
    color: #191919;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 1.0625rem;
}

@media (min-width: 992px) {
    #contactFooter {
        padding-top: 65px;
        padding-bottom: 65px;
    }
}

#contactFooter .tabHeadline {
    font-size: 1.375rem;
    color: #377079;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    position: relative;
}


#contactFooter a {
    color: #377079;
}

#contactFooter ul {
    margin: 0;
    list-style: none;
}

#contactFooter ul > li {
    position: relative;
    padding-left: 15px;
    min-height: 11px;
    -webkit-transition: color 300ms linear;
    -moz-transition: color 300ms linear;
    -ms-transition: color 300ms linear;
    -o-transition: color 300ms linear;
    transition: color 300ms linear; 
}

#contactFooter ul > li + li {
    margin-top: 8px;
}

#contactFooter ul > li::before {
    content: "\203A";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 13px;
}

#contactFooter ul > li:hover,
#contactFooter ul > li:focus {
    color: #377079;
    text-decoration: underline;
}

body:not(.noListStyle) #contactFooter ul {
    padding-left: 0px;
  }
/* ----------------------------------------------- footer ----------------------------------------------- */

footer table td, footer table th {
    padding: 0;
}

footer {
    background-color: #eaf6f8;
    color: #191919;
    font-size: 0.9375rem;
}

#footer {
    padding-top: 30px;
    padding-bottom: 30px;
}

@media (max-width: 767px) {
    #footer .row>.col-xs-12:not(:first-child)::before {
        background: #191919;
        content: " ";
        height: 1px;
        width: 100%;
        display: block;
        margin: 18px 0;
        opacity: 0.08;
    }
    #footer .row>.col-xs-12.hidden-xs~.col-xs-12::before, #footer .row>.col-xs-12.hidden-sm~.col-xs-12::before {
        display: none;
    }
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

@media (max-width: 575px) {
    #innerfooter li {
        display: block;
        line-height: 2;
    }
}

#innerfooter a {
    color: #191919;
    text-decoration: none;
}

#innerfooter a:hover,
#innerfooter a:focus {
    color: #191919;
    text-decoration: underline;
}

@media (min-width: 576px) {
    #innerfooter li+li::before {
        content: "•";
        margin: 0 15px;
        color: #191919;
    }
}

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

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

#vernetzt {
    text-align: right;
    color: #191919;
    line-height: 1.3;
    margin: 0 auto;
    text-decoration: none;
}

@media (min-width: 768px) {
    #vernetzt {
        margin: 0;
    }
}

#vernetzt span {
    color: #191919;
}

#vernetzt span span {
    display: block;
}

#vernetzt img {
    margin-left: 12px;
}

#vernetzt b {
    color: #191919;
}

/***********************************SLIDER_ROOT_FILE DO NOT CHANGE************************************/

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
}
.slick-arrow.slick-hidden {
  display: none;
}

.tabWrapper{
  opacity: 0;
}

@media (min-width: 992px) {
    .tabWrapper{
        max-width: 570px;
        margin: 0 auto;
    }
}

.tabWrapper.slick-initialized{
  opacity: 1;
  transition: opacity 200ms linear;
}


/***********************************ROOT_FILE_END************************************/
#bgTab {
    margin-top: 30px;
    padding: 50px 0;
    background-attachment: fixed;
    background-size: cover;
}

#tab26 hr {
    opacity: 0.8;
}

#tab26 {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 20px 45px 40px 45px;
    font-size: 1rem;
    background-color: #fff;
    transition: all, 400ms ease-in-out;
    position: relative;
    min-height: 100%;
    color: #191919;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#tab26::before {
    content: '';
    display: block;
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    width: calc(100% - 38px);
    height: calc(100% - 38px);
    border: 4px solid #377079;
    border-radius: 10px;
}

#tab26 .slick-slide {
  padding: 15px;
}

#tab26 .slick-dots button,
#tab26 .slick-button {
  background: transparent;
  border: none;
  padding: 5px;
}

#tab26 .slick-button {
  font-size: 0px;
  position: relative;
  top: 4px;
}

#tab26 .slick-prev{
    margin-left: 14px;
}

@media (max-width: 767px) {
    #tab26 .slick-next{
        margin-left: 14px;
    }
}

#tab26 .slick-button::before {
  font-size: 40px;
  line-height: 9px;
  height: 20px;
  display: block;
  color: #000000;
}

#tab26 .slick-button::after {
  content: "";
  pointer-events: none;
  width: 0;
  height: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.05);
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  transition: width 200ms linear, height 200ms linear;
}

#tab26 .slick-button:focus::after,
#tab26 .slick-button:hover::after {
  width: 28px;
  height: 28px;
}

@media (max-width: 767px) {
    #tab26 .slick-button::after,
    #tab26 .slick-button::after {
      width: 28px;
      height: 28px;
    }
}

#tab26 .slick-dots {
  padding: 0 15px;
  list-style: none;
}

#tab26 .slick-dots > li {
  font-size: 0px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #aaaaaa;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  position: relative;
}

#tab26 .slick-dots,
#tab26 .slick-button {
  display: inline-block !important;
}

@media (max-width: 767px) {
  #tab26 .slick-dots {
    display: none !important;
  }
}

#tab26 .slick-dots > li.slick-active {
  background: #abd3d9;
  transition: background 200ms linear;
}

#tab26 .slick-dots > li + li {
  margin-left: 10px;
}

#tab26 .slick-prev::before {
  content: "\2039";
}

#tab26 .slick-next::before {
  content: "\203A";
}


#tab26 .specialHeadline2 h1,
#tab26 .specialHeadline2 h2,
#tab26 .specialHeadline2 h3{
    color: #377079;
    font-size: clamp(1.875rem, 3vw, 2.375rem);
    font-weight: 700;
    margin-bottom: 0;
    margin-top: 20px;
}

/* slider 1 stop/play button for accessibility -------------------- */

#tab26 .slick-animate-control {
   position: relative;
   z-index: 2;
   border-radius: 50%;
   border: 1px solid #ffffff;
   width: 30px;
   height: 30px;
   top: -5px;
   left: 10px;
   background-color: #000;
   background-size: 16px 16px;
   background-position: center;
   background-repeat: no-repeat;
   background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M12 36V12h24v24Z' fill='%23fff'/%3E%3C/svg%3E");
}


#tab26 .slick-animate-control.slick-pause {
  background-size: 20px 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='48' width='48'%3E%3Cpath d='M16 37.85v-28l22 14Z' fill='%23fff'/%3E%3C/svg%3E");
}

