img{
    width:100%;
    
}

 .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      /*background-color: #25d366;
      border-radius: 50%;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/
       box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      transition: transform 0.3s ease;
    }

    .whatsapp-float:hover {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
      transform: scale(1.1);
      
    }

    .whatsapp-float svg {
      width: 60px;
      height: 60px;
      fill: #fff;
    }