.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 20px;
	left: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 28px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	z-index:99999;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}
@media(max-width:991px){
    .service2-item::after{
        display:none;
    }
    img.img-fluid {
    box-shadow: 0px 0px 5px 0px red;
    border-radius: 10px;
    height: 77px !important;
    object-fit: cover;
    width: 100%;
    margin-bottom:10px;
}
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 120px;
	left: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid blue;
	z-index:99999;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

img.img-fluid {
    box-shadow: 0px 0px 5px 0px red;
    border-radius: 10px;
    height: 185px;
}
.btn-whatsapp-pulse-borders::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	z-index:99999;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}
a.btn-whatsapp-pulse.btn-whatsapp-pulse-border {
    background: #0064b0;
    text-decoration: none;
}
@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
