.client{
    padding: 20px 0;
    .section_header{
        padding-top: 13px;
         h4{
            font-size: 32px;
            font-weight: 600;
            color: $black;
            line-height: 32px;
            span{
                color: $primaryColor; 
            }
         }
    }
    .client_wrapper{
        position: relative;
        padding-top: 30px;
           .client_wrap{
                 .slider_item{
                     .text_item{
                         padding: 30px 40px;
                         box-shadow: 0px 1px 1px 1px #00000021;
                         position: relative;
                         z-index: 1;
                         margin: 10px;
                        p{
                            font-size: 16px;
                            color: $text;
                            line-height: 26px;
                            padding: 10px 0;
                        }
                  
                     }
                     .client_profile{ 
                         display: flex;
                         align-items: center;
                         justify-content: center;
                         padding-top: 20px;
                           .profile_img{
                                  height: 70px;
                                  width: 70px;
                                img{
                                    border-radius: 50%;
                                    height: 100%;
                                    width: 100%;
                                    object-fit: cover;
                                }
                           }
                           .client_info{
                               padding-left: 20px;
                                 h4{
                                    font-size: 20px;
                                    color: $black;
                                    text-transform: uppercase;
                                    font-weight: 500;
                                 }
                                 h5{
                                    font-size: 17px;
                                    color: $primaryColor;
                                    line-height: 28px;
                                    font-weight: 400;
                                 }
                           }
                     }
                 }
           }
    }
}