/* Floating Button WhatsApp */
.whatsapp_float_btn {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 40px;
  right: 20px;
  background-color: rgba(11, 156, 11, 0.3);
  color: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px rgba(255, 255, 255, 0.1);
  z-index: 100;
  cursor: pointer;
}

.whatsapp_float_btn:hover {
  background-color: rgba(11, 156, 11);
  color: rgba(255, 255, 255);
  box-shadow: 4px 4px 6px var(--silcol);
}

.fa-whatsapp {
  margin-top: 10px;
}

/* Floating Button Phone */
.phone_float_btn {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 100px;
  right: 20px;
  background-color: rgba(255, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px rgba(255, 255, 255, 0.1);
  z-index: 100;
}

.phone_float_btn:hover {
  background-color: rgba(255, 0, 0);
  color: rgba(255, 255, 255);
  box-shadow: 4px 4px 6px var(--silcol);
  cursor: pointer;
}

.fa-mobile-screen-button {
  margin-top: 10px;
}
