.call,
.whatsapp,
.google,
.facebook {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
}

.call {
  background-color: rgb(3, 85, 7);
}

.whatsapp {
  background-color: rgb(34, 235, 8);
}

.google {
  background-color: rgb(241, 13, 13);
}

.facebook {
  background-color: rgb(1, 32, 204);
}

.whatsapp:hover,
.call:hover,
.google:hover,
.facebook:hover {
  background-color: white;
  color: black;
}

.container-media {
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  position: fixed;
  bottom: 95px;
  left: 14px;
}