.partners_group {
	padding: 0px;
	width: 100%;
}
.wp-block-group__inner-container:has(div.partners) {
	max-width: unset;
	padding: 0px;
}
.partners {
	display: flex;
	flex-direction: column;
	background-image:  url('/wp-content/themes/wgc/images/border_top_blue_white.png'),  url('/wp-content/themes/wgc/images/border_bottom_blue_white.png'), url('/wp-content/themes/wgc/images/swirl-background-blue.png');
	background-repeat: no-repeat, no-repeat, repeat;
	background-position: top, bottom, center;
	background-size: contain, contain;
	padding: 311px 0px;
}
.partners .wrapper {
	max-width: 1366px;
	margin: 0px auto;
}
.partner-title {
	font-family: "Abril Fatface", serif;
	font-size: 32px;
	line-height: 36px;
	font-weight: 400;
	margin-bottom: 16px;
	color: #ffffff;
}
.partner-description {
	font-family: "Open Sans", serif;
	font-size: 18px;
	line-height: 27px;
	font-weight: 400;
	margin-bottom: 32px;
	color: #ffffff;
	max-width: 808px;
}
.partner-subtitle {
	font-family: "Abril Fatface", serif;
	font-size: 24px;
	line-height: 26px;
	font-weight: 400;
	margin-bottom: 32px;
	color: #ffffff;
}
.logo-rows {
	display: flex;
	flex-direction: column;
	width: 100%;
	overflow: hidden;
	margin-bottom: 32px;
  }

:root {
	--marquee-width: 100vw;
	--marquee-height: 242px;
	/* --marquee-elements: 12; */ /* defined with JavaScript */
	--marquee-elements-displayed: 6;
	--marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
	--marquee-animation-duration: calc(var(--marquee-elements) * 3s);
  }
  
  .marquee-1, .marquee-2 {
	width: var(--marquee-width);
	height: var(--marquee-height);
	overflow: hidden;
	position: relative;
	margin-top: 4px;
  }
  .marquee-content-1,   .marquee-content-2 {
	list-style: none;
	height: 100%;
	display: flex;
	animation: scrolling var(--marquee-animation-duration) linear infinite;
  }
 /* 
  .marquee-content:hover {
	animation-play-state: paused;
  }
 */  
  @keyframes scrolling {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
  }
  .marquee-content-1 li,   .marquee-content-2 li {
	display: flex;
	justify-content: center;
	align-items: center;
	/* text-align: center; */
	flex-shrink: 0;
	width: var(--marquee-element-width);
	max-height: 100%;
	white-space: nowrap;
	height: 242px;
	margin-right: 4px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 242px 242px;
	background-color: #ffffff;
	border-radius: 15px;
  }
  .marquee-content-2 li:first-child {
	margin-left: -140px;

  }
@media only screen and (max-width: 1200px) { 
	:root {
		--marquee-width: 100vw;
		--marquee-height: 150px;
	}
	.marquee-content-1 li, .marquee-content-2 li {
		height: 150px !important;
		background-size: contain !important;
	}
}
@media only screen and (max-width: 768px) {
	.partners {
		background:  url('/wp-content/themes/wgc/images/blue_top_mobile.png') no-repeat top/contain,  url('/wp-content/themes/wgc/images/blue_bottom_mobile.png') no-repeat bottom/contain, url('/wp-content/themes/wgc/images/swirl-background-blue.png') repeat center;
		padding: 130px 0px;
		margin-bottom: 48px;
		margin-top: 48px;
	}
	.partners .wrapper {
		padding: 0px 16px;
	}
	.partner-title {
		font-size: 27px;
		line-height: 29px;
		margin-bottom: 16px;
	}
	.partner-description {
		font-size: 16px;
		line-height: 24px;
	}
	.partner-subtitle {
		font-size: 20px;
		line-height: 22px;
	}
	
	:root {
	  --marquee-width: 100vw;
	  --marquee-height: 120px;
	  --marquee-elements-displayed: 3;
	}
	.marquee-content-1 li, .marquee-content-2 li {
		height: 120px;
		background-size: cover;
	  }
}