/* Video Testimonial Section Styles */

.video-testimonial-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 60px 10px;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-color: #ffffff;
}

.video-testimonial-section .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  box-sizing: border-box;
}

.video-testimonial-section .video-testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.video-testimonial-section .video-testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 978px;
}

.video-testimonial-section .video-testimonial-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 300;
  text-align: center;
  color: #112446;
  margin: 0;
  line-height: 50px;
}

.video-testimonial-section .video-testimonial-description {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #313F58;
  margin: 0;
  line-height: 28px;
  max-width: 978px;
}

.video-testimonial-section .video-testimonial-cards {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
  max-width: 1440px;
}

.video-testimonial-section .testimonial-card {
  position: relative;
  width: calc(50% - 15px);
  min-height: 700px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.video-testimonial-section .testimonial-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f4f7fa;
  border-radius: 10px;
  z-index: 0;
}

.video-testimonial-section .testimonial-video-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.video-testimonial-section .testimonial-video-wrapper .wistia_responsive_padding {
  border-radius: 10px;
  overflow: hidden;
}

.video-testimonial-section .testimonial-video-wrapper .wistia_responsive_wrapper {
  border-radius: 10px;
}

.video-testimonial-section .testimonial-video-wrapper iframe {
  border-radius: 10px;
}

.video-testimonial-section .testimonial-quote {
  position: relative;
  z-index: 1;
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  text-align: left;
  color: #000000;
  margin: 31px 0px 0 0px;
  line-height: 1.6;
  flex-grow: 1;
}

.video-testimonial-section .testimonial-author {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px 0 20px;
  gap: 15px;
}

.video-testimonial-section .author-logo {
  width: 100px;
  height: 56px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.video-testimonial-section .author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.video-testimonial-section .author-name {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  color: #000000;
}

.video-testimonial-section .author-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  color: #000000;
}

/* Responsive Breakpoints */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
  .video-testimonial-section {
    padding: 50px 10px;
  }
  
  
  .video-testimonial-section .testimonial-card {
    width: calc(50% - 10px);
    min-height: 600px;
  }
  
  .video-testimonial-section .testimonial-video-wrapper {
    margin: 15px 0 0 0;
  }
}

/* Small Tablet - 768px and below */
@media (max-width: 768px) {
	.video-testimonial-section .video-testimonial-title{
		line-height: 40px;
	}
  .video-testimonial-section .video-testimonial-cards {
    flex-direction: column;
  }
  
  .video-testimonial-section .testimonial-card {
    width: 100%;
    min-height: auto;
    padding: 15px;
  }
  
  .video-testimonial-section .testimonial-video-wrapper {
    margin: 0;
  }
  
  .video-testimonial-section .video-testimonial-header {
    max-width: 100%;
  }
  
  .video-testimonial-section .testimonial-quote {
    margin: 20px 15px 0 15px;
  }
  
  .video-testimonial-section .testimonial-author {
    flex-wrap: wrap;
  }
  
  .video-testimonial-section .author-logo {
    width: 80px;
    height: 45px;
  }
}

/* Mobile - 480px and below */
@media (max-width: 480px) {
  
  .video-testimonial-section .container {
    padding: 0 10px;
  }

  .video-testimonial-section .testimonial-quote {
    margin: 20px 10px 0 10px;
}
  
  .video-testimonial-section .author-logo {
    width: 70px;
    height: 40px;
  }

}
