@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #555555;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 58.75rem;
    margin: 1rem auto;
    overflow: hidden;
    background: url("../images/bg-top.png") top right/ auto no-repeat, #fff;
    box-shadow: 3px 3px 11px 2px #939095;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.link {
    color: #004994;
    white-space: normal;
}

article strong {
    color: #000;
}

span {
    white-space: nowrap;
}

small {
    line-height: 1.3;
    display: inline-block;
}

.color {
    color: #004994;
    font-weight: 700;
}

p {
    padding-bottom: 1rem;
}

h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    color: #004994;
    width: 65%;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}


h2 {
    font-size: 1.1rem;
    color: #004994;
    margin-bottom: .5rem;
    padding-bottom: 1rem;
}

h2.line::after {
    width: 33%;
}

ul {
    list-style: none;
    padding-bottom: 1rem;
}

ul ul {
    padding: 0;
}

ul li {
    padding: 0 0 0 1.25rem;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -1rem;
}

hr {
    width: 40%;
    margin-bottom: 1rem;
}

.line {
    position: relative;
}

.line::after {
    content: "";
    width: 100%;
    height: 2px;
    background: rgba(0, 73, 148, 0.3);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}

.flex {
    display: flex;
    gap: 1rem;
    padding: 2rem 0;
}

.flex>div {
    flex: 50%;
}

.flex>div:last-of-type {
    display: flex;
    flex-direction: column;
}

.flex>div:last-of-type section:first-of-type {
    flex: 30%;
}

.flex>div:last-of-type section:last-of-type {
    margin-top: 1rem;
    padding-bottom: 1rem;
    flex: 50%;
}

section {
    padding: .625rem;
    border: 1px solid rgba(0, 73, 148, 0.3);
    box-shadow: inset 0 1px 5px 5px #eee, 0 4px 4px 3px #eee;
}

.info {
    display: flex;
    padding-top: .625rem;
    margin-bottom: 1rem;
    gap: 1rem;
}

.info::after {
    width: 60%;
    height: 1px;
    background: #efefef;
}

.info>div {
    flex: 50%;
}

header {
    display: flex;
    padding: 1.75rem 2.375rem 1.25rem;
}

header a.line::after {
    width: 88%;
    bottom: -1.25rem;
}

article {
    padding: 1.75rem 2.375rem;
}

footer {
    padding: 1.75rem 2.375rem .75rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    background: url("../images/bg-bottom.jpg") center/cover no-repeat;
}

footer>div:nth-child(1) {
    flex: 0 0 30%;
}

footer>div:nth-child(2) {
    flex: 0 0 40%;
}

footer>div:nth-child(3) {
    flex: 0 0 100px;
}

.social {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding-top: 1rem;
}

.button {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.button a {
    padding: .5rem 1.2rem;
    background-color: #004994;
    color: #fff;
    border-radius: 2px;
    border: 1px solid #004994;
}

@media only screen and (max-width: 58.688rem) {

    #wrapper {
        margin: 0 auto;
        box-shadow: none;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 55rem) {
    #wrapper {
        background: #fff;
    }

    article>p br {
        display: none;
    }

    h1 {
        width: 100%;
    }
}

@media only screen and (max-width: 48rem) {

    header {
        justify-content: center;
        padding: 1rem;
    }

    header a.line::after {
        width: 100%;
    }

    article {
        padding: 1.75rem 1rem;
    }

    footer {
        padding: 1rem;
        flex-direction: column;
    }

    .social {
        display: flex;
        align-items: center;
        gap: .625rem;
        padding: 0 0 1rem;
    }

    .flex {
        display: block;
        padding: 0;
    }

    .flex>div:first-of-type {
        margin-bottom: 1rem;
    }
}

@media only screen and (max-width: 30rem) {
    h1 {
        text-align: center;
        font-size: 1.7rem;
    }

    footer {
        text-align: center;
        align-items: center;
    }

    .social {
        justify-content: center;
    }
}