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

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

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

a {
    color: #0079ad;
}

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

#content a {
    font-style: italic;
}

b, strong {
    font-weight: 700;
}

#overflow {
    overflow: hidden;
}

/* --------------------------------------- general --------------------------------------- */

.nopadding{
    padding: 0px;
}

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

#logo {
    display: inline-block;
    padding: 22px 25px
}

#logo img {
    display: block;
}

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

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

/* burgermenu for tablet */

@media (max-width: 991px) {
    #burgerButton {
        font-size: 0;
        border: none !important;
        position: relative;
        z-index: 1002;
        display: block;
        width: 46px;
        height: 40px;
        border-radius: 2px;
        cursor: pointer;
        background-color: #ffffff;
        padding: 3px;
    }
    #burgerButton:before, #burgerButton:after, #burgerButtonInner {
        background-color: #0079ad;
        border-radius: 2px;
        position: absolute;
        width: 40px;
        height: 3px;
        left: 2px;
        -webkit-transition: transform 200ms linear, opacity 200ms linear;
        -moz-transition: transform 200ms linear, opacity 200ms linear;
        -ms-transition: transform 200ms linear, opacity 200ms linear;
        -o-transition: transform 200ms linear, opacity 200ms linear;
        transition: transform 200ms linear, opacity 200ms linear;
    }
    #burgerButton[aria-expanded="true"] #burgerButtonInner {
        -webkit-transform: rotate(-45deg) translate(-6px, 6px);
        transform: rotate(-45deg) translate(-6px, 6px);
    }
    #burgerButton[aria-expanded="true"]:before {
        opacity: 0;
    }
    #burgerButton[aria-expanded="true"]:after {
        -webkit-transform: rotate(45deg) translate(-4px, -6px);
        transform: rotate(45deg) translate(-4px, -6px);
    }
    #burgerButtonInner {
        top: 10px;
    }
    #burgerButton:before {
        top: 18px;
    }
    #burgerButton:after {
        top: 26px;
    }
    #burgerButton:before, #burgerButton:after {
        content: "";
        display: block;
    }
    .navbar-nav {
        margin: 20px 0;
    }
    .navbar-collapse {
        top: 0;
        background:#ffffff;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        overflow-y: auto;
        -webkit-transition: left 300ms linear, opacity 300ms linear;
        -moz-transition: left 300ms linear, opacity 300ms linear;
        -ms-transition: left 300ms linear, opacity 300ms linear;
        -o-transition: left 300ms linear, opacity 300ms linear;
        transition: left 300ms linear, opacity 300ms linear;
    }
    .navbar-collapse.collapse.in {
        left: 0;
        opacity: 1;
        pointer-events: auto;
    }
    .navbar-header {
        height: 50px;
        width: 60px;
        border-radius: 2px;
        padding: 6px 8px;
        background-color: #ffffff;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 101;
        -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    }
    .navbar-collapse.in:after {
        content: "";
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        display: block;
        width: 90px;
        background-color: rgba(0, 0, 0, 0.5);
    }
}

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

/* menu desktop */

@media (min-width: 992px) {
    .horizontally{
        background-color: #ffffff;
    }

    .is-sticky .horizontally {
        -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1);
    }

    nav.horizontally .navbar-nav {
        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;
    }
    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;
    }

       /* Fade in Hover Start */
    .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;
    }

/* Pseudo */

    .navbar-default .navbar-nav > li > .dropdown-menu::before {
        content: "";
        position: absolute;
        display: block;
        height: 10px;
        left: 0;
        right: 0;
        top: -10px;
    }

/* 3rd */

    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu::before {
        content: "";
        position: absolute;
        display: block;
        width: 10px;
        top: 0;
        bottom: 0;
        left: -10px;
    }

    /* Fade in Hover End */
}


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

.navbar-default .navbar-nav>li>a {
    color: #222222;
    font-weight: 600;
    text-align: left;
    padding: 10px 35px 15px 35px;
    position: relative;
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none;
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li {
        border-bottom: 1px solid rgba(46, 60, 72, 0.2);
    }
}

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

@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::before {
    content: "";
    max-width: 80%;
    width: 0%;
    height: 2px;
    display: inline-block;
    background-color: #0079ad;
    transition: all, 300ms;
    position: absolute;
    bottom: 0px;
}

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

.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: #0079ad;
}

.navbar-nav>li:focus-within>a{
    color: #0079ad;
}


