/**
 * Base CSS used by the builder's layout, including rows
 * and columns. Any module specific global CSS should be
 * included in fl-builder-layout-modules.css.
 */

/* Grid
------------------------------------------------------ */

.fl-builder-content *,
.fl-builder-content *:before,
.fl-builder-content *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.fl-row:before,
.fl-row:after,
.fl-row-content:before,
.fl-row-content:after,
.fl-col-group:before,
.fl-col-group:after,
.fl-col:before,
.fl-col:after,
.fl-module:not([data-accepts]):before,
.fl-module:not([data-accepts]):after,
.fl-module-content:before,
.fl-module-content:after {
	display: table;
	content: " ";
}
.fl-row:after,
.fl-row-content:after,
.fl-col-group:after,
.fl-col:after,
.fl-module:not([data-accepts]):after,
.fl-module-content:after {
	clear: both;
}
.fl-clear {
	clear: both;
}

/* Rows
------------------------------------------------------ */

.fl-row,
.fl-row-content {
	margin-left: auto;
	margin-right: auto;
	min-width: 0;
}
.fl-row-content-wrap {
	position: relative;
}

/* Photo Bg */
.fl-builder-mobile .fl-row-bg-photo .fl-row-content-wrap {
	background-attachment: scroll;
}

/* Video and Embed Code Bg */
.fl-row-bg-video,
.fl-row-bg-video .fl-row-content,
.fl-row-bg-embed,
.fl-row-bg-embed .fl-row-content {
	position: relative;
}

.fl-row-bg-video .fl-bg-video,
.fl-row-bg-embed .fl-bg-embed-code {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}

.fl-row-bg-video .fl-bg-video video,
.fl-row-bg-embed .fl-bg-embed-code video {
	bottom: 0;
	left: 0px;
	max-width: none;
	position: absolute;
	right: 0;
	top: 0px;
}
.fl-row-bg-video .fl-bg-video video {
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
}
.fl-row-bg-video .fl-bg-video iframe,
.fl-row-bg-embed .fl-bg-embed-code iframe {
	pointer-events: none;
	width: 100vw;
  	height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  	max-width: none;
  	min-height: 100vh;
  	min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  	position: absolute;
  	top: 50%;
  	left: 50%;
	-ms-transform: translate(-50%, -50%); /* IE 9 */
	-webkit-transform: translate(-50%, -50%); /* Chrome, Safari, Opera */
  	transform: translate(-50%, -50%);
}
.fl-bg-video-fallback {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 0px;
	left: 0px;
	position: absolute;
	right: 0px;
	top: 0px;
}

/* Slideshow Bg */
.fl-row-bg-slideshow,
.fl-row-bg-slideshow .fl-row-content {
	position: relative;
}
.fl-row .fl-bg-slideshow {
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}
.fl-builder-edit .fl-row .fl-bg-slideshow * {
	bottom: 0;
	height: auto !important;
	left: 0;
	position: absolute !important;
	right: 0;
	top: 0;
}

/* Row Bg Overlay */
.fl-row-bg-overlay .fl-row-content-wrap:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-row-bg-overlay .fl-row-content {
	position: relative;
	z-index: 1;
}

/* Full Height Rows */
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	min-height: 100vh;
}
.fl-row-overlap-top .fl-row-content-wrap {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}
.fl-row-default-height .fl-row-content-wrap,
.fl-row-custom-height .fl-row-content-wrap {
	min-height: 0;
}

.fl-row-default-height .fl-row-content,
.fl-row-full-height .fl-row-content,
.fl-row-custom-height .fl-row-content {
  -webkit-box-flex: 1 1 auto;
  	 -moz-box-flex: 1 1 auto;
  	  -webkit-flex: 1 1 auto;
  		  -ms-flex: 1 1 auto;
  			  flex: 1 1 auto;
}
.fl-row-default-height .fl-row-full-width.fl-row-content,
.fl-row-full-height .fl-row-full-width.fl-row-content,
.fl-row-custom-height .fl-row-full-width.fl-row-content {
	max-width: 100%;
	width: 100%;
}

/* Full height align center */
.fl-row-default-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-center .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-center .fl-row-content-wrap {
	-webkit-align-items: center;
	-webkit-box-align: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-align: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
}

/* Full height align bottom */
.fl-row-default-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-full-height.fl-row-align-bottom .fl-row-content-wrap,
.fl-row-custom-height.fl-row-align-bottom .fl-row-content-wrap {
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-end;
	-webkit-box-align: end;
	-webkit-box-pack: end;
	-ms-flex-align: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	align-items: flex-end;
}

/* Column Groups
------------------------------------------------------ */
.fl-col-group-equal-height {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.fl-col-group-equal-height.fl-col-group-has-child-loading {
	flex-wrap: nowrap;
}
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	display: flex;
	flex: 1 1 auto;
}
.fl-col-group-equal-height .fl-col-content {
	flex-direction: column;
	flex-shrink: 1;
	min-width: 1px;
	max-width: 100%;
	width: 100%;
}
.fl-col-group-equal-height:before,
.fl-col-group-equal-height .fl-col:before,
.fl-col-group-equal-height .fl-col-content:before,
.fl-col-group-equal-height:after,
.fl-col-group-equal-height .fl-col:after,
.fl-col-group-equal-height .fl-col-content:after{
	content: none;
}

/* Equal height align top */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-top .fl-col-content {
	justify-content: flex-start;
}

/* Equal height align center */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-center .fl-col-content {
	justify-content: center;
}

/* Equal height align bottom */
.fl-col-group-nested.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content,
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
	justify-content: flex-end;
}

.fl-col-group-equal-height.fl-col-group-align-center .fl-col-group {
	width: 100%;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	float: left;
	min-height: 1px;
}

/* Column Bg Overlay */
.fl-col-bg-overlay .fl-col-content {
	position: relative;
}
.fl-col-bg-overlay .fl-col-content:after {
	border-radius: inherit;
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.fl-col-bg-overlay .fl-module {
	position: relative;
	z-index: 2;
}

/* Templates
------------------------------------------------------ */

.single:not(.woocommerce).single-fl-builder-template .fl-content {
	width: 100%;
}

/* Shapes & Patterns
------------------------------------------------------- */
.fl-builder-layer {
	position: absolute;
	top:0;
	left:0;
	right: 0;
	bottom: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}
.fl-builder-shape-layer {
	z-index: 0;
}
.fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer {
	z-index: 1;
}
.fl-row-bg-overlay .fl-builder-shape-layer.fl-builder-bottom-edge-layer {
	z-index: 2;
}
.fl-row-has-layers .fl-row-content {
	z-index: 1;
}
.fl-row-bg-overlay .fl-row-content {
	z-index: 2;
}

.fl-builder-layer > * {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
}
.fl-builder-layer + .fl-row-content {
	position: relative;
}
.fl-builder-layer .fl-shape {
	fill: #aaa;
	stroke: none;
	stroke-width: 0;
	width:100%;
}
/**
Fix ipad parallax issue on safari
https://core.trac.wordpress.org/ticket/48802
https://core.trac.wordpress.org/ticket/49285
https://github.com/WordPress/gutenberg/issues/17718
*/
@supports (-webkit-touch-callout: inherit) {
  .fl-row.fl-row-bg-parallax .fl-row-content-wrap,
  .fl-row.fl-row-bg-fixed .fl-row-content-wrap {
    background-position: center !important;
    background-attachment: scroll !important;
  }
}

@supports (-webkit-touch-callout: none) {
	.fl-row.fl-row-bg-fixed .fl-row-content-wrap {
		background-position: center !important;
		background-attachment: scroll !important;
	}
}
/**
 * Base CSS used by all (or many) modules. This file should
 * not contain any generic layout CSS that doesn't apply to
 * modules. That belongs in fl-builder-layout.css.
 */

/* Utilities
------------------------------------------------------ */

.fl-clearfix:before,
.fl-clearfix:after {
	display: table;
	content: " ";
}
.fl-clearfix:after {
	clear: both;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}

/* Buttons
------------------------------------------------------ */

.fl-builder-content a.fl-button,
.fl-builder-content a.fl-button:visited {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	display: inline-block;
	font-size: 16px;
	font-weight: normal;
	line-height: 18px;
	padding: 12px 24px;
	text-decoration: none;
	text-shadow: none;
}
.fl-builder-content .fl-button:hover {
	text-decoration: none;
}
.fl-builder-content .fl-button:active {
	position: relative;
	top: 1px;
}
.fl-builder-content .fl-button-width-full .fl-button {
	display: block;
	text-align: center;
}
.fl-builder-content .fl-button-width-custom .fl-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.fl-builder-content .fl-button-left {
	text-align: left;
}
.fl-builder-content .fl-button-center {
	text-align: center;
}
.fl-builder-content .fl-button-right {
	text-align: right;
}
.fl-builder-content .fl-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.fl-builder-content .fl-button i.fl-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.fl-builder-content .fl-button-has-icon .fl-button-text {
	vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.fl-icon-wrap {
	display: inline-block;
}
.fl-icon {
	display: table-cell;
	vertical-align: middle;
}
.fl-icon a {
	text-decoration: none;
}
.fl-icon i {
	float: right;
	height: auto;
	width: auto;
}
.fl-icon i:before {
	border: none !important;
	height: auto;
	width: auto;
}
.fl-icon-text {
	display: table-cell;
	text-align: left;
	padding-left: 15px;
	vertical-align: middle;
}
.fl-icon-text-empty {
	display: none;
}
.fl-icon-text *:last-child {
	margin: 0 !important;
	padding: 0 !important;
}
.fl-icon-text a {
	text-decoration: none;
}
.fl-icon-text span {
	display: block;
}
.fl-icon-text span.mce-edit-focus {
	min-width: 1px;
}

/* Photos
------------------------------------------------------ */

.fl-module img {
	max-width: 100%;
}
.fl-photo {
	line-height: 0;
	position: relative;
}
.fl-photo-align-left {
	text-align: left;
}
.fl-photo-align-center {
	text-align: center;
}
.fl-photo-align-right {
	text-align: right;
}
.fl-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.fl-photo-img-svg {
	width: 100%;
}
.fl-photo-content img {
	display: inline;
	height: auto;
	max-width: 100%;
}
.fl-photo-crop-circle img {
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}
.fl-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fl-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.fl-photo-caption-hover {
	background: rgba(0,0,0,0.7);
	bottom: 0;
	color: #fff;
	left: 0;
	opacity: 0;
	filter: alpha(opacity = 0);
	padding: 10px 15px;
	position: absolute;
	right: 0;
	-webkit-transition:opacity 0.3s ease-in;
	-moz-transition:opacity 0.3s ease-in;
	transition:opacity 0.3s ease-in;
}
.fl-photo-content:hover .fl-photo-caption-hover {
	opacity: 100;
	filter: alpha(opacity = 100);
}

/* Pagination
------------------------------------------------------ */

.fl-builder-pagination,
.fl-builder-pagination-load-more {
	padding: 40px 0;
}
.fl-builder-pagination ul.page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
.fl-builder-pagination li {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;
}
.fl-builder-pagination li a.page-numbers,
.fl-builder-pagination li span.page-numbers {
	border: 1px solid #e6e6e6;
	display: inline-block;
	padding: 5px 10px;
	margin: 0 0 5px;
}
.fl-builder-pagination li a.page-numbers:hover,
.fl-builder-pagination li span.current {
	background: #f5f5f5;
	text-decoration: none;
}

/* Slideshows
------------------------------------------------------ */

.fl-slideshow,
.fl-slideshow * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;

}
.fl-slideshow .fl-slideshow-image img {
	max-width: none !important;
}
.fl-slideshow-social {
	line-height: 0 !important;
}
.fl-slideshow-social * {
	margin: 0 !important;
}

/* Sliders
------------------------------------------------------ */

.fl-builder-content .bx-wrapper .bx-viewport {
	background: transparent;
	border: none;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	left: 0;
}

/* Lightbox
------------------------------------------------------ */

.mfp-wrap button.mfp-arrow,
.mfp-wrap button.mfp-arrow:active,
.mfp-wrap button.mfp-arrow:hover,
.mfp-wrap button.mfp-arrow:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 50%;
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
}
.mfp-wrap .mfp-close,
.mfp-wrap .mfp-close:active,
.mfp-wrap .mfp-close:hover,
.mfp-wrap .mfp-close:focus {
	background: transparent !important;
	border: none !important;
	outline: none;
	position: absolute;
	top: 0;
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
}
.admin-bar .mfp-wrap .mfp-close,
.admin-bar .mfp-wrap .mfp-close:active,
.admin-bar .mfp-wrap .mfp-close:hover,
.admin-bar .mfp-wrap .mfp-close:focus {
	top: 32px!important;
}
img.mfp-img {
	padding: 0;
}
.mfp-counter {
	display: none;
}

.mfp-wrap .mfp-preloader.fa {
	font-size: 30px;
}

/* Form Fields
------------------------------------------------------ */

.fl-form-field {
	margin-bottom: 15px;
}
.fl-form-field input.fl-form-error {
	border-color: #DD6420;
}
.fl-form-error-message {
	clear: both;
	color: #DD6420;
	display: none;
	padding-top: 8px;
	font-size: 12px;
	font-weight: lighter;
}
.fl-form-button-disabled {
	opacity: 0.5;
}

/* Animations
------------------------------------------------------ */

