@import url('https://fonts.verwaltungsportal.de/import/?family=Oxygen:300,400,700,300i,400i,700i');
body {
    font-family: "Oxygen", sans-serif;
    font-weight: 400;
    color: #2d2d2d;
    background: #ffffff;
    font-size: 1rem; /* 1rem = 16px */
    line-height: 1.5;
}

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

a {
    color: #1e7650;
}

a:hover,
a:focus {
    color: #1e7650;
    text-decoration: underline;
}
b, strong {
    font-weight: 700;
}


.nivo-control{
    color: #fff !important;
}
/* --------------------------------------------- logo -------------------------------------------- */

.logo a {
    display: inline-block;
}

#contactTabs .logo img {
    display: block;
}

@media (max-width: 991px) {
    .logo img {
        max-width: 210px;
        max-height: 50px;
    }

    nav .logo {
        position: fixed;
        top: 10px;
        left: 15px;
        z-index: 102;
    }
}

/* ----------------------------------------- zeiten - phone --------------------------------------- */

address {
    font-style: normal;
}

.zeiten, .phone, #button {
    display: inline-block;
    color: #2d2d2d;
    line-height: 1;
}

.zeiten, .phone {
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    padding: 12px 0 12px 40px;
}

@media (min-width: 992px) {
    .zeiten {
        border-right: 1px solid #ededed;
        padding-right: 20px;
        margin-right: 10px;
    }
    #button {
        margin-left: 40px;
    }
}

@media (min-width: 992px) {
    .zeiten {
        border-right: 1px solid #ededed;
        padding-right: 20px;
        margin-right: 10px;
    }
    #button {
        margin-left: 15px;
    }
}

@media (min-width: 1200px) {
    .zeiten, .phone {
        font-size: 1.125rem;
    }

    #button {
        margin-left: 35px;
    }
}


#contactTabs {
    background-color: #ffffff;
    padding: 25px 0;
}

#button {
    font-size: 1rem;
}

#button a {
    display: inline-block;
    color: #ffffff;
    background-color: #007e47;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    padding: 16px 12px;
    font-weight: 700;
    text-decoration: none;
}

@media (min-width: 992px) {
    #button a {
        padding: 17px 40px;
        margin-left: 30px;
    }
    #button .row > div > p {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
    }
}

@media (max-width: 991px) {
    #button {
        margin-top: 10px;
        display: block;
    }
}

#button a:hover,
#button a:focus {
    background: #006639;
}

/* ------------------------------------------ navigation ------------------------------------------ */

#menu {
    background: url(../img/noten.png) center bottom no-repeat #fff;
}

/* burgermenu for tablet */

@media (max-width: 991px) {  
    #burgerButton {
        font-size: 0;
        border: none !important;
        position: absolute;
        z-index: 1002;
        display: block;
        width: 46px;
        height: 40px;
        border-radius: 2px;
        cursor: pointer;
        background-color: #ffffff;
        padding: 3px;
        right: 12px;
        top: 50%;
        margin-top: -20px;
    }
    #burgerButtonInner2, #burgerButton:after, #burgerButtonInner {
        background-color: #000;
        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"] #burgerButtonInner2 {
        opacity: 0;
    }
    #burgerButton[aria-expanded="true"]:after {
        -webkit-transform: rotate(45deg) translate(-4px, -6px);
        transform: rotate(45deg) translate(-4px, -6px);
    }
    #burgerButtonInner {
        top: 11px;
    }
    #burgerButtonInner2 {
        top: 19px;
    }
    #burgerButton:after {
        top: 27px;
        content: "";
        display: block;
    }
    .navbar-nav {
        margin: 20px 0;
        width: 100%;
    }
    .navbar-collapse {
        top: 70px;
        background:  #fff;
        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[aria-expanded="true"],
    .navbar-collapse.in {
        left: 0;
        opacity: 1;
        pointer-events: auto;
    }
    .navbar-header {
        height: 70px;
        line-height: 1;
        border-radius: 2px;
        padding: 10px 15px;
        background-color: #ffffff;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        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-toggle::before {
        content: "";
        opacity: 0;
        position: fixed;
        top: 70px;
        right: 0;
        bottom: 0;
        width: 0;
        z-index: -1;
        display: block;
        background-color: rgba(0, 0, 0, 0.5);
        -webkit-transition: width 300ms linear, opacity 300ms linear;
        -moz-transition: width 300ms linear, opacity 300ms linear;
        -ms-transition: width 300ms linear, opacity 300ms linear;
        -o-transition: width 300ms linear, opacity 300ms linear;
        transition: width 300ms linear, opacity 300ms linear;
    }
    .navbar-toggle[aria-expanded="true"]::before {
        opacity: 1;
        width: 90px;
    }
}

