.cards-list {
  z-index: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 2%;

}

.card {
  margin: 30px auto;
  /* width: 300px; */
  height: 300px;
  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.4s;
}

.card .card_image {
  width: 471px;
    margin-left: -4%;
  height: inherit;
  border-radius: 40px;
  background-color: #e21c21ba;
}

.card .card_image img {
  width: inherit;
  height: inherit;
  border-radius: 40px;
  object-fit: cover;
}

.card .card_title {
  text-align: center;
    border-radius: 0px 0px 36px 40px;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 30px;
    margin-top: -260px;
    height: 40px;
}

.card: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);
}
.head
{
	border: 2px solid #fff;
    padding: 0 !important;
    width: 200px;
    margin-left: 26%;
    opacity: none;
    opacity: inherit !important;
}
.parag
{
	color: #fff;
    font-size: 17px;
}
.icns
{
	border: 3px solid #fff;
    padding: 10px;
    border-radius: 40px;
}
.hds
{
	margin-top: 7%;
	    font-size: 32px;
    font-weight: 500;
    color: #fff;
}
.title-white {
  color: white;
}

.title-black {
  color: black;
}

@media all and (max-width: 500px) {
  .card-list {
    /* On small screens, we are no longer using row direction but column */
    flex-direction: column;
  }
}