.main {
    .container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 1rem;
      justify-content: center;
      align-items: center;
    }

  }
  .main h1{
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    text-decoration:underline;
  }
  @import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,700,600);

@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.css);

.img_product-image {
  position: relative;
  overflow: hidden;
  /* You can remove everything below this line when adding to v7. The next 3 lines are strictly for having this display properly in this codepen*/
 
  margin: 20px auto;
}
.img_product-image img{
  width: 100%;
  border-radius: 10px;
}

.img_product-image::before {
  content: "";
  font-family: 'Open Sans', sans-serif;
  display: block;
  color: white;
  font-size: 0px;
  text-align: center;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  top: 0;
  left: 0;
  position: absolute;
  background: transparent;
  z-index: 2;
  pointer-events: none;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
  box-sizing: border-box;
}

.img_product-image:hover::before {
  font-size: 24px;
  background: #3f3336;
  background: transparent\9;
  background: rgba(63, 51, 54, .85);
  -webkit-box-shadow: inset 0px 0px 183px -9px rgba(50,40,48,1);
  -moz-box-shadow: inset 0px 0px 183px -9px rgba(50,40,48,1);
  box-shadow: inset 0px 0px 183px -9px rgba(50,40,48,1);
}

.img_product-image::after {
  font-family: FontAwesome;
  content: "\f067";
  display: block;
  top: 0;
  left: 0;
  color: #bc9c63;
  font-size: 0px;
  position: absolute;
  padding-top: 145px;
  pointer-events: none;
  padding-left: 50%;
  z-index: 5;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  transition: all .5s ease;
}

.img_product-image:hover::after {
  font-size: 40px;
  padding-left: 45%;
}



.query h3{
  padding: 20px 40px;
  color: #bbb;
  background-color: #000000d9;
  border-radius: 0 0 25px 0;
  font-size: 1.70rem;
}

  
  @media only screen and (max-width: 600px) {
    .main {
      .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
      }
    }
    .blog__pagination{
      padding-left: 0;
    }
  }
  