/*
Theme Name: Divi Child
Theme URI: https://www.elegantthemes.com/gallery/divi/
Description: Divi child theme via FreshySites
Author: FreshySites
Author URI: https://freshysites.com/
Template: Divi
Version: 1.9.0
*/
/* Add your own styles at the bottom */


/********************/

/********************/

/* -- COLORS -- */

.white,
.white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white li, .white a,
h1.white, h2.white, h3.white, h4.white, h5.white, h6.white, li.white, a.white, p.white {
	color: #fff;
}

.black,
.black h1, .black h2, .black h3, .black h4, .black h5, .black h6, .black li, .black a,
h1.black, h2.black, h3.black, h4.black, h5.black, h6.black, li.black, a.black, p.black {
	color: #000;
}

.primary,
.primary h1, .primary h2, .primary  h3, .primary h4, .primary h5, .primary h6, .primary li, .primary a,
h1.primary, h2.primary, h3.primary, h4.primary, h5.primary, h6.primary, li.primary, a.primary, p.primary {
	color: #32a709;
}

.secondary,
.secondary h1, .secondary h2, .secondary h3, .secondary h4, .secondary h5, .secondary h6, .secondary li, .secondary a,
h1.secondary, h2.secondary, h3.secondary, h4.secondary, h5.secondary, h6.secondary, li.secondary, a.secondary, p.secondary {
	color: #daf238;
}

.tertiary,
.tertiary h1, .tertiary h2, .tertiary h3, .tertiary h4, .tertiary h5, .tertiary h6, .tertiary li, .tertiary a,
h1.tertiary, h2.tertiary, h3.tertiary, h4.tertiary, h5.tertiary, h6.tertiary, li.tertiary, a.tertiary, p.tertiary {
	color: #e4debe;
}

/* background colors */
.bg-white, a.bg-white {background-color: #fff;}
.bg-black, a.bg-black {background-color: #000;}
.bg-primary, a.bg-primary {background-color: #32a709;}
.bg-secondary, a.bg-secondary {background-color: #daf238;}
.bg-tertiary, a.bg-tertiary {background-color: #e4debe;}

/* -- END COLORS -- */


/* -- TYPOGRAPHY -- */

.text-lowercase,
.text-lowercase h1, .text-lowercase h2, .text-lowercase h3, .text-lowercase h4, .text-lowercase h5, .text-lower
h6, .text-lowercase li, .text-lowercase a {
	text-transform: lowercase !important;
}

.text-uppercase,
.text-uppercase h1, .text-uppercase h2, .text-uppercase h3, .text-uppercase h4, .text-uppercase h5, .text-uppercase h6, .text-uppercase li, .text-uppercase a {
	text-transform: uppercase !important;
}

.text-capitalize,
.text-capitalize h1, .text-capitalize h2, .text-capitalize h3, .text-capitalize h4, .text-capitalize h5, .text-capitalize h6, .text-capitalize li, .text-capitalize a {
	text-transform: capitalize !important;
}

.text-transform-none,
.text-transform-none h1, .text-transform-none h2, .text-transform-none h3, .text-transform-none h4, .text-transform-none h5, .text-transform-none h6, .text-transform-none li, .text-transform-none a {
	text-transform: none !important;
}

.font-weight-bold,
.font-weight-bold h1, .font-weight-bold h2, .font-weight-bold h3, .font-weight-bold h4, .font-weight-bold h5, .font-weight-bold h6, .font-weight-bold li, .font-weight-bold a {
	font-weight: 700;
}

.font-weight-normal,
.font-weight-normal h1, .font-weight-normal h2, .font-weight-normal h3, .font-weight-normal h4, .font-weight-normal h5, .font-weight-normal h6, .font-weight-normal li, .font-weight-normal a {
	font-weight: 400;
}

.font-italic {font-style: italic;}

.text-underline-none, .text-underline-none a {text-decoration: none !important;}

.text-underline, .text-underline a {text-decoration: underline !important;}

.text-nowrap, .text-nowrap a {white-space: nowrap !important;}

.text-wrap-normal, .text-wrap-normal a {white-space: normal !important;}

/* -- END TYPOGRAPHY -- */


/* -- TEMPLATE -- */



/* -- END TEMPLATE -- */


/* -- HEADER -- */

/* helps logo to not be pixelated when scaled down */
#logo {
	transform: none !important;
}

/* when mobile menu is open, change hamburger icon to x icon */
#et_mobile_nav_menu .mobile_nav.opened .mobile_menu_bar::before {
	content: '\4d';
}

/* makes sub sub menu icon be right arrow instead of down arrow */
#top-menu .menu-item-has-children .menu-item-has-children > a:first-child::after,
#et-secondary-nav .menu-item-has-children .menu-item-has-children > a:first-child::after {
	content: '5';
}

/* if parent link of child menu is a deadlink, then make it not clickable */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children > a[href="#0"] {
	pointer-events: none;
}

/* - mobile menu toggling elements, injected via jQuery - */

/* make menu list item be relative, to be able to position toggle within this item */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children {
	position: relative;
}
/* the new toggle element, which is added via jQuery */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle {
	position: absolute;
	background-color: rgba(0,0,0,0.03);
	z-index: 1;
	width: 36px;
	height: 36px;
	line-height: 36px;
	border-radius: 50%;
	top: 4px;
	right: 4px;
	cursor: pointer;
	text-align: center;
}
/* the new toggle element when popped */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped {
	background-color: rgba(0,0,0,0.1);
}
/* toggle icon */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle::before {
	font-family: "ETmodules" !important;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 36px;
	font-size: 24px;
	text-transform: none;
	speak: none;
	content: '\33';
}
/* toggle icon when triggered */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped::before {
	content: '\32';
}
/* hide sub menus by default */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle ~ ul.sub-menu {
	display: none !important;
	padding-left: 0;
}
/* show sub menu when triggered via jQuery toggle, and add slight bg color */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped ~ ul.sub-menu {
	display: block !important;
	background-color: rgba(0,0,0,0.03);
}
/* remove sub menu list item left padding, since padding will be on anchors */
#main-header #mobile_menu.et_mobile_menu li li {
	padding-left: 0;
}

/* adjust mobile menu anchors side paddings */
#main-header #mobile_menu.et_mobile_menu li a {
	padding-left: 20px;
	padding-right: 20px;
}
/* indent sub menu */
#main-header #mobile_menu.et_mobile_menu li li a {
	padding-left: 40px;
	padding-right: 20px;
}
/* indent sub sub menus further */
#main-header #mobile_menu.et_mobile_menu li li li a {
	padding-left: 60px;
	padding-right: 20px;
}
/* if mobile menu anchor has toggle, make room for it to fit next to the link */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children .sub-menu-toggle + a {
	padding-right: 44px;
}

/* - end mobile menu toggling elements - */

/* undo Divi's default styling of mobile menu links that have children */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children > a {
	background-color: transparent;
	font-weight: inherit;
}

/* make the current page's mobile menu link be different */
#main-header #mobile_menu.et_mobile_menu li.current-menu-item > a {
	font-weight: bolder;
}

/* -- END HEADER -- */


/* -- FOOTER -- */

#freshy_copyright span {
	display: inline-block;
	line-height: 1.5em;
}

/* vertical pipe divider */
#freshy_copyright span.copyright_via {
	width: 33.33333%;
	height: 1px;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 200%;
	background: #343333;
	vertical-align: middle;
	margin: 10px auto 15px;
	display: block;
}

#freshy_copyright a.copyright_fs {
	display: block;
	vertical-align: middle;
	width: 42px;
	height: 20px;
	background-image: url("/wp-content/uploads/fs-lettermark-grey.svg");
	background-repeat: no-repeat;
	background-size: 42px 20px;
	text-indent: 200%;
	white-space: nowrap;
	overflow: hidden;
	margin: 0 auto;
}

/* fix if using Impreza to remove underline */
#freshy_copyright a:hover {
	border: 0 !important;
}

@media (min-width: 600px) {
	/* vertical pipe divider */
	#freshy_copyright span.copyright_via {
		width: 1px;
		height: 20px;
		margin: 0 10px;
		display: inline-block;
	}
	#freshy_copyright a.copyright_fs {
		display: inline-block;
	}
}

@media (max-width: 980px) {
	#footer-bottom .et-social-icons li:first-child {
		margin-left: 0;
	}
}

/* -- END FOOTER -- */


/* -- RESPONSIVE -- */

/* do for mobile */
@media screen and (max-width: 767px) {
	/* hide on mobile */
	.hide-mobile {
		display: none;
	}
}

/* do for desktop */
@media screen and (min-width: 768px) {
	/* hide on desktop */
	.hide-desktop {
		display: none;
	}
}

/* -- END RESPONSIVE -- */


/* -- CHECKLIST -- */

.checklist ul,
.checklist-in-accordion .et_pb_toggle_content ul {
	margin: 0;
	padding: 0 !important;
	list-style: none;
}

.checklist ul li,
.checklist-in-accordion .et_pb_toggle_content ul li {
	position: relative;
	padding-left: 30px;
	margin: 0 0 6px !important;
}

.checklist-columns-2 ul li,
.checklist-columns-3 ul li,
.checklist-columns-4 ul li {
	margin-bottom: 30px !important;
}

@media (max-width: 638px) {
	.checklist-columns-2 ul li,
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		margin-bottom: 20px !important;
	}
	.checklist-columns-2 ul li:last-child,
	.checklist-columns-3 ul li:last-child,
	.checklist-columns-4 ul li:last-child {
		margin-bottom: 0 !important;
	}
}

/* create columns of list items with this class */
@media (min-width: 639px) {
	.checklist-columns-2 ul::after,
	.checklist-columns-3 ul::after,
	.checklist-columns-4 ul::after {
		content: '';
		clear: both;
		display: table;
	}
	.checklist-columns-2 ul li,
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		float: left;
		width: 50%;
		padding-right: 30px;
	}
	.checklist-columns-2 ul li:nth-child(odd),
	.checklist-columns-3 ul li:nth-child(odd),
	.checklist-columns-4 ul li:nth-child(odd){
		clear: both;
	}
	.checklist-columns-2-alt > ul,
	.checklist-columns-3-alt > ul,
	.checklist-columns-4-alt > ul {
		column-count: 2;
		column-gap: 20px;
	}
	.checklist-columns-2-alt ul li,
	.checklist-columns-3-alt ul li,
	.checklist-columns-4-alt ul li {
		break-inside: avoid-column;
	}
}
@media (min-width: 981px) {
	.checklist-columns-3 ul li,
	.checklist-columns-4 ul li {
		float: left;
		width: 33.333333%;
	}
	.checklist-columns-3 ul li:nth-child(odd),
	.checklist-columns-4 ul li:nth-child(odd) {
		clear: none;
	}
	.checklist-columns-3 ul li:nth-child(3n+1),
	.checklist-columns-4 ul li:nth-child(3n+1) {
		clear: both;
	}
	.checklist-columns-3-alt ul,
	.checklist-columns-4-alt ul {
		column-count: 3;
	}
}
@media (min-width: 1199px) {
	.checklist-columns-4 ul li {
		float: left;
		width: 25%;
	}
	.checklist-columns-4 ul li:nth-child(odd) {
		clear: none;
	}
	.checklist-columns-4 ul li:nth-child(3n+1) {
		clear: none;
	}
	.checklist-columns-4 ul li:nth-child(4n+1) {
		clear: both;
	}
	.checklist-columns-4-alt ul {
		column-count: 4;
	}
}

.checklist ul li::before,
.checklist-in-accordion .et_pb_toggle_content ul li::before {
	font-family: 'ETModules';
	content: '\f00c';
	width: 20px;
	margin: 0;
	display: inline-block;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	color: #b4008d;
	/* set font size helps make icon sharper */
	font-size: 20px;
	font-weight: normal;
}
.whitelist ul li::before {
	color:white;
}
.orangelist ul li::before {
	color: #b4008d;
	content: url('/wp-content/uploads/magenta-white-check.png');
}

.pluslist ul li::before {
	content: '\f055';
}
.eventlist ul li::before {
	content: '\f274';
}
.locationlist ul li::before {
	content: '\f041';
}
.externallist ul li::before {
	content: '\f08e';
}
.pdflist ul li::before {
	content: '\f1c1';
}
.doclist ul li::before {
	content: '\f0f6';
}
.userlist ul li::before {
	content: '\f2c0';
}
.videolist ul li::before,
.videolist.checklist-in-accordion .et_pb_toggle_content ul li::before {
	content: '\f16a';
}
/* -- END CHECKLIST -- */


/* -- DIVI HACKS -- */

/* make parallax image be centered at the start */
.et_parallax_bg {
	background-position: center center;
}

/* Divi was turning off bottom padding on last paragraphs, when it should be only if it's the last child */
p:last-of-type,
p:not(.has-background):last-of-type {
	padding-bottom: 1em;
}
p:last-child,
p:not(.has-background):last-child {
	padding-bottom: 0;
}

/* if there are more than one paragraphin the Fullwidth Header module, they should have padding */
.et_pb_fullwidth_header p:not(:last-child) {
	padding-bottom: 1em;
}

/* -- END DIVI HACKS -- */


/* -- PASSWORD PROTECTED -- */

/* set a max width to make it only as wide as most content */
.post-password-required .et_password_protected_form {
	width: 80%;
	margin: 10% auto;
	max-width: 1140px;
}

/* give the input a border */
.post-password-required .et_password_protected_form p input {
	border: 1px solid !important;
}

/* remove the arrow on hover of the submit button */
.post-password-required .et_password_protected_form .et_submit_button::after {
	display: none;
}

/* -- END PASSWORD PROTECTED -- */


/* -- TESTIMONIALS PLUGIN -- */

/* flip quote so it's an opening quote icon for grid and slider versions */
.b3_archive_testimonials_grid article .b3_quote.grid_quote::before,
.et_pb_module.et_pb_testimonial_slider .et_pb_slides_testi::before {
	transform: scale(-1,-1);
}

/* -- END TESTIMONIALS PLUGIN -- */


/* -- GRAVITY FORMS -- */

/* we swap out form ajax spinner via PHP Function, and add spinning if its PNG */
img.gform_ajax_spinner[src$=".png"] {
	animation: lime-spin 1.5s linear infinite;
	padding: 0;
	margin-left: 10px;
}
@keyframes lime-spin { 100% { transform:rotate(360deg); } }

/* confirmation (success) message */
.gform_confirmation_wrapper .gform_confirmation_message {
	font-size: 1.2rem;
	line-height: 1.5em;
	padding: 2rem;
	background: rgba(90, 90, 90, 0.1);
	text-align: center;
}

/* -- END GRAVITY FORMS -- */


/* -- HELPERS -- */

/* use the "fullwidth-section" class on a SECTION to make a "standard" SECTION truly be fullwidth
(NOTE: the SECTION needs THIS class) */
.fullwidth-section.et_pb_section {
	padding: 0;
}
.fullwidth-section.et_pb_section > .et_pb_row {
	width: 100% !important;
	max-width: 100% !important;
	padding: 0;
}

/* use the "fullwidth-row" class on a SECTION to make a "full width" ROW truly be fullwidth
(NOTE: the ROW module settings needs to be Gutter Width 1, and the SECTION needs THIS class,
and unlike the class above, THIS class will auto-add padding to the columns) */
.fullwidth-row.et_pb_section {
	padding: 0;
}
.fullwidth-row.et_pb_section .et_pb_row {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}
/* helps add padding to each column */
.fullwidth-row.et_pb_section .et_pb_row > .et_pb_column {
	padding: 50px 10%;
}
@media (min-width: 767px) {
	.fullwidth-row.et_pb_section .et_pb_row > .et_pb_column {
		padding: 80px 6%;
	}
}
/* for some reason Divi removes bottom margin from modules if in column with no gutters,
so we need to add margins back */
.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column .et_pb_module:not(:last-child) {
	margin-bottom: 30px;
}
@media (min-width: 981px) {
	.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column_2_3 .et_pb_module:not(:last-child) {
		margin-bottom: 4.242%;
	}
	.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column_1_3 .et_pb_module:not(:last-child) {
		margin-bottom: 9.27%;
	}
}
/* reduce gap between toggles if in fullwidth row */
.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column .et_pb_module.et_pb_toggle:not(:last-child) {
	margin-bottom: 3px;
}

@media (max-width: 980px) {
	/* use the "stacked-flex" class on a ROW to make it be flexbox when stacked, to help with adjusting order of stacked columns */
	.stacked-flex {
		display: flex;
		flex-wrap: wrap;
	}
	/* add the desired class to COLUMNS to designate their order when stacked within a "stacked-flex" ROW */
	.stacked-order-negative-4 {
		order: -4;
	}
	.stacked-order-negative-3 {
		order: -3;
	}
	.stacked-order-negative-2 {
		order: -2;
	}
	.stacked-order-negative-1 {
		order: -1;
	}
	.stacked-order-1 {
		order: 1;
	}
	.stacked-order-2 {
		order: 2;
	}
	.stacked-order-3 {
		order: 3;
	}
	.stacked-order-4 {
		order: 4;
	}
	/* adds margin to former "last" column that otherwise wouldn't have it */
	.stacked-flex:last-child .et_pb_column:last-child {
		margin-bottom: 30px;
	}
}

