/*https://codepen.io/hexagoncircle/pen/eYMrGwW*/

.logos {
	background-size: 100% auto;
	background-position: top center;
	background-repeat: no-repeat;
	position: relative;
	margin-top: -150px;
	padding: 240px 0px 60px;
}

.logos > .sc-menu {
	top:165px !important;
}

.logos h2, .logos h3 {
	color:#fff;
	text-align: center;
	text-transform: uppercase;
}

.logos h2 {
	font-size: 3.75em;
	font-weight: 700;
	margin: 0 0 5px;
}

.logos h3 {
	font-size: 1.75em;
	font-weight: 400;
	margin: 0 0 60px;
	position:relative;
}

.logos h3::after {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: -15px;
	left: 0;
	border: 2px solid #A90509;
	width: 110px;
	left: 50%;
	margin-left: -55px;
}

.logos .logosWrapper {
	background: rgba(1,31,128,0.67);
	padding:45px 30px;
	position:relative;
	display:block;
}

.logos .marquee {
	--gap: 1rem;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
}

.logos .marquee li {
	list-style:none;
	font-size:1.1em;
	font-weight:bold;
	text-transform:uppercase;
	align-self: center;
}

.logos .marquee__content {
	flex-shrink: 0;
	display: flex;
	justify-content: space-around;
	gap: var(--gap);
	min-width: 100%;
	animation: logosAnimation 30s linear infinite;
}

.logos .marquee__content img {
	max-width:100px;
	max-height:100px;
}

@keyframes logosAnimation {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/* Pause on hover */
.logos .marquee--hover-pause:hover .marquee__content {
  /*animation-play-state: paused;*/
}

/* Reverse animation */
.logos .marquee--reverse .marquee__content {
	animation-direction: reverse;
}

/* Enable position absolute animation on the duplicate content (last-child) */
.logos .enable-animation .marquee--pos-absolute .marquee__content:last-child {
  /*animation-name: scroll-abs;*/
}

@keyframes scroll-abs {
	from {
		transform: translateX(calc(100% + var(--gap)));
	}
	to {
		transform: translateX(0);
	}
}

/* Other page demo styles */
.logos .marquee__content > * {
	flex: 0 0 auto;
	margin: 0;
	padding: 0.5rem 2rem;
	text-align: center;
}

.logos * {
	box-sizing: border-box;
}


@media all and (max-width: 800px) {
	.logos {
		padding: 30px;
	}
}