
  
  .containerdj .cardf{
    position: relative;
  }
  
  .containerdj .cardf .face{
    width:300px;
    height: 200px;
    transition:.4s;
    
  }
  
  .containerdj .cardf .face.face1{
    position: relative;
    background: rgb(11, 71, 236);
    display: flex;
    justify-content: center;
    align-content:center;
    align-items: center;
    z-index: 1;
    transform: translateY(100px);
  }
  
  .containerdj .cardf:hover .face.face1{
    transform: translateY(0);
    box-shadow:
      inset 0 0 60px whitesmoke,
      inset 20px 0 80px #0447ff,
      inset -20px 0 80px #0ff,
      inset 20px 0 300px #0447ff,
      inset -20px 0 300px #0ff,
      0 0 50px #fff,
      -10px 0 80px #0447ff,
      10px 0 80px #0ff;
     
  }
  
  
  .containerdj .cardf .face.face1 .contentdj{
    opacity: .2;
    transition:  0.5s;
    text-align: center;
  
  }
  
  .containerdj .cardf:hover .face.face1 .contentdj{
    opacity: 1;
   
  }
  
  .containerdj .cardf .face.face1 .contentdj i{
    font-size: 3em;
    color: white;
    display: inline-block;
     
  }
  
  .containerdj .cardf .face.face1 .contentdj h3{
    font-size: 1em;
    color: white;
    text-align: center;
    
  
  }
  
  .containerdj .cardf .face.face1 .contentdj a{
     transition: .5s;
  }
  
  .containerdj .cardf .face.face2{
     position: relative;
     background: whitesmoke;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0,0,0,.8);
    transform: translateY(-100px);
  }
  
  .containerdj .cardf:hover .face.face2{
      transform: translateY(0);
  
  
  }
  
  .containerdj .cardf .face.face2 .contentdj p, a{
    font-size: 10pt;
    margin: 0 ;
    padding: 0;
    color:#fff;
  }
  
  .containerdj .cardf .face.face2 .contentdj a{
    text-decoration:none;
    color: black;
    box-sizing: border-box;
    outline : 1px dashed #333;
    padding: 10px;
    margin: 15px 0 0;
    display: inline-block;
  }
  
  .containerdj .cardf:hover .face.face2 .contentdj a:hover{
    background: #333 ;
    color: whitesmoke; 
    box-shadow: inset 0px 0px 10px rgba(0,0,0,0.5);
  }