/* -- END HELPERS -- */

/* -- BLOG -- */

/* sidebar recent posts */
.et_pb_widget.widget_recent_entries ul li  {
	margin-bottom: 1em;
}

/* sidebar recent posts dates */
.et_pb_widget.widget_recent_entries ul li span.post-date {
	display: table;
	font-size: 0.85em;
}

/* -- END BLOG -- */


/* ------------------- BEGIN DESIGNER CSS -------------------- */

/* --- FONTS --- */
body {
	font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
	font-weight: 400!important;
    font-style: normal;
}
.regular, p, nav.woocommerce-breadcrumb a, .singe-product bdi, li {
	font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
	font-weight: 400!important;
	font-style: normal;
}
.reg-italic {
	font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
	font-weight: 400!important;
	font-style: italic;
}
.medium, ul#mega-menu-primary-menu a{
	font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
	font-weight: 500!important;
	font-style: normal;
}
.med-italic {
	font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
	font-weight: 500!important;
	font-style: italic;
}
.bold, h1, h2, h3, h4, h5, .bold p, .arrow-bold a.et_pb_button, a.et_pb_button.et_pb_pricing_table_button, .heading2-text p {
	font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
	font-weight: 700!important;
	font-style: normal;
}
.bold-italic {
	font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
	font-weight: 700!important;
	font-style: italic;
}

.small-p p {
	font-size: 14px !important;
}

/*font sizes*/
h1{
	font-size:70px!important;
}
h2, .small-h1 h1, .product-h1 h1, .inner-h3 h3, .heading2-text p {
	font-size:46px!important;
}
.heading2-text p {
	line-height:1em;
}
.header h2, .small-header h1 {
    font-size: 58px!important;
	line-height: 0.6em;
}
.large-h2 h2 {
    font-size: 84px!important;
}
.cta h2 {
    font-size: 38px!important;
}
h3, .small-h2 h2 {
    font-size: 32px!important;
}
.small-h3 h3 {
	font-size: 32px!important;
}
h4, h4 a, .blurb-h3 h3, .blurb-h2 h2 {
	font-size:28px!important;
}
h5.et_pb_toggle_title {
    font-size: 36px!important;
}
p, .et_pb_text_inner, .et_pb_blurb_description, .contact-blurb h4.et_pb_module_header, li {
	font-size:16px!important;
	line-height: 28px;
}
.p-large, .p-large p {
	font-size: 22px!important;
}
.med-blurb h4 {
	font-size: 22px!important;
	line-height:32px!important;
}
.header p, .header-tiny h2 {
		font-size:24px!important;
		font-weight: 400!important;
	}
a.mec-color-hover, .home-post h2 {
	font-size: 26px!important;
}

/*quote carousel*/
.quote-carousel .content, .quote-carousel .content p {
    font-size: 26px!important;
    font-style: italic;
}
.quote-carousel span.info {
    font-size: 18px;
    line-height: 1em;
    font-weight: bold;
}
/*large button font*/
a.large-button {
    font-size: 28px;
}
/*blurb header*/
h4.et_pb_module_header {
    font-size: 36px;
}

@media (min-width: 1481px) and (max-width: 1899px) {
	h2, .small-h1 h1, .product-h1 h1, .inner-h3 h3, .inner-h3 h3, .heading2-text p{
    	font-size: 42px!important;
	}	
}

@media only screen and (max-width : 1480px) and (min-width: 1260px) {
	h1 {
    	font-size: 70px!important;
	}
	h2, .small-h1 h1, .product-h1 h1, .inner-h3 h3, .heading2-text p {
    	font-size: 38px!important;
	}
	.header h2, .small-header h1 {
    	font-size: 58px!important;
	}
	.large-h2 h2 {
    	font-size: 69px!important;
	}
	.cta h2 {
    	font-size: 33px!important;
	}
	h3, .small-h2 h2 {
    	font-size: 36px!important;
	}
	.small-h3 h3 {
		font-size: 28px!important;
	}
	h4, h4 a, .blurb-h3 h3, .blurb-h2 h2 {
		font-size:24px!important;
	}
	h5.et_pb_toggle_title {
    	font-size: 30px!important;
	}
	h2.et_pb_pricing_title {
		font-size:24px;
	}
	p, .et_pb_text_inner, .et_pb_blurb_description, .contact-blurb h4.et_pb_module_header, li {
		font-size:18px!important;
	}
	.p-large {
		font-size: 20px!important;
	}
	.med-blurb h4 {
		font-size: 20px!important;
		line-height:26px!important;
	}
	.header p, .header-tiny h2 {
		font-size:22px!important;
	}
	/*quote carousel*/
	.quote-carousel .content {
    	font-size: 24px!important;
	}
	.quote-carousel span.info {
    	font-size: 16px;
	}
	a.large-button {
    	font-size: 29px;
	}
	a.mec-color-hover, .home-post h2 {
		font-size: 24px!important;
	}
	/*blurb header*/
	h4.et_pb_module_header {
    	font-size: 32px;
	}
}

@media (min-width: 981px) and (max-width: 1259px) {
	h2, .small-h1 h1, .product-h1 h1, .inner-h3 h3, .heading2-text p {
    	font-size: 32px!important;
	}
}

@media (min-width: 768px) and (max-width: 980px) {
	h2, .small-h1 h1, .product-h1 h1, .inner-h3 h3, .heading2-text p {
    	font-size: 38px!important;
	}
}

@media only screen and (max-width : 1259px) and (min-width: 768px) {
	h1 {
    	font-size: 62px!important;
	}
	.product-title .et_pb_text_inner h2,
	.product-title .et_pb_text_inner h1 {
    	font-size: 52px!important;
	}
	.header h2, .small-header h1 {
    	font-size: 48px!important;
	}
	.large-h2 h2 {
    	font-size: 55px!important;
	}
	.cta h2 {
    	font-size: 25px!important;
	}
	h3, .small-h2 h2 {
    	font-size: 30px!important;
	}
	.small-h3 h3 {
		font-size: 28px!important;
	}
	h4, h4 a, .blurb-h3 h3, .blurb-h2 h2 {
		font-size:26px!important;
	}
	h5.et_pb_toggle_title {
    	font-size: 28px!important;
	}
	h2.et_pb_pricing_title {
		font-size:22px;
	}
	p, .et_pb_text_inner, .et_pb_blurb_description, .contact-blurb h4.et_pb_module_header, li {
		font-size:18px!important;
	}
	.p-large {
		font-size: 20px!important;
	}
	.med-blurb h4 {
		font-size: 20px!important;
		line-height:24px!important;
	}
	.header p, .header-tiny h2 {
		font-size:20px!important;
	}
	/*quote carousel*/
	.quote-carousel .content {
    	font-size: 22px!important;
	}
	.quote-carousel span.info {
    	font-size: 16px;
	}
	a.large-button {
    	font-size: 21px;
	}
	a.mec-color-hover, .home-post h2 {
		font-size: 22px!important;
	}
	/*blurb header*/
	h4.et_pb_module_header {
    	font-size: 30px;
	}
}
@media only screen and (max-width : 767px) {
	h1 {
    	font-size: 46px!important;
	}
	h2, .small-h1 h1, .product-h1 h1, .inner-h3 h3, .heading2-text p {
    	font-size: 30px!important;
	}
	.header h2, .small-header h1 {
    	font-size: 38px!important;
		line-height: 1em;
	}
	.large-h2 h2 {
    	font-size: 59px!important;
	}
	.cta h2 {
    	font-size: 29px!important;
	}
	h3, .small-h2 h2 {
    	font-size: 28px!important;
	}
	.small-h3 h3 {
		font-size: 26px!important;
	}
	h4, h4 a, .blurb-h3 h3, .blurb-h2 h2 {
		font-size:22px!important;
	}
	h5.et_pb_toggle_title {
    	font-size: 28px!important;
	}
	h2.et_pb_pricing_title {
		font-size:20px;
	}
	p, .et_pb_text_inner, .et_pb_blurb_description, .contact-blurb h4.et_pb_module_header, li {
		font-size:16px!important;
	}
	.p-large {
		font-size: 18px!important;
	}
	.med-blurb h4 {
		font-size: 18px!important;
		line-height:22px!important;
	}
	.header p, .header-tiny h2 {
		font-size:20px!important;
	}
	/*quote carousel*/
	.quote-carousel .content {
    	font-size: 20px!important;
	}
	.quote-carousel span.info {
    	font-size: 15px;
	}
	a.large-button {
    	font-size: 27px;
	}
	a.mec-color-hover, .home-post h2 {
		font-size: 20px!important;
	}
	/*blurb header*/
	h4.et_pb_module_header, .blurb-h3 h3, .blurb-h2 h2 {
    	font-size: 26px;
	}
}
.bold-text h4 a {
	font-weight:bold!important
}
/* --- GENERAL SITE EDITS.  --- */

/*Vertically align content*/
  @media only screen and (min-width : 981px) {
    .ds-vertical-align {
        display: flex;
        flex-direction: row;
        align-items: center;
	  }
	  .vert-align {
		  margin:auto;
	  }
}

/* --- BUTTONS --- */
.title-button {
    width: 95%;
	max-width:200px;
	text-align: center;
}
a.arrow-button:hover::after{
	padding-left:10px;
}

/* menu */
.fwidget {
	margin-bottom:0px!important;
}
.wpml-ls-legacy-dropdown .wpml-ls-flag {
    float: right;
	margin-top: -7px;
}
a.js-wpml-ls-item-toggle.wpml-ls-item-toggle {
    border: 0px;
	margin-top: 10px;
	padding-bottom: 20px;
}
.wpml-ls-legacy-dropdown .wpml-ls-flag+span {
    float: right;
    padding-right: 10px;
}
.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
    top: calc(50% - 0.2em);
}
.portal-blurb span.et_pb_image_wrap {
    margin-top: 7px!important;
    margin-left: 30px!important;
    position: absolute;
}
.portal-blurb p {
	font-size:15px!important;
}
a.js-wpml-ls-item-toggle.wpml-ls-item-toggle:hover, li.wpml-ls-slot-sidebar-2.wpml-ls-item.wpml-ls-item-en.wpml-ls-current-language.wpml-ls-first-item.wpml-ls-last-item.wpml-ls-item-legacy-dropdown:hover {
	background:white;
	border-bottom:0px solid white;
}

#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
	left: auto;
}

@media (min-width: 1410px) and (max-width: 1532px) {
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {
		padding: 0 7px 0 7px;
	}

	.et_pb_fullwidth_menu--style-left_aligned .et_pb_menu__logo,
	.et_pb_menu--style-left_aligned .et_pb_menu__logo {
		margin-right: 15px;
	}
}

@media (min-width: 1381px) and (max-width: 1409px) {
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {
		padding: 0 5px 0 5px;
		font-size: 17px;
	}

	.et_pb_fullwidth_menu--style-left_aligned .et_pb_menu__logo,
	.et_pb_menu--style-left_aligned .et_pb_menu__logo {
		margin-right: 0;
	}

	.et_pb_fullwidth_menu--style-left_aligned .et_pb_menu__logo-wrap,
	.et_pb_menu--style-left_aligned .et_pb_menu__logo-wrap {
		width: 30%;
	}
}


@media (min-width: 1195px) and (max-width: 1380px) {
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {
		padding: 0 5px 0 5px;
		font-size: 16px !important;
	}

	.et_pb_fullwidth_menu--style-left_aligned .et_pb_menu__logo,
	.et_pb_menu--style-left_aligned .et_pb_menu__logo {
		margin-right: 15px;
	}

	.et_pb_fullwidth_menu--style-left_aligned .et_pb_menu__logo-wrap,
	.et_pb_menu--style-left_aligned .et_pb_menu__logo-wrap {
		width: 25%;
	}
}


@media (min-width: 1130px) and (max-width: 1194px) {
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {
		padding: 0 5px 0 5px;
		font-size: 15px !important;
	}

	.et_pb_fullwidth_menu--style-left_aligned .et_pb_menu__logo,
	.et_pb_menu--style-left_aligned .et_pb_menu__logo {
		margin-right: 0;
	}

	.et_pb_fullwidth_menu--style-left_aligned .et_pb_menu__logo-wrap,
	.et_pb_menu--style-left_aligned .et_pb_menu__logo-wrap {
		width: 30%;
	}
}

@media (min-width: 981px) and (max-width: 1129px) {
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {
		padding: 0 4px 0 4px;
		font-size: 15px !important;
	}

	.et_pb_fullwidth_menu--style-left_aligned .et_pb_menu__logo,
	.et_pb_menu--style-left_aligned .et_pb_menu__logo {
		margin-right: 0;
	}

	.et_pb_fullwidth_menu--style-left_aligned .et_pb_menu__logo-wrap,
	.et_pb_menu--style-left_aligned .et_pb_menu__logo-wrap {
		width: 24%;
	}

	body #page-container .et_pb_section .et_pb_button_module_wrapper .title-button.et_pb_button_0_tb_header,
	body #page-container .et_pb_section .et_pb_button_module_wrapper .title-button.et_pb_button_0_tb_header:hover {
		padding: 0.3em 0.2em !important;
	}

	.et_pb_section .et_pb_row .et_pb_column.head-col {
		width: 17%;
	}
}

@media only screen and (min-width : 1382px) {
.head-col {
		width:18% !important;
	}
.menu-col {
		width:70%!important;
	}
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu {
    	padding-top: 10px;
	}
}
@media only screen and (min-width : 1260px) and (max-width: 1381px) {
	a.mega-menu-link {
    	font-size: 16px!important;
	}
	a.title-button {
    	font-size: 16px!important;
	}
	.et_pb_menu__logo-wrap {
    	width: 27%;
	}
}
@media only screen and (min-width : 981px) and (max-width: 1261px) {
	a.mega-menu-link {
    	font-size: 15px!important;
		padding-right: 4px!important;
	}
	a.title-button {
    	font-size: 15px!important;
	}
	.et_pb_menu__logo {
    	margin-right: 20px!important;
	}
	.et_pb_menu__logo-wrap {
    	width: 20%;
	}
	.menu-col {
		width:65%!important;
	}
}
@media (min-width: 981px) {
	.mobile-only {
		display:none!important;
	}
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu {
    	max-width: 220px;
    	padding: 10px 10px 10px 10px;
	}
}
@media (max-width: 980px) {
	.port-col {
		width:50%!important;
	}
	.portal-blurb .et_pb_blurb_container {
    	padding-top: 5px!important;
	}
	.et_pb_fullwidth_menu .et_pb_menu__menu, .et_pb_menu .et_pb_menu__menu {
    	display: block;
	}
	.et_mobile_nav_menu {
		display:none!important;
	}
	li#mega-menu-item-302,
	li#mega-menu-item-5504 {
    	background-image: url('/wp-content/uploads/magenta-button-long.png')!important;
    	background-repeat: no-repeat!important;
    	margin-left: auto!important;
    	margin-bottom: 10px!important;
    	margin-right: auto!important;
    	margin-top: 25px!important;
    	background-position-x: center!important;
	}
	li#mega-menu-item-303,
	li#mega-menu-item-5505 {
    	background-image: url('/wp-content/uploads/magenta-button-long.png')!important;
    	background-repeat: no-repeat!important;
    	margin-left: auto!important;
    	margin-bottom: 10px!important;
    	margin-right: auto!important;
    	margin-top: 25px!important;
    	background-position-x: center!important;
	}
	li#mega-menu-item-302 a, li#mega-menu-item-303 a, li#mega-menu-item-5504 a, li#mega-menu-item-5505 a {
		color: white!important;
    	font-weight: bold!important;
	}
	li#mega-menu-item-303  a.mega-menu-link {
    	padding: 5px 0px 43px 0px!important;
	}
	li#mega-menu-item-5505  a.mega-menu-link {
    	padding: 5px 0px 43px 80px!important;
	}
	li#mega-menu-item-302 a.mega-menu-link {
    	padding: 5px 0px 43px 0px!important;
	}
	
	li#mega-menu-item-5504  a.mega-menu-link {
    	padding: 5px 15px 43px 23px!important;
	}
	#mega-menu-wrap-primary-menu .mega-menu-toggle + #mega-menu-primary-menu {
		margin-top: 15px;
		z-index:99999999999999999999999;
	}
	.et_builder_inner_content.has_et_pb_sticky {
    	z-index: 0;
	}
}
/*hide dropdown arrows*/
#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	display:none!important;
}

/* global-row-menu */
.et-db #et-boc .et-l .global-row-menu .et_pb_fullwidth_menu .et_pb_menu__menu,
.et-db #et-boc .et-l .global-row-menu .et_pb_menu .et_pb_menu__menu {
	display: block;
}


