.footer {
    padding-top: 20px;
    border-top: 3px solid black;
    border-bottom: 3px solid black;
    background-color: var(--grigio_logo);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-items: center;
    align-items: stretch;
}

.footer .col {
    float: left;
    padding: 20px;
}

.footer:after {
    content: "";
    display: table;
    clear: both;
}

/* social bar */
.footer .social {
    display: flex;
    justify-items: right;
    background-color: var(--grigio_logo);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
}

.footer .social button {
    padding: 5px;
    margin: 5px;
    
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background-color: var(--verde_trasp);
    border: none;
    cursor: pointer;
}

.footer .social button:hover {
    background-color: lightblue;
}

.footer .social img {
    padding: 0px;
    margin: 0;
    width: 20px;
    height: 20px;
    margin-top: 4px;
}


.footer .indirizzo {
    color: var(--bianco);
    font-family: importante;
    font-style: italic;
    margin-top: 0px;
    font-size: small;
    text-align: center;
}

.footer .title {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 10px 16px;
    text-align: center;
}

.footer .title p {
    line-height: 24px;
    color: var(--verde);
    font-size: medium;
    font-family: importante;
    font-weight: bold;
    margin-right: 5px;
}

.footer .title img {
    cursor: pointer;
    width: 24px;
    height: 24px;
    animation: rotation 3s infinite linear;
}

.footer .links ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer .links ul li a {
    display: block;
    margin: 5px 5px;
    text-decoration: none;
    color: var(--bianco);
    font-family: importante;
    font-style: italic;
    margin-top: 0px;
    font-size: small;
    text-align: center;
}

.footer .links ul li a:hover {
    color: var(--verde);
}