.customer_review swiper-container {
  display: block;
    padding-bottom: 15px;

}

.customer_review swiper-slide {
  height: auto;
}


.customer_review .heade {
  font-size: clamp(24px, 2.5vw, 40px);
  line-height: normal;
  font-weight: 800;
  text-align: center;
 color: var(--title-color);
}
.opinine{
  font-size: 14px;
  color:var(--customer-opinion-color);
}

@media (min-width: 767px) {
  .customer_review .heade {
    font-size: 40px;
  }
}

.customer_review .img-name-job img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
}

.customer_review .one-review .name-job .name {
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  font-size: 1.25rem;
  color: var(--customer-name-color);
}

.customer_review .one-review .name-job .job {
  font-size: 0.95rem;
    font-weight: 400;
  line-height: normal;
  color: var(--customer-job-color);
}

.customer_review .stars_rating {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: 30px;
  line-height: normal;
  text-align: center;
  margin-block: 0px;
}

.customer_review .stars_rating::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(90deg,
      #fc0 var(--percent),
      #c5c5c5 var(--percent));
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.customer_review .one-review {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border: 1px solid var(--border-color);
  box-shadow: 7px 7px 0 var(--border-color);
  padding: 20px;
  margin-bottom: 10px;
  height: 97%;
}

.qut-1 i , .qut-2 i{
  font-size: 20px;
  color: var(--customer-name-color);
  will-change: transform;
}
.qut-1{
  top:20px; left:20px; width:20px; height:18px;
}
.qut-2{
  bottom:20px; right:20px; width:20px; height:18px;
}

/* Mobile screens */
@media (max-width: 576px) {
  .customer_review .img-name-job img {
    width: 30px;
    height: 30px;
  }

  .customer_review .one-review .name-job .name {
    font-size: 8px;
    line-height: normal;
    color: var(--customer-name-color);
  }

  .customer_review .one-review .name-job .job {
    font-size: 7px;
    line-height: normal;
  }

  .customer_review .stars_rating {
    font-size: 20px;
  }
}