@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #2e2e2e;
    font: 400 1em/1.5em "Open Sans", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 960px;
    min-width: 250px;
     margin: 1rem auto 7rem;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
    box-shadow: -0.1rem 0.1rem 1rem #999;
}
h1,h2,strong{
    font-weight: 700;
}
.ttu{
    text-transform: uppercase;
}
p, ul {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
p a.big{
    font-size: 1.5em;
}
h1,h2, p a.color{
    color: #25628F;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 1.8em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
    margin: 0 0 1rem 5rem;
    position: relative;
}
h2 img{
    position: absolute;
    top: 0;
    left: -5rem;
}
a {
    color: #2e2e2e;
    text-decoration: none;
}
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: 6rem;
}
li:before {
    content: "•";
    float: left;
    margin-left: -1rem;
}
article{
    padding: 2rem;
}
footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem 2rem;
}
nav p a  {
    color: #fff !important;
}
nav p {
    text-align: center;
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 0.5rem 1rem;
    border-top: 1px solid #25628F;
    background-color: #fff;
}
nav p a {
    display: inline-block;
    padding: 0.5em 1.2em 0.5em;
    text-decoration: none !important;
    border: 1px solid #25628F;
    background-color: #25628F;
}
nav p a:hover{
    background-color: #FFF;
    color: #25628F !important;
}
@media only screen and (max-width: 959px) {
    #wrapper {
        border: none;
         margin: 0 auto 7rem;
        height: auto;
    }
    p :is(a,span){
        display: inline-block;
    }
    p, ul {
        text-align: left;
    }
    footer{
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    footer p{
        text-align: center;
    }
    br{
        display: none;
    }
}
@media only screen and (max-width: 480px){
    article{
        padding: 1rem;
    }
    footer{
        padding: 0 1rem 1rem;
    }
    h2 img{
        position: static;
    }
    h2{
        display: flex;
        justify-content: start;
        align-items: center;
        gap: 0 1rem;
        margin-left: 0;
    }
    li{
        padding-left: 1rem;
    }
}