@charset "utf-8";
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v30-latin-regular.eot'); 
  src: local(''),
       url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), 
       url('../fonts/roboto-v30-latin-regular.woff') format('woff'), 
       url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), 
       url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg'); 
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v30-latin-500.eot'); 
  src: local(''),
       url('../fonts/roboto-v30-latin-500.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/roboto-v30-latin-500.woff2') format('woff2'), 
       url('../fonts/roboto-v30-latin-500.woff') format('woff'), 
       url('../fonts/roboto-v30-latin-500.ttf') format('truetype'), 
       url('../fonts/roboto-v30-latin-500.svg#Roboto') format('svg'); 
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #00356A;
    font: 400 1em/1.3em "Roboto", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 600px;
    margin: 1rem auto;
    border: solid 1px #00356A;
    background: url('../images/bg.jpg') no-repeat top left;
    overflow: hidden;
    padding: 1rem 2rem;
}
h1, h2, h3,   strong {
    font-weight: 500;
}
p {
    padding-bottom: 0.5rem;
}
.pb_1 {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.8em;
    line-height: 1.1;
}
h1 small {
    font-size: 0.6em;
}
h1 span{
    font-weight: 400;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3;
}
h3 {
    font-size: 2.9em;
    line-height: 1;
    margin: 1rem 0 0;
}
h4 {
    font-size: 1.5em;
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 500;
}
hr {
    border: none;
    background: #00356A;
    height: 5px;
    width: 20px;
    margin: 1rem 0;
    text-align: center;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #00356A;
    text-decoration: none;
}
p a.ins{
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding-left: 1.5rem;
}
ul li:before {
    content: "•";
    float: left;
    margin: 0 0 0 -1.5rem;
}
ul.icon li:before {
    content:  url('../images/icon.jpg');
}
.res {
    display: none;
}
.logo {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}
.flex{
    display: flex;
    justify-content: start;
    gap: 0 1rem;
    margin:  0 0 1rem;
}
footer{
    display: flex;
    justify-content: space-between;
}
footer p{
    font-size: 0.8em;
    line-height: 1.3em;
}
p img{
    vertical-align: -3px;
}
@media only screen and (max-width: 599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0 1rem 1rem;
        background-image: none;
    }
    header {
        margin: 0 -1rem;
        background: url('../images/bg-f.jpg') repeat-y;
    }
    header img{
        display: block;
    }
    h3 {
        font-size: 2em;
    }
    .logo {
        padding: 1rem;
        justify-content: center;
        margin: 0;
    }
    .res {
        display: block;
    }
    p :is(a, span) {
        display: inline-block;
    }
}
@media only screen and (max-width:  456px){
    footer, .flex{
        flex-direction: column;
        align-items: center;
    }
    .flex p{
        text-align: center;
    }
}