.fl-animation {
	opacity: 0;
}
body.fl-no-js .fl-animation {
	opacity: 1;
}
.fl-builder-preview .fl-animation,
.fl-builder-edit .fl-animation,
.fl-animated {
	opacity: 1;
}
.fl-animated {
	animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	-ms-filter: "alpha(opacity=0)";
	transition: all 0.2s ease-out;
	-webkit-transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1! important;
    -ms-filter: "alpha(opacity=100)";
}
.fl-button.fl-button-icon-animation i.fl-button-icon-after {
	margin-left: 0px !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-after {
	margin-left: 10px !important;
}
.fl-button.fl-button-icon-animation i.fl-button-icon-before {
	margin-right: 0 !important;
}
.fl-button.fl-button-icon-animation:hover i.fl-button-icon-before {
	margin-right: 20px !important;
    margin-left: -10px;
}
@media (max-width: 1200px) { /**
 * Styles needed for the large breakpoint.
 */
 }@media (max-width: 992px) { /* Columns
------------------------------------------------------ */

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-medium-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
 }@media (max-width: 768px) { /* Rows
------------------------------------------------------ */

.fl-row-content-wrap {
	background-attachment: scroll !important;
}
.fl-row-bg-parallax .fl-row-content-wrap {
	background-attachment: scroll !important;
	background-position: center center !important;
}

/* Column Groups
------------------------------------------------------ */

/* Equal Heights */
.fl-col-group.fl-col-group-equal-height {
	display: block;
}
.fl-col-group.fl-col-group-equal-height.fl-col-group-custom-width {
	display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

/* Reversed Responsive Stacking */
.fl-col-group.fl-col-group-responsive-reversed {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap-reverse;
	flex-wrap: wrap-reverse;
	flex-direction: row-reverse;
}
.fl-col-group.fl-col-group-responsive-reversed .fl-col:not(.fl-col-small-custom-width) {
	flex-basis: 100%;
	width: 100% !important;
}
.fl-col-group.fl-col-group-medium-reversed:not(.fl-col-group-responsive-reversed) {
	display: unset;
	display: unset;
	-webkit-flex-wrap: unset;
	flex-wrap: unset;
	flex-direction: unset;
}

/* Columns
------------------------------------------------------ */

.fl-col {
	clear: both;
	float: none;
	margin-left: auto;
	margin-right: auto;
	width: auto !important;
}
.fl-col-small:not(.fl-col-small-full-width) {
	max-width: 400px;
}
.fl-block-col-resize {
	display:none;
}
/* Rows
------------------------------------------------------ */

.fl-row[data-node] .fl-row-content-wrap {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
.fl-row[data-node] .fl-bg-video,
.fl-row[data-node] .fl-bg-slideshow {
	left: 0;
	right: 0;
}

/* Columns
------------------------------------------------------ */

.fl-col[data-node] .fl-col-content {
	margin: 0;
	padding-left: 0;
	padding-right: 0;
}
 }@media (min-width: 1201px) {
	html .fl-visible-large:not(.fl-visible-desktop),
	html .fl-visible-medium:not(.fl-visible-desktop),
	html .fl-visible-mobile:not(.fl-visible-desktop) {
		display: none;
	}
}

@media (min-width: 993px) and (max-width: 1200px) {
	html .fl-visible-desktop:not(.fl-visible-large),
	html .fl-visible-medium:not(.fl-visible-large),
	html .fl-visible-mobile:not(.fl-visible-large) {
		display: none;
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	html .fl-visible-desktop:not(.fl-visible-medium),
	html .fl-visible-large:not(.fl-visible-medium),
	html .fl-visible-mobile:not(.fl-visible-medium) {
		display: none;
	}
}

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1200px;
}
.fl-row-content-wrap {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}
.fl-module-content, .fl-module:where(.fl-module:not(:has(> .fl-module-content))) {
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }




.fl-node-61653572a928d > .fl-row-content-wrap {
	background-color: #000000;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-61653572a928d > .fl-row-content-wrap {
	margin-right:-20px;
	margin-bottom:100px;
	margin-left:-20px;
}
 .fl-node-61653572a928d > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-61653572a928d.fl-row > .fl-row-content-wrap {
	padding-top:79px;
}
}





 .fl-node-61653572a9291 > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-61653572a9291 > .fl-row-content-wrap {
	padding-top:20px;
}





.fl-animated.fl-slide-in-down {
	animation: fl-slide-in-down 1s ease;
	-webkit-animation: fl-slide-in-down 1s ease;
}
@-webkit-keyframes fl-slide-in-down {
  from {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-slide-in-down {
  from {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}




















.fl-node-zy5q4oanlc3r.fl-row-fixed-width, .fl-node-zy5q4oanlc3r .fl-row-fixed-width {
	max-width: 1500px;
}
@media ( max-width: 768px ) {
 .fl-node-zy5q4oanlc3r.fl-row > .fl-row-content-wrap {
	padding-bottom:0px;
}
}





.fl-node-lk7bd835zw0q.fl-row-fixed-width, .fl-node-lk7bd835zw0q .fl-row-fixed-width {
	max-width: 1500px;
}
@media ( max-width: 768px ) {
 .fl-node-lk7bd835zw0q.fl-row > .fl-row-content-wrap {
	padding-bottom:0px;
}
}















.fl-node-dcy0a5so1gfr > .fl-row-content-wrap {
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-dcy0a5so1gfr.fl-row-fixed-width, .fl-node-dcy0a5so1gfr .fl-row-fixed-width {
	max-width: 1470px;
}
 .fl-node-dcy0a5so1gfr > .fl-row-content-wrap {
	margin-top:35px;
	margin-right:25px;
	margin-bottom:50px;
	margin-left:25px;
}
 .fl-node-dcy0a5so1gfr > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:40px;
}
@media ( max-width: 768px ) {
 .fl-node-dcy0a5so1gfr.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-left:10px;
}
}










.fl-node-4v5frgoq82ti > .fl-row-content-wrap {
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-4v5frgoq82ti.fl-row-fixed-width, .fl-node-4v5frgoq82ti .fl-row-fixed-width {
	max-width: 1470px;
}
 .fl-node-4v5frgoq82ti > .fl-row-content-wrap {
	margin-top:35px;
	margin-right:25px;
	margin-bottom:50px;
	margin-left:25px;
}
 .fl-node-4v5frgoq82ti > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:40px;
}
@media ( max-width: 768px ) {
 .fl-node-4v5frgoq82ti.fl-row > .fl-row-content-wrap {
	padding-right:10px;
	padding-left:10px;
}
}










.fl-node-sqldk4t15iuc.fl-row-fixed-width, .fl-node-sqldk4t15iuc .fl-row-fixed-width {
	max-width: 1500px;
}
 .fl-node-sqldk4t15iuc > .fl-row-content-wrap {
	margin-top:35px;
	margin-right:25px;
	margin-left:25px;
}










.fl-node-doa1xkes5u3z.fl-row-fixed-width, .fl-node-doa1xkes5u3z .fl-row-fixed-width {
	max-width: 1600px;
}
 .fl-node-doa1xkes5u3z > .fl-row-content-wrap {
	margin-right:25px;
	margin-left:25px;
}




.fl-node-61653572a928f {
	width: 100%;
}




.fl-node-61653572a9293 {
	width: 100%;
}




.fl-node-61653572a92a1 {
	width: 33.333%;
}




.fl-node-61653572a92a9 {
	width: 100%;
}




.fl-node-61653572a92af {
	width: 100%;
}




.fl-node-61653572a92b2 {
	width: 100%;
}




.fl-node-61653572a92c8 {
	width: 100%;
}




.fl-node-61653572a92d4 {
	width: 20%;
}




.fl-node-o4i9ek3ajz5l {
	width: 100%;
}




.fl-node-cyb6gekhq309 {
	width: 100%;
}




.fl-node-uqb0i5xwey9k {
	width: 100%;
}




.fl-node-x8smzykrfilh {
	width: 100%;
}




.fl-node-74ochx82qra5 {
	width: 100%;
}




.fl-node-r35qiu9kspyb {
	width: 100%;
}




.fl-node-04ew3f5x9jo8 {
	width: 22%;
}




.fl-node-icx8y24mqtkj {
	width: 100%;
}




.fl-node-g1zkbd72t58n {
	width: 100%;
}




.fl-node-xp0omt3ejwnl {
	width: 100%;
}




.fl-node-j5gnu1eybz89 {
	width: 50%;
}




.fl-node-uo9j8wse5vq2 {
	width: 50%;
}




.fl-node-6dgtwy120csm {
	width: 50%;
}




.fl-node-zxjlcairup7q {
	width: 50%;
}




.fl-node-q64fbit302ac {
	width: 50%;
}




.fl-node-mqw9p6baihcr {
	width: 100%;
}




.fl-node-u46h8fcpwnsy {
	width: 100%;
}




.fl-node-p1ea6gvc8iqk {
	width: 50.01%;
}




.fl-node-3byc5mgou28q {
	width: 53.05%;
}




.fl-node-z47rmbt3njx9 {
	width: 53.05%;
}




.fl-node-2wpzri69jok0 {
	width: 100%;
}




.fl-node-m21ozdfihy0x {
	width: 100%;
}




.fl-node-nhuea3jsitqm {
	width: 47.97%;
}




.fl-node-od70cgnmhxeu {
	width: 100%;
}




.fl-node-is7lbk2pa364 {
	width: 53.62%;
}




.fl-node-g5z1ku6dr8ha {
	width: 22%;
}




.fl-node-hv4efs8jbzoi {
	width: 20%;
}




.fl-node-3c9bpdft0h6z {
	width: 100%;
}




.fl-node-970as54qjpmu {
	width: 100%;
}




.fl-node-w4g0blvkmxdn {
	width: 100%;
}




.fl-node-tnxuip16sqk8 {
	width: 100%;
}




.fl-node-p0t4zdqeg3a2 {
	width: 12.97%;
}
 .fl-node-p0t4zdqeg3a2 > .fl-col-content {
	margin-top:20px;
}




.fl-node-vaourhzkt3ib {
	width: 100%;
}




.fl-node-1o0sqrpvxad8 {
	width: 21.99%;
}




.fl-node-q1d4mcekpv9a {
	width: 12.97%;
}
 .fl-node-q1d4mcekpv9a > .fl-col-content {
	margin-top:20px;
}




.fl-node-b3qyin8c91ve {
	width: 22%;
}




.fl-node-t269skg54lnq {
	width: 21.99%;
}




.fl-node-61653572a92a7 {
	width: 33.333%;
}




.fl-node-61653572a92da {
	width: 20%;
}




.fl-node-dqm9p652ohgk {
	width: 78%;
}




.fl-node-bw7u65htzkqo {
	width: 50%;
}




.fl-node-flsh6r04p89j {
	width: 50%;
}




.fl-node-jy58bagwkn2t {
	width: 50%;
}




.fl-node-1olq76zcw9ks {
	width: 50%;
}




.fl-node-9z0yoancseg5 {
	width: 50%;
}




.fl-node-7lji4xk85m0b {
	width: 46.95%;
}




.fl-node-ipntboxvew3f {
	width: 46.95%;
}




.fl-node-bsrhuj0py82e {
	width: 49.99%;
}




.fl-node-7j69egdrws0p {
	width: 52.03%;
}




.fl-node-pdnj2vw6arte {
	width: 46.38%;
}




.fl-node-vmb80gfk4syh {
	width: 78%;
}




.fl-node-rwoxpm31jqb0 {
	width: 20%;
}




.fl-node-txpy0k5n7zoq {
	width: 17.75%;
}




.fl-node-dr3xpqui82wf {
	width: 78.01%;
}




.fl-node-urkjosq54y61 {
	width: 17.75%;
}




.fl-node-0ork1jn8isut {
	width: 78%;
}




.fl-node-f6p4ic9kmeg3 {
	width: 78.01%;
}




.fl-node-61653572a92a5 {
	width: 33.333%;
}




.fl-node-61653572a92d9 {
	width: 20%;
}




.fl-node-45yvrnjzsqa3 {
	width: 20%;
}




.fl-node-pe95lv7om3du {
	width: 13.77%;
}
 .fl-node-pe95lv7om3du > .fl-col-content {
	margin-top:20px;
}




.fl-node-luvq6w50yp47 {
	width: 13.77%;
}
 .fl-node-luvq6w50yp47 > .fl-col-content {
	margin-top:20px;
}




.fl-node-61653572a92de {
	width: 20%;
}




.fl-node-pgtc7ojzq3uw {
	width: 20%;
}




.fl-node-b4nedukj93ro {
	width: 16.97%;
}




.fl-node-jpzv6ftk59qs {
	width: 16.97%;
}




.fl-node-61653572a92dd {
	width: 20%;
}




.fl-node-hga41dxitm8n {
	width: 20%;
}




.fl-node-59wazvpk0f4g {
	width: 15.28%;
}
.fl-node-59wazvpk0f4g > .fl-col-content {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1d1d1;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
 .fl-node-59wazvpk0f4g > .fl-col-content {
	margin-top:20px;
}




.fl-node-0rzdpwbf5hgl {
	width: 15.28%;
}
.fl-node-0rzdpwbf5hgl > .fl-col-content {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1d1d1;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
}
 .fl-node-0rzdpwbf5hgl > .fl-col-content {
	margin-top:20px;
}




.fl-node-g03swlrxb4np {
	width: 23.26%;
}




.fl-node-t39qkj85bezm {
	width: 23.26%;
}
 .fl-node-61653572a9290 > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
}
/**
 * This file should contain frontend styles that 
 * will be applied to all module instances.
 */@media (max-width: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }


.fl-node-61653572a929e .pp-spacer-module {
    height: 150px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-61653572a929e .pp-spacer-module {
        height: 75px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-61653572a929e .pp-spacer-module {
        height: 15px;
    }
}
.fl-number,
.fl-number .fl-number-circle-container {
	margin: 0 auto;
}

.fl-number-before-text,
.fl-number-after-text {
	display: block;
}
.fl-number-before-text {
	margin-bottom: 10px;
}
.fl-number-after-text {
	margin-top: 10px;
}
.fl-number-string {
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
}

.fl-number .fl-number-text,
.fl-number .fl-number-circle-container {
	position: relative;
	z-index: 10;
	text-align: center;
}

.fl-number.fl-number-bars .fl-number-text {
	text-align: left;
}
.fl-number .fl-number-bar {
	text-align: right;
	padding: 0;
}

.fl-number .fl-number-position-above .fl-number-bar {
	margin-top: 5px;
}
.fl-number .fl-number-position-below .fl-number-bar {
	margin-bottom: 5px;
}

.fl-number .svg-container {
	display: inline-block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: auto;
	padding-bottom: 100%;
}

.fl-number .svg-container .svg {
	position: absolute;
	overflow: visible;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Bar */
.fl-number-bars .fl-number-bars-container {
	width: 100%;
	min-height: 10px;
}
.fl-number-bars .fl-number-bar {
	width: 0;
	min-height: 10px;
}
.fl-number-bars .fl-number-string {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}





.fl-node-61653572a92a3 .fl-number .fl-number-text .fl-number-string, .fl-node-61653572a92a3 .fl-number .fl-number-text .fl-number-string span {
	font-size: 80px;
}
.fl-animated.fl-fade-left {
	animation: fl-fade-left 1s ease;
	-webkit-animation: fl-fade-left 1s ease;
}
@-webkit-keyframes fl-fade-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-left {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}





.fl-node-61653572a92a4 .fl-number .fl-number-text .fl-number-string, .fl-node-61653572a92a4 .fl-number .fl-number-text .fl-number-string span {
	font-size: 80px;
}
.fl-animated.fl-fade-right {
	animation: fl-fade-right 1s ease;
	-webkit-animation: fl-fade-right 1s ease;
}
@-webkit-keyframes fl-fade-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-right {
  from {
    opacity: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}





.fl-node-61653572a92a6 .fl-number .fl-number-text .fl-number-string, .fl-node-61653572a92a6 .fl-number .fl-number-text .fl-number-string span {
	font-size: 80px;
}
.fl-animated.fl-fade-down {
	animation: fl-fade-down 1s ease;
	-webkit-animation: fl-fade-down 1s ease;
}
@-webkit-keyframes fl-fade-down {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fl-fade-down {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
/**
 * This file should contain frontend styles that 
 * will be applied to all module instances.
 */@media (max-width: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }.fl-node-61653572a92ad {
    postion: relative;
}
.fl-node-61653572a92ad .pp-dotnav {
    position: fixed;
    right: 40px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}
.fl-node-61653572a92ad .pp-dotnav .pp-dots {
    margin: 0;
    padding: 0;
}
.fl-node-61653572a92ad .pp-dotnav .pp-dot {
    list-style-type: none;
    line-height: 0;
    margin: 14px 0;
    position: relative;
    text-align: right;
}
.fl-node-61653572a92ad .pp-dotnav .pp-dot a {
    display: inline-block;
    border: 0;
    outline: 0 !important;
    text-decoration: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.fl-node-61653572a92ad .pp-dotnav .pp-dot a span {
    display: inline-block;
    float: right;
}
.fl-node-61653572a92ad .pp-dotnav .pp-dot a .pp-dot-circle {
	    border: 0;
    border-width: 2px;
    border-color: #444444;
    border-style: solid;
    border-radius: 100%;
    position: relative;
    top: 5px;
    height: 16px;
    width: 16px;
	    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.fl-node-61653572a92ad .pp-dotnav .pp-dot a:hover .pp-dot-circle {
			background-color: rgba(255,255,255,0);
	    border-color: #d1d1d1;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.fl-node-61653572a92ad .pp-dotnav .pp-dot.active .pp-dot-circle {
			background-color: rgba(255,255,255,0);
	    border-color: #f7a246;
}
.fl-node-61653572a92ad .pp-dotnav .pp-dot .pp-label {
    opacity: 0;
			background-color: #ffffff;
	    color: #444444;
    border-radius: 2px;
    font-size: 13px;
    line-height: 1;
    margin-right: 10px;
    padding: .4em .5em;
    display: inline-block;
    position: relative;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    -moz-transition: opacity 0.3s ease, visibility 0.3s ease;
    -ms-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.fl-node-61653572a92ad .pp-dotnav .pp-dot .pp-label:after {
    content: "";
    display: block;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #ffffff;
    margin-top: -5px;
    position: absolute;
    top: 50%;
    right: -5px;
}
.fl-node-61653572a92ad .pp-dotnav .pp-dot a:hover .pp-label {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

@media only screen and (max-width: 768px) {
    .fl-node-61653572a92ad .pp-dotnav {
        display: none;
    }
}
 .fl-node-61653572a92ad > .fl-module-content {
	margin-right:100px;
}
@media (max-width: 768px) { .fl-node-61653572a92ad > .fl-module-content { margin-right:20px; } }


.fl-node-61653572a92b0 .pp-spacer-module {
    height: px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-61653572a92b0 .pp-spacer-module {
        height: 50px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-61653572a92b0 .pp-spacer-module {
        height: 10px;
    }
}
.bb-heading-input.input-small {
	width: 46px !important;
}

.pp-heading-content {
	overflow: hidden;
}

.pp-heading-content .pp-heading-link {
	text-decoration: none;
}
.pp-heading-content span.heading-title {
	display: block;
}
.pp-heading-content .pp-heading.pp-separator-inline .heading-title {
	display: inline-block;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span {
	position: relative;
	display: inline-block;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before,
.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	border-width: 0;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
	right: 100%;
}

.pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
	left: 100%;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-left .heading-title span {
	padding-left: 0 !important;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-right .heading-title span {
	padding-right: 0 !important;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-left .heading-title span:before {
	display: none;
}

.pp-heading-content .pp-heading.pp-separator-inline.pp-right .heading-title span:after {
	display: none;
}

.pp-heading-content .pp-heading.pp-separator--inline {
	display: flex;
	align-items: center;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator {
	flex: 1;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator span {
	display: block;
}
.pp-heading-content .pp-heading.pp-separator--inline.pp-left > .pp-heading-separator:first-of-type,
.pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:last-of-type {
	display: none;
}
.rtl .pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:last-of-type {
    display: block;
}
.rtl .pp-heading-content .pp-heading.pp-separator--inline.pp-right > .pp-heading-separator:first-of-type {
    display: none;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type span {
	margin: 0 0 0 auto;
}
.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type span {
	margin: 0 auto 0 0;
}

.pp-heading-content .pp-heading-separator {
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: hidden;
}

.pp-heading-content .pp-heading-separator.line_with_icon:before {
	right: 50%;
	left: auto;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-left:before {
	display: none;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-right:after {
	display: none;
}

.pp-heading-content .pp-heading-separator.line_with_icon:after {
	left: 50%;
	right: auto;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}

.pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

.pp-heading-content .pp-heading-separator.line_with_icon:before,
.pp-heading-content .pp-heading-separator.line_with_icon:after {
	content: "";
	position: absolute;
	bottom: 50%;
	border-width: 0;
	top: 50%;
}

.pp-heading-content .pp-heading-separator .heading-icon-image {
	vertical-align: middle;
	box-shadow: none !important;
	max-width: 100%;
}

.pp-heading-content .pp-heading-separator .pp-separator-line {
	max-width: 100%;
	display: block;
}

.pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
}

.pp-heading-content .pp-heading-separator.icon_only span {
	display: inline-block;
}

@media only screen and (max-width: 768px) {
	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-left .heading-title span {
		padding-left: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-right .heading-title span {
		padding-right: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-left .heading-title span:before {
		display: none;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-tablet-right .heading-title span:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-right:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-left:after {
		left: 2%;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-tablet-right:before {
		right: 2%;
	}
}

@media only screen and (max-width: 480px) {
	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-left .heading-title span {
		padding-left: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-right .heading-title span {
		padding-right: 0 !important;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-left .heading-title span:before {
		display: none;
	}

	.pp-heading-content .pp-heading.pp-separator-inline.pp-mobile-right .heading-title span:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:before {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-right:after {
		display: none;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-left:after {
		left: 2%;
	}

	.pp-heading-content .pp-heading-separator.line_with_icon.pp-mobile-right:before {
		right: 2%;
	}
}@media (max-width: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }
div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-61653572a92b3 .pp-heading-content {
	text-align: center;
}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading {
		}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-61653572a92b3 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
									display: inline;
	}
div.fl-node-61653572a92b3 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-61653572a92b3 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-61653572a92b3 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-61653572a92b3 .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-61653572a92b3 .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-61653572a92b3 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-61653572a92b3 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 200px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 200px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 200px;
			border-bottom-style: solid;
			border-bottom-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-61653572a92b3 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-61653572a92b3 .pp-heading-content .pp-sub-heading,
div.fl-node-61653572a92b3 .pp-heading-content .pp-sub-heading p {
	}

div.fl-node-61653572a92b3 .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 200px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 4px;
			border-bottom-color: #f7a246;
			width: 200px;
			margin: 0 auto;
	}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 992px) {
	div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-61653572a92b3 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-61653572a92b3 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-61653572a92b3 .pp-heading-content .pp-heading .heading-title {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 70px;
	letter-spacing: -0.5px;
}
div.fl-node-61653572a92b3 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-61653572a92b3 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-61653572a92b3 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-61653572a92b3 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-61653572a92b3 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-61653572a92b3 .pp-heading-content .pp-heading .heading-title {
		font-size: 55px;
	}
}
@media(max-width: 768px) {
	div.fl-node-61653572a92b3 .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
 .fl-node-61653572a92b3 > .fl-module-content {
	margin-bottom:70px;
}
@media (max-width: 768px) { .fl-node-61653572a92b3 > .fl-module-content { margin-bottom:20px; } }
div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-61653572a92b4 .pp-heading-content {
	text-align: center;
}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading {
		}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-61653572a92b4 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
									display: inline;
	}
div.fl-node-61653572a92b4 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-61653572a92b4 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-61653572a92b4 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-61653572a92b4 .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-61653572a92b4 .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-61653572a92b4 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-61653572a92b4 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 200px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 200px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 200px;
			border-bottom-style: solid;
			border-bottom-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-61653572a92b4 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-61653572a92b4 .pp-heading-content .pp-sub-heading,
div.fl-node-61653572a92b4 .pp-heading-content .pp-sub-heading p {
	}

div.fl-node-61653572a92b4 .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 200px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 4px;
			border-bottom-color: #f7a246;
			width: 200px;
			margin: 0 auto;
	}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 992px) {
	div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-61653572a92b4 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-61653572a92b4 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-61653572a92b4 .pp-heading-content .pp-heading .heading-title {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 70px;
	letter-spacing: -0.5px;
}
div.fl-node-61653572a92b4 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-61653572a92b4 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-61653572a92b4 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-61653572a92b4 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-61653572a92b4 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-61653572a92b4 .pp-heading-content .pp-heading .heading-title {
		font-size: 55px;
	}
}
@media(max-width: 768px) {
	div.fl-node-61653572a92b4 .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
 .fl-node-61653572a92b4 > .fl-module-content {
	margin-bottom:70px;
}
@media (max-width: 768px) { .fl-node-61653572a92b4 > .fl-module-content { margin-bottom:20px; } }


.fl-node-61653572a92c6 .pp-spacer-module {
    height: 50px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-61653572a92c6 .pp-spacer-module {
        height: 25px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-61653572a92c6 .pp-spacer-module {
        height: 5px;
    }
}
/**
 * This file should contain frontend styles that
 * will be applied to all module instances.
 */

.bb-info-banner-input.input-small {
 width: 46px !important;
}

.pp-info-banner-content .banner-button,
.pp-info-banner-content .banner-button:hover {
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


.pp-info-banner-content .info-banner-wrap:not([data-animation-class="none"]) {
	opacity: 0;
}

.fl-module-box .fl-module-pp-info-banner {
    width: 100%;
}@media (max-width: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }.fl-node-61653572a92d6 .pp-info-banner-content {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
}
	.fl-node-61653572a92d6 .pp-info-banner-content .pp-info-banner-bg {
			    background-image: url('https://demosite.formulatrix.com/wp-content/uploads/2021/09/Thumbnail-Icon-150px-crystallization-2.svg');
	    	    	    background-size: contain;
	    	    	    background-repeat: no-repeat;
	    	    background-position: center center;
		position: absolute;
		width: 100%;
		height: 100%;
		-webkit-transition: all 0.5s ease;
	    -moz-transition: all 0.5s ease;
	    -ms-transition: all 0.5s ease;
	    -o-transition: all 0.5s ease;
	    transition: all 0.5s ease;
	    will-change: transform;
	}
	.fl-node-61653572a92d6 .pp-info-banner-content:hover .pp-info-banner-bg {
        		-webkit-transform: scale(1.1);
	    -moz-transform: scale(1.1);
	    -o-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
	    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
	    transform: scale(1.1);
        	}

.fl-node-61653572a92d6 .pp-info-banner-content .pp-info-banner-bg:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: transparent;
}

.fl-node-61653572a92d6 .pp-info-banner-content .pp-info-banner-inner {
    display: table;
    width: 100%;
    height: 100%;
}

.fl-node-61653572a92d6 .pp-info-banner-content .info-banner-wrap {
    display: table-cell;
    vertical-align: middle;
	position: relative;
	z-index: 5;
}

.fl-node-61653572a92d6 .pp-info-banner-content .info-banner-wrap.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-61653572a92d6 .pp-info-banner-content .info-banner-wrap.info-right {
	text-align: right;
}

.fl-node-61653572a92d6 .pp-info-banner-content .info-banner-wrap.info-center {
	text-align: center;
}

.fl-node-61653572a92d6 .pp-info-banner-content .banner-title {
    	color: #333333;
        	margin-bottom: 5px;
            border-style: no-border;
        border-color: #f3f3f3;
    border-width: 0;
    border-width: 1px;
}


.fl-node-61653572a92d6 .pp-info-banner-content .banner-description {
    	color: #333333;
        	margin-bottom: 10px;
    }

.fl-node-61653572a92d6 .pp-info-banner-content img.pp-info-banner-img {
	position: absolute;
	display: block;
	float: none;
	width: auto;
	margin: 0 auto;
	max-width: none;
	z-index: 1;
		height: 200px;
    }

.fl-node-61653572a92d6 .pp-info-banner-content img.pp-info-banner-img {
            opacity: 0;
    }
.fl-node-61653572a92d6 .pp-info-banner-content img.pp-info-banner-img[data-animation-class="zoomIn"] {
    opacity: 1;
}

.fl-node-61653572a92d6 .pp-info-banner-content img.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-61653572a92d6 .pp-info-banner-content img.img-top-right {
	left: auto;
    right: 0;
}

.fl-node-61653572a92d6 .pp-info-banner-content img.img-top-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-61653572a92d6 .pp-info-banner-content img.img-center-left {
    top: 50%;
    transform: translateY(-50%);
}

.fl-node-61653572a92d6 .pp-info-banner-content img.img-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.fl-node-61653572a92d6 .pp-info-banner-content img.img-center-right {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 0;
}

.fl-node-61653572a92d6 .pp-info-banner-content img.img-bottom-center,
.fl-node-61653572a92d6 .pp-info-banner-content img.img-bottom-left,
.fl-node-61653572a92d6 .pp-info-banner-content img.img-bottom-right {
    top: auto;
    bottom: 0;
}

.fl-node-61653572a92d6 .pp-info-banner-content img.img-bottom-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-61653572a92d6 .pp-info-banner-content img.img-bottom-right {
    right: 0;
    left: auto;
}


.fl-node-61653572a92d6 .pp-info-banner-content .banner-button {
    background-color: #ffffff;
	color: #333333;
	display: inline-block;
    box-shadow: none;
    text-decoration: none;
}

.fl-node-61653572a92d6 .pp-info-banner-content .banner-link {
    text-decoration: none !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.fl-node-61653572a92d6 .pp-info-banner-content .banner-button:hover {
    background-color: #ffffff;
    		color: #cccccc;
        border-color: #222222;
    text-decoration: none;
}

@media only screen and (max-width: 960px) {
    .fl-node-61653572a92d6 div.pp-info-banner-content {
            	height: 300px;
            }
    .fl-node-61653572a92d6 div.pp-info-banner-content .banner-title {
            	font-size: 34px;
            }
    .fl-node-61653572a92d6 div.pp-info-banner-content .banner-description {
            	font-size: 18px;
            }
    .fl-node-61653572a92d6 div.pp-info-banner-content .banner-button {
            	font-size: 18px;
            }
}

@media only screen and (max-width: 768px) {
    .fl-node-61653572a92d6 div.pp-info-banner-content {
            	height: 250px;
            }
    .fl-node-61653572a92d6 div.pp-info-banner-content .banner-title {
            	font-size: 30px;
            }
    .fl-node-61653572a92d6 div.pp-info-banner-content .banner-description {
            	font-size: 16px;
            }
    .fl-node-61653572a92d6 div.pp-info-banner-content .banner-button {
            	font-size: 16px;
            }
}

@media only screen and (max-width: 480px) {
    .fl-node-61653572a92d6 div.pp-info-banner-content {
            	height: 200px;
            }
    .fl-node-61653572a92d6 div.pp-info-banner-content .banner-title {
            	font-size: 26px;
            }
    .fl-node-61653572a92d6 div.pp-info-banner-content .banner-description {
            	font-size: 14px;
            }
    .fl-node-61653572a92d6 div.pp-info-banner-content .banner-button {
            	font-size: 14px;
            }
}
.fl-node-61653572a92d6 .pp-info-banner-content .info-banner-wrap {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
}
.fl-node-61653572a92d6 .pp-info-banner-content {
	height: 150px;
}
.fl-node-61653572a92d7 .pp-info-banner-content {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
}
	.fl-node-61653572a92d7 .pp-info-banner-content .pp-info-banner-bg {
			    background-image: url('https://demosite.formulatrix.com/wp-content/uploads/2021/09/Thumbnail-Icon-150px-qpcr-2.svg');
	    	    	    background-size: contain;
	    	    	    background-repeat: no-repeat;
	    	    background-position: center center;
		position: absolute;
		width: 100%;
		height: 100%;
		-webkit-transition: all 0.5s ease;
	    -moz-transition: all 0.5s ease;
	    -ms-transition: all 0.5s ease;
	    -o-transition: all 0.5s ease;
	    transition: all 0.5s ease;
	    will-change: transform;
	}
	.fl-node-61653572a92d7 .pp-info-banner-content:hover .pp-info-banner-bg {
        		-webkit-transform: scale(1.1);
	    -moz-transform: scale(1.1);
	    -o-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
	    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
	    transform: scale(1.1);
        	}

.fl-node-61653572a92d7 .pp-info-banner-content .pp-info-banner-bg:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: transparent;
}

.fl-node-61653572a92d7 .pp-info-banner-content .pp-info-banner-inner {
    display: table;
    width: 100%;
    height: 100%;
}

.fl-node-61653572a92d7 .pp-info-banner-content .info-banner-wrap {
    display: table-cell;
    vertical-align: middle;
	position: relative;
	z-index: 5;
}

.fl-node-61653572a92d7 .pp-info-banner-content .info-banner-wrap.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-61653572a92d7 .pp-info-banner-content .info-banner-wrap.info-right {
	text-align: right;
}

.fl-node-61653572a92d7 .pp-info-banner-content .info-banner-wrap.info-center {
	text-align: center;
}

.fl-node-61653572a92d7 .pp-info-banner-content .banner-title {
    	color: #333333;
        	margin-bottom: 5px;
            border-style: no-border;
        border-color: #f3f3f3;
    border-width: 0;
    border-width: 1px;
}


.fl-node-61653572a92d7 .pp-info-banner-content .banner-description {
    	color: #333333;
        	margin-bottom: 10px;
    }

.fl-node-61653572a92d7 .pp-info-banner-content img.pp-info-banner-img {
	position: absolute;
	display: block;
	float: none;
	width: auto;
	margin: 0 auto;
	max-width: none;
	z-index: 1;
		height: 200px;
    }

.fl-node-61653572a92d7 .pp-info-banner-content img.pp-info-banner-img {
            opacity: 0;
    }
.fl-node-61653572a92d7 .pp-info-banner-content img.pp-info-banner-img[data-animation-class="zoomIn"] {
    opacity: 1;
}

.fl-node-61653572a92d7 .pp-info-banner-content img.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-61653572a92d7 .pp-info-banner-content img.img-top-right {
	left: auto;
    right: 0;
}

.fl-node-61653572a92d7 .pp-info-banner-content img.img-top-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-61653572a92d7 .pp-info-banner-content img.img-center-left {
    top: 50%;
    transform: translateY(-50%);
}

.fl-node-61653572a92d7 .pp-info-banner-content img.img-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.fl-node-61653572a92d7 .pp-info-banner-content img.img-center-right {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 0;
}

.fl-node-61653572a92d7 .pp-info-banner-content img.img-bottom-center,
.fl-node-61653572a92d7 .pp-info-banner-content img.img-bottom-left,
.fl-node-61653572a92d7 .pp-info-banner-content img.img-bottom-right {
    top: auto;
    bottom: 0;
}

.fl-node-61653572a92d7 .pp-info-banner-content img.img-bottom-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-61653572a92d7 .pp-info-banner-content img.img-bottom-right {
    right: 0;
    left: auto;
}


.fl-node-61653572a92d7 .pp-info-banner-content .banner-button {
    background-color: #ffffff;
	color: #333333;
	display: inline-block;
    box-shadow: none;
    text-decoration: none;
}

.fl-node-61653572a92d7 .pp-info-banner-content .banner-link {
    text-decoration: none !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.fl-node-61653572a92d7 .pp-info-banner-content .banner-button:hover {
    background-color: #ffffff;
    		color: #cccccc;
        border-color: #222222;
    text-decoration: none;
}

@media only screen and (max-width: 960px) {
    .fl-node-61653572a92d7 div.pp-info-banner-content {
            	height: 300px;
            }
    .fl-node-61653572a92d7 div.pp-info-banner-content .banner-title {
            	font-size: 34px;
            }
    .fl-node-61653572a92d7 div.pp-info-banner-content .banner-description {
            	font-size: 18px;
            }
    .fl-node-61653572a92d7 div.pp-info-banner-content .banner-button {
            	font-size: 18px;
            }
}

@media only screen and (max-width: 768px) {
    .fl-node-61653572a92d7 div.pp-info-banner-content {
            	height: 250px;
            }
    .fl-node-61653572a92d7 div.pp-info-banner-content .banner-title {
            	font-size: 30px;
            }
    .fl-node-61653572a92d7 div.pp-info-banner-content .banner-description {
            	font-size: 16px;
            }
    .fl-node-61653572a92d7 div.pp-info-banner-content .banner-button {
            	font-size: 16px;
            }
}

@media only screen and (max-width: 480px) {
    .fl-node-61653572a92d7 div.pp-info-banner-content {
            	height: 200px;
            }
    .fl-node-61653572a92d7 div.pp-info-banner-content .banner-title {
            	font-size: 26px;
            }
    .fl-node-61653572a92d7 div.pp-info-banner-content .banner-description {
            	font-size: 14px;
            }
    .fl-node-61653572a92d7 div.pp-info-banner-content .banner-button {
            	font-size: 14px;
            }
}
.fl-node-61653572a92d7 .pp-info-banner-content .info-banner-wrap {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
}
.fl-node-61653572a92d7 .pp-info-banner-content {
	height: 150px;
}
.fl-node-61653572a92d8 .pp-info-banner-content {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
}
	.fl-node-61653572a92d8 .pp-info-banner-content .pp-info-banner-bg {
			    background-image: url('https://demosite.formulatrix.com/wp-content/uploads/2021/09/Icon-Thumbnail-150px-ngs-2.svg');
	    	    	    background-size: contain;
	    	    	    background-repeat: no-repeat;
	    	    background-position: center center;
		position: absolute;
		width: 100%;
		height: 100%;
		-webkit-transition: all 0.5s ease;
	    -moz-transition: all 0.5s ease;
	    -ms-transition: all 0.5s ease;
	    -o-transition: all 0.5s ease;
	    transition: all 0.5s ease;
	    will-change: transform;
	}
	.fl-node-61653572a92d8 .pp-info-banner-content:hover .pp-info-banner-bg {
        		-webkit-transform: scale(1.1);
	    -moz-transform: scale(1.1);
	    -o-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
	    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
	    transform: scale(1.1);
        	}

.fl-node-61653572a92d8 .pp-info-banner-content .pp-info-banner-bg:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: transparent;
}

.fl-node-61653572a92d8 .pp-info-banner-content .pp-info-banner-inner {
    display: table;
    width: 100%;
    height: 100%;
}

.fl-node-61653572a92d8 .pp-info-banner-content .info-banner-wrap {
    display: table-cell;
    vertical-align: middle;
	position: relative;
	z-index: 5;
}

.fl-node-61653572a92d8 .pp-info-banner-content .info-banner-wrap.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-61653572a92d8 .pp-info-banner-content .info-banner-wrap.info-right {
	text-align: right;
}

.fl-node-61653572a92d8 .pp-info-banner-content .info-banner-wrap.info-center {
	text-align: center;
}

.fl-node-61653572a92d8 .pp-info-banner-content .banner-title {
    	color: #333333;
        	margin-bottom: 5px;
            border-style: no-border;
        border-color: #f3f3f3;
    border-width: 0;
    border-width: 1px;
}


.fl-node-61653572a92d8 .pp-info-banner-content .banner-description {
    	color: #333333;
        	margin-bottom: 10px;
    }

.fl-node-61653572a92d8 .pp-info-banner-content img.pp-info-banner-img {
	position: absolute;
	display: block;
	float: none;
	width: auto;
	margin: 0 auto;
	max-width: none;
	z-index: 1;
		height: 200px;
    }

.fl-node-61653572a92d8 .pp-info-banner-content img.pp-info-banner-img {
            opacity: 0;
    }
.fl-node-61653572a92d8 .pp-info-banner-content img.pp-info-banner-img[data-animation-class="zoomIn"] {
    opacity: 1;
}

.fl-node-61653572a92d8 .pp-info-banner-content img.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-61653572a92d8 .pp-info-banner-content img.img-top-right {
	left: auto;
    right: 0;
}

.fl-node-61653572a92d8 .pp-info-banner-content img.img-top-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-61653572a92d8 .pp-info-banner-content img.img-center-left {
    top: 50%;
    transform: translateY(-50%);
}

.fl-node-61653572a92d8 .pp-info-banner-content img.img-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.fl-node-61653572a92d8 .pp-info-banner-content img.img-center-right {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 0;
}

.fl-node-61653572a92d8 .pp-info-banner-content img.img-bottom-center,
.fl-node-61653572a92d8 .pp-info-banner-content img.img-bottom-left,
.fl-node-61653572a92d8 .pp-info-banner-content img.img-bottom-right {
    top: auto;
    bottom: 0;
}

.fl-node-61653572a92d8 .pp-info-banner-content img.img-bottom-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-61653572a92d8 .pp-info-banner-content img.img-bottom-right {
    right: 0;
    left: auto;
}


.fl-node-61653572a92d8 .pp-info-banner-content .banner-button {
    background-color: #ffffff;
	color: #333333;
	display: inline-block;
    box-shadow: none;
    text-decoration: none;
}

.fl-node-61653572a92d8 .pp-info-banner-content .banner-link {
    text-decoration: none !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.fl-node-61653572a92d8 .pp-info-banner-content .banner-button:hover {
    background-color: #ffffff;
    		color: #cccccc;
        border-color: #222222;
    text-decoration: none;
}

@media only screen and (max-width: 960px) {
    .fl-node-61653572a92d8 div.pp-info-banner-content {
            	height: 300px;
            }
    .fl-node-61653572a92d8 div.pp-info-banner-content .banner-title {
            	font-size: 34px;
            }
    .fl-node-61653572a92d8 div.pp-info-banner-content .banner-description {
            	font-size: 18px;
            }
    .fl-node-61653572a92d8 div.pp-info-banner-content .banner-button {
            	font-size: 18px;
            }
}

@media only screen and (max-width: 768px) {
    .fl-node-61653572a92d8 div.pp-info-banner-content {
            	height: 250px;
            }
    .fl-node-61653572a92d8 div.pp-info-banner-content .banner-title {
            	font-size: 30px;
            }
    .fl-node-61653572a92d8 div.pp-info-banner-content .banner-description {
            	font-size: 16px;
            }
    .fl-node-61653572a92d8 div.pp-info-banner-content .banner-button {
            	font-size: 16px;
            }
}

@media only screen and (max-width: 480px) {
    .fl-node-61653572a92d8 div.pp-info-banner-content {
            	height: 200px;
            }
    .fl-node-61653572a92d8 div.pp-info-banner-content .banner-title {
            	font-size: 26px;
            }
    .fl-node-61653572a92d8 div.pp-info-banner-content .banner-description {
            	font-size: 14px;
            }
    .fl-node-61653572a92d8 div.pp-info-banner-content .banner-button {
            	font-size: 14px;
            }
}
.fl-node-61653572a92d8 .pp-info-banner-content .info-banner-wrap {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
}
.fl-node-61653572a92d8 .pp-info-banner-content {
	height: 150px;
}
.fl-node-61653572a92db .pp-info-banner-content {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
}
	.fl-node-61653572a92db .pp-info-banner-content .pp-info-banner-bg {
			    background-image: url('https://demosite.formulatrix.com/wp-content/uploads/2025/07/ultrafiltration-incons-08.svg');
	    	    	    background-size: contain;
	    	    	    background-repeat: no-repeat;
	    	    background-position: center center;
		position: absolute;
		width: 100%;
		height: 100%;
		-webkit-transition: all 0.5s ease;
	    -moz-transition: all 0.5s ease;
	    -ms-transition: all 0.5s ease;
	    -o-transition: all 0.5s ease;
	    transition: all 0.5s ease;
	    will-change: transform;
	}
	.fl-node-61653572a92db .pp-info-banner-content:hover .pp-info-banner-bg {
        		-webkit-transform: scale(1.1);
	    -moz-transform: scale(1.1);
	    -o-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
	    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
	    transform: scale(1.1);
        	}

.fl-node-61653572a92db .pp-info-banner-content .pp-info-banner-bg:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: transparent;
}

.fl-node-61653572a92db .pp-info-banner-content .pp-info-banner-inner {
    display: table;
    width: 100%;
    height: 100%;
}

.fl-node-61653572a92db .pp-info-banner-content .info-banner-wrap {
    display: table-cell;
    vertical-align: middle;
	position: relative;
	z-index: 5;
}

.fl-node-61653572a92db .pp-info-banner-content .info-banner-wrap.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-61653572a92db .pp-info-banner-content .info-banner-wrap.info-right {
	text-align: right;
}

.fl-node-61653572a92db .pp-info-banner-content .info-banner-wrap.info-center {
	text-align: center;
}

.fl-node-61653572a92db .pp-info-banner-content .banner-title {
    	color: #333333;
        	margin-bottom: 5px;
            border-style: no-border;
        border-color: #f3f3f3;
    border-width: 0;
    border-width: 1px;
}


.fl-node-61653572a92db .pp-info-banner-content .banner-description {
    	color: #333333;
        	margin-bottom: 10px;
    }

.fl-node-61653572a92db .pp-info-banner-content img.pp-info-banner-img {
	position: absolute;
	display: block;
	float: none;
	width: auto;
	margin: 0 auto;
	max-width: none;
	z-index: 1;
		height: 200px;
    }

.fl-node-61653572a92db .pp-info-banner-content img.pp-info-banner-img {
            opacity: 0;
    }
.fl-node-61653572a92db .pp-info-banner-content img.pp-info-banner-img[data-animation-class="zoomIn"] {
    opacity: 1;
}

.fl-node-61653572a92db .pp-info-banner-content img.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-61653572a92db .pp-info-banner-content img.img-top-right {
	left: auto;
    right: 0;
}

.fl-node-61653572a92db .pp-info-banner-content img.img-top-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-61653572a92db .pp-info-banner-content img.img-center-left {
    top: 50%;
    transform: translateY(-50%);
}

.fl-node-61653572a92db .pp-info-banner-content img.img-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.fl-node-61653572a92db .pp-info-banner-content img.img-center-right {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 0;
}

.fl-node-61653572a92db .pp-info-banner-content img.img-bottom-center,
.fl-node-61653572a92db .pp-info-banner-content img.img-bottom-left,
.fl-node-61653572a92db .pp-info-banner-content img.img-bottom-right {
    top: auto;
    bottom: 0;
}

.fl-node-61653572a92db .pp-info-banner-content img.img-bottom-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-61653572a92db .pp-info-banner-content img.img-bottom-right {
    right: 0;
    left: auto;
}


.fl-node-61653572a92db .pp-info-banner-content .banner-button {
    background-color: #ffffff;
	color: #333333;
	display: inline-block;
    box-shadow: none;
    text-decoration: none;
}

.fl-node-61653572a92db .pp-info-banner-content .banner-link {
    text-decoration: none !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.fl-node-61653572a92db .pp-info-banner-content .banner-button:hover {
    background-color: #ffffff;
    		color: #cccccc;
        border-color: #222222;
    text-decoration: none;
}

@media only screen and (max-width: 960px) {
    .fl-node-61653572a92db div.pp-info-banner-content {
            	height: 300px;
            }
    .fl-node-61653572a92db div.pp-info-banner-content .banner-title {
            	font-size: 34px;
            }
    .fl-node-61653572a92db div.pp-info-banner-content .banner-description {
            	font-size: 18px;
            }
    .fl-node-61653572a92db div.pp-info-banner-content .banner-button {
            	font-size: 18px;
            }
}

@media only screen and (max-width: 768px) {
    .fl-node-61653572a92db div.pp-info-banner-content {
            	height: 250px;
            }
    .fl-node-61653572a92db div.pp-info-banner-content .banner-title {
            	font-size: 30px;
            }
    .fl-node-61653572a92db div.pp-info-banner-content .banner-description {
            	font-size: 16px;
            }
    .fl-node-61653572a92db div.pp-info-banner-content .banner-button {
            	font-size: 16px;
            }
}

@media only screen and (max-width: 480px) {
    .fl-node-61653572a92db div.pp-info-banner-content {
            	height: 200px;
            }
    .fl-node-61653572a92db div.pp-info-banner-content .banner-title {
            	font-size: 26px;
            }
    .fl-node-61653572a92db div.pp-info-banner-content .banner-description {
            	font-size: 14px;
            }
    .fl-node-61653572a92db div.pp-info-banner-content .banner-button {
            	font-size: 14px;
            }
}
.fl-node-61653572a92db .pp-info-banner-content .info-banner-wrap {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
}
.fl-node-61653572a92db .pp-info-banner-content {
	height: 150px;
}
 .fl-node-61653572a92db > .fl-module-content {
	margin-top:20px;
	margin-bottom:20px;
}
.fl-node-61653572a92e9 .pp-info-banner-content {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
}
	.fl-node-61653572a92e9 .pp-info-banner-content .pp-info-banner-bg {
			    background-image: url('https://demosite.formulatrix.com/wp-content/uploads/2021/09/Thumbnail-Icon-150px-hts-2.svg');
	    	    	    background-size: contain;
	    	    	    background-repeat: no-repeat;
	    	    background-position: center center;
		position: absolute;
		width: 100%;
		height: 100%;
		-webkit-transition: all 0.5s ease;
	    -moz-transition: all 0.5s ease;
	    -ms-transition: all 0.5s ease;
	    -o-transition: all 0.5s ease;
	    transition: all 0.5s ease;
	    will-change: transform;
	}
	.fl-node-61653572a92e9 .pp-info-banner-content:hover .pp-info-banner-bg {
        		-webkit-transform: scale(1.1);
	    -moz-transform: scale(1.1);
	    -o-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
	    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
	    transform: scale(1.1);
        	}

.fl-node-61653572a92e9 .pp-info-banner-content .pp-info-banner-bg:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: transparent;
}

.fl-node-61653572a92e9 .pp-info-banner-content .pp-info-banner-inner {
    display: table;
    width: 100%;
    height: 100%;
}

.fl-node-61653572a92e9 .pp-info-banner-content .info-banner-wrap {
    display: table-cell;
    vertical-align: middle;
	position: relative;
	z-index: 5;
}

.fl-node-61653572a92e9 .pp-info-banner-content .info-banner-wrap.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-61653572a92e9 .pp-info-banner-content .info-banner-wrap.info-right {
	text-align: right;
}

.fl-node-61653572a92e9 .pp-info-banner-content .info-banner-wrap.info-center {
	text-align: center;
}

.fl-node-61653572a92e9 .pp-info-banner-content .banner-title {
    	color: #333333;
        	margin-bottom: 5px;
            border-style: no-border;
        border-color: #f3f3f3;
    border-width: 0;
    border-width: 1px;
}


.fl-node-61653572a92e9 .pp-info-banner-content .banner-description {
    	color: #333333;
        	margin-bottom: 10px;
    }

.fl-node-61653572a92e9 .pp-info-banner-content img.pp-info-banner-img {
	position: absolute;
	display: block;
	float: none;
	width: auto;
	margin: 0 auto;
	max-width: none;
	z-index: 1;
		height: 200px;
    }

.fl-node-61653572a92e9 .pp-info-banner-content img.pp-info-banner-img {
            opacity: 0;
    }
.fl-node-61653572a92e9 .pp-info-banner-content img.pp-info-banner-img[data-animation-class="zoomIn"] {
    opacity: 1;
}

.fl-node-61653572a92e9 .pp-info-banner-content img.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-61653572a92e9 .pp-info-banner-content img.img-top-right {
	left: auto;
    right: 0;
}

.fl-node-61653572a92e9 .pp-info-banner-content img.img-top-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-61653572a92e9 .pp-info-banner-content img.img-center-left {
    top: 50%;
    transform: translateY(-50%);
}

.fl-node-61653572a92e9 .pp-info-banner-content img.img-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.fl-node-61653572a92e9 .pp-info-banner-content img.img-center-right {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 0;
}

.fl-node-61653572a92e9 .pp-info-banner-content img.img-bottom-center,
.fl-node-61653572a92e9 .pp-info-banner-content img.img-bottom-left,
.fl-node-61653572a92e9 .pp-info-banner-content img.img-bottom-right {
    top: auto;
    bottom: 0;
}

.fl-node-61653572a92e9 .pp-info-banner-content img.img-bottom-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-61653572a92e9 .pp-info-banner-content img.img-bottom-right {
    right: 0;
    left: auto;
}


.fl-node-61653572a92e9 .pp-info-banner-content .banner-button {
    background-color: #ffffff;
	color: #333333;
	display: inline-block;
    box-shadow: none;
    text-decoration: none;
}

.fl-node-61653572a92e9 .pp-info-banner-content .banner-link {
    text-decoration: none !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.fl-node-61653572a92e9 .pp-info-banner-content .banner-button:hover {
    background-color: #ffffff;
    		color: #cccccc;
        border-color: #222222;
    text-decoration: none;
}

@media only screen and (max-width: 960px) {
    .fl-node-61653572a92e9 div.pp-info-banner-content {
            	height: 300px;
            }
    .fl-node-61653572a92e9 div.pp-info-banner-content .banner-title {
            	font-size: 34px;
            }
    .fl-node-61653572a92e9 div.pp-info-banner-content .banner-description {
            	font-size: 18px;
            }
    .fl-node-61653572a92e9 div.pp-info-banner-content .banner-button {
            	font-size: 18px;
            }
}

@media only screen and (max-width: 768px) {
    .fl-node-61653572a92e9 div.pp-info-banner-content {
            	height: 250px;
            }
    .fl-node-61653572a92e9 div.pp-info-banner-content .banner-title {
            	font-size: 30px;
            }
    .fl-node-61653572a92e9 div.pp-info-banner-content .banner-description {
            	font-size: 16px;
            }
    .fl-node-61653572a92e9 div.pp-info-banner-content .banner-button {
            	font-size: 16px;
            }
}

@media only screen and (max-width: 480px) {
    .fl-node-61653572a92e9 div.pp-info-banner-content {
            	height: 200px;
            }
    .fl-node-61653572a92e9 div.pp-info-banner-content .banner-title {
            	font-size: 26px;
            }
    .fl-node-61653572a92e9 div.pp-info-banner-content .banner-description {
            	font-size: 14px;
            }
    .fl-node-61653572a92e9 div.pp-info-banner-content .banner-button {
            	font-size: 14px;
            }
}
.fl-node-61653572a92e9 .pp-info-banner-content .info-banner-wrap {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
}
.fl-node-61653572a92e9 .pp-info-banner-content {
	height: 150px;
}
.fl-node-61653572a92ec .pp-info-banner-content {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
}
	.fl-node-61653572a92ec .pp-info-banner-content .pp-info-banner-bg {
			    background-image: url('https://demosite.formulatrix.com/wp-content/uploads/2021/09/Thumbnail-Icon-150px-assay-2.svg');
	    	    	    background-size: contain;
	    	    	    background-repeat: no-repeat;
	    	    background-position: center center;
		position: absolute;
		width: 100%;
		height: 100%;
		-webkit-transition: all 0.5s ease;
	    -moz-transition: all 0.5s ease;
	    -ms-transition: all 0.5s ease;
	    -o-transition: all 0.5s ease;
	    transition: all 0.5s ease;
	    will-change: transform;
	}
	.fl-node-61653572a92ec .pp-info-banner-content:hover .pp-info-banner-bg {
        		-webkit-transform: scale(1.1);
	    -moz-transform: scale(1.1);
	    -o-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
	    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
	    transform: scale(1.1);
        	}

.fl-node-61653572a92ec .pp-info-banner-content .pp-info-banner-bg:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: transparent;
}

.fl-node-61653572a92ec .pp-info-banner-content .pp-info-banner-inner {
    display: table;
    width: 100%;
    height: 100%;
}

.fl-node-61653572a92ec .pp-info-banner-content .info-banner-wrap {
    display: table-cell;
    vertical-align: middle;
	position: relative;
	z-index: 5;
}

.fl-node-61653572a92ec .pp-info-banner-content .info-banner-wrap.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-61653572a92ec .pp-info-banner-content .info-banner-wrap.info-right {
	text-align: right;
}

.fl-node-61653572a92ec .pp-info-banner-content .info-banner-wrap.info-center {
	text-align: center;
}

.fl-node-61653572a92ec .pp-info-banner-content .banner-title {
    	color: #333333;
        	margin-bottom: 5px;
            border-style: no-border;
        border-color: #f3f3f3;
    border-width: 0;
    border-width: 1px;
}


.fl-node-61653572a92ec .pp-info-banner-content .banner-description {
    	color: #333333;
        	margin-bottom: 10px;
    }

.fl-node-61653572a92ec .pp-info-banner-content img.pp-info-banner-img {
	position: absolute;
	display: block;
	float: none;
	width: auto;
	margin: 0 auto;
	max-width: none;
	z-index: 1;
		height: 200px;
    }

.fl-node-61653572a92ec .pp-info-banner-content img.pp-info-banner-img {
            opacity: 0;
    }
.fl-node-61653572a92ec .pp-info-banner-content img.pp-info-banner-img[data-animation-class="zoomIn"] {
    opacity: 1;
}

.fl-node-61653572a92ec .pp-info-banner-content img.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-61653572a92ec .pp-info-banner-content img.img-top-right {
	left: auto;
    right: 0;
}

.fl-node-61653572a92ec .pp-info-banner-content img.img-top-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-61653572a92ec .pp-info-banner-content img.img-center-left {
    top: 50%;
    transform: translateY(-50%);
}

.fl-node-61653572a92ec .pp-info-banner-content img.img-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.fl-node-61653572a92ec .pp-info-banner-content img.img-center-right {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 0;
}

.fl-node-61653572a92ec .pp-info-banner-content img.img-bottom-center,
.fl-node-61653572a92ec .pp-info-banner-content img.img-bottom-left,
.fl-node-61653572a92ec .pp-info-banner-content img.img-bottom-right {
    top: auto;
    bottom: 0;
}

.fl-node-61653572a92ec .pp-info-banner-content img.img-bottom-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-61653572a92ec .pp-info-banner-content img.img-bottom-right {
    right: 0;
    left: auto;
}


.fl-node-61653572a92ec .pp-info-banner-content .banner-button {
    background-color: #ffffff;
	color: #333333;
	display: inline-block;
    box-shadow: none;
    text-decoration: none;
}

.fl-node-61653572a92ec .pp-info-banner-content .banner-link {
    text-decoration: none !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.fl-node-61653572a92ec .pp-info-banner-content .banner-button:hover {
    background-color: #ffffff;
    		color: #cccccc;
        border-color: #222222;
    text-decoration: none;
}

@media only screen and (max-width: 960px) {
    .fl-node-61653572a92ec div.pp-info-banner-content {
            	height: 300px;
            }
    .fl-node-61653572a92ec div.pp-info-banner-content .banner-title {
            	font-size: 34px;
            }
    .fl-node-61653572a92ec div.pp-info-banner-content .banner-description {
            	font-size: 18px;
            }
    .fl-node-61653572a92ec div.pp-info-banner-content .banner-button {
            	font-size: 18px;
            }
}

@media only screen and (max-width: 768px) {
    .fl-node-61653572a92ec div.pp-info-banner-content {
            	height: 250px;
            }
    .fl-node-61653572a92ec div.pp-info-banner-content .banner-title {
            	font-size: 30px;
            }
    .fl-node-61653572a92ec div.pp-info-banner-content .banner-description {
            	font-size: 16px;
            }
    .fl-node-61653572a92ec div.pp-info-banner-content .banner-button {
            	font-size: 16px;
            }
}

@media only screen and (max-width: 480px) {
    .fl-node-61653572a92ec div.pp-info-banner-content {
            	height: 200px;
            }
    .fl-node-61653572a92ec div.pp-info-banner-content .banner-title {
            	font-size: 26px;
            }
    .fl-node-61653572a92ec div.pp-info-banner-content .banner-description {
            	font-size: 14px;
            }
    .fl-node-61653572a92ec div.pp-info-banner-content .banner-button {
            	font-size: 14px;
            }
}
.fl-node-61653572a92ec .pp-info-banner-content .info-banner-wrap {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
}
.fl-node-61653572a92ec .pp-info-banner-content {
	height: 150px;
}
.fl-node-61653572a92ef .pp-info-banner-content {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
}
	.fl-node-61653572a92ef .pp-info-banner-content .pp-info-banner-bg {
			    background-image: url('https://demosite.formulatrix.com/wp-content/uploads/2021/09/Thumbnail-Icon-150px-cell-2.svg');
	    	    	    background-size: contain;
	    	    	    background-repeat: no-repeat;
	    	    background-position: center center;
		position: absolute;
		width: 100%;
		height: 100%;
		-webkit-transition: all 0.5s ease;
	    -moz-transition: all 0.5s ease;
	    -ms-transition: all 0.5s ease;
	    -o-transition: all 0.5s ease;
	    transition: all 0.5s ease;
	    will-change: transform;
	}
	.fl-node-61653572a92ef .pp-info-banner-content:hover .pp-info-banner-bg {
        		-webkit-transform: scale(1.1);
	    -moz-transform: scale(1.1);
	    -o-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
	    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
	    transform: scale(1.1);
        	}

.fl-node-61653572a92ef .pp-info-banner-content .pp-info-banner-bg:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: transparent;
}

.fl-node-61653572a92ef .pp-info-banner-content .pp-info-banner-inner {
    display: table;
    width: 100%;
    height: 100%;
}

.fl-node-61653572a92ef .pp-info-banner-content .info-banner-wrap {
    display: table-cell;
    vertical-align: middle;
	position: relative;
	z-index: 5;
}

.fl-node-61653572a92ef .pp-info-banner-content .info-banner-wrap.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-61653572a92ef .pp-info-banner-content .info-banner-wrap.info-right {
	text-align: right;
}

.fl-node-61653572a92ef .pp-info-banner-content .info-banner-wrap.info-center {
	text-align: center;
}

.fl-node-61653572a92ef .pp-info-banner-content .banner-title {
    	color: #333333;
        	margin-bottom: 5px;
            border-style: no-border;
        border-color: #f3f3f3;
    border-width: 0;
    border-width: 1px;
}


.fl-node-61653572a92ef .pp-info-banner-content .banner-description {
    	color: #333333;
        	margin-bottom: 10px;
    }

.fl-node-61653572a92ef .pp-info-banner-content img.pp-info-banner-img {
	position: absolute;
	display: block;
	float: none;
	width: auto;
	margin: 0 auto;
	max-width: none;
	z-index: 1;
		height: 200px;
    }

.fl-node-61653572a92ef .pp-info-banner-content img.pp-info-banner-img {
            opacity: 0;
    }
.fl-node-61653572a92ef .pp-info-banner-content img.pp-info-banner-img[data-animation-class="zoomIn"] {
    opacity: 1;
}

.fl-node-61653572a92ef .pp-info-banner-content img.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-61653572a92ef .pp-info-banner-content img.img-top-right {
	left: auto;
    right: 0;
}

.fl-node-61653572a92ef .pp-info-banner-content img.img-top-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-61653572a92ef .pp-info-banner-content img.img-center-left {
    top: 50%;
    transform: translateY(-50%);
}

.fl-node-61653572a92ef .pp-info-banner-content img.img-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.fl-node-61653572a92ef .pp-info-banner-content img.img-center-right {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 0;
}

.fl-node-61653572a92ef .pp-info-banner-content img.img-bottom-center,
.fl-node-61653572a92ef .pp-info-banner-content img.img-bottom-left,
.fl-node-61653572a92ef .pp-info-banner-content img.img-bottom-right {
    top: auto;
    bottom: 0;
}

.fl-node-61653572a92ef .pp-info-banner-content img.img-bottom-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-61653572a92ef .pp-info-banner-content img.img-bottom-right {
    right: 0;
    left: auto;
}


.fl-node-61653572a92ef .pp-info-banner-content .banner-button {
    background-color: #ffffff;
	color: #333333;
	display: inline-block;
    box-shadow: none;
    text-decoration: none;
}

.fl-node-61653572a92ef .pp-info-banner-content .banner-link {
    text-decoration: none !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.fl-node-61653572a92ef .pp-info-banner-content .banner-button:hover {
    background-color: #ffffff;
    		color: #cccccc;
        border-color: #222222;
    text-decoration: none;
}

@media only screen and (max-width: 960px) {
    .fl-node-61653572a92ef div.pp-info-banner-content {
            	height: 300px;
            }
    .fl-node-61653572a92ef div.pp-info-banner-content .banner-title {
            	font-size: 34px;
            }
    .fl-node-61653572a92ef div.pp-info-banner-content .banner-description {
            	font-size: 18px;
            }
    .fl-node-61653572a92ef div.pp-info-banner-content .banner-button {
            	font-size: 18px;
            }
}

@media only screen and (max-width: 768px) {
    .fl-node-61653572a92ef div.pp-info-banner-content {
            	height: 250px;
            }
    .fl-node-61653572a92ef div.pp-info-banner-content .banner-title {
            	font-size: 30px;
            }
    .fl-node-61653572a92ef div.pp-info-banner-content .banner-description {
            	font-size: 16px;
            }
    .fl-node-61653572a92ef div.pp-info-banner-content .banner-button {
            	font-size: 16px;
            }
}

@media only screen and (max-width: 480px) {
    .fl-node-61653572a92ef div.pp-info-banner-content {
            	height: 200px;
            }
    .fl-node-61653572a92ef div.pp-info-banner-content .banner-title {
            	font-size: 26px;
            }
    .fl-node-61653572a92ef div.pp-info-banner-content .banner-description {
            	font-size: 14px;
            }
    .fl-node-61653572a92ef div.pp-info-banner-content .banner-button {
            	font-size: 14px;
            }
}
.fl-node-61653572a92ef .pp-info-banner-content .info-banner-wrap {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
}
.fl-node-61653572a92ef .pp-info-banner-content {
	height: 150px;
}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-x7ibtur524wf .pp-heading-content {
	text-align: center;
}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading {
		}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
									display: inline;
	}
div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 200px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 200px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 200px;
			border-bottom-style: solid;
			border-bottom-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-x7ibtur524wf .pp-heading-content .pp-sub-heading,
div.fl-node-x7ibtur524wf .pp-heading-content .pp-sub-heading p {
	}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 200px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 4px;
			border-bottom-color: #f7a246;
			width: 200px;
			margin: 0 auto;
	}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 992px) {
	div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-x7ibtur524wf .pp-heading-content {
				text-align: ;
			}
	div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-x7ibtur524wf .pp-heading-content {
				text-align: ;
			}
	div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading .heading-title {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 70px;
	letter-spacing: -0.5px;
}
div.fl-node-x7ibtur524wf div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-x7ibtur524wf div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-x7ibtur524wf div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-x7ibtur524wf div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading .heading-title {
		font-size: 55px;
	}
}
@media(max-width: 768px) {
	div.fl-node-x7ibtur524wf .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
 .fl-node-x7ibtur524wf > .fl-module-content {
	margin-bottom:70px;
}
@media (max-width: 768px) { .fl-node-x7ibtur524wf > .fl-module-content { margin-bottom:20px; } }


.fl-node-6h0d9ao4cvrq .pp-spacer-module {
    height: 50px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-6h0d9ao4cvrq .pp-spacer-module {
        height: 25px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-6h0d9ao4cvrq .pp-spacer-module {
        height: 5px;
    }
}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-1gctxy2fq9s8 .pp-heading-content {
	text-align: center;
}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading {
		}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
									display: inline;
	}
div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 600px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 600px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 600px;
			border-bottom-style: solid;
			border-bottom-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-sub-heading,
div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-sub-heading p {
	}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 600px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 4px;
			border-bottom-color: #f7a246;
			width: 600px;
			margin: 0 auto;
	}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 992px) {
	div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-1gctxy2fq9s8 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-1gctxy2fq9s8 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading .heading-title {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 70px;
	letter-spacing: -0.5px;
}
div.fl-node-1gctxy2fq9s8 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-1gctxy2fq9s8 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-1gctxy2fq9s8 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-1gctxy2fq9s8 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading .heading-title {
		font-size: 55px;
	}
}
@media(max-width: 768px) {
	div.fl-node-1gctxy2fq9s8 .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
 .fl-node-1gctxy2fq9s8 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}



.fl-node-mjwef6t39qns .pp-spacer-module {
    height: 50px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-mjwef6t39qns .pp-spacer-module {
        height: 25px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-mjwef6t39qns .pp-spacer-module {
        height: 5px;
    }
}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-8kje7znvhdbs .pp-heading-content {
	text-align: center;
}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading {
		}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
									display: inline;
	}
div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 600px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 600px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 600px;
			border-bottom-style: solid;
			border-bottom-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-8kje7znvhdbs .pp-heading-content .pp-sub-heading,
div.fl-node-8kje7znvhdbs .pp-heading-content .pp-sub-heading p {
	}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 600px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 4px;
			border-bottom-color: #f7a246;
			width: 600px;
			margin: 0 auto;
	}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 992px) {
	div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-8kje7znvhdbs .pp-heading-content {
				text-align: ;
			}
	div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-8kje7znvhdbs .pp-heading-content {
				text-align: ;
			}
	div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading .heading-title {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 70px;
	letter-spacing: -0.5px;
}
div.fl-node-8kje7znvhdbs div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-8kje7znvhdbs div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-8kje7znvhdbs div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-8kje7znvhdbs div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading .heading-title {
		font-size: 55px;
	}
}
@media(max-width: 768px) {
	div.fl-node-8kje7znvhdbs .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
 .fl-node-8kje7znvhdbs > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
a.pp-button,
a.pp-button:visited {
	display: inline-block;
	overflow: hidden;
    position: relative;
	text-decoration: none;
	text-shadow: none;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -o-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	-o-transition: all .3s linear;
	-ms-transition: all .3s linear;
	transition: all .3s linear;
}
.pp-button:hover {
	text-decoration: none;
}
.pp-button:active {
	position: relative;
	top: 1px;
}
.pp-button-width-full .pp-button {
	display: block;
	text-align: center;
}
.pp-button-width-custom .pp-button {
	display: inline-block;
	text-align: center;
	max-width: 100%;
}
.pp-button-left {
	text-align: left;
}
.pp-button-center {
	text-align: center;
}
.pp-button-right {
	text-align: right;
}
.pp-button i {
	font-size: 1.3em;
	height: auto;
	margin-right:8px;
	vertical-align: middle;
	width: auto;
}
.pp-button i.pp-button-icon-after {
	margin-left: 8px;
	margin-right: 0;
}
.pp-button-has-icon .pp-button-text {
	vertical-align: middle;
}

.pp-button-wrap a.pp-button:before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition-property: transform;
    -moz-transition-property: transform;
    -o-transition-property: transform;
    -ms-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.pp-button .dashicons,
.pp-button .dashicons-before:before {
	font-size: inherit;
	height: auto;
	width: auto;
}
.pp-button .pp-button-has-subtext {
	display: flex;
	flex-direction: column;
}@media (max-width: 768px) { .fl-module-button .pp-button-left,
.fl-module-button .pp-button-right {
	text-align: center;
}
 }



.fl-node-n0sztb2edumo .pp-button-wrap a.pp-button,
.fl-node-n0sztb2edumo .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
			background: #f7a246;
	
		background-clip: border-box;
}

.fl-node-n0sztb2edumo .pp-button-wrap a.pp-button:hover,
.fl-node-n0sztb2edumo .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #e88c40;
			
	}



.fl-node-n0sztb2edumo a.pp-button {
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}
.fl-node-n0sztb2edumo a.pp-button,
.fl-node-n0sztb2edumo a.pp-button * {
	color: #ffffff;
}

.fl-node-n0sztb2edumo a.pp-button:hover,
.fl-node-n0sztb2edumo a.pp-button:focus,
.fl-node-n0sztb2edumo a.pp-button:hover *,
.fl-node-n0sztb2edumo a.pp-button:focus * {
	color: #ffffff;
}

			.fl-node-n0sztb2edumo .pp-button-wrap a.pp-button,
			.fl-node-n0sztb2edumo .pp-button-wrap a.pp-button:visited {
				-webkit-transition: none;
				-moz-transition: none;
				-o-transition: none;
				-ms-transition: none;
				transition: none;
			}
			.fl-node-n0sztb2edumo .pp-button-wrap {
	text-align: center;
}
.fl-node-n0sztb2edumo a.pp-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-n0sztb2edumo .pp-button-wrap a.pp-button, .fl-node-n0sztb2edumo .pp-button-wrap a.pp-button:visited {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0px;
	width: 400px;
}
.fl-node-n0sztb2edumo .pp-button-wrap a.pp-button:hover, .fl-node-n0sztb2edumo .pp-button-wrap a.pp-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-node-n0sztb2edumo .pp-button .pp-button-icon {
	font-size: 16px;
}
@media(max-width: 992px) {
	.fl-node-n0sztb2edumo .pp-button-wrap {
		text-align: left;
	}
}
@media(max-width: 768px) {
	.fl-node-n0sztb2edumo .pp-button-wrap {
		text-align: center;
	}
	.fl-node-n0sztb2edumo .pp-button-wrap a.pp-button, .fl-node-n0sztb2edumo .pp-button-wrap a.pp-button:visited {
		font-size: 17px;
		line-height: 1.3;
	}
}
 .fl-node-n0sztb2edumo > .fl-module-content {
	margin-top:40px;
	margin-right:60px;
	margin-left:60px;
}
@media ( max-width: 768px ) {
 .fl-node-n0sztb2edumo.fl-module > .fl-module-content {
	margin-bottom:80px;
}
}
@media (max-width: 768px) { .fl-node-n0sztb2edumo > .fl-module-content { margin-top:20px;margin-left:20px;margin-right:20px; } }


.fl-node-5f9wb1jd7muo .pp-spacer-module {
    height: 50px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-5f9wb1jd7muo .pp-spacer-module {
        height: 25px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-5f9wb1jd7muo .pp-spacer-module {
        height: 5px;
    }
}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-ktc76d1o30lx .pp-heading-content {
	text-align: center;
}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading {
		}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
									display: inline;
	}
div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 600px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 600px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 600px;
			border-bottom-style: solid;
			border-bottom-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-ktc76d1o30lx .pp-heading-content .pp-sub-heading,
div.fl-node-ktc76d1o30lx .pp-heading-content .pp-sub-heading p {
	}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 600px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 4px;
			border-bottom-color: #f7a246;
			width: 600px;
			margin: 0 auto;
	}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 992px) {
	div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-ktc76d1o30lx .pp-heading-content {
				text-align: ;
			}
	div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-ktc76d1o30lx .pp-heading-content {
				text-align: ;
			}
	div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading .heading-title {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 70px;
	letter-spacing: -0.5px;
}
div.fl-node-ktc76d1o30lx div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-ktc76d1o30lx div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-ktc76d1o30lx div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-ktc76d1o30lx div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading .heading-title {
		font-size: 55px;
	}
}
@media(max-width: 768px) {
	div.fl-node-ktc76d1o30lx .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
 .fl-node-ktc76d1o30lx > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
 .fl-node-1vlqhxp0jgb5 > .fl-module-content {
	margin-right:35px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-1vlqhxp0jgb5.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}
}
@media (max-width: 768px) { .fl-node-1vlqhxp0jgb5 > .fl-module-content { margin-right:20px; } }img.mfp-img {
    padding-bottom: 40px !important;
}

/* Support for object-fit */
.fl-builder-edit .fl-fill-container img {
	transition: object-position .5s;
}

.fl-fill-container :is(.fl-module-content, .fl-photo, .fl-photo-content, img) {
	height: 100% !important;
	width: 100% !important;
}

@media (max-width: 768px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-node-o2ymj6ehwkz0, .fl-node-o2ymj6ehwkz0 .fl-photo {
	text-align: center;
}
@media ( max-width: 768px ) {
 .fl-node-o2ymj6ehwkz0.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-7lp0183auyik.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}
}
.fl-node-wb81hm7tqs6v, .fl-node-wb81hm7tqs6v .fl-photo {
	text-align: center;
}
@media ( max-width: 768px ) {
 .fl-node-wb81hm7tqs6v.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:40px;
}
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-pwa3e6nlmuov.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-pwa3e6nlmuov > .fl-module-content {
	margin-right:0px;
	margin-bottom:20px;
}
@media ( max-width: 768px ) {
 .fl-node-pwa3e6nlmuov.fl-module > .fl-module-content {
	margin-top:40px;
	margin-bottom:5px;
}
}
 .fl-node-mkj6q35480cn > .fl-module-content {
	margin-right:-3px;
}
@media ( max-width: 768px ) {
 .fl-node-mkj6q35480cn.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}
}
@media (max-width: 768px) { .fl-node-mkj6q35480cn > .fl-module-content { margin-right:20px; } }.fl-node-19awnsyhjdeg.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-c95kmi07t3b1 > .fl-module-content {
	margin-right:11px;
}
@media ( max-width: 768px ) {
 .fl-node-c95kmi07t3b1.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}
}
.fl-node-0lz27pb8wvi9, .fl-node-0lz27pb8wvi9 .fl-photo {
	text-align: center;
}
.fl-node-0lz27pb8wvi9 .fl-photo-content, .fl-node-0lz27pb8wvi9 .fl-photo-img {
	width: 300px;
}
 .fl-node-0lz27pb8wvi9 > .fl-module-content {
	margin-bottom:12px;
}
@media ( max-width: 768px ) {
 .fl-node-0lz27pb8wvi9.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:40px;
}
}



.fl-node-9gz8uxja1tdk .pp-spacer-module {
    height: 50px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-9gz8uxja1tdk .pp-spacer-module {
        height: 25px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-9gz8uxja1tdk .pp-spacer-module {
        height: 5px;
    }
}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-6vs4ouk1wpxd .pp-heading-content {
	text-align: center;
}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading {
		}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
									display: inline;
	}
div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 600px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 600px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 600px;
			border-bottom-style: solid;
			border-bottom-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-sub-heading,
div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-sub-heading p {
	}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 600px;
			border-style: solid;
			border-color: #f7a246;
			border-bottom-width: 4px;
	}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 4px;
			border-bottom-color: #f7a246;
			width: 600px;
			margin: 0 auto;
	}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	display: inline-block;
	text-align: center;
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 992px) {
	div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6vs4ouk1wpxd .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6vs4ouk1wpxd .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading .heading-title {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 70px;
	letter-spacing: -0.5px;
}
div.fl-node-6vs4ouk1wpxd div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-6vs4ouk1wpxd div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-6vs4ouk1wpxd div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-6vs4ouk1wpxd div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator:not(.inline) {
	margin-top: 10px;
	margin-bottom: 10px;
}
div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator .pp-heading-separator-icon {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 992px) {
	div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading .heading-title {
		font-size: 55px;
	}
}
@media(max-width: 768px) {
	div.fl-node-6vs4ouk1wpxd .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
 .fl-node-6vs4ouk1wpxd > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}




.fl-node-6w1fsetkclro .pp-button-wrap a.pp-button,
.fl-node-6w1fsetkclro .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
			background: #f7a246;
	
		background-clip: border-box;
}

.fl-node-6w1fsetkclro .pp-button-wrap a.pp-button:hover,
.fl-node-6w1fsetkclro .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #e88c40;
			
	}



.fl-node-6w1fsetkclro a.pp-button {
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}
.fl-node-6w1fsetkclro a.pp-button,
.fl-node-6w1fsetkclro a.pp-button * {
	color: #ffffff;
}

.fl-node-6w1fsetkclro a.pp-button:hover,
.fl-node-6w1fsetkclro a.pp-button:focus,
.fl-node-6w1fsetkclro a.pp-button:hover *,
.fl-node-6w1fsetkclro a.pp-button:focus * {
	color: #ffffff;
}

			.fl-node-6w1fsetkclro .pp-button-wrap a.pp-button,
			.fl-node-6w1fsetkclro .pp-button-wrap a.pp-button:visited {
				-webkit-transition: none;
				-moz-transition: none;
				-o-transition: none;
				-ms-transition: none;
				transition: none;
			}
			.fl-node-6w1fsetkclro .pp-button-wrap {
	text-align: center;
}
.fl-node-6w1fsetkclro a.pp-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-6w1fsetkclro .pp-button-wrap a.pp-button, .fl-node-6w1fsetkclro .pp-button-wrap a.pp-button:visited {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0px;
	width: 400px;
}
.fl-node-6w1fsetkclro .pp-button-wrap a.pp-button:hover, .fl-node-6w1fsetkclro .pp-button-wrap a.pp-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-node-6w1fsetkclro .pp-button .pp-button-icon {
	font-size: 16px;
}
@media(max-width: 992px) {
	.fl-node-6w1fsetkclro .pp-button-wrap {
		text-align: left;
	}
}
@media(max-width: 768px) {
	.fl-node-6w1fsetkclro .pp-button-wrap {
		text-align: center;
	}
	.fl-node-6w1fsetkclro .pp-button-wrap a.pp-button, .fl-node-6w1fsetkclro .pp-button-wrap a.pp-button:visited {
		font-size: 17px;
		line-height: 1.3;
	}
}
 .fl-node-6w1fsetkclro > .fl-module-content {
	margin-top:40px;
}
@media (max-width: 768px) { .fl-node-6w1fsetkclro > .fl-module-content { margin-top:20px; } }



.fl-node-xpsd36ichjrn .pp-button-wrap a.pp-button,
.fl-node-xpsd36ichjrn .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
			background: #f7a246;
	
		background-clip: border-box;
}

.fl-node-xpsd36ichjrn .pp-button-wrap a.pp-button:hover,
.fl-node-xpsd36ichjrn .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #e88c40;
			
	}



.fl-node-xpsd36ichjrn a.pp-button {
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}
.fl-node-xpsd36ichjrn a.pp-button,
.fl-node-xpsd36ichjrn a.pp-button * {
	color: #ffffff;
}

.fl-node-xpsd36ichjrn a.pp-button:hover,
.fl-node-xpsd36ichjrn a.pp-button:focus,
.fl-node-xpsd36ichjrn a.pp-button:hover *,
.fl-node-xpsd36ichjrn a.pp-button:focus * {
	color: #ffffff;
}

			.fl-node-xpsd36ichjrn .pp-button-wrap a.pp-button,
			.fl-node-xpsd36ichjrn .pp-button-wrap a.pp-button:visited {
				-webkit-transition: none;
				-moz-transition: none;
				-o-transition: none;
				-ms-transition: none;
				transition: none;
			}
			.fl-node-xpsd36ichjrn .pp-button-wrap {
	text-align: center;
}
.fl-node-xpsd36ichjrn a.pp-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-xpsd36ichjrn .pp-button-wrap a.pp-button, .fl-node-xpsd36ichjrn .pp-button-wrap a.pp-button:visited {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0px;
	width: 400px;
}
.fl-node-xpsd36ichjrn .pp-button-wrap a.pp-button:hover, .fl-node-xpsd36ichjrn .pp-button-wrap a.pp-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-node-xpsd36ichjrn .pp-button .pp-button-icon {
	font-size: 16px;
}
@media(max-width: 992px) {
	.fl-node-xpsd36ichjrn .pp-button-wrap {
		text-align: left;
	}
}
@media(max-width: 768px) {
	.fl-node-xpsd36ichjrn .pp-button-wrap {
		text-align: center;
	}
	.fl-node-xpsd36ichjrn .pp-button-wrap a.pp-button, .fl-node-xpsd36ichjrn .pp-button-wrap a.pp-button:visited {
		font-size: 17px;
		line-height: 1.3;
	}
}
 .fl-node-xpsd36ichjrn > .fl-module-content {
	margin-top:40px;
	margin-right:60px;
	margin-left:60px;
}
@media (max-width: 768px) { .fl-node-xpsd36ichjrn > .fl-module-content { margin-top:20px;margin-left:20px;margin-right:20px; } }.fl-node-ezwk8lm1ntrj, .fl-node-ezwk8lm1ntrj .fl-photo {
	text-align: center;
}
 .fl-node-ezwk8lm1ntrj > .fl-module-content {
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-ezwk8lm1ntrj.fl-module > .fl-module-content {
	margin-bottom:40px;
}
}
.fl-node-sim12wt3lb57.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 24px;
}
@media(max-width: 768px) {
	.fl-node-sim12wt3lb57.fl-module-heading .fl-heading {
		font-size: 19px;
	}
}
 .fl-node-sim12wt3lb57 > .fl-module-content {
	margin-top:13px;
	margin-right:35px;
}
@media ( max-width: 768px ) {
 .fl-node-sim12wt3lb57.fl-module > .fl-module-content {
	margin-right:10px;
}
}
.fl-node-m43u6aevykfx, .fl-node-m43u6aevykfx .fl-photo {
	text-align: center;
}
 .fl-node-m43u6aevykfx > .fl-module-content {
	margin-top:25px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-m43u6aevykfx.fl-module > .fl-module-content {
	margin-bottom:5px;
}
}
@media (max-width: 768px) { .fl-node-m43u6aevykfx > .fl-module-content { margin-top:20px; } }.fl-node-hkmscv83b12u .pp-info-banner-content {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
}
	.fl-node-hkmscv83b12u .pp-info-banner-content .pp-info-banner-bg {
			    background-image: url('https://demosite.formulatrix.com/wp-content/uploads/2023/11/uPulse-incons-04.svg');
	    	    	    background-size: contain;
	    	    	    background-repeat: no-repeat;
	    	    background-position: center center;
		position: absolute;
		width: 100%;
		height: 100%;
		-webkit-transition: all 0.5s ease;
	    -moz-transition: all 0.5s ease;
	    -ms-transition: all 0.5s ease;
	    -o-transition: all 0.5s ease;
	    transition: all 0.5s ease;
	    will-change: transform;
	}
	.fl-node-hkmscv83b12u .pp-info-banner-content:hover .pp-info-banner-bg {
        		-webkit-transform: scale(1.1);
	    -moz-transform: scale(1.1);
	    -o-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
	    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
	    transform: scale(1.1);
        	}

.fl-node-hkmscv83b12u .pp-info-banner-content .pp-info-banner-bg:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: transparent;
}

.fl-node-hkmscv83b12u .pp-info-banner-content .pp-info-banner-inner {
    display: table;
    width: 100%;
    height: 100%;
}

.fl-node-hkmscv83b12u .pp-info-banner-content .info-banner-wrap {
    display: table-cell;
    vertical-align: middle;
	position: relative;
	z-index: 5;
}

.fl-node-hkmscv83b12u .pp-info-banner-content .info-banner-wrap.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-hkmscv83b12u .pp-info-banner-content .info-banner-wrap.info-right {
	text-align: right;
}

.fl-node-hkmscv83b12u .pp-info-banner-content .info-banner-wrap.info-center {
	text-align: center;
}

.fl-node-hkmscv83b12u .pp-info-banner-content .banner-title {
    	color: #333333;
        	margin-bottom: 5px;
            border-style: no-border;
        border-color: #f3f3f3;
    border-width: 0;
    border-width: 1px;
}


.fl-node-hkmscv83b12u .pp-info-banner-content .banner-description {
    	color: #333333;
        	margin-bottom: 10px;
    }

.fl-node-hkmscv83b12u .pp-info-banner-content img.pp-info-banner-img {
	position: absolute;
	display: block;
	float: none;
	width: auto;
	margin: 0 auto;
	max-width: none;
	z-index: 1;
		height: 200px;
    }

.fl-node-hkmscv83b12u .pp-info-banner-content img.pp-info-banner-img {
            opacity: 0;
    }
.fl-node-hkmscv83b12u .pp-info-banner-content img.pp-info-banner-img[data-animation-class="zoomIn"] {
    opacity: 1;
}

.fl-node-hkmscv83b12u .pp-info-banner-content img.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-hkmscv83b12u .pp-info-banner-content img.img-top-right {
	left: auto;
    right: 0;
}

.fl-node-hkmscv83b12u .pp-info-banner-content img.img-top-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-hkmscv83b12u .pp-info-banner-content img.img-center-left {
    top: 50%;
    transform: translateY(-50%);
}

.fl-node-hkmscv83b12u .pp-info-banner-content img.img-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.fl-node-hkmscv83b12u .pp-info-banner-content img.img-center-right {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 0;
}

.fl-node-hkmscv83b12u .pp-info-banner-content img.img-bottom-center,
.fl-node-hkmscv83b12u .pp-info-banner-content img.img-bottom-left,
.fl-node-hkmscv83b12u .pp-info-banner-content img.img-bottom-right {
    top: auto;
    bottom: 0;
}

.fl-node-hkmscv83b12u .pp-info-banner-content img.img-bottom-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-hkmscv83b12u .pp-info-banner-content img.img-bottom-right {
    right: 0;
    left: auto;
}


.fl-node-hkmscv83b12u .pp-info-banner-content .banner-button {
    background-color: #ffffff;
	color: #333333;
	display: inline-block;
    box-shadow: none;
    text-decoration: none;
}

.fl-node-hkmscv83b12u .pp-info-banner-content .banner-link {
    text-decoration: none !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.fl-node-hkmscv83b12u .pp-info-banner-content .banner-button:hover {
    background-color: #ffffff;
    		color: #cccccc;
        border-color: #222222;
    text-decoration: none;
}

@media only screen and (max-width: 960px) {
    .fl-node-hkmscv83b12u div.pp-info-banner-content {
            	height: 300px;
            }
    .fl-node-hkmscv83b12u div.pp-info-banner-content .banner-title {
            	font-size: 34px;
            }
    .fl-node-hkmscv83b12u div.pp-info-banner-content .banner-description {
            	font-size: 18px;
            }
    .fl-node-hkmscv83b12u div.pp-info-banner-content .banner-button {
            	font-size: 18px;
            }
}

@media only screen and (max-width: 768px) {
    .fl-node-hkmscv83b12u div.pp-info-banner-content {
            	height: 250px;
            }
    .fl-node-hkmscv83b12u div.pp-info-banner-content .banner-title {
            	font-size: 30px;
            }
    .fl-node-hkmscv83b12u div.pp-info-banner-content .banner-description {
            	font-size: 16px;
            }
    .fl-node-hkmscv83b12u div.pp-info-banner-content .banner-button {
            	font-size: 16px;
            }
}

@media only screen and (max-width: 480px) {
    .fl-node-hkmscv83b12u div.pp-info-banner-content {
            	height: 200px;
            }
    .fl-node-hkmscv83b12u div.pp-info-banner-content .banner-title {
            	font-size: 26px;
            }
    .fl-node-hkmscv83b12u div.pp-info-banner-content .banner-description {
            	font-size: 14px;
            }
    .fl-node-hkmscv83b12u div.pp-info-banner-content .banner-button {
            	font-size: 14px;
            }
}
.fl-node-hkmscv83b12u .pp-info-banner-content .info-banner-wrap {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
}
.fl-node-hkmscv83b12u .pp-info-banner-content {
	height: 180px;
}
 .fl-node-hkmscv83b12u > .fl-module-content {
	margin-top:9px;
	margin-bottom:0px;
}
.fl-node-imy7o9rpnsx5 .pp-info-banner-content {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
}
	.fl-node-imy7o9rpnsx5 .pp-info-banner-content .pp-info-banner-bg {
			    background-image: url('https://demosite.formulatrix.com/wp-content/uploads/2023/11/uPulse-incons-07.svg');
	    	    	    background-size: contain;
	    	    	    background-repeat: no-repeat;
	    	    background-position: center center;
		position: absolute;
		width: 100%;
		height: 100%;
		-webkit-transition: all 0.5s ease;
	    -moz-transition: all 0.5s ease;
	    -ms-transition: all 0.5s ease;
	    -o-transition: all 0.5s ease;
	    transition: all 0.5s ease;
	    will-change: transform;
	}
	.fl-node-imy7o9rpnsx5 .pp-info-banner-content:hover .pp-info-banner-bg {
        		-webkit-transform: scale(1.1);
	    -moz-transform: scale(1.1);
	    -o-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
	    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
	    transform: scale(1.1);
        	}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content .pp-info-banner-bg:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: transparent;
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content .pp-info-banner-inner {
    display: table;
    width: 100%;
    height: 100%;
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content .info-banner-wrap {
    display: table-cell;
    vertical-align: middle;
	position: relative;
	z-index: 5;
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content .info-banner-wrap.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content .info-banner-wrap.info-right {
	text-align: right;
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content .info-banner-wrap.info-center {
	text-align: center;
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content .banner-title {
    	color: #333333;
        	margin-bottom: 5px;
            border-style: no-border;
        border-color: #f3f3f3;
    border-width: 0;
    border-width: 1px;
}


.fl-node-imy7o9rpnsx5 .pp-info-banner-content .banner-description {
    	color: #333333;
        	margin-bottom: 10px;
    }

.fl-node-imy7o9rpnsx5 .pp-info-banner-content img.pp-info-banner-img {
	position: absolute;
	display: block;
	float: none;
	width: auto;
	margin: 0 auto;
	max-width: none;
	z-index: 1;
		height: 200px;
    }

.fl-node-imy7o9rpnsx5 .pp-info-banner-content img.pp-info-banner-img {
            opacity: 0;
    }
.fl-node-imy7o9rpnsx5 .pp-info-banner-content img.pp-info-banner-img[data-animation-class="zoomIn"] {
    opacity: 1;
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content img.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content img.img-top-right {
	left: auto;
    right: 0;
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content img.img-top-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content img.img-center-left {
    top: 50%;
    transform: translateY(-50%);
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content img.img-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content img.img-center-right {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 0;
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content img.img-bottom-center,
.fl-node-imy7o9rpnsx5 .pp-info-banner-content img.img-bottom-left,
.fl-node-imy7o9rpnsx5 .pp-info-banner-content img.img-bottom-right {
    top: auto;
    bottom: 0;
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content img.img-bottom-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content img.img-bottom-right {
    right: 0;
    left: auto;
}


.fl-node-imy7o9rpnsx5 .pp-info-banner-content .banner-button {
    background-color: #ffffff;
	color: #333333;
	display: inline-block;
    box-shadow: none;
    text-decoration: none;
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content .banner-link {
    text-decoration: none !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.fl-node-imy7o9rpnsx5 .pp-info-banner-content .banner-button:hover {
    background-color: #ffffff;
    		color: #cccccc;
        border-color: #222222;
    text-decoration: none;
}

@media only screen and (max-width: 960px) {
    .fl-node-imy7o9rpnsx5 div.pp-info-banner-content {
            	height: 300px;
            }
    .fl-node-imy7o9rpnsx5 div.pp-info-banner-content .banner-title {
            	font-size: 34px;
            }
    .fl-node-imy7o9rpnsx5 div.pp-info-banner-content .banner-description {
            	font-size: 18px;
            }
    .fl-node-imy7o9rpnsx5 div.pp-info-banner-content .banner-button {
            	font-size: 18px;
            }
}

@media only screen and (max-width: 768px) {
    .fl-node-imy7o9rpnsx5 div.pp-info-banner-content {
            	height: 250px;
            }
    .fl-node-imy7o9rpnsx5 div.pp-info-banner-content .banner-title {
            	font-size: 30px;
            }
    .fl-node-imy7o9rpnsx5 div.pp-info-banner-content .banner-description {
            	font-size: 16px;
            }
    .fl-node-imy7o9rpnsx5 div.pp-info-banner-content .banner-button {
            	font-size: 16px;
            }
}

@media only screen and (max-width: 480px) {
    .fl-node-imy7o9rpnsx5 div.pp-info-banner-content {
            	height: 200px;
            }
    .fl-node-imy7o9rpnsx5 div.pp-info-banner-content .banner-title {
            	font-size: 26px;
            }
    .fl-node-imy7o9rpnsx5 div.pp-info-banner-content .banner-description {
            	font-size: 14px;
            }
    .fl-node-imy7o9rpnsx5 div.pp-info-banner-content .banner-button {
            	font-size: 14px;
            }
}
.fl-node-imy7o9rpnsx5 .pp-info-banner-content .info-banner-wrap {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
}
.fl-node-imy7o9rpnsx5 .pp-info-banner-content {
	height: 180px;
}
 .fl-node-imy7o9rpnsx5 > .fl-module-content {
	margin-top:9px;
	margin-bottom:0px;
}
.fl-node-9dp2no70srjm .pp-info-banner-content {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
}
	.fl-node-9dp2no70srjm .pp-info-banner-content .pp-info-banner-bg {
			    background-image: url('https://demosite.formulatrix.com/wp-content/uploads/2023/11/uPulse-incons-01.svg');
	    	    	    background-size: contain;
	    	    	    background-repeat: no-repeat;
	    	    background-position: center center;
		position: absolute;
		width: 100%;
		height: 100%;
		-webkit-transition: all 0.5s ease;
	    -moz-transition: all 0.5s ease;
	    -ms-transition: all 0.5s ease;
	    -o-transition: all 0.5s ease;
	    transition: all 0.5s ease;
	    will-change: transform;
	}
	.fl-node-9dp2no70srjm .pp-info-banner-content:hover .pp-info-banner-bg {
        		-webkit-transform: scale(1.1);
	    -moz-transform: scale(1.1);
	    -o-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	    -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
	    filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
	    transform: scale(1.1);
        	}

.fl-node-9dp2no70srjm .pp-info-banner-content .pp-info-banner-bg:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: transparent;
}

.fl-node-9dp2no70srjm .pp-info-banner-content .pp-info-banner-inner {
    display: table;
    width: 100%;
    height: 100%;
}

.fl-node-9dp2no70srjm .pp-info-banner-content .info-banner-wrap {
    display: table-cell;
    vertical-align: middle;
	position: relative;
	z-index: 5;
}

.fl-node-9dp2no70srjm .pp-info-banner-content .info-banner-wrap.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-9dp2no70srjm .pp-info-banner-content .info-banner-wrap.info-right {
	text-align: right;
}

.fl-node-9dp2no70srjm .pp-info-banner-content .info-banner-wrap.info-center {
	text-align: center;
}

.fl-node-9dp2no70srjm .pp-info-banner-content .banner-title {
    	color: #333333;
        	margin-bottom: 5px;
            border-style: no-border;
        border-color: #f3f3f3;
    border-width: 0;
    border-width: 1px;
}


.fl-node-9dp2no70srjm .pp-info-banner-content .banner-description {
    	color: #333333;
        	margin-bottom: 10px;
    }

.fl-node-9dp2no70srjm .pp-info-banner-content img.pp-info-banner-img {
	position: absolute;
	display: block;
	float: none;
	width: auto;
	margin: 0 auto;
	max-width: none;
	z-index: 1;
		height: 200px;
    }

.fl-node-9dp2no70srjm .pp-info-banner-content img.pp-info-banner-img {
            opacity: 0;
    }
.fl-node-9dp2no70srjm .pp-info-banner-content img.pp-info-banner-img[data-animation-class="zoomIn"] {
    opacity: 1;
}

.fl-node-9dp2no70srjm .pp-info-banner-content img.animated {
    -webkit-animation-duration: 1000ms;
    -moz-animation-duration: 1000ms;
    -ms-animation-duration: 1000ms;
    -o-animation-duration: 1000ms;
    animation-duration: 1000ms;
}

.fl-node-9dp2no70srjm .pp-info-banner-content img.img-top-right {
	left: auto;
    right: 0;
}

.fl-node-9dp2no70srjm .pp-info-banner-content img.img-top-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-9dp2no70srjm .pp-info-banner-content img.img-center-left {
    top: 50%;
    transform: translateY(-50%);
}

.fl-node-9dp2no70srjm .pp-info-banner-content img.img-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.fl-node-9dp2no70srjm .pp-info-banner-content img.img-center-right {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 0;
}

.fl-node-9dp2no70srjm .pp-info-banner-content img.img-bottom-center,
.fl-node-9dp2no70srjm .pp-info-banner-content img.img-bottom-left,
.fl-node-9dp2no70srjm .pp-info-banner-content img.img-bottom-right {
    top: auto;
    bottom: 0;
}

.fl-node-9dp2no70srjm .pp-info-banner-content img.img-bottom-center {
    left: 50%;
    transform: translateX(-50%);
}

.fl-node-9dp2no70srjm .pp-info-banner-content img.img-bottom-right {
    right: 0;
    left: auto;
}


.fl-node-9dp2no70srjm .pp-info-banner-content .banner-button {
    background-color: #ffffff;
	color: #333333;
	display: inline-block;
    box-shadow: none;
    text-decoration: none;
}

.fl-node-9dp2no70srjm .pp-info-banner-content .banner-link {
    text-decoration: none !important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.fl-node-9dp2no70srjm .pp-info-banner-content .banner-button:hover {
    background-color: #ffffff;
    		color: #cccccc;
        border-color: #222222;
    text-decoration: none;
}

@media only screen and (max-width: 960px) {
    .fl-node-9dp2no70srjm div.pp-info-banner-content {
            	height: 300px;
            }
    .fl-node-9dp2no70srjm div.pp-info-banner-content .banner-title {
            	font-size: 34px;
            }
    .fl-node-9dp2no70srjm div.pp-info-banner-content .banner-description {
            	font-size: 18px;
            }
    .fl-node-9dp2no70srjm div.pp-info-banner-content .banner-button {
            	font-size: 18px;
            }
}

@media only screen and (max-width: 768px) {
    .fl-node-9dp2no70srjm div.pp-info-banner-content {
            	height: 250px;
            }
    .fl-node-9dp2no70srjm div.pp-info-banner-content .banner-title {
            	font-size: 30px;
            }
    .fl-node-9dp2no70srjm div.pp-info-banner-content .banner-description {
            	font-size: 16px;
            }
    .fl-node-9dp2no70srjm div.pp-info-banner-content .banner-button {
            	font-size: 16px;
            }
}

@media only screen and (max-width: 480px) {
    .fl-node-9dp2no70srjm div.pp-info-banner-content {
            	height: 200px;
            }
    .fl-node-9dp2no70srjm div.pp-info-banner-content .banner-title {
            	font-size: 26px;
            }
    .fl-node-9dp2no70srjm div.pp-info-banner-content .banner-description {
            	font-size: 14px;
            }
    .fl-node-9dp2no70srjm div.pp-info-banner-content .banner-button {
            	font-size: 14px;
            }
}
.fl-node-9dp2no70srjm .pp-info-banner-content .info-banner-wrap {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	padding-left: 30px;
}
.fl-node-9dp2no70srjm .pp-info-banner-content {
	height: 180px;
}
 .fl-node-9dp2no70srjm > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
}
.fl-node-69fog4qd2wnl, .fl-node-69fog4qd2wnl .fl-photo {
	text-align: center;
}
 .fl-node-69fog4qd2wnl > .fl-module-content {
	margin-top:30px;
	margin-right:10px;
	margin-left:-10px;
}
@media ( max-width: 768px ) {
 .fl-node-69fog4qd2wnl.fl-module > .fl-module-content {
	margin-bottom:5px;
}
}
@media (max-width: 768px) { .fl-node-69fog4qd2wnl > .fl-module-content { margin-top:20px;margin-left:20px; } }.fl-node-bk7ix2p8zsu0.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 24px;
}
@media(max-width: 768px) {
	.fl-node-bk7ix2p8zsu0.fl-module-heading .fl-heading {
		font-size: 19px;
	}
}
 .fl-node-bk7ix2p8zsu0 > .fl-module-content {
	margin-top:13px;
	margin-right:35px;
}
@media ( max-width: 768px ) {
 .fl-node-bk7ix2p8zsu0.fl-module > .fl-module-content {
	margin-right:10px;
}
}
.fl-node-qsmjo68c2ph5, .fl-node-qsmjo68c2ph5 .fl-photo {
	text-align: center;
}
.fl-node-qsmjo68c2ph5 .fl-photo-content, .fl-node-qsmjo68c2ph5 .fl-photo-img {
	width: 320px;
}
 .fl-node-qsmjo68c2ph5 > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-qsmjo68c2ph5.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:40px;
}
}
.fl-node-62mahcgr9n5p.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-62mahcgr9n5p > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
}
@media ( max-width: 768px ) {
 .fl-node-62mahcgr9n5p.fl-module > .fl-module-content {
	margin-top:40px;
	margin-bottom:5px;
}
}
 .fl-node-zut17rvgf6w5 > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:20px;
}
@media ( max-width: 768px ) {
 .fl-node-zut17rvgf6w5.fl-module > .fl-module-content {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:5px;
}
}
 .fl-node-xkje840yvrua > .fl-module-content {
	margin-right:0px;
	margin-bottom:20px;
}
@media ( max-width: 768px ) {
 .fl-node-xkje840yvrua.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}
}



.fl-node-f50pqnv14hys .pp-spacer-module {
    height: 100px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-f50pqnv14hys .pp-spacer-module {
        height: 50px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-f50pqnv14hys .pp-spacer-module {
        height: 10px;
    }
}
.fl-node-8dz72xjtefau, .fl-node-8dz72xjtefau .fl-photo {
	text-align: center;
}
.fl-node-8dz72xjtefau .fl-photo-content, .fl-node-8dz72xjtefau .fl-photo-img {
	width: 100px;
}
@media(max-width: 768px) {
	.fl-node-8dz72xjtefau, .fl-node-8dz72xjtefau .fl-photo {
		text-align: center;
	}
}
 .fl-node-8dz72xjtefau.fl-module-photo {
	margin-top:-10px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-8dz72xjtefau.fl-module-photo.fl-module {
	margin-top:30px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
}
.fl-node-2rnv3m4obl75.fl-module-heading, .fl-node-2rnv3m4obl75.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
	font-size: 20px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-2rnv3m4obl75.fl-module-heading, .fl-node-2rnv3m4obl75.fl-module-heading :where(a, q, p, span) {
		text-align: center;
	}
}
 .fl-node-2rnv3m4obl75.fl-module-heading {
	margin-top:15px;
	margin-right:-21px;
	margin-bottom:5px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-2rnv3m4obl75.fl-module-heading.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}
}
.fl-node-h2a8tkz57rw9, .fl-node-h2a8tkz57rw9 .fl-photo {
	text-align: center;
}
.fl-node-h2a8tkz57rw9 .fl-photo-content, .fl-node-h2a8tkz57rw9 .fl-photo-img {
	width: 160px;
}
@media(max-width: 768px) {
	.fl-node-h2a8tkz57rw9, .fl-node-h2a8tkz57rw9 .fl-photo {
		text-align: center;
	}
}
 .fl-node-h2a8tkz57rw9.fl-module-photo {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-h2a8tkz57rw9.fl-module-photo.fl-module {
	margin-top:30px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
}
.fl-node-fy2bkie1xhg4.fl-module-heading, .fl-node-fy2bkie1xhg4.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
	font-size: 20px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-fy2bkie1xhg4.fl-module-heading, .fl-node-fy2bkie1xhg4.fl-module-heading :where(a, q, p, span) {
		text-align: center;
	}
}
 .fl-node-fy2bkie1xhg4.fl-module-heading {
	margin-top:15px;
	margin-right:-8px;
	margin-bottom:5px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-fy2bkie1xhg4.fl-module-heading.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}
}
.fl-node-r8694mghfjeo, .fl-node-r8694mghfjeo .fl-photo {
	text-align: center;
}
.fl-node-r8694mghfjeo .fl-photo-content, .fl-node-r8694mghfjeo .fl-photo-img {
	width: 130px;
}
@media(max-width: 768px) {
	.fl-node-r8694mghfjeo, .fl-node-r8694mghfjeo .fl-photo {
		text-align: center;
	}
}
 .fl-node-r8694mghfjeo.fl-module-photo {
	margin-top:-30px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-r8694mghfjeo.fl-module-photo.fl-module {
	margin-top:30px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
}
.fl-node-k1yvxtphia0f.fl-module-heading, .fl-node-k1yvxtphia0f.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
	font-size: 20px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-k1yvxtphia0f.fl-module-heading, .fl-node-k1yvxtphia0f.fl-module-heading :where(a, q, p, span) {
		text-align: center;
	}
}
 .fl-node-k1yvxtphia0f.fl-module-heading {
	margin-top:15px;
	margin-right:-8px;
	margin-bottom:5px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-k1yvxtphia0f.fl-module-heading.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}
}
 .fl-node-1hjr3n5yzvac > .fl-module-content {
	margin-right:10px;
}
@media ( max-width: 768px ) {
 .fl-node-1hjr3n5yzvac.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}
}
.fl-node-a8g0d15n6w2p, .fl-node-a8g0d15n6w2p .fl-photo {
	text-align: center;
}
.fl-node-a8g0d15n6w2p .fl-photo-content, .fl-node-a8g0d15n6w2p .fl-photo-img {
	width: 360px;
}
 .fl-node-a8g0d15n6w2p > .fl-module-content {
	margin-top:-10px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-a8g0d15n6w2p.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:40px;
}
}
.fl-node-t825somui9xk.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-t825somui9xk > .fl-module-content {
	margin-right:0px;
	margin-bottom:20px;
}
@media ( max-width: 768px ) {
 .fl-node-t825somui9xk.fl-module > .fl-module-content {
	margin-top:40px;
	margin-bottom:5px;
}
}
.fl-node-ytng3ad09uqk, .fl-node-ytng3ad09uqk .fl-photo {
	text-align: center;
}
.fl-node-ytng3ad09uqk .fl-photo-content, .fl-node-ytng3ad09uqk .fl-photo-img {
	width: 280px;
}
 .fl-node-ytng3ad09uqk > .fl-module-content {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:5px;
}
@media ( max-width: 768px ) {
 .fl-node-ytng3ad09uqk.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:40px;
}
}




.fl-node-vkuwqin1a2dr .pp-button-wrap a.pp-button,
.fl-node-vkuwqin1a2dr .pp-button-wrap a.pp-button:visited {
	text-decoration: none;

	
			background: #f7a246;
	
		background-clip: border-box;
}

.fl-node-vkuwqin1a2dr .pp-button-wrap a.pp-button:hover,
.fl-node-vkuwqin1a2dr .pp-button-wrap a.pp-button:focus {
	text-decoration: none;

					background: #e88c40;
			
	}



.fl-node-vkuwqin1a2dr a.pp-button {
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	-ms-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
}
.fl-node-vkuwqin1a2dr a.pp-button,
.fl-node-vkuwqin1a2dr a.pp-button * {
	color: #ffffff;
}

.fl-node-vkuwqin1a2dr a.pp-button:hover,
.fl-node-vkuwqin1a2dr a.pp-button:focus,
.fl-node-vkuwqin1a2dr a.pp-button:hover *,
.fl-node-vkuwqin1a2dr a.pp-button:focus * {
	color: #ffffff;
}

			.fl-node-vkuwqin1a2dr .pp-button-wrap a.pp-button,
			.fl-node-vkuwqin1a2dr .pp-button-wrap a.pp-button:visited {
				-webkit-transition: none;
				-moz-transition: none;
				-o-transition: none;
				-ms-transition: none;
				transition: none;
			}
			.fl-node-vkuwqin1a2dr .pp-button-wrap {
	text-align: center;
}
.fl-node-vkuwqin1a2dr a.pp-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-vkuwqin1a2dr .pp-button-wrap a.pp-button, .fl-node-vkuwqin1a2dr .pp-button-wrap a.pp-button:visited {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0px;
	width: 400px;
}
.fl-node-vkuwqin1a2dr .pp-button-wrap a.pp-button:hover, .fl-node-vkuwqin1a2dr .pp-button-wrap a.pp-button:focus {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
.fl-node-vkuwqin1a2dr .pp-button .pp-button-icon {
	font-size: 16px;
}
@media(max-width: 992px) {
	.fl-node-vkuwqin1a2dr .pp-button-wrap {
		text-align: left;
	}
}
@media(max-width: 768px) {
	.fl-node-vkuwqin1a2dr .pp-button-wrap {
		text-align: center;
	}
}
 .fl-node-vkuwqin1a2dr > .fl-module-content {
	margin-top:50px;
	margin-right:60px;
	margin-left:60px;
}
@media (max-width: 768px) { .fl-node-vkuwqin1a2dr > .fl-module-content { margin-top:20px;margin-left:20px;margin-right:20px; } }.fl-node-c8ma2idkny05, .fl-node-c8ma2idkny05 .fl-photo {
	text-align: center;
}
 .fl-node-c8ma2idkny05 > .fl-module-content {
	margin-top:25px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-c8ma2idkny05.fl-module > .fl-module-content {
	margin-right:5px;
	margin-bottom:5px;
	margin-left:5px;
}
}
@media (max-width: 768px) { .fl-node-c8ma2idkny05 > .fl-module-content { margin-top:20px; } }.fl-node-7ya90t6fqc3i.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 24px;
}
@media(max-width: 768px) {
	.fl-node-7ya90t6fqc3i.fl-module-heading .fl-heading {
		font-size: 19px;
	}
}
 .fl-node-7ya90t6fqc3i > .fl-module-content {
	margin-top:13px;
	margin-right:35px;
}
@media ( max-width: 768px ) {
 .fl-node-7ya90t6fqc3i.fl-module > .fl-module-content {
	margin-right:10px;
}
}
 .fl-node-s7rbzxacf5wt > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:20px;
}
@media ( max-width: 768px ) {
 .fl-node-s7rbzxacf5wt.fl-module > .fl-module-content {
	margin-top:5px;
	margin-right:5px;
	margin-bottom:5px;
}
}
.fl-node-prwk81o9ujsv, .fl-node-prwk81o9ujsv .fl-photo {
	text-align: center;
}
.fl-node-prwk81o9ujsv .fl-photo-content, .fl-node-prwk81o9ujsv .fl-photo-img {
	width: 280px;
}
 .fl-node-prwk81o9ujsv > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-prwk81o9ujsv.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:40px;
}
}
.fl-node-zuyoldmv0xkt, .fl-node-zuyoldmv0xkt .fl-photo {
	text-align: center;
}
.fl-node-zuyoldmv0xkt .fl-photo-content, .fl-node-zuyoldmv0xkt .fl-photo-img {
	width: 110px;
}
@media(max-width: 768px) {
	.fl-node-zuyoldmv0xkt, .fl-node-zuyoldmv0xkt .fl-photo {
		text-align: center;
	}
}
 .fl-node-zuyoldmv0xkt.fl-module-photo {
	margin-top:-10px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-zuyoldmv0xkt.fl-module-photo.fl-module {
	margin-top:30px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
}
.fl-node-atzqo920d5ik.fl-module-heading, .fl-node-atzqo920d5ik.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
	font-size: 20px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-atzqo920d5ik.fl-module-heading, .fl-node-atzqo920d5ik.fl-module-heading :where(a, q, p, span) {
		text-align: center;
	}
}
 .fl-node-atzqo920d5ik.fl-module-heading {
	margin-top:15px;
	margin-right:-21px;
	margin-bottom:5px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-atzqo920d5ik.fl-module-heading.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}
}
.fl-node-lf8e9pj26k41, .fl-node-lf8e9pj26k41 .fl-photo {
	text-align: center;
}
.fl-node-lf8e9pj26k41 .fl-photo-content, .fl-node-lf8e9pj26k41 .fl-photo-img {
	width: 150px;
}
@media(max-width: 768px) {
	.fl-node-lf8e9pj26k41, .fl-node-lf8e9pj26k41 .fl-photo {
		text-align: center;
	}
}
 .fl-node-lf8e9pj26k41.fl-module-photo {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-lf8e9pj26k41.fl-module-photo.fl-module {
	margin-top:30px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
}
.fl-node-8atb512s9vk4.fl-module-heading, .fl-node-8atb512s9vk4.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
	font-size: 20px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-8atb512s9vk4.fl-module-heading, .fl-node-8atb512s9vk4.fl-module-heading :where(a, q, p, span) {
		text-align: center;
	}
}
 .fl-node-8atb512s9vk4.fl-module-heading {
	margin-top:15px;
	margin-right:-8px;
	margin-bottom:5px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-8atb512s9vk4.fl-module-heading.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}
}
.fl-node-f68mhua1qn5c, .fl-node-f68mhua1qn5c .fl-photo {
	text-align: center;
}
.fl-node-f68mhua1qn5c .fl-photo-content, .fl-node-f68mhua1qn5c .fl-photo-img {
	width: 150px;
}
@media(max-width: 768px) {
	.fl-node-f68mhua1qn5c, .fl-node-f68mhua1qn5c .fl-photo {
		text-align: center;
	}
}
 .fl-node-f68mhua1qn5c.fl-module-photo {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-f68mhua1qn5c.fl-module-photo.fl-module {
	margin-top:30px;
	margin-right:10px;
	margin-bottom:10px;
	margin-left:10px;
}
}
.fl-node-uhgvz3knjq9f.fl-module-heading, .fl-node-uhgvz3knjq9f.fl-module-heading :where(a, q, p, span) {
	font-weight: 700;
	font-size: 20px;
	text-align: left;
}
@media(max-width: 768px) {
	.fl-node-uhgvz3knjq9f.fl-module-heading, .fl-node-uhgvz3knjq9f.fl-module-heading :where(a, q, p, span) {
		text-align: center;
	}
}
 .fl-node-uhgvz3knjq9f.fl-module-heading {
	margin-top:7px;
	margin-right:-8px;
	margin-bottom:5px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-uhgvz3knjq9f.fl-module-heading.fl-module {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}
}
.fl-node-it5nhop41m7j.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 24px;
}
@media(max-width: 768px) {
	.fl-node-it5nhop41m7j.fl-module-heading .fl-heading {
		font-size: 19px;
	}
}
 .fl-node-it5nhop41m7j > .fl-module-content {
	margin-top:13px;
	margin-right:35px;
}
@media ( max-width: 768px ) {
 .fl-node-it5nhop41m7j.fl-module > .fl-module-content {
	margin-right:10px;
}
}
.fl-node-f3bepljh9gtu, .fl-node-f3bepljh9gtu .fl-photo {
	text-align: center;
}
 .fl-node-f3bepljh9gtu > .fl-module-content {
	margin-top:-20px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-f3bepljh9gtu.fl-module > .fl-module-content {
	margin-bottom:5px;
}
}
@media (max-width: 768px) { .fl-node-f3bepljh9gtu > .fl-module-content { margin-top:20px; } }.fl-node-t52r1vpzhl3i.fl-module-heading .fl-heading {
	font-weight: 700;
	font-size: 24px;
}
@media(max-width: 768px) {
	.fl-node-t52r1vpzhl3i.fl-module-heading .fl-heading {
		font-size: 19px;
	}
}
 .fl-node-t52r1vpzhl3i > .fl-module-content {
	margin-top:13px;
	margin-right:35px;
}
@media ( max-width: 768px ) {
 .fl-node-t52r1vpzhl3i.fl-module > .fl-module-content {
	margin-right:10px;
}
}
.fl-node-p1q0rk3j78fy, .fl-node-p1q0rk3j78fy .fl-photo {
	text-align: center;
}
.fl-builder-content .fl-node-61653572a92aa .fl-rich-text, .fl-builder-content .fl-node-61653572a92aa .fl-rich-text *:not(b, strong) {
	font-size: 20px;
}
 .fl-node-61653572a92aa > .fl-module-content {
	margin-top:-20px;
}
@media (max-width: 768px) { .fl-node-61653572a92aa > .fl-module-content { margin-top:20px; } }.fl-animated.fl-zoom-in {
	animation: fl-zoom-in 1s ease;
	-webkit-animation: fl-zoom-in 1s ease;
}
@-webkit-keyframes fl-zoom-in {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes fl-zoom-in {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.fl-builder-content .fl-node-61653572a92ab .fl-rich-text, .fl-builder-content .fl-node-61653572a92ab .fl-rich-text *:not(b, strong) {
	font-size: 20px;
}
 .fl-node-61653572a92ab > .fl-module-content {
	margin-top:-20px;
}
@media (max-width: 768px) { .fl-node-61653572a92ab > .fl-module-content { margin-top:20px; } }.fl-builder-content .fl-node-61653572a92ac .fl-rich-text, .fl-builder-content .fl-node-61653572a92ac .fl-rich-text *:not(b, strong) {
	font-size: 20px;
}
 .fl-node-61653572a92ac > .fl-module-content {
	margin-top:-20px;
}
@media (max-width: 768px) { .fl-node-61653572a92ac > .fl-module-content { margin-top:20px; } }@media(max-width: 768px) {
	.fl-builder-content .fl-node-61653572a92d0 .fl-rich-text, .fl-builder-content .fl-node-61653572a92d0 .fl-rich-text *:not(b, strong) {
		font-size: 25px;
	}
}
 .fl-node-61653572a92ea > .fl-module-content {
	margin-right:-5px;
	margin-left:-5px;
}
@media (max-width: 768px) { .fl-node-61653572a92ea > .fl-module-content { margin-left:20px;margin-right:20px; } }.fl-node-18afclnd7ork.fl-module-heading .fl-heading {
	font-weight: 700;
}
@media ( max-width: 768px ) {
 .fl-node-18afclnd7ork.fl-module > .fl-module-content {
	margin-bottom:5px;
}
}
 .fl-node-mqntwzf5lc1x > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-mqntwzf5lc1x.fl-module > .fl-module-content {
	margin-bottom:5px;
}
}
 .fl-node-1wbazxgud8pi > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:20px;
}
@media ( max-width: 768px ) {
 .fl-node-1wbazxgud8pi.fl-module > .fl-module-content {
	margin-bottom:5px;
}
}



.fl-node-w3trn4h7ab5m .pp-spacer-module {
    height: 50px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-w3trn4h7ab5m .pp-spacer-module {
        height: 25px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-w3trn4h7ab5m .pp-spacer-module {
        height: 5px;
    }
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-jfmsa7i8bdrc.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-jfmsa7i8bdrc.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-jfmsa7i8bdrc.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-jfmsa7i8bdrc.fl-module-rich-text.fl-module {
	margin-right:20px;
	margin-left:20px;
}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-7mbyenfk9ulz.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-7mbyenfk9ulz.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-7mbyenfk9ulz.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-7mbyenfk9ulz.fl-module-rich-text.fl-module {
	margin-right:20px;
	margin-left:20px;
}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-owpzh5kryc3f.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-owpzh5kryc3f.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-owpzh5kryc3f.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-owpzh5kryc3f.fl-module-rich-text.fl-module {
	margin-right:20px;
	margin-left:20px;
}
}
 .fl-node-o056t3pxqzau > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:20px;
}
@media ( max-width: 768px ) {
 .fl-node-o056t3pxqzau.fl-module > .fl-module-content {
	margin-bottom:5px;
}
}
 .fl-node-suiv4je9ay1w > .fl-module-content {
	margin-right:0px;
	margin-bottom:20px;
}
@media ( max-width: 768px ) {
 .fl-node-suiv4je9ay1w.fl-module > .fl-module-content {
	margin-top:5px;
	margin-bottom:5px;
}
}
.fl-node-r581hnm0tlkf.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-r581hnm0tlkf > .fl-module-content {
	margin-right:0px;
	margin-bottom:20px;
}
@media ( max-width: 768px ) {
 .fl-node-r581hnm0tlkf.fl-module > .fl-module-content {
	margin-top:40px;
	margin-bottom:5px;
}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-an0eg91dojcz.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-an0eg91dojcz.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-an0eg91dojcz.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-an0eg91dojcz.fl-module-rich-text.fl-module {
	margin-right:20px;
	margin-left:20px;
}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-doqtkxcr548g.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-doqtkxcr548g.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-doqtkxcr548g.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-doqtkxcr548g.fl-module-rich-text.fl-module {
	margin-right:20px;
	margin-left:20px;
}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-7at3whpgvecn.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-7at3whpgvecn.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		text-align: center;
	}
}
 .fl-node-7at3whpgvecn.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-7at3whpgvecn.fl-module-rich-text.fl-module {
	margin-right:20px;
	margin-left:20px;
}
}
 .fl-node-5hm4rda3l8cg > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-5hm4rda3l8cg.fl-module > .fl-module-content {
	margin-bottom:5px;
}
}
 .fl-node-wn5zmrkv0s96 > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:10px;
}
@media ( max-width: 768px ) {
 .fl-node-wn5zmrkv0s96.fl-module > .fl-module-content {
	margin-bottom:5px;
}
}
.fl-row-fixed-width {
	min-width: 1px;
}
.fl-col-group.fl-col-group-responsive-reversed,
.fl-col-group.fl-col-group-responsive-reversed .fl-col,
.fl-col-group.fl-col-group-responsive-reversed .fl-col-content,
.fl-col-group-equal-height .fl-col,
.fl-col-group-equal-height .fl-col-content {
	min-width: 0px;
}

