.testimonial-container {
  width: 50%;
}
.testimonial-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.testimonial-left img h2 {
  width: 100%;
  font-size: 20px;
}
.testimonial-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-right img {
  width: 100%;
  font-size: 20px;
}
@media (max-width: 680px) {
  .testimonial-container {
    width: 100%;
  }
}
.client-review {
  padding: 1rem;
  background-color: #49b3ff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: white;
}
.client-review h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 32px;
}

@media (max-width: 1400px) {
  .client-review h1 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .client-review h1 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
  }
}
.reviews {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.reviews span {
  font-size: 20px;
}

@media (max-width: 968px) {
  .reviews span {
    font-size: 16px;
  }
}
.review-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.review-name span {
  width: 1.5rem;
  height: 2px;
  background-color: white;
}
.review-name h2 {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 958px) {
  .review-name h2 {
    font-size: 18px;
  }
}
.review-star {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.all-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffb800;
}

.client-review-sitelink {
  padding: 1rem;
  background-color: #49b3ff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: white;
}
.client-review-sitelink h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 32px;
}

@media (max-width: 1400px) {
  .client-review-sitelink h1 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .client-review-sitelink h1 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 500;
  }
}
@media (max-width: 580px) {
  .testimonial-left {
    display: none;
  }
  .testimonial-right img {
    display: none;
  }
}
.image-wrapper {
  position: relative;
  display: inline-block;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: url("/images/play-icon.png") no-repeat center center;
  background-size: contain;
  cursor: pointer;
}

.play-icon:hover {
  opacity: 0.8;
}
