@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    line-height: 20px;
    font-size: 1rem;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 600px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
}

header {
    background: #e6bf0a;
    padding: 5px 1rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    flex-wrap: wrap;
}

article {
    padding: 0 14px;
    background: url(../images/background.jpg) no-repeat;
    height: 683px;
}

footer {
    display: none;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 28px;
    line-height: 1;
}

h2 {
    font-size: 20px;
    margin: 8px 0 0;
    line-height: 24px;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

ul {
    margin: 0 0 15px 8px;
    list-style: none;
}

ul li {
    padding-left: 10px;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 22px;
    text-indent: -10px;
}

.padding {
    width: 212px;
    padding: 0 0 0 8px;
}

hr {
    display: block;
    width: 67%;
    background: #000;
    height: 2px;
    border: none;
}

@media all and (max-width:599px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }
}

@media all and (max-width:580px) {
    #wrapper {
        background: #FFF url(../images/background-mobile.jpg) no-repeat;
        background-size: cover;
    }

    br {
        display: none;
    }

    ul {
        margin-left: 0;
    }

    .padding {
        width: auto;
        padding: 0;
    }

    .kontakt br {
        display: inline !important;
    }

    header {
        flex-direction: column;
    }

    article {
        padding: 0 1rem;
        background: none;
        height: auto;
    }

    footer {
        display: flex;
        justify-content: flex-end;
    }
}