.pp-logo-grid-input.input-small {
	width: 46px !important;
}

.pp-logos-content {
	position: relative;
}
.pp-logos-wrapper {
	display: flex;
    flex-wrap: wrap;
}
.pp-logos-content .pp-logo img {
	width: auto;
}

.pp-logos-content .logo-slider-prev,
.pp-logos-content .logo-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -6px;
}

.pp-logos-content .logo-slider-next {
    right: -6px;
    left: auto;
}

.pp-logos-content .logo-slider-nav {
    text-decoration: none;
    box-shadow: none;
    border: none;
	border-radius: 0;
	background: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	height: 30px;
	width: 30px;
	padding: 0;
	color: #333;
	transition: all 0.3s ease-in-out;
}
.pp-logos-content .disabled {
	pointer-events: none;
}
.pp-logos-content .logo-slider-nav svg {
	height: 20px;
	fill: currentColor;
}

.pp-logos-content .pp-logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: background-color 0.3s ease-in-out;
}

.pp-logos-content .slide-group .pp-logo {
	float: left;
}

.pp-logos-content .pp-logo > a,
.pp-logos-content .pp-logo .pp-logo-inner {
    flex: 1 1 auto;
}

.pp-logos-content .pp-logo .pp-logo-inner .pp-logo-inner-wrap {
    text-align: center;
}