.navbar-nav>li:hover>a::before,
.navbar-nav>li>a:hover::before,
.navbar-nav>li>a:focus::before,
.navbar-nav>li.open>a::before,
.navbar-nav>li.open>a:hover::before,
.navbar-nav>li.open>a:focus::before,
.navbar-nav>li[class$="_over"]>a::before,
.navbar-nav>li[class$="_over"]>a:hover::before,
.navbar-nav>li[class$="_over"]>a:focus::before {
    width: 100%;
}

.navbar-nav>li:focus-within>a::before{
    width: 100%;
}
/* -------------------------------------- secondlevel + thirdlevel dropdown-box -------------------------------------- */

.navbar-default .navbar-nav>li>.dropdown-menu,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
    background-color: rgba(255,255,255,0.90);
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .navbar-default .navbar-nav>li>.dropdown-menu {
        padding: 15px;
    }
}

@media(min-width:992px) {

    .navbar-default .navbar-nav>li>.dropdown-menu {
        margin-top: 10px;
    }

    .navbar-default .navbar-nav>li>.dropdown-menu,
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        padding-top: 18px;
        padding-bottom: 18px;
    }
    .navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu {
        margin-top: -18px;
        margin-left: 10px;
    }
}

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

.navbar-default .navbar-nav>li>.dropdown-menu>li>a,
.navbar-default .navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li>a {
    color: #222222;
    font-weight: 400;
    text-align: left;
    padding: 9px 25px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

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

.navbar-nav>li>.dropdown-menu>li:hover>a,
.navbar-nav>li>.dropdown-menu>li>a:hover,
.navbar-nav>li>.dropdown-menu>li>a:focus,
.navbar-nav>li>.dropdown-menu>li.open>a,
.navbar-nav>li>.dropdown-menu>li.open>a:hover,
.navbar-nav>li>.dropdown-menu>li.open>a:focus,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:hover,
.navbar-nav>li>.dropdown-menu>li[class$="_over"]>a:focus,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:hover>a,
.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: #2aafe8;
    color: #222222;
}

.navbar-nav>li>.dropdown-menu>li:focus-within>a,
.navbar-nav>li>.dropdown-menu>li>.dropdown-menu>li:focus-within>a{
    background: #2aafe8;
    color: #222222;
}

/* ------------------------------------------ topbar ----------------------------------------- */

#topbar {
    color: #222222;
    background: linear-gradient(90deg, rgba(20,28,59,1) 0%, rgba(20,28,59,1) 60%, rgba(42,175,232,1) 60%, rgba(42,175,232,1) 100%);
    padding: 27px 0 31px 0;
}

#tabName {
    color: #ffffff;
    background-color: #141c3b;
}

#tabName a {
    color: #ffffff;
}

/* ------------------------------------------ contrast + styler ----------------------------------------- */

#optionsWrapper span{
    font-size: 0.875rem;
    font-weight: 600;
    color: #222222;
    margin-right: 10px;
}

#contrast_style {
    line-height: 0;
}

#contrast_style button {
    padding: 0;
    border: none;
    background: transparent;
    display: inline-block;
}

#contrast_style button+button {
    margin-left: 10px;
}

#style{
    margin-left: 30px;
}

#style button {
    border: none;
    color: #222222;
    font-size: 16px;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-weight: 600;
    text-align: center;
    background-color: #fff;
    position: relative;
    line-height: 1;
    -webkit-transition: all, 300ms;
    -moz-transition: all, 300ms;
    -ms-transition: all, 300ms;
    -o-transition: all, 300ms;
    transition: all, 300ms;
    padding: 0px;
    border: 1px solid #3b677a;
}

#style button+button {
    margin-left: 10px;
}

#style button:hover {
    color: #0079ad;
}

/* ------------------------------------------ Banner ----------------------------------------- */

#headerpic{
    overflow: hidden;
}

#slider {
    height: 300px !important;
    position: relative;
}

@media (max-width: 575px) {
    #slider{
        height: 200px !important;
    }
}

#headerpicWrapper{
    position: relative;
    max-width: 1740px;
    width: 100%;
    margin: auto;
    background-color: #ffffff;
}

@media (min-width: 992px) {
    #headerpicWrapper {
        background-color: #222222;
    }
    #slider {
        height: 500px !important;
    }
    body.index #slider {
        height: 735px !important;
    }
}

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

