/*--------------------------------------------------------------------------*\
    Link in menu item
\*--------------------------------------------------------------------------*/

.footer__menu-link {
    /*box*/
    position:relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height:35px;
    width: 100%;
    padding: 8px 5px;
    cursor: pointer;

    /*text*/
    text-align: center;
    font-size: var(--fs-tn);
    white-space: nowrap;

    /*transition*/
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
}

/*--------------------------------------------------------------------------*\
        Footer primary color (cf footer.css file)
\*--------------------------------------------------------------------------*/

.footer--primary .footer__menu-link {
    /*text*/
    color: var(--c-primary-3);
}

/*--------------------------------------------------------------------------*\
            Hover
\*--------------------------------------------------------------------------*/

.footer--primary .footer__menu-link:hover {
    /*text*/
    color: var(--c-primary-1);
}

/*--------------------------------------------------------------------------*\
        Footer secondary color (cf footer.css file)
\*--------------------------------------------------------------------------*/

.footer--secondary .footer__menu-link {
    /*text*/
    color: var(--c-tertiary-1);
}

/*--------------------------------------------------------------------------*\
            Hover
\*--------------------------------------------------------------------------*/

.footer--secondary .footer__menu-link:hover {
    /*text*/
    color: var(--c-tertiary-4);
}