@charset "utf-8";

/* Standard */

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

a {
    color: inherit;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}

a:hover,
a:active,
a:visited {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: .875rem;
    line-height: 1.4;
    background-color: #E8E8E8;
}

#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    padding: 0;
    background-color: #fff;
    overflow: hidden;
}

p {
    text-align: left;
    margin: 0 0 1.25rem;
}

article p:nth-of-type(2){
    margin-top: 40px;
}

h1 {
    font-size: 1.75rem;
    color: #1f3855;
    margin: 1.5625rem 0 1.25rem;
    text-align: left;
}

h2 {
    font-size: 14pt;
    color: #1f3855;
    margin: 35px 0 15px;
    font-weight: bold;
}

ul {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}

ul li {
    padding-left: .937rem;
    margin-bottom: 7px;
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: .25rem;
    height: .25rem;
    border-radius: 50%;
    background: #000;
    margin-left: -.937rem;
    top: .375rem;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header{
    padding: 0;
}

article{
    padding: 25px 25px 0;
}

footer{
    padding: 25px;
}

footer p{
    margin-bottom: 0;
}

footer p a{
    vertical-align: middle;
    margin-left: 5px;
}

.button{
    background-color: #1f3855;
    border-color: #1f3855;
    color: #fff;
    border-radius: 0;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border: 1px solid transparent;
}

.button:hover{
    background-color: #fff;
    color: #1f3855;
    border-color: #1f3855;
    text-decoration: none;
}

@media only screen and (max-width: 43.6875rem) {
    #wrapper {
        margin: 0 auto;
        border: 0;
    }

    header,
    article,
    footer {
        margin: 0;
        padding: .625rem;
    }
}

@media only screen and (max-width: 23.4375rem) {
    h1{
        font-size: 1.25rem;
    }
}