#headerpic .nivo-controlNav{
    display: none !important;
}

.nivo-directionNav a {
    width: 70px !important;
    height: 70px !important;
    background: #fff !important;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
    text-indent: unset !important;
    opacity: 1 !important;
    top: 47% !important;
    font-size: 0 !important;
}

.nivo-directionNav a:hover,
.nivo-directionNav a:focus{
    background-color: #141c3b !important;
}

.nivo-directionNav a:hover::before,
.nivo-directionNav a:focus::before{
    color: #2aafe8;
}

@media (min-width: 1850px) {
    .nivo-prevNav{
        left: -30px !important;
    }

    .nivo-nextNav{
        right: -30px !important;
    }

    #slider{
        overflow: visible;
    }
}

.nivo-prevNav::before,
.nivo-nextNav::before{
   content: '\276F';
   text-indent: unset !important;
   position: absolute;
   font-size: 52px;
   color: #2aafe8;
   line-height: 47px;
   font-weight: 700;
   display: inline-block;
   pointer-events: none;
   content: '\276F';
   transition: all, 300ms;
   font-family: 'Mulish', sans-serif;
}
.nivo-prevNav::before {
   left: 48% !important;
   top: 13px !important;
   transform: translate(-50%) rotate(180deg);
}

.nivo-nextNav::before {
   left: 50% !important;
   top: 11px !important;
   transform: translate(-50%);
}

@media (max-width: 991px) {
    .nivo-directionNav a{
        width: 40px !important;
        height: 40px !important;
    }

    .nivo-prevNav::before,
    .nivo-nextNav::before{
        font-size: 28px;
    }

    .nivo-prevNav::before {
        left: 48% !important;
        top: -1px !important;
        transform: translate(-50%) rotate(180deg);
    }

    .nivo-nextNav::before {
        left: 50% !important;
        top: -4px !important;
        transform: translate(-50%);
    }

    .nivo-directionNav a{
        top: 45% !important;
    }
}

.slider-mask {
    display: block;
    height: auto;
    top: 0;
    background: linear-gradient(to top, rgba(20,28,59,0.85), rgba(20,28,59,0.00));
    bottom: 0;
    left: 0;
    right: 0;
}
/* ------------------------------------------ overlay ----------------------------------------- */


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

    #overlay::before{
        content:'';
        pointer-events: none;
        display: block;
        max-width: 1170px;
        width: 100%;
        height: 2px;
        background-color: rgba(255,255,255,0.40);
        pointer-events: none;
        margin: 25px auto;
    }

}

#overlay .tab a {
    color: #2aafe8;
    font-style: italic;
}

@media (max-width: 991px) {
    #overlay{
        background-color: #141c3b;
        padding:0 0 30px 0;
        
    }

    #overlay > .row > div{
        margin-top: 30px;
    }
}

#overlay{
    color: #fff;
    font-size: 0.875rem;
    padding-bottom: 25px;
}

#overlay .specialHeadline h2,
#overlay .tabHeadline{
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

#overlay a{
    color: #fff;
}

#search {
    height: 40px;
    display: inline-block;
    position: relative;
    border: 1px solid #fff;
    max-width: 280px;
    width: 100%;
}
#search_input {
    color: #fff;
    font-size: 15px;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 40px;
    padding-left: 10px;
    padding-right: 43px;
    height: 37px;
    width: 100%;
}
#search_submit {
    width: 40px;
    background: url("../img/lupe-icon.png") center no-repeat;
    padding: 0;
    cursor: pointer;
    line-height: 40px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    font-size: 0;
    -webkit-transition: background-color 300ms linear;
    -moz-transition: background-color 300ms linear;
    -ms-transition: background-color 300ms linear;
    -o-transition: background-color 300ms linear;
    transition: background-color 300ms linear;
}
#search_submit:hover{
    background-color: rgba(255,255,255,0.20);
}
#search_input::-ms-input-placeholder {
    color: #fff !important;
}
#search_input::-webkit-input-placeholder {
    color: #fff !important;
}
#search_input::-moz-placeholder {
    opacity: 1;
}
#search_input:-moz-placeholder {
    opacity: 1;
}

#search_input:focus::placeholder,
#search_input:focus-within::placeholder{
    opacity: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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 #222222;
}

/* -------------------------------------------- @18tab -------------------------------------------- */

#tab18 {
    padding: 40px 0;
    font-size: 1.125rem;
    color: #222222;
    position: relative;
    background-color: #f2f2f2;
}

