.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  display: flex;
  border-bottom: 1px solid #00000024;
  
  
  .top-content {
    width: 40%;
  
    .tag {
      font-weight: 400;
      line-height: 36.672px; 
      text-transform: uppercase;
    }

    h2 {
      font-weight: 600;
      line-height: 62px;
      margin-top: 12px;
    }
  }
  
  
  .testimonial-slider-container {
    position: relative; 
    width: 60%;
    
    .item {
          width: 100%;
          
          h2 { 
            font-weight: 500;
            line-height: normal;
            margin: 12px 0;
          }
          
          
          .author-content {
              display: flex;
              align-items: center;
              gap: 24px;
              margin-top: 50px;
            
            h4 {
              font-weight: 600;
              line-height: 30px; 
              margin-bottom: 8px;
          }
            
            span {
              font-weight: 400;
              line-height: 26px;
        }
            
            img {
              max-width: 100px!important;
              max-height: 100px;
            }
      }
    }
    
  }

          
  .testimonial-buttons {
    position: absolute;
    right: 0;
    bottom: 20px;
    display: flex;
    z-index: 9999;
    gap: 8px;
    
    .testimonial-prev svg, .testimonial-next svg {
      transition: all .6s;
    }
    
     .testimonial-next svg {
      transform: rotate(180deg);
    }
        .testimonial-prev svg:hover, .testimonial-next svg:hover {
        fill: #5B4F47;
    
      circle {
        stroke: #5B4F47;
      }
      
     path {
        fill: #fff; 
      }
    }
 }
}

@media (max-width: 1024px) {
  .testimonial-slider {
    padding: 50px 0;
    flex-direction: column;
    
    .top-content,  .testimonial-slider-container {
      width: 100%;
  }
    
    .testimonial-slider-container {
      .item {
        .author-content {
          img {
             max-width: 75px!important;
             max-height: 75px;
          }
        }
      }
    }
}
  
  
  @media (max-width: 425px) {
    .testimonial-slider { 
      padding-bottom: 100px;  
        .testimonial-buttons {
          position: absolute;
          right: 0;
          bottom: -70px;
          display: flex;
          z-index: 9999;
          gap: 16px;
          width: 100%;
          justify-content: center;
      }    
    }
  }