@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 {
        position: relative;
    }

    #menu > .row:first-child::before {
        content: '';
        position: absolute;
        width: 35px;
        height: 98px;
        background: url(../img/notegross.png) no-repeat;
        left: 60px;
        bottom: 10px;
        pointer-events: none;
    }

    nav.horizontally .navbar-nav {
        padding-left: 15px;
        -webkit-flex-grow: 1;
        flex-grow: 1;
        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;
    }
    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;
    }
}

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

.navbar-default .navbar-nav>li>a {
    color: #1a1a18;
    font-weight: bold;
    text-align: center;
    padding: 10px 35px;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
}

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

    .navbar-default .navbar-nav>li:nth-child(2n+1)>a {
        background: url(../img/not1.png) center top 7px no-repeat;
    }
    
    .navbar-default .navbar-nav>li:nth-child(2n+2)>a {
        background: url(../img/not2.png) center top no-repeat;
    }
}

@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;
    left: 0;
    bottom: 0;
    width: 0;
    display: block;
    height: 2px;
    background-color: transparent;
    -webkit-transition: width 300ms linear, background 300ms linear;
    -moz-transition: width 300ms linear, background 300ms linear;
    -ms-transition: width 300ms linear, background 300ms linear;
    -o-transition: width 300ms linear, background 300ms linear;
    transition: width 300ms linear, background 300ms linear;
}

/* -------------------------------------------- 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: #bc2024;
    background-color: transparent;
}

.navbar-nav>li:focus-within>a {
    color: #bc2024;
    background-color: transparent;
}

@media (min-width: 992px) {
    .navbar-nav>li:nth-child(2n+1):hover>a,
.navbar-nav>li:nth-child(2n+1)>a:hover,
.navbar-nav>li:nth-child(2n+1)>a:focus,
.navbar-nav>li:nth-child(2n+1).open>a,
.navbar-nav>li:nth-child(2n+1).open>a:hover,
.navbar-nav>li:nth-child(2n+1).open>a:focus,
.navbar-nav>li:nth-child(2n+1)[class$="_over"]>a,
.navbar-nav>li:nth-child(2n+1)[class$="_over"]>a:hover,
.navbar-nav>li:nth-child(2n+1)[class$="_over"]>a:focus {
    background: url(../img/not1.png) center top 7px no-repeat;
}

.navbar-nav>li:nth-child(2n+1):focus-within>a {
    background: url(../img/not1.png) center top 7px no-repeat;
}

.navbar-nav>li:nth-child(2n+2):hover>a,
.navbar-nav>li:nth-child(2n+2)>a:hover,
.navbar-nav>li:nth-child(2n+2)>a:focus,
.navbar-nav>li:nth-child(2n+2).open>a,
.navbar-nav>li:nth-child(2n+2).open>a:hover,
.navbar-nav>li:nth-child(2n+2).open>a:focus,
.navbar-nav>li:nth-child(2n+2)[class$="_over"]>a,
.navbar-nav>li:nth-child(2n+2)[class$="_over"]>a:hover,
.navbar-nav>li:nth-child(2n+2)[class$="_over"]>a:focus {
    background: url(../img/not2.png) center top no-repeat;
}

.navbar-nav>li:nth-child(2n+2):focus-within>a {
    background: url(../img/not2.png) center top no-repeat;
}
}


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

.navbar-default .navbar-nav>li>.dropdown-menu, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), inset 0 0 20px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), inset 0 0 20px 0 rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        padding: 15px;
    }
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        background-color: rgba(255,255,255,0.1);
    }
}

@media(min-width:992px) {
    .navbar-default .navbar-nav>li>.dropdown-menu, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        margin-top: -10px;
        margin-left: 6px;
    }
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu::before {
        content: "";
        position: absolute;
        display: block;
        width: 6px;
        top: 0;
        bottom: 0;
        left: -6px;
    }
}

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

.navbar-default .navbar-nav>li>.dropdown-menu>li>a, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    color: #2d2d2d;
    text-align: center;
    padding: 6px 35px;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
}

.navbar-default .navbar-nav>li>.dropdown-menu>li>a {
    font-weight: 400;
}

@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: left;
        padding: 6px 25px;
    }
    .navbar-default .navbar-nav>li>.dropdown-menu>li>a::before, .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a::before {
        content: "\0007C";
        margin-right: 5px;
    }
}

/* ------------------------------------------ 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{
    background: transparent;
    color: #bc2024;
}
.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: transparent;
    color: #1e7650;
}

.navbar-nav > li > .dropdown-menu > li:focus-within > a,
.navbar-nav > li > .dropdown-menu > li > .dropdown-menu > li:focus-within > a {
    background: transparent;
    color: #bc2024;
}

/* -------------------------------------------- social buttons ------------------------------------------- */

