/* ===========================
   Testimonials Section Styles
=========================== */

:root {
  --white: #ffffff;
  --black: #000000;
  --yellow: #f5c74d;
  --card-bg: #aca398;
  --radius: 12px;
  --shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  --gap: 28px;
}

.testimonial-sec {
  padding: 50px 0;
}

.testimonial-sec .row {
  --bs-gutter-y: 24px;
}

.testi-slide-wrp {
  padding: 12px;
}

.testimonial-sec .slick-dots {
  bottom: -50px;
}

.testi-slide {
  padding: 36px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  background: var(--card-bg);
  height: 100%;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 25px;
}

.stars i {
  color: var(--yellow);
}

.testi-slide>p {
  color: #fff;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.author {
  display: flex;
  align-items: center;
  gap: 25px;
  background: #fff;
  padding: 12px;
  border-radius: var(--radius);
}

.author .avatar {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
}

.author .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author .meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author .meta .name {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.author .meta .role {
  font-size: 14px;
  color: var(--card-bg);
}

.testimonials-left {
  position: relative;
  padding-left: 40px;
}

.testimonials-left::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 100%;
  top: 0;
  background: #808080;
}

.testimonials-left::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 100px;
  background: #808080;
}

.testimonials-left .head-upr-txt {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
}

.testimonials-left h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 139%;
  text-transform: capitalize;
}

.testimonial-btn {
  margin-left: 40px;
  margin-top: 40px;
}

.testimonials-left p {
  font-size: 18px;
  color: var(--card-bg);
  font-weight: 400;
  line-height: 32px;
  font-family: "Open Sans", Sans-serif;
}

.cmn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 8px;
  color: #fff;
  padding: 0 0 0 20px;
  text-decoration: none;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
  height: 48px;
  gap: 15px;
  border: 1px solid #fff;
  display: none;
}

.cmn-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 48px;
  height: 100%;
  background: #aca398;
  color: #fff;
  border-left: 1px solid #000;
  transition: all ease-in-out 0.3s;
}

.cmn-btn:hover {
  background: #fff;
  color: #000;
  border-color: #000;
}

.cmn-btn:hover i {
  background: #fff;
  color: #000;
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  gap: 12px;
}

.slick-dots li button {
  font-size: 0;
  border: 0;
  outline: none;
  background: #000;
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  display: block;
}

.mobile-show {
  display: none !important;
}

.mobile-hide {
  display: none !important;
}

@media (max-width: 991px) {
  .mobile-hide {
    display: none !important;
  }

  .mobile-show {
    display: none !important;
    margin: 0 auto;
    margin-top: 70px;
  }

}

@media (max-width: 767px) {
  .testimonials-left h2 {
    font-size: 28px;
  }


}

@media (max-width: 575px) {
  .testimonials-left h2 {
    font-size: 24px;
  }

  .author {
    padding: 8px;
  }

  .author .avatar {
    width: 50px;
    height: 50px;
  }

  .testi-slide-wrp {
    padding: 0;
  }
}

.slick-dots li button:before {

  display: none;

}