/*
1.	Global
2.	Structure
3.	Typography
4.	Header & Footer
4.1	Header - Narrow
4.2 Header - Wide
4.3 Header - Sticky
4.4	Footer
5.	Buttons
6.	Bubbles
7.	Sustainability
8.	Contact
9.	Team
10.	Catalyst Technologies
11. Carousel
12. Search
13. Newsroom
*/

/*************
 * 1. Global *
 *************/
:root{
	--ecovyst-blue-deep: 0, 73, 107;
	--ecovyst-blue-dark: 1, 116, 154;
	--ecovyst-blue: 41, 171, 226;
    --ecovyst-green: 142, 200, 85;
	--ecovyst-turquoise: 68, 183, 185;
	--ecovyst-grey: 117, 117, 117;
	--ecovyst-font: "Spartan", sans-serif;
	--ecovyst-angle-height: 190px;
}

body{
	font-family: var(--ecovyst-font);
	font-weight: 400;
	font-size: 16px;
	color: rgb(var(--ecovyst-grey));
	line-height: 1.85;
}

html{
    overflow-x: hidden;
	scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

/****************
 * 2. Structure *
 ****************/
.page,
.post{
	margin-bottom: 0;
}

.page-content,
.entry-content,
.entry-summary{
	margin-top: 0;
}

.vc_section{
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
}

.vc_row.vc_row-flex{
	justify-content: center;
	align-items: center;
}

.vc_row,
.vc_row.vc_column-gap-25{
	max-width: 1230px;
	margin: 0 auto;	
}

	.vc_row.vc_row-no-padding{
		max-width: 100%;
	}
	
/* accommodate masthead for anchor links */
div[id].vc_row{
	scroll-margin-top: 270px;
}

div[id].vc_row[data-vc-full-width]{
	overflow: initial; /* WPBakery is dumb, overflow hidden breaks scroll-margin-top in Chrome */
}

.entry-header{
	display: none;
}

.overlay{
	position: relative;
	/* background-image set via grayscale.js */
	background-repeat: no-repeat;
	background-size: cover;
	background-blend-mode: saturation;
}

	.overlay::before{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}

/*****************
 * 3. Typography *
 *****************/
h1{
	font-weight: 200;
	font-size: 50px;
	font-size: clamp(36px, 1em + 3vw, 50px);
	color: rgb(var(--ecovyst-blue-deep));
	line-height: 1.2;
}

	h1::after{
		display: block;
		content: "";
		width: 60px;
		height: 2px;
		margin-top: 1rem;
		background-color: rgb(var(--ecovyst-turquoise));
	}
	
	.vc_section-has-fill :is(h1, h2, h3, h4, p),
	.vc_row-has-fill :is(h1, h2, h3, h4, p),
	.vc_col-has-fill :is(h1, h2, h3, h4, p){
		color: #fff;
	}
	
		.vc_section-has-fill h1::after,
		.vc_row-has-fill h1::after,
		.vc_col-has-fill h1::after{
			background-color: #fff;
		}
	
	h1[style="text-align: center"]::after{
		margin-right: auto;
		margin-left: auto;
	}

	.masthead h1{
		font-weight: 300;
		font-size: 82px;
		font-size: clamp(40px, 1em + 5vw, 82px);
		line-height: 1.25;
		margin-top: .35em;
		margin-bottom: .5em;
	}
	
		.home .masthead h1{
			text-transform: uppercase;
		}
		
		.masthead h1 sup{
			font-size: 25%;
			top: -2.5em;
			left: -.5em;
		}
	
	h1.wght-900{
		font-weight: 900;
		font-size: 80px;
		font-size: clamp(36px, 1em + 5vw, 80px);
		text-transform: uppercase;
	}
	
		.masthead h1::after,
		h1.wght-900::after{
			display: none;
		}

h2{
	font-weight: 300;
	font-size: 40px;
	color: rgb(var(--ecovyst-blue-deep));
}

h3{
	font-weight: 400;
	font-size: 30px;
	color: rgb(var(--ecovyst-blue-deep));
	margin-top: 15px;
	margin-bottom: 15px;
}

h4{
	font-weight: 400;
	font-size: 20px;
	color: rgb(var(--ecovyst-blue-deep));
	margin-bottom: 0;
}

.masthead p,
.coopers p,
body:not(.home) .angled p{
	font-size: 24px;
	font-size: clamp(20px, 1em + 1vw, 24px);
	padding-bottom: 1.5em;
}

h3.vc_custom_heading + h4.vc_custom_heading{
	margin-top: -.5em;
}

h4.vc_custom_heading + .wpb_text_column{
	margin-top: -1em;
}

.wpb_text_column + .vc_btn3-container,
.wpb_text_column + .vc_btn3-container ~ .vc_btn3-container{
	margin-top: -.5em;
}

.wpb_text_column ul,
.wpb_text_column ol{
	margin-left: 0;
	padding-left: 0;
}

	.wpb_text_column ul{
		list-style: none;
	}

		.wpb_text_column ul li{
			position: relative;
			padding-left: 1.5em;
		}

			.wpb_text_column ul li::before{
				content: "";
				width: 14px;
				height: 14px;
				border-radius: 50%;
				display: inline-block;
				background-color: rgb(var(--ecovyst-blue));
				margin-right: 0.5rem;
				position: absolute;
				top: .35em;
				left: 0;
			}
			
	.wpb_text_column ol li{
		margin-left: 1.5em;
	}

@media only screen and (min-width: 768px){
	.wpb_text_column.two-column ul,
	.uavc-list-icon.two-column ul{
		column-count: 2;
		column-gap: 0;
	}
}

strong{
	font-weight: 600;
}

.site-main a{
	color: #177ba6;
	font-weight: 600;
	text-decoration: none;
}

	.site-main a[data-vc-accordion]{
		font-weight: 400;
	}

sup{
	top: -0.25em;
}

.vc_figure .vc_single_image-wrapper{
	width: 100%;
}

	.wpb_single_image.vc_align_left .vc_figure.has-caption .vc_single_image-wrapper{
		width: auto;
	}

/**********************
 * 4. Header & Footer *
 **********************/
.vc_row.chevron-down{
	position: relative;
	top: -30px;
}

	.masthead + .vc_row.chevron-down{
		top: calc(-8vh - 30px);
	}

	.vc_row.chevron-down .vc_icon_element.vc_icon_element-outer.vc_icon_element-align-center{
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		margin-bottom: 0;
	}

		.vc_row.chevron-down .vc_icon_element.vc_icon_element-outer.vc_icon_element-align-center > .vc_icon_element-inner{
			box-shadow: 2px 2px 7px 0px rgba(0, 0, 0, 0.75);
		}

			.vc_row.chevron-down .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner .vc_icon_element-icon::before{
				-webkit-text-stroke: 1px #01749a;
				text-stroke:  1px #01749a;
			}

.site-header > div{
	display: flex;
	align-items: center;
}

@media only screen and (min-width: 768px){
	.site-branding > .custom-logo-link{
		display: flex;
	}

	.site-header > div{
		justify-content: center;
	}
}

/***********************
 * 4.1 Header - Mobile *
 ***********************/
.site-header .site-branding .custom-logo-link{
	position: relative;
	top: 7px;
	left: 2.5%;
}

	.site-header .site-branding .custom-logo{
		width: 189px;
		height: 53px;
		transition: width .3s linear;
	}

.main-navigation li{
	display: flex;
}

	.main-navigation li.menu-item-has-children{
		flex-wrap: wrap;
	}
	
.main-navigation a{
	color: #fff;
	width: 90%;
	padding: 1em 5%;
	border-top: solid 1px #fff;
	background-color: rgb(var(--ecovyst-blue-dark));
	box-sizing: content-box;
}

	.main-navigation li::before{ /* hide FontAwesome icons */
		display: none;
	}

	.main-navigation a.expand{
		display: block;
		position: absolute;
		right: 0;
		width: 5%;
		text-align: center;
		border-left: solid 1px #fff;
	}

	.main-navigation .sub-menu{
		flex-direction: column;
		width: 100%;
		min-width: 200px;
	}

	.main-navigation .sub-menu a{
		width: 80%;
		padding-right: 10%;
		padding-left: 10%;
		background-color: rgb(var(--ecovyst-blue-dark));
	}
	
	.main-navigation #secondary-menu a{
		background-color: rgb(var(--ecovyst-green));
	}
	
