@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em Calibri, sans-serif;
    color: #001E5E;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 875px;
    border: solid 1px #000;
    background: #fff url('../images/bg.jpg') no-repeat bottom;
    padding: 2rem 4rem 4rem;
}
#wrapper:before{
   background: #4F8FCD;
  position: absolute;
  left: 0;
  top: 9.5%;
  width: 3rem;
  height: 6.5rem;
  content: "";
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: -0.7rem 0rem 0.5rem;
    font-size:2.3em;
    line-height: 1.1em;
}
h1 small {
    font-size: 0.7em;
}
h2{
    font-size: 1em;
    line-height: 1.3;
}
h2 span{
    font-weight: 400;
}
: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.5rem 0 0 55px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
}
header {
    margin: 0 -3rem 1rem 0;
    display: flex;
    justify-content: end;
}

footer {
  display: flex;
  justify-content: end;
  margin: 2rem -2rem;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:874px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 2rem 1rem;
    }
    p {
        text-align: left;
    }
    header,footer{
        margin: 1rem 0;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1{
        font-size: 1.8em;
    }
    h1 br, #wrapper:before{
        display: none;
    }
    li{
        padding-left: 2rem;
    }
}