.footer {
  position: relative;
  display: flex;

  margin-bottom: 60px;

  width: 100%;

  padding: 60px 20px;
}

.footer .footer-links {
  position: relative;
  display: flex;
  flex-shrink: 0;

  gap: 5px;

  flex-direction: row;

  width: 100%;

  align-items: center;
  justify-content: center;
}

.footer .footer-links-item {
  position: relative;
  display: flex;

  width: 60px;
  height: 60px;

  text-decoration: none;

  fill: currentColor;
  color: rgba(15, 135, 220, 1);

  transition: 0.2s all ease-out;
}
.footer .footer-links-item:hover {
  color: black;
}
