@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: .937rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 0.625rem 0;
    color: #003875;
}

h1 small {
    font-size: 1rem;
    color: #000;
    font-weight: 400;
}

h2 {
    text-align: center;
    font-weight: 400;
    font-size: 1.25rem;
}

h3 {
    text-align: center;
    font-size: 1.375rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

h3 span {
    font-weight: 700;
}

h4 {
    color: #003875;
}

h5 {
    font-size: 1.375rem;
    color: #003875;
    text-align: center;
    margin: .625rem 0;
}

:is(a:link, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

p {
    margin: 0 0 .625rem;
}

ul {
    list-style: none;
    margin: 0 0 0.625rem;
    padding: 0;
}

ul li {
    padding-left: 1.375rem
}

ul li:before {
    content: "\»";
    float: left;
    margin-left: -1.375rem;
    font-size: 1.375em;
    line-height: 1;
}

article {
    padding: 1.25rem 1.875rem;
}

article p:first-of-type {
    text-align: justify;
    text-align-last: center;
}

article p:last-of-type {
    text-align: center;
}

section {
    background: #CFD1D3;
    padding: 1.25rem;
}

.cebter{
	text-align: center;
}

footer {
    border-top: solid .625rem #003875;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .625rem 1.25rem;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 42rem) {

    h1 {
        font-size: 1.875rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    h5 {
        font-size: 1.125rem;
    }

    article {
        padding: .625rem 1rem 0;
    }

    article p:first-of-type{
        text-align: left;
    }

    section {
        padding: .625rem;
    }

    footer {
        padding: .625rem;
    }
}

@media only screen and (max-width: 26rem) {
    footer {
        flex-direction: column;
        gap: 1rem;
    }
}
