.facebook-float {
  position: fixed;
  bottom: 210px;
  right: 30px;
  z-index: 999;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2AA4F4;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}
.facebook-float img {
  width: 50px;
  height: 50px;
  margin-top: 0px;
}
.phone-float {
  position: fixed;
  bottom: 150px;
  right: 30px;
  z-index: 999;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #00A8E2;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}
.phone-float img {
  width: 50px;
  height: 50px;
  margin-top: 0px;
  margin-left: 0px;
}
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 999;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #25D366;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}
.whatsapp-float img {
  width: 50px;
  height: 50px;
  margin-top: 0px;
}


.pulse-facebook {
  animation: pulse-animation-facebook 2s infinite;
}

.pulse-phone {
  animation: pulse-animation-phone 2s infinite;
}

@keyframes pulse-animation-facebook {
  0% {
    box-shadow: 0 0 0 0px rgba(42, 164, 244, 0.5);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

.pulse-whatsapp {
  animation: pulse-animation-whatsapp 2s infinite;
}

@keyframes pulse-animation-whatsapp {
  0% {
    box-shadow: 0 0 0 0px #25d36657;
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

@keyframes pulse-animation-phone {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 168, 226, 0.5);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}