.section-5 {
    overflow: hidden;
    height: 400;
    padding: 0px 0 22px 0;
    background-image: linear-gradient(to bottom, #1a1a1a, #000a6b 99%);
    /* font-weight: 600; */
    line-height: 1.5;
    font-size: 25px;
    color: #ffffff;
  }
.s5-testimonial-container {
    color: #fff;
    margin: 0;
    padding: 25px 0px;
    position: relative;
    height: 175px;
    
}

.s5-testimonial {
    height: 250px;
    overflow:hidden;
    
}

.s5-user {
    align-items: center;
    display: flex;
    /* justify-content: center; */
}

.s5-user .s5-user-image {
    height: 75px;
    object-fit: cover;
    width: 75px;
}

.s5-user .s5-user-details {
    width: 75px;
    /* margin-left: 10px; */
    width: 80%;
    font-size: 24px;
    font-weight: 500;
    /* padding-left: 10px; */
    color: white;
    /* background-color: #fff; */
    /* padding: 10px; */
}

.s5-user-details h4{
    font-size: 20px;
    font-weight: 600;
}

.s5user .s5-username {
    margin: 0;
    font-size: 18px !important;
}

.s5-user .s5-role {
    font-weight: normal;
    margin: 10px 0;
    font-size: 15px;
    margin-bottom: 0px;
}

.s5-progress-container {
    height: 8px;
    background-color: #d8d8d8;
    margin: 20px 0px 22px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.s5-progress-bar {
    background-color: #21db04;
    height: 100%;
    width: 0;
    animation: grow 5s linear infinite;
    transform-origin: left;
    
}

@keyframes grow {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .s5-testimonial-container {
        padding: 20px 0;
        height: 290px;
        margin: 0 auto;
        overflow: hidden;
        font-size: 18px;
        font-weight: 500;
    }

    .fa-quote {
        display: none;
    }
    .s5-progress-container{
        width: 100%;
        height: 8px;
        margin: 10px 0px ;
    }
    .section-5{
        height: 420px; /*394px */
        padding: 10px 0 10px 0;
        font-size: 18px;
        font-weight: normal;
    }
}