/* footer */
    footer{
        background: var(--black-bg);
        padding: 32px;
        margin-bottom: 16px;
        border-radius: 16px;
    }

    .containerFooter{
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
        gap: 32px;
    }

    .footerTile{
        color: var(--white);
        text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 20px;
    }

    /* part1 */
    .boxFooterLogo{
        width: auto;
        height: 100px;
        margin: 0 auto;
    }

    .boxFooterLogo > img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .textFooter{
        margin: 8px 0 16px 0;
        color: var(--white);
        text-align: center;
    }

    .boxFooterSocial{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .boxFooterSocial a{
        color: var(--white);
        padding: 5px;
        width: 35px; height: 35px;
        background: var(--blue);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .boxFooterSocial a:hover{
        color: var(--white);
        background: var(--red);
    }
    
    /* part2 */
    .footerMenu{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        column-gap: 16px;
    }
    
    .menuItem{
        padding: 8px 0;
        color: var(--white);
        display: flex;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid var(--light-white);
        i{
            color: var(--red);
        }
    }
    
    /* part3 */
    .footerTag{
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .tagItem{
        border: 2px solid var(--blue);
        color: var(--white);
        padding: 8px 16px;
        font-size: 16px;
        text-transform: capitalize;
        border-radius: 5px;
    }

    .tagItem:hover{
        background: var(--blue);
    }

    /* part4 */
    .footerContact{
        display: flex;
        flex-direction: column;
    }

    .contactItem{
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--white);
        padding: 8px;
    }
    
    .contactItem:not(:last-child){
        border-bottom: 1px solid var(--light-white);
    }

    .contactItem:hover{
        color: var(--blue);
    }

    .contactItem i{
        color: var(--red);
        font-size: 17px;
    }
    
    /* bottom */
        .bottom_footer{
            display: flex;
            justify-content: space-between;
            gap: 8px;
            align-items: center;
            border-top: 1px solid var(--light-white);
            padding-top: 16px;
            margin-top: 32px;
        }
        
        /* copyright */
            .copyright{
                color: var(--white);
                text-align: center;
                strong{
                    font-weight: 500;
                }
                a{
                    color: var(--white);
                }
            }
        /* copyright */
    
        /* confidentialite */
            .footer_aide_confidential{
                display: flex;
                align-items: center;
                gap: 16px;
            }
    
            .footer_aide_confidential a{
                display: flex;
                align-items: center;
                color: var(--white);
                text-wrap: nowrap;
            }
    
            .footer_aide_confidential a:hover{
                color: var(--blue);
                text-decoration: underline;
            }
    
            .footer_aide_confidential a svg{
                fill: var(--red);
                margin-right: 5px;
            }
        /* confidentialite */
    /* bottom */
/* footer */


/* responsive */
    /* footer */
        @media screen and (max-width: 1210px) {
            .bottom_footer{
                display: flex;
                flex-direction: column;
                gap: 8px;
            }
        }
        
        @media screen and (max-width: 550px) {
            .footer_aide_confidential{
                display: flex;
                flex-direction: column;
                gap: 5px;
            }
        }
    /* footer */
/* responsive */