:root {
	--main-backgrounds-lt: #f5f5f5;
	--main-backgrounds-md: #e6e6e6;
	--main-lines-borders: #55565a;
	--corp-sky-blue-lt: #82c8dc;
	--corp-sky-blue-dk: #00a0be;
	--corp-plant-green-lt: #aab400;
	--corp-plant-green-med: #7f9333;
	--corp-plant-green-dk: #5f7800;
	--corp-sun-orange-lt: #ffb400;
	--corp-sun-orange-dk: #eb8200;
	--other-warm-gray: #d9d5d2;
	--core-font-family: "Noto Sans", sans-serif;
}

/* Marketing Banner */
#mkt-banner {
	margin-top: -21px;
	position: relative;
	background-color: transparent;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
	font-family: var(--core-font-family);
}

.mktb-standard .mktb-mobile-bk {
	display: block;
	width: 100%;
	height: 400px;
	position: relative;
	background-color: transparent;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.mktb-standard.mktb-default .mktb-mobile-bk {
	height: 250px;
}

.mktb-standard .mktb-bk {
	display: none;
}

.mktb-standard .container {
	position: relative;
	height: auto;
	margin-top: -400px;
}

.mktb-standard.mktb-default .container {
	margin-top: 0;
}

.mktb-standard .mktbs-call-out {
	background-color: #fff;
	margin: 250px 15px 0;
	padding: 32px 15px 30px;
	border-bottom-width: 5px;
	border-bottom-style: solid;
	-webkit-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.25);
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.25);
}

	.mktb-standard .mktbs-call-out .mktbs-title {
		color: #000;
		font-size: 26px;
		line-height: 31px;
		font-weight: bold;
		margin: 45px 0 20px;
		display: block;
	}

	.mktb-standard .mktbs-call-out p {
		color: #000;
		margin: 0 0 20px;
		font-size: 16px;
		line-height: 23px;
	}

@media only screen and (min-width:768px) {
	.mktb-standard.mktb-default .container {
		margin-top: -50px;
		padding-bottom: 0;
	}

	.mktb-standard .mktb-mobile-bk {
		display: none;
	}

	.mktb-standard .mktb-bk {
		display: block;
		width: 100%;
		height: 400px;
		position: absolute;
		top: 0;
		left: 0;
		background-color: transparent;
		background-position: center center;
		background-size: cover;
		background-repeat: no-repeat;
	}

	.mktb-standard.mktb-default .mktb-bk {
		height: 250px;
	}

	.mktb-standard .container {
		position: relative;
		height: 400px;
		margin-top: 0;
		padding-bottom: 0;
		overflow: hidden;
	}

	.mktb-standard.mktb-default .container {
		height: 250px;
		margin-top: 0;
	}

	.mktb-standard .mktbs-call-out {
		background-color: rgba(255,255,255,.90);
		width: 55%;
		margin: 0 0 0 15px;
		position: absolute;
		padding: 20px 20px 30px;
		top: 50%;
		transform: translateY(-50%);
	}

		.mktb-standard .mktbs-call-out .mktbs-title {
			margin: 0 0 20px;
		}
}

@media only screen and (min-width:992px) {
	.mktb-standard .mktbs-call-out {
		width: 45%;
	}

	#mkt-banner {
		margin-top: -14px;
	}

	.mktb-standard .mktbs-call-out {
		top: 47%;
		transform: translateY(-50%);
	}
}

@media only screen and (min-width:1200px) {
	.mktb-standard .mktbs-call-out {
		width: 40%;
	}
}

/* Section Title */
.sec-title {
	text-align: center;
	padding-bottom: 18px;
	margin-top: 50px;
}

	.sec-title .header-line {
		height: 2px;
		width: calc( 100% - 30px );
		display: block;
		position: absolute;
		top: 30px;
		z-index: 20;
		background-color: var(--corp-plant-green-dk);
	}

	.sec-title h2 {
		position: relative;
		display: inline-block;
		color: #000;
		font-size: 18px;
		font-weight: 700;
		line-height: 40px;
		background-color: white;
		margin: 0;
		padding: 10px;
		z-index: 40;
		text-transform: uppercase;
	}

/* Filtering Sidebar */
.filter-sidebar-heading {
	border-bottom: 2px solid black;
	padding: 0 5px 10px 5px;
	margin-bottom: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.filter-sidebar h3 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	font-family: var(--core-font-family);
	color: black;
	text-transform: uppercase;
	margin: 0 0 0 30px;
	display: inline-block;
}

.filter-sidebar::before {
	content: "";
	display: block;
	width: 20px;
	height: 33px;
	background-image: url('https://assets.syngentaebiz.com/images/media/newsroom_v2-filter-icon.svg');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: absolute;
	left: 20px;
}

