@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}

#wrapper {
    position: relative;
    max-width: 770px;
    margin: 1rem auto;
    border: solid 2px #003299;
    background-color: #fff;
    overflow: hidden;
}

p {
    padding-bottom: 1rem;
    text-align: justify;
}

h1 {
    margin: 0 0 1rem;
    font-size: 1.8em;
    text-align: center;
    line-height: 1.4;
    color: #003299;
}

.center {
    text-align: center;
}

h1 small {
    font-size: 0.65em;
    display: block;
}

h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
    color: #003299;
}

a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

ul {
    padding: 0 0 1rem;
    list-style: none;
}

li {
    padding-left: 2rem;
}


li:before {
    content: "•";
    font-size: 1.3em;
    margin: -3px 0 0 -2rem;
    float: left;

}

article {
    padding: 0.25rem 1rem;
}


h1,
h2,
.blue {
    color: #0032CC;
}

.flex {
    margin-bottom: 1rem;
}

.flex p {
    display: flex;
    justify-content: space-between;
    padding-right: 1rem;
    flex-wrap: wrap;
    gap: 0 1rem;
    padding: 0;
}

.flex p span {
    width: 30%;
    min-width: fit-content;
}

footer {
   padding: 1.8rem 1rem 0.5rem;
    background: url('../images/bg.jpg') top right no-repeat, #003396;
    text-align: center;
    font-size: 1.25em;
    line-height: 1.3;
    letter-spacing: 2px;
    color: #fff;
}

article img {
    position: absolute;
    bottom: 170px;
    right: 0.8rem;
}

@media only screen and (max-width:769px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }

     br {
        display: none;
    }

    .flex {
        display: block;
    }

    article img {
        position: static;
    }

    li {
        padding-left: 1.5rem;
    }

    p {
        text-align: left;
    }
}