.cspt-marquee-style-1 .cspt-element-title {
  font-size: 24px;
  font-style: normal;
  line-height: 100%;
  margin-bottom: 0;
  display: flex;
  color: var(--cspt-greenly-blackish-color);
  background-color: var(--cspt-greenly-light-bg-color);
  border-radius: 100px;
  padding: 0 40px;
  height: 70px;
  align-items: center;
  white-space: nowrap;
}
.cspt-marquee-style-1 .cspt-tag-wrapper{
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}
.cspt-marquee-image img {
  border-radius: 100px;
  width: 180px;
  min-width: 180px;
  height: 70px;
  min-height: 70px;
}
.cspt-marquee-style-1 .owl-stage {
  display: flex !important;
  flex-shrink: 0;
  animation: scroll 25s linear infinite;
}
.cspt-marquee-style-1 .cspt-marquee-container .owl-stage  .owl-item{
  width: auto !important;
}
.cspt-marquee-style-1 .owl-item {
     width: fit-content !important;
    flex: 0 0 auto;
    margin-right: 20px !important;
}
.cspt-marquee-style-1  .owl-nav.disabled {
    display: none;
}
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* BG color */
.cspt-elementor-bg-color-light .cspt-marquee-style-1 .cspt-element-title  {
  background-color: var(--cspt-greenly-white-color);
}


@media(max-width:767px) {
  .cspt-marquee-style-1 .cspt-element-title {
    font-size: 20px;
    padding: 0 30px;
    height: 55px;
  }
  .cspt-marquee-image img {
    border-radius: 100px;
    width: 150px;
    min-width: 150px;
    height: 55px;
    min-height: 55px;
  }
}