@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');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #002D67;
    line-height: 1.125rem;
    font-size: 14px;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    background-color: #fff;
}

article {
    padding: 2rem 50px 0;
    position: relative;
}

footer {
    padding: 0 40px 20px 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

footer p {
    margin: 0;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 1rem 0;
    font-size: 26px;
    line-height: 30px;
}

h2 {
    font-size: 20px;
    margin: 1rem 0;
    line-height: 24px;
}

h2 span {
    color: #EC691F;
    display: block;
}

h3 {
    font-size: 22px;
    margin: 0 0 1rem;
    line-height: 1.1;
}

p {
    margin: 0 0 1rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #002D67;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

ul {
    margin: 0 0 20px;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
    margin: 0 0 6px;
}

ul li:before {
    content: "\2022";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 1.5625rem;
    text-indent: -1.25rem;
}

.flex {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.button {
    display: flex;
    margin: 25px 0;
    justify-content: center;
}

.button a {
    display: inline-block;
    padding: 10px 1rem;
    background: #182D67;
    color: #fff !important;
    text-align: center;
    border-radius: 5px;
}

.fix {
    position: absolute;
    top: -147px;
    right: 4rem;
}

@media all and (max-width:800px) {
    #wrapper {
        margin: 0 auto;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    article {
        padding: 0 1rem 0;
    }

    footer {
        padding: 0 1rem 1rem;
    }

    br:not(footer br, .fix br) {
        display: none;
    }

    .fix {
        position: static;
        width: 320px;
        margin: 0 auto;
    }

    h2 {
        text-align: center;
    }
}

@media all and (max-width:675px) {
    footer {
        justify-content: center;
        align-items: center;
    }
}

@media all and (max-width:400px) {
    .flex {
        justify-content: center;
    }

    .flex p {
        text-align: center;
    }

    h3 {
        text-align: center;
    }
}