     /* SLIDER */

     

     /* .description{
        width: 20rem;
        height: 18rem;
        position: absolute;
        margin-left: 5rem;
        border: 1px solid black;
     } */

     .about-person-profession{
        font-size: 17px;
        font-weight: bold;
       }
  
      
       
       .about-slider {
        /* max-width: 100rem; */
        height: 27rem;
          width: 41rem;
          overflow: hidden;
          position: relative;
          /* border: 1px solid red; */
      }
      
      .about-slide {
            position: absolute;
          /* top: 0%; */
          /* left: 10%; */
          
          width: 32rem;
          height: 25rem;
          /* display: flex; */
          align-items: center;
          justify-content: center;
          /* margin-left: 1rem; */
          transition: transform 1s;
      }
      
      .about-testimonial > img {
        /* Only for images that have different size than slide */
        height: 25rem;
        object-fit: cover;
        width: 15rem;
      }
      .testimonial__photo[data-index="2"] {
        opacity: 0.4;
        transform: scale(0.55);
      }
      .active{
          filter: brightness(100%);
            z-index: 2;
            transform: scale(1.6);
      }
      
      .inactive{
          filter: brightness(80%) blur(2px);
            z-index: 1;
            transform: scale(0.9);
      }
      
      .slider__btn {
        
        border: none;
        background:rgb(1, 210, 142);
        font-family: inherit;
        color: white;
        border-radius: 50%;
        height: 3rem;
        width: 3rem;
        font-size: 1.25rem;
        cursor: pointer;
        /* margin-top: -1rem; */
      }
      
      .slider__btn--left {
        transform: translate(0%, -50%);
      }
      
      .slider__btn--right {
        transform: translate(0%, -50%);
      }
      .about-testimonial {
        width: 15rem;
      }
  
      .about__section {
  /* Your styling for desktop view */
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .about-slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .about-slide {
    width: 100%;
    transition: transform 0.5s;
  }

  .about-person-name,
  .about-person-profession,
  .about-person-description {
    text-align: center;
  }

  .slider-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
}
