/**THIS IS FOR WHATSAPP*/


.iconify {
	background-color: teal;
    color: white;
    width: 50px;
    height: 50px;
	position: fixed;
	bottom: 25px;
	left: 10px;
	z-index: 9;
    border-radius: 18%;
    box-shadow: 0px 0px 8px black;
    transition: 0.3s;
  
  
}

.iconify:hover {
    opacity: 0.9;
    text-shadow: 0px 0px 8px black;
    border-radius:18%;
    width: 53px;
}


@media screen and (max-width:320px) and (max-width:768px) {
  .iconify {
   position: fixed;
   bottom: 25px;
   left: 10px;
  }
}




