/* floating whatsapp */

.v_floating {
  position: fixed;
  bottom: 40px;
}

.v_float_whatsapp {
  right: 10px;
}

.v_float_whatsapp a {
  color: white;
  background-color: #25d366;
  font-size: 3rem;
  border-radius: 50px;
  border: 3px solid #25d366;
  transition: all 0.2s ease-in-out;
  height: 65px;
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.v_float_whatsapp a:hover {
  color: #25d366;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.v_float_call {
  left: 10px;
}

.v_float_call a {
  background-color: #288ecd;
  color: white;
  font-size: 3rem;
  border-radius: 50px;
  border: 3px solid #288ecd;
  transition: all 0.3s ease-in-out;
  height: 65px;
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.v_float_call a:hover {
  color: #288ecd;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
/* floating whatsapp end  */
