/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    padding-top: 40px;
}

.footer > div {
    width: 33.333%;
    flex-shrink: 0;
    flex-grow: 0;
}

.footer__company {
    text-align: center;
}
.footer__company img {
    height: 14px;
}

.footer__policy {
    text-transform: uppercase;
    text-align: right;
}

.footer a {
    color: #000;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer__whatsapp {
    position: fixed;
    z-index: 5;
    right: 10px;
    bottom: 20px;
    height: 50px;
    width: 50px;
    background: url("/images/icons/whatsapp.png") no-repeat center center / contain;
    will-change: transform;
    transition: transform .2s;
}
.footer__whatsapp:hover {
    transform: scale(1.1);
}