#clear-filter-button {
	background-color: var(--main-backgrounds-lt);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #6e6e6e;
	border-radius: 50px;
	user-select: none;
	font-family: var(--core-font-family);
}

	#clear-filter-button svg {
		width: 16px;
		height: 11px;
	}

	#clear-filter-button:hover {
		background-color: #000;
		color: white;
	}

		#clear-filter-button:hover svg path {
			fill: white;
		}

.filter-group-header {
	padding: 15px 10px;
	border-bottom: 1px solid var(--main-backgrounds-md);
}

	.filter-group-header h4 {
		font-size: 18px;
		line-height: 26px;
		font-weight: 700;
		font-family: var(--core-font-family);
		color: black;
		margin: 0;
	}

.active-filters {
	background-color: var(--corp-plant-green-lt);
	border-radius: 100%;
	width: 25px;
	height: 25px;
	color: white;
	text-align: center;
	font-size: 16px;
	line-height: 25px;
	margin-left: 20px;
	display: none;
}

.filter-expand-chevron {
	width: 24px;
	height: 24px;
	display: none;
	background-image: url('https://assets.syngentaebiz.com/images/media/newsroom_v2-filter-chevron-up.svg');
	background-repeat: no-repeat;
	background-size: 24px;
	background-position: center;
	position: absolute;
	right: 30px;
	transform: rotate(180deg);
}

.filter-group-expanded .filter-expand-chevron {
	transform: rotate(0deg);
}

@media (max-width: 767px) {
	.filter-sidebar-heading {
		margin-bottom: 20px;
	}

	.filter-group-header {
		padding: 20px;
	}

	.active-filters {
		display: inline-block;
	}

	.no-active-filters {
		display: none;
	}

	.filter-expand-chevron {
		display: inline-block;
	}

	.filter-group-options {
		display: none;
	}

	.filter-group-expanded .filter-group-options {
		display: block;
	}

	.filter-group {
		border-top: 1px solid var(--main-backgrounds-md);
	}

		.filter-group:last-of-type {
			border-top: none;
		}
}

.filter-option {
	padding: 20px 10px;
	border-top: 1px solid var(--main-backgrounds-md);
}

	.filter-option input[type="checkbox"] {
		display: none;
	}

	.filter-option label {
		line-height: 1.1;
		display: grid;
		grid-template-columns: 1em auto;
		gap: 18px;
		user-select: none;
		font-size: 16px;
		line-height: 20px;
		font-family: var(--core-font-family);
		color: black;
	}

		.filter-option label:hover {
			cursor: pointer !important;
		}

	.filter-option input[type="checkbox"] {
		-webkit-appearance: none;
		appearance: none;
		background-color: #f4f4f4;
		margin: 0;
		color: currentColor;
		width: 24px;
		height: 24px;
		border: 1px solid #959595;
		border-radius: 8px;
		transform: translateY(-0.075em);
		display: grid;
		place-content: center;
	}

		.filter-option input[type="checkbox"]::before {
			content: "";
			width: 0.65em;
			height: 0.65em;
		}

		.filter-option input[type="checkbox"]:checked {
			background-color: var(--corp-plant-green-lt);
		}

			.filter-option input[type="checkbox"]:checked::before {
				background-image: url('https://assets.syngentaebiz.com/images/media/newsroom_v2-filter-checkmark.svg');
				background-repeat: no-repeat;
				background-size: contain;
				background-position: center;
			}

		.filter-option input[type="checkbox"]:not(:checked):hover {
			background-color: #B0B0B0;
			cursor: pointer;
		}

@media only screen and (max-width: 768px) {
	.newsroom-result-header {
		margin: 25px 0;
		background-color: var(--main-backgrounds-lt);
		padding: 8px 0;
	}
}

