.Our_reels {
  margin: 50px 0;
}

.Our_reels .reels_title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.Our_reels .reels_slider {
  padding: 10px 0;
}

.Our_reels .reel_card {
  position: relative;
  display: block;
  aspect-ratio: 1/1.5;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 400px;
}

.Our_reels .reel_card:hover {
  transform: translateY(-6px);
}

.Our_reels .reel_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Our_reels .reel_overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Our_reels .reel_overlay span {
  font-size: 48px;
  color: #fff;
  opacity: 0.9;
}


@media (min-width:0px) and (max-width: 991px) {
  .Our_reels .reel_card {
    height: unset;
  }
}

@media (min-width:992px) and (max-width: 1199px) {
  .Our_reels .reel_card {
    height: 300px;
  }
}