$text: #cccccc;
$bg: #373535;

.footer {
  min-height: 200px;
  color: $text;
  background: $bg;

  img {
    max-width: 160px;
    max-height: 56px;

    &:first-of-type {
      margin-right: 20px;
    }
  }

  li {
    display: inline-block;

    &:not(:last-of-type) {
      &::after {
        content: ' .';
        color: $text;
      }
    }
  }

  a {
    border-bottom: 0;
    color: $text;
    text-decoration: none;
    text-transform: uppercase;

    &:hover,
    &:focus,
    &:visited {
      border-bottom: 1px solid $text;
      color: $text;
    }
  }
}
