@import url('https://fonts.verwaltungsportal.de/import/?family=PT+Sans:400,400i,700,700i');

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

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

a {
    color: #03588c;
}

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

b,
strong {
    font-weight: 700;
}

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

#logo {
    display: inline-block;
}

#logo img {
    display: block;
}

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

    .horizontally>.row {
        row-gap: 12px;
    }
}

.logo,
.logo a {
    color: #ffffff !important;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none !important;
}

.logo :is(:hover, :focus),
.logo a:is(:hover, :focus) {
    color: #ffffff;
    text-decoration: none !important;
}

.logo img {
    margin-right: 25px;
}

@media (min-width: 576px) {
    .logo .template-page>.row>div {
        display: flex;
        align-content: center;
        align-items: center;
    }
}

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

nav.horizontally {
    padding: 15px 0;
    background-color: #03588c;
    border-bottom: 7px solid #0378a6;
}

/* burgermenu for tablet */

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

    #burgerButton::before,
    #burgerButton::after,
    #burgerButtonInner {
        background-color: #03588c;
        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: #03588c;
        position: fixed;
        left: -100%;
        bottom: 0;
        z-index: 100;
        height: auto !important;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        overflow-y: auto;
        transition: left 300ms linear, opacity 300ms linear, box-shadow 600ms linear;
        box-shadow: 250px 0 50vw 50vw rgba(255, 255, 255, 0);
    }

    .navbar-collapse:is([aria-expanded="true"], .in) {
        left: 0;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        box-shadow: 250px 0 50vw 50vw rgba(0, 0, 0, 0.6);
    }

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

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

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

/* menu desktop */

@media (min-width: 992px) {
    nav.horizontally {
        position: sticky;
        top: 0;
        z-index: 1010;
        padding: 12px 0;
    }

    .padding0 {
        padding-left: 0;
        padding-right: 0;
    }
    
    nav.horizontally .navbar-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

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

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

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

    nav.horizontally .navbar-nav [class*="toplevel"]:is(:nth-last-child(1), :nth-last-child(2), :nth-last-child(3))>ul {
        left: unset !important;
        right: 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: #ffffff;
    font-weight: 400;
    text-align: left;
    padding: 10px 15px 15px 15px;
    position: relative;
    font-size: 1.125rem;
    line-height: 1.2;
    text-decoration: none;
}

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

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

    nav.horizontally a[class*="toplevel"] {
        text-align: center;
        padding: 12px 0;
    }
}

nav.horizontally a[class*="toplevel"]::before {
    content: "";
    width: 0;
    height: 5px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    background-color: #ffffff;
    opacity: 0;
    transition: opacity 300ms linear, width 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: #ffffff;
}

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

/* secondlevel + thirdlevel dropdown-box */

nav.horizontally [class*="toplevel"] ul {
    background-color: #fff;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    nav.horizontally [class*="toplevel"]>ul {
        padding: 10px 0;
    }
}

@media(min-width:992px) {
    nav.horizontally [class*="toplevel"] ul {
        padding-top: 18px;
        padding-bottom: 18px;
    }

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

    nav.horizontally [class*="toplevel"]>ul::before,
    nav.horizontally [class*="secondlevel"]>ul::before {
        content: "";
        position: absolute;
        display: block;
    }

    nav.horizontally [class*="toplevel"]>ul::before {
        height: 10px;
        left: 0;
        right: 0;
        top: -10px;
    }

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

    nav.horizontally [class*="secondlevel"]>ul::before {
        width: 10px;
        top: 0;
        bottom: 0;
        left: -10px;
    }
}

/* secondlevel + thirdlevel */

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"]) {
    color: #444444;
    font-weight: 400;
    text-align: left;
    padding: 8px 25px 8px 40px;
    font-size: 1rem;
    line-height: 1.2;
    text-decoration: none;
}

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

nav.horizontally a:is([class*="secondlevel"], [class*="thirdlevel"])::after {
    content: "";
    display: block;
    position: absolute;
    left: 25px;
    top: 16px;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background: #444444;
    transition: background 300ms linear;
}

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

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

nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]):is(:hover, :focus-within)>a::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])>a:is(:hover, :focus)::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"]).open>a:is(:hover, :focus)::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a::after,
nav.horizontally li:is([class*="secondlevel"], [class*="thirdlevel"])[class*="_over"]>a:is(:hover, :focus)::after {
    background: #03588c;
}

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

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

#slider {
    max-height: 340px;
    position: relative;
}

@media (min-width: 768px) {
    #headerpic .nivo-controlNav {
        top: 15px;
        bottom: unset;
    }
}

@media (min-width: 992px) {
    body.index #slider {
        max-height: clamp(400px, 80vw, 860px);
    }

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

@media (min-width: 768px) {
    #headerpic-text {
        position: absolute;
        bottom: -1px;
        right: 0;
        left: 0;
        z-index: 30;
    }
}

