#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: #003893;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s linear;
}

.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;
}

/*1*/

.view-first img {
  /*1*/
  transition: all 0.2s linear;
  width: auto;
  height: auto;
}

.view-first .mask {
  opacity: 0;
  background-color: rgba(58, 1, 132, 0.44);
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
}

.view-first p {
color: #FFF;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.2s linear;
}

.view-first a.info {
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.view-first:hover img {
  transform: scale(1.1);
}

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


.view-first:hover p {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 0.1s;
}

