.testimonial-slider-section{
  padding:100px 0;
  overflow:hidden;
}

.testimonial-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:80px;
}

.testimonial-left{
  width:35%;
}

.testimonial-right{
  width:65%;
  overflow:hidden;
}

.testimonial-subtitle{
  font-size:18px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  color: var(--subtitle-color);
  margin-bottom:18px;
}

.testimonial-heading{
  margin:0;
  font-size: var(--heading-size);
  line-height:1.05;
  font-weight:800;
  color: var(--heading-color);
  text-transform:uppercase;
}

.testimonial-description{
  margin-top:30px;
  color: var(--text-color);
  font-size: var(--description-size);
  line-height:1.8;
  max-width:520px;
}

.testimonial-navigation{
  display:flex;
  gap:18px;
  margin-top:45px;
}

.testimonial-prev,
.testimonial-next{
  width:50px;
  height:50px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.35s;
  background:transparent;
}

.testimonial-prev{
  border:1px solid rgba(255,255,255,.35);
  color:#ffffff;
}

.testimonial-next{
  border:1px solid #0A58FF;
  color:#0A58FF;
}

.testimonial-prev:hover,
.testimonial-next:hover{
  transform:translateY(-3px);
}

.testimonial-prev svg,
.testimonial-next svg{
  width:25px;
  height:25px;
}

.testimonial-swiper{
  overflow:visible;
}

.testimonial-card{
  position:relative;
  background: linear-gradient(51.76deg, var(--card-bg) 45.63%, var(--card-bg-gradient) 131.31%);
  border: 1px solid;
  border-image-source: linear-gradient(219.57deg, #155DFC 2.44%, rgba(0, 20, 63, 0) 17.5%, rgba(0, 20, 63, 0) 73.29%, #155DFC 94.54%);
  border-radius:22px;
  padding:40px 30px;
  min-height:100%;
  display:flex;
  flex-direction:column;
}

.testimonial-stars{
  display:flex;
  gap:10px;
  margin-bottom:15px;
}

.testimonial-stars svg{
  width:20px;
  height:20px;
}

.testimonial-review{
  color:#fff;
  font-size:14px;
  flex:1;
}

.testimonial-bottom{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-top:35px;
}

.testimonial-user{
  display:flex;
  align-items:center;
  gap:18px;
}

.testimonial-image{
  width:60px;
  height:60px;
  border-radius:50%;
  overflow:hidden;
  background:#fff;
  flex-shrink:0;
}

.testimonial-image img,
.testimonial-image svg{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.testimonial-user-info {
  z-index: 1;
}

.testimonial-user-info h4{
  margin:0;
  color:#fff;
  font-size:16px;
  line-height:1.2;
  font-weight:700;
  z-index: 1;
  position: relative;
}

.testimonial-user-info span{
  display:block;
  margin-top:6px;
  color:#ddd;
  font-size:15px;
}

.testimonial-quote{
  position:absolute;
  right:15px;
  bottom:10px;
  /* opacity:.6; */
  color:#204cff;
}

.testimonial-quote svg{
  width:100px;
  height:auto;
}

.swiper-slide{
  height:auto;
}

.swiper-slide .testimonial-card{
  height:100%;
}

.testimonial-arrow-mobile {
  display: none;
}

/* ====================== */
/* Tablet */
/* ====================== */

@media(max-width:1199px){

.testimonial-wrapper{
  gap:45px;
}

.testimonial-left{
  width:40%;
}

.testimonial-right{
  width:60%;
}

.testimonial-heading{
  font-size:30px;
}

}

/* ====================== */
/* Mobile */
/* ====================== */

@media(max-width:767px){

  .testimonial-arrow-desktop {
    display: none;  
  }

  .testimonial-arrow-mobile {
    display: flex;
    margin-top: 0 !important;
  }

  .testimonial-slider-section{
    padding:70px 0;
  }

  .testimonial-wrapper{
    flex-direction:column;
    gap:45px;
  }

  .testimonial-left,
  .testimonial-right{
    width:100%;
  }

  .testimonial-heading{
    font-size:34px;
  }

  .testimonial-description{
    font-size:16px;
  }

  .testimonial-stars svg{
    width:18px;
    height:18px;
  }

  .testimonial-review{
    font-size:14px;
  }

  .testimonial-image{
    width:55px;
    height:55px;
  }

  .testimonial-user-info h4{
    font-size:14px;
  }

  .testimonial-user-info span{
    font-size:13px;
  }

  .testimonial-quote svg{
    width:110px;
  }
}