#t-footer{
    position:relative;z-index:99;
}
.whatsapp-link{
    &:before,&:after{
        content: '';
position: absolute;
border: 2px solid #25d366;
left: -15px;
opacity: 0;
right: -15px;
top: -15px;
bottom: -15px;
border-radius: 50%;
animation: pulse 2.5s linear infinite;
    }
    &:after{
        animation-delay: 1.25s;
    }
    position:fixed;bottom:5rem;right:2rem;width:50px;height:50px;display:flex;align-items:center;justify-content:center;color:#fff!important;background-color:#64b161!important;border-radius:50%;z-index:2;
    svg{
        width:30px;height:auto;
    }
}
@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity:0
    }
    50% {
        opacity:1
    }
    100% {
        transform: scale(1.2);
        opacity:0
    }
}