@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin:  0;
	padding: 0;
    box-sizing: border-box;
}

body {
    color: #021A41;
    font-family: "Arial", sans-serif;
    font-size: 1.1704rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 0.125rem #021A41;
    border-radius: 0.625rem;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 0.625rem;
    text-align: justify;
}

.right {
    float: right;
    shape-outside: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    padding: 0 0 0 1rem;
}

.margin {
    margin: 1.25rem 0 0.625rem;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem;
    margin-bottom: 0.312rem;
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: 0.875rem;
    height: 0.875rem;
    background: url(../images/list.jpg) no-repeat;
    background-size: contain;
    margin-left: -1.5rem;
    top: 0.25rem;
}

header {
    padding: 1.25rem 1.875rem 0.625rem;
}

article {
    padding: 0.625rem 1.875rem;
}

hr {
    border: 0.062rem solid #021A41;
    margin: 0.625rem 0;
}

h1 {
    font-size: 2rem;
    margin: 0.625rem 0;
}

h2 {
    font-size: 1rem;
    margin: 0 0 0.625rem;
}

h3 {
    margin: 0 0 0.625rem;
}

h4 {
    color: #fff;
}

.line {
    display: block;
}

footer .column {
    display: flex;
    column-gap: 2.5rem;
    align-items: center;
}

footer {
    background: #021A41;
    display: flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    justify-content: center;
}

footer > h4 {
    margin-top: 1.25rem;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    header {
        padding: 0.625rem 0 0;
    }

    article {
        padding: 0.625rem 0;
    }

    footer {
        flex-direction: column;
    }

    footer .column {
        flex-direction: column;
    }

    footer h4 {
        text-align: center;
        margin: 0.625rem 0;
    }

    footer > h4 {
        margin: 0.625rem 0;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        text-align: left;
    }
}

@media only screen and (max-width: 31.25rem) {
    header {
        padding: 0;
    }

    .right {
        float: none;
        shape-outside: none;
        display: flex;
        justify-content: center;
        padding: 1rem;
    }
}