.whatsapp{
	position: fixed;
	bottom: 10px;
	left: 10px;
	width: 60px;
	height: 60px;
	background-color: lime;
	border-radius: 100%;	
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 5;
	
}
.whatsapp i{
	font-size: 40px;
	color: #fff;
}
/*******************************RESPONSIVE DESING************************************/
@media screen and (max-width: 800px){
	.whatsapp{
		margin-top: 15px;
		position: relative;
		width: 100%;
		height: 70px;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: transparent;
	}
	.responsive_whatsapp{
		width: 60px;
		height: 60px;
		background-color: lime;
		border-radius: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}