.menu-toggle.fas{
	position: absolute;
	top: 0;
	right: 0;
	border-color: #fff;
	background-color: #fff;
	color: rgb(var(--ecovyst-blue-deep));
	width: 70px;
	height: 70px;
	border-radius: 8px;
	font-size: 2rem;
	padding: 0;
	cursor: pointer;
}

	.logged-in .menu-toggle.fas{
		top: 46px;
	}

.vc_section.masthead{
	clip-path: polygon(0 0, 100% 0%, 100% 85%, 50% 100%, 0 85%);
	margin-bottom: 8vh;
}

	.vc_section.masthead::before{
		background-color: rgba(var(--ecovyst-blue-dark), .75 );
		/* animation: kenburns 40s ease; */
		/* don't reset after animation is complete */
		/* animation-fill-mode: forwards; */
	}
	
	.home .vc_section.masthead::before{--ecovyst-blue-dark
		background-image: linear-gradient(135deg, rgba(var(--ecovyst-blue), .5) 0%,rgba(var(--ecovyst-green), .5) 100%);
	}
	
	.vc_section.masthead .vc_column-inner{
		margin-bottom: 5vh;
	}

/* https://codemyui.com/css-ken-burns-effect/ */
@keyframes kenburns{
	0% {
		transform-origin: bottom left;
		transform: scale(1.0);
	}
	100% {
		transform: scale(1.2);
	}
}

