.testimonials {
  overflow-x: hidden;
}
.testimonials .testHeading {
  font-size: 68px;
  color: #000;
  font-weight: 700;
}
.testimonials .videoDiv {
  box-shadow: 0 0 2em -0.9em #000000;
  padding: 55px 55px;
}
.testimonials .clientImgUpper .clientImg {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.testimonials .clientImgUpper .clientImg button {
  position: absolute;
  z-index: 99;
  border: none;
  background: transparent;
}
.testimonials .clientImgUpper .clientImg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 280px;
}
.testimonials .clientContent {
  padding: 20px;
}
.testimonials .clientContent h4 {
  font-size: 24px;
  font-weight: 700;
}
.testimonials .clientContent h5 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #000;
}
.testimonials .clientContent p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
}

.clientData {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  height: 100%;
}

@media (max-width: 992px) {
  .testHeading {
    font-size: 55px !important;
  }
}
@media (max-width: 576px) {
  .testHeading {
    font-size: 34px !important;
  }
  .clientData {
    flex-direction: column !important;
  }
  .clientContent {
    margin-top: 2rem;
  }
  .clientContent p {
    display: inline-flex;
  }
}
.modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000; /* Ensure it appears above other content */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
}

.modalContent {
  background-color: #fff;
  padding: 20px;
  max-width: 1000px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.modalContent video {
  width: 100%;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.close:hover {
  color: #f00; /* Change color on hover */
}

.italic {
  font-style: italic;
  font-size: 28px !important;
  font-weight: 300 !important;
}

.modalHeading {
  font-size: 28px !important;
  font-weight: bold;
}/*# sourceMappingURL=testimonials.module.css.map */