/* online documentation link */
@media (min-width: 981px) {
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item#mega-menu-item-9604 a.mega-menu-link {
		line-height: 25px;
	}	
}

/* --- FOOTER--- */

span.copyright_text, .footer p, .footer .et_pb_text_inner {
    font-size: 14px!important;
}
.column {
  float: left;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (min-width: 981px) {
	.foot-2 {
		width:25%!important;
	}
	.foot-3 {
		width:15%!important;
	}
}
/* --- HOME PAGE --- */

/*risk logos stack*/
@media only screen and (max-width : 1330px) and (min-width: 981px) {
	.home-logo-row {
		display:block!important;
	}
	.home-logo-row .et_pb_column {
		width:100%!important;
	}
}

@media (min-width: 981px) and (max-width: 997px) {
	body.home .homepage-first-section .et_pb_row {
		padding-left: 485px !important;
	}
}

/* home video 
@media (min-width: 1560px) {
	.background-video .et_pb_section_video_bg .mejs-video {
		left: 96%;
	}
}

@media (min-width: 1265px) and (max-width: 1559px) {
	.background-video .et_pb_section_video_bg .mejs-video {
		left: 85%;
	}
}

@media (min-width: 981px) and (max-width: 1264px) {
	.background-video .et_pb_section_video_bg .mejs-video {
		left: 100%;
	}
}
*/


/*carousel*/

.quote-carousel.dica_divi_carousel .swiper-pagination-bullet {
    border: 1px solid white;
}
.quote-carousel.dica_divi_carousel .swiper-pagination-bullet-active {
    border: 1px solid #b4008d;
}

/*events list*/
/*hide-icons*/
i.mec-sl-calendar:before, i.mec-sl-map-marker:before {
	display:none!important;
}
.mec-event-list-classic .mec-event-date span, .mec-event-loc-place {
    font-weight: 500;
    margin-bottom: 0px;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif!important;
    color: #212221;
    font-size: 15px;
}
a.mec-color-hover {
    font-weight: bold;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif!important;
    text-transform: none;
    color: #003a5d !important;
}
h4.mec-event-title {
    margin-top: 0px!important;
    margin-bottom: 0px!important;
    padding-bottom: 5px;
}
.mec-event-list-classic .mec-event-image {
    width: 25%;
}
/*move image left on posts*/
	/*.home-post.et_pb_posts .et_pb_post img,
	.home-post.et_pb_posts .et_overlay {
		width: 25%;
    	height: auto !important;
		margin-right: 4%;
		float: left;
	}
	.home-post.et_pb_posts .entry-title,
	.home-post.et_pb_posts .post-meta,
	.home-post.et_pb_posts .post-content {
	    float: right;
	    width: 71%;
	}
	body.rtl .home-post.et_pb_posts .et_pb_post img,
	body.rtl .home-post.et_pb_posts .et_overlay {
		float: right;
		margin-left: 4%;
		margin-right: 0;
	}
	body.rtl .home-post.et_pb_posts .entry-title,
	body.rtl .home-post.et_pb_posts .post-meta,
	body.rtl .home-post.et_pb_posts .post-content {
	    float: left;
	}*/


.home-post span.published {
    font-size: 15px;
}
.home-post p.post-meta {
    padding-bottom: 10px!important;
    margin-bottom: 0px!important;
}
.home-post .et_pb_post {
    margin-bottom: 40px;
}
/* industries */
.industry-home-row .et_pb_text h3 {
	font-size: 20px !important;
}

@media (min-width: 981px) and (max-width: 1275px) {
	.industry-home-row .et_pb_text h3 {
		font-size: 15px !important;
	}

	.industry-home-row .et_pb_code svg.enlivenem {
		width: 90px;
	}
}

@media (min-width: 768px) and (max-width: 980px) {
	.industry-home-row .et_pb_column {
		width: 33.33%;
	}
}

.industry-home-row.second {
	justify-content: center;
}

.industry-home-row.second .et_pb_column_empty {
	width: 0 !important;
}

/* events section */
.events-blurb .et_pb_image_wrap,
.home-events .mec-event-list-classic .mec-event-article .mec-event-image {
	width: 140px;
}

.events-blurb .et_pb_blurb_container {
	vertical-align: middle;
}

.home-events .mec-event-list-classic .mec-event-article {
	margin-bottom: 10px;
	padding: 0;
}

@media  (max-width: 767px) {
	.events-news-row .home-post.et_pb_posts .et_pb_post img, 
	.events-news-row .home-post.et_pb_posts .et_overlay,
	.events-news-row .home-post.et_pb_posts .entry-title, 
	.events-news-row .home-post.et_pb_posts .post-meta, 
	.events-news-row .home-post.et_pb_posts .post-content {
		width: 100%;
	}
	
	.mec-event-list-classic .mec-event-image {
		float: none;
	}
	
	.events-blurb .et_pb_image_wrap {
		margin-left: 0;
	}
}

/* --- CONTACT PAGE --- */

/*gravity form button*/
input#gform_submit_button_1, 
input#gform_submit_button_2,
body .gravity-theme form .gform_footer input.gform_button {
    border-width: 0px!important;
    border-radius: 50px;
    font-size: 18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    background-image: url('/wp-content/uploads/magenta-button.png');
    color: white;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
    font-weight: 700!important;
    font-style: normal;
    width: 220px;
	margin-right: 6px;
}

input#gform_submit_button_1:hover, 
input#gform_submit_button_2:hover,
body .gravity-theme form .gform_footer input.gform_button:hover,
body .gform_wrapper .gform_footer input.button:hover {
    transform: scaleX(1.05) scaleY(1.05)!important;
	color: white !important;
}
/*address container*/
.gform_wrapper.gravity-theme .ginput_container_address span {
    flex: 0 0 100%!important;
}
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), body .gform_wrapper textarea.textarea, body div.form_saved_message div.form_saved_message_emailform form input[type=text], body .gform_wrapper select {
    background-color: white;
    border: 1px solid #003a5d;
    border-radius: 34px;
}


/* --- PRODUCT PAGES --- */
.single-product li::marker {
	color: transparent;
}
.single-product button.single_add_to_cart_button.button.alt.disabled.wc-variation-selection-needed, button.single_add_to_cart_button.button.alt {
    border-width: 0px!important;
    border-radius: 50px;
    font-size: 18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    background-image: url('/wp-content/uploads/magenta-button.png');
    width: 220px;
    color: white!important;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
    font-weight: 700!important;
    font-style: normal;
}
.single-product button.single_add_to_cart_button.button.alt.disabled.wc-variation-selection-needed:hover, button.single_add_to_cart_button.button.alt:hover {
    border-width: 0px!important;
    border-radius: 50px;
    font-size: 18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    background-image: url('/wp-content/uploads/magenta-button.png');
    width: 220px;
    color: white!important;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
    font-weight: 700!important;
    font-style: normal;
}
.amount bdi {
    color: #b4008d !important;
}

.variations select#edition, .variations select#years{
	background-color: white;
    border: 1px solid #003a5d;
    border-radius: 34px;
	    border-width: 1px!important;
}


/* --- Pricing tables--- */
@media only screen and (min-width : 912px) {
	.et_pb_column_1_2 .et_pb_pricing_table, .et_pb_column_2_3 .et_pb_pricing_table, .et_pb_column_3_5 .et_pb_pricing_table, .et_pb_pricing_2 .et_pb_pricing_table {
    	width: 50%;
    	max-width: 49%!important;
	}
		a.et_pb_button.et_pb_pricing_table_button {
		width: 220px;
	}
}
@media (max-width: 911px) {
	.et_pb_column .et_pb_pricing_table {
    	max-width: 100%!important;
	}
	.et_pb_column .et_pb_pricing_table:nth-child(odd) {
    	margin-bottom: 30px;
	}
	a.et_pb_button.et_pb_pricing_table_button {
    	width: 80%;
    	border-radius: 34px;
		max-width:220px;
	}
}
.et_pb_pricing_table.et_pb_pricing_table_0, .et_pb_pricing_table.et_pb_pricing_table_2, .et_pb_pricing_table.et_pb_pricing_table_4 {
    margin-right: 10px;
}
.et_pb_pricing_table {
	margin: 0px -1px 0 0;
}
.et_pb_pricing_table_wrap {
    align-items: normal;
}

.table-price .et_pb_pricing li {
    font-size: 15px!important;
    line-height: 18px!important;
}

/*Change Bullets*/

.prices li:before {
		 content: url('/wp-content/uploads/teal-check.png');
}

.et_pb_pricing_tables_0 .et_pb_featured_table .et_pb_pricing_heading, .et_pb_pricing_heading {
    background-color: transparent;
    z-index: 9;
}
/*.et_pb_pricing_tables_0 .et_pb_featured_table .et_pb_pricing_content_top, .et_pb_pricing_table.et_pb_pricing_table_2.et_pb_featured_table .et_pb_pricing_content_top, .et_pb_pricing_table.et_pb_pricing_table_4.et_pb_featured_table .et_pb_pricing_content_top {
    background-image: url(/wp-content/uploads/ind-background.jpg);
    padding-top: 75px;
    background-repeat: no-repeat;
    margin-top: -80px;
	background-size: cover;
}*/
.et_pb_pricing_tables_0 .et_pb_featured_table .et_pb_pricing_content_top, .et_pb_pricing_table.et_pb_pricing_table_2.et_pb_featured_table .et_pb_pricing_content_top, .et_pb_pricing_table.et_pb_pricing_table_4.et_pb_featured_table .et_pb_pricing_content_top {
   background-image: url('/wp-content/uploads/ind-background-teal.jpg');
    padding-top: 60px;
    background-repeat: no-repeat;
    margin-top: -170px;
    background-size: cover;
}

/*.et_pb_pricing_content_top {
    background-image: url(/wp-content/uploads/pro-background.jpg);
    padding-top: 75px;
    background-repeat: no-repeat;
    margin-top: -80px;
	background-size: cover;
}*/
.et_pb_pricing_content_top {
    background-image: url('/wp-content/uploads/pro-background-teal.jpg');
    padding-top: 60px;
    background-repeat: no-repeat;
    margin-top: -170px;
	background-size: cover;
}
.et_pb_pricing_heading {
    margin-top: 90px;
}



.table-price h2.et_pb_pricing_title:before {
	content:url('/wp-content/uploads/most-popular.png');
	display:content;
}

/* buy now buttons */ 
body #page-container .et_pb_section .table-price .et_pb_pricing_table_button.et_pb_button {
	color: #FFFFFF!important;
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    background-image: url(/wp-content/uploads/teal-button.png);
	padding-right: 1em !important;
	transition: 0.3s all ease-in-out;
}

body #page-container .et_pb_section .table-price .et_pb_pricing_table_button.et_pb_button:hover {
	transform: scaleX(1.05) scaleY(1.05)!important;
}

body #page-container .et_pb_section .table-price .et_pb_pricing_content_top {
	padding-bottom: 140px;
}

.n2-ss-slider .et_pb_button_wrapper {
	position: absolute;
	top: 165px;
	left: 0;
	right: 0;
	margin: auto;
	margin-bottom: 30px;
}

/* most popular image */
@media (min-width: 1260px) and (max-width: 1460px) {
	.n2-ss-layer .most-pop-img .n2-ss-item-image {
		top: -6px;
    	position: relative;
	}
}

@media (min-width: 1200px) and (max-width: 1259px) {
	.n2-ss-layer .most-pop-img .n2-ss-item-image {
		top: -2px;
    	position: relative;
	}
}


/*--- FEATURES PAGE --- */

/*tablepress tables*/
.tablepress td.column-3, .tablepress td.column-4 {
    text-align: center;
    vertical-align: middle;
}
.tablepress tr.row-1.odd {
    background-image: url('/wp-content/uploads/curve-teal-bg');
    background-position: bottom;
    background-size: cover;
}
.tablepress tfoot th, .tablepress thead th {
    background-color: transparent!important;
	color: #212221;
}

 blockquote {
    border-color: #b4008d !important;
}


.dataTables_wrapper table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
.dataTables_wrapper table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
	background-color: #003a5d;
}

/* --- MEGA MENU --- */
ul.mega-sub-menu p, ul.mega-sub-menu a {
    color: #343333;
}
ul.mega-sub-menu a:hover {
    color: #b4008d !important;
}

@media (min-width: 981px) {
	li#mega-menu-item-text-2,
	li#mega-menu-item-text-14,
	li#mega-menu-item-text-16,
	li#mega-menu-item-text-18,
	li#mega-menu-item-text-20,
	html[lang="es-ES"] li#mega-menu-item-text-8,
	li#mega-menu-item-text-22,
	li#mega-menu-item-text-23,
	li#mega-menu-item-text-24,
	li#mega-menu-item-text-25{
    	background: #dcedf8 !important;
	}
	ul.mega-sub-menu {
    	background-color: white!important;
		box-shadow:0px 0px 20px 0px rgb(0 0 0 / 60%)!important;
	}
	
	#mega-menu-item-6243 > ul.mega-sub-menu, #mega-menu-item-7625 > ul.mega-sub-menu {
		width: 800px !important;
		height: 450px;
	}
	
	li#mega-menu-item-text-2 p a,
	li#mega-menu-item-text-3 p a,
	li#mega-menu-item-text-4 p,
	li#mega-menu-item-text-14 p,
	li#mega-menu-item-text-14 p a,
	li#mega-menu-item-text-16 p,
	li#mega-menu-item-text-16 p a,
	li#mega-menu-item-text-18 p,
	li#mega-menu-item-text-18 p a,
	li#mega-menu-item-text-20 p,
	li#mega-menu-item-text-20 p a,
	html[lang="es-ES"] li#mega-menu-item-text-8 p a,
	html[lang="es-ES"] li#mega-menu-item-text-8 p,
	html[lang="es-ES"] li#mega-menu-item-text-10 p a,
	html[lang="es-ES"] li#mega-menu-item-text-12 p,
	html[lang="es-ES"] li#mega-menu-item-text-20 p a,
	html[lang="es-ES"] li#mega-menu-item-text-20 p,
	li#mega-menu-item-text-22 p,
	li#mega-menu-item-text-23 p,
	li#mega-menu-item-text-24 p,
	li#mega-menu-item-text-25 p{
    	margin-bottom: 0px!important;
    	font-weight: bold!important;
    	color: #003a5d;
	}

	ul.mega-sub-menu .textwidget strong {
		color: #003a5d;
	}
	
/* spacing */
	ul.mega-sub-menu li.mega-menu-item .textwidget p {
		line-height: 22px;
	}
	
	ul.mega-sub-menu li.mega-menu-item .textwidget p a {
		margin-bottom: 10px;
    	display: inline-block;
	}
	
	/* resources menu */
	#mega-menu-primary-menu li#mega-menu-item-7625 ul.mega-sub-menu li.mega-menu-row ul.mega-sub-menu li.mega-menu-column ul.mega-sub-menu li.mega-menu-item a {
		white-space: nowrap;
	}
}
/*resource menu*/
@media only screen and (min-width: 981px) and (max-width: 1222px) {
	#mega-menu-item-7625 > ul.mega-sub-menu {
		width: 640px !important;
	}
	
}
/*product menu*/
@media only screen and (min-width: 981px) and (max-width: 1050px) {
	#mega-menu-item-6243 > ul.mega-sub-menu {
    	width: 740px!important;
	}
}

li#mega-menu-item-text-2 p,
li#mega-menu-item-text-3 p,
li#mega-menu-item-text-4 p {
    margin-bottom: 0px!important;
    font-weight: bold!important;
    color: #003a5d;
}
ul.mega-sub-menu {
    background-color: white!important;
}
ul.mega-sub-menu .textwidget strong, .medium, ul#mega-menu-primary-menu strong a{
	color: #003a5d;
	font-weight:bold!important;
}

@media (min-width: 981px) {
	/*center blurb content*/
	.blurb-align .et_pb_main_blurb_image {
		margin-bottom: 0px!important;
	}
	.blurb-align .et_pb_blurb_container {
    	padding-left: 175px!important;
	}
	.blurb-align .et_pb_blurb_content {
    	max-width: 761px;
    	display: flex;
    	align-items: center;
    	justify-content: center;
	}
}

/*products page make products into one column*/
@media (max-width: 980px) {
	.full-col .et_pb_column {
		width:100%!important;
		margin-right:0px!important;
	}
}

/*risk product header*/
.product-header .et_pb_blurb_description {
    margin-top: 34px;
}
@media only screen and (max-width : 1460px) and (min-width: 981px) {
	.product-header .et_pb_blurb_description {
    	margin-top: 41px;
	}
}
@media only screen and (max-width : 980px) {
	.product-header .et_pb_blurb_description {
    	margin-top: 1px;
	}
}

/* hide the below due to it creating other problems - discovered on Risk product page */
/*hide horizontal scroll
div#page-container {
    overflow-x: hidden;
}*/


/*remove blurb image fade in on products*/
.et_pb_animation_top.et-animated {
    -webkit-animation: none;
    animation: none;
	opacity: 1 !important;
	transition:none!important;
}


