footer {
  bottom: 0;
  background: var(--primary-500);
}

.footer {
  bottom: 0;

  max-width: 1170px;
  margin: 0 auto;
  height: 125px;
}

.social-icons {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.social-icons a {
  border-radius: 50%;
  font-size: 2rem;
  /* padding: 0.3rem; */
  margin: 0 1rem;
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
}

.social-icons i {
  color: var(--primary-600);
  border-radius: 50%;
  padding: 0.5rem;
  background: white;
}

.social-icons a:hover {
  color: var(--white);
  background: var(--primary-500);
  padding-top: 2.7rem;
}

.social-icons i:hover {
  background: var(--primary-500);
  color: var(--white);
}
