@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v42-latin-regular.eot');
    src: url('../fonts/noto-sans-v42-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/noto-sans-v42-latin-regular.woff2') format('woff2'),
        url('../fonts/noto-sans-v42-latin-regular.woff') format('woff'),
        url('../fonts/noto-sans-v42-latin-regular.ttf') format('truetype'),
        url('../fonts/noto-sans-v42-latin-regular.svg#NotoSans') format('svg');
}
@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/noto-sans-v42-latin-700.eot');
    src: url('../fonts/noto-sans-v42-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/noto-sans-v42-latin-700.woff2') format('woff2'),
        url('../fonts/noto-sans-v42-latin-700.woff') format('woff'),
        url('../fonts/noto-sans-v42-latin-700.ttf') format('truetype'),
        url('../fonts/noto-sans-v42-latin-700.svg#NotoSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #333333;
    font: 1em/1.5em 'Noto Sans', Arial, sans-serif;
    background: linear-gradient(180deg, rgba(239, 239, 239, 0.3) 300px, rgba(239, 239, 239, 1) 800px) fixed, url('../images/bg_body.jpg') no-repeat top center fixed;
}
#wrapper {
    position: relative;
    max-width: 850px;
    margin: 1rem auto;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1, h2 {
    color: #004381;
}
h1 {
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    font-size: 1.692em;
    line-height: 1.1;
}
h2 {
    font-size: 1.3em;
    line-height: 1.3;
    background: #E6E6E6;
    padding: 0.5rem 1rem;
    margin: 0 -1rem 1rem;
}
h2 span {
    text-transform: uppercase;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #004381;
    text-decoration: underline dotted #004381;
}
a:hover {
    text-decoration: underline #004381;
    color: #333333;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    position: relative;
    float: left;
    margin: 0 0 0 -1rem;
}
.logo {
    padding: 2rem 1rem !important;
}
.box, .logo {
    padding: 0 1rem;
    margin-bottom: 1rem;
    background: #FFF;
    border: 1px solid #DEDEDE;
    box-shadow: 0 0 26px rgba(0, 0, 0, .44);
}
p a.link {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: #FFF !important;
    text-decoration: none !important;
    background: #004381;
    border: 1px solid #004381;
    margin: 1rem 0;
}
p a.link:hover {
    background: #EFEFEF;
    color: #004381 !important;
}
.iframe {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}
.iframe iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h2 {
        font-size: 1.2em;
    }
    .logo {
        display: flex;
        justify-content: center;
    }
}