/*********************
 * 4.1 Header - Wide *
 *********************/
img.custom-logo{
	aspect-ratio: unset; /* Safari is dumb */
}

@media only screen and (min-width: 768px){
	.site-header{
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 2;
	}
	
		.logged-in .site-header{
			top: 32px;
		}
		
		.site-header .site-branding{
			height: 168px;
			background-color: #fff;
			transition: height .3s linear;
		}

			
			.site-header .site-branding .custom-logo-link{
				top: 0;
			}

				.site-header .site-branding .custom-logo{
					width: 310px;
					height: auto;
				}

	.main-navigation ul ul {
		float: left;
		position: absolute;
		top: 100%;
		left: -999em;
		z-index: 99999;
	}

	.main-navigation ul ul li:hover > ul,
	.main-navigation ul ul li.focus > ul,
	.main-navigation ul ul li:focus-within > ul{
		display: block;
		left: auto;
	}

	.main-navigation ul li:hover > ul,
	.main-navigation ul li.focus > ul,
	.main-navigation ul li:focus-within > ul{
		left: auto;
	}

	.menu-toggle.fas{
		display: none;
	}

	.main-navigation{
		background-color: transparent;
		transition: background-color .3s linear;
	}

	.main-navigation ul {
		display: flex;
	}	
	
	.main-navigation li{
		margin-right: 1em;
		margin-left: 1em;
	}

	.main-navigation a{
		width: auto;
		border-top: none;
		background-color: transparent;
		padding: 0;
		box-sizing: border-box;
		transition: color .3s linear;
	}

	#primary-menu,
	#secondary-menu,
	#tertiary-menu{
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 19px;
	}
	
		#primary-menu{
			border-bottom: solid 1px rgba(255, 255, 255, .5);
		}
		
			#primary-menu a{
				display: flex;
				align-items: center;
				height: 56px;
			}
			
				#primary-menu a.expand,
				#secondary-menu a.expand{
					display: none;
				}
		
		#secondary-menu{
			font-size: 16px;
			height: 48px;
		}
		
			.main-navigation #secondary-menu a{
				background-color: transparent;
			}
		
		#tertiary-menu{
			height: 65px;
		}

	.main-navigation .sub-menu{
		width: auto;
		font-size: 16px;
		border-top: solid 2px rgb(var(--ecovyst-green));
	}
	
		.main-navigation .sub-menu li{
			margin-right: 0;
			margin-left: 0;
		}
		
			.main-navigation .sub-menu a,
			.main-navigation #secondary-menu .sub-menu a{
				display: flex;
				align-items: center;
				width: 100%;
				min-width: 200px;
				height: 50px;
				white-space: nowrap;
				padding-left: 1em;
				padding-right: 1em;
				border-top: solid 1px #fff;
				background-color: rgb(var(--ecovyst-blue-deep));
				transition: background-color .3s linear;
			}
			
				.main-navigation .sub-menu li:first-child a,
				.main-navigation #secondary-menu .sub-menu li:first-child a{
					border-top: none;
				}
			
				.main-navigation .sub-menu a:hover,
				.main-navigation .sub-menu li.current_page_item a,
				.main-navigation #secondary-menu .sub-menu a:hover,
				.main-navigation #secondary-menu li.current_page_item a{
					background-color: rgb(var(--ecovyst-blue-dark));
				}

	.vc_section.masthead{
		margin-top: -104px;
		padding-top: 104px;
	}
	
		.has-tertiary .vc_section.masthead{
			margin-top: -169px; /* primary + secondary + tertiary */
			padding-top: 169px;
		}
	
		.vc_section.masthead .vc_column-inner{
			max-width: 1024px;
			margin: 65px auto 5vh;
		}
		
			.has-tertiary .vc_section.masthead .vc_column-inner{
				margin: 0 auto 5vh;
			}
		
			.home .vc_section.masthead .vc_column-inner{
				margin: 10vh auto 20vh;
			}
}

