@charset "utf-8";

:root {
    font-size: 16px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: .875rem;
    line-height: 1.5;

}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.75);
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #4088ee;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

p {
    margin: 0 0 1rem;
}

h1 {
    font-size: 22px;
    line-height: 27px;
    text-align: center;
    background: #0c2577;
    color: #fff;
    margin: 20px 0 0;
    padding: 10px;
}

h2 {
    font-size: 16px;
    color: #0c2577;
    margin: 10px 0
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

.logo {
    padding: 10px 0 10px 40px
}

section {
    padding: 20px 40px 0;
}


footer {
    padding: 0 2.5rem 2.5rem
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 16px;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1 {
        margin-bottom: 1rem
    }

    section,
    footer {
        padding: 0
    }
}