:root {
    font-size: 16px;
}

@font-face {
    font-display: swap;
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/ibm-plex-sans-v19-latin-regular.eot');
    src: url('../fonts/ibm-plex-sans-v19-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ibm-plex-sans-v19-latin-regular.woff2') format('woff2'),
        url('../fonts/ibm-plex-sans-v19-latin-regular.woff') format('woff'),
        url('../fonts/ibm-plex-sans-v19-latin-regular.ttf') format('truetype'),
        url('../fonts/ibm-plex-sans-v19-latin-regular.svg#IBMPlexSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'IBM Plex Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/ibm-plex-sans-v19-latin-700.eot');
    src: url('../fonts/ibm-plex-sans-v19-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ibm-plex-sans-v19-latin-700.woff2') format('woff2'),
        url('../fonts/ibm-plex-sans-v19-latin-700.woff') format('woff'),
        url('../fonts/ibm-plex-sans-v19-latin-700.ttf') format('truetype'),
        url('../fonts/ibm-plex-sans-v19-latin-700.svg#IBMPlexSans') format('svg');
}




* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-size: 16px;
    line-height: 1.4;
    font-family: 'IBM Plex Sans', Arial, sans-serif;
    color: #4A4A4A;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 16px auto;
    border: 1px solid #FF0000;
    padding: 2px;
    overflow: hidden;
    background-color: #fff;
    border-radius: 20px;
}

.container {
    border: 1px solid #4A4A4A;
    border-radius: 20px;
}

.kontakt {
    padding: 0 75px 2rem;
}

h1 {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 25px;
    font-weight: 700;
    text-align: center;
}

h2 {
    margin: 16px 0 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #FF0000;
}

.bold {
    font-weight: 700;
}

.margin {
    margin: 0 0 1rem;
}

p:not(:last-of-type) {
    margin-bottom: 18px;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

article {
    padding: 0 75px;
}

.logo {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 13px;

}

.banner {
    margin: 0 0 2rem;
}

.logo div {
    padding: 0 5px 5px;
}

footer {
    margin: 18px 0 0 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

figure {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 18px 0;
}

ul {
    margin: 0 0 16px;
    list-style: none;
}

ul li {
    padding-left: 24px;
}

ul li:before {
    content: "\2022";
    color: #4A4A4A;
    float: left;
    margin-top: 1px;
    font-size: 22px;
    line-height: 1em;
    text-indent: -24px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: underline;
    white-space: nowrap;
}

.link {
    color: #233C59 !important;
    text-decoration: underline !important;
}

.color {
    color: #FF0000;
}

@media all and (max-width:800px) {
    #wrapper {
        margin: 0;
        border: none;
        border-radius: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    article {
        padding: 0 1rem;
    }

    .kontakt {
        padding: 0 1rem 1rem;
    }

    br:not(footer br, h1 br) {
        display: none;
    }

    p span {
        white-space: nowrap;
    }
}

@media all and (max-width:767px) {
    #wrapper {
        margin: 0;


    }

    .container {
        border: none;
    }
}