@charset "utf-8";

* {
    box-sizing: border-box;
}

body {
    color: #666666;
    font-family: "Arial", Helvetica, sans-serif;
    font-size: .963rem;
    line-height: 1.4;
    margin: 0;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    border: none;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.tab {
    display: none;
}

.tab+label {
    display: inline-block;
    cursor: pointer;
}

.tab__content {
    display: none;
}

.tab:checked:nth-of-type(1)~.tab__content:nth-of-type(1),
.tab:checked:nth-of-type(2)~.tab__content:nth-of-type(2) {
    opacity: 1;
    display: block;
}

#tab1+label {
    position: absolute;
    top: 1.25rem;
    left: 1.5rem;
}

#tab2+label {
    position: absolute;
    top: 1.25rem;
    left: 4.925rem;
}

.main_content {
    padding: 0.5rem 0 1rem;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

a.link {
    width: 12.5rem;
    line-height: 3.125rem;
    display: block;
    text-align: center;
    background: #e6b61c;
    margin: 1.5rem auto;
    color: #fff;
}

.link:hover {
    background-color: #cc9000;
    text-decoration: none;
}

.link-footer {
    color: #e6b61c;
}

span {
    display: inline-block;
}

h1 {
    font-size: 1.7rem;
    color: #e6b61c;
    width: 70%;
}

h1 span {
    font-weight: 400;
    font-size: 1.6rem;
}

h2 {
    font-size: 1.3rem;
    line-height: 1.231em;
    color: #e6b61c;
}

ul {
    padding-left: 1rem
}

li {
    padding-bottom: 0.2rem;
    list-style-type: none;
}

li:before {
    content: "\2022";
    color: #e6b61c;
    float: left;
    margin-left: -0.9375rem;
    font-size: 1.3125rem;
    line-height: 1;
}

header {
    padding: 17rem 1.5rem 0;
}

article {
    padding: 0 1.5rem;
}

footer {
    margin: 0 1.5rem;
    background-color: #F9F9F9;
}

footer p {
    text-align: center;
    font-weight: bold;
    padding: 1rem 1.5rem;
    color: #e6b61c;
}

.logo {
    position: absolute;
    right: 0;
    top: 4.5rem;
    width: 100%;
}

.bild {
    display: flex;
    justify-content: flex-end;
    padding-right: 1.5rem;
}

.aside {
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.color {
    background-color: #F9F9F9;
    padding: 0.5rem 1rem;
}

section {
    position: absolute;
    top: 4rem;
    left: 1.5rem;
}

.icon {
    margin-right: 1rem;
}

.kontakt {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 6rem;
}

.info {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: 1rem;
}

.bewerben {
    width: 85%;
}

.info img {
    margin-top: 1.5rem;
}

.slider {
    position: relative;
}

.slider>img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
}

.slider>img:nth-of-type(1) {
    position: static;
    opacity: 1;
}

.slider>img:nth-of-type(2) {
    animation-delay: 6s;
}

.slider>img:nth-of-type(3) {
    animation-delay: 12s;
}

@keyframes imageAnimation {
    4% {
        opacity: 1;
    }

    33% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 1.875rem;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    #tab1+label {
        left: 1rem;
    }

    #tab2+label {
        left: 4.61rem;
    }

    header {
        padding: 21rem 0 0;
    }

    article {
        padding: 0;
        display: block;
    }

    footer {
        margin: 0 1rem;
    }

    h1 {
        font-size: 1.592em;
        text-align: center;
        width: auto;
    }

    section {
        padding: 4rem 1rem 0;
        width: 100%;
        left: 0;
    }

    section p {
        text-align: center;
    }

    .bild {
        justify-content: center;
    }

    .kontakt,
    .info {
        display: block;
    }

    .info p,
    .info h2 {
        text-align: center;
    }

    .info img {
        margin: .625rem auto;
    }

    .bewerben {
        width: 100%;
    }

    footer {
        margin: 0;
    }
}

@media only screen and (max-width:34.687rem) {

    ul {
        padding: 0.5rem 0 0 1rem;
    }
}

@media only screen and (max-width: 29.563rem) {
    h1 {
        font-size: 1.4rem;
    }

    h1 span {
        font-size: 1.2rem;
    }
}