.testimonial__container{
  display: flex;
  gap: 20px;
  width: 100%;
}
.testimonial__container-left,.testimonial__container-right{
  display: block;
  max-width: 50%;
  flex: 1 1 50%;
}
.testimonial__container-left *{
  height: 100%;
}
.testimonial__image-slider{
  height: 100%
}
.slider-item_image{
  display: block;
  height: 100%;
}
.testimonial__image{
  padding-right: 20%;
  height: 100%;
}
.testimonial__image img{
  height: 100%;
  width: 100%;
  object-fit: cover;

}
.testimonial__container-right h2{
  margin-bottom: 50px;
}
.testimonial__quote{
  margin-bottom: 50px;
}
.quote{
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: left;
}
.person__name{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0em;
  text-align: left;
}
.job_title{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0em;
  text-align: left;
  color: #B3B3B3; 
}
.testimonial__arrow-container{
  margin-top: 50px;
  display: flex;
  gap: 10px;
}
.testimonial__arrow-container button:hover svg path{
  fill: #fff
}
@media(max-width: 768px){
  .testimonial__container{
    flex-direction: column;
  }
  .testimonial__container-left, .testimonial__container-right{
    max-width: 100%;
    flex: 1 1 100%;
  }
  .testimonial__image{
    padding-right: unset;
  }
  .quote{
  font-size: 16px;
  line-height: 26px;
}
