:root {
    font-size: 16px;
}

@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;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #14264d;
    font-weight: 400;
}

#wrapper {
    margin: 1rem auto;
    border: 1px #231F20 solid;
    max-width: 850px;
    background: #fff;
    overflow: hidden;
}

header {
    background: #14264d;
    padding: 2.75rem 3.0625rem 2.125rem;
}

.logo {
    margin: 0 0 1.5rem;
    display: flex;
    justify-content: flex-end;
}

article {
    padding: 1.5rem 3.0625rem 0.5rem;
}

article p {
    margin-bottom: 1.25rem;
    text-align: justify;
    hyphens: auto;
}

p.margin-min {
    margin-bottom: 6px;
}

footer {
    background: #14264d;
    padding: 1.875rem 3.0625rem 1.5625rem;
}

.footer-list-logo {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 1.875rem;
}

.flex-box {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

footer :is(p, a) {
    color: #fff !important;
}

.text-right {
    text-align: right;
}

:is(h1 span, h2, h3) {
    font-weight: 400;
}

h1 {
    font-size: 25px;
    line-height: 1.5;
    font-weight: 700;
    color: #89be29;
}

h1 span {
    display: block;
    margin: 0 0 1rem;
}

h2 {
    font-size: 1.125rem;
    color: #89be29;
    margin: 1rem 0 0.125rem;
    text-decoration: underline;
}

h3 {
    color: #fff;
    margin: 0 0 1rem;
    font-size: 1.6875rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #14264d;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

ul {
    margin: 0 0 1.25rem;
    list-style: none;
}

ul li {
    padding: 0 0 0.25rem 2.5rem;
}

ul li:before {
    content: "\025A0";
    float: left;
    color: #89be29;
    font-family: Arial, sans-serif;
    font-size: 1.125rem;
    margin-top: -0.1625rem;
    text-indent: -2.5rem;
}

@media only screen and (max-width:849px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    ul {
        hyphens: auto;
    }

    :is(p, ul) {
        text-wrap: pretty;
    }

    :is(header, article) {
        padding: 1rem;
    }

    footer {
        padding: 1.5rem 1rem;
    }

    .footer-list-logo {
        justify-content: center;
    }

    article p {
        text-align: left;
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    h1 br {
        display: none;
    }
}

@media only screen and (max-width:500px) {
    .logo {
        justify-content: center;
    }

    h1 {
        font-size: 22px;
    }

    ul li {
        padding-left: 20px;
    }

    ul li:before {
        text-indent: -20px;
    }
}

@media only screen and (max-width:450px) {
    .flex-box {
        flex-direction: column;
    }

    footer p {
        text-align: center !important;
    }
}