@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-sans-v27-latin-regular.eot');
    src: url('../fonts/noto-sans-v27-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v27-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v27-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v27-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v27-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-v27-latin-700.eot');
    src: url('../fonts/noto-sans-v27-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v27-latin-700.woff2') format('woff2'), url('../fonts/noto-sans-v27-latin-700.woff') format('woff'), url('../fonts/noto-sans-v27-latin-700.ttf') format('truetype'), url('../fonts/noto-sans-v27-latin-700.svg#NotoSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #555555;
    font: 400 1.063em/1.5em 'Noto Sans', Arial, sans-serif;
    background: linear-gradient(180deg, rgba(239, 239, 239, 0.1) 300px, rgba(239, 239, 239, 1) 950px) fixed, url('../images/bg_body.jpg') no-repeat top center fixed;
    background-size: cover;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    background: #fff;
    overflow: hidden;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.26);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.26);
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.color {
    color: #0060AD;
}
a.link {
    text-decoration: underline 1px dotted #DC911B;
}
a.link:hover {
    text-decoration: underline 1px solid #DC911B;
    color: #DC911B;
}
p {
    padding-bottom: 1.25rem;
}
h1, h3 {
    text-transform: uppercase;
}
h1 {
    margin: 0;
    font-size: 1.8em;
    line-height: 1.2;
}
h1 span {
    font-size: 1rem;
}
h1+h3 {
    margin-bottom: 2rem;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}
h3 {
    font-size: 1.313em;
    line-height: 1.3;
}
h4 {
    font-size: 1.2em;
    line-height: 1.3;
    margin-bottom: 0.125rem;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
li {
    padding: 0 0 5px 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #66b0e2;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
hr {
    border: none;
    background: #db901b;
    height: 4px;
    margin: 0 auto 4rem;
    width: 62px;
}
.nopd {
    padding: 0;
}
.logo {
    padding: 1rem 2.125rem;
}
.slider {
    position: relative;
}
.slider>img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 10s linear infinite 0s;
}
.slider>img:nth-of-type(1) {
    position: static;
    opacity: 1;
}
.slider>img:nth-of-type(2) {
    animation-delay: 5s;
}
@keyframes imageAnimation {
    4% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    55% {
        opacity: 0;
    }
}
article {
    padding: 2.1875rem 2.1875rem 0;
}
.title {
    background: linear-gradient(to right, #0097d4 0%, #052863 100%);
    margin: 1rem -2.1875rem 2.5rem;
    padding: 1.5rem 2.1875rem;
    color: #fff;
}
.bg {
    background: #F7F9F9;
    margin: 0 -2.1875rem 3.125rem;
    padding: 2.1875rem;
}
.iframe {
    overflow: hidden;
    padding-bottom: 56%;
    position: relative;
    height: 0;
    border: none;
}
.iframe iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: none;
}
.button a {
    display: inline-block;
    background: #052a68;
    border: 2px solid #052a68;
    color: #fff;
    padding: 0.5rem 1.5rem;
    margin: 0.5rem 0 1rem;
    font-size: 0.875em;
    line-height: 1.3;
    webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.button a:hover {
    background: #fff;
    color: #052a68;
}
.contact {
    margin: 0 -2.5rem;
    padding: 1rem 2.5rem 0;
    background: #EAEBEB;
    color: #000000;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.26);
}
footer {
    border: 1px solid #aaadae;
}
footer p {
    color: #fff;
}
figure {
    margin: 0;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    footer {
        border: none;
    }
}
@media only screen and (max-width:768px) {
    .logo {
        padding: 2rem;
        display: flex;
        justify-content: center;
    }
    article {
        padding: 2rem 2rem 0;
    }
}
@media only screen and (max-width:480px) {
    .logo {
        padding: 1rem;
    }
    article {
        padding: 1rem 1rem 0;
    }
    .bg {
        padding-top: 1rem;
    }
    h1 {
        font-size: 1.5em;
    }
}