@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');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 400 1em/1.3em 'Lato', Arial sans-serif;
    color: #000;
}
h1, h2, h3, strong {
    font-weight: 700;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 800px;
    border: solid 1px #ED1B24;
    background: #fff;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
}
ul {
    padding: 0 0 1rem 0;
    list-style: none;
}
li {
    padding: 0 0 0 25px;
}
ul li:before {
    content: "▶";
    font-size: 0.8em;
    float: left;
    margin: -1px 0 0 -25px;
    color: #D92519;
}
h1, h2, h3 {
    color: #D92519;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2em;
    line-height: 1.1em;
    text-align: center;
}
h1 small {
    font-size: 0.7em;
}
h2 {
    font-size: 1.55em;
    line-height: 1.3;
    text-align: center;
    padding-bottom: 0.7rem;
}
h3 {
    font-size: 1em;
    line-height: 1.3;
}
.logo {
    padding: 1.5rem;
}
article {
    padding: 1rem 1.5rem 0;
}
.center {
    text-align: center;
}
.button {
    padding: 0.6rem 2rem;
    background: #D92519;
    border-radius: 5px;
    margin: 1rem 0 3rem;
    color: #ffff;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
}
.flexbox {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flexbox p {
    display: flex;
    flex-wrap: wrap;
}
.flexbox span:first-of-type {
    padding-right: 1rem;
    color: #D92519;
}
.map {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    margin: 1.5rem -1.5rem 0;
}
.map iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}
footer {
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: center;
    font-size: 1.6em;
    color: #D92519;
}
footer a {
    padding-right: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    p a {
        display: inline-block;
    }
}