/***********************
 * 4.3 Header - Sticky *
 ***********************/
@media only screen and (min-width: 768px){
	.site-header.sticky .site-branding{
		height: 65px;
	}

		.site-header.sticky .site-branding .custom-logo{
			width: 200px;
		}
		
	.site-header.sticky .main-navigation{
		background-color: rgb(2, 61, 90);
	}

	.site-header.sticky .main-navigation a:hover,
	.site-header.sticky .main-navigation li.current_page_item > a,
	.site-header.sticky .main-navigation li.current_page_parent > a{
		color: rgb(170, 212, 134);
	}
	
	.site-header.sticky .menu-tertiary-container{
		background-color: rgb(var(--ecovyst-blue-dark));
	}
}

/**************
 * 4.4 Footer *
 **************/
.site-footer .site-branding{
	align-items: center;
	display: flex;
	height: 200px;
	justify-content: center;
}

	.site-footer .site-branding .custom-logo{
		width: 310px;
		height: auto;
	}
	
.site-info{
	background-color: rgb(var(--ecovyst-grey));
	padding-top: 1em;
	padding-bottom: 1em;
}

	.site-info p{
		color: #fff;
		margin-top: 0;
		margin-bottom: 0;
	}

.vc_section.coopers{
	background-image: linear-gradient(to right, rgba(var(--ecovyst-blue), 1) 0%,rgba(var(--ecovyst-green), 1) 100%);
	margin-top: 100px;
}

.vc_section.coopers > .overlay{
	clip-path: polygon(0 0, 100% 0%, 100% 85%, 50% 100%, 0 85%);
}

	.vc_section.coopers > .overlay::before{
		background-color: rgba(var(--ecovyst-turquoise), .85 );
	}
	
		.vc_section.coopers > .vc_row.overlay::before,
		.vc_section.coopers > .vc_row.overlay::after{
			display: block;
		}
	
	.vc_section.coopers .wpb_text_column,
	.vc_section.angled .wpb_text_column{
		max-width: 90%;
		margin: 0 auto;
	}
	
		.vc_section.coopers .wpb_text_column{
			margin-bottom: 16vh;
		}

	.vc_section.coopers .vc_general.vc_cta3{
		padding: 40px 0 20px;
	}
	
		.vc_section.coopers .vc_cta3_content-container{
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
		}
		
			.vc_section.coopers .vc_cta3_content-container h3{
				color: #fff;
			}

			.vc_section.coopers .vc_cta3_content-container h4{
				margin-bottom: 0;
			}

