.video-wrap {
      display: flex;
      justify-content: center; 
      align-items: flex-start; 
      flex-wrap: wrap; 
      width: 100%;
      max-width: 1600px; 
      margin: 0 auto; 
      position: relative;
      z-index: 1; 
      font-size: 0;
      letter-spacing: 0; 
   }

   .video-col {
      width: 50%; 
      display: block; 
      position: relative;  
   }


    .video-col-l .video-item {
         width:100%

    }

     .video-item a {
         width: 100%;
         display: block; 
         margin: 0 auto; 
         padding: 5px;
     }

       .video-item a .video-photo:before {
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); 
            content: ''; 
            z-index: 1; 
                transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;  
       }
       .video-item a:hover .video-photo:before {
            opacity: 1; 

       }

      .video-item a .video-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 2;
    width: 134px;
    height: 134px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    margin: 0 auto;


      }

       .video-item a .video-icon i {
          font-size: 45px;
          color: #000;
          display: block;
       } 

    .video-item a .video-title {
        position: absolute;
        bottom: 0;
        width: 100%; 
        z-index: 5;

    }
    
    .video-item a .video-title span {
        position: relative;
        display: block;
        padding: 20px 50px; 
        color: #fff;

    }
    

@media only screen and (max-width: 480px) {

    .video-col {
        width: 100%;
    }

}
