

/* Base card */
.tp-testimonial-item {
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 12px;
}

/* Review text */
.review-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

/* Desktop */
@media (min-width: 992px) {
  .review-text {
    -webkit-line-clamp: 4;
    min-height: 110px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .review-text {
    -webkit-line-clamp: 3;
    min-height: 90px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .tp-testimonial-item {
    padding: 18px;
  }

  .review-text {
    -webkit-line-clamp: 3;
    min-height: auto;
    font-size: 14px;
  }

  .tp-testimonial-avatar-title {
    font-size: 14px;
  }

  .tp-testimonial-avatar-pos {
    font-size: 12px;
  }

  .review-link {
    font-size: 12px;
  }

  /* Avatar smaller */
  .tp-testimonial-user img {
    width: 40px;
    height: 40px;
  }
}

.whatsapp-float {
  background: #25D366;
  color: #fff;
  position: fixed;
  left: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;  
  font-size: 20px;
  padding: 8px 13px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  opacity: 1;
  bottom: 50px;
}