.pp-logos-content .pp-logo a {
    display: block;
    text-decoration: none;
    box-shadow: none;
    border: none;
}

.pp-logos-content .pp-logo div.title-wrapper p.logo-title {
	text-align: center;
}

.pp-logos-content .sr-only {
	position: absolute !important;
    height: 1px !important;
    width: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    overflow: hidden !important;
	border: 0 !important;
	box-shadow: none !important;
}

.pp-logos-content .bx-wrapper {
	margin-bottom: 0;
	direction: ltr;
}
.pp-logos-carousel:not(.pp-logos-wrapper-loaded) {
	opacity: 0;
}

.pp-logos-content.is-ticker {
	display: flex;
	overflow: hidden;
}
.pp-logos-ticker {
	user-select: none;
	display: flex;
	flex-shrink: 0;
	position: relative;	
	padding: 0;
	list-style-type: none;
	overflow: hidden;
	will-change: transform;
	animation: var(--ticker-animation) var(--ticker-speed) linear infinite;
}

@keyframes pp-ticker {
	0% {
		transform: translateX(-0%);
	}
	100% {
		transform: translateX(-50%);
	}
}
@keyframes pp-ticker-reverse {
	0% {
		transform: translateX(-50%);
	}
	100% {
		transform: translateX(-0%);
	}
}.fl-node-61653572a92d1 .pp-logos-wrapper.pp-logos-grid {
    gap: 5px;
}
.fl-node-61653572a92d1 .pp-logos-wrapper.pp-logos-ticker {
    gap: 25px;
}
.fl-node-61653572a92d1 .pp-logos-content .pp-logo {
        	}



