#footer {
  margin-top: 40px;
  background-color: $brand-mediumblue;
  color: $brand-white;
  padding: 10px;
  align-items: center;
   > * {
    text-align: center;
  }
  section {
    min-width: 300px;
  }
  a {

    color: $brand-white;
    text-decoration: none;
    @include font-size(28);
    &:hover {
      color: $brand-lightblue;
    }
    &::before {
      font-family: 'FontAwesome';
      display: inline-block;
    }
    &.socials-facebook::before {
      content: "\f09a";
    }
    &.socials-twitter::before {
      content: "\f099";
    }
    &.socials-google-plus::before {
      content: "\f0d5";
    }


  }
  ul {
    padding-left: 0;
  }
  li {
    display: inline;
    padding-left: 15px;
    span {
      display: none;

    }
  }

  .footer-contact, .footer-copyright {
    li {
      border-left: 2px solid $brand-white;
      padding-right: 15px;
      &:first-of-type {
        border-left: none;
      }
    }
    @include font-size(18);
    a {
      @include font-size(18);
    }
  }
}
