@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
    color: #2B302B;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 72.5rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 1.562rem #ccc;
}

header {
    background-color: #EF001F;
    border-bottom: 1.25rem solid #AB0C19;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 2rem;
}

article {
    padding: 5rem 2rem 0;
}

article aside {
    width: 260px;
    float: right;
    background-color: #eee;
    padding: 1rem 1rem 0;
    margin: 0.187rem 0 0 2rem;
    min-height: 1175px;
    height: auto !important;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-direction: column;
}

article aside .details {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
}

article p {
    margin: 1rem 0;
}

article h1 {
    text-align: left;
    font-size: 1.792em;
    line-height: 1.1;
    font-weight: 600;
    color: #EF001F;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

article h1 span {
    font-weight: normal;
    font-size: 0.631em;
    line-height: 1;
}

article h2 {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 600;
    color: #EF001F;
    text-transform: uppercase;
}

article ul {
    margin: 1rem 0 1rem 1.2rem;
}

article ul li ul {
    margin: .2rem 0 .3rem 1.2rem;
}

a:link,
a:visited,
a:hover,
a:active {
    color: #0000ff;
    text-decoration: underline;
    white-space: nowrap;
}

footer {
    padding: 1rem 2rem 2rem;
}

footer a.apply {
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
    color: #EF001F;
}

footer a.apply img {
    display: inline;
    margin: 0 0 -1rem .625rem;
}

footer img.kununu {
    margin-top: 2rem;
}

@media only screen and (max-width: 72.438rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 61.25rem) {

    article {
        padding: 1rem 2rem 0;
    }

    article aside {
        width: 100%;
        float: none;
        margin: 2rem 0 0 0;
        min-height: auto;
        padding: 1rem;
    }

    article aside .details {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    article aside .details .detail {
        width: 33%;
        height: 80px;
    }
}

@media only screen and (max-width: 50.75rem) {

    article aside .details .detail {
        width: 50%;
    }
}

@media only screen and (max-width: 31.25rem) {

    article aside .details .detail {
        width: 100%;
    }
}

@media only screen and (max-width: 30rem) {

    header {
        justify-content: center;
    }

    header img {
        margin-top: 1rem;
    }

    article {
        padding: 1rem 1rem 0;
    }

    article h1 {
        text-align: center;
        font-size: 1.6rem;
    }

    footer {
        padding: 1rem 1rem 2rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}