@media (max-width: 991px) {
    #social {
        border-top: 4px solid #ffffff;
        margin: 12px 0;
        padding-top: 12px;
        width: 100%;
    }
}

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

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

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

@media (min-width: 992px) {
    #slider {
        max-height: 450px;
    }

    body.index #slider {
        max-height: 500px;
    }
}

@media (min-width: 1200px) {
    body.index #slider {
        max-height: 700px;
    }
}

#headerpic {
    margin: 70px auto 0 auto;
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

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

#headerpic .slider-wrapper {
    position: relative;
}

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

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

    #headerpic .nivo-controlNav {
        text-align: left;
        width: 970px;
        bottom: 13px;
        left: 50%;
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }


}

@media (min-width: 1200px) {
    #headerpic .nivo-controlNav {
        width: 1170px;
    }


}

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

.slider-mask {
    display: none;
}

body.index .slider-mask {
    display: none;
}

#slogan {
    position: relative;
    font-size: 1.2rem;
    pointer-events: auto;
    text-transform: uppercase;
    padding-top: 15px;
    letter-spacing: 2px;
    color: #2d2d2d;
    padding: 25px;
    line-height: 1.1;
}

#slogan a {
    color: #2d2d2d;
    border: 2px solid #2d2d2d;
    display: inline-block;
    font-size: 1rem;
    padding: 8px 10px;
    margin-top: 15px;
    text-decoration: none;
}

@media (max-width: 767px) {
    #slogan {
        padding-top: 20px;
        padding-bottom: 20px;
        border-bottom: 2px solid #000;
        background: none;
    }
}

@media (min-width: 768px) {
    #slogan {
        font-size: 1.4rem;
        color: #ffffff;
        text-shadow: 4px 4px 13px rgba(0, 0, 0, 0.95);
    }
    #slogan a {
        color: #ffffff;
        border-color: #ffffff;
        margin-top: 25px;
        text-shadow: 4px 4px 13px rgba(0, 0, 0, 0.95);
    }
}

@media (min-width: 992px) {
    #slogan {
        font-size: 1.875rem;
    }

    #slogan a {
        padding: 12px 30px;
        font-size: 1.125rem;
    }
}

#slogan a:hover,
#slogan a:focus {
    background: rgba(0,0,0,0.6);
}

#slogan p {
    margin: 0;
}

#slogan b, #slogan strong {
    font-weight: bold;
    display: block;
    text-transform: none;
    letter-spacing: 0;
    font-size: 2rem;
}

@media (min-width: 768px) {
    #slogan b, #slogan strong {
        font-size: 2.8rem;
    }

    #bannerOverlay {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 53;
        pointer-events: none;
    }
}

@media (min-width: 992px) {
    #slogan b, #slogan strong {
        font-size: 3.4375rem;
    }

    #bannerOverlay {
        bottom: 50px;
    }
}

@media (min-width: 1200px) {
    #bannerOverlay {
        bottom: 50px;
    }
}





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

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


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

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

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

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

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

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

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

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

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

#newslinks, #newsmandate {
    border: 1px solid #000;
}

/* ----------------------------------------------- news + events -------------------------------------------- */

#news .tab,
#eventsBG {
    border-radius: 3px;
    background-color: #be2236;
    overflow: hidden;
}

