/* CW Video Testimonial Slider Styles */

.ts-wrapper {
  font-family: "Montserrat", Sans-serif;
}

.ts-wrapper .ts-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.ts-wrapper .ts-video { flex: 0 0 40%; }

.ts-wrapper #ts-video-box {
  position: relative;
  width: 100%;
  height:296px;
  background: #111;
  border-radius: 15px;
  overflow: hidden;
}

.ts-wrapper #ts-video-box img,
.ts-wrapper #ts-video-box iframe {
  position: relative;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-wrapper #ts-video-box .ts-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 6px solid rgba(255,255,255,1);
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
}
.ts-wrapper #ts-video-box .ts-play:hover { transform: scale(1.05); }
.ts-wrapper #ts-video-box .ts-play img {
    height: 24px;
    opacity: .5;
}
.ts-wrapper .ts-text {
    flex: 0 0 54%;
    text-align: left;
}
.ts-wrapper .ts-text h3 { font-size: 32px; line-height: 39px; font-weight: 700; margin-bottom: 16px;  }
.ts-wrapper .ts-title { font-size:20px; line-height:26px; font-weight: 600; margin-bottom:24px; }
.ts-wrapper .ts-desc { font-size: 18px; line-height:30px; color: #E5E5E5; margin-bottom:24px; }
.ts-wrapper .ts-stars { font-size: 38px; color: #FFD700; }

.ts-wrapper .ts-thumbs {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 40px;
    align-items: center;
}

.ts-wrapper .ts-thumbs .ts-thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.6;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}

.ts-wrapper .ts-thumbs .ts-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ts-wrapper .ts-thumbs .ts-thumb.active {
  width:120px;
  height: 120px;
  opacity: 1;
}

.ts-wrapper .ts-arrows {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 80px;
}




/* ============================
   RESPONSIVE: TABLETS (991px)
   ============================ */
@media (max-width: 991px) {

  .ts-wrapper .ts-main {
    gap: 40px;
    align-items: initial;

  }
  .ts-wrapper .ts-video {
      flex: 0 0 100%;
  }
  .ts-wrapper #ts-video-box {
      height: auto;
  }
  .ts-wrapper .ts-text {
    flex: 0 0 100%;
  }
  .ts-wrapper .ts-text h3 {
    font-size: 26px;
  }

  .ts-wrapper .ts-title {
    font-size: 18px;
  }

  .ts-wrapper .ts-desc {
    font-size: 16px;
  }

  .ts-wrapper .ts-thumbs {
    gap: 25px;
  }

  .ts-wrapper .ts-thumbs .ts-thumb {
    width: 55px;
    height: 55px;
  }

  .ts-wrapper .ts-thumbs .ts-thumb.active {
    width: 90px;
    height: 90px;
  }

  .ts-wrapper .ts-arrows {
    gap: 35px;
  }
}


