.image-container-led {
  height: 300px;
  width: 100%;
  background-color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px 10px 0 0;
}

.img-fluid-led {
  height: 80%;
  width: 100%;
  object-fit: cover;
  margin: auto;
  transition: transform 0.5s ease-in-out;
}
.image-container-led:hover .img-fluid-led {
  transform: scale(1.1);
  transition: transform 0.5s ease-in-out;
}
.border-radius-text-led {
  border-radius: 0 0 10px 10px;
}