.site-info ul {
    color: #fff;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    list-style: none;
    font-size: 16px;
	text-align: center;
	margin-bottom: 0;
	margin-left: 0;
	padding-left: 0;
}

	.site-info li{
		line-height: 2;
		margin-right: .65em;
		margin-left: .65em;
	}

		.site-info a{
			color: #fff;
			opacity: .85;
			text-decoration: none;
			transition: opacity .3s ease-in-out;
		}
		
			.site-info a:hover{
				opacity: 1;
			}

@media only screen and (min-width: 768px){
	.vc_section.coopers > .overlay{
		background-attachment: fixed;
	}
	
	.vc_section.coopers .vc_custom_heading.wght-900{
		max-width: 1024px;
		margin-right: auto;
		margin-left: auto;
	}
	
	.vc_section.coopers .wpb_text_column,
	.vc_section.angled .wpb_text_column{
		max-width: 930px;
	}

	.vc_section.coopers .vc_cta3_content-container{
		flex-direction: row;
	}
}

@media (prefers-reduced-motion){
	.vc_section.coopers > .vc_row:first-child{
		background-attachment: scroll;
	}
}

/**************
 * 5. Buttons *
 **************/
.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-flat,
.btn-modal.btn-modal-lg{
	font-size: 16px;
	background-color: #fff !important;
	color: rgb(var(--ecovyst-blue-dark)) !important;
	border-style: solid;
	border-width: 2px;
	border-color: rgb(var(--ecovyst-blue-dark)) !important;
	border-radius: 2rem;
	padding: .7rem 3.5rem;
	transition: background-color .3s linear;
}

	.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-flat:hover,
	.btn-modal.btn-modal-lg:hover{
		color: #fff !important;
		background-color: rgb(var(--ecovyst-blue-dark)) !important;
	}
	
.vc_btn3-inline + .vc_btn3-inline{
	display: block;
}

.ult-modal-input-wrapper button.ult-align-left{
	float: none;
}

/**************
 * 6. Bubbles *
 **************/
.vc_row.organic.vc_row-no-padding{
	max-width: 90%;
	left: 0 !important; /* WPBakery is dumb */
}

.bubble{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}

	.bubble1{ background-image: url('../images/bubble_1-soft.svg'); }
	.bubble2{ background-image: url('../images/bubble_2-soft.svg'); }
	.bubble3{ background-image: url('../images/bubble_3-soft.svg'); }
	.bubble4{ background-image: url('../images/bubble_4-soft.svg'); }
	.bubble5{ background-image: url('../images/bubble_5-soft.svg'); }

	.bubble .vc_single_image-wrapper{
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center center;
		-webkit-mask-size: contain;
		mask-repeat: no-repeat;
		mask-position: center center;
		mask-size: contain;
	}

		.bubble1 .vc_single_image-wrapper{
			-webkit-mask-image: url('../images/bubble_1.svg');
			mask-image: url('../images/bubble_1.svg');
		}

		.bubble2 .vc_single_image-wrapper{
			-webkit-mask-image: url('../images/bubble_2.svg');
			mask-image: url('../images/bubble_2.svg');
		}

		.bubble3 .vc_single_image-wrapper{
			-webkit-mask-image: url('../images/bubble_3.svg');
			mask-image: url('../images/bubble_3.svg');
		}
		
		.bubble4 .vc_single_image-wrapper{
			-webkit-mask-image: url('../images/bubble_4.svg');
			mask-image: url('../images/bubble_4.svg');
		}

		.bubble5 .vc_single_image-wrapper{
			-webkit-mask-image: url('../images/bubble_5.svg');
			mask-image: url('../images/bubble_5.svg');
		}
		
		.wpb_single_image.bubble img{
			width: 100%;
		}

