.d-flex{
  border:1px solid grey;

}
.card {
  width: 100%;
  margin-top:10px;
  padding: 20px;
  /* background-color: #f39c12; Orange background */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(243, 156, 18, 0.3); /* Orange shadow */
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
}

.card img {
  width: 150px;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.card h5 {
  margin-top: 10px;
  margin-bottom: -25px;
}
.card p {
  margin-top: 10px;
  
}


.card:hover {
  transform: scale(1.05);
}

.card:hover img {
  transform: scale(1.2);
}

.rate {
  float: left;
  height: 46px;
  padding: 0 10px;
}
.rate:not(:checked) > input {
  position:absolute;
  top:-9999px;
}
.rate:not(:checked) > label {
  float:right;
  width:1em;
  overflow:hidden;
  white-space:nowrap;
  cursor:pointer;
  font-size:30px;
  color:#ccc;
}
.rate:not(:checked) > label:before {
  content: '★ ';
}
.rate > input:checked ~ label {
  color: #ffc700;    
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
  color: #deb217;  
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
  color: #c59b08;
}