.whatsapp{
    z-index: 100;
    position:fixed;
    bottom:80px;
    right: 25px;
    display:flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin:0;
    padding:0 0 3px;
    color:white;
    background-color: green;
    font-size: 30px;
    border-radius: 50%;
    border:1px solid white;
    height: 60px;
    width: 60px;
    transform: rotate(0.75turn);
    animation-duration: 2s;
    animation-name: whatsapp-animation;
    animation-iteration-count:infinite;
    
}
@keyframes whatsapp-animation {
    from{
        box-shadow: 0 0 2px green;
    }
    50%{
        box-shadow: 0 0 25px green;
    }
    to{
        box-shadow: 0 0 2px green;
    }
}
.whatsapp a{
    /* display:inline-block; */
    text-indent: 0;
    color:inherit;
    text-decoration: none;
}
/* ============== */
/* call */
/* ============== */
.call{
    z-index: 100;
    position:fixed;
    bottom:80px;
    left: 25px;
    display:flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin:0;
    padding:0 0 3px;
    color:white;
    background-color: deepskyblue;
    font-size: 30px;
    border-radius: 50%;
    /* border:1px solid white; */
    height: 60px;
    width: 60px;
    /* transform: rotate(0.75turn); */
    animation-duration: 2s;
    animation-name: call-animation;
    animation-iteration-count:infinite;
    
}
@keyframes call-animation {
    from{
        box-shadow: 0 0 5px deepskyblue;
    }
    50%{
        box-shadow: 0 0 25px deepskyblue;
    }
    to{
        box-shadow: 0 0 5px deepskyblue;
    }
}
.call a{
    /* display:inline-block; */
    text-indent: 0;
    color:inherit;
    text-decoration: none;
}
