*, *::before, *::after{
    box-sizing: border-box;
    margin:0;
  }
  
  body{
    font-family: 'Source Sans Pro', sans-serif;
    
    
    /*place-items: center;*/
    height: 100vh;
    
    
  }
  .section-main{
    width:100%; background-color:#222831;
  }
  .section-main h1{
    margin-left:5%;
  }
  .section-main h1 span{
    font-size: 3rem;
  }
  
  .section-main .myh1{
    margin-left:5%;
  }
  .section-main .myh1 span{
    font-size: 3rem;
  }
  
  .section-main{
    margin-left:5%;
  }
  .section-main  span{
    font-size: 3rem;
  }
  
  
  .testimonial-container{
    background-color: #393E46;
    color: #fff;
    border-radius: 5px;
    margin: 20px auto;
    padding: 50px 80px;
    max-width: 768px;
    position:relative;
  }
  
  .fa-quote{
    color:#1f5e9f;
    font-size: 28px;
    position: absolute;
    top: 90%;
    
  }
  
  .fa-quote-right{
    bottom: 20px; /* Adjust this value to change the distance from the bottom */
    right: 20px;
  }
  
  .fa-quote-left{
    top: 20px;
    left: 20px;
  }
  
  .testimonial{
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 30px;
  }
  
  .user{
    display:flex;
    align-items:center;
    justify-content: center;
  }
  
  .user .user-image{
    border-radius: 50%;
    border: 3px solid #1f5e9f;
    height: 75px;
    width: 75px;
    object-fit: cover;
  }
  
  .user .user-details{
    margin-left: 10px;
  }
  
  .user .username{
    margin: 0;
  }
  
  .user .role{
    font-weight: normal;
    margin: 10px 0;
  }
  
  .progress-bar{
    background-color:#1f5e9f;
    height: 4px;
    width: 100%;
    margin-bottom: 40px;
    animation: grow 10s linear infinite;
    transform-origin: left;
  }
  
  @keyframes grow{
    0%{
      transform: scaleX(0);
    }
  }
  
  
  
  
  @media(max-width: 768px){
    .testimonial-container{
      padding: 20px 30px;
    }
    
    .fa-quote{
      display: none;
    }
  }