/*sticky resources on product pages*/
.resources h5.et_pb_toggle_title {
    padding: 10px;
}

.resources .et_pb_toggle .et_pb_toggle_content br {
	display: none;
}

.resources .et_pb_toggle .et_pb_toggle_content p {
	padding-bottom: 15px;
}

.resources-blurb.updates {
	padding-top: 10px!important;
    padding-right: 15px!important;
    padding-left: 15px!important;
}

/*menu button change*/
header .free-button {
    display: block !important;
}

header .et_pb_sticky--top .free-button {
    display: block !important;
	float: right;
}
header .et_pb_sticky--top .demo-button {
    display: none !important;
}



@media only screen and (min-width : 981px) {
/*product pages button size on features*/
	.space-button .et_pb_button_module_wrapper{
		max-width:721px!important;
		margin-left: auto;
	}
}

@media only screen and (max-width : 1177px) and (min-width: 981px) {
	.product-img {
		padding-top:20%!important;
	}
}


/*company number counters*/
.numbers span.percent-value {
    font-size: 70px!important;
    font-weight: 700!important;
}
.numbers h3 {
    font-size: 24px!important;
}

@media only screen and (max-width : 767px) {
	.numbers span.percent-value {
    	font-size: 63px!important;
	}
}

/*history*/
.no-margin .et-pb-column{
	margin-bottom:0px;
}

/* -- Product Pages -- */
/* header */
@media (min-width: 768px) and (max-width: 980px) {
	.et_builder_inner_content div.et_section_specialty.custom-specialty-header {
		background-position: 30% 0%;
	}
}

@media (min-width: 1441px) and (max-width: 1664px) {
	.et_builder_inner_content div.et_section_specialty.custom-specialty-header {
		background-position: 41% 0%;
	}
}

@media (min-width: 1180px) and (max-width: 1440px) {
	.et_builder_inner_content div.et_section_specialty.custom-specialty-header {
		background-position: 46% 0%;
	}
}

@media (min-width: 981px) and (max-width: 1179px) {
	.et_builder_inner_content div.et_section_specialty.custom-specialty-header {
		background-position: 44% 0%;
	}
}

.at-risk-header-row .col-1.et_pb_column {
	width: 26% !important;
}

.at-risk-header-row .col-2 {
	margin: auto 0;
	width: 74% !important;
}

.popup-svg-icon .et_pb_image_wrap img{
	width: 100px;
}

.bar-animation svg.enlivenem {
	height: 530px;
}

.bar-animation {
	position: relative;
    left: 200px;
}

/* risk product animation */
@media (max-width: 479px) {
	.bar-animation.risk {
		left: 0;
		top: -16px;
	}
}

/* StatTools animation */
.bar-animation.stat-tools svg.enlivenem {
	height: 445px;
}

.bar-animation.stat-tools {
    left: 300px;
}

@media (min-width: 1385px) and (max-width: 1679px) {
	.bar-animation.stat-tools svg.enlivenem {
		height: 365px;
	}
}

@media (max-width: 1440px) {
	.bar-animation.stat-tools {
		left: 200px;
	}
}

@media (min-width: 1230px) and (max-width: 1384px) {
	.bar-animation.stat-tools svg.enlivenem {
		height: 365px !important;
	}
}


@media (min-width: 981px) and (max-width: 1229px) {
	.bar-animation.stat-tools svg.enlivenem {
		height: 350px !important;
	}
}

@media (min-width: 768px) and (max-width: 980px) {
	.bar-animation.stat-tools svg.enlivenem {
		height: 290px !important;
	}

	.bar-animation.stat-tools {
		left: 300px;
	}
}

@media (min-width: 480px) and (max-width: 767px) {
	.bar-animation.stat-tools svg.enlivenem {
		height: 240px !important;
	}

	.bar-animation.stat-tools {
		left: 390px !important;
		top: -203px !important;
	}
}

@media (max-width: 479px) {
	.bar-animation.stat-tools svg.enlivenem {
		height: 220px !important;
	}

	.bar-animation.stat-tools {
		left: 390px !important;
		top: -203px !important;
	}
	.bar-animation.stat-tools.evolver-ani {
    	left: 20px!important;
    	top: 7px!important;
	}
}
/* RiskOptimizer animation */
.bar-animation.risk-optimizer svg.enlivenem {
	height: 445px;
}

.bar-animation.risk-optimizer {
    left: 300px;
}

@media (min-width: 1385px) and (max-width: 1679px) {
	.bar-animation.risk-optimizer svg.enlivenem {
		height: 365px;
	}
}

@media (max-width: 1440px) {
	.bar-animation.risk-optimizer {
		left: 200px;
	}
}

@media (min-width: 1230px) and (max-width: 1384px) {
	.bar-animation.risk-optimizer svg.enlivenem {
		height: 365px !important;
	}
}


@media (min-width: 981px) and (max-width: 1229px) {
	.bar-animation.risk-optimizer svg.enlivenem {
		height: 350px !important;
	}
}

@media (min-width: 768px) and (max-width: 980px) {
	.bar-animation.risk-optimizer svg.enlivenem {
		height: 290px !important;
	}

	.bar-animation.risk-optimizer {
		left: 300px;
	}
}

@media (min-width: 480px) and (max-width: 767px) {
	.bar-animation.risk-optimizer svg.enlivenem {
		height: 240px !important;
	}

	.bar-animation.risk-optimizer {
		left: 390px !important;
		top: -203px !important;
	}
}

@media (max-width: 479px) {
	.bar-animation.risk-optimizer svg.enlivenem {
		height: 220px !important;
	}

	.bar-animation.risk-optimizer {
		left: 390px !important;
		top: -203px !important;
	}
}


/* TopRank animation */
.bar-animation.top-rank svg.enlivenem {
	height: 445px;
}

.bar-animation.top-rank {
    left: 300px;
}

@media (min-width: 1385px) and (max-width: 1679px) {
	.bar-animation.top-rank svg.enlivenem {
		height: 365px;
	}
}

@media (max-width: 1440px) {
	.bar-animation.top-rank {
		left: 200px;
	}
}

@media (min-width: 1230px) and (max-width: 1384px) {
	.bar-animation.top-rank svg.enlivenem {
		height: 365px !important;
	}
}


@media (min-width: 981px) and (max-width: 1229px) {
	.bar-animation.top-rank svg.enlivenem {
		height: 350px !important;
	}
}

@media (min-width: 768px) and (max-width: 980px) {
	.bar-animation.top-rank svg.enlivenem {
		height: 290px !important;
	}

	.bar-animation.top-rank {
		left: 300px;
	}
}

@media (min-width: 480px) and (max-width: 767px) {
	.bar-animation.top-rank svg.enlivenem {
		height: 240px !important;
	}

	.bar-animation.top-rank {
		left: 390px !important;
		top: -203px !important;
	}
}

@media (max-width: 479px) {
	.bar-animation.top-rank svg.enlivenem {
		height: 220px !important;
	}

	.bar-animation.top-rank {
		left: 390px !important;
		top: -203px !important;
	}
}

@media (min-width: 1900px) {
	.product-title .et_pb_text_inner h2 {
		font-size: 72px !important;
	}
}
@media (min-width: 1640px) and (max-width: 1899px) {
	.precisiontree-text .et_pb_text_inner h1, 
	.product-title .et_pb_text_inner h2,
	.regular-page-title h1, .blurb-title h1 {
		font-size: 62px !important;
	}
}

@media (min-width: 1385px) and (max-width: 1639px) {
	.precisiontree-text .et_pb_text_inner h1, 
	.product-title .et_pb_text_inner h2,
	.regular-page-title h1, .blurb-title h1  {
		font-size: 54px !important;
	}
}

@media (min-width: 1130px) and (max-width: 1384px) {
	.precisiontree-text .et_pb_text_inner h1, 
	.product-title .et_pb_text_inner h2,
	.regular-page-title h1, .blurb-title h1  {
		font-size: 48px !important;
	}

	.h2-banner h2, .product-h1 h1 {
		font-size: 38px !important;
	}

	.precision-tree-header .bar-animation svg.enlivenem {
		height: 450px;
	}
}

@media (min-width: 981px) and (max-width: 1129px) {
	.precisiontree-text .et_pb_text_inner h1, 
	.product-title .et_pb_text_inner h2,
	.regular-page-title h1, .blurb-title h1  {
		font-size: 41px !important;
	}

	.h2-banner h2, .product-h1 h1 {
		font-size: 32px !important;
	}

	.precision-tree-header .bar-animation svg.enlivenem {
		height: 400px;
	}
}

@media (min-width: 480px) and (max-width: 767px) {
	.risk-brand-text .et_pb_text_inner h1,
	.precisiontree-text .et_pb_text_inner h1, 
	.product-title .et_pb_text_inner h2,
	.regular-page-title h1, .blurb-title h1 {
		font-size: 48px !important;
	}

	.bar-animation svg.enlivenem {
		height: 265px;
	}

	.bar-animation {
    	top: -190px;
    	left: 325px;
	}
}

@media (min-width: 480px) and (max-width: 767px) {
		.precision-tree-header .bar-animation svg.enlivenem {
		height: 255px;
	}

	.precision-tree-header .bar-animation {
		top: -165px;
    	left: 360px;
	}
}


@media (max-width: 479px) {
	.risk-brand-text .et_pb_text_inner h1 {
		font-size: 50px !important;
	}

	.precisiontree-text .et_pb_text_inner h1, 
	.product-title .et_pb_text_inner h2,
	.regular-page-title h1, .blurb-title h1 {
		font-size: 33px !important;
	}

	.bar-animation svg.enlivenem {
		height: 265px;
	}

	.bar-animation {
    	position: initial;
	}

	.custom-specialty-header .et_pb_row .animation-col {
		height: 180px;
	}

	.precision-tree-header .bar-animation svg.enlivenem {
		height: 255px;
	}

	.precision-tree-header .bar-animation {
		top: -165px;
    	left: 360px;
	}
}

@media (min-width: 768px) and (max-width: 980px) {
	.bar-animation svg.enlivenem {
		height: 335px;
	}

	.bar-animation {
    	left: 315px;
	}

	.et_builder_inner_content div.et_section_specialty.custom-specialty-header.precision-tree-header {
		background-position: 30% 0%;
	}
	
	.regular-page-title h1, .blurb-title h1 {
		font-size: 52px !important;
	}
}

@media (min-width: 2335px) {
	.bar-animation {
		height: 460px !important;
	}
}

@media (min-width: 1680px) and (max-width: 1780px) {
	.bar-animation {
		height: 460px !important;
    	position: relative;
    	left: 200px;
	}
}

@media (min-width: 1441px) and (max-width: 1679px) {
	.bar-animation {
		height: 345px !important;
    	position: relative;
    	left: 200px;
	}

	.bar-animation svg.enlivenem {
		height: 520px;
	}

	.bar-animation.decision-tools svg.enlivenem {
		height: 410px;
	}

	.bar-animation.decision-tools {
		left: 300px;
	}
}

@media (min-width: 1230px) and (max-width: 1440px) {
	.bar-animation {
		height: 350px !important;
    	position: relative;
    	left: 100px;
	}

	.bar-animation svg.enlivenem {
		height: 520px;
	}

	.bar-animation.decision-tools svg.enlivenem {
		height: 405px;
	}

	.bar-animation.decision-tools {
		left: 200px;
	}
}

@media (min-width: 1050px) and (max-width: 1229px) {
	.bar-animation {
		height: 330px !important;
    	position: relative;
    	left: 60px;
	}

	.bar-animation.decision-tools svg.enlivenem {
		height: 405px;
	}

	.bar-animation.decision-tools {
		left: 200px;
	}
}


@media (min-width: 981px) and (max-width: 1049px) {
	.bar-animation {
		height: 320px !important;
    	position: relative;
    	left: 50px;
	}

	.bar-animation svg.enlivenem {
		height: 430px;
	}

	.h2-banner .et_pb_text_inner h2 {
		font-size: 30px !important;
	}

	body .custom-specialty-header .et_pb_button_module_wrapper .et_pb_button.arrow-button {
		padding-right: 1em !important;
	}

	.bar-animation.decision-tools svg.enlivenem {
		height: 405px;
	}

	.bar-animation.decision-tools {
		left: 200px;
	}
}

@media (min-width: 1441px) and (max-width: 1545px) {
	.at-risk-row .col-2 {
		padding-left: 65px;
	}
}

/* testimonials */
.testimonial-content {
	box-shadow: 0px 0px 20px 3px rgb(0 0 0 / 5%);
    border: 0px solid #fff;
}

.quote-name {
	border-left: 2px solid #b4008d;
	text-align: left;
	padding-left: 20px;
}

.quote-name h2 {
	font-size: 23px !important;
}

.quote-large p {
	font-size: 17px !important;
}

@media (max-width: 700px) {
	.logo-column {
		width: 25% !important;
	}

	.quote-column {
		width: 75% !important;
	}

	.logo-column .n2-ss-layer-col {
		justify-content: start !important;
	}
}

/* overview */
.overview-list .et_pb_blurb_content .et_pb_main_blurb_image {
	margin-bottom: 0px;
}

@media (min-width: 1195px) and (max-width: 1765px) {
	.overview-list .et_pb_blurb {
		height: 145px !important;
	}
}

@media (min-width: 981px) and (max-width: 1194px) {
	.overview-list .et_pb_blurb {
		height: 175px !important;
	}
}

/* resources accordion */
.resources h2.et_pb_toggle_title {
	font-size: 23px !important;
    padding: 15px;
}

.resources.et_pb_accordion .et_pb_toggle_title:before,
.resources .et_pb_toggle .et_pb_toggle_title:before {
	right: 15px;
}

.resources .et_pb_toggle {
	padding: 0;
}

.resources .et_pb_toggle_content {
	padding-top: 0;
}

.resources-blurb h3 {
	font-size: 18px !important;
	padding-top: 5px;
}

@media (max-width: 980px) {
	.resources-row.et_pb_sticky--top {
		top: 0 !important;
	}
}

/* features */
@media (max-width: 980px) {
	#features.et_pb_section .stacked-flex .stacked-order-2,
	#features.et_pb_section .et_pb_row .et_pb_column {
		margin-bottom: 0 !important;
	}
}


/* sections with center headings with the arrow above it */
@media (min-width: 981px) and (max-width: 1280px) {
	.section-under-centered-arrow {
		padding-top: 6% !important;
	}
}

/* industries */
.industry-row .et_pb_text h3 {
	font-size: 23px !important;
}
@media (min-width: 480px) and (max-width: 767px) {
	.et_pb_row.industry-row {
		display: block;
	}

	.industry-row .et_pb_column {
		width: 50%!important;
    	height: 238px;
    	margin-right: 0%!important;
    	margin-bottom: 0px!important;
	}
	.industry-row .et_pb_text h3 {
		font-size: 16px !important;
	}
}
@media (min-width: 981px) and (max-width: 1320px) {
	.et_pb_row.industry-row {
		display: block;
	}

	.industry-row .et_pb_column {
		width: 31.3%!important;
    	height: 238px;
		margin-right: 2%!important;
	}
	.industry-row .et_pb_text h3 {
		font-size: 16px !important;
	}
}

@media (min-width: 1321px) and (max-width: 1650px) {
	.industry-row .et_pb_text h3 {
		font-size: 16px !important;
	}

	.industry-row .et_pb_column .et_pb_code {
		width: 75px !important;
	}
}

@media (min-width: 1651px) and (max-width: 1755px) {
	.industry-row .et_pb_text h3 {
		font-size: 21px !important;
	}

	.industry-row .et_pb_column .et_pb_code {
		width: 100px !important;
	}
}


/* benefits */
.benefits-row .et_pb_blurb .et_pb_image_wrap img {
	width: 65px;
}

/* Divi Vertical Tabs 2 */
.vertical-tabs2 {
	border: none;
}
.vertical-tabs2 ul.et_pb_tabs_controls {
	float: left;
	width: 45%;
	margin-right: 3%;
	background: transparent;
}
.vertical-tabs2 .et_pb_all_tabs {
	float: left;
    width: 52%;
}
.vertical-tabs2 ul.et_pb_tabs_controls:after {
	content: none;
}
.vertical-tabs2 .et_pb_tabs_controls li {
	width: 87%;
	border-right: none;
	border-bottom: 2px solid #fff !important;
	background: #EEEEEE;
}
.vertical-tabs2 .et_pb_tabs_controls li.et_pb_tab_active{
	width:100%;
}
.vertical-tabs2 .et_pb_tabs_controls li.et_pb_tab_active:before {
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	content:"";
	background: url('/wp-content/uploads/active-tab-magenta.png');
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center right;
	animation: animatedBackground 1s linear both;
    -moz-animation: animatedBackground 1s linear both;
    -webkit-animation: animatedBackground 1s linear both;
    -ms-animation: animatedBackground 1s linear both;
    -o-animation: animatedBackground 1s linear both;
	z-index:-1;
}

