.view {
   width: 23.6%;
   height: 180px;
   margin: 6px;
   float: left;
   border: 2px solid #dfe5ea;
   overflow: hidden;
   position: relative;
   text-align: center;
   -webkit-box-shadow: 2px 2px 2px #e6e6e6;
   -moz-box-shadow: 2px 2px 2px #e6e6e6;
   box-shadow: 2px 2px 2px #e6e6e6;
   cursor: default;
}
.view .mask,.view .content {
   width: 100%;
   height: 180px;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
}
.view img {
   display: block;
   position: relative;
   text-align: center;
   vertical-align:middle;
}
.view h5 {
   text-transform: uppercase;
   color: #fff;
   text-align: center;
   position: relative;
   font-size: 17px;
   padding: 5px;
   /*background: rgba(5, 85, 160, 0.8);*/
   background: #616161;
   margin: 30px 0 0 0;
}
.view p {
   font-size: 13px;
   position: relative;
   color: #fff;
   padding: 5px 10px 10px;
   text-align: center;
}
.view a.info {
   display: inline-block;
   text-decoration: none;
   padding: 3px 14px;
   background: #616161;
   border-radius:6px;
   color: #fff;
}
.view a.info: hover {
   -webkit-box-shadow: 0 0 5px #000;
   -moz-box-shadow: 0 0 5px #000;
   box-shadow: 0 0 5px #000;
}

@media (min-width: 768px) and (max-width: 979px) {
  .view  {
    width: 100%;
  }
  .view img  {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .view {
  width: 100%;
  }
  .view img {
    width: 100%;
  }
}