@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');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #002443;
    line-height: 1.25rem;
    font-size: 1rem;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #828385;
    overflow: hidden;
    background-color: #fff;
}

header {
    position: relative;
}

article {
    padding: 1rem 4rem;
}

footer {
    background: #002443;
    display: flex;
    justify-content: center;
    padding: 10px 16px;
    gap: 10px;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 18px;
    line-height: 22px;
    text-align: left;
    position: relative;
    padding: 0 0 0 20px;
}

h1:before {
    color: #FDB813;
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 1.5625rem;
    text-indent: -1.25rem;
}

h1 span {
    color: #404040;
    display: block;
    font-size: 13px;
    font-weight: normal;
}

h2 {
    font-size: 24px;
    margin: 1rem 0;
    line-height: 27px;
}

h3 {
    font-size: 14px;
    margin: 1rem 0 8px;
    color: #FDB813;
    line-height: 1.125rem;
}

h4 {
    text-align: center;
    width: 80%;
    padding: 0 0 0 10%;
}

h4 a {
    color: #FFF !important;
    font-size: 18px;
    line-height: 22px;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #002443;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 1.5625rem;
    text-indent: -1.25rem;
}

.text {
    position: absolute;
    bottom: -19px;
    right: 33px;
    width: 147px;
    height: 147px;
    background: url(../images/background-text.png) no-repeat;
    padding: 32px 0 0;
}

.text p span {
    font-size: 11px;
    line-height: 20px;
    display: block;
}

.text p {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    transform: rotate(-5deg);
}

@media all and (max-width:800px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    article {
        padding: 0 1rem;
    }

    p {
        margin: 0 0 0.625rem;
        text-align: left;
    }

    :is(h1, h2, p) {
        hyphens: auto;
        text-wrap: pretty;
    }

    footer {
        justify-content: space-around;
        flex-wrap: wrap;
    }

    h4 {
        width: auto;
        padding: 0;
    }

    span {
        white-space: nowrap;
    }
}

@media all and (max-width:586px) {
    .text {
        margin: -69px auto 0;
        position: relative;
        bottom: auto;
        right: auto;
    }
}

@media all and (max-width:480px) {
    a {
        white-space: normal !important;
        word-break: break-all;
    }

    h4 a {
        font-size: 15px;
    }
}