.vertical-tabs2 .et_pb_tabs_controls li a {
	padding: 15px 45px;
}
.vertical-tabs2 .et_pb_tabs_controls li.et_pb_tab_active a {
	color: #ffffff !important;
}
.vertical-tabs2 .et_pb_tab {
	padding: 0;
}
.vertical-tabs2 .et_pb_tab_content {
	display: flex;
	flex-wrap: wrap;
}


@media(min-width:981px) {
	.vertical-tabs2 .et_pb_tabs_controls li {
		display:flex;
		align-items:center;
		min-height:110px;
	}
}
@media(max-width:1570px) {
	.vertical-tabs2 .et_pb_tabs_controls li a {
		padding: 15px 60px;
		font-size:20px !important;
	}
}
@media(max-width:1328px) {
	.vertical-tabs2 .et_pb_tabs_controls li a {
		padding: 15px 40px;
		font-size:18px !important;
	}
}
@media only screen and (max-width: 1286px){
	.vertical-tabs2 .et_pb_tab_content h2 {
    	font-size: 30px !important;
	}
	.subtitle {
    	font-size: 18px !important;
	}
}
@media(max-width:1100px) {
	.vertical-tabs2 .et_pb_tabs_controls li {
		width: 74%;
	}
	.vertical-tabs2 ul.et_pb_tabs_controls {
		width: 44%;
	}
}

@media(max-width:980px) {
	.vertical-tabs2 ul.et_pb_tabs_controls {
		width: 100%;
		margin-bottom: 30px;
		margin-right: 0;
	}
	.vertical-tabs2 .et_pb_tabs_controls li {
		display:flex;
		align-items:center;
		min-height:86px;
	}
	.vertical-tabs2 .et_pb_tab {
		padding: 0;
	}
	.vertical-tabs2 .et_pb_tab_content {
		display: block;
	}
}
@media only screen and (max-width:481px){
	.vertical-tabs2 .et_pb_tabs_controls li {
		min-height:66px;
		font-size:16px !important;
	}
	.vertical-tabs2 .et_pb_tabs_controls li a {
		padding: 5px 20px;
		font-size: 16px !important;
	}
}
/*-- tabs version  mobile and Custom toggle --*/
/* ----- Icon ----- */
/*Icon Animation*/
.mobile-tabs .custom-toggle.et_pb_toggle_open .et_pb_toggle_title:before {
	-ms-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
/*Closed Icon*/
.mobile-tabs .custom-toggle .et_pb_toggle_title:before,
.custom-toggle-row .custom-toggle .et_pb_toggle_title:before {
	content: '\f067';
	width: 30px;
	height: 30px;
	text-align: center;
	font-size: 25px;
	line-height: 30px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	right:25px;
}

/*Open Icon*/
.mobile-tabs .custom-toggle .et_pb_toggle_open .et_pb_toggle_title:before,
.custom-toggle-row .custom-toggle .et_pb_toggle_open .et_pb_toggle_title:before {
	content: '\f068'!important;
	line-height: 40px;
	color: #066A73;
	display:none !important;
}
/* ----- Open ----- */
.mobile-tabs .custom-toggle {
	-webkit-transition: 0.7s;
	transition: 0.7s;
}
.mobile-tabs .custom-toggle .et_pb_toggle_open, .mobile-tabs .custom-toggle .et_pb_toggle_close  {
    min-height: 100%;
	padding: 0;
}

.mobile-tabs .custom-toggle .et_pb_toggle_title{
	padding: 25px 80px 25px 25px !important;
}
.mobile-tabs .custom-toggle .et_pb_toggle_open .et_pb_toggle_title:after{
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	top: 0;
    left: 0;
	content:"";
	background: url('/wp-content/uploads/active-tab-magenta.png');
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center right;
	animation: animatedBackground 1s linear both;
    -moz-animation: animatedBackground 1s linear both;
    -webkit-animation: animatedBackground 1s linear both;
    -ms-animation: animatedBackground 1s linear both;
    -o-animation: animatedBackground 1s linear both;
	z-index:-1;
}

/*-- animation for active tabs and toggles --*/
@keyframes animatedBackground {
     0% {
     transform: translateX(-30%);
		 background-position:center right;
   }
   100% {
	   transform: translateX(0);
	   background-position:center right;
	}
}
@-moz-keyframes animatedBackground {
    0% {
     transform: translateX(-30%);
		background-position:center right;
   }
   100% {
	   transform: translateX(0);
	   background-position:center right;
	}
}
@-webkit-keyframes animatedBackground {
  0% {
     transform: translateX(-34%);
	  background-position:center right;
   }
   100% {
	   transform: translateX(0);
	   background-position:center right;
	}
}

@-o-keyframes animatedBackground {
    0% {
     transform: translateX(-34%);
		background-position:center right;
   }
   100% {
	   transform: translateX(0);
	   background-position:center right;
	}
}

/* ----- two column accordions ----- */
.custom-toggle.columns .et_pb_toggle_content {
	padding: 20px;
}

/*-- tabs version  mobile and Custom toggle --*/
/* ----- Icon ----- */
/*Icon Animation*/
.mobile-tabs .columns.custom-toggle.et_pb_toggle_open .et_pb_toggle_title:before {
	-ms-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
/*Closed Icon*/
.mobile-tabs .columns.custom-toggle .et_pb_toggle_title:before {
	content: '\f067';
	width: 30px;
	height: 30px;
	text-align: center;
	font-size: 25px;
	line-height: 30px;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	right:25px;
}

/*Open Icon*/
.mobile-tabs .columns.custom-toggle .et_pb_toggle_open .et_pb_toggle_title:before {
	content: '\f068'!important;
	line-height: 40px;
	color: #066A73;
	display:none !important;
}
/* ----- Open ----- */
.mobile-tabs .columns.custom-toggle {
	-webkit-transition: 0.7s;
	transition: 0.7s;
}
.mobile-tabs .columns.custom-toggle .et_pb_toggle_open, .mobile-tabs .custom-toggle .et_pb_toggle_close  {
  min-height: 100%;
	padding: 0;
}

.mobile-tabs .columns.custom-toggle .et_pb_toggle_title{
	padding: 15px 80px 25px 25px !important;
}
.mobile-tabs .columns.custom-toggle .et_pb_toggle_open .et_pb_toggle_title:after{
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	top: 0;
    left: 0;
	content:"";
	background: url('/wp-content/uploads/active-tab-magenta-bottom.png');
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	animation: animatedBackgroundtop 0.0s linear both;
    -moz-animation: animatedBackgroundtop 0.0s linear both;
    -webkit-animation: animatedBackgroundtop 0.0s linear both;
    -ms-animation: animatedBackgroundtop 0.0s linear both;
    -o-animation: animatedBackgroundtop 0.0s linear both;
	z-index:-1;
}

.mobile-tabs .columns.custom-toggle .et_pb_toggle_close .et_pb_toggle_title {
	background: url('/wp-content/uploads/active-tab-magenta-bottom.png');
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	color: white !important;
}

.mobile-tabs .columns.custom-toggle .et_pb_toggle_title::before {
	color: white !important;
}

/*-- animation for active tabs and toggles --*/
@keyframes animatedBackgroundtop {
     0% {
     transform: translateY(-30%);
		 background-position:center;
   }
   100% {
	   transform: translateY(0);
	   background-position:center;
	}
}
@-moz-keyframes animatedBackgroundtop {
    0% {
     transform: translateY(-30%);
		background-position:center;
   }
   100% {
	   transform: translateY(0);
	   background-position:center;
	}
}
@-webkit-keyframes animatedBackgroundtop {
  0% {
     transform: translateY(-34%);
	  background-position:center;
   }
   100% {
	   transform: translateY(0);
	   background-position:center;
	}
}

@-o-keyframes animatedBackgroundtop {
    0% {
     transform: translateY(-34%);
		background-position:center;
   }
   100% {
	   transform: translateY(0);
	   background-position:center;
	}
}

/* floating image */
@media (min-width: 981px) and (max-width: 1100px) {
	.custom-tab-row .dipl_floating_image .dipl_floating_images_wrapper {
		height: 170px;
	}
}

@media (min-width: 480px) and (max-width: 600px) {
	.custom-tab-row .dipl_floating_image .dipl_floating_images_wrapper {
		height: 170px;
	}
}


@media (min-width: 371px) and (max-width: 479px) {
	.custom-tab-row .dipl_floating_image .dipl_floating_images_wrapper {
		height: 130px;
	}
}

@media (max-width: 370px) {
	.custom-tab-row .dipl_floating_image .dipl_floating_images_wrapper {
		height: 90px;
	}
}


	.custom-tab-row .dipl_floating_image .dipl_floating_images_wrapper .dipl_floating_image_item img {
		box-shadow: 0px 12px 18px -6px rgb(0 0 0 / 30%);
	}

	.custom-tab-row .dipl_floating_image .dipl_floating_images_wrapper .dipl_floating_image_item {
		box-shadow: none;
	}

/* -- General -- */
@media (min-width: 981px) and (max-width: 1280px) {
	.first-section-below-arrow {
		padding-top: 6% !important;
	}

	.blurb-products .et_pb_blurb h4.et_pb_module_header {
		font-size: 18px !important;
	}

	.blurb-products .et_pb_blurb .et_pb_blurb_content .et_pb_image_wrap {
		width: 75px;
	}
}


@media (min-width: 981px) {
	.vertically-aligned {
		margin: auto;
	}
}

/* -- Resources -- */
.resources-row-1 .et_pb_column {
	margin-right: 2.3% !important;
}

.resources-row-1 .et_pb_column .et_pb_main_blurb_image,
.resources-row-2 .et_pb_column .et_pb_main_blurb_image {
	margin-bottom: 15px;
}

@media (min-width: 981px) and (max-width: 1144px) {
	.resources-row-1 .et_pb_column h4.et_pb_module_header,
	.resources-row-2 .et_pb_column h4.et_pb_module_header {
		font-size: 19px !important;
	}
}

/* -- Divi FilterGrid -- */
.dp-dfg-pagination .pagination a,
.dp-dfg-skin-default .dp-dfg-filter a,
.et-l .dp-dfg-pagination .pagination a.pagination-link,
.et-l .dp-dfg-skin-default .dp-dfg-filter a.dp-dfg-filter-link {
	border: none !important;
	background-color: transparent !important;
}

.hover-card article {
	transition: transform 300ms ease 0ms,background-color 300ms ease 0ms;
}

.hover-card:hover article {
	transform: scaleX(1.05) scaleY(1.05)!important;
}

.hover-list article {
	transition: transform 300ms ease 0ms,background-color 300ms ease 0ms;
}

.hover-list article:hover {
	transform: scaleX(1.05) scaleY(1.05)!important;
}

article.case_studies .dp-dfg-meta .terms span.term-separator {
	margin: 0 5px;
}

/* search */


/* -- Case Studies -- */
.case-study-testimonial .n2-ss-align .n2-ss-slider .n2-ss-slider-4 .n2-ss-slide {
	place-items: flex-start !important;
}

/* hide author box */
body.single-case_studies #et-boc .et-l .saboxplugin-wrap,
body.single-models #et-boc .saboxplugin-wrap,
body.single-white_papers #et-boc .saboxplugin-wrap {
	display: none;
}

/* images in listing */
#et-boc .et-l .dp-dfg-skin-default .type-case_studies .dp-dfg-image {
	height: 215px;
}

#et-boc .et-l .dp-dfg-skin-default .type-case_studies .dp-dfg-image img {
    height: 215px;
	object-fit: none;
}

/* order of listing items */
.hover-list.case-study-grid figure.dp-dfg-image {
	order: 1;
}

.hover-list.case-study-grid div.dp-dfg-header {
	order: 2;
}

.hover-list.case-study-grid div.dp-dfg-custom-content {
	order: 3;
}

.hover-list.case-study-grid div.et_pb_button_wrapper {
	order: 4;
}

.hover-list.case-study-grid div.dp-dfg-custom-content p.dp-dfg-custom-field {
	padding-bottom: 0;
}

.hover-list.case-study-grid div.dp-dfg-custom-content p.dp-dfg-custom-field {
    padding-bottom: 0;
    line-height: 1;
    margin-bottom: 0.7rem;
}

/* -- Support page -- */
.blue-column-specialty {
	box-shadow: 0px 0px 20px 3px rgb(0 0 0 / 5%);
}

/* -- Company -- */
.featured-numbers .percent span.percent-value,
.custom-featured .percent span.percent-value {
	font-size: 92px !important;
	font-weight: 700 !important;
    color: #b4008d;
}

.featured-numbers::before {
	content: url('/wp-content/uploads/down-arrow-magenta.png');
	position: absolute;
    top: 0;
}

.stat-row .et_pb_column::before{
	content: url('/wp-content/uploads/down-arrow-magenta.png');
	position: absolute;
    top: 0;
	left: 44%;
}

.featured-fact-section,
.featured-fact-section .et_pb_column {
	padding-top: 0 !important;
}

.featured-fact-section .et_pb_column .percent span.percent-value {
	color: #b4008d;
}

.featured-fact-section .image-and-counter .percent {
	height: 60px;
}

.featured-fact-section .image-and-counter {
	width: 100%;
}

.featured-fact-section .image-and-counter .et_pb_image {
	margin-bottom: 0 !important;
}


@media (max-width: 980px) {
	.featured-fact-section .image-and-counter .et_pb_column {
		margin-bottom: 0 !important;
	}

	.featured-fact-section .et_pb_column .percent {
		height: 42px;
	}
}


@media (min-width: 981px) {
	.facts-specialty .et_pb_row {
		display: flex;
	}
}

@media (min-width: 1565px) and (max-width: 1770px) {
	.facts-specialty .numbers span.percent-value {
		font-size: 62px!important;
	}
}

@media (min-width: 1378px) and (max-width: 1564px) {
	.facts-specialty .numbers span.percent-value {
		font-size: 52px!important;
	}

	.featured-numbers .percent span.percent-value {
		font-size: 82px !important;
	}
}


@media (min-width: 1167px) and (max-width: 1377px) {
	.facts-specialty .numbers span.percent-value {
		font-size: 42px!important;
	}

	.featured-numbers .percent span.percent-value {
		font-size: 72px !important;
	}
}

@media (min-width: 981px) and (max-width: 1166px) {
	.facts-specialty .numbers span.percent-value {
		font-size: 32px!important;
	}

	.featured-numbers .percent span.percent-value {
		font-size: 62px !important;
	}
}

@media (min-width: 768px) and (max-width: 980px) {
	.facts-specialty .numbers span.percent-value {
		font-size: 52px!important;
	}

	.featured-numbers .percent span.percent-value {
		font-size: 72px !important;
	}
}

@media (min-width: 76px) and (max-width: 767px) {
	.facts-specialty .numbers span.percent-value {
		font-size: 35px!important;
	}

	.featured-numbers .percent span.percent-value {
		font-size: 52px !important;
	}
}

/* -- Blog Listings with category icon overlays */
.home-post.et_pb_posts article a .et_overlay,
.home-post.et_pb_posts article:hover a .et_overlay {
	opacity: 1;
	border: none;
	z-index: 1;
}

.home-post.et_pb_posts article a .et_overlay:before {
    left: 20%;
    margin: 10px 0 0 -20px;
	text-shadow: 1px 1px 5px #aeaeae;
}

/* blog icon */
.home-post.et_pb_posts article.category-blog a .et_overlay:before {
	font-family: 'ETModules';
    content: '\f27a';
}


/* press release icon */
.home-post.et_pb_posts article.category-press-release a .et_overlay:before {
	font-family: 'ETModules';
    content: '\f0a1';
}

@media (min-width: 981px) and (max-width: 1300px) {
	.home-post.et_pb_posts article a .et_overlay:before {
		margin: 10px 0 0 -10px;
		font-size: 25px;
	}
}

@media (min-width: 600px) and (max-width: 980px) {
	.home-post.et_pb_posts article a .et_overlay:before {
		margin: 10px 0 0 -20px;
	}
}

@media (max-width: 599px) {
	.home-post.et_pb_posts article a .et_overlay:before {
		margin: 20px 0 0 -45px;
		font-size: 20px;
	}
}

/* -- Resources child pages -- */
.blurb-header-row .et_pb_column {
	display: flex;
}

.blurb-header-row .et_pb_column .et_pb_blurb {
	margin: auto;
}

/* -- RiskOptmizer -- */
.larger-text h1 {
	white-space: nowrap;
}

/* -- DecisionTools overview list -- */
.decisiontools-overview-list-row .et_pb_blurb h3.et_pb_module_header {
	font-size: 22px !important;
}

.decisiontools-overview-list-row .et_pb_blurb .et_pb_blurb_description p {
	font-size: 16px !important;
	line-height: 1.2em;
}

/* -- Academic Offerings -- */
@media (max-width: 980px) {
	.custom-specialty-header.academic .et_pb_row .et_pb_column .et_pb_code,
	.custom-specialty-header.academic .et_pb_row .animation-col {
		height: 0;
	}
}

