.weAqua {
	text-align: center;
	text-transform: uppercase;
	margin-top: 60px;
	margin-bottom: 35px;
	font-weight: 500;
	font-size: 35px;
	color: #98f3f7;
	text-shadow: 0 0 5px #0080FF, 0 0 25px #0080FF, 0 0 50px #0080FF, 0 0 100px #0080FF;
}

.scrollSlider {
	width: 95vw;
	height: auto;
	margin: auto;
	overflow: hidden;
    
}

.scrollSlider .slide-track {
	display: flex;
	animation: scroll 40s linear infinite;
	-webkit-animation: scroll 40s linear infinite ;
	width: calc(200px * 14);
	gap: 10px;
}

.scrollSlider .sliiideee {
  width: 200px;
}

.scrollSlider .sliiideee img {
  width: 100%;
  border-radius: 50%;
}

@keyframes scroll {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	100% {
		-webkit-transform: translateX(calc(-200px * 7));
		transform: translateX(-200px * 7);
	}
}