@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #1a1a18;
    font-family: "Arial", sans-serif;
    font-size: .937rem;
    line-height: 1.5;
    background: #f0f0f0;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 0.937rem #ddd;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.color {
    color: #0063a6;
}

.justify {
    text-align: justify;
}

.nowrap {
    white-space: nowrap;
}

p {
    margin: 0 0 1rem;
}

article p strong {
    white-space: nowrap;
}

h1 {
    font-size: 1.437rem;
    font-style: italic;
    line-height: 1.3;
    color: #0064a6;
    text-align: center;
    border-top: 0.062rem solid #cdc3ac;
    padding: 3rem 0 1rem;
}

h1 span {
    font-size: 1.2rem;
    display: block;
    padding-top: 1rem;
}

h2 {
    color: #777;
    font-size: 1.125rem;
    margin: 0 0 0.625rem;
}

ul {
    list-style: none;
    margin: 0.5rem 0 0;
    padding: 0;
}

ul li {
    padding-left: 1.275rem;
}

ul li:before {
    content: "»";
    float: left;
    margin-left: -1.175rem;
    font-size: 0.875rem;
    line-height: 1.2;
    color: #777;
}

header {
    padding: 2rem 2.5rem 1rem;
    display: flex;
    justify-content: flex-end;
}

article {
    padding: 1rem 2.5rem 0.5rem;
}

.section:nth-of-type(1) {
    border-left: 0.625rem solid #0063a6;
    padding: 1.5rem;
    margin: 0 0 2rem;
}

.section:nth-last-of-type(1) {
    display: flex;
    justify-content: space-between;
}

.section:nth-last-of-type(1) .aside {
    width: 47%;
    border-left: 0.625rem solid #0063a6;
    padding: 1.5rem;
    margin: 0 0 2rem;
}

article p:nth-last-of-type(1) {
    color: #0063a6;
    text-align: center;
}

footer {
    color: #0063a6;
    padding: 1rem;
    background-size: 100%;
}

footer p {
    text-align: center;
    margin: 0;
}

@media only screen and (max-width: 49.937rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        margin: 0 0 1rem;
    }

    h1 {
        margin: 0;
        padding: 2rem 0;
    }

    header {
        padding: 1.875rem 1rem 0;
    }

    .justify {
        text-align: left;
    }

    article {
        padding: 1rem 1rem 0;
    }

    .section:nth-of-type(1),
    .section:nth-last-of-type(1) .aside {
        padding: 0 1rem;
    }

    .section:nth-last-of-type(1) {
        display: block;
    }

    .section:nth-last-of-type(1) .aside {
        width: 100%;
    }
}

@media only screen and (max-width: 30rem) {
    header {
        justify-content: center;
    }
}

@media only screen and (max-width: 23.437rem) {
    footer {
        padding: 0 1rem 1rem;
    }
}