footer {
    color: var(--black-color);
    font-size: 14px;
}

footer a {
    color: var(--black-color);
}

footer a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.logo-footer {
    margin-bottom: -22px;
}

.footer-content {
    border-radius: 40px 40px 0 0;
}

.footer-social a:hover {
    text-decoration: none;
}

.copyright {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    font-size: 12px;
    opacity: 0.3
}

.certificazioni {
    filter: grayscale(1);
}

/* Widget Whatsapp in basso a destra */

#whatsappWidget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

#whatsappWidget .widget {
    height: 60px;
    width: 60px;
    border-radius: 50px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .15s ease-in-out;
}

#whatsappWidget .widget i {
    color: #ffffff;
    font-size: 40px;
}

#whatsappWidget .widget:hover {
    transform: scale(1.1);
    background-color: #cd3546ff;
}

@media screen and (max-width: 768px) {
    #whatsappWidget {
        position: fixed;
        bottom: 70px;
        right: 10px;
    }
}