@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 1115px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #000;
    overflow: hidden;
}
p {
    padding-bottom: 2rem;
}
h1 {
    margin: 0 0 1.25rem;
    font-size: 1.813em;
    line-height: 1.2;
    font-weight: normal;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 0.625rem;
}
ul li:before {
    content: "\25A0";
    display: inline-block;
    font-size: 0.6em;
    position: relative;
    float: left;
    margin-top: 2px;
    margin-left: -0.625rem;
}
article {
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
}
article div {
    width: 48%;
}
footer {
    position: absolute;
    bottom: 0;
    left: 51.75%;
}
@media only screen and (max-width: 1114px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    article {
        display: block;
        padding: 1rem 1rem 0;
    }
    article div {
        width: auto;
    }
    footer {
        position: static;
        text-align: center;
        padding: 0 1rem;
    }
    p a {
        display: inline-block;
    }
}