@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1.125em/1.3em Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 665px;
    border: solid 2px #185AAA;
    background: #fff;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0;
    padding: 0.5rem 1rem;
    font-size: 2.2em;
    line-height: 1.1em;
    background: #185AAA;
    color: #fff;
    text-align: center;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3;
    color: #185AAA;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0 30px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    margin: 0 0 0 -16px;
    float: left;
}
.center {
    text-align: center;
}
hr {
    border: none;
    border-bottom: 2px solid #185AAA;
    margin: 0 -1rem 0.7rem;
}
article>p:first-of-type {
    margin: 0 59px -10px;
    padding: 0 0.5rem 0;
    background: #fff;
    z-index: 5;
    position: relative;
}
section {
    width: 47%;
}
.flexbox p {
    text-align: justify;
    width: 47%;
}
article {
    padding: 0.5rem 1rem 0;
}
.flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.flexbox:before {
    position: absolute;
    left: 49.6%;
    top: -12px;
    height: 104%;
    width: 2px;
    content: "";
    background: #185AAA;
}
footer {
    padding: 1rem 1rem 0.5rem;
    background: #185AAA;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50.5%;
}
footer p {
    text-align: center;
    font-size: 1.188em;
    line-height: 1.2;
    color: #fff;
    padding-bottom: 0.5rem;
}
footer hr {
    border-bottom: 1px solid #fff;
    margin: 0 0 0.7rem;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:664px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    footer{
    	position: static;
    	width: 100%;
    }
    br,.flexbox:before {
    	display: none;
    }
    .flexbox section, .flexbox p{
    	width: 100%;
    	text-align: left;
    }
    h1{
    	font-size: 2em;
    }
    article>p:first-of-type{
    	margin: 0;
    	background: none;
    }
}