.view {
  margin: 10px;
  display: inline-block;
  border-color: #fff;
  border-style: solid;
  overflow: hidden;
  position: relative;
  text-align: center;
  -webkit-box-shadow: 2px 2px 5px grey;
  -moz-box-shadow: 2px 2px 5px grey;
  box-shadow: 2px 2px 5px grey;
  cursor: default;
  background: #fff;
}
.view .hbcontent, .view .headbox, .view .imgbox, .view .mask-1, .view .mask-2 {
  background: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.view img {
  position: relative;
  height: 100%;
  width: auto;
  margin: 0 -100%;
  max-width: none;
}
.view h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  padding: 10px;
  line-height: normal;
  background: none;
  margin: 0;
}
.view p {
  font-size: 14px;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  margin: 0;
  text-align: center;
}
.view a.info {
  display: inline-block;
  text-decoration: none;
  padding: 5px 15px;
  background: #b11a00;
  color: #fff;
  text-transform: uppercase;
  -webkit-box-shadow: 3px 3px 6px #000;
  -moz-box-shadow: 3px 3px 6px #000;
  box-shadow: 3px 3px 6px #000;
}
.view a.info: hover {
  -webkit-box-shadow: 0 0 5px #000;
  -moz-box-shadow: 0 0 5px #000;
  box-shadow: 0 0 5px #000;
}

.view > .bordereff {
  background: none;
  bottom: 0;
  height: 10px;
  position: absolute;
  width: 100%;  
  -webkit-transition: background 0.3s ease;
  -moz-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  -ms-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}

.view:hover > .bordereff {
  background: #33A456;
  -webkit-transition: background 0.5s linear;
  -moz-transition: background 0.5s linear;
  -o-transition: background 0.5s linear;
  -ms-transition: background 0.5s linear;
  transition: background 0.5s linear;
}