/* -- Product landing page -- */
@media (min-width: 768px) and (max-width: 980px) {
	.et_builder_inner_content div.et_section_specialty.custom-specialty-header.products-landing {
		background-position: 14% 0%;
	}
	
	.et_builder_inner_content div.et_section_specialty.custom-specialty-header.academic {
		background-position: 30% 0%;
	}
}

/* -- all product headers -- */
@media (max-width: 479px) {
	.custom-specialty-header .h2-banner h2, .product-h1 h1 {
		font-size: 28px !important;
	}
}

/* main menu dropdown */
@media (max-width: 980px) {
	.custom-product-dropdown ul.mega-sub-menu > li.mega-menu-column > ul.mega-sub-menu > li.widget_text {
		padding: 0 !important;
	}

	.custom-product-dropdown ul.mega-sub-menu > li.mega-menu-column > ul.mega-sub-menu > li.widget_text .col-header,
	ul#mega-menu-primary-menu a.col-header, span.col-header {
		border-bottom: 2px solid #003a5d !important;
		color: #003a5d;
		font-weight: 700 !important;
	}

	ul#mega-menu-primary-menu > li.mega-menu-item-has-children > ul.mega-sub-menu,
	ul#mega-menu-primary-menu > li.mega-menu-item-has-children > ul.mega-sub-menu > li,
	ul#mega-menu-primary-menu > li.mega-menu-item-has-children > ul.mega-sub-menu > li > a {
		background: #f2f2f2 !important;
		background-color: #f2f2f2 !important;
	}

	#mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
		font-size: 16px;
	}
}

/* -- Spanish translation -- */
html[lang="es-ES"] .demo-button,
html[lang="es-ES"] .portal-blurb {
	width: 100% !important;
    max-width: 100%;
}

html[lang="es-ES"] .global-bottom-cta .cta h2 {
	font-size: 36px !important;
}

/* navigation */
@media (min-width: 981px) and (max-width: 1835px) {
	html[lang="es-ES"] body #page-container .et_pb_button_module_wrapper a.et_pb_button.demo-button {
		line-height: 15px !important;
		height: 41px;
	}	
}

@media (min-width: 1581px) and (max-width: 1694px) {
	html[lang="es-ES"] body #page-container #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {
		padding: 0 5px 0 5px;
	}
}

@media (min-width: 1425px) and (max-width: 1580px) {
	html[lang="es-ES"] body #page-container #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {
		padding: 0 5px 0 5px;
	}
	
	html[lang="es-ES"] body #page-container #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link,
	html[lang="es-ES"] body #page-container .et_pb_button_module_wrapper a.et_pb_button {
		font-size: 16px !important;
	}
}

@media (min-width: 1140px) and (max-width: 1424px) {
	html[lang="es-ES"] body #page-container #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {
		padding: 0 5px 0 5px;
	}
	
	html[lang="es-ES"] body #page-container #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link,
	html[lang="es-ES"] body #page-container .et_pb_button_module_wrapper a.et_pb_button {
		font-size: 16px !important;
	}
	
	html[lang="es-ES"] body #page-container .et_pb_menu__logo-wrap {
		width: 180px !important;
	}
	
	html[lang="es-ES"] body #page-container .head-col {
		width: 13% !important;
	}
	
	html[lang="es-ES"] body #page-container .menu-col {
		width: 76% !important;
	}
	
	html[lang="es-ES"] body #page-container .et_pb_button_module_wrapper a.et_pb_button.title-button {
		line-height: 15px !important;
		height: 41px;
	}	
}

@media (min-width: 1020px) and (max-width: 1139px) {
	html[lang="es-ES"] body #page-container #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {
		padding: 0 3px 0 3px;
	}
	
	html[lang="es-ES"] body #page-container #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link,
	html[lang="es-ES"] body #page-container .et_pb_button_module_wrapper a.et_pb_button {
		font-size: 14px !important;
	}
	
	html[lang="es-ES"] body #page-container .et_pb_menu__logo-wrap {
		width: 180px !important;
	}
	
	html[lang="es-ES"] body #page-container .head-col {
		width: 13% !important;
	}
	
	html[lang="es-ES"] body #page-container .menu-col {
		width: 76% !important;
	}
	
	html[lang="es-ES"] body #page-container .et_pb_button_module_wrapper a.et_pb_button.title-button {
		line-height: 15px !important;
		height: 41px;
	}	
}

@media (min-width: 981px) and (max-width: 1019px) {
	html[lang="es-ES"] body #page-container #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link {
		padding: 0 3px 0 3px;
	}
	
	html[lang="es-ES"] body #page-container #mega-menu-wrap-primary-menu #mega-menu-primary-menu > li.mega-menu-item > a.mega-menu-link,
	html[lang="es-ES"] body #page-container .et_pb_button_module_wrapper a.et_pb_button {
		font-size: 13px !important;
	}
	
	html[lang="es-ES"] body #page-container .et_pb_menu__logo-wrap {
		width: 180px !important;
	}
	
	html[lang="es-ES"] body #page-container .head-col {
		width: 13% !important;
	}
	
	html[lang="es-ES"] body #page-container .menu-col {
		width: 76% !important;
	}
	
	html[lang="es-ES"] body #page-container .et_pb_button_module_wrapper a.et_pb_button.title-button {
		line-height: 15px !important;
		height: 41px;
	}	
}

@media (min-width: 981px) and (max-width: 1465px) {
	html[lang="es-ES"] body #page-container .portal-blurb span.et_pb_image_wrap {
		margin-left: 0 !important;
	}
	
	html[lang="es-ES"] body #page-container .portal-blurb {
		white-space: nowrap;
	}
}

/* Risk product */
html[lang="es-ES"] body #page-container .custom-specialty-header .et_pb_row_inner .arrow-button {
	padding-right: 0;
}

/* additional benefits */
html[lang="es-ES"] body #page-container .benefits-row .orangelist {
	max-width: 100%;
}

/*try it free button in header*/
a.et_pb_button.bold.title-button.free-button:hover {
	color:white!important;
}


/*case studies tabs*/
.case-tabs ul.et_pb_tabs_controls {
    background-color: transparent!important;
	border-bottom: 1px solid #d9d9d9!important;
}
.case-tabs ul.et_pb_tabs_controls:after {
	border-top: 0px solid #d9d9d9!important;
}
.case-tabs .et_pb_tabs_controls li {
	border-right: 0px solid #d9d9d9;
}
.case-tabs li {
    border-bottom: 5px solid #ffffff;
}
.case-tabs li.et_pb_tab_active, .case-tabs li:hover {
    border-bottom: 5px solid #b4008d;
}

/* -- Plans pages -- */
.plan-title-blurb-row .et_pb_blurb .et_pb_main_blurb_image .et_pb_image_wrap {
	width: 93px;
    height: 93px;
}

@media (min-width: 981px) {
	.plan-title-blurb-row .et_pb_blurb .et_pb_module_header {
		padding-top: 10px;
		padding-bottom: 0;
	}

	.plan-title-blurb-row .et_pb_blurb .et_pb_blurb_container {
		padding-left: 40px;
	}

	.plan-title-blurb-row .et_pb_column {
		display: flex;
	}

	.plan-title-blurb-row .et_pb_blurb {
		margin: auto;
	}
}

/* list items */
/* .table-price .et_pb_pricing_table_wrap .et_pb_pricing_table ul.et_pb_pricing li {
	list-style-image: url('/wp-content/uploads/blue-check.png');
	padding-left: 0px;
    margin-left: 30px!important;
	margin-bottom: 0!important;
}
.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table ul.et_pb_pricing li.et_pb_not_available {
	list-style-image: url('/wp-content/uploads/orange-x.png');
	padding-left: 0px;
    margin-left: 30px!important;
} */
.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table ul.et_pb_pricing li {
    background: url('/wp-content/uploads/teal-check.png') no-repeat 0 3px;
    padding: 0rem 0rem 1.5rem 2rem;
    margin: 0 0 0 0 !important;
    }

    .table-price .et_pb_pricing_table_wrap .et_pb_pricing_table ul.et_pb_pricing li.et_pb_not_available {
    background: url('/wp-content/uploads/magenta-x.png') no-repeat 0 3px;
    padding: 0rem 0rem 1.5rem 2rem;
    margin: 0 0 0 0 !important;
}

.et_pb_pricing_table_2 ul.et_pb_pricing li, .et_pb_pricing_table_3 ul.et_pb_pricing li, .et_pb_pricing_table_4 ul.et_pb_pricing li, .et_pb_pricing_table_5 ul.et_pb_pricing li {
/* 	    list-style-image: url(/wp-content/uploads/teal-check.png); */
	    list-style-image: none !important;
}


/* - Mega Menu grid */
a.mega-menu-link {
	font-size: 18px!important;
    line-height: 28px;
}

@media (min-width: 981px) {
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row.resources-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
		padding: 0 15px 0 15px;
	}

	#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row.resources-row {
		padding: 15px;
	}	
	.menu-left {
		margin-left:30px;
	}
}

@media (max-width: 980px) {
	#mega-menu-wrap-primary-menu #mega-menu-primary-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
		padding: 0;
	}
	a.mega-menu-link {
    	font-size: 20px!important;
    	text-align: center!important;
		padding: 5px 0px!important;
	}
	ul.mega-sub-menu p {
		font-size: 20px!important;
		line-height: 38px;
		text-align: center;
	}
}

/* -- Webinars page -- */
.custom-info .dp-dfg-custom-content .dp-dfg-custom-field span.dp-dfg-custom-field-label {
	font-weight: bold;
}

.custom-info .dp-dfg-custom-content .dp-dfg-custom-field {
	padding-bottom: 0;
}

.custom-info .dp-dfg-container .dp-dfg-items article {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
    align-items: flex-start;
}

.custom-info .dp-dfg-container .dp-dfg-items article .dp-dfg-header {
	order: 1;
}

.custom-info .dp-dfg-container .dp-dfg-items article .dp-dfg-custom-content {
	order: 2;
}

.custom-info .dp-dfg-container .dp-dfg-items article .dp-dfg-content {
	order: 3;
}

.custom-info .dp-dfg-container .dp-dfg-items article .et_pb_button_wrapper {
	order: 4;
}

@media (max-width: 767px) {
	.dpdfg_filtergrid .dp-dfg-skin-default .dp-dfg-filter a {
		padding: 0.2em 0.6em !important;
	}
}


/* single blog post */
/* author box */
.et_pb_post_content .saboxplugin-wrap {
	box-shadow: 0px 0px 20px 3px rgb(0 0 0 / 5%);
	border: 1px solid transparent;
}

/* comment submit button */
#commentform .form-submit button#et_pb_submit {
	font-weight: bold;
}

#commentform .form-submit button#et_pb_submit::after {
	/*top: 14px;*/
    font-weight: bold;
}

/* date font */
.custom-single-post .et_pb_title_meta_container .published {
	font-size: 15px;
}

/* -- Modern Events Calendar Lite -- */
/* Events page */
.mec-wrap, .mec-wrap div:not([class^="elementor-"]), .lity-container, .mec-wrap h1, .mec-wrap h2, .mec-wrap h3, .mec-wrap h4, .mec-wrap h5, .mec-wrap h6, .entry-content .mec-wrap h1, .entry-content .mec-wrap h2, .entry-content .mec-wrap h3, .entry-content .mec-wrap h4, .entry-content .mec-wrap h5, .entry-content .mec-wrap h6, .mec-wrap .mec-totalcal-box input[type="submit"], .mec-wrap .mec-totalcal-box .mec-totalcal-view span, .mec-agenda-event-title a, .lity-content .mec-events-meta-group-booking select, .lity-content .mec-book-ticket-variation h5, .lity-content .mec-events-meta-group-booking input[type="number"], .lity-content .mec-events-meta-group-booking input[type="text"], .lity-content .mec-events-meta-group-booking input[type="email"], .mec-organizer-item a {
	font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
	font-weight: 500!important;
}

.mec-wrap ul.mec-categories {
	padding: 0;
}

.mec-wrap ul.mec-categories li.mec-category a.mec-color-hover {
	font-size: 17px !important;
}

.mec-event-list-modern .mec-btn-wrapper .mec-booking-button {
	text-transform: initial;
    color: #b4008d;
    border-radius: 50px;
    font-size: 15px;
}

.mec-event-list-modern .mec-btn-wrapper .mec-booking-button:hover {
    color: #fff;
	background-color: #b4008d;
	border: 1px solid #b4008d;
}

/* -- Toggle icons -- */
.custom-accordion .et_pb_toggle_title:before {
	content: "\f067";
}

.custom-accordion .et_pb_toggle_open .et_pb_toggle_title:before {
	content: "\f068";
}

.custom-accordion h5.et_pb_toggle_title {
	font-size: 22px !important;
}

/* popup */
.mec-modal-wrap article.mec-single-event h1.mec-single-title {
	font-size: 48px !important;
}

.mec-modal-wrap article.mec-single-event .mec-events-event-image,
.mec-modal-wrap article.mec-single-event .col-md-4 {
	display: none;
}

.mec-modal-wrap article.mec-single-event .mec-single-event-bar,
.mec-modal-wrap article.mec-single-event .mec-single-event-bar div {
	background-color: #dceaf7;
}

.mec-modal-wrap article.mec-single-event .col-md-8 {
	width: 100%;
}
.mec-modal-wrap article.mec-single-event .mec-date {
	padding-left: 0;
}

.mec-modal-wrap article.mec-single-event .mec-date::before {
	content: "\e023";
	font-size: 20px;
    vertical-align: middle;
	font-family: "ETmodules" !important;
	font-weight: normal;
	font-style: normal;
	font-variant: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-transform: none;
	speak: none;
	padding-right: 17px;
}

@media (max-width: 980px) {
	 .mec-modal-wrap article.mec-single-event h1.mec-single-title {
		font-size: 36px !important;
	}
}

/* Category Pages */
body.archive.tax-mec_category #et-main-area #main-content {
	padding-top: 100px;
	padding-bottom: 100px;
}

/* divi plus timeline */
.dipl_icon_tree .dipl_item_content .dipl_item_content_inner {
	box-shadow: 0 0 20px 3px rgb(0,0,0,0.1);
}

@media (max-width: 767px) {
	.dipl_timeline .dipl_timeline_alternate .dipl_timeline_wrapper .dipl_timeline_item {
		margin-bottom: 30px !important;
	}
}

/* -- Careers page -- */
/* core values */
@media (min-width: 1160px) and (max-width: 1499px) {
	.dipl_image_accordion_item_content_wrapper .dipl_image_accordion_item_content_inner_wrap h3.dipl_image_accordion_item_title {
		font-size: 25px !important;
	}
}

@media (min-width: 981px) and (max-width: 1159px) {
	.dipl_image_accordion_item_content_wrapper .dipl_image_accordion_item_content_inner_wrap h3.dipl_image_accordion_item_title {
		font-size: 21px !important;
	}
}


/* descriptions on hover */
.dipl_image_accordion .dipl_image_accordion_item_desc {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
	animation-delay: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

 @-webkit-keyframes fadeIn {
   0% {opacity: 0;}
   100% {opacity: 1;}
}
         
@keyframes fadeIn {
   0% {opacity: 0;}
   100% {opacity: 1;}
}
         
.fadeIn {
   -webkit-animation-name: fadeIn;
   animation-name: fadeIn;
}

/* -- Leadership page -- */
.custom-person .et_pb_team_member_image {
	text-align: left;
}

.custom-person .et_pb_team_member_description .et_pb_member_position {
	padding-bottom: 0;	
}

.entry-content .custom-person .et_pb_member_social_links {
	margin-top: 10px;
}

.custom-person .et_pb_team_member_image img {
	box-shadow: 0px 0px 20px 3px rgb(25 25 25 / 20%);
}

/* -- Partners -- */
/* hide author box */
body.single-partners #et-boc .et-l .saboxplugin-wrap {
	display: none;
}

/* filtergrid */
.custom-info.partners .dp-dfg-custom-content p {
	font-size: 14px !important;
    line-height: 1.7em !important;
}
/* hide the empty paragraph within the emails editor field */
.custom-info.partners .dp-dfg-custom-content p:nth-child(6) {
	display: none;
}

/* delete the padding-bottom on the email editor field */
.custom-info.partners .dp-dfg-custom-content p:nth-child(5) {
	padding-bottom: 0;
}

/* filter grid without divi tabs */
.dpdfg_filtergrid .dp-dfg-filters ul.dp-dfg-taxonomy-level-0 li.dp-dfg-filter a {
	font-weight: 700;
    font-size: 32px !important;
    line-height: 1.6em;
	color: #003a5d !important;
	border-bottom: 5px solid transparent !important;
    padding: 0.5em 1.2em;
}

.dpdfg_filtergrid .dp-dfg-filters .dp-dfg-taxonomy-label {
	display: none;
}

.dpdfg_filtergrid .dp-dfg-filters ul.dp-dfg-taxonomy-level-1 li.dp-dfg-filter a,
.dpdfg_filtergrid .dp-dfg-filters ul.dp-dfg-taxonomy-level-2 li.dp-dfg-filter a,
.dpdfg_filtergrid .dp-dfg-filters ul.dp-dfg-taxonomy-level-3 li.dp-dfg-filter a {
	border-bottom: 3px solid transparent !important;
}

