/* Footer */

footer {
    background-color: #f3f3f3;
}

footer .brand {
    color: black;
    text-decoration: none;
}

footer .tel {
    color: var(--c-black);
    font-size: 1.2rem;
    text-decoration: none;
}

footer .tel:hover {
    color: var(--thm-c-mi-clair);
    font-size: 1.2rem;
    text-decoration: none;
}

footer .logo_img {
    /* width: 100px; */
    height: 75px;
}

footer .logo_titre {
    font-size: 1.4rem;
}

/* Footer: mobile */

@media only screen and (max-width: 991px) and (-Webkit-min-device-pixel-ratio: 1.5),
@media only screen and (max-width: 991px) and (-moz-min-device-pixel-ratio: 1.5),
@media only screen and (max-width: 991px) and (-o-min-device-pixel-ratio: 3/2),
@media only screen and (max-width: 991px) and (min-device-pixel-ratio: 1.5) {

    footer .logo_img {
        height: 120px;
    }

    footer .logo_titre {
        font-size: 2.2rem;
    }

    footer .tel {
        font-size: 2rem;
    }
}