#headerpic-text .template-page {
    padding: 18px 30px;
    background: rgba(3, 88, 140, 0.9);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    #headerpic-text .template-page {
        display: inline-block;
        width: auto;
    }
}

#headerpic-text .template-page::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: -50vw;
    bottom: 0;
    width: 50vw;
    background: rgba(3, 88, 140, 0.9);
}

@media (max-width: 767px) {
    #headerpic-text .template-page::after {
        z-index: -1;
        right: -10vw;
        width: 120vw;
        background: #03588c;
    }
}

#headerpic-text * {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    line-height: 1.2;
}

#headerpic-text a {
    text-decoration: underline;
}

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

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

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

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

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

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

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

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

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

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

/* ------------------------------------------ interview ----------------------------------------- */

#interview {
    padding-bottom: clamp(40px, 6vw, 70px);
}

#interview>.row {
    row-gap: 30px;
}

#interview .tab {
    height: 100%;
    background: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1)
}

#interview .tab .template-page {
    padding: 30px 20px 20px 30px;
}

#interview .tab :is(h1, h2, h3, h4, h5, h6):not(.tab-headline) {
    font-size: 1.375rem;
}

.tab-headline {
    color: #ffffff;
    background: #03588c;
    font-size: 1.5625rem;
    padding: 12px 30px;
    margin: 0;
}

/* ---------------------------------------- button design --------------------------------------- */

:is(.button-style, #events .tab_link_mehr) a {
    text-decoration: none;
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    background: #1a2a40;
    padding: 8px 30px;
    display: inline-block;
    font-weight: 700;
}

:is(.button-style, #events .tab_link_mehr) a:is(:hover, :focus) {
    background: #03588c;
}

#events .tab_link_mehr {
    font-size: 0;
}

#footer .button-style.contact-button a {
    display: block;
    width: 100%;
    text-align: center;
    text-transform: none;
}

#footer .button-style.contact-button a:is(:hover, :focus) {
    background: #0378a6;
}

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

#events,
#news {
    padding-bottom: clamp(40px, 6vw, 70px);
}

:is(#events, #news) .tab-headline {
    margin-bottom: 30px;
}

:is(#events, #news) .tab_link {
    margin-top: 30px;
    font-size: 1rem;
}

:is(#events, #news) .tab_link_entries {
    display: grid;
    gap: 30px;
}

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

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

    #news .tab_link_entries {
        grid-template-columns: repeat(3, 1fr);
    }
}

:is(#events, #news) .tab_link_entry {
    border-bottom: none !important;
    text-align: center;
    position: relative;
    background: #ffffff;
    padding: 165px 20px 20px 20px;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

:is(#events, #news) .tab_link_entry .tab_link_title a::before {
    content: "";
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

:is(#events, #news) .tab_link_entry .tab_link_title a::before,
:is(#events, #news) .tab_link_entry .tab_preview_picture {
    display: block;
    height: 150px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

:is(#events, #news) .tab_link_entry .tab_preview_picture {
    z-index: 1;
}

:is(#events, #news) .tab_preview_picture img {
    margin: 0 !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#events .tab_link_date {
    font-weight: 700;
}

#news .tab_date {
    position: absolute;
    z-index: 1;
    top: 130px;
    display: inline-block;
    padding: 6px 12px;
    background: #1a2a40;
    color: #ffffff;
    left: 50%;
    transform: translateX(-50%);
}

:is(#events, #news) .tab_link_title a {
    color: #03588c;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2;
    text-decoration: none;
}

:is(#events, #news) .tab_link_entry .tab_link_mehr {
    font-size: 0;
    line-height: 0;
}

:is(#events, #news) .tab_link_entry .tab_link_mehr>a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url("../img/mehr-erfahren.png") center top calc(50% - 20px) no-repeat, linear-gradient(to bottom, rgba(3, 88, 140, 0.8), rgba(3, 88, 140, 1) 150px);
    z-index: 1;
    color: #ffffff;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    padding-top: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    opacity: 0;
    text-decoration: none;
    transition: opacity 200ms linear;
}

:is(#events, #news) .tab_link_entry:is(:hover, :focus-within) .tab_link_mehr>a {
    opacity: 1;
}

:is(#events, #news) .button-style {
    margin-top: 30px;
}

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

/* ----------------------------------------------- @6nw news -------------------------------------------- */

#nw6 {
    font-size: 1rem;
    padding-bottom: clamp(30px, 3vw, 50px);
}

#nw6 .tabHeadline {
    color: #ffffff;
    background: #03588c;
    font-size: 1.5625rem;
    padding: 12px 30px;
    margin-bottom: 0;
}

#nw6>.row {
    row-gap: 30px;
}

#nw6 .tab_link_entries {
    display: grid;
    gap: 30px;
}

@media (min-width: 576px) {
    #nw6 .tab_link_entries {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    #nw6 .tab_link {
        margin-top: 18px;
    }

    #nw6 .tab_link_entries {
        grid-template-columns: repeat(3, 1fr);
    }
}

