/* lato-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  /* lato-italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/lato-v24-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  /* lato-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v24-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  /* lato-700italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: italic;
    font-weight: 700;
    src: url('../fonts/lato-v24-latin-700italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  /* lato-900 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/lato-v24-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

  /* lato-900italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: italic;
    font-weight: 900;
    src: url('../fonts/lato-v24-latin-900italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }


* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-color: #f3f4f6;
    font-family: 'Lato', sans-serif;
    font-size: medium;
}

p {
    margin: 0;
    padding: 0;
    font-size: medium;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0.8em 0 0.5em 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}
h1 {
    font-weight: 900;
    font-size: xx-large;
}
h2 {
    font-weight: 700;
    font-size: x-large;
}
h3 {
    font-weight: 700;
    font-size: larger;
}
h4 {
    font-weight: 700;
    font-size: large;
}
h5 {
    font-weight: 700;
    font-size: medium;
}

a, a:visited {
    color: #F58F29;
    text-decoration: dashed underline;
}
a:hover {
    text-decoration: underline;
}

.container {
    display: flex;
    flex-wrap: wrap;
    width: 1250px;
    margin: 12.5px auto;
    padding: -12.5px;
}

.header,
.content,
.footer {
    margin: 12.5px;
    padding: 25px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 5px 10px -6px rgba(0, 0, 0, 0.25);
}

.header,
.footer {
    flex-basis: 100%;
}

.footer {
    display: flex;
}

.header-image {
    margin: 0 auto;
    padding: 10px 0 0 0;
    width: 250px;
}

.header-image>img {
    width: 100%;
}

.content {
    flex-basis: calc(50% - 25px);
}

.link-list {
    margin: 0.5em 0;
    padding: 0 1em;
}

.link-list>li {
    margin: 0.5em 0;
}

.mobile-advice {
    display: none;
}

@media only screen and (max-width: 1250px) {
    body {
        font-size: large;
    }

    .container {
        width: calc(100% - 10px);
    }

    .content {
        flex-basis: 100%;
    }

    .mobile-advice {
        display: block;
    }
}

@media only screen and (max-width: 1000px) {
    body {
        font-size: x-large;
    }
}

#map1 {
    height: 200px;
}
