<style>
.zcs-marquee-section {
  background: #bf6a57;
  padding: 0;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 1rem;
}

.zcs-marquee-container {
  flex-shrink: 0;
  display: flex;
  white-space: nowrap;
  justify-content: space-around;
  gap: 1rem;
  min-width: 100%;
  animation: scroll 25s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1rem));
  }
}

.zcs-marquee-content {
  margin-right: 17px;
  position: relative;
  padding-left: 32px;
  color: white;
  font-weight: bold;
  list-style: none;
  font-family: "Poppins";
}

.zcs-marquee-content::before {
  content: "\25CF";
  position: absolute;
  color: white;
  left: 0px;
  top: 15px;
  transform: translateY(-50%);
  font-size: 2.2em;
}
</style>[data-category-style-08] .theme-category-image-desc-container .theme-category-image-description-conatainer {
    min-height: max-content;
    padding:20px
}