/* FOOTER TOP */
.footer-top {
    background-color: var(--color-background);
}

/* FOOTER */
.footer {
    background-color: white;
}

.footer .flex-even {
    flex: 1;
}

.footer .logo {
    height: 70px;
}

.footer table .texte {
    padding: 0.5rem 1rem;
}

.footer .titre {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.footer .btn-lien {
    transition: all 0.2s ease-in-out;
}

.footer .btn-lien:hover {
    color: var(--color-bleu-strong);
    transform: translateX(5px);
    transition: all 0.2s ease-in-out;
}

.footer .btn-contact {
    font-size: 1.2rem;
    color: var(--color-bleu-light);
    border-radius: 10px;
    border: 1px solid var(--color-bleu-light);
    transition: all 0.2s ease-in-out;
}

.footer .btn-contact:hover {
    color: white;
    background: var(--color-bleu-strong);
    transition: all 0.2s ease-in-out;
}

/* Crédits */
.footer-bottom {
    background: rgb(54,93,120);
    background: linear-gradient(125deg, rgba(54,93,120,1) 0%, rgba(62,104,131,1) 39%, rgba(99,154,182,1) 77%, rgba(141,210,239,1) 100%);
}

@media (max-width: 992px) {
    .footer .logo {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .footer .logo {
        height: 50px;
    }
}
