@charset "utf-8";
@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-condensed-v25-latin-regular.eot');
    src: local(''),
        url('../fonts/roboto-condensed-v25-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v25-latin-regular.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v25-latin-regular.woff') format('woff'),
        url('../fonts/roboto-condensed-v25-latin-regular.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v25-latin-regular.svg#RobotoCondensed') format('svg');
}
@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-condensed-v25-latin-700.eot');
    src: local(''),
        url('../fonts/roboto-condensed-v25-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/roboto-condensed-v25-latin-700.woff2') format('woff2'),
        url('../fonts/roboto-condensed-v25-latin-700.woff') format('woff'),
        url('../fonts/roboto-condensed-v25-latin-700.ttf') format('truetype'),
        url('../fonts/roboto-condensed-v25-latin-700.svg#RobotoCondensed') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #212529;
    font: 400 1em/1.3em 'Roboto Condensed', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1000px;
    margin: 1rem auto;
    border: solid 1px #212529;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
h1, h2 {
    color: #203367;
}
h2.mb_2 {
    margin-bottom: 2rem;
}
h2.mb_0 {
    margin: 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: -1rem 0 0.5rem;
    font-size: 1.692em;
    line-height: 1.3;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #212529;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
ul li {
    padding: 0 0 0.3rem 1.3rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
header {
    position: relative;
}
header p {
    background: #F0F1F2;
    padding: 1rem;
    position: absolute;
    top: 1rem;
    left: 0;
    color: #5C5C5C;
    font-size: 1.3em;
    line-height: 1.3em;
}
.logo {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
article {
    padding: 2rem;
}
footer {
    background: #203367;
    padding: 1rem 2rem;
}
.ss {
    display: flex;
    justify-content: flex-end;
    gap: 0 0.5rem;
}
hr {
    border: none;
    background: #203367;
    height: 1px;
    width: 100%;
    text-align: center;
    margin: 2rem auto;
}
.button {
    color: #FFF !important;
    background: #203367;
    display: inline-block;
    border-radius: 4px;
    padding: 0.5rem 1rem;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 10rem;
    flex-wrap: wrap;
    gap: 0 1rem;
}
footer img {
    display: block;
}
@media only screen and (max-width: 999px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .flex{
        margin: 0;
    }
}
@media only screen and (max-width: 600px) {
    .logo{
        width: 180px;
    }
}
@media only screen and (max-width: 480px) {
    .logo{
        width: 100px;
    }
    header p{
        font-size: 1em;
    }
    ul {
        padding-bottom: 1rem;
    }
    ul li{
        padding-left: 1rem;
    }
    article{
        padding: 1rem;
    }
}