.flex-content.logo-carousel {
	overflow: hidden;
	padding: 65px 0;
}

.flex-content.logo-carousel .logo-container {
	align-items: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	row-gap: 30px;
}

body .flex-content.logo-carousel.gradient-bg {
	background: linear-gradient(180deg, #000 13.79%, #001C26 50%);
}

body .flex-content.logo-carousel .text {
	text-align: center;
}	

body .flex-content.logo-carousel.gradient-bg .text * {
	color: white;
}	

.flex-content.logo-carousel .eyebrow {
	text-align: center;
	margin: 0 auto 8px auto;
}

.flex-content.logo-carousel .main-title {
	color: var(--Text);
	margin: 0 0 30px;
}

.flex-content.logo-carousel .logos {
	position: relative;
	min-height: 100px;
}

.flex-content.logo-carousel .logos:after {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100vw + 2px);
	height: 100%;
	opacity: 1;
	-webkit-transition: all 350ms ease-in-out;
	-moz-transition: all 350ms ease-in-out;
	-ms-transition: all 350ms ease-in-out;
	-o-transition: all 350ms ease-in-out;
	transition: all 350ms ease-in-out;
	background-color: #fff;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' style='margin: auto; background: rgba(0, 0, 0, 0) none repeat scroll 0%25 0%25; display: block; shape-rendering: auto;' width='200px' height='200px' viewBox='0 0 100 100' preserveAspectRatio='xMidYMid'%3E%3Cpath d='M10 50A40 40 0 0 0 90 50A40 42 0 0 1 10 50' fill='%230086ca' stroke='none'%3E%3CanimateTransform attributeName='transform' type='rotate' dur='1s' repeatCount='indefinite' keyTimes='0;1' values='0 50 51;360 50 51'%3E%3C/animateTransform%3E%3C/path%3E%3C/svg%3E");
}

.flex-content.logo-carousel .logos.loaded:after {
	opacity: 0;
	pointer-events: none;
}

.flex-content.logo-carousel .slide-track {
	display: flex;
	align-items: center;
	will-change: transform;
}

.flex-content.logo-carousel .slide {
	padding: 0 23px;
}

.flex-content.logo-carousel .slide img {
	display: block;
	max-height: 100px;
	width: auto;
	margin: 0 auto;
}

.flex-content.logo-carousel .logos.grayscale .slide img {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
}

@media (max-width: 767px) {
	.flex-content.logo-carousel {
		padding-top: 60px !important;
		padding-bottom: 60px !important;
	}
}