 .video-item {
      position: relative;
      overflow: hidden;  margin-bottom: 15px; margin-top: 15px;
    }

    .video-item img {
      width: 100%!important;
      height: auto!important;
      transition: transform 0.3s ease;
       
    }

    .video-item:hover img {
      transform: scale(1.1);
    }

    .overlay {
      position: absolute;
      top: 25%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background-color: rgba(0, 0, 0, 0.5);
      transition: background-color 0.3s ease;
    }

    .overlay:hover {
      background-color: rgba(0, 0, 0, 0.7);
    }

    .arrow {
      width: 0;
      height: 0;
      border-top: 11px solid transparent;
      border-bottom: 11px solid transparent;
      border-left: 18px solid #fff;
      transition: transform 0.3s ease;
    }

    .overlay:hover .arrow {
      transform: translateX(5px);
    }

    .video-details {
      position: absolute;
      bottom: 6px;
      left: 50%;
      transform: translate(-50%, 0%);
      color: #fff;
      width: 88%;
      text-align: center;
      cursor: pointer;
      transition: transform 0.3s ease;
      background-color: rgba(0, 0, 0, 0.7);
      padding: 8px;
      border-radius: 5px;
    }

    .video-details h3 {
      font-size: 13px;
      margin-bottom: 0px;
    }

    .video-details p {
      font-size: 11px;
      margin-top: 0; margin-bottom: 0px;
    }
    .videoheads {font-size: 18px;text-align: center;color: #96243A;font-family: 'Roboto Condensed', sans-serif;font-weight: bold;}
    .videodescriptions {font-size: 12px;text-align: center; line-height: 100%; margin-bottom:0px;}
    
    .border-line {border-right: 1px solid #333 ;}
    
  @media only screen and (min-width: 0px) and (max-width: 767px) {
.border-line {border-right: 0px solid #333 ;}
}  
    