/* > Footer */

footer {
  background-color: var(--secondary-color);
  width: 100%;
  padding: 20px 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid var(--border-color);
}

footer .icon img {
  height: 35px;
  width: 35px;
}

footer .icon {
  font-size: 20px;
  color: #fff;
  text-align: start;
  display: flex;
  align-items: center;
}

footer .icon h3 {
  margin-left: 10px;
  vertical-align: middle;
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1.3rem;
}

footer .copyright {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-color-secondary);
}

footer .footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--text-color-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  font-weight: 500;
}

@media (max-width: 1020px) {
  footer {
    /* flex-direction: column; */
    text-align: center;
    padding: 20px;
  }

  footer .copyright {
    text-align: end;
  }

  footer .footer-links {
    display: none;
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 700px) {
  footer {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  footer .copyright {
    text-align: center;
  }

  footer .footer-links {
    display: none;
    justify-content: center;
    margin-top: 10px;
  }

  footer br {
    display: none;
  }
}