.fl-node-61653572a92d1 .pp-logos-content .pp-logo:hover {
	}


.fl-node-61653572a92d1 .pp-logos-content .pp-logo div.title-wrapper {
    display: block}

.fl-node-61653572a92d1 .pp-logos-content .pp-logo div.title-wrapper p.logo-title {
        color: #000000;
            margin-top: 10px;
            margin-bottom: 10px;
    }


.fl-node-61653572a92d1 .pp-logos-content .pp-logo:hover div.title-wrapper p.logo-title {
        color: #666666;
    }

.fl-node-61653572a92d1 .pp-logos-content .pp-logo img {
            -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
            border-style: none;
            border-width: 1px;
                border-radius: 0px;
        margin: 0 auto;
        opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    }

.fl-node-61653572a92d1 .pp-logos-content .pp-logo:hover img {
            -webkit-filter: inherit;
        filter: inherit;
                opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    }
.fl-node-61653572a92d1 .pp-logos-content .bx-pager a {
	opacity: 1;
		background-color: #f5f5f5;
	        width: 10px;
            height: 10px;
            border-radius: 100px;
        box-shadow: none;
}

.fl-node-61653572a92d1 .pp-logos-content .bx-pager a.active,
.fl-node-61653572a92d1 .pp-logos-content .bx-pager a:hover {
		background-color: #999999;
		opacity: 1;
    box-shadow: none;
}


