
.box-wrap{
  display:flex;
  align-items:center;
  justify-content:center;

}
.box{
  padding:0px;
  margin:2%;
  background:;
  width:100%;
  border:0px solid #d6d6d6;
  box-shadow:0 2px 3px 0px rgba(0,0,0,0.0);
  border-radius:0px;
  transition:.2s all; 
}
.box-wrap:hover .box{
  filter:blur(3px);
  opacity:.3;
  transform: scale(.75);
  box-shadow:none;
}
.box-wrap:hover .box:hover{
  transform:scale(1);
  filter:blur(0px);
  opacity:1;

}