

.product-header {
    width: 100%;
    height:  300px;
    background: url('../images/product.jpg') no-repeat;
    background-size: 100% !important; 
  }
  .product-well {
    background:  url('../images/bg.jpg') no-repeat;
    background-size: 135% 100% !important;
    background-position: right 50% top 0 !important;
  }
  .product-well .well-cap {
    width : 100%;
    height: 50px;
    line-height: 48px;
    font-size: 18px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: rgb(5,49,123);
    position: relative;
  }
  .product-well .well-cap:after {
    background: #d4021d;
    width : 50px;
    height: 5px;
    content: '';
    position: absolute;
    left: 0;
    bottom : -2.5px;
    border-radius: 5px;
  }
.product-panel {
  width : 100%;
  display: inline-block;
  padding: 30px 0;
}

.product-panel  .w-card {
  display: inline-block;
  vertical-align: top;
}

.product-panel .w-card {
  display: inline-block;
  height: 200px;
  width: 100%;
  position: relative;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 3px
}
.product-panel .w-card .card-images {
  display: inline-block;
  width : 100%;
  height: 85%;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
}
.product-panel .w-card .card-name {
  display: inline-block;
  width : 100%;
  height: calc(100% - 85%);
  text-align: center;
  font-size: 17px;
  background: rgba(0,221,0,0.7);
  position: relative;
  top: -4px;
  color: #fff;
  font-family: 'RobotoM';
}
.product-panel  .w-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height:0;
  background: rgba(0,0,0,0.6);
   transition: all ease-in .3s;
  -webkit-transition : all ease-in .3s;
  -o-transition: all ease-in .3s;
  -moz-transition: all ease-in .3s;
}
.product-panel .col-md-2:hover .w-bg {
  height: 100%;
  padding: 10px;
  transition: all ease-in .3s;
  -webkit-transition : all ease-in .3s;
  -o-transition: all ease-in .3s;
  -moz-transition: all ease-in .3s;
}