@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em "Segoe UI", Calibri, sans-serif;
       color: #383940;
       background: #F6F4F0;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 800px;
    /* border: solid 1px #000; */
    background: #fff;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 1rem 0rem 1.5rem;
    font-size: 1.892em;
    line-height: 1.1em;
    text-align: center;
}
h2{
    font-size: 1.375em;
    line-height: 1.3;
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}
li {
    padding: 0 0 0 16px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
}
figure{
    display: flex;
    justify-content: center;
}
header {
    padding: 1rem;
}
.icon2,.icon3,.icon4{
    padding-top: 3rem;
}
a.link{
    color: #0D78D3;
    font-weight: 700;
    text-decoration: underline;
}
.banner{
    margin: 0 -1rem 1rem;
}
article {
    padding: 0 1rem;
    background: #F6F4F0;
}
.rates{
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
footer p{
    text-align: center;
    padding: 1rem 0 0;
}
a.button{
    background: #0D78D3;
    padding:0.7rem;
    border-radius: 5px;
    display: block;
    font-weight: 700;
    
    text-align: center;
        color: #fff;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    h1 br{
        display: none;
    }
    p {
        text-align: left;
    }
    p :is(span, a) {
        display: inline-block;
    }
    .icon2, .icon3, .icon4{
        padding-top: 1rem;
    }
}