.card {
  border-radius: 7px !important;
  border-color: #e1e7ec;
}

.product-grid {
  font-family: 'Oswald', sans-serif;
  text-align: center;
}

.product-grid .product-image {
  position: relative;
}

.product-grid .product-image a.image {
  display: block;
}

.product-grid .product-image img {
  width: 100%;
  height: auto;
}

.product-image .pic-1 {
  opacity: 1;
  backface-visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.product-grid:hover .product-image .pic-1 {
  opacity: 0;
}

.product-image .pic-2 {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.product-grid:hover .product-image .pic-2 {
  opacity: 1;
}

@media only screen and (max-width:990px) {
  .product-grid {
    margin-bottom: 30px;
  }
}

img {
}

