/* Floating Buttons */
.float-btn{
    position:fixed;
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 4px 10px rgba(0,0,0,.3);
    z-index:99999;
    transition:.3s;
}

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

/* Left Side */
.left-whatsapp{
    left:15px;
    bottom:90px;
    background:#25D366;
}

.left-call{
    left:15px;
    bottom:20px;
    background:#e53935;
}

/* Right Side */
.right-call{
    right:15px;
    bottom:20px;
    background:#e53935;
}

.right-whatsapp{
    right:15px;
    bottom:90px;
    background:#25D366;
}