.mous-usp-slider-section > .usp-slider-container.page-width {
  width: 100%;
}

.mous-usp-slider {
  overflow: hidden;
  isolation: isolate;
  position: relative;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: row nowrap;
  gap: 13px 15px;
  border-radius: 10px;
  background: #005050;
}
@media only screen and (max-width: 767.98px) {
  .mous-usp-slider {
    flex-flow: column nowrap;
  }
}
.mous-usp-slider::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: auto auto 0 20px;
  height: auto;
  width: 137px;
  aspect-ratio: 137/79;
  opacity: 0.5;
  background: rgba(255, 255, 255, 0.3);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.45) 40%);
  clip-path: polygon(0 100%, 35% 0, 50% 48%, 67% 0, 100% 100%);
}
.mous-usp-slider:hover .usp-marquee .animation-container {
  animation-play-state: paused;
}
.mous-usp-slider .usp-marquee {
  overflow: hidden;
  isolation: isolate;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: row nowrap;
  gap: 30px;
  flex: 1;
  padding: 0;
}
@media only screen and (max-width: 767.98px) {
  .mous-usp-slider .usp-marquee {
    width: 100%;
    padding-bottom: 15px;
  }
}
.mous-usp-slider .usp-marquee .animation-container {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-flow: row nowrap;
  gap: 30px;
  animation: MarqueeUSPAnim 10s linear infinite;
  animation-duration: var(--animation-speed);
}
.mous-usp-slider .usp-marquee::before {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(0, 80, 80) 1%, rgba(0, 80, 80, 0) 15%, rgba(0, 80, 80, 0) 85%, rgb(0, 80, 80) 99%);
}
.mous-usp-slider .usp-heading {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 0 0 30px;
}
@media only screen and (max-width: 767.98px) {
  .mous-usp-slider .usp-heading {
    padding: 17px 0 0 0;
  }
}
.mous-usp-slider .usp-heading .heading {
  color: #fff;
  white-space: nowrap;
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  line-height: 1.41;
}
.mous-usp-slider .usp-heading button.info-button {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  width: 27px;
  min-width: 27px;
  height: 27px;
}
@media only screen and (max-width: 575.98px) {
  .mous-usp-slider .usp-heading button.info-button {
    padding: 2px;
  }
}
.mous-usp-slider .usp-heading button.info-button img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mous-usp-slider .usp {
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.mous-usp-slider .usp .text {
  color: #fff;
  font-size: 16px;
  text-align: left;
  font-weight: 500;
  line-height: 1.125;
  white-space: nowrap;
}
.mous-usp-slider .usp img.icon {
  color: #fff;
  width: 37px;
  height: 37px;
  -o-object-fit: contain;
     object-fit: contain;
}
@keyframes MarqueeUSPAnim {
  0% {
    translate: 0% 0;
  }
  100% {
    translate: calc(-100% - 30px) 0;
  }
}
