.whatsapp-bull{

	width: 5.9%;
	padding: .9% 0;
	background-color: #25d366;
	position: fixed;
	bottom: 20%;
	right: 1%;
	z-index: 50000000;
	border-radius: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3vw;
	color: white;
	cursor: pointer;
    animation: growShrink 2s infinite;

}


@keyframes growShrink {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
@media only screen and (max-width: 480px){


	.whatsapp-bull{

		width: 17%;
	    padding: 4% 0;
	    background-color: #25d366;
	    position: fixed;
	    bottom: 15%;
	    right: 5%;
	    border-radius: 100vw;
	    display: flex;
	    align-items: center;
	    justify-content: center;
	    font-size: 32px;
	    color: white;
	    cursor: pointer;

	}

}