@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v35-latin-regular.eot');
    src: url('../fonts/open-sans-v35-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-regular.woff') format('woff'), url('../fonts/open-sans-v35-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v35-latin-700.eot');
    src: url('../fonts/open-sans-v35-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v35-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v35-latin-700.woff') format('woff'), url('../fonts/open-sans-v35-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v35-latin-700.svg#OpenSans') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #4c4d4f;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 21px;
    font-weight: 400;
}

#wrapper {
    max-width: 600px;
    margin: 1rem auto;
    border: 2px solid #1D4A6F;
    background-color: #fff;
    padding: 16px;
    position: relative;
    text-align: justify;
}

header {
    padding: 10px 25px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

article {
    padding: 18px 0 20px;
}

footer {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    align-items: flex-end;
    gap: 10px;
}

p:not(:first-of-type) {
    margin-top: 16px;
}

h1 {
    font-size: 16px;
    line-height: 1.25;
    margin: 16px 0;
    text-align: center;
    font-weight: 400;
}

h1 strong {
    font-size: 26px;
    color: #3F5A7E;
}

h1 small {
    font-size: 16px;
    font-weight: 400;
}

h3 {
    font-size: 16px;
    line-height: 24px;
    color: #0d457c;
}

h3 span {
    font-size: 22px;
}

h2 {
    font-size: 16px;
    line-height: 20px;
    margin-top: 16px;
    color: #3F5C93;
}

.color {
    color: #3F5C93 !important;!i;!;
}

ul {
    list-style: none
}

ul li {
    padding-left: 15px;
}

li:before {
    content: "\2022";
    color: #4D4D51;
    font-size: 20px;
    text-indent: -15px;
    line-height: 1;
    float: left;
    font-family: Arial, Helvetica, sans-serif;
}

img {
    max-width: 100%;
    display: block;
}

:is(h3, h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #4c4d4f;
    text-decoration: none;
    white-space: nowrap;
}

.padding {
    padding-right: 121px;
}

@media only screen and (max-width:600px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 16px;
        text-align: left;
    }

    ul br {
        display: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    article p:last-of-type {
        padding-right: 138px;
    }

    header {
        flex-direction: column;
        align-items: center;
        gap: 16px
    }

    article p:last-of-type {
        padding-right: 0;
    }

    footer {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h3 {
        text-align: center;
    }

    .padding {
        padding-right: 0;
    }
}