.footer {
    background-color: var(--theme--neutral);
    display:flex;
    flex-direction:column;
    align-items:center;
}

.footer nav ul.footer-menu {
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:10px;
    text-align:center;
}

.footer-menu li {
    list-style: none;
}

.footer-menu li a {
    color:#ffffff;
    text-decoration: none;
}

.footer-logo {
    margin-top:60px;
    margin-bottom:20px;
    display: inline-block;
}
.social-network-link {
    width: 45px;
    height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.social-network-link > svg {
    width: 27px;
    height: 27px;
    transition: transform 0.4s ease-in-out;
    fill:black;
}

.social-network-link:hover > svg {
    transform:scale(1.2);
    transition: transform 0.4s ease-in-out;
}

.social-networks-list li {
    list-style:none;
}

.social-networks-list {
    display:flex;
    flex-direction:row;
    margin-top:30px;
    margin-bottom:60px;
}

/* links hover animations underline */

.footer-menu .menu-item-object-page a {
  display: inline-block;
  position: relative;
  color: black;
}

.footer-menu .menu-item-object-page a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: black;
  transform-origin: bottom right;
  transition: transform 0.4s ease-out;
}

.footer-menu .menu-item-object-page a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* === DESKTOP === */

@media screen and (min-width: 768px) {
    .footer nav ul.footer-menu {
        display:flex;
        flex-direction:row;
        justify-content:center;
        gap:30px;
    }
}