.dpdfg_filtergrid .dp-dfg-filters ul.dp-dfg-taxonomy-level-0 li.dp-dfg-filter a.active {
	border-bottom: 5px solid #b4008d !important;
}

.dpdfg_filtergrid .dp-dfg-filters ul.dp-dfg-taxonomy-level-0 li.dp-dfg-filter a:hover {
	border-bottom: 5px solid #b4008d !important;
}

.dpdfg_filtergrid .dp-dfg-filters ul.dp-dfg-taxonomy-level-1 li.dp-dfg-filter a:hover,
.dpdfg_filtergrid .dp-dfg-filters ul.dp-dfg-taxonomy-level-2 li.dp-dfg-filter a:hover,
.dpdfg_filtergrid .dp-dfg-filters ul.dp-dfg-taxonomy-level-3 li.dp-dfg-filter a:hover {
	border-bottom: 3px solid #b4008d !important;
}

.dpdfg_filtergrid .dp-dfg-container .dp-dfg-filters ul.dp-dfg-taxonomy-level-0 {
	border-bottom: 1px solid #d9d9d9;
}

@media (min-width: 768px) and (max-width: 980px) {
	.dpdfg_filtergrid .dp-dfg-filters ul.dp-dfg-taxonomy-level-0 li.dp-dfg-filter a {
		font-size: 20px !important;
	}	
}

@media (max-width: 767px) {
	.dpdfg_filtergrid .dp-dfg-filters ul.dp-dfg-taxonomy-level-0 li.dp-dfg-filter a {
		font-size: 20px !important;
		line-height: 1.1em;
	}	
}

/* pricing tables - for some reason they broke in styling once a button was added */
.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table {
	border-radius: 45px 45px 45px 45px;
    overflow: hidden;
    border-color: #003a5d;
}

.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table h2.et_pb_pricing_title {
	font-size: 24px!important;
	margin-top: .75rem;
}

.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table .et_pb_sum {
	font-size: 45px;
	font-weight: 700;
}

.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table .et_pb_dollar_sign,
.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table.et_pb_pricing_table_1 .et_pb_dollar_sign,
.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table.et_pb_pricing_table_3 .et_pb_dollar_sign,
.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table.et_pb_pricing_table_5 .et_pb_dollar_sign {
	font-size: 19px;
	font-weight: 700;
}

.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table.et_pb_pricing_table_1 h2.et_pb_pricing_title,
.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table.et_pb_pricing_table_1 .et_pb_et_price,
.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table.et_pb_pricing_table_1 .et_pb_sum,
.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table.et_pb_pricing_table_3 h2.et_pb_pricing_title,
.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table.et_pb_pricing_table_3 .et_pb_et_price,
.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table.et_pb_pricing_table_3 .et_pb_sum,
.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table.et_pb_pricing_table_5 h2.et_pb_pricing_title,
.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table.et_pb_pricing_table_5 .et_pb_et_price,
.table-price .et_pb_pricing_table_wrap .et_pb_pricing_table.et_pb_pricing_table_5 .et_pb_sum {
	color: #003a5d !important;
	font-weight: 700;
}
.et_pb_frequency {
	font-size: 13px !important;
}

.et_pb_best_value {
    line-height: 20px;
    display: block;
    font-weight: 500 !important;
    font-size: 14px !important;
}

/* button */
body.et_pb_button_helper_class .table-price .et_pb_pricing_table_wrap .et_pb_pricing_table .et_pb_button_wrapper .et_pb_button,
body .table-price .et_pb_pricing_table_wrap .et_pb_pricing_table .et_pb_button_wrapper .et_pb_button {
	color: #003a5d !important;
    border-width: 0px!important;
    font-size: 22px;
    padding-right: 2em;
    background-color: RGBA(0,0,0,0);
	transition: all 300ms ease 0ms;
}

/* custom - iframe */
.custom-iframe iframe {
	overflow-y: scroll;
}

/* trials - decisiontools suite */
.logo-size-row {
	width: 100%;	
}

.logo-size-row .et_pb_image .et_pb_image_wrap {
	height: 53px;
}

.logo-size-row .et_pb_image .et_pb_image_wrap img {
	height: 100%;
	max-width: max-content;
}

@media (min-width: 981px) and (max-width: 1350px) {
	.logo-size-row .et_pb_image .et_pb_image_wrap {
		height: 34px;
	}
}

/* home - industry logos section */
/* Active slide logo */
.control-active {
    /*box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 16%);*/
	transition: all 0.5s ease;
}

/*.industry-leader-row .et_pb_image {
	cursor: pointer;
}*/

.industry-leader-row {
	width: 100% !important;
}

@media (max-width: 980px) {
	.industry-leader-row .et_pb_column {
		width: 33.33% !important;
	}	
	
	.industry-leader-row {
		width: 100% !important;
	}
}

/* Wp timeline */
.wpex.horizontal-timeline.ex-multi-item .extl-hoz-sbs .extl-sbd-details,
.wpex-filter span, .wpex-timeline > li .wpex-timeline-label {
	box-shadow: 0 0 20px 3px rgb(0 0 0 / 10%); 
	border: none;
}

.wpex.horizontal-timeline.ex-multi-item .extl-hoz-sbs ul.horizontal-nav .extl-sbd-details:after {
	border-top-color: #ffffff;
}

.wpex.horizontal-timeline.ex-multi-item .extl-hoz-sbs ul.horizontal-sl-2 .extl-sbd-details:before {
	border-bottom-color: #ffffff;
}

.wpex-timeline > li .wpex-timeline-label:before, .show-wide_img .wpex-timeline > li .wpex-timeline-time span.tll-date:before, .wpex-timeline > li .wpex-timeline-label:before, .wpex-timeline-list.show-wide_img.left-tl .wpex-timeline > li .wpex-timeline-time span.tll-date:before, .wpex-timeline-list.show-icon.show-bg .wpex-timeline > li .wpex-timeline-label:after, .wpex-timeline-list.show-icon .wpex-timeline.style-center > li .wpex-timeline-label:after {
	border-right-color: #fff;
}

.show-wide_img .wpex-timeline > li:nth-child(even) .wpex-timeline-time span.tll-date:before, .wpex-timeline.style-center > li:nth-child(odd) .wpex-timeline-label:before, .wpex-timeline-list.show-icon .style-center > li:nth-child(odd) .wpex-timeline-label:after {
	border-left-color: #fff;
}

.wpex-timeline.style-center > li:nth-child(odd) .wpex-timeline-label {
	border-right-color: transparent;
	border: none;
}


.wpex-timeline.style-center > li .wpex-timeline-label {
	border: none;
}

.wpex.horizontal-timeline.ex-multi-item .extl-hoz-sbs ul.horizontal-sl-2 .extl-sbd-details {
	margin-top: 40px;
}

.wpex.horizontal-timeline.ex-multi-item .extl-hoz-sbs .horizontal-nav .ex_s_lick-track {
	margin-left: 16px;
	margin-top: 14px;
}

ul.horizontal-sl-2 .ex_s_lick-track {
	margin-bottom: 30px;
}

.wp-timeline .timeline-details .tlmobile-visible {
	display: none !important;
}
/* arrow and line styling */
.wpex.horizontal-timeline.tlml-arrow-top .ex_s_lick-prev, .wpex.horizontal-timeline.tlml-arrow-top .ex_s_lick-next {
	color: #e96819;
}

.wpex.horizontal-timeline .extl-hoz-sbs .horizontal-nav li.ex_s_lick-current span.tl-point:before {
	border-color: #e96819;
}

.wpex-timeline > li .wpex-timeline-icon .fa {
	background: #fff;
}

.wpex-timeline > li .wpex-timeline-icon .fa {
	box-shadow: 0 0 0 3px #e96819;
}

@media (max-width: 767px) {
	.wpex-timeline > li:first-child:before, .wpex-timeline > li .wpex-timeline-icon .fa, .wpex-timeline > li:after {
		left: 0;
	}
	
	.wpex-timeline > li .wpex-timeline-label {
		margin-left: 50px;
	}
}

/* font styling */
.wpex.horizontal-timeline .extl-hoz-sbs h2 a,
.wpex-timeline > li .wpex-timeline-label h2 a {
	font-size: 32px;
	font-weight: 700;
	font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
}

.wpex.horizontal-timeline .extl-hoz-sbs h2 {
	margin-bottom: 0;
}

/* -- Models login module -- */
.custom-login form button {
	background-size: auto !important;
}

.custom-login form button:hover {
	transform: scaleX(1.05) scaleY(1.05)!important;
}


/*lisencing options page*/
@media (min-width: 981px) {
	.left-col {
    	width: 140px!important;
	}

	.right-col {
    	width: 260px!important;
	}
}


/*License Table*/
.license-table.table-price h2.et_pb_pricing_title:before {
	display:none;
}
body #page-container .et_pb_section .license-table.table-price .et_pb_pricing_content_top {
    padding-bottom: 0px;
}


/*homepage join sections right spacing*/
@media only screen and (min-width: 1790px) {
	body .et_pb_row.join-home {
    	padding-left: 14%!important;
	}
}
@media only screen and (max-width : 1789px) and (min-width: 1550px) {
	body .et_pb_row.join-home {
    	padding-left: 20%!important;
	}
}
@media only screen and (max-width : 1549px) and (min-width: 1331px) {
	body .et_pb_row.join-home {
    	padding-left: 24%!important;
	}
}
@media only screen and (max-width : 1330px) and (min-width: 1200px) {
	body .et_pb_row.join-home {
    	padding-left: 16.5%!important;
	}
}
@media only screen and (max-width : 1199px) and (min-width: 1038px) {
	body .et_pb_row.join-home {
    	padding-left: 21.5%!important;
	}
}
@media only screen and (max-width : 1037px) and (min-width: 998px) {
	body .et_pb_row.join-home {
    	padding-left: 20%!important;
	}
}
@media only screen and (max-width : 997px) and (min-width: 981px) {
	body .et_pb_row.join-home {
    	padding-left: 24.5%!important;
	}
}

/*move column of header text in front of animated image*/
.forward-text {
	z-index:9;
}

/*remove padding in header on products*/
@media (max-width: 479px) {
	.no-padding {
		padding-right:0px!important;
	}
}


/*request demo page logos fit squares*/
.demo-filter img.dp-dfg-featured-image{
    object-fit: contain!important;
}


/*events on homepage hide footer, description, time*/
.home-events .mec-event-footer, .home-events .mec-event-description, .home-events .mec-time-details, .home-events .mec-color-before :before  {
    display: none;
}
/*sizing and border*/
.home-events .mec-event-list-standard .mec-event-article {
    margin-bottom: 20px;
    border: 0px solid #e9e9e9;
    box-shadow: 0 0px 0 0 rgb(0 0 0 / 2%);
}
/*text on date*/
.home-events span.mec-start-date-label {
    font-weight: 500;
    margin-bottom: 0 px;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
    color: #212221;
    font-size: 15px;
    line-height: 15px!important;
    text-transform: capitalize;
}


/*send header text to two lines*/
@media only screen and (max-width : 1664px) and (min-width: 981px) {
	.et_pb_module.et_pb_text.two-lines{
		width: 550px;
	}
}


/*request demo form, move up country options*/
@media only screen and (min-width: 641px) {
	.option-up {
    	margin-top: -105px;
		width: 50%;
    	margin-left: auto;
	}
}


/*align contents to bottom of column*/
@media only screen and (min-width: 981px) {
	/*for column*/
	.bottom-row {
		display: flex;
		flex-flow: column;
	}
	/*for module*/
	.bottom-module, .bottom-row .et_pb_button_module_wrapper{
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		flex-grow: 1;
	}
}
/*industry pop up checkboxes*/
.center-check.checklist ul li::before {
	display:initial;
	top:3px;
	left:-9px;
	position:inherit;
}
.center-check.checklist ul li {
	padding-left:0px;
}


.blurb-checklist ul li{
	margin-bottom:6px!important;
}


/*models filtering for dropdown items*/
.models-dropdown ul.dp-dfg-level.dp-dfg-taxonomy-model_filters {
	background:white;
}
.dpdfg_filtergrid.models-dropdown .dp-dfg-filters ul.dp-dfg-taxonomy-level-0 li.dp-dfg-filter a, body .models-dropdown li.dp-dfg-filter a.dp-dfg-filter-link {
    font-weight: 700;
    font-size: 18px !important;
    line-height: 1.6em;
    color: #003a5d !important;
    padding: 0.5em 1.2em;
}


/*case study filter*/
.case-study-grid.dpdfg_filtergrid .dp-dfg-filters ul.dp-dfg-taxonomy-level-0 li.dp-dfg-filter a:hover, .case-study-grid.dpdfg_filtergrid .dp-dfg-filters ul li.dp-dfg-filter a.dp-dfg-filter-link:hover {
    border-bottom: 5px solid #f2f2f2!important;
    background-color: #f2f2f2!important;
}

/*text in timeline*/
.timeline .dipl_item_desc {
    font-size: 18px;
    line-height: 28px;
}

/*blog filter*/
.blog-filter.dpdfg_filtergrid .dp-dfg-filters ul.dp-dfg-taxonomy-level-0 li.dp-dfg-filter a:hover, .blog-filter.dpdfg_filtergrid .dp-dfg-filters ul li.dp-dfg-filter a.dp-dfg-filter-link:hover {
    border-bottom: 5px solid #f2f2f2!important;
    background-color: #f2f2f2!important;
}
.blog-filter ul.dp-dfg-level.dp-dfg-taxonomy-all {
    background: white;
}
/*vertically align image on blog*/
.blog-filter figure.dp-dfg-image.entry-thumb {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/*stack blog on mobile*/
@media only screen and (max-width: 980px) {
	.blog-filter .dp-dfg-layout-list .dp-dfg-item {
		display: block;
	}
	.blog-filter .dp-dfg-skin-default .dp-dfg-image img {
    	max-width: 220px;
    	margin-left: auto;
    	margin-right: auto;
	}
}


/*marketo forms*/
.mktoForm .mktoButtonWrap.mktoRound .mktoButton, .mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
    border-width: 0px!important;
    border-radius: 50px!important;
    font-size: 18px!important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    background-image: url('/wp-content/uploads/magenta-button.png')!important;
    color: white!important;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
    font-weight: 700!important;
    font-style: normal;
    width: 227px;
    margin-right: 6px;
}
.mktoForm .mktoRequiredField label.mktoLabel {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
    padding: 0;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
    font-style: normal;
	padding-top: 15px;
}
.mktoForm input[type=text], .mktoForm input[type=url], .mktoForm input[type=email], .mktoForm input[type=tel], .mktoForm input[type=number], .mktoForm input[type=date], .mktoForm select.mktoField, .mktoForm textarea.mktoField {
    -webkit-appearance: none;
    box-shadow: inset 1px 1px 4px 1px #fff!important;
    min-height: 1.9em!important;
    background-color: white!important;
    border: 1px solid #003a5d !important;
    border-radius: 34px!important;
    font-size: 14px;
    color: #999!important;
    padding: 16px!important;
    line-height: initial!important;
    height: initial!important;
}
mktoForm div, .mktoForm span, .mktoForm label, .mktoForm p {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 16px!important;
    font-weight: 400;
}
.mktoButtonRow {
    float: right;
}
.mktoHtmlText.mktoHasWidth {
    width: 100%!important;
	max-width:420px;
}

.mktoRadioList.mktoHasWidth.mktoRequired {
    padding-top: 5%;
}
textarea#commentCapture {
    max-width: 250px;
}
@media only screen and (max-width: 480px) {
	textarea#commentCapture {
    	max-width: 100%;
	}
}
/*decision free trial marketo form exta padding*/
.decision-marketo textarea#Use_Case_Details__c {
    padding-bottom: 35px!important;
}

/*newsletter form submit button*/
.newsletter-marketo button.mktoButton {
    width: 240px!important;
}
/*newsletter form width on small phones*/
@media only screen and (max-width: 600px) {
	form#mktoForm_1085 {
    	max-width: 100%;
	}
}
@media only screen and (max-width: 980px) {
	/*model form*/
	form#mktoForm_1274 {
		max-width:435px!important;
	}
}
@media only screen and (max-width: 767px) {
	/*model form*/
	form#mktoForm_1274 {
		max-width:322px!important;
	}
}

/*case studies orange box spacing on blurb titles*/
.case-blurb h4.et_pb_module_header {
    padding-bottom: 0px;
}


/*customer success/case-study quotes fill orange column*/

	 .logo-column {
	 	background: linear-gradient(270deg, rgba(255,255,255,1) 9%, rgba(233,102,22,1) 9%);
	}

/*palisade facts percent sign to dollar sign*/
.lwp-counter-sign .percent .percent-value:before {
    content: '$';
    display: inline-block;
}
 
