@charset "utf-8";

* {
    box-sizing: border-box;
}

:root {
    font-size: 16px;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 0.875em;
    line-height: 1.431em;
}

#wrapper {
    max-width: 54.375rem;
    margin: 1rem auto;
    box-shadow: 0rem 0rem 1.4375rem #A6A6A6;
    padding: 1rem 2rem 0.5rem;
}

header {
    padding: 0 2rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

header p {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    column-gap: 1rem;
}

aside {
    padding: 0 2rem;
}

.map {
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: none;
    width: 100%;
    height: 100%;
}

footer {
    margin: 1rem 0 1.5rem;
    background-color: #007BA6;
    padding: 0.5rem 1rem;
    color: #fff;
}

footer p {
    text-align: center;
}

section {
    display: inline-block;
    width: 100%;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
}

figure {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

a {
    white-space: nowrap;
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.link {
    width: 12.5rem;
    line-height: 3.125rem;
    display: block;
    text-align: center;
    background: #007BA6;
    color: #fff;
}

.link:hover {
    background-color: #F7A823;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    text-align: left;
}

h1 {
    font-size: 1.892em;
    line-height: 1.1em;
    text-align: center;
}

h2 {
    font-size: 1.431em;
    line-height: 1.231em;
}

.gruen {
    border: 0.0625rem solid #95C11F;
}

.gruen:hover {
    background-color: #95C11F;
    color: #fff;
}

.gruen:hover a {
    color: #fff;
}

.link_blue {
    color: #0F2A46;
}

.blau {
    border: 0.0625rem solid #007BA6;
}

.blau:hover {
    background-color: #007BA6;
    color: #fff;
}

.orange {
    border: 0.0625rem solid #F7A823;
}

.orange:hover {
    background-color: #F7A823;
    color: #fff;
}

ul {
    padding-left: 1.5rem;
}

li {
    padding-bottom: 0.2rem;
}

@media only screen and (max-width:53.6875rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    header {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }

    .box {
        align-self: flex-start;
    }

    aside {
        padding: 0 1rem;
    }
}

@media only screen and (max-width:36.875rem) {
    figure {
        display: block;
    }

    .link {
        margin: .937rem 0
    }
}

@media only screen and (max-width:23.4375rem) {

    p,
    ul {
        hyphens: auto;
    }

    header p {
        flex-direction: column;
        row-gap: 0.3125rem;
    }
}
