
/* Footer Logo Alignment */
.footer-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    flex-direction: column;
}

@media only screen and (max-width: 767px) {
    .footer-logo-link {
        align-items: flex-start;
        justify-content: flex-start;
    }
}
