.testimonial-main .testimonial-slider .swiper-slide {
  display: block;
  overflow: hidden;
  width: 100%;
}
.testimonial-main,
.testimonial-main .testimonial-slider .testimonial-img-wrapper
{
position: relative;
}
.testimonial-main .testimonial-slider .testimonial-inner{
  width: 100%;
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.testimonial-main .testimonial-slider .testimonial-img-wrapper {
  width: 50%;
  height: 100%;
}
.testimonial-main .testimonial-slider .testimonial-inner .testimonial-detail{
  width: 50%;
  margin-left: 8em;
}
.testimonial-main .testimonial-slider .testimonial-img 
{
  overflow: hidden;
}
.testimonial-main .testimonial-slider .testimonial-img img
{
  width: 100%;
  border-radius: var(--border-radius-box);
}
.testimonial-main .testimonial-slider .testimonial-img
{
width: 85%;
margin: 0 auto;
}

.testimonial-main .testimonial-slider .swiper-slide .testimonial-detail,
.testimonial-main .testimonial-slider .swiper-slide {
  opacity: 0;
}
.testimonial-main .testimonial-slider .swiper-slide.swiper-slide-active .testimonial-detail,
.testimonial-main .testimonial-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
  z-index:9;
}

.testimonial-main .testimonial-slider .swiper-slide .testimonial-detail{
  margin-top:1em;
  margin-bottom: 4em;
}

.testimonial-main .testimonial-slider .testimonial-message{
  font-style: italic;
  margin: 2em 0 1.5em;
}
.testimonial-main .testimonial-slider .testimonial-message p{
  line-height: 1.75;
  margin: 0;
}
.testimonial-main .testimonial-slider  .ealain-testi-title{
  margin:0;
}
.testimonial-main .testimonial-slider .ealain-testi-designation{
  margin: 5px 0;
  display: block;
}
.ealain-post-ratings i{
  color: var(--color-theme-secondary);
}

.testimonial-main .testimonial-thumbs {
  position: absolute;
  bottom: 5%;
  padding: 0;
  overflow: hidden;
  left: -30px;
  width: 50%;
}
.testimonial-main .testimonial-thumbs .swiper-slide {
width: 100%;
text-align: center;
overflow: hidden;
}
.testimonial-main .testimonial-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  clip-path: circle(50% at 50% 50%);
  filter: grayscale(0.7);
  transform: scale(0.85);
  transition: transform 0.5s ease-in-out;
}
.testimonial-main .testimonial-thumbs .swiper-slide.swiper-slide-active img {
  filter: grayscale(0);
  transform: scale(1);
}
.testimonial-main .ealain-title-box .ealain-title{margin-bottom: 0;}
.testimonial-main .ealain-title-box{
  position: absolute;
  left: 54%;
  top: 10%;
  z-index: 9;
}


@media(max-width:1399px){
  .testimonial-main .testimonial-slider .swiper-slide .testimonial-detail{
    margin-bottom: 0;
  }
  .testimonial-main .testimonial-thumbs{
    left:0;
  }
  .testimonial-main .ealain-title-box{
    top:5%;    
  }
  .testimonial-main .ealain-title-box .ealain-title{
    font-size: var(--font-size-h3);
  }
}

@media(max-width:1199px) and (min-width:1025px){
  .testimonial-main .ealain-title-box{
    top:0;
  }
}

@media(max-width:1024px){
  .testimonial-main .testimonial-slider .testimonial-inner .testimonial-detail {
    margin-left: 2em;
  }
  .testimonial-main .ealain-title-box{
    position: static;
  }
  .testimonial-main .testimonial-slider .testimonial-inner{
    align-items: center;
  }
}
@media(max-width:1024px) and (min-width:768px){
  .testimonial-main .ealain-title-box{
    margin-left: 30px;
  }
}

@media(min-width:768px){
  .testimonial-main .testimonial-slider .swiper-slide.swiper-slide-active .testimonial-img {
    animation: animate-slide-out; 
    animation-duration: 1s;
  }
  .testimonial-main .testimonial-slider .swiper-slide.swiper-slide-active .testimonial-detail{
    animation: animate-slide-in 1s linear; 
  }
}

@media(max-width:767px){
  .testimonial-main .ealain-title-box{
    margin-left: 0;
  }
  .testimonial-main .testimonial-slider .testimonial-inner .testimonial-detail,
  .testimonial-main .testimonial-slider .testimonial-img-wrapper,
  .testimonial-main .testimonial-slider .testimonial-img{
    width:100%;
  }
  .testimonial-main .testimonial-slider .testimonial-inner{
    flex-direction: column;
    align-items: center;
  }
  .testimonial-main .testimonial-slider .testimonial-inner .testimonial-detail {
    margin-left: 0;
    margin-top: 2em;
  }
  .testimonial-main .testimonial-thumbs{
    position: static;
    margin-top: 24px;
  }
  .testimonial-main .testimonial-slider .swiper-slide .testimonial-detail,
  .testimonial-main .ealain-title-box{
    text-align: center;
  }
}

@keyframes animate-slide-out{
  0% {
    clip-path: inset(0 0 0 100%);
    -webkit-clip-path: inset(0 0 0 100%);
  }
  
  100% {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}


@keyframes animate-slide-in{
  0% {
    clip-path: inset(0 0 0 100%);
    -webkit-clip-path: inset(0 0 0 100%);
  }

  100% {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}