:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    font-size: 0.8125rem;
    line-height: 1.125rem;
    color: #004563;
}

#wrapper {
    margin: 1rem auto;
    padding: 0 3.6875rem 2.8125rem;
    max-width: 700px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
    border: solid thin #000;
}

header {
    margin: 0 -3.6875rem 0.625rem;
}

.logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 50px;
}

.logo p {
    text-align: right;
    font-size: 15px;
    line-height: 19px;
    margin-bottom: 0;
}

.logo a {
    color: #f15922 !important;
}

footer {
    margin: 2.5625rem 0 0;
}

footer :is(p, a) {
    color: #adccdc !important;
    font-size: 0.875rem;
    margin: 0;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #004563;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
}

img.trackingpixel {
    width: 0;
    height: 0;
    opacity: 0;
}

h1 {
    font-size: 1.25rem;
    margin: 1rem 0;
    line-height: 1.5625rem;
    color: #f15922;
    text-align: center;
}

h2 {
    font-size: 0.8125rem;
    line-height: 1.1875rem;
    margin: 1rem 0 0.5rem;
}

ul {
    margin: 0 0 1rem;
    list-style: none;
}

ul li {
    padding-left: 1.1875rem;
    background: url("../images/check.png") no-repeat left 0.125rem;
}

@media screen and (max-width:699px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.625rem 1rem;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    .logo {
        padding: 16px;
    }

    header {
        margin: 0 -1rem 0.625rem;
    }

    p {
        text-align: left;
    }

    span {
        white-space: nowrap;
    }
}