@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font: 1rem/1.5 "Arial", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 58.75rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: rgba(0, 153, 204, 1.0);
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline
}

p {
    margin: 0 0 1.25rem;
}

ul {
    list-style: none;
    margin: 0 0 1.562rem 1.562rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1.1;
}

a.button {
    display: block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: .5rem 1.25rem;
    line-height: 1.42857143;
    border-radius: .375rem;
    background: rgba(0, 153, 204, 1.0);
    color: #fff;
    margin: 10px 0 10px auto;
    width: fit-content;
}

h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin: .5rem 0;
    font-weight: normal
}

h2 {
    font-size: 1.062rem;
    margin-bottom: .5rem;
    font-family: "Calibri", Arial sans-serif;
}

section {
    margin-top: 1.125rem
}

header {
    padding: 20px 0;
    border-bottom: 2.5rem solid rgba(0, 153, 204, 1.0);
}

@media only screen and (max-width: 58.687rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    header {
        display: flex;
        justify-content: center;
        padding: 0 0 1rem;
    }

    h1 {
        text-align: center;
    }

    a.button {
        margin: .937rem auto 0
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }

    ul {
        margin-left: .312rem
    }

    section {
        margin-top: 0
    }
}