@charset "utf-8";
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/barlow-v12-latin-regular.eot'); 
  src: local(''),
       url('../fonts/barlow-v12-latin-regular.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/barlow-v12-latin-regular.woff2') format('woff2'), 
       url('../fonts/barlow-v12-latin-regular.woff') format('woff'), 
       url('../fonts/barlow-v12-latin-regular.ttf') format('truetype'), 
       url('../fonts/barlow-v12-latin-regular.svg#Barlow') format('svg'); 
}
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/barlow-v12-latin-700.eot'); 
  src: local(''),
       url('../fonts/barlow-v12-latin-700.eot?#iefix') format('embedded-opentype'), 
       url('../fonts/barlow-v12-latin-700.woff2') format('woff2'), 
       url('../fonts/barlow-v12-latin-700.woff') format('woff'), 
       url('../fonts/barlow-v12-latin-700.ttf') format('truetype'), 
       url('../fonts/barlow-v12-latin-700.svg#Barlow') format('svg'); 
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #001777;
    font: 400 1em/1.3em 'Barlow', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width:  930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem;
}
h1,h2,h3, strong{
    font-weight: 700;
}
h1, .ttu, h3{
    text-transform: uppercase;
}
p {
    padding-bottom: 1rem;
}
p a.ins{
    text-decoration: underline;
}
h1 {
    margin: 2rem 0;
    font-size: 3em;
    line-height: 1.1;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    font-size: 2em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #001777;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
.flex, .flex-s{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 0.5rem;
}
.flex div,.flex-s p{
    width: 24%;
}
.box{
    margin-bottom: 1rem;
}
.box, .bg{
    background: #C8EEFF;
    padding: 1rem 1rem 0;
}
.bg div{
    width: 48%;
}
.bg{
    align-items: center;
    margin: 0 -2rem 2rem;
    padding: 1rem 2rem;
    gap: 1rem;
}
.mb_0{
    margin-bottom: 0;
}
footer p a{
    background: #FFD500;
    padding: 1rem;
}
footer p{
    text-align: center;
    margin:  2rem 0;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p :is(a,span){
        display: inline-block;
    }
    header{
        display: flex;
        justify-content: center;
    }
    h1{
        text-align: center;
    }
}
@media only screen and (max-width: 780px) {
    .flex{
        flex-direction: column;
    }
    .flex div{
        width: 100%;
    }
    h1{
        font-size: 1.7em;
    }
}
@media only screen and (max-width: 480px) {
    .flex-s p{
        width: 100% !important;
    }
    h1{
        font-size: 1.5em;
    }
}