@media only screen and (min-width: 768px){
	.organic.organic_text-right > .wpb_column:first-child,
	.organic.organic_text-left > .wpb_column:first-child{
		justify-content: flex-end;
	}

	.organic.organic_text-right > .wpb_column:first-child > .vc_column-inner,
	.organic.organic_text-left > .wpb_column:last-child > .vc_column-inner{
		max-width: 780px;
	}

	.organic.organic_text-right > .wpb_column:last-child > .vc_column-inner,
	.organic.organic_text-left > .wpb_column:first-child > .vc_column-inner{
		max-width: 615px;
	}
	
	.organic.organic_text-right .bubble{
		background-position: center right;
	}

		.organic.organic_text-right .bubble .vc_single_image-wrapper{
			-webkit-mask-position: center right;
			mask-position: center right;
		}
		
	.organic.organic_text-left .bubble{
		background-position: center left;
	}

		.organic.organic_text-left .bubble .vc_single_image-wrapper{
			-webkit-mask-position: center left;
			mask-position: center left;
		}
}

@media only screen and (min-width: 1024px){
	.vc_row.organic.vc_row-no-padding{
		max-width: 100%;
	}
}

/*********************
 * 7. Sustainability *
 *********************/
.vc_section.angled{
	clip-path: polygon(0 var(--ecovyst-angle-height), 100% 0, 100% 100%, 0 100%);
	margin-bottom: 9vh;
	padding-bottom: 65px;
}

	.home .vc_section.angled::before{
		background-color: rgba( var(--ecovyst-green), 0.85 );
	}

	.vc_section.angled::before{
		background-color: rgba(var(--ecovyst-blue-dark), .75 );
	}
	
	@media (prefers-reduced-motion){
		.vc_section.angled{
			background-attachment: scroll;
		}
	}
	
	.vc_section.angled > .vc_row:first-child{
		margin-top: var(--ecovyst-angle-height);
	}

	.vc_section.angled .vc_single_image-img{
		max-width: 80px;
	}
	
	.vc_section.angled .vc_row.vc_row-flex{
		align-items: stretch;
	}
	
		.vc_section.angled .vc_row.vc_row-flex .wpb_wrapper,
		.vc_section.angled .vc_row.vc_row-flex .wpb_wrapper .vc_cta3-container,
		.vc_section.angled .vc_row.vc_row-flex .wpb_wrapper .vc_cta3-container .vc_cta3,
		.vc_section.angled .vc_row.vc_row-flex .wpb_wrapper .vc_cta3-container .vc_cta3 .vc_cta3_content-container{
			display: flex;
			flex-direction: column;
			width: 100%;
			height: 100%;
		}
		
.vc_general.vc_cta3.vc_cta3-style-custom{
	background-color: initial;
	border-color: rgb(0, 0, 0, 0);
	color: #fff;
}

.vc_cta3-align-center .vc_cta3-actions{
	text-align: center;
	margin-top: auto;
	white-space: normal !important;
}

.vc_general.vc_cta3 .vc_cta3-actions

.vc_section.sustainability .vc_row-o-equal-height{
	margin-right: auto;
	margin-left: auto;
}

.vc_section.sustainability .wpb_text_column.arrow-right{
	margin-bottom: .5em;
	padding-top: .5em;
	padding-bottom: .5em;
}

	.vc_section.sustainability .wpb_text_column.arrow-right p{
		color: #fff;
		margin-top: 0;
	}
	
.table-scroller{
	overflow: auto;
}

@media only screen and (min-width: 768px){
	.vc_section.angled{
		background-attachment: fixed;
	}

}

@media only screen and (min-width: 1024px){
	.vc_cta3-align-center .vc_cta3-actions{
		white-space: nowrap !important;
	}
}

/**************
 * 8. Contact *
 **************/
.wpb_column .gform_wrapper.gravity-theme .gfield_label,
.ult_modal-body .gform_wrapper.gravity-theme .gfield_label{
	font-weight: 400;
	margin-bottom: 0;
}

.gform_wrapper .gfield_required{
	font-weight: 700;
	font-size: 16px;
}

.gform_button{
	cursor: pointer;
}

.vc_row .aio-icon.circle{
	height: 42px;
	width: 42px;
	line-height: 42px;
	border: solid 4px rgb(var(--ecovyst-green));
}

.uavc-list-desc > p:first-child{
	margin: 0;
}

.uavc-list-desc h4{
	margin-top: 18px;
	margin-bottom: 0;
}

