.usp-banner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: linear-gradient(251.75deg, #AD0EE5 -24.38%, rgba(132, 45, 190, 0) 111.77%), #0E75E5;
  color: white;
  z-index: 9999;
  font-family: "Roboto Condensed", sans-serif;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .usp-banner {
    height: 40px;
  }
}

.usp-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .usp-slide {
    font-size: 14px;
    padding: 0 10px;
  }
}

.usp-slide.active {
  opacity: 1;
}

.usp-banner:hover .usp-slide,
.usp-slide:hover {
  background: rgba(0, 0, 0, 0.1);
}

.usp-slide strong {
  font-weight: 700;
}