@charset "utf-8";
/* CSS Document */
.marquee {
cursor:pointer;
  --gap: 1rem;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}

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

/* Pause animation when reduced-motion is set */
@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}

/* Enable animation */
.enable-animation .marquee__content {
  animation: scroll 25s linear infinite;
}

/* Pause on hover */
.marquee--hover-pause:hover .marquee__content {
  animation-play-state: paused;
}


@keyframes scroll-abs {
  from {
    transform: translateX(calc(100% + var(--gap)));
  }
  to {
    transform: translateX(0);
  }
}

/* Other page demo styles */
.marquee__content > * {
  flex: 0 0 auto;
  color: #000;
  background: rgba(157,195,231,1.0);
  margin: 2px;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-align: center;
}

/* --------- smartphone -----------  */

@media screen and (max-width: 767px) {
#Marquee {
margin:0;
  width: 100%;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.75rem;
  }
}

/* --------  tablets-----------  */

@media screen and (min-width: 768px) {
#Marquee {
margin:0;
  width: 80%;
  font-family: 'Titillium Web', sans-serif;
  font-size: 0.9rem;}
}


/* --------- desktop screen -------------  */

@media screen and (min-width: 1366px) {

#Marquee {
margin:0;
  width: 50%;
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.0rem;}
}