.lwp-counter-sign span.percent-sign {
    display: none;
}


/*analytics page left align table text*/
.analytics-table .tablepress td.column-3, .analytics-table .tablepress td.column-4 {
	text-align:left;
}

/*keep pop up from pushing page over*/
html.pum-open.pum-open-overlay.pum-open-scrollable body>[aria-hidden] {
    padding-right: 0px;
}


/* product page template tabs image shadow*/ 
.product-layout-tabs .et_pb_tab img, .product-layout-tabs .et_pb_toggle img {
	box-shadow:0px 12px 18px -6px rgb(0 0 0 / 30%);
}


/*plans dropdown menu width*/
@media only screen and (min-width: 980px) {
	li#mega-menu-item-6159 ul.mega-sub-menu {
    	max-width: 250px!important;
	}
}

@media only screen and (max-width: 980px) {
	.stack-grid .dp-dfg-item {
    	display: -webkit-flex;
    	display: flex;
    	flex-direction: column;
	}
	.stack-grid.hover-list.case-study-grid figure.dp-dfg-image {
		order: 3;
	}
	.stack-grid.hover-list.case-study-grid div.dp-dfg-header {
    	order: 1;
	}
	.stack-grid.hover-list.case-study-grid div.dp-dfg-custom-content {
    	order: 2;
	}
}

/*resources menu*/

/*link spacing*/
.resources a{
    margin-left: 58px;
}
.resource-video::before {    
	content: 'I';
    font-family: ETmodules;
	/*content: '\f01d';
	font-family: FontAwesome!important;*/
    font-size: 30px;
    color: #b4008d;
    font-weight: 500!important;
    z-index: 9999;
    position: absolute;
    margin-left: -42px;
}
.resource-brochure::before {    
	content: '\e01f';
    font-family: ETmodules;
    font-size: 30px;
    color: #b4008d;
    font-weight: 500!important;
    z-index: 9999;
    position: absolute;
    margin-left: -42px;
}
.resource-brochure::before {    
	content: '\e01f';
    font-family: ETmodules;
    font-size: 30px;
    color: #b4008d;
    font-weight: 500!important;
    z-index: 9999;
    position: absolute;
    margin-left: -42px;
}
.resource-trial::before {    
	content: '\e038';
    font-family: ETmodules;
    font-size: 30px;
    color: #b4008d;
    font-weight: 500!important;
    z-index: 9999;
    position: absolute;
    margin-left: -42px;
}
.resource-case::before {    
	content: '\e101';
    font-family: ETmodules;
    font-size: 30px;
    color: #b4008d;
    font-weight: 500!important;
    z-index: 9999;
    position: absolute;
    margin-left: -42px;
}
.resource-webinars::before {    
	content: '\e00e';
    font-family: ETmodules;
    font-size: 30px;
    color: #b4008d;
    font-weight: 500!important;
    z-index: 9999;
    position: absolute;
    margin-left: -42px;
}
.resource-models::before {    
	content: '\e08c';
    font-family: ETmodules;
    font-size: 30px;
    color: #b4008d;
    font-weight: 500!important;
    z-index: 9999;
    position: absolute;
    margin-left: -42px;
}

/*read the case study on customer success stories*/
.customer-button div {
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif !important;
    font-weight: 700!important;
    font-style: normal;
}
.customer-button span.n2i.nfa.nfa-arrow-right {
    color: #b4008d;
}


@media (min-width: 981px){
.single-ajde_events  #left-area {
	width: 100%;
	}
}

/* ----------------------------------- copied over from customizer -------------------- */
ul.et_pb_member_social_links {
    margin-top: .7rem;
}

p.et_pb_member_position {
    line-height: 1.2;
}


/* 
//
//
Main Nav Tweak
//
//
*/
ul#mega-menu-primary-menu a {
    line-height: 1.1;
}

.et_pb_menu_0_tb_header .et_pb_menu_inner_container>.et_pb_menu__logo-wrap .et_pb_menu__logo img, .et_pb_menu_0_tb_header .et_pb_menu__logo-slot .et_pb_menu__logo-wrap img {
    height: auto;
    max-height: 55px !important;
}

/*
//
//
Orange external links for briefs page
//
//
 */

@media (min-width: 981px){
    .external-links {
    margin: 2rem auto;
    }
}

.external-links .et_pb_text_inner {
    display: block;
}

@media (min-width: 981px){
    .external-links .et_pb_text_inner {
        display: flex;
        justify-content: center;
        flex-flow: row;
        gap: 2rem;
    }   
}

.external-links .link {
    position: relative;
    padding: 0 0 0 1.6rem;
    margin-bottom: .6rem;
}

.external-links .link::before {
    font-family: 'ETModules';
    content: '\f08e';
    width: 20px;
    margin: 0;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    color: #b4008d;
    font-size: 20px;
    font-weight: normal;
}

/* 
//
//
EventOn Styles
//
//
*/

.eventon_sort_line p, .eventon_filter_line p, .eventon_sf_field p {
    color: #A8A8A8;
    padding: 10px 10px 10px 30px !important;
    margin: 0;
    text-transform: Capitalize;
    font-size: 12px;
}

p.filtering_set_val {
    text-indent: -999999px;
}

p.filtering_set_val:before {
    text-indent: -999999px;
    content: "Filter by Event Type";
    float: left;
    text-indent:0;
}

.eventon_filter_line .eventon_filter {
  display: block;
  float: left;
  margin-right: 10px;
  width: 250px;
}

/* .ajde_evcal_calendar.color #evcal_list .eventon_list_event p .desc_trig, 
.evo_lightboxes .color.eventon_list_event .evopop_top, 
.evo_lightboxes .color.eventon_list_event .evcal_list_a {
    background-color: transparent!important;
    padding: 0px;
} */

body.home .eventon_events_list .eventon_list_event .evcal_list_a {
    background-color: rgba(0, 0, 0, .1) !important;
}

.ajde_evcal_calendar.sev #evcal_list .eventon_list_event, 
.ajde_evcal_calendar.cev #evcal_list {
    border-radius: 0px!important;
}
.evo_sin_page #evcal_list .eventon_list_event {
    border-radius: 0px;
    margin-bottom: 15px;
}

/*list hover style remove shift on hover*/
.ajde_evcal_calendar.color #evcal_list .eventon_list_event p.desc_trig_outter {
    padding-bottom: 0;
}

#evcal_list p.desc_trig_outter {
    border-bottom: none;
}

.ajde_evcal_calendar.color #evcal_list .eventon_list_event p.desc_trig_outter a {
/*     background: #f1f1f1 !important; */
    padding: 1rem !important;
    border-radius: 10px;
}
.ajde_evcal_calendar.color #evcal_list .eventon_list_event p.desc_trig_outter a:hover {
    border-left-width: 0!important;
    background: #ddd !important;
}

body.single .ajde_evcal_calendar.color #evcal_list .eventon_list_event p.desc_trig_outter {
    border-bottom: 1px solid #ccc;
}

body.single .ajde_evcal_calendar.color #evcal_list .eventon_list_event p.desc_trig_outter a {
     background: #fff !important; 
    padding: 2rem 1rem !important;
    border-radius: 10px;
}
body.single .ajde_evcal_calendar.color #evcal_list .eventon_list_event p.desc_trig_outter a:hover {
    border-left-width: 0!important;
     background: #fff !important; 
}


/*title on list*/
span.evcal_desc2.evcal_event_title, 
.ajde_evcal_calendar.color #evcal_list .eventon_list_event .evcal_desc span.evcal_event_title {
    color: #003a5d !important;
    text-transform: capitalize!important;
    font-size: 28px!important;
    line-height: 1;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif; 
}


/*display event type*/
.color.evo_sin_page #evcal_list .eventon_list_event .evcal_desc3 em,
.evcal_desc .evcal_desc3 .ett1 em {
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif; 
    font-size: 18px;
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 110%;
    color: #003a5d !important;
    float: left;
    display: block;
    padding-right: 0 !important;
}

.evcal_desc .evcal_desc3 .ett1 em i {
    display: none;
}

/* Event time */
.color.evo_sin_page #evcal_list .eventon_list_event .evcal_desc_info em.evcal_time.evo_tz_time,
em.evcal_time.evo_tz_time,
.evo_etop_timezone{
    color: #262626 !important;
}


/*single event titles*/
body h3.padb5.evo_h3, 
body .evcal_evdata_cell h3 {
    color: #003a5d !important;
    text-transform: capitalize!important;
    font-size: 24px!important;
}
/*event icons*/
.evcal_evdata_row .evcal_evdata_icons i {
    color: #b4008d;
}
/*repeating events colors*/
.evo_repeat_series_dates span {
    color: #212121;
    background-color: #fff;
/*     text-transform: capitalize; */
}

/*date block*/
.evcal_cblock .evo_start {
    font-size: 30px;
    clear: both;
    display: flex;
    flex-flow: row-reverse;
}

@media (min-width: 569px) {
.evcal_cblock .evo_start {
    flex-flow: column;
    width: 75px;
    }
}

/*date on list*/
#evcal_list,
.sep_month_events  {
    border-radius: 0px !important;
}

em.date {
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif; 
    background-color: #b4008d;
    text-align: center;
    padding: 0px 15px;
    font-size: 28px;
}
/*month on list*/
em.month {
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif; 
    text-align: center;
    background-color: #003a5d;
    padding: 10px 15px 5px 15px;
    font-weight: bold!important;
    font-size: 15px!important;
    letter-spacing: 2px;
}
em.month {
    text-align: center;
    background-color: #003a5d;
    padding: 8px;
    font-weight: bold!important;
    font-size: 15px!important;
    letter-spacing: 0px;
}
/*list subtitle*/
span.evcal_event_subtitle, 
body .ajde_evcal_calendar.color #evcal_list .eventon_list_event .evcal_desc span.evcal_event_subtitle {
        font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif; 
    color: #212221!important;
    text-transform: capitalize!important;
    font-size: 18px!important;
}
/*month name*/
#evcal_list.sep_months .evcal_month_line p {
    border: none;
    color: #003a5d !important;
    font-size: 36px!important;
    font-weight: bold!important;
    text-transform: capitalize;
    border-bottom: 1px solid #ccc;
    margin: 1rem 0;
    padding-bottom: 1rem;
}
/*filter background event*/
.eventon_sorting_section {
    background-color: #fff!important;
}
/*event filter text*/
.eventon_filter_line .filtering_set_val {
    margin: 0;
    border-bottom: 5px solid #b4008d;
    border-radius: 0px!important;
    padding: 0px 10px!important;
    font-weight: 700!important;
    font-size: 24px !important;
    line-height: 1.6em;
    color: #003a5d !important;
    text-transform: capitalize;
    margin-right: 10px;
    margin-left: -10px;
}
/*event filter dropdown*/
.eventon_filter_dropdown p.select, 
.selecttype .eventon_filter_dropdown p, 
.ajde_evcal_calendar .evo-sort-btn .eventon_sort_line p.select {
    background-color: #f7f7f7;
    padding-left: 30px;
    text-transform: capitalize;
    color: #212121;
}
/*event filters button*/
.eventon_sorting_section p.evo_filter_submit {
    padding: 5px 15px;
    text-transform: capitalize;
    color: #FFFFFF!important;
    border-width: 0px!important;
    border-radius: 50px;
    font-size: 18px!important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    background-image: url('/wp-content/uploads/magenta-button.png');
    font-weight: bold!important;
    padding-bottom: 5px!important;
}
/*remove border around single event*/
.evo_sin_page #evcal_list .eventon_list_event {
    border: 0px solid #EFEEEE;
}
.eventon_events_list .eventon_list_event .event_description, 
.eventon_events_list .eventon_list_event .event_description .evcal_desc_top {
    border: 0px!important;
}
/*remove single event padding*/
.eventon_main_section, #eventon_comments {
    padding: 0px;
}

/* single event big-button */
.eventon_full_description .eventon_desc_in a.big-button {
    padding: 0.6rem 1rem;
    text-transform: uppercase;
    font-weight: bold !important;
}
.eventon_full_description .eventon_desc_in a.big-button:hover {
    text-decoration: none !important;
    background: #23528c !important;
    color: #fff !important;
}

/*single event card rows*/
.evocard_row {
    padding: 0 0 1rem 0;
    display: flex;
    background: transparent;
    border-bottom: 1px solid #ccc;
}
body.single .evcal_evdata_row {
    margin: 10px 0 5px;
    height: 100%;
    padding: 10px 0 5px;
    border-radius: 0;
}
.evocard_box {
    background: transparent;
}
/*single event timezone suffix (typo in style is in the plugin)*/
em.evo_eventcard_tiemzone {
    margin-left: 0.6rem;
}

/*repeating event header single event page*/
.evose_repeat_header{
    display: none;
}
/* .eventon_events_list .evose_repeat_header p {
    background-color: #283b97;
}
.eventon_events_list .evose_repeat_header span.title {
    background-color: #0f145b;
    color: #ffffff;
} */

/*future dates as list*/
.evo_repeat_series_dates.clickable span {
    cursor: pointer;
    display: block;
}

/*single event styles*/
@media (min-width: 981px){
.single-ajde_events  #left-area {
	width: 100%;
	}
}

.single-ajde_events  #main-content .container:before {
    width: 0px;
}
.single-ajde_events  #sidebar {
	display:none;
}


/*blog page search bar style*/
.blog-filter .dp-dfg-search {
    float: left;
    margin-right: auto;
}
.blog-filter input.dp-dfg-search-input.search-clean {
    line-height: 2em;
    position: relative;
    overflow: hidden;
    padding: 0.5em 0em 0.5em 0.5em;
    border-top: 1px solid #e2e2e2;
    background-color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-size: 18px;
    border-bottom: 1px solid #e2e2e2;
    border-left: 1px solid #e2e2e2;
    border-right: 0px;
}

.blog-filter span.et-pb-icon.dp-dfg-search-icon {
    padding-left: 0px!important;
    margin-right: auto;
    width: 1.8em!important;
    background-color: #ffffff!important;
    border-bottom: 1px solid #e2e2e2;
    border-right: 1px solid #e2e2e2;
    border-top: 1px solid #e2e2e2;
}

.blog-filter input.dp-dfg-search-input.search-clean::placeholder {
	color:#212121
}

/*risk trial page add image before title*/
.risk-trial-header h1::before {
	content:'';
	background-image: url('/wp-content/uploads/risk-logo.png');
	background-repeat: no-repeat;
	padding-left: 30px; 
	display: block;
}


/*buttons on single events*/
a.big-button.bigblue, a.big-button.bigblue:hover {
    color: #FFFFFF!important;
    border-width: 0px!important;
    border-radius: 50px;
    font-size: 18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    background-image: url('/wp-content/uploads/magenta-button.png');
}


/* Tidio chat styles*/
#button.sidebar #button-body {
	background: #003a5d;
    box-shadow: rgb(0 0 0 / 50%) 0px 4px 24px;
	color: #003a5d;
}

/*menu column width*/
@media (min-width: 981px){
	.menu-col {
		width:90%!important;
	}
}


/*homepage robust risk section*/
@media only screen and (min-width: 1300px) {
	.homepage-first-section {
		height:730px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1299px) {
	.homepage-first-section {
		height:840px;
	}
}
@media only screen and (max-width: 767px) {
	.homepage-first-section {
		height:720px;
	}
}
.global-row-menu .et_pb_menu__wrap {
    height: 50px;
}

/*top account menu*/
.account-menu .et_pb_menu__wrap{
	float:right;
}
/*cart icon*/

#basketIcon a i {
			font-size: 1.8rem;
			padding: 5px 0 0 0;
		}
#basketIcon #basketBadge {
    font-size: 12px;
    background: #003a5d;
    color: #fff;
    padding: 0 5px;
    vertical-align: top;
    margin-left: -10px;
}
.account-menu .header{
	color:#fff;
}
/* .account-menu #lblCartCount {
    font-size: 12px;
    background: #ff0000;
    color: #fff;
    padding: 0 5px;
    vertical-align: top;
    margin-left: -10px;
}
.account-menu .badge {
  padding-left: 9px;
  padding-right: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  border-radius: 9px;
}

.account-menu .label-warning[href],
.account-menu .badge-warning[href] {
  background-color: #c67605;
} */

.account-menu .col-account {
	width:96%!important;
}
.account-menu .col-cart {
	width:4%!important;
}

.account-menu .col-account a {
	font-size: 15px !important;
}

.col-account {width: 96% !important;}
.col-cart {width: 4% !important;}




/*
div#page-container {
    padding-top: 0px!important;
}
header.et-l.et-l--header {
    top: 0px!important;
}
header.et_builder_inner_content.et_pb_gutters3, .et_pb_section.et_pb_section_0_tb_header.et_pb_sticky_module.et_section_regular{
	padding-top:0px!important;
	padding-bottom:0px!important;
}*/
/*@media (min-width: 981px){
header .et_pb_section {
    padding: 0% 0!important;
	height:106px!important;
}
}*/


div#et-main-area {
	padding-top:0px!important;
}

