/**
 * @file
 * The footer components.
 *
 * It includes styles for the footer itself and its
 * components.
 */

/**
 * Global footer rules
 */
.footer {
  padding: 1rem 0;
  color: #FFF;
  background-color: #222;
}
.footer a {
  color: #FFF;
}
.footer a:hover {
  text-decoration: underline;
}
.footer-brand {
  padding: 1px 0;
  padding-left: 34px;
  background-image: url(../logo.svg);
  -webkit-background-size: auto 30px;
  background-size: auto 30px;
  background-repeat: no-repeat;
  background-position: left center;
}
@media all and (min-width: 1000px) {
  .footer {
    padding: 0;
  }
  .region-footer {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
  }
  .footer-brand p {
    padding-top: 10px;
  }
}
@media all and (min-width: 1000px) {
  .footer {
    padding: 0;
  }
  .footer-brand {
    padding-left: 140px;
    -webkit-background-size: auto 130px;
    background-size: auto 130px;
  }
}