/* THIS CSS IS FOR WHATSAPP BTN */
.whatsapp {
  position: fixed;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  bottom: 20px;
  right: 20px;
  border: none;
  color: #fff;
  background: #00d56b;
  outline: none;
  transition: 0.3s;
  text-align: center;
  line-height: 45px;
  transition: 0.3s;
  z-index: 999;
  animation-name: animacion1;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: ease-in-out;
}

@keyframes animacion1 {

  /* THIS CSS IS FOR WHATSAPP BTN */
  from {
    color: "black";
    /* margin-top: 0px; */
    bottom: 15px;
  }

  to {
    color: "black";
    /* margin-top: 30px; */
    bottom: 40px;
  }
}

.whatsapp svg {
  transition: 0.3s;
  margin-top: 10px;
}

@media (max-width: 500px) {
  .whatsapp {
    width: 50px;
    height: 50px;
    line-height: 35px;
    bottom: 25px;
    right: 15px;
  }

  .whatsapp svg {
    transition: 0.3s;
    width: 30px;
    margin-top: 2px;
  }
}