.etm-marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.etm-item {
  position: relative;
  width: 260px;
  height: 360px;
  min-width: 300px;
  min-height: 400px;

  border-radius: 12px;
  overflow: hidden;
}
.etm-item-image {
  width: 100%;
  height: 100%;
  min-width: 300px;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.etm-item-image:hover {
  transform: scale(1.2);
  transition: transform 0.3s ease;
}
.etm-item .etm-title {
  position: absolute;
  bottom: 0; /* put at bottom of the image */
  left: 0;
  width: 100%;
  color: #fff;
}

.etm-item h3 {
  display: flex;
  min-height: 130px;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0;
  text-align: center;
}
