footer {
    width: 100%;
    bottom: 0;
    background-color: #000;
    overflow: hidden;
}

footer a {
    color: #fff;
    text-align: center;
    padding: 16px 0;
}

#footer-container {
    max-width: 980px;
    width: calc(100% - 2*22px);
    padding: 0px 22px;
    margin: 0 auto;
}

#footer-nav-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#footer-logo {
    height: 64px;
    padding-top: 6px;
}

#footer-nav {
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
}

#footer-nav a:hover {
    background-color: rgb(255, 0, 0);
    -webkit-transition: background-color 0.5s ease-out;
    -moz-transition: background-color 0.5s ease-out;
    -o-transition: background-color 0.5s ease-out;
    transition: background-color 0.5s ease-out;
}

.socials-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    padding-top: 18px;
}

.socials-container a {
    height: 48px;
    width: 48px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.socials-container img {
    cursor: pointer;
    -webkit-transition: transform 0.3s ease-out;
    -moz-transition: transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
}

.socials-container img:hover {
    animation: mymove 2s;
}

@keyframes mymove {
    100% {transform: scale(1.5) rotate(360deg);}
}

footer p {
    color: #fff;
    font-size: 0.75em;
    padding: 18px 0 12px;
}

@media only screen and (max-width: 767px) {
    #footer-container {
        max-width: 723px;
    }

    #footer-nav-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}