.crop-img {
  width: 270px;
  height: 360px;
  object-fit: cover;       /* Resmi taşırmadan kırpar */
  object-position: center; /* Ortadan kırpar */
}
.thumbnail-bg {
  width: 270px;
  height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  cursor:pointer;
}

.thumbnail-classic:hover .gallery-bg-image,
.thumbnail-terry:hover .thumbnail-bg {
  transform: scale(1.05);
}

.thumbnail-terry .thumbnail-bg {
	transition: transform 0.3s ease;
}

.thumbnail-classic:hover, .thumbnail-terry:hover {
	box-shadow: 0 5px 23px 0 rgba(0, 0, 0, 0.15);
}
