/** Shopify CDN: Minification failed

Line 109:0 Expected "}" to go with "{"

**/
.customer-testimonial {
  display: flex;
}

.testimonial-item {
  display: flex !important;
  flex-wrap: wrap;
  min-height: 350px;
  border-radius: 8px;
  overflow: hidden;
}

.testimonial-box {
  flex: 1 1 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFF6EC;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.testimonial-author {
  font-weight: bold;
  margin-bottom: 10px;
}

.testimonial-stars {
  color: #E6B800;
  font-size: 18px;
}

.testimonial-image {
  flex: 1 1 50%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-image .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.testimonial-overlay-content {
  position: relative;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.overlay-title {
  font-size: 22px;
  margin-bottom: 12px;
}

.overlay-btn {
  background: linear-gradient(90deg, #c47a00, #f7b733);
  color: #fff;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.overlay-btn:hover {
  background: linear-gradient(90deg, #f7b733, #c47a00);
}
.testimonial-desc-box{
  background: #fff;
   padding: 4em 5em;
}
/* Responsive */
@media(max-width: 768px){
      .testimonial-item {
        flex-direction: column-reverse;
    }
  .testimonial-box, .testimonial-image 
  { 
    flex: 1 1 100%; 
  }

.testimonial-desc-box{
  background: #fff;
   padding: 0px 10px;
}
.testimonial-text {
  font-size: 14px;
}
.testimonial-box {
    padding: 0px;
}
