
.cards-list {
    padding-left: 1%;
    z-index: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .card2 {
    margin: 30px;
    width: 230px;
    height: 230px;
    border-radius: 40px;
  box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
    cursor: pointer;
    transition: 0.5s;
  }
  
  .card2 .card_image {
    width: inherit;
    height: inherit;
    border-radius: 40px;
  }
  
  .card2 .card_image img {
    width: inherit;
    height: inherit;
    border-radius: 40px;
    object-fit: cover;
  }
  
  .card2 .card_title {
    text-align: center;
    border-radius: 0px 0px 40px 40px;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 30px;
    margin-top: -80px;
    height: 40px;
  }
  
  .card2:hover {
    transform: scale(0.9, 0.9);
    box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25), 
      -5px -5px 30px 15px rgba(0,0,0,0.22);
  }
  
  .title-white {
    color: white;
  }
  
  .title-black {
    color: black;
  }
  .heading{
    font-weight: bold;
    height:30px;
    padding-top:2px;
    text-align:center;
    background-color:#134b13;
    color:white;
  }
  .pleasure{
    font-weight: bold;
    font-family:serif; 
    text-align:center;
  }
  .paragraph{
    padding: 0px 0px;
    margin: 0px 25px;
    text-align: justify;
    font-family: verdana;
    color: black;
  }
  .hindi{
    color:white; 
    text-align:left;
  }
.info{
  color:#a9a192 ;
}
.prouct_img{
  padding:5%;
 
}



/* Slow-motion Zoom Container */
.img-hover-zoom--slowmo img {
transform-origin: 50% 65%;
transition: transform 2s, filter 3s ease-in-out;
filter: brightness(100%);
}

/* The Transformation */
.img-hover-zoom--slowmo:hover img {
filter: brightness(100%);
transform: scale(1.5);
}

  @media all and (max-width: 400px) {
    .card-list {
      /* On small screens, we are no longer using row direction but column */
      flex-direction: column;
    }
  }