.section-marquee{
	position:relative;
	overflow:hidden;
    background:var(--c-green); 
}
.section-marquee a{
	color:#ffffff; 
	text-decoration: none;
}
.section-marquee .marquee-container {
    width: 100vw;
    max-width: calc(100% - 0px);
    margin: 0px auto;
    display: flex;
    align-items: center;
    padding:0.98vw 0;
}
.section-marquee .content-wrapper {
  padding-inline: 0px;
  display: flex;
  column-gap: 0px;
  align-items: center;
  animation: scroll 24s linear infinite;
}
.section-marquee p {
  font-family: "Inter", sans-serif;
  font-weight:bold;
    white-space: nowrap;
    transform: scale(1, 1);
	color:#ffffff;
	display:inline-block;
  border:1px solid #fff;
  border-radius: 2.083vw;
  margin: 0 0.69vw;
  padding: 0.356vw 1.528vw;
    font-size: 1.68vw;
}

.section-marquee .marquee-container:hover .content-wrapper {
  animation-play-state: paused;
}

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

@media screen and (max-width: 991px) {
.section-marquee .marquee-container {
    padding:1.47vw 0;
}
.section-marquee p {
  border-radius:3.1245vw;
  margin: 0 1.035vw;
  padding: 0.534vw 2.292vw;
    font-size: 2.016vw;
}
}

@media screen and (max-width: 767px) {
.section-marquee .marquee-container {
    padding:4.34vw 0;
}
.section-marquee p {
  border-radius: 40vw;
  margin: 0 2.815vw;
  padding: 1.657vw 9.11vw;
    font-size: 6.763vw;
}
}
