.whatsapp-float {
    bottom: 20px;
    width: 50px;
    height: 50px;
    background: #fa8507;
    color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .25);
    animation: 1.5s ease-in-out infinite pulse
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(.95)
    }

    50% {
        transform: scale(1.05)
    }
}

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

.floating-call-btn {
    bottom: 100px;
    background: #28a745;
    color: #fff;
    width: 55px;
    height: 55px;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
    animation: 1.8s ease-in-out infinite pulse1
}

.floating-call-btn:hover {
    background: #1e7e34
}

@keyframes pulse1 {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.15)
    }
}