@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), 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-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), 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');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.3em;
    color: #000000;
    font-weight: 400;
}

#wrapper {
    margin: 1rem auto;
    border: 1px #999 solid;
    max-width: 930px;
    position: relative;
    background: #FFF url(../images/banner.jpg) no-repeat top left;
    overflow: hidden;
}

header {
    display: none;
}

article {
    padding: 24px 16px 10px 12px;
    margin: 41px 84px 0 0;
    background: rgba(255, 255, 255, 0.77);
}

.flex {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.box {
    width: 48%;
}

.box:first-of-type {
    width: 49.5%;
}

.kontakt {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 74px 24px;
}

footer {
    border-bottom: 25px solid #E94142;
    padding: 10px 25px 5px;
    background: #fff;
}

.logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 5px 0 0;
}

.button a {
    display: inline-block;
    padding: 10px 16px;
    background: #E9343D;
    color: #fff !important;
    border: 1px solid transparent;
    font-weight: 700;
    margin: 0 auto !important;
    text-decoration: underline !important;
}

.margin {
    margin: 14px 0 0;
    display: inline-block;
}

p {
    text-align: justify;
    hyphens: auto;
    margin-bottom: 10px;
}

h1 {
    margin: 0 0 15px;
    font-size: 21px;
    line-height: 26px;
    font-weight: 700;
}

h1 small {
    display: block;
    font-size: 16px;
    line-height: 21px;
}

h2 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    margin: 0 0 4px;
}

ul {
    list-style: none;
    padding: 0 0 10px 14px;
}

ul li {
    padding-left: 13px;
    margin: 0 0 3px;
}

ul li:before {
    content: '\2022';
    float: left;
    font-size: 23px;
    margin-top: 1px;
    text-indent: -13px;
}

ul.ul {
    padding-bottom: 0;
}

ul.ul li {
    background: url('../images/icon.png') no-repeat 0 8px;
}

ul.ul li::before {
    display: none;
}

.center {
    margin: 6px 0 34px;
    text-align: center;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000000;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

footer p {
    text-align: center;
    line-height: 24px;
    margin: 0;
}

@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0;
        background-size: cover;
    }

    .kontakt {
        padding: 0;
    }
}

@media only screen and (max-width:900px) {
    article {
        margin: 16px 16px 0 0;
    }
}

@media only screen and (max-width:767px) {
    #wrapper {
        background: #FFF;
    }

    header {
        display: block;
    }

    article {
        padding: 1rem;
        margin: 0;
    }

    ul {
        padding-left: 0;
    }

    .flex {
        flex-direction: column;
        gap: 0;
    }

    .box {
        width: 100% !important;
    }

    footer {
        padding: 0.25rem 1rem 1rem;
    }

    .logo {
        margin: 16px 0 0;
        justify-content: center;
    }

    :is(p, ul) {
        hyphens: auto;
        text-align: left;
    }

    h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    h1 br {
        display: none;
    }

    span {
        white-space: nowrap;
    }
}