@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v51-latin-regular.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v51-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v51-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v51-latin-regular.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v51-latin-regular.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v51-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
@font-face {
  font-display: swap; 
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/roboto-v51-latin-700.eot'); /* IE9 Compat Modes */
  src: url('../fonts/roboto-v51-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v51-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/roboto-v51-latin-700.woff') format('woff'), /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+, iOS 5+ */
       url('../fonts/roboto-v51-latin-700.ttf') format('truetype'), /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
       url('../fonts/roboto-v51-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #3a434f;
    font: 400 1em/1.5 'Roboto', Arial, sans-serif;
    background: #fff4e8 url('../images/background.jpg') no-repeat center bottom;
    background-size: cover;
}

#wrapper {
    max-width: 800px;
    margin: 1rem auto;
    border: 0px solid #3a434f;
}

header {
    padding: 0;
}

.logo {
    padding: 2rem 2rem 1.5rem;
    background: #fff;
    display: flex;
    justify-content: flex-start;
}

.slide {
    margin: 10px 0 0;
    padding: 0;
    border: 0;
    position: relative;
}

.slide img {
    vertical-align: bottom;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.slide img:nth-of-type(1) {
    position: relative;
}

.slide img {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    max-width: 100%;
    animation: slidy 20s linear 0s infinite normal forwards;
}

.slide img:nth-child(2) {
    animation-delay: 5s;
}

.slide img:nth-child(3) {
    animation-delay: 10s;
}

.slide img:nth-child(4) {
    animation-delay: 15s;
}

article {
    padding: 0;
}

section {
    background: #fff;
    padding: 1.5rem 2rem;
    margin-top: 10px;
}

.button {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.button a {
    background: #003d76;
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 20px;
}

footer p {
    text-align: center;
    font-weight: 700;
}

.map {
    position: relative;
    padding-bottom: 50%;
    padding-top: 15px;
    height: 0;
    overflow: hidden;
    margin-top: 10px;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

p:not(:first-of-type) {
    margin-top: 10px;
}

h1 {
    font-size: 24px;
    line-height: 1.1;
    margin: 20px 0 0;
    text-align: center;
}

h1 span {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

h1 small {
    display: block;
}

h2 {
    font-size: 19px;
    line-height: 24px;
}

:is(h1, h2, h3) {
    color: #003d76
}

ul {
    list-style: none;
    margin-top: 15px;
}

ul li {
    padding-left: 19px;
}

li:before {
    content: "\2022";
    color: #003d76;
    float: left;
    font-size: 23px;
    text-indent: -19px;
}

img {
    max-width: 100%;
    display: block;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #3a434f;
    text-decoration: none;
    white-space: nowrap;
}

.center {
    text-align: center;
}

@media only screen and (max-width: 800px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    section {
        padding: 16px
    }
}