.commonTitle {
    font-family: "museo_slab700";
    font-weight: 800;
    font-size: 45px;
    color: #285262;
}
  .video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.5rem;
  }

.video-thumbnail > a > img {
    height: 250px !important;  
    width: 100% !important;
    object-fit: cover !important;
    display: block;
}


  .play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.7);
    clip-path: polygon(25% 15%, 25% 85%, 85% 50%);
    transition: background-color 0.3s ease;
  }

  .video-thumbnail:hover .play-button-overlay {
    background-color: rgba(255, 255, 255, 0.9);
  }

p.mt-3 {
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
}