@charset "utf-8";

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    font-size: 16px;
}

body {
    color: #9697A3;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25;
}

#wrapper {
    background: linear-gradient(to bottom, #61778f 0%, #7fa4c7 79%, #7fa4c7 100%);
    background: url(../images/bg.png) repeat-x top 29.375rem left;
    background-color: #fff;
    margin: 1rem auto;
    max-width: 50rem;
    overflow: hidden;
    position: relative;
}

h1 {
    color: #00488e;
    margin: 0 0 .625rem;
    font-size: 1.625rem;
    line-height: 1.2;
}

h2 {
    color: #00488e;
    font-size: 1rem;
    line-height: 1.2;
    margin: 0 0 .187rem;
}

.gray {
    line-height: 1.2;
    margin: .75rem 0 0;
    font-weight: bold;
    font-size: 1.062rem
}

.gray:last-of-type {
    margin-bottom: .312rem;
    white-space: pre-wrap;
    font-size: 1rem;
    letter-spacing: -0.2px
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #00488E;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    white-space: pre-wrap;
    font-weight: normal
}

p {
    margin: 0 0 .625rem
}

img {
    height: auto;
    max-width: 100%;
}

ul {
    list-style: none;
    margin: 0 0 .625rem;
    padding: 0;
}

ul:last-of-type {
    margin: 0 0 1.25rem
}

ul li {
    padding-left: 3.312rem
}

ul li:before {
    content: "\25CF";
    float: left;
    margin-left: -1.562rem;
    font-size: .75rem;
    line-height: 1.6;
}

header {
    position: relative;
}

header img {
    display: block
}

article {
    background: #fff;
    padding: 1rem;
    margin: 0 1.875rem 1.875rem;
}

p span {
    color: #00488e;
    font-weight: bold;
}

footer {
    display: flex;
    justify-content: space-between;
    padding: 0 1.875rem 1.25rem;
    color: #fff;
    column-gap: 1.875rem
}

footer section:first-of-type {
    width: 65%;
}

footer section:last-of-type {
    width: 35%;
}

.icons,
.icons aside {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
}

.icons {
    width: 65%;
    justify-content: flex-start;
}

.icons aside p {
    padding-right: .375rem;
}

.icons p {
    margin: .625rem 0 0;
}

footer a.link {
    color: #fff;
}

footer section:first-of-type a.link {
    font-size: .875rem;
    margin: 0 0 .187rem;
    font-weight: bold
}

@media only screen and (max-width:49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-size: 100% 100%;
        background-position: top left;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    h1 {
        font-size: 1.375rem;
    }

    ul:last-of-type {
        margin: 0 0 1rem
    }

    ul li {
        padding-left: 1.25rem
    }

    ul li:before {
        margin-left: -1rem;
    }

    article {
        padding: .625rem;
        margin: 0 1rem 1rem;
    }

    .gray:last-of-type {
        letter-spacing: normal
    }

    footer {
        padding: 0 1rem 1rem;
    }
}

@media only screen and (max-width:37.5rem) {
    h1 {
        font-size: 1.187rem
    }

    footer {
        flex-direction: column
    }

    footer section:first-of-type,
    footer section:last-of-type {
        width: 100%
    }

    .icons {
        padding: 0 0 1rem
    }

    footer section:last-of-type p:last-of-type {
        margin: 0
    }
}

@media only screen and (max-width:30rem) {

    .gray,
    h1,
    footer p,
    footer h2,
    article p:first-of-type {
        text-align: center
    }

    .icons,
    .icons aside {
        align-items: center;
        justify-content: center;
        flex-direction: row
    }

    .icons {
        width: 100%;
        justify-content: center;
    }

    footer section:first-of-type a.link {
        margin: 0
    }
}