.featuerd-products{
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 749px) {
  .featuerd-products{
    flex-direction: column;
  }
}

.featuerd-products-item{
  margin: 0px 5px;
  text-align: center;
}

.featuerd-products-item img{
  width: 350px;
  transform: scale(1);
  transition: all 0.1s ease-in-out;
}

.featuerd-products-item img:hover{
  transform: scale(1.1);
}
@media screen and (max-width: 749px) {
  .featuerd-products-item img{
    width: 240px;
  }
}
