/* Slick Slider Base Styles */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Custom styling for slider arrows */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  z-index: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size:0;
  border:none;
}

.slick-prev {
  left: -5px;
}

.slick-next {
  right: -5px;
}

.slick-prev:before,
.slick-next:before {
  content: '\21FD';
  font-size: 20px;
  color: #fff;
}

.slick-next:before {
  content: '\21FE'; 
}

/* Custom styling for dots */
.slick-dots {
  bottom: 10px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0;
  list-style: none;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  border: none;
  padding: 0;
  cursor: pointer;
}

.slick-dots li.slick-active button {
  background-color: #9600BF;
}

/* Custom card styles */
.testimonials{
	margin: 0 auto 50px;
    .grid-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    
    @media (max-width: 1080px) {
      .grid-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 800px) {
      .grid-container {
        grid-template-columns: 1fr;
      }
    }
    
    /* You can leave this empty or add padding/margin as desired */
    .gridItem {
      /* e.g. padding: 0.5rem; */
    }
    .link-to-all a{
      color: #9600bf;
      font-weight: 600;
      text-align: center;
      padding: 8px 15px;
      font-size: 13px;
      line-height: 22px;
      text-transform: uppercase;
      border-radius: 25px;
      border: 2px solid #9600bf;
      font-family: "Montserrat";
      width: 220px;
      margin: 0 auto;
      margin-top: 30px;
      display: block;
      &:hover{
        background: #F5F7FA;
      }
    }
}
.testimonial-card {
  /* border-radius: 10px; */
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 10px 20px;
  transition: transform 0.3s;
  /* display: flex; */
  border-left:5px solid #780F9E;
  height:250px;
  cursor:pointer;
  background: #FFF;
}
.testimonial-top{
  display: flex;
}
.card:hover {
  transform: translateY(-10px);
}



.testimonial-photo {
  width: 90px;
  height: 90px;
  
  object-fit: cover;
  min-width: 90px;
  margin-right:10px;
}
.testimonial-photo img{
	border-radius: 50%;
    max-height:100%;
    object-fit: cover;
    width: 90px;
    height: 90px;
    object-position: top center;
    max-width: 100%;
    
}

.testimonial-container{
	text-align: left;
    margin-top:12px;
}

.testimonial-text {
  font-style: italic;
  font-size:1rem;
  line-height: 1.3rem;
  min-height:40px;
  margin-bottom:5px;
  min-height:80px;
  p{
    margin-bottom:10px;
  }
  ul{
    font-size:1rem;
    line-height: 1.3rem;
    li{
      list-style: inside;
      margin-bottom:10px;
      margin-left:10px;
    }
  }
}
.testimonial-subtext{
  font-style: italic;
  text-align: right;
}
.testimonial-title {
  color: #555;
  font-weight:400;
  margin-top:3px;
  font-size:.9rem;
  line-height:1.2em;
}
.testimonial-title.company{
  margin-top:8px;
  line-height:1.2em;
  font-weight:500;
}

.testimonial-name {
  font-weight: 700;
  color: #333;
  font-size:.95rem;
}

.title {
  color: #777;
  font-size: 0.8em;
}
.testimonials .desktop-hide{
	display:none;
}
@media only screen and (max-width: 767px) {
	
	.testimonials .mobile-hide{
		display:none;
	}
	.testimonials .desktop-hide{
		display:block;
	}
	
}

