.button-whatsapp {
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 2%;
  transition: all 2s;
  animation: animation-card 3s linear infinite both;
  width: 58px;
  height: 58px;
  z-index: 99;
}

.button-whatsapp a img{
  width: 58px;
  height: 58px;
}

/* .card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: auto;
    width: 30%;
    max-width: 240px;
    padding: 5px;
    border-radius: 10px;
    border: .5px solid rgba(0, 0, 0, .5);
    background-color: rgba(0, 175, 255, 1);
    box-shadow: 0px 0px 23px 2px rgba(0, 0, 0, .3);
   
  } */

@keyframes animation-card {
  0% {
    scale: 1;
  }

  25% {
    scale: 1.05;
  }

  50% {
    scale: 1.1;
  }

  75% {
    scale: 1.05;
  }

  100% {
    scale: 1;
  }
}


@media only screen and (max-width: 768px) {
  .button-whatsapp {
    margin: 5%;

  }
}