#scroll-container {
		overflow: hidden;
		max-width: 100%;
	}
	#scroll-text {
		/* animation properties */
		-moz-transform: translate3d(0, 0, 0);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		-moz-animation: my-animation 20s linear infinite;
		-webkit-animation: my-animation 20s linear infinite;
		animation: my-animation 20s linear infinite;
		display: inline-flex;
		white-space: nowrap;
		overflow: hidden;
	}
	/* for Firefox */
	@-moz-keyframes my-animation {
		from { -moz-transform: translate3d(0, 0, 0); }
		to { -moz-transform: translate3d(-50%, 0, 0); }
	}
	/* for Chrome */
	@-webkit-keyframes my-animation {
		from { -webkit-transform: translate3d(0, 0, 0); }
		to { -webkit-transform: translate3d(-50%, 0, 0); }
	}
	@keyframes my-animation {
		from {
			-moz-transform: translate3d(0, 0, 0);
			-webkit-transform: translate3d(0, 0, 0);
			transform: translate3d(0, 0, 0);
		}
		to {
			-moz-transform: translate3d(-50%, 0, 0);
			-webkit-transform: translate3d(-50%, 0, 0);
			transform: translate3d(-50%, 0, 0);
		}
	}
.google-workspace-icons{
  margin: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
	.google-workspace-icons img {
		margin: 20px 35px;
		transition: all .2s ease-in-out;
		height: 45px;
    width: 45px;
	}

.clients-box {
		margin-top: 0px;
		display: inline-flex;
		align-items: center;
	}
.clients-box {
			margin-top: 0px !important;
			margin-left: 0px;
			margin-right: 0px;
		}