/* 

.et_portfolio_image{
    width: 100%;
    height: 100%;
    background-size: cover !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat !important;
  }
  .et_portfolio_image img{
    opacity: 0;
  }
  
  .et_portfolio_image::before{
    content: "" !important;
    position: absolute !important;
    background-size: cover !important;
    filter: sepia(100%) !important;
    background-repeat: no-repeat !important;
    opacity: 0;
  }
  
  .et_portfolio_image:hover:before{
    opacity: .7 !important;
    animation: glitch 1.5s infinite linear !important;
  }
  
  @keyframes glitch {
    0%{
      top: 0;
      background-position: 12px 0;
    }
  
    20%{
      top: 80px;
      background-position: -10px -80px;
    }
  
    40%{
      top: 160px;
      background-position: 6px -160px;
    }
  
    60%{
      top: 240px;
      background-position: -6px -240px;
    }
  
    80%{
      top: 320px;
      background-position: 10px -320px;
    }
  
    100%{
      top: 400px;
      background-position: -12px -400px;
    }
  }
   */