#hover {
  color: #c7f7c8;
}

div#all {
  width: 100%;
  height: 100%;
}

/* generic css */

.view {
  margin: 10px;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: left;
  cursor: default;

}

.view .mask,
.view .content {
  width: auto;
  height: auto;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0
}

.view img {
  display: block;
  position: relative
}

/*3*/

.view-tenth img {
  transform: scaleY(1);
  transition: all .7s ease-in-out;
}

.view-tenth .mask {
  transition: all 0.5s linear;
  opacity: 0;
}



.view-tenth p {
  color: #382F7E;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s linear;
  padding-
}

.view-tenth a.info {
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s linear;
}

.view-tenth:hover img {
  -webkit-transform: scale(10);
  transform: scale(10);
  opacity: 0;
}

.view-tenth:hover .mask {
  opacity: 1;
}

.view-tenth:hover h2,
.view-tenth:hover p,
.view-tenth:hover a.info {
  transform: scale(1);
  opacity: 1;
}