@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: 18px;
    font-size: 15px;
    font-weight: 400;
}

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

header {
    margin: 0;
    background: url(../images/background.jpg) no-repeat;
    position: relative;
}

article {
    padding: 0 30px 0 275px;
}

footer {
    margin: 0 0 0 275px;
    background: url(../images/background-footer.jpg) no-repeat;
    padding: 9px 41px;
    display: flex;
    justify-content: flex-end;
    font-weight: bold;
}

footer p {
    margin: 0;
    font-size: 18px;
}

footer p a {
    color: #FFF !important;
}

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

h1 {
    padding: 46px 0 45px;
    font-size: 29px;
    line-height: 1;
    text-align: center;
    color: #d51e24;
}

h2 {
    font-size: 16px;
    margin: 30px 0 12px;
    line-height: 20px;
}

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 1rem;
    list-style: none;
}

ul li {
    padding-left: 1.5rem;
    margin: 0 0 5px;
}

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

.font {
    font-size: 110%;
}

.text {
    margin: -115px 32px 0 275px;
    position: relative;
}

.text p {
    color: #FFF;
    text-align: justify;
    hyphens: auto;
}

.margin {
    margin-top: 10px;
}

.images {
    position: absolute;
    top: 173px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo {
    opacity: 0;
}

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

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

    .text {
        margin-top: -11%;
    }

    br:not(footer br) {
        display: none;
    }

    p span {
        white-space: nowrap;
    }
}

@media all and (max-width:850px) {
    .logo {
        opacity: 1;
    }

    header {
        background: #FFF;
    }

    .text {
        margin: 0 0 0 258px;
        background: #d51e24;
        padding: 1rem 1rem 0;
    }

    h1 {
        background: #FFF;
        margin: 0 -1rem;
        padding: 1.5rem 1rem;
    }
}

@media all and (max-width:767px) {
    .images {
        position: static;
        flex-direction: row;
    }

    .text {
        margin: 0;
    }

    article {
        padding: 0 1rem;
    }

    footer {
        margin: 0;
        background-size: 100% 100%;
    }
}