.uavc-list-desc p{
	margin-top: .5em;
	margin-bottom: 0;
}

.wpb_single_image .vc_figure{
	display: flex;
	align-items: center;
}

	.wpb_single_image .vc_figure > .vc_figure-caption{
		font-size: 16px;
		margin-left: 1em;
	}
	
	.wpb_single_image.vc_align_center .vc_figure{
		justify-content: center;
	}
	
/***********
 * 9. Team *
 ***********/
.modal-style.style-1 figcaption h3{
	color: initial;
}

.modal-style.style-1 figcaption{
	position: relative;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 1;
	color: initial;
	transition: none;
	transform: none;
	background-color: transparent;
}

.modal-style.style-1 .awsm-personal-info,
.awsm-modal-content-inner{
    display: flex;
    flex-direction: column;
}

    .modal-style.style-1 .awsm-personal-info h3{ order: 1; }
    .modal-style.style-1 .awsm-personal-info span{
		line-height: 1.5;
        order: 2;
    }

    .modal-style.style-1 .awsm-modal-details h2{ order: -3; }
    .modal-style.style-1 .awsm-modal-details h3{ order: -2; }
	
/*****************************
 * 10. Catalyst Technologies *
 *****************************/
.vc_row-o-content-middle > .vc_col-sm-3{
	height: 200px;
}

/****************
 * 11. Carousel *
 ****************/
.ult-carousel-wrapper{
	color: rgb(var(--ecovyst-blue-dark));
}

.ult-carousel-wrapper .alignleft{
	float: none;
	margin-bottom: 1.5em;
}

@media only screen and (min-width: 800px){
	.ult-carousel-wrapper .alignleft{
		float: left;
	}
}

/**************
 * 12. Search *
 **************/
input:focus-visible,
input:focus:not(:focus-visible){
	outline: none;
}

.search-results article[id] > .entry-header{
	display: block;
}

.search-results .vc_section.angled,
.error404 .vc_section.angled{
	margin-bottom: 0;
}

a.search_icon{
	cursor: pointer;
}

dialog {
	position: absolute;
	left: 0;
	right: 0;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
	height: -moz-fit-content;
	height: -webkit-fit-content;
	height: fit-content;
	margin: auto;
	border: none;
	display: block;
	padding: 0;
}

dialog:not([open]) {
	display: none;
}

dialog::backdrop{
	background: rgba(0, 0, 0, 0.85);
}

dialog + .backdrop {
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	background: rgba(0, 0, 0, 0.85);
}

._dialog_overlay {
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
}

dialog.fixed {
	position: fixed;
	top: 50%;
	transform: translate(0, -50%);
	background: transparent;
}

.modal-dialog {
	width: auto;
	margin: 0 auto;
}

.modal-content-container{
	position: relative;
	background-clip: padding-box;
}

.modal-header{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

	.modal-header .close{
		background: transparent;
		border: none;
		color: #fff;
		cursor: pointer;
		font-size: 50px;
		font-weight: 400;
		line-height: 1;
		opacity: .85;
		order: 2;
		outline: none;
		padding: 0;
		transition: opacity .3s ease-in-out;
	}

		.modal-header .close:hover{
			opacity: 1;
		}

		.modal-header .close > span{
			display: block;
			margin-top: -3px;
		}

.modal-content{
	position: relative;
	width: 100%;
	color: #666;
	box-sizing: border-box;
}

	.modal-content .search-form{
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		padding: 1.25em 0;
	}

		.modal-content input[type="search"],
		.modal-content input.search-submit{
			border: none;
			border-radius: 2rem;
			font-size: 20px;
			font-weight: 600;
			padding: .5em 1.5em;
		}

			.modal-content input[type="search"]{
				margin-right: 1em;
				min-width: auto;
				-webkit-appearance: none;
			}

			.modal-content input.search-submit{
				background-color: rgb(var(--ecovyst-blue-dark));
				border: solid 2px #fff;
				color: #fff;
				cursor: pointer;
			}
			
/****************
 * 13. Newsroom *
 ****************/
.single .entry-footer > .cat-links,
.single nav.navigation.post-navigation{
	display: none;
}