@charset "utf-8";
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-sans-v12-latin-regular.eot');
    src: local(''),
        url('../fonts/nunito-sans-v12-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/nunito-sans-v12-latin-regular.woff2') format('woff2'),
        url('../fonts/nunito-sans-v12-latin-regular.woff') format('woff'),
        url('../fonts/nunito-sans-v12-latin-regular.ttf') format('truetype'),
        url('../fonts/nunito-sans-v12-latin-regular.svg#NunitoSans') format('svg');
}
@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/nunito-sans-v12-latin-700.eot');
    src: local(''),
        url('../fonts/nunito-sans-v12-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/nunito-sans-v12-latin-700.woff2') format('woff2'),
        url('../fonts/nunito-sans-v12-latin-700.woff') format('woff'),
        url('../fonts/nunito-sans-v12-latin-700.ttf') format('truetype'),
        url('../fonts/nunito-sans-v12-latin-700.svg#NunitoSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #333333;
    font: 400 1.055em/1.5em 'Nunito Sans', Arial, sans-serif;
    background: linear-gradient(to top, #fff 0%, transparent 80%), url('../images/bg_body.jpg') no-repeat top center / cover;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: 1px solid #aaadae;
    background: #fff;
    overflow: hidden;
    -webkit-box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.link {
    text-decoration: underline 1px dotted #C50015;
}
a.link:hover {
    text-decoration: underline 1px solid #C50015;
    color: #C50015;
}
p {
    padding-bottom: 1.25rem;
}
h1 {
    margin: -1rem 0 0;
    font-size: 1.75em;
    line-height: 1.2;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3;
    color: #C50015;
    margin-bottom: 0.5rem;
}
ul ul {
    padding-bottom: 0;
}
ul ul li:before {
    content: "\00BB";
    color: #333333;
    font-size: 1.3em;
    background: none;
    margin: -8px 0 0 -1rem !important;
    left: 1rem;
}
ul {
    padding: 0 0 2rem;
    list-style: none;
}
li {
    padding: 0 0 5px 1rem;
    position: relative;
}
li:before {
    content: "\00a0";
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    top: 9px;
    width: 9px;
    height: 3px;
    border-radius: 5px;
    background-color: #C50015;
}
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 3rem;
}
.slider {
    position: relative;
}
.slider>img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: imageAnimation 18s linear infinite 0s;
}
.slider>img:nth-of-type(1) {
    position: static;
    opacity: 1;
}
.slider>img:nth-of-type(2) {
    animation-delay: 6s;
}
.slider>img:nth-of-type(3) {
    animation-delay: 12s;
}
@keyframes imageAnimation {
    4% {
        opacity: 1;
    }
    33% {
        opacity: 1;
    }
    38% {
        opacity: 0;
    }
}
article {
    padding: 2.1875rem 2.1875rem 0;
}
.bg {
    background: #F7F9F9;
    margin: 0 -2.1875rem 3.125rem;
    padding: 2.1875rem;
}
.iframe {
    overflow: hidden;
    padding-bottom: 65%;
    position: relative;
    height: 0;
    border: none;
    margin: 0 -3.125rem;
}
.iframe iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: none;
}
.button a {
    display: inline-block;
    background: #C50015;
    padding: 0.5rem 3rem;
    margin: 1rem auto;
    cursor: pointer;
    border: 0.1rem solid #C50015;
    transition: all 140ms ease 0s;
    -moz-transition: all 140ms ease 0s;
    -webkit-transition: all 140ms ease 0s;
    color: #fff;
    font-size: 0.8em;
}
.button a:hover {
    background-color: #fff;
    text-decoration: none;
    color: #C50015;
}
footer {
    padding: 1.5rem 2.1875rem 1rem;
}
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;
    }
}
@media only screen and (max-width:768px) {
    .logo {
        padding: 2rem;
        display: flex;
        justify-content: center;
    }
    article {
        padding: 2rem 2rem 0;
    }
    footer {
        padding: 2rem 2rem 1rem;
    }
}
@media only screen and (max-width:480px) {
    .logo {
        padding: 1rem;
    }
    article, footer {
        padding: 1rem 1rem 0;
    }
    .bg {
        padding-top: 1rem;
    }
    h1 {
        font-size: 1.5em;
    }
}