/*body {
    overflow-x:hidden;
}

.container {
    min-height: 150pt;
}


.text-grey {
    color: var(--grey);
}

.footer {
    bottom: 0;
    width: 100%;
    background: white;
}*/

#portal-footer-wrapper {
    font-size: 1.6rem;
    font-family: "Titillium Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 24px;
    background-color: rgb(22, 57, 94);
    color: rgb(255, 255, 255);
    padding: 50px 0;
    box-sizing: border-box;
}

    #portal-footer-wrapper .portal-footer {
        margin-right: auto;
        margin-left: auto;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        max-width: 1170px;
    }

    #portal-footer-wrapper h4,
    #portal-footer-wrapper .h4,
    #portal-footer-wrapper h5,
    #portal-footer-wrapper .h5,
    #portal-footer-wrapper h6,
    #portal-footer-wrapper .h6 {
        margin-top: 13.5px;
        margin-bottom: 13.5px;
        font-family: inherit;
        font-weight: 600;
        line-height: 1.3;
        color: inherit;
    }


/* Link */
footer a {
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

    footer a:hover {
        text-decoration: underline;
    }

/* Linee */
footer hr {
    border-top: 1px solid rgb(255, 255, 255);
}

/* Icone social */
/*.footer-social {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-social a {
        display: inline-block;
        border-radius: 100%;
        width: 3rem;
        height: 3rem;
        text-align: center;
        font-size: 1.5rem;
        line-height: 3rem;
        color: rgb(255, 255, 255);
        background-color: transparent;
        transition: background-color 0.3s, color 0.3s;
    }

        .footer-social a:hover {
            background-color: rgba(255, 255, 255, 0.5);
            color: rgb(22, 57, 94);
        }*/

.footer-social {
    display: flex;
    gap: 0.01rem; /* Spazio tra icone */
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-social a {
        display: inline-block;
        border-radius: 50%;
        width: 2.5rem; /* Icone pił piccole */
        height: 2.5rem;
        text-align: center;
        font-size: 1.2rem; /* Dimensione icone */
        line-height: 2.5rem;
        color: rgb(255, 255, 255); /* Colore icone */
        background-color: transparent;
        text-decoration: none; 
    }

        .footer-social a:hover {
            text-decoration: none; /* NO HOVER. SOLO TOOLTIP */
        }