.fl-node-61653572a92d1 .pp-logos-content button.logo-slider-nav {
	    	color: #999999;
    				height: 35px;
		width: 35px;
	}
.fl-node-61653572a92d1 .pp-logos-content .logo-slider-nav svg {
			height: 25px;
	}
.fl-node-61653572a92d1 .pp-logos-content .logo-slider-nav svg path {
		fill: #999999;
    }

.fl-node-61653572a92d1 .pp-logos-content button.logo-slider-nav:hover {
        color: #999999;
    	    }

.fl-node-61653572a92d1 .pp-logos-content button.logo-slider-nav:hover svg path {
	    fill: #999999;
    }

@media only screen and (max-width: 1200px) {
    .fl-node-61653572a92d1 .pp-logos-content .pp-logo {
            }
	.fl-node-61653572a92d1 .pp-logos-content .logo-slider-nav button {
			}
	.fl-node-61653572a92d1 .pp-logos-content .logo-slider-nav svg {
			}
}

@media only screen and (max-width: 992px) {
    .fl-node-61653572a92d1 .pp-logos-content .pp-logo {
            }
	.fl-node-61653572a92d1 .pp-logos-content .logo-slider-nav button {
			}
	.fl-node-61653572a92d1 .pp-logos-content .logo-slider-nav svg {
			}
}

