/* =========================
   FLOATING BUTTONS
========================= */

.whatsapp-btn,
.call-btn,
.scroll-top-btn{
    position:fixed !important;
    width:60px !important;
    height:60px !important;
    border-radius:50% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    text-decoration:none !important;
    z-index:99999 !important;
    box-shadow:0 5px 20px rgba(0,0,0,0.25) !important;
    transition:0.4s !important;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp-btn{
    right:20px !important;
    bottom:100px !important;
    background:#25d366 !important;
    color:#fff !important;
    font-size:30px !important;
}

.whatsapp-btn:hover{
    transform:translateY(-5px);
    color:#fff;
}

/* =========================
   CALL BUTTON
========================= */

.call-btn{
    right:20px !important;
    bottom:25px !important;
    background:rgba(0,0,128,1 ) !important;
    border: #fff solid 1px !important;
    color:#f6f2f2 !important;
    font-size:24px !important;
}

.call-btn:hover{
    transform:translateY(-5px);
    color:#000;
}

/* =========================
   SCROLL TOP
========================= */

.scroll-top-btn{
    left:20px !important;
    bottom:25px !important;
    background:rgba(0,0,128,1 ) !important;
    color:#fff !important;
    border:none !important;
    font-size:22px !important;
    cursor:pointer !important;
    display:none;
}

.scroll-top-btn:hover{
    background:#f4b400 !important;
    color:#000 !important;
    transform:translateY(-5px);
}