@charset "utf-8";

@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/nunito-v32-latin-regular.eot');
    src: url('../fonts/nunito-v32-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-regular.woff2') format('woff2'), url('../fonts/nunito-v32-latin-regular.woff') format('woff'), url('../fonts/nunito-v32-latin-regular.ttf') format('truetype'), url('../fonts/nunito-v32-latin-regular.svg#Nunito') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/nunito-v32-latin-700.eot');
    src: url('../fonts/nunito-v32-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/nunito-v32-latin-700.woff2') format('woff2'), url('../fonts/nunito-v32-latin-700.woff') format('woff'), url('../fonts/nunito-v32-latin-700.ttf') format('truetype'), url('../fonts/nunito-v32-latin-700.svg#Nunito') format('svg');
}

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    color: #5f6e73;
    font: 400 1em/1.4em 'Nunito', Arial, sans-serif;
    background: #EEEEEE;
}

#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(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

a.color {
    text-decoration: underline 1px dotted #0076b9;
}

p {
    padding-bottom: 1.25rem;
}

h1 {
    margin: 0 0 0.5rem;
    font-size: 1.75em;
    line-height: 1.2;
}

h1 span {
    font-size: 1rem;
}

h2 {
    font-size: 1.25em;
    line-height: 1.3;
    color: #0076b9;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

ul {
    padding: 0 0 1rem;
    list-style: none;
}

ul li {
    padding-left: 1rem;
}

ul li:before {
    content: "»";
    font-family: Arial, sans-serif;
    float: left;
    margin: 0 0 0 -1rem;
    color: #0076b9;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

hr {
    border: none;
    background: #0076b9;
    height: 4px;
    margin: 0 auto;
    width: 80px;
}

.nopd {
    padding: 0;
}

header {
    padding: 1rem 3.125rem;
    background: #E3E5E7;

}

.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: 2rem 3.125rem 0;
}

.iframe-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.button {
    display: flex;
    justify-content: center;
}

.button a {
    display: inline-block;
    background: #0076B9;
    border: 2px solid #0076B9;
    padding: 0.625rem 3rem;
    margin: 2rem 0;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: .938rem;
}

.button a:hover {
    background: #fff;
    color: #0076B9;
}

footer {
    padding: 2rem 3.125rem 1rem;
    background: #0076B9;
    display: flex;
    justify-content: space-between;
}

footer p,
.button a {
    color: #fff;
}

@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: .5rem;
    }

    :is(p, li) {
        hyphens: auto;
    }

    p a,
    span {
        display: inline-block;
    }
}

@media only screen and (max-width:768px) {
    header {
        padding: 1rem 2rem;
        display: flex;
        justify-content: center;
    }

    article {
        padding: 1rem 2rem 0;
    }

    footer {
        padding: 2rem 2rem 1rem;
    }
}

@media only screen and (max-width:525px) {
    header {
        padding: 1rem;
    }

    article {
        padding: 1rem 1rem 0;
    }

    footer {
        padding: 1rem 1rem 0;
        flex-direction: column;
        text-align: center;
    }
}