#news .tab{
    background-color: #58cf39;
}


.tab a {
    color: #fff;
}

#news .tab a{
    color: #303030;
}

#news .tab,
#events .tab {
    padding: 30px;
    color: #ffffff;
    background-position: top 20px right 20px;
    background-repeat: no-repeat;
}

#news .tab{
    color: #303030;
}

#news .tabHeadline{
    color: #303030;
    margin: 0 0 20px 0;
    font-size: 1.5rem;
}
#events .tabHeadline {
    color: #ffffff;
    margin: 0 0 20px 0;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    #news .tabHeadline,
    #events .tabHeadline {
        margin: 0 0 25px 0;
    }
}

@media (min-width: 1200px) {
    #news .tabHeadline,
    #events .tabHeadline {
        -webkit-hyphens: manual;
        -moz-hyphens: manual;
        -ms-hyphens: manual;
        hyphens: manual;
    }
}

#news .tabHeadline::after,
#events .tabHeadline::after {
    display: none;
}

#news .tab_link_entry,
#events .tab_link_entry {
    font-size: 1rem;
    position: relative;
    width: 100%;
}

#news .tab_link_title a,
#events .tab_link_title a {
    line-height: 1.2;
    font-weight: 600;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 8px;
}

@media (min-width: 576px) {
    #news .tab_link_entries,
    #events .tab_link_entries {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

/* --------------------------------------------------- news ------------------------------------------------ */

#news >.row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 30px;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

#news .tab {
    background-image:  url('../img/icon-zeitung.png');
}

#news .tab,
#news .tab_link,
#news .tab_link > div {
    height: 100%;
    min-height: 100%;
}

#news .tab_link_entry {
    background: #ffffff;
    border-radius: 3px;
    padding: 160px 30px 30px 30px;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

@media (min-width: 576px) and (max-width: 767px) {
    #news .tab_link_entry {
        width: calc(50% - 15px);
    }

    #news .tab_link_entry:nth-child(2n+1) {
        margin-right: 15px;
    }

    #news .tab_link_entry:nth-child(2n+2) {
        margin-left: 15px;
    }
}

@media (min-width: 768px) {
    #news .tab_link_entry {
        width: calc(33.33% - 20px);
    }

    #news .tab_link_entry + .tab_link_entry {
        margin-left: 30px;
    }
}

@media (max-width: 767px) {
    #news .tab_link_entry+.tab_link_entry {
        margin-top: 30px;
    }
}

@media (min-width: 576px) {
    #news .tab_link_entry:nth-child(2) {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    #news .tab_link {
        margin-top: 30px;
    }
}

#news .tab_link_title a::before,
#news .tab_link_entry .tab_preview_picture {
    position: absolute;
    display: block;
    top: -1px;
    left: -1px;
    right: -1px;
    height: 120px;
    overflow: hidden;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

#news .tab_link_title a::before {
    content: "";
    background: url("../img/news-standard.jpg") center / cover no-repeat;
}

#news .tab_preview_picture img {
    position: absolute;
    margin: 0 !important;
    left: 50%;
    top: 50%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    max-width: 350px;
    width: auto;
    height: auto;
    -ms-interpolation-mode: bicubic;
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

#news .tab_date {
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    left: -1px;
    top: 105px;
    z-index: 1;
    display: inline-block;
    padding: 6px 20px;
    background: #be2236;
    color: #fff;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

#news .tab_link_title a {
    color: #348320;
}

.tab_link_entries + div,
.tab_link_entries .tab_spacer,
.tab_link_entry > div:nth-last-child(2) {
    display: none;
}

/* -------------------------------------------------- events ----------------------------------------------- */


#eventsBG .tab {
    background-image: url('../img/icon-kalender.png');
}

#events .tab_link,
#events .tab_link > div {
    height: 100%;
    min-height: 100%;
}

#events .tab_link_entry {
    color: #ffffff;
    padding: 30px;
    border: none !important;
}

@media (min-width: 576px) and (max-width: 767px) {
    #events .tab_link_entry {
        width: 50%;
    }
}

@media (min-width: 768px) {
    #events .tab_link_entry {
        width: 33.33%;
    }
}

#events .tab_link_title a {
    color: #ffffff;
}

