.container-footer {
    max-width: 100%;
    width: 100%;
    height: auto;
    background-color: var(--colore-primario);
    margin: auto;
    margin-bottom: 10px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    gap: 15px;
    box-sizing: border-box;
    /* Aggiungi questa linea */
}

.footer {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 20px;
}

.logo-footer {
    background-color: white;
    /* padding: 15px 0px; */
    box-sizing: border-box;
    max-width: 400px;
    width: 100%;
    height: 100%;
    color: var(--colore-text);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--color-primary-10);
    border-radius: 10px;
}

.container-logo-footer {
    padding: 10px;
    width: 100%;
    text-align: start;
}

.logo-footer>p {
    margin: 0
}

.nav-footer {
    box-sizing: border-box;
    color: white;
    width: 250px;
    height: 100%;
}

.nav-footer>p {

    color: var(--colore-black);
    background-color: var(--colore-bianco);
    font-weight: 600;
    border-radius: 10px;
    padding: 0 10px;

}

.colum-menu {
    padding: 5px 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 15px;
    color: var(--colore-bianco);
    text-decoration: underline;
    cursor: pointer;
}

.colum-menu a {
    color: var(--colore-grigio);
}


@media only screen and (max-width:768px) {
    .logo-footer {
        max-width: none;
        width: calc(100% - 10px);
    }

    .nav-footer {
        width: 100%;
    }

    .nav-footer>p {
        text-align: center;
        border-radius: 0;
    }
}