html {
  height: 100%;
  font-family: helvetica neue, helvetic, arial, sans-serif;
}
body {
  height: 100%;
  margin: 0px;
  padding: 0px;
}
#map_canvas {
  height: 100%;
}

/* Header */
.header {
  position: absolute;
  top: 50px;
  z-index: 1000;
  display: block;
  padding: 0 15px;
}

.header img {
  max-width: 100%;
  height: auto;
  max-width: 80px;
}

@media (min-width: 992px) {
  .header {
    top: 60px;
    padding: 0 20px;
  }

  .header img {
    max-width: 100%;
  }
}

/* Footer */
.footer {
  display: block;
  position: absolute;
  bottom: 0px;
  z-index: 1000;
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  background: linear-gradient(
    180deg,
    rgba(42, 42, 42, 1) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

@media (min-width: 768px) {
  .footer {
    padding: 0;
  }
}

.footer-logos {
  display: flex;
  order: 2;
  margin-left: auto;
}

@media (min-width: 768px) {
  .footer-logos {
    margin-right: 20px;
  }
}

.footer-logo {
  display: block;
  padding: 5px;
}

/* Tablet and up */
@media (min-width: 768px) {
  .footer-logo {
    padding: 10px;
  }
}

.footer-logo .icon-logo {
  display: block;
  font-size: 0;
}

.footer-logo:last-child {
  margin-right: 5px;
}

.footer-logo svg {
  display: inline-block;
  width: auto;
  max-height: 36px;
}

/* Large mobile */
@media (min-width: 576px) {
  .footer-logo svg {
    max-height: 100%;
  }
}

.footer-text {
  padding: 0 10px 0 20px;
}

/* Tablet and up */
@media (min-width: 768px) {
  .footer-text {
    padding-left: 50px;
    padding-right: 15px;
  }
}

/* Site title */
.site-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  color: #fff;
}

@media (min-width: 576px) {
  .site-title {
    font-size: 22px;
  }
}

/* Tablet and up */
@media (min-width: 768px) {
  .site-title {
    margin-top: 30px;
    font-size: 42px;
  }
}

/* Funfact */
.funfact {
  display: none;
}
.funfact p,
.funfact div {
  display: none;
}

@media (min-width: 768px) {
  .funfact {
    display: inline-block;
    color: #757575;
  }
  .funfact div {
    display: none;
    vertical-align: middle;
  }
  .funfact p {
    color: white;
    display: block;
    width: 83px;
    display: table-cell;
    vertical-align: middle;
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
