/* roboto-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/roboto-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/roboto-v30-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --main-color: #39a9c1;
    --main-bg-color: #def0f5;
}

body {
    margin: 0;
    padding: 0;
    color: #898989;
    font-family: Roboto;
}

.wrap {
    width: 1100px;
    margin: 0 auto;
    position: relative;
}

.flexwrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner {
    background-color: var(--main-bg-color);
    color: var(--main-color);
    padding-top: 60px;
    padding-bottom: 70px;
}

.logo {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 25px;
}

.logo a {
    text-decoration: none;
}

.logo a:hover {
    opacity: .7;
}

.logo h1 {
    color: var(--main-color);
    text-transform: uppercase;
}

.menu ul {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu ul li {
    color: var(--main-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
}

.menu ul li a {
    color: var(--main-color);
    text-decoration: none;
    position: relative;
}

.menu ul li a:hover {
    color: #003c64;
}

.menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    width: 0%;
    height: 4px;
    background-color: #003c64;
}

.menu ul li a:hover::after {
    transition: all 0.3s;
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    width: 100%;
    height: 4px;
    background-color: #003c64 !important;
}

.menu ul li a.active::after {
    transition: all 0.3s;
    content: "";
    position: absolute;
    left: 0;
    top: 22px;
    width: 100%;
    height: 4px;
    background-color: var(--main-color);
}

.titelbild {
    width: 100%;
}

.seitentitel {
    margin-top: -4px;
    height: 80px;
    background: var(--main-color);
}

.seitentitel h2 {
    font-size: 22px;
    text-transform: uppercase;
    line-height: 80px;
    margin: 0;
    color: #fff;
}

.content {
    margin-top: 80px;
}

.content a {
    color: var(--main-color);
    text-decoration: none;
}

.content a:hover {
    color: #0081b5;
    text-decoration: underline;
}

.content h3 {
    margin-top: 60px;
    margin-bottom: 0;
}

.content p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
}

.content ul {
    list-style: '- ';
}

.content ul li {
    font-size: 20px;
    line-height: 30px;
}

.content table td {
    font-size: 20px;
    line-height: 30px;
}

.leistungen {
    text-align: center;
    font-size: 24px;
    line-height: 42px;
    font-weight: bold;
}

.footer {
    padding-top: 40px;
    padding-bottom: 30px;
    text-align: right;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    line-height: 50px;
    display: inline-block;
    border-left: 2px solid var(--main-color);
    padding-left: 15px;
    padding-right: 10px;
    line-height: 25px;
}

.footer ul li:first-child {
    padding-left: 0;
    border: 0;
}

.footer ul li a {
    color: var(--main-color);
    text-decoration: none;
}

.footer ul li a:hover {
    color: var(--main-color);
    text-decoration: underline;
}

#map { 
    height: 460px;
}

.leaflet-tile-pane {
    filter: grayscale(50%);
}

@media only screen and (max-width:1200px) {
    .wrap {
        width: 90%;
    }

    .startseite .titelbild, .stellenangebote .titelbild {
        min-height: 300px;
        object-fit: cover;
        object-position: 100% 150%;
    }

    .titelbild {
        min-height: 300px;
        object-fit: cover;
        object-position: 0 0;
    }

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

    .menu ul {
        flex-wrap: wrap;
    }

    .content {
        margin-top: 40px;
    }

    .content p {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 40px;
    }

    .banner {
        padding-top: 10px;
        padding-bottom: 30px;
    }

    #map { 
        height: 350px;
    }

    .seitentitel h2 {
        font-size: 18px;
    }
}