.whatsapp-float,
.phone-float{
    position: fixed;
    left: 25px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #fff !important;

    font-size: 24px;
    text-decoration: none;

    z-index: 99999;

    box-shadow: 0 5px 15px rgba(0,0,0,.25);
    transition: all .25s ease;
}

.phone-float{
    bottom:70px;
    background:#dc3545;
}

.phone-float:hover{
    background:#c82333;
    transform:translateY(-3px);
}

.whatsapp-float{
    bottom:10px;
    background:#25D366;
    animation:pulse 2s infinite;
}

.whatsapp-float:hover{
    background:#20ba5a;
    transform:translateY(-3px);
}

@keyframes pulse{

    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.7);
    }

    70%{
        box-shadow:0 0 0 15px rgba(37,211,102,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }

}

@media (max-width:768px){

    .whatsapp-float,
    .phone-float{

        left:15px;

        width:55px;
        height:55px;

        font-size:26px;
    }

    .whatsapp-float{
        bottom:20px;
    }

    .phone-float{
        bottom:85px;
    }
}

.home-float,
.phone-float,
.whatsapp-float{
    position: fixed;
    left: 25px;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;

    font-size: 24px;

    z-index: 99999;

    box-shadow: 0 5px 15px rgba(0,0,0,.25);

    transition: all .25s ease;
}

.home-float{
    bottom:130px;
    background:#0d6efd;
}

.home-float:hover{
    background:#0b5ed7;
    transform:translateY(-3px);
}

.phone-float{
    bottom:70px;
    background:#dc3545;
}

.whatsapp-float{
    bottom:10px;
    background:#25D366;
}

@media(max-width:768px){

    .home-float,
    .phone-float,
    .whatsapp-float{
        left:15px;
        width:55px;
        height:55px;
        font-size:26px;
    }

    .home-float{
        bottom:150px;
    }

    .phone-float{
        bottom:85px;
    }

    .whatsapp-float{
        bottom:20px;
    }
}

.language-float{
    position:fixed;
    right:20px;
    bottom:70px;

    width:40px;
    height:40px;

    border-radius:50%;
    background:#0d6efd;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    font-size:18px;
    font-weight:bold;

    box-shadow:0 2px 8px rgba(0,0,0,.3);
    z-index:9999;
    transition:.3s;
}

.language-float:hover{
    background:#0b5ed7;
    color:#fff;
    transform:scale(1.08);
}