.gradient-custom {
/* fallback for old browsers */
background: #2F2F2F;
}


* {box-sizing: border-box}

/* Container needed to position the overlay. Adjust the width as needed */
.shop1 {
  position: relative;
  width: 50%;
  max-width: 400px;
}

/* Container needed to position the overlay. Adjust the width as needed */
.shop2 {
  position: relative;
  width: 50%;
  max-width: 400px;
}

/* Make the image to responsive */
.image {
  display: block;
  width: 100%;
  height: auto;
}

/* The overlay effect - lays on top of the container and over the image */
.overlay {
  position: absolute;
  bottom: 30px;
  left:  13px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: center;
}

.overlay1 {
  position: absolute;
  bottom: 30px;
  left:  13px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: center;
}

/* When you mouse over the container, fade in the overlay title */
.shop1:hover .overlay {
  opacity: 1;
}


/* When you mouse over the container, fade in the overlay title */
.shop2:hover .overlay1 {
  opacity: 1;
}