@media only screen and (max-width: 768px) {
    .fl-node-61653572a92d1 .pp-logos-content .pp-logo {
            }
	.fl-node-61653572a92d1 .pp-logos-content .logo-slider-nav button {
			}
	.fl-node-61653572a92d1 .pp-logos-content .logo-slider-nav svg {
			}
}.fl-node-61653572a92d1 .pp-logos-content .pp-logo {
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
}
 .fl-node-61653572a92d1 > .fl-module-content {
	margin-top:20px;
	margin-bottom:20px;
}
.fl-node-x2vb169qm0r8.fl-module-heading .fl-heading {
	font-weight: 700;
}
@media ( max-width: 768px ) {
 .fl-node-x2vb169qm0r8.fl-module > .fl-module-content {
	margin-top:40px;
	margin-bottom:5px;
}
}
.fl-node-xf5lwkqjioum.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-xf5lwkqjioum > .fl-module-content {
	margin-top:20px;
	margin-right:0px;
	margin-bottom:20px;
}
@media ( max-width: 768px ) {
 .fl-node-xf5lwkqjioum.fl-module > .fl-module-content {
	margin-top:40px;
	margin-bottom:5px;
}
}
.fl-node-kvm6eb240ilu .pp-logos-wrapper.pp-logos-grid {
    gap: 5px;
}
.fl-node-kvm6eb240ilu .pp-logos-wrapper.pp-logos-ticker {
    gap: 25px;
}
.fl-node-kvm6eb240ilu .pp-logos-content .pp-logo {
        	}



