/*!
Theme Name: Outgrid Child
Theme URI: https://uicore.co
Description: Multi-Purpose Elementor WordPress Theme
Author: UiCore
Author URI: https://uicore.co
Template: outgrid
Version: 1.0.0
Text Domain: outgrid
*/

 /* Add your custom style here */
 
 .school_video_wrapper {
     display: grid;
     gap: 20px;
     grid-template-columns: repeat(4, 1fr);
 }
 
 .school_video_wrapper .school_video {
     height:0;
     padding-top:56.25%;
     background-color: #cccccc;
     background-repeat: no-repeat;
     background-size: cover;
     background-position: center;
     cursor: pointer;
     position:relative;
 }
 
 .school_video_wrapper .school_video_play {
     position: absolute;
     top:0;
     left:0;
     right:0;
     bottom:0;
     background: rgba(0,0,0,0.4);
     display: flex;
     justify-content: center;
     align-items: center;
     transition: all 0.3s ease;
     opacity: 0;
 }
 
  .school_video_wrapper .fa-circle-play {
      color: #ffffff;
      line-height: 1;
      font-size: 2.5em;
  }
  
   .school_video_wrapper .school_video:hover .school_video_play {
       opacity:1;
   }