@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: #0D4D9B;
    font: 1em/1.3em 'Open Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1000px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('bg-top.jpg') no-repeat top 9rem left, url('bg-f.jpg') no-repeat bottom left #ECF4F6;
    overflow: hidden;
    padding: 2rem;
}
h1, h2, h3, h4, strong {
    font-weight: 700;
}
p a.color {
    color: #0D4D9B;
}
p {
    padding-bottom: 2rem;
}
p.width {
    width: 64%;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0 0 2rem;
    font-size: 4em;
    line-height: 1.1;
    position: relative;
    display: inline-block;
}
h1 span {
    font-size: 0.5em;
    position: absolute;
    top: 3.8rem;
    font-weight: 400;
    right: -7rem;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
h4 {
    font-size: 1.3em;
    line-height: 1.3;
    margin: 0 0 0.5rem 2.2rem;
    text-transform: uppercase;
    color: #FFF;
}
h4+p {
    padding-bottom: 0.3rem;
}
a {
    color: #FFF;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}
.center {
    text-align: center;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 2rem;
}
li:before {
    content: "•";
    float: left;
    margin-left: -2rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.flex div {
    width: 30%;
    border-radius: 20px;
    background: #F1BB55;
    padding: 1rem;
}
.flex div p {
    padding-bottom: 0.5rem;
}
.bg1 {
    background: #ADC6B2 !important;
}
.bg2 {
    background: #E8D3BC !important;
}
.button  a{
    padding: 0.2rem 1rem;
    background: #F1BB55;
    display: inline-block;
    font-size: 1.3em;
    line-height: 1.3em;
    border-radius: 5px;
    text-transform: uppercase;
      color: #FFF;
}
.ml {
    margin: 2rem 0 2rem 27rem;
}
footer {
    position: absolute;
    bottom: 7rem;
    right: 3rem;
}
.box3 {
    margin: 6rem 0 0 8rem;
}
@media only screen and (max-width: 999px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        background: #EDF3F6;
    }
    h1{
        text-align: center;
        display: block;
    }
    h1 span{
        position: static;
    }
    h1 br{
        display: none;
    }
    p.width{
        width: 100%;
    }
    .ml{
        margin: 0;
    }
    .center,  p.width{
        text-align: left;
    }
    .button{
        text-align: center;
    }
    .box3{
        background: #AAC5B0;
        padding: 1rem 1rem 0;
        margin: 1rem -1rem ;
    }
}
@media only screen and (max-width: 780px) {
    .flex{
        flex-direction: column;
    }
    .flex div{
        width: 100%;
        margin-bottom: 1rem;
    }
    footer{
        position: static;
        display: flex;
        justify-content: center;
    }
    h1{
        font-size: 2em;
    }
}
@media only screen and (max-width: 480px) {
    body{
        font-size: 0.9em;
        line-height: 1.3em;
    }
    h1{
        font-size: 1.7em;
    }
}