.What_Customer_Say {
  margin: 5% 0;
  overflow: hidden;
}

.What_Customer_Say .Common_heading {
  text-align: center;
}

/* BACKGROUND */
.What_Customer_Say .What_Customer_Say_div {
  background-image: url("/assets/images/home/what_customer_say/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5%;
}

/* SWIPER */
.What_Customer_Say .testimonial_swiper_wrapper {
  position: relative;
  width: 100%;
  margin: 0px auto;
}

.What_Customer_Say .testimonial_swiper .swiper-button-prev,
.What_Customer_Say .testimonial_swiper .swiper-button-next {
  bottom: 0px;
  top: unset;
}

.What_Customer_Say .testimonial_swiper {
  padding: 80px 0px 126px 0;
}

/* SLIDE EFFECT */
.What_Customer_Say .testimonial_swiper_wrapper .swiper-slide {
  opacity: 0.4;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
}

.What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active {
  opacity: 1;
  z-index: 10;
  transform: scale(1.5);
}

/* CARD */
.What_Customer_Say .testimonial_card_new {
  background: #ffffff;
  border-radius: 5px;
  padding: 3%;
  width: 100%;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  gap: 10px;
  border: 1px solid #00648b;
  font-weight: 500;
}

/* ACTIVE CARD */
.What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active .testimonial_card_new {
  background: #0e5f78;
  color: #ffffff;
  box-shadow: 0px 0px 60px 16px #fff;
}


/* PROFILE */
.What_Customer_Say .testimonial_card_new .profile_top {
  margin-bottom: 15px;
}

.What_Customer_Say .testimonial_card_new .profile_img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
}

/* TITLE */
.What_Customer_Say .testimonial_card_new .testimonial_title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

/* QUOTE */
.What_Customer_Say .testimonial_card_new .quote_icon {
  width: 50px;
  height: 50px;
}

.What_Customer_Say .testimonial_card_new .quote_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* REVIEW */
.What_Customer_Say .testimonial_card_new .testimonial_review {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* BOTTOM */
.What_Customer_Say .testimonial_card_new .bottom_section {
  border-top: 1px solid #80dbff;
  padding-top: 12px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.What_Customer_Say .testimonial_card_new .testimonial_name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}

.What_Customer_Say .testimonial_card_new .testimonial_subname {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #00648b;
}

/* RATING */
.What_Customer_Say .testimonial_card_new .rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.What_Customer_Say .testimonial_card_new .rating span {
  font-size: 13px;
  color: #0e5f78;
}

.What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active .testimonial_card_new {
  border: 1px solid #00648b;
}

/* ACTIVE TEXT */
.What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active .testimonial_title,
.What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active .testimonial_name,
.What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active .testimonial_review,
.What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active .rating span {
  color: #ffffff;
}

.What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active .testimonial_card_new .testimonial_subname {
  color: #ddd;
}

.What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active .bottom_section {
  border-top: 1px solid #80dbff;
}

/* NAVIGATION */
.What_Customer_Say .testimonial_swiper .swiper-button-next,
.What_Customer_Say .testimonial_swiper .swiper-button-prev {
  width: 30px;
  height: 30px;
  background: #333333;
  border-radius: 50%;
  color: #fff;
  aspect-ratio: 1/1;
  padding: 7px;
}

.What_Customer_Say .testimonial_swiper .swiper-button-next:after,
.What_Customer_Say .testimonial_swiper .swiper-button-prev:after {
  font-size: 15px;
  font-weight: bold;
}

.What_Customer_Say .testimonial_swiper .swiper-button-next {
  right: 46% !important;
  left: unset !important;
}

.What_Customer_Say .testimonial_swiper .swiper-button-prev {
  left: 48% !important;
  right: unset !important;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

/* MOBILE */
@media (max-width: 480px) {

  .What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active {
    transform: unset;
  }

  .What_Customer_Say .testimonial_swiper_wrapper {
    width: 100%;
  }

  .What_Customer_Say {
    margin: 0;
    padding: 40px 0;
  }

  .What_Customer_Say .What_Customer_Say_div {
    padding: 30px 15px;
  }

  .What_Customer_Say .testimonial_card_new {
    max-width: 100%;
    padding: 18px;
  }

  .What_Customer_Say .testimonial_card_new .profile_img {
    width: 45px;
    height: 45px;
  }

  .What_Customer_Say .testimonial_card_new .testimonial_title {
    font-size: 15px;
  }



  .What_Customer_Say .testimonial_card_new .testimonial_review {
    font-size: 13px;
    -webkit-line-clamp: 3;
  }

  .What_Customer_Say .testimonial_card_new .testimonial_name {
    font-size: 14px;
  }

  .What_Customer_Say .testimonial_card_new .rating span {
    font-size: 11px;
  }

  .What_Customer_Say .testimonial_swiper_wrapper .swiper-slide,
  .What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active {
    opacity: 1;
  }

  .What_Customer_Say .testimonial_card_new {
    display: block;
  }

  .What_Customer_Say .testimonial_swiper .swiper-button-prev {
    left: 37% !important;
  }

  .What_Customer_Say .testimonial_swiper .swiper-button-next {
    right: 40% !important;
  }

  .What_Customer_Say .testimonial_card_new .bottom_section {
    display: block;
  }
}

/* SMALL */
@media (min-width: 481px) and (max-width: 767px) {
  .What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active {
    transform: unset;
  }

  .What_Customer_Say .testimonial_swiper_wrapper {
    width: 100%;
  }

  .What_Customer_Say .testimonial_card_new .profile_img {
    width: 50px;
    height: 50px;
  }

  .What_Customer_Say .testimonial_card_new .testimonial_review {
    -webkit-line-clamp: 3;
  }

  .What_Customer_Say .testimonial_swiper_wrapper .swiper-slide,
  .What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active {
    opacity: 1;
  }

  .What_Customer_Say .testimonial_swiper .swiper-button-prev {
    left: 40% !important;
  }

  .What_Customer_Say .testimonial_swiper .swiper-button-next {
    right: 42% !important;
  }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 991px) {

  .What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active {
    transform: unset;
  }

  .What_Customer_Say .testimonial_swiper_wrapper {
    width: 100%;
  }

  .What_Customer_Say .testimonial_swiper_wrapper .swiper-slide {
    opacity: 0.6;
  }

  .What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active {
    opacity: 1;
  }

  .What_Customer_Say .testimonial_swiper .swiper-button-prev {
    left: 47% !important;
  }

  .What_Customer_Say .testimonial_swiper .swiper-button-next {
    right: 43% !important;
  }
}

/* LAPTOP */
@media (min-width: 992px) and (max-width: 1199px) {
  .What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active {
    transform: scale(1.05);
  }

  .What_Customer_Say .testimonial_card_new {
    display: block;
  }

  .What_Customer_Say .testimonial_swiper_wrapper {
    width: 100%;
  }

  .What_Customer_Say .testimonial_swiper_wrapper .swiper-slide {
    opacity: 0.5;
  }

  .What_Customer_Say .testimonial_swiper_wrapper .swiper-slide-active {
    opacity: 1;
  }

  .What_Customer_Say .testimonial_swiper .swiper-button-prev {
    left: 46% !important;
  }

  .What_Customer_Say .testimonial_card_new .bottom_section {
    display: block;
  }
}


@media (min-width: 1200px) and (max-width: 1599px) {

  .What_Customer_Say .testimonial_card_new .bottom_section {
    display: block;
  }

  .What_Customer_Say .testimonial_swiper_wrapper {
    width: 100%;
  }

}