@charset "UTF-8";

.h-marquee-container {
  max-width: 800px;
  margin: 60px auto;
  position: relative;
  background-color:#08f9f9;
  padding:30px;
  border-radius: 10px;
}

.h-window {
  overflow: hidden;
  background-color:#08f9f9
}

.h-track {
  display: flex;
  gap: 30px;
  will-change: transform;
}

.h-slide {
  min-width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  white-space: nowrap;
}

/* SIDE ARROWS */
.h-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color:transparent;
  color: #000;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
}

.h-arrow.left {
  left: 0px;  /* adjust if needed */
}

.h-arrow.right {
  right: 0px; /* adjust if needed */
}

.h-arrow:hover {
  opacity: 0.85;
}