@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Dosis';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/dosis-v34-latin-700.eot');
    src: url('../fonts/dosis-v34-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/dosis-v34-latin-700.woff2') format('woff2'),
        url('../fonts/dosis-v34-latin-700.woff') format('woff'),
        url('../fonts/dosis-v34-latin-700.ttf') format('truetype'),
        url('../fonts/dosis-v34-latin-700.svg#Dosis') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.4em Arial, sans-serif;
    background: #EFF3F3;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: none;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.btn {
    text-align: center;
    color: #ffffff;
    padding: 0.6em 4em;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
    background-color: #131561;
}
a.btn:hover {
    color: #131561;
    background-color: #FFFFFF;
    border: 2px solid #0A82D2;
}
p {
    padding-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
}
h3, h4 {
    text-align: center;
}
h1 {
    margin: 0 0 1.5rem;
    font: 700 1.75em/1.1em 'Dosis', Arial, sans-serif;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}
h3 {
    font-size: 1.8em;
    line-height: 1.3;
    margin-bottom: 2rem;
}
h4 {
    font-size: 1.313em;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding: 0 0 0 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.color, h2, h3, h4{
    color: #131561;
}
.logo {
    display: flex;
    justify-content: center;
    padding: 2rem;
}
.title {
    background: #131561;
    color: #fff;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}
.title :is(h1, p) {
    text-align: center;
    padding: 0;
}
.info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.hl {
    width: fit-content;
    background: #fff;
    color: #4f5d60;
    border-radius: 2px;
    text-transform: uppercase;
    font-size: 0.7em;
    line-height: 1.3;
    padding: 1px 3px !important;
}
article {
    padding: 0 2rem;
}
footer {
    border-block: 1px solid #dde1e2;
    padding: 3rem 1rem;
    margin: 2rem 0 3rem;
    display: flex;
    justify-content: center;
}
footer p {
    padding: 0;
}
figure {
    margin: 0;
}
@media only screen and (max-width:929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
        text-align: left;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 0 1rem;
    }
}