#footer {
  font-family: 'Roboto', sans-serif;
  background: var(--grey);
  color: var(--white);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px;
  margin-top: auto;
  margin-bottom: -1px;
}

#footer a {
  text-decoration: none;
  color: var(--white);
}

#footer a:hover {
  color: var(--light-blue);
}

#links {
  flex-direction: row;
  display: flex;
}

.link-group {
  margin: 0 50px;
}

.link-group:first-of-type {
  margin-left: 0;
}

.link-group:last-of-type {
  margin-right: 0;
}

.link-group-title {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
}

.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
}

.link-group ul li {
  text-transform: uppercase;
  margin: 10px;
  color: var(--white);
  cursor: pointer;
}

.link-group ul li:hover {
  color: var(--light-blue);
}

.link-group ul li:last-of-type {
  margin-bottom: 0;
}

#social {
  min-width: 252px;
  display: flex;
  justify-content: center;
}

#social a {
  font-size: 45px;
  margin: 0 16px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
}

#social a:hover {
  color: var(--light-blue);
}

#social svg {
  width: 45px;
  height: 45px;
}

#trademark {
  min-width: 252px;
  text-align: center;
}

@media (max-width: 1199.98px) {
  #footer {
    flex-direction: column;
    padding-bottom: 60px;
  }

  .link-group {
    margin: 0 20px;
  }

  .link-group ul li {
    margin-left: 0;
  }

  #social {
    margin: 50px 0;
  }

  #social a {
    margin: 0 16px;
  }

  #powered {
    margin-top: 30px;
  }
}
