@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    color: #3a434f;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    background: #fff4e8 url('../images/background.jpg') no-repeat center bottom;
    background-size: cover;
}

#wrapper {
    max-width: 800px;
    margin: 1rem auto;
}

header {
    padding: 0;
}

.logo {
    padding: 2rem 2rem 1.5rem;
    background: #fff;
    display: flex;
    justify-content: flex-start;
}

.slide {
    margin: 10px 0 0;
    position: relative;
}

@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;
    vertical-align: bottom;
}

.slide img:nth-child(2) {
    animation-delay: 5s;
}

.slide img:nth-child(3) {
    animation-delay: 10s;
}

.slide img:nth-child(4) {
    animation-delay: 15s;
}

section {
    background: #fff;
    padding: 1.5rem 2rem;
    margin-top: 10px;
}

.button {
    margin: 20px 0;
    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;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

:is(h1, h2, h3) {
    color: #003d76
}

h1 {
    font-size: 24px;
    line-height: 1.3;
    margin: 20px 0 0;
    text-align: center;
}

h1 span {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

h2 {
    font-size: 19px;
    line-height: 24px;
}

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(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 {
        margin: 0;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty
    }

    :is(p, ul) span {
        white-space: nowrap;
    }

    section {
        padding: 16px;
    }
}