@charset "utf-8";
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''),
        url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'),
        url('../fonts/open-sans-v34-latin-regular.woff') format('woff'),
        url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'),
        url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''),
        url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'),
        url('../fonts/open-sans-v34-latin-700.woff') format('woff'),
        url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'),
        url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3em 'Open Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #F1EDF1;
    overflow: hidden;
    padding: 0;
}
strong {
    font-weight: 700;
}
h1, h2 {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #373737;
}
p {
    padding-bottom: 1.5rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2.892em;
    line-height: 1.1;
    background: #449EA7;
    padding: 1rem;
    border-radius: 20px;
    position: absolute;
    top: 12rem;
    left: 10rem;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding-left: 1.3rem;
}
ul li:before {
    content: url('../images/icon.jpg');
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1.3rem;
}
article {
    padding: 1rem 1rem 2rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex-s {
    display: flex;
    justify-content: center;
    gap: 0 1rem;
    align-items: center;
    margin: 2rem 0;
}
.flex-s p {
    padding-bottom: 0;
}
.left {
    width: 52%;
}
.right {
    width: 38%;
    position: relative;
}
.right:after {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    background: #449EA8;
    left: -2.5rem;
    top: 0%
}
p.center, h1 {
    text-align: center;
}
p.center {
    color: #525252;
}
p.small {
    font-size: 0.8em;
    line-height: 1.3em;
}
p.ml {
    margin-left: 1rem;
}
.logo {
    display: flex;
    justify-content: center;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .flex{
        flex-direction: column;
    }
    .flex div{
        width: 100% !important;
    }
    .right:after{
        display: none;
    }
    h1{
        position: static;
        margin: 1rem 0;
        font-size: 1.5em;
    }
    h1 br{
        display: none;
    }
    p{
        text-align: left;
    }
}