@media (min-width: 992px) {
    #tab18  {
        padding: 70px 0;
    }
}

#tab18::before{
    content:'';
    position: absolute;
    top: -200px;
    left: 0px;
    right: 0px;
    bottom: 0;
    background-color: #f2f2f2;
    display: inline-block;
    z-index: -1;
}

#tab18 > .row {
    max-width: 1170px;
    width: 100%;
}

#tab18 .template-page .row-1 div:nth-child(2n+1) h2 {
    font-size: clamp(1.125rem, 3vw, 1.3125rem);
    font-weight: 700;
    color: #222222;
    margin-bottom: 0;
    position: absolute;
    bottom: 0;
    background: #2aafe8;
    text-align: center;
    padding: 25px 15px;
    border-top: 10px solid #fff;
    left: 0;
    right: 0;
    hyphens: auto;
}

#tab18 .template-page .row-1 div:nth-child(2n+2) h2 {
    font-size: clamp(1.125rem, 3vw, 1.3125rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
    position: absolute;
    bottom: 0;
    background: #141c3b;
    text-align: center;
    padding: 25px 15px;
    border-top: 10px solid #2aafe8;
    left: 0;
    right: 0;
    hyphens: auto;
}

@media (max-width: 767px) {
    #tab18 .template-page .row-1 div:nth-child(2n+1) h2 {
        padding: 10px 15px;
    }
    
    #tab18 .template-page .row-1 div:nth-child(2n+2) h2 {
        padding: 10px 15px;
    }
}

#tab18 img {
    display: block;
    object-fit: cover;
    -o-object-fit: cover;
    height: 100%;
    max-width: unset;
    max-height: unset;
    width: 100%;
}

#tab18 .btgrid .content{
    overflow: hidden;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

#tab18 .btgrid a:not(.has-image):not([rel]){
    display: inline-block;
    padding: 8px 15px;
    background: #fff;
    font-size: 1.125rem;
    color: #222222;
    transition: all, 300ms;
    -webkit-transition: all, 300ms;
    -o-transition: all, 300ms;
    -ms-transition: all, 300ms;
    -moz-transition: all, 300ms;
    text-decoration: none;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0;
}

#tab18 .btgrid a:not(.has-image):not([rel]):hover,
#tab18 .btgrid a:not(.has-image):not([rel]):focus{
    background: #141c3b;
    border: 1px solid #141c3b;
    color: #2aafe8;
    border-radius: 0px;
}

#tab18 .btgrid a::after{
    content:'\2192';
    margin-left: 3px;
    font-size: 1rem;
}

/* ------------------------------------------------- map ------------------------------------------------ */

#map {
    position: relative;
    z-index: 1;
    margin-bottom: -40px;
}

#map iframe,
#map .iframe-wrapper-manual-enabling {
    width: 100%;
    min-width: 100% !important;
    height: 320px !important;
}

#map iframe {
    display: block;
}

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

#footer >.row {
    position: relative;
}

@media (min-width: 1200px) {
    #footer >.row::before {
        position: absolute;
        display: block;
        content: '';
        width: 303px;
        height: 414px;
        left: -300px;
        bottom: -26px;
        background: url('../img/geselle.png') no-repeat;
    }
}

#footer {
    background: linear-gradient(180deg, rgba(42,175,232,1) 0%, rgba(42,175,232,1) 60%, rgba(20,28,59,1) 60%, rgba(20,28,59,1) 100%);
    
    padding-top: 70px;
    padding-bottom: 26px;
    font-size: 1rem;
}

@media (min-width: 992px) {
    #footer {
        background: linear-gradient(90deg, rgba(42,175,232,1) 0%, rgba(42,175,232,1) 60%, rgba(20,28,59,1) 60%, rgba(20,28,59,1) 100%);    
    }
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: block;
}

#innerfooter a {
    color: #222222;
}

@media (min-width:500px) {
    #innerfooter li {
        display: inline-block;
    }

    #innerfooter li+li::before {
        content: "";
        margin: 0 15px;
        color: #222222;
    }
}

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

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

#vernetzt {
    text-align: right;
    font-size: 0.9375rem;
    color: #ffffff;
    line-height: 1.2;
    margin: 20px auto 0 auto;
    text-decoration: none;
}

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

#vernetzt b {
    font-weight: 700;
}

#vernetzt span span {
    display: block;
}

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