@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: "Calibri", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
}

#wrapper {
    position: relative;
    max-width: 50.625rem;
    margin: 1rem auto;
    border: solid 0.0625rem #000;
    background-color: #fff;
    overflow: hidden;
}

strong {
    font-weight: 700;
}

p {
    text-align: justify;
    hyphens: auto;
    margin: 0 0 1rem;
}

h1,
h4 {
    margin: 0 0 1rem;
    font-size: 1.3rem;
    line-height: 1.2;
}

h1 span {
    white-space: nowrap;
}

h2 {
    font-size: 1rem;
    line-height: 1.3;
    margin: 0 0 1.25rem 1.5rem;
}

h3 {
    font-size: 1rem;
    line-height: 1.3;
    margin: 0 0 1.25rem;
}

h1,
h2,
h3,
h4 {
    color: #0078BD;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    padding: 0;
    margin: 0 0 3rem;
    list-style: none;
}

ul li {
    padding-left: 1.5rem;
}

ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -0.0625rem 0 0 -1.5rem;
}

article {
    padding: 2.75rem 3rem 0.75rem;
}

.section {
    padding-bottom: 2rem;
}

.section :is(p, h1),
h4 {
    text-align: center;
}

footer {
    padding: 2rem 2rem 0.5rem 3.3rem;
    background-color: #F5F5F5;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-start;
}

footer p {
    padding-bottom: 0.75rem;
}

figure {
    display: flex;
    align-items: flex-end;
}

figure img {
    margin-right: 1rem;
}

footer p {
    font-family: "Calibri", sans-serif;
    font-weight: bold
}

@media only screen and (max-width: 50.5625rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
        text-align: left;
    }

    h2 {
        margin: 0 0 .625rem;
    }
}

@media only screen and (max-width: 48rem) {

    article,
    footer {
        padding: 2rem 2rem 0.5rem;
    }

    .section {
        padding-bottom: 0;
    }
}

@media only screen and (max-width: 30rem) {
    article {
        padding: 1rem 1rem 0.5rem;
    }

    footer {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    footer p {
        text-align: center;
        padding: 1rem 0;
    }

    figure {
        justify-content: center;
    }

    figure img {
        margin: 0 0.5rem;
    }
}