/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float{
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 20px;
    right: 20px;
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    transition: transform 0.3s ease;
}

.whatsapp-float img{
    width: 100%;
    height: 100%;
}

.whatsapp-float:hover{
    transform: scale(1.1);
}