@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: 0.875em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem 3rem;
    text-align: justify;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 1.5rem;
    font-size: 1.4em;
    line-height: 1.1em;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0;
}

a {
    color: #000;
    text-decoration: none;
}
a u {
    color: #00f;
}
a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

ul {
    padding: 0rem 0rem 0.75rem 0rem;
    list-style-image: url();
    list-style: none;
}
ul:last-of-type {
    padding-bottom: 1.5rem;
}
li {
    padding-left: 1.5rem;
}

ul li:before {
    content: "";
    width: 4px;
    height: 4px;
    background-color: #000;
    display: inline-block;
    font-size: 1.000em;
    position: relative;
    float: left;
    top: 5px;
    margin-left: -1.5rem;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    padding: 0rem 0rem 1.5rem;
    text-align: right;
}
header img {
    width: 110px;
}
article {
    padding: 0rem 1.25rem 0rem 0rem;
}
article p span {
    display: inline-block;
    position: relative;
    margin-right: 1.25rem;
    color: #334875;
    text-transform: uppercase;
}
article p span::before {
    content: "\2023";
    font-size: 2.5em;
    position: absolute;
    top: 1px;
    left: -0.7rem;
    color: #AEDCCF;
}
article p:last-of-type {
    text-align: left;
    transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    width: max-content;
    position: absolute;
    bottom: 34rem;
    right: -16.25rem;
    font-size: 0.8em;
    line-height: 1.3em;
}
footer {
    padding: 0rem 0rem 0rem;
    display: flow-root;
}
footer p:first-of-type {
    float: left;
}
footer p:last-of-type {
    text-align: right;
    float: right;
    margin-top: 1.1rem;
    font-size: 0.875em;
    line-height: 1.3em;
    color: #334875;
}
footer p:last-of-type a {
    color: #334875;
}
footer p:last-of-type a:last-of-type {
    color: #5EBC9E;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        text-align: left;
    }
    p {
        text-align: left;
    }
    article p:last-of-type {
        transform: none;
        position: static;
        width: auto;
    }
    footer p {
        float: none !important;
    }
    footer p:last-of-type {
        text-align: left;
        margin-top: 0;
    }
}