@charset "utf-8";
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-v23-latin-regular.eot');
    src: local(''),
        url('../fonts/lato-v23-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/lato-v23-latin-regular.woff2') format('woff2'),
        url('../fonts/lato-v23-latin-regular.woff') format('woff'),
        url('../fonts/lato-v23-latin-regular.ttf') format('truetype'),
        url('../fonts/lato-v23-latin-regular.svg#Lato') format('svg');
}
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v23-latin-700.eot');
    src: local(''),
        url('../fonts/lato-v23-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/lato-v23-latin-700.woff2') format('woff2'),
        url('../fonts/lato-v23-latin-700.woff') format('woff'),
        url('../fonts/lato-v23-latin-700.ttf') format('truetype'),
        url('../fonts/lato-v23-latin-700.svg#Lato') format('svg');
}
@font-face {
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/lato-v23-latin-900.eot');
    src: local(''),
        url('../fonts/lato-v23-latin-900.eot?#iefix') format('embedded-opentype'),
        url('../fonts/lato-v23-latin-900.woff2') format('woff2'),
        url('../fonts/lato-v23-latin-900.woff') format('woff'),
        url('../fonts/lato-v23-latin-900.ttf') format('truetype'),
        url('../fonts/lato-v23-latin-900.svg#Lato') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #18282F;
    font: 400 1em/1.35em 'Lato', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 840px;
    margin: 1rem auto;
    border: 1px solid #18282F;
    background: #fff;
    overflow: hidden;
}
:is(h2, strong) {
    font-weight: 700;
}
:is(h1, h4) {
    font-weight: 900;
    color: #EE7F00;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: underline 1px solid #EE7F00;
}
a.button {
    background: #EE7F00;
    color: #fff;
    font-weight: 700;
    display: block;
    padding: 1rem;
    max-width: 235px;
    text-align: center;
}
a.button:hover {
    background: #BB6400;
}
p {
    padding-bottom: 1.5rem;
}
h1 {
    margin: 0 0 1.5rem;
    font-size: 2.3em;
    line-height: 1.1;
    text-align: center;
}
h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}
h3 {
    font-size: 1.5em;
    line-height: 1.3;
    color: #18282f;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
}
h4 {
    font-size: 1.125em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
ul {
    padding: 0 0 1.5rem 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0.35rem 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 0.7rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #A4A6A8;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.nopd {
    padding: 0;
}
.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;
    }
}
.info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}
.logo{
    padding: 3rem;
}
article {
    padding: 2rem 3rem 1rem;
}
footer {
    padding: 0 3rem 1rem;
}
footer figure {
    margin: 0 0 1rem;
}
footer p {
    color: #646D6D;
}
@media only screen and (max-width:839px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(p, li) {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
}
@media only screen and (max-width:768px) {
    .logo{
        padding: 2rem;
        display: flex;
        justify-content: center;
    }
    article, footer {
        padding-inline: 2rem;
    }
}
@media only screen and (max-width:480px) {
    article {
        padding: 1rem;
    }
    footer {
        padding: 0 1rem;
    }
    ul {
        padding-left: 0;
    }
    h1 {
        font-size: 1.7em;
    }
}