#nw6 .tab_link_entry {
    text-align: center;
    position: relative;
    width: 100%;
    border-bottom: none !important;
    padding: 165px 20px 20px 20px;
    background: #ffffff;
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

#nw6 .tab_link_entry::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: center / cover no-repeat, #666666;
}

#nw6 .tab_link_entry .tab_preview_picture {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    top: 0;
    height: 150px;
    overflow: hidden;
    background: #ffffff;
}

#nw6 .tab_preview_picture img {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
}

#nw6 .tab_date {
    position: absolute;
    display: inline-block;
    z-index: 1;
    left: 50%;
    top: 134px;
    font-weight: 400;
    font-size: 1rem;
    color: #ffffff;
    padding: 4px 10px;
    background: #1a2a40;
    transform: translateX(-50%);
}

#nw6 .tab_link_title a {
    color: #03588c;
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.2;
    text-decoration: none;
}

#nw6 .tab_link_entry>div:nth-last-child(2) {
    font-size: 0;
    line-height: 0;
}

#nw6 .tab_link_entry>div:nth-last-child(2)>a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    text-align: center;
    font-size: 0;
    color: #ffffff;
    font-weight: 400;
    display: flex !important;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: linear-gradient(to bottom, rgba(3, 118, 163, 0.8), rgba(3, 88, 140, 1) 150px);
    opacity: 0;
    transition: opacity 200ms linear;
}

#nw6 .tab_link_entry:hover div:nth-last-child(2)>a {
    opacity: 1;
}

#nw6 .tab_link_entry div:nth-last-child(2)>a::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -40px;
    margin-top: -60px;
    width: 80px;
    height: 80px;
    background: url("../img/mehr-erfahren.png") center no-repeat;
}

#nw6 div:nth-last-child(2)>a::after {
    content: "mehr erfahren";
    margin-top: 100px;
    font-size: 1.25rem;
    font-weight: 700;
}

#nw6 a:hover,
#nw6 a:focus {
    text-decoration: none;
}

/* ----------------------------------------- @6nw tab_link_mehr_main ---------------------------------------- */

#nw6 .tab_link_mehr_main {
    color: transparent;
    font-size: 0;
    text-align: right;
}

#nw6 .tab_link_mehr_main a {
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    padding: 13px 25px;
    background: #1a2a40;
    transition: color 300ms linear, background 300ms linear;
}

#nw6 .tab_link_mehr_main a:hover,
#nw6 .tab_link_mehr_main a:focus {
    color: #ffffff;
    background: #03588c;
}

/* -------------------------------------------- tabs -------------------------------------------- */

#tabs {
    padding-bottom: clamp(40px, 6vw, 70px);
}

#tabs>.row {
    row-gap: 30px;
}

#tabs .tab {
    padding: 20px 30px;
    height: 100%;
    background: #fff;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    transition: outline 300ms linear;
    outline: 4px solid transparent;
    position: relative;
}

#tabs .tab :is(.row, .row>*) {
    position: static;
}

#tabs .tab:is(:hover, :focus-within) {
    outline: 4px solid #03588c;
}

#tabs .tab :is(h1, h2, h3, h4, h5, h6, a) {
    margin: 0;
    font-size: 1.5625rem;
    line-height: 1.2;
    font-weight: 700;
    text-decoration: none;
}

#tabs a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#tabs .tab img {
    display: block;
    width: calc(100% + 60px);
    max-width: calc(100% + 60px);
    margin: -20px -30px 20px -30px;
}

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

footer {
    font-size: 1rem;
}

#footer {
    background-color: #03588c;
    color: #ffffff;
    padding: clamp(30px, 5vw, 45px) 0;
}

#footer>.row {
    row-gap: 30px;
}

footer>.row {
    padding: 18px 0;
    row-gap: 18px;
}

#innerfooter ul {
    padding: 0;
}

#innerfooter li {
    display: inline-block;
}

#innerfooter a:not(:is(:hover, :focus)) {
    color: inherit;
}

#innerfooter li+li::before {
    content: "•";
    margin: 0 clamp(15px, 2vw, 25px);
    color: #444444;
}

.contact-tel {
    display: inline-block;
    font-size: 1.875rem;
    font-weight: 700;
    padding-left: 40px;
    background: url('../img/icon-phone.png') center left no-repeat;
}

.contact-social img {
    background: #1a2a40;
    padding: 8px;
    text-align: center;
    border-radius: 50%;
    transition: background 300ms linear;
}

.contact-social a:is(:hover, :focus) img,
.contact-social img:hover {
    background: #0377a4;
}

.contact-social a+a {
    margin-left: 10px;
}

/* vernetzt */

#vernetzt {
    gap: 10px;
    text-align: right;
    font-size: 0.8125rem;
    color: #444444;
    line-height: 1.3;
    font-weight: 400;
    text-decoration: none;
}

#vernetzt span span {
    display: block;
}

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