@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'),
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    line-height: 19px;
    font-size: 14px;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 910px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
}

header {
    display: flex;
    gap: 16px;
    flex-direction: column;
    margin: 50px 50px 25px;
    justify-content: center;
    align-items: center;
}

.info {
    padding: 0 50px;
}

footer {
    padding: 1rem;
    background: #3d3d3d;
}

footer p {
    text-align: center;
    color: #FFF;
}

footer a {
    color: #FFF !important;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 31px;
    line-height: 36px;
    color: #d73b27;
    text-align: center;
}

h1 span {
    font-size: 75%;
}

h2 {
    font-size: 16px;
    line-height: 22px;
    color: #d73b27;
}

p:not(.kontakt p, footer p) {
    margin: 0 0 20px;
}

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

img {
    max-width: 100%;
}

ul {
    margin: 0 0 25px;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
}

ul li:before {
    content: "\25A0";
    float: left;
    color: #d73b27;
    font-family: Arial, sans-serif;
    font-size: 8px;
    text-indent: -1.25rem;
    margin: -2px 0 0;
}

.flex {
    display: flex;
    align-items: flex-end;
    margin: 0 0 16px;
    gap: 20px;
    position: relative;
}

.kontakt {
    padding: 20px 1rem;
    background: #f3f3f3;
}

.flex .bieten {
    width: calc(100% - 180px);
}

.kontakt p {
    text-align: center;
}

.zertifikat {
    position: absolute;
    bottom: 35px;
    right: 0;
}

@media all and (max-width:909px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(p, ul, h1) {
        hyphens: auto;
        text-wrap: pretty;
    }

    span:not(h1 span) {
        white-space: nowrap;
    }

    .flex {
        padding: 0 0 2rem;
    }

}

@media all and (max-width:767px) {
    header {
        margin: 1rem;
    }

    .info {
        padding: 0 1rem;
    }

}

@media all and (max-width:480px) {
    .flex {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .flex .bieten {
        width: 100%;
    }

    .zertifikat {
        width: auto;
        position: static;
    }

    footer {
        margin: 0 -1rem;
        padding: 10px 2rem;
    }

}