.slider-img-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 150px;
  height: 150px;
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
}

.slider-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 10px;
  transition: transform 0.2s ease-in-out;
}

.slider-img-card:hover {
  transform: scale(1.05);
}

.slider-img-card img:hover {
  transform: scale(1.1);
}

@media (max-width: 680px) {
  .slider-img-card {
    max-width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }

  .slider-img-card img {
    border-radius: 8px;
  }
}

@media (min-width: 681px) and (max-width: 1024px) {
  .slider-img-card {
    max-width: 130px;
    height: 130px;
    margin-bottom: 18px;
  }
}