.fl-node-kvm6eb240ilu .pp-logos-content .pp-logo:hover {
	}


.fl-node-kvm6eb240ilu .pp-logos-content .pp-logo div.title-wrapper {
    display: block}

.fl-node-kvm6eb240ilu .pp-logos-content .pp-logo div.title-wrapper p.logo-title {
        color: #000000;
            margin-top: 10px;
            margin-bottom: 10px;
    }


.fl-node-kvm6eb240ilu .pp-logos-content .pp-logo:hover div.title-wrapper p.logo-title {
        color: #666666;
    }

.fl-node-kvm6eb240ilu .pp-logos-content .pp-logo img {
            -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
            border-style: none;
            border-width: 1px;
                border-radius: 0px;
        margin: 0 auto;
        opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    }

.fl-node-kvm6eb240ilu .pp-logos-content .pp-logo:hover img {
            -webkit-filter: inherit;
        filter: inherit;
                opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
    }
.fl-node-kvm6eb240ilu .pp-logos-content .bx-pager a {
	opacity: 1;
		background-color: #f5f5f5;
	        width: 10px;
            height: 10px;
            border-radius: 100px;
        box-shadow: none;
}

.fl-node-kvm6eb240ilu .pp-logos-content .bx-pager a.active,
.fl-node-kvm6eb240ilu .pp-logos-content .bx-pager a:hover {
		background-color: #999999;
		opacity: 1;
    box-shadow: none;
}


.fl-node-kvm6eb240ilu .pp-logos-content button.logo-slider-nav {
	    	color: #999999;
    				height: 35px;
		width: 35px;
	}
.fl-node-kvm6eb240ilu .pp-logos-content .logo-slider-nav svg {
			height: 25px;
	}
.fl-node-kvm6eb240ilu .pp-logos-content .logo-slider-nav svg path {
		fill: #999999;
    }

.fl-node-kvm6eb240ilu .pp-logos-content button.logo-slider-nav:hover {
        color: #999999;
    	    }

.fl-node-kvm6eb240ilu .pp-logos-content button.logo-slider-nav:hover svg path {
	    fill: #999999;
    }

@media only screen and (max-width: 1200px) {
    .fl-node-kvm6eb240ilu .pp-logos-content .pp-logo {
            }
	.fl-node-kvm6eb240ilu .pp-logos-content .logo-slider-nav button {
			}
	.fl-node-kvm6eb240ilu .pp-logos-content .logo-slider-nav svg {
			}
}

@media only screen and (max-width: 992px) {
    .fl-node-kvm6eb240ilu .pp-logos-content .pp-logo {
            }
	.fl-node-kvm6eb240ilu .pp-logos-content .logo-slider-nav button {
			}
	.fl-node-kvm6eb240ilu .pp-logos-content .logo-slider-nav svg {
			}
}

@media only screen and (max-width: 768px) {
    .fl-node-kvm6eb240ilu .pp-logos-content .pp-logo {
            }
	.fl-node-kvm6eb240ilu .pp-logos-content .logo-slider-nav button {
			}
	.fl-node-kvm6eb240ilu .pp-logos-content .logo-slider-nav svg {
			}
}.fl-node-kvm6eb240ilu .pp-logos-content .pp-logo {
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
}
 .fl-node-kvm6eb240ilu > .fl-module-content {
	margin-top:20px;
	margin-bottom:20px;
}
.fl-node-1hm4ju5bnilq.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-1hm4ju5bnilq > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
}
@media ( max-width: 768px ) {
 .fl-node-1hm4ju5bnilq.fl-module > .fl-module-content {
	margin-top:40px;
	margin-bottom:5px;
}
}
.fl-node-6odmapc159ku.fl-module-heading .fl-heading {
	font-weight: 700;
}
 .fl-node-6odmapc159ku > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
}
@media ( max-width: 768px ) {
 .fl-node-6odmapc159ku.fl-module > .fl-module-content {
	margin-top:40px;
	margin-bottom:5px;
}
}



.fl-node-61653572a92cf .pp-spacer-module {
    height: 100px;
    width: 100%;
}


@media only screen and (max-width: 992px) {
        .fl-node-61653572a92cf .pp-spacer-module {
        height: 50px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-61653572a92cf .pp-spacer-module {
        height: 10px;
    }
}

/* Start Global CSS */
.fl-button-wrap {cursor: pointer !important;}
.grecaptcha-badge { 
    visibility: hidden !important;
}
/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */

/* End Layout CSS */

body:not(.fl-builder-edit) .fl-node-61653572a92ad{z-index:1; position:relative;}.fl-node-5l4amj2kcgz8 .teachpress_filter {
  display: none;
}

                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        
        
        
        
        
        
        			.fl-node-zy5q4oanlc3r .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-lk7bd835zw0q .fl-row-content {
				min-width: 0px;
			}
		
        
        
        			.fl-node-dcy0a5so1gfr .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-4v5frgoq82ti .fl-row-content {
				min-width: 0px;
			}
		
        
        
        
        