/* whatsapp css */
.float-wa {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 50px;
    left: 34px;
    background-color: #25d366;
    color: #fff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    line-height: -40px;
}
.bounce {
animation: bounce 2s infinite;
}
@keyframes bounce {
0%,
100%,
25%,
50%,
75% {
    transform: translateY(0);
}
40% {
    transform: translateY(-20px);
}
60% {
    transform: translateY(-12px);
}
}