/*
 * Footer
 */
.footer-bg {
    flex-shrink: 0;
    height: var(--gcc-footer-height);
    background-color: var(--main-grey-background);
}

/* If the screen size is 401px wide or more */
@media screen and (min-width: 401px) {
    .footer-logo {
        max-height: 60px;
    }
}

/* If the screen size is 400px wide or less */
@media screen and (max-width: 400px) {
    .footer-logo {
        width: 60%;
    }
}

.text-gray {
    color: var(--bs-gray-600);
    /* Support for svg */
    filter: invert(47%) sepia(15%) saturate(270%) hue-rotate(166deg) brightness(92%) contrast(88%);
}

.footer-link {
    color: var(--bs-gray-600);
    transition: all 300ms;
}

.footer-link:hover {
    color: var(--bs-gray-800);
}