/* Filter Results Body - Options */
.newsroom-result-options {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

	.newsroom-result-options label {
		font-size: 16px;
		line-height: 24px;
		font-family: var(--core-font-family);
		color: black;
	}

	.newsroom-result-options select {
		border: 1px solid #D9D9D9;
		font-family: var(--core-font-family);
		color: black;
		padding: 5px 30px 5px 15px;
		margin-left: 20px;
		border-radius: 8px;
		font-size: 16px;
		background-image: url('https://assets.syngentaebiz.com/images/media/newsroom_v2-filter-chevron-select.svg');
		background-repeat: no-repeat;
		background-size: 12px;
		background-position: right 15px center;
		appearance: none;
	}

		.newsroom-result-options select:hover {
			background-color: var(--main-backgrounds-lt);
			cursor: pointer;
		}

@media only screen and (max-width: 768px) {
	.newsroom-result-options {
		justify-content: center;
	}
}

/* Filter Results Body - No Results */
.newsroom-no-results {
	background-color: var(--main-backgrounds-md);
	padding: 25px;
	text-align: center;
	margin-top: 50px;
}

	.newsroom-no-results h4 {
		font-size: 18px;
		line-height: 26px;
		font-weight: 700;
		font-family: var(--core-font-family);
		color: black;
		margin: 0 0 10px 0;
	}

	.newsroom-no-results p {
		font-size: 18px;
		line-height: 26px;
		font-family: var(--core-font-family);
		color: black;
		font-style: italic;
		margin: 0;
	}

@media only screen and (max-width: 768px) {
	.newsroom-no-results {
		margin-top: 0;
	}
}

/* Filter Results Body - Results Items */
.newsroom-results {
	margin-top: 30px;
}

.newsroom-result-listing {
	list-style: none;
	padding: 0;
	margin: 30px 0;
}

.newsroom-result-item {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 10px 0;
	font-size: 18px;
	line-height: 26px;
	font-family: var(--core-font-family);
}

	.newsroom-result-item a {
		text-decoration: none;
	}

		.newsroom-result-item a:hover {
			text-decoration: underline;
		}

	.newsroom-result-item time {
		color: #55565a;
	}

@media only screen and (max-width: 768px) {
	.newsroom-results {
		margin-top: 0;
	}

	.newsroom-result-listing {
		margin: 10px 0;
	}

	.newsroom-result-item {
		justify-content: space-between;
		flex-direction: column-reverse;
		align-items: flex-start;
		flex-wrap: wrap;
	}
}

/* Filter Results Body - Pagination */
.newsroom-results nav {
	display: flex;
	justify-content: flex-end;
	margin-top: 50px;
}

.newsroom-pagination .current {
	background: black !important;
	border-radius: 8px !important;
	border: unset;
	padding: 5px 12px;
	font-size: 16px;
	font-weight: 400;
	color: white;
}

.newsroom-pagination a, .newsroom-pagination button {
	color: black !important;
	font-size: 16px;
	font-weight: 400
}

	.newsroom-pagination a:hover, .newsroom-pagination button:hover {
		background: none;
		text-decoration: none;
	}

li.pagination-previous span, li.pagination-next span {
	display: none
}

.newsroom-pagination .pagination-previous a, .newsroom-pagination .pagination-next a {
	font-size: 0
}

	.newsroom-pagination .pagination-previous a:before, .newsroom-pagination .pagination-previous.disabled:before, .newsroom-pagination .pagination-previous li:before {
		content: "\2190";
		font-size: 25px
	}

	.newsroom-pagination .pagination-next a:after, .newsroom-pagination .pagination-next.disabled:after, .newsroom-pagination .pagination-next li:after {
		content: "\2192";
		font-size: 25px
	}

.newsroom-pagination {
	margin: 0;
	padding: 0;
}

	.newsroom-pagination:before,
	.newsroom-pagination:after {
		content: " ";
		display: table
	}

	.newsroom-pagination:after {
		clear: both
	}

	.newsroom-pagination li {
		user-select: none;
		margin-right: .0625rem;
		border-radius: 0
	}

	.newsroom-pagination li {
		display: inline-block
	}

	.newsroom-pagination a,
	.newsroom-pagination button {
		color: black;
		display: block;
		padding: .1875rem .625rem;
		border-radius: 0
	}

	.newsroom-pagination .disabled {
		padding: .1875rem .625rem;
		color: #cacaca;
		cursor: default
	}

		.newsroom-pagination .disabled:hover {
			background: transparent
		}

	.newsroom-pagination a,
	.newsroom-pagination button {
		cursor: pointer
	}

	.newsroom-pagination .pagination-previous a:before,
	.newsroom-pagination .pagination-previous.disabled:before {
		content: "\2190";
		display: inline-block;
		margin-right: .5rem
	}

	.newsroom-pagination .pagination-next a:after,
	.newsroom-pagination .pagination-next.disabled:after {
		content: "\2192";
		display: inline-block;
		margin-left: .5rem
	}

	.newsroom-pagination .show-for-sr {
		position: absolute !important;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0)
	}

	.newsroom-pagination .ellipsis {
		pointer-events: none;
	}

@media only screen and (max-width: 768px) {
	.newsroom-results nav {
		justify-content: center;
		margin-top: 25px;
	}
}

