/* Footer links underline animation */

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  position: relative;
  text-decoration: none;
  font-family: 'Noto Serif Georgian', serif;
  line-height: 1.2;
  display: inline-block;
  padding: 2px 0;
  transition: color 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #779349;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #779349;
}

.footer-links a:hover::after {
  width: 100%;
}

