
    /* Baloo font family */
    
    body {
    font-family: 'Baloo', sans-serif !important;

   }

 /* testimonial videos */

 .video-thumbnail {
     position: relative;
     width: 100%;
     max-width: 360px;
     /* Adjust as needed */
     height: 202px;
     /* Adjust as needed */
     overflow: hidden;
     cursor: pointer;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
     border-radius: 8px;
     background: #000;
 }

 .video-thumbnail-inner {
     position: relative;
     width: 100%;
     height: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .video-thumbnail img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.2s;
 }

 .video-thumbnail:hover img {
     transform: scale(1.05);
 }

 .video-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7) 100%);
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .play-button {
     width: 64px;
     height: 64px;
     background: url('https://www.iconfinder.com/data/icons/google-material-design-3-0/48/ic_play_circle_outline_48px-512.png') no-repeat center;
     background-size: contain;
     filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.7));
 }