.tab_link_entries + div,
.tab_link_entries .tab_spacer,
.tab_link_entry > div:nth-last-child(2) {
    display: none;
}

@media (max-width: 767px) {
    #events .tab_link_entry:nth-child(3n+1) {
        background: rgba(0,0,0,0.1);
    }

    #events .tab_link_entry:nth-child(3n+2) {
        background: rgba(255,255,255,0.1);
    }
}

@media (min-width: 768px) {
    #events .tab_link_entry:nth-child(6n+1),
    #events .tab_link_entry:nth-child(6n+5) {
        background: rgba(0,0,0,0.1);
    }

    #events .tab_link_entry:nth-child(6n+3),
    #events .tab_link_entry:nth-child(6n+4) {
        background: rgba(255,255,255,0.1);
    }
}

/* ----------------------------------------------- booking ----------------------------------------------- */

#booking {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #000;
    font-weight: normal;
    color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
}

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

#booking .tabHeadline {
    font-weight: bold;
    color: #ffffff;
    text-transform: none;
}

#booking h2,
#booking h4,
#booking h6 {
    color: #ffffff;
}

#booking .tabHeadline {
    margin-bottom: 0px;
}

#booking a {
    display: inline-block;
    color: #ffffff;
    background: #be2236;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    padding: 16px 16px;
    font-weight: 700; 
    line-height: 1;
    text-decoration: none;
}

#booking a:hover,
#booking a:focus {
    background: #b71215;
}

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

footer a,
footer a:hover,
footer a:focus {
    color: #fff;
}

#contact {
    background-color: #be2236;
    color: #ffffff;
    border-top: 10px solid #fff;
    padding-top: 15px;
    padding-bottom: 15px;
}

@media (min-width: 768px) {
    #contact {
        padding-top: 0;
        padding-bottom: 0;
    }
}

#contact .row>*:nth-child(1) .contactTab {
    padding-left: 25px;
    padding-right: 25px;
}

@media (min-width: 767px) {
    #contact > .row > div:nth-child(1) .contactTab::after{
        content: '';
        height: 100%;
        right: 15px;
        width: 1px;
        display: inline-block;
        background-color: #a31c20;
        position: absolute;
        top: 0px;
        max-height: 74%;
        top: 13%;  
    }
}

@media (max-width: 991px) {
    #contact .row>*:nth-child(1) .contactTab {
        margin-bottom: 15px;
    }
}

.contactTab {
    padding-top: 15px;
    padding-bottom: 15px;
    min-height: 100%;
}

@media (min-width: 768px) {
    .contactTab {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

.contactTab .tabHeadline {
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 1.875rem;
    color: #ffffff;
}

.contactTab .logo {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    display: block;
}

#footer {
    background-color: #9f1d2d;
    padding-top: 15px;
    padding-bottom: 15px;
}

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

#innerfooter a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    font-weight: 400;
    padding: 4px 8px;
}

#innerfooter a:hover,
#innerfooter a:focus {
    color: #fff;
    background-color: rgba(255,255,255,0.2);
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

#innerfooter li+li {
    margin-left: 10px;
}

@media (min-width: 992px) {
    #innerfooter li+li {
        margin-left: 20px;
    }
}

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

#vernetzt {
    text-align: left;
    font-size: 0.9375rem;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 auto;
    font-weight: 300;
    text-decoration: none;
}

@media (max-width: 991px) {
    #vernetzt {
        margin: 20px auto;
    }
}

#vernetzt b {
    color: #ffffff;
    font-weight: 400;
}

#vernetzt span {
    color: #ffffff;
}

#vernetzt span span {
    display: block;
}

#vernetzt img {
    margin-right: 14px;
}

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

#scrollTop {
    font-size: 0;
    width: 34px;
    height: 34px;
    display: block;
    position: relative;
    margin: 0 auto;
    background-color: #bc2024;
    -webkit-transition: border-radius 300ms linear;
    -moz-transition: border-radius 300ms linear;
    -ms-transition: border-radius 300ms linear;
    -o-transition: border-radius 300ms linear;
    transition: border-radius 300ms linear;
}

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

#scrollTop:hover,
#scrollTop:focus {
    border-radius: 50%;
}

#scrollTop::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 13px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 7px 7px;
    border-color: transparent transparent #fff transparent;
}