@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: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 615px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #67023C;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.8rem;
}

h1, h2, p span, h1 + p, footer aside:last-of-type a {
    color: #67023C;
}

h1 {
    margin: 0.75rem 0 0.2rem;
    font-size: 1.58em;
    line-height: 1.1;
    text-align: center;
}

h1 + p {
    text-align: center;
    font-size: 0.75em;
    font-weight: bold;
}

h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    text-align: center;
}

a u {
    color: #0563C1;
}

a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 0.8em;
    position: relative;
    float: left;
    margin-top: 2px;
    margin-left: -1.5rem;
}
header {
    padding: 1.5rem 1.5rem 0.3rem 9.7rem;
    border-bottom: #67023C 1px solid;
    font-size: 0.86em;
    line-height: 1.3;
    text-align: center;
}

header a img {
    position: absolute;
    top: 1.2rem;
    left: 2rem;
}

header p {
    padding-bottom: 0.3rem;
}

article {
    padding: 0;
}

article section {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #67023C;
}

article section aside {
    width: 50%;
    padding: 0.3rem 0.8rem 0 1.5rem;
    height: 392px;
}

article section aside:last-of-type {
    border-left: 1px solid #67023C;
    padding: 0.3rem 1rem 0;
}

footer {
    padding: 0;
    border-top: #67023C 1px solid;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

footer aside:first-of-type {
    color: #fff;
    background: #67023C;
    text-align: justify;
    padding: 1rem 1rem 0.6rem;
    width: 62.5%;
}

footer aside:last-of-type {
    width: 37.5%;
    padding: 5rem 0.5rem 0 1.5rem;
}

footer aside:last-of-type > p:first-of-type {
    padding-bottom: 1rem;
}

footer aside:first-of-type h2 {
    color: #fff;
}

footer aside:last-of-type p:first-child {
    padding-bottom: 1.75rem;
}

footer aside:last-of-type p:last-child {
    text-align: right;
    font-size: 0.66em;
    line-height: 1.3;
    padding: 0.8rem 2.6rem 0 0;
}

@media only screen and (max-width: 614px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }

    header {
        padding: 1rem 1rem 0.3rem; 
    }

    h1 {
        margin: 0.75rem 1rem 0.2rem;
    }

    header a img {
        position: static;
        margin-bottom: 1rem;
    }

    i br {
        display: none;
    }

    footer aside:last-of-type p:last-child, footer aside:first-of-type {
        text-align: left;
    }

    article section, footer {
        display: block;
    }

    footer {
        border-top: none;
        margin-top: 1rem;
    }

    footer aside {
        width: auto !important;
    }

    article aside {
        width: auto !important;
        padding: 0.3rem 1rem !important;
        height: auto !important;
    }

    article section aside:last-of-type {
        border-left: none;
    }

    footer aside:last-of-type {
        padding: 1rem;
      }
}