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

.whatsapp-float{

    position:fixed;

    right:30px;

    bottom:30px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-size:36px;

    text-decoration:none;

    box-shadow:0 20px 45px rgba(0,0,0,.25);

    z-index:9999;

    opacity:0;

    transform:translateY(40px);

    transition:.35s;

}

.whatsapp-float.show{

    opacity:1;

    transform:translateY(0);

}

.whatsapp-float:hover{

    transform:scale(1.10);

}

.whatsapp-float i{

    animation:whatsappPulse 2.2s infinite;

}

@keyframes whatsappPulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.18);

    }

    100%{

        transform:scale(1);

    }

}