/* #bogyisz.main{ */
	/* background: #444444; */
    /* padding: 10px; */
/* } */



#bogyisz.main .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}
#bogyisz.main .card {
  color: #252a32;
  border-radius: 2px;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}
#bogyisz.main .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #ffffff;
}
#bogyisz.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 2px 2px 10px rgba(255,255,255, 0.5);
  filter: grayscale(70%);
  opacity:0.9;
}


#bogyisz.main .card-image img:hover {
	  box-shadow: 0px 0px 0px rgba(255,255,255, 0.0);
  filter: grayscale(0%);
opacity:1;


}



@media only screen and (max-width: 600px) {
  #bogyisz.main .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}