/* Social Icons */
.social-links {
	margin: 70px 0 30px 0;
}

	.social-links h2 {
		text-align: center;
		font-size: 36px;
		line-height: 42px;
		font-family: var(--core-font-family);
		font-weight: 600;
		color: black;
		margin: 0 0 40px 0;
	}

	.social-links .social-link-twitter {
		background-color: #3fbbd5;
		display: inline-block;
		border-radius: 50%;
		transition: all .25s;
	}

		.social-links .social-link-twitter img {
			width: 35%;
		}

		.social-links .social-link-twitter:hover,
		.social-links .social-link-twitter:focus {
			opacity: .8;
			transform: scale(.9);
		}

			.social-links .social-link-twitter:hover img {
				opacity: 1;
				transform: scale(1);
			}

	.social-links a {
		margin-left: 4px;
		display: inline-block;
		width: 55px;
		height: 55px;
	}

		.social-links a:first-child {
			margin-left: 0;
		}

		.social-links a img {
			width: 55px;
			height: 55px;
			opacity: 1;
			transition: all .25s;
		}

		.social-links a:hover img {
			opacity: .8;
			transform: scale(.9);
		}

@media only screen and (max-width: 768px) {
	.social-links h2 {
		font-size: 32px;
		font-weight: 500;
	}

	.social-links a,
	.social-links a img {
		width: 45px;
		height: 45px;
	}
}

h1 {
	font-size:2 rem;
	font-weight:700;
}
.heroTitle {
	font-weight:700;
	font-size:30px;
}
.hero-container {
	position:relative;
}
.hero-container img {
	max-width:100%;
	width:100%;
}
.hero-caption {
	width:60%;
	background:rgba(45,45,45,0.5);
	position:absolute;
	top:50px;
	margin:0;
}
.hero-caption p {
	padding:45px 70px;
	font-size:18px;
	line-height:26px;
	color:#fff;
}
.business-unit-section {
	padding-top:20px;
}
.business-unit-section h3 {
	color:#5f7800;
}	
.business-unit p a {
	font-weight:700;
}
a:link, a:visited {
    color: #000051;
    text-decoration: none;
}
a:hover {
	text-decoration:underline;
}
.news-article-container {
	margin-bottom:30px;
}
.news-article-title {
    color:#000051;
}
.social-box {
	padding:10px 20px;
}
.social-box p {
	color:#fff;
	font-weight:700;
}
.social-us {
	background:#5f7800;
}
.social-turf {
	background:#aab400;
}
.social-ppm {
	background:#00a0be;
}
.news-social-icons {
	margin-bottom:20px;
}
.news-social-icons a {
	margin-right:23px;
}
.news-social-icons a img {
	max-height:35px;
}
.publications h3 {
	font-size:22px;
	color:#5f7800;
}
.publications .learnMoreBtn {
	display:block;
	background:#40bad4;
	color:#333;
	padding:15px 0;
}
.publications .learnMoreBtn:hover {
	background-color:#00a0be;
}
.publications .kmgm {
	border:1px solid #d8d2cc;
}

/*Tablet media queries*/
@media only screen and (max-width:768px) {
	.hero-caption p {
		padding:15px;
	}
	.social-box {
		padding:10px;
	}
	.news-social-icons a {
		margin-left:0;
		margin-right:20px;
	}
	.news-social-icons a img {
		max-height:25px;
	}
}

/*Mobile media queries*/	
@media only screen and (max-width:767px) {
	h1 {
		display:none;
	}
	.hero-container {
		position:relative;
		margin:0 -15px;
	}
	.hero-caption {
		width:100%;
		background:rgba(0,0,0,0.6);
		position:absolute;
		bottom:0;
		top:auto;
	}
	.hero-caption p {
		padding:10px 10px;
		margin:0;
		font-size:15px;
		line-height:22px;
	}
	.publications .kmgm {
		border:1px solid;
		margin-top:20px;
	}
}

@media only screen and (max-width:414px) {
	.business-unit {
		padding:0;
	}
	.business-unit img {
		display:none;
	}
	.business-unit p a {
		color:white;
	}
	.business-unit p {
		padding:20px;
		text-align:center;
		height:90px;
		vertical-align:middle;
		margin:0;
	}
	.ag-bu {
		background-color:#5f7800;
	}
	.lg-bu {
		background-color:#aab400;
	}
	.rd-bu {
		background-color:#aab400;
	}
	.corporate-bu {
		background-color:#5f7800;
	}
}

[data-component-name='thrive-feed'] .sec-title h2 {
	margin-bottom: 0 !important;
}

.load-label {
	font-size: 18px;
	font-weight: 700;
	display: inline-block;
}

.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 40px;
}

.lds-ellipsis div {
		position: absolute;
		top: 33px;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: #000;
		animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
		left: 8px;
		animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
		left: 8px;
		animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
		left: 32px;
		animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
		left: 56px;
		animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1);
	}
}

@keyframes lds-ellipsis3 {
	0% {
		transform: scale(1);
	}

	100% {
		transform: scale(0);
	}
}

@keyframes lds-ellipsis2 {
	0% {
		transform: translate(0, 0);
	}

	100% {
		transform: translate(24px, 0);
	}
}