/**
 * 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 .fl-button:is(a, button),
.fl-builder-content a.fl-button:visited {
	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 {
	width: 100%;
	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;
	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;
}
.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;
}
.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;
}

/* Button Icon Animation */
.fl-button.fl-button-icon-animation i {
	width: 0 !important;
	opacity: 0;
	transition: all 0.2s ease-out;
}
.fl-button.fl-button-icon-animation:hover i {
	opacity: 1 !important;
}
.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: 1000px) { /* 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: 1001px) 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: 1000px) {
	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;
}
.fl-row-fixed-width {
	max-width: 1500px;
}
.fl-builder-content > .fl-module-box {
	margin: 0;
}
.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;
}
:root {
	--fl-global-text-text-align: left;
}
.fl-builder-content:not(.fl-builder-empty) {
	text-align: left;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





	/* Full Height Rows */
	.fl-node-ljmc5t1nwy6g.fl-row-full-height > .fl-row-content-wrap,
	.fl-node-ljmc5t1nwy6g.fl-row-custom-height > .fl-row-content-wrap {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
	.fl-node-ljmc5t1nwy6g.fl-row-full-height > .fl-row-content-wrap {
		min-height: 100vh;
	}
	.fl-node-ljmc5t1nwy6g.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 0;
	}

	.fl-builder-edit .fl-node-ljmc5t1nwy6g.fl-row-full-height > .fl-row-content-wrap {
		min-height: calc( 100vh - 48px );
	}

	/* Full height iPad with portrait orientation. */
	@media all and (width: 768px) and (height: 1024px) and (orientation:portrait){
		.fl-node-ljmc5t1nwy6g.fl-row-full-height > .fl-row-content-wrap {
			min-height: 1024px;
		}
	}
	/* Full height iPad with landscape orientation. */
	@media all and (width: 1024px) and (height: 768px) and (orientation:landscape){
		.fl-node-ljmc5t1nwy6g.fl-row-full-height > .fl-row-content-wrap {
			min-height: 768px;
		}
	}
	/* Full height iPhone 5. You can also target devices with aspect ratio. */
	@media screen and (aspect-ratio: 40/71) {
		.fl-node-ljmc5t1nwy6g.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-ljmc5t1nwy6g > .fl-row-content-wrap:after {
	background-color: rgba(0, 68, 77, 0.8);
}
.fl-node-ljmc5t1nwy6g.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 580px;
}
.fl-node-ljmc5t1nwy6g .fl-row-content {
	max-width: 1480px;
}
@media(max-width: 1000px) {
	.fl-node-ljmc5t1nwy6g.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 400px;
	}
}
@media(max-width: 768px) {
	.fl-node-ljmc5t1nwy6g.fl-row-custom-height > .fl-row-content-wrap {
		min-height: 300px;
	}
}
 .fl-node-ljmc5t1nwy6g > .fl-row-content-wrap {
	padding-top:440px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-ljmc5t1nwy6g.fl-row > .fl-row-content-wrap {
	padding-top:300px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ljmc5t1nwy6g.fl-row > .fl-row-content-wrap {
	padding-top:100px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    





.fl-node-6c74han01zw2 > .fl-row-content-wrap {
	background-color: #00414A;
}
.fl-node-6c74han01zw2 .fl-row-content {
	max-width: 1480px;
}
 .fl-node-6c74han01zw2 > .fl-row-content-wrap {
	padding-top:60px;
	padding-bottom:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-6c74han01zw2.fl-row > .fl-row-content-wrap {
	padding-top:24px;
	padding-bottom:60px;
}
}
@media ( max-width: 1000px ) {
 .fl-node-6c74han01zw2.fl-row > .fl-row-content-wrap {
	padding-top:30px;
}
}
@media ( max-width: 768px ) {
 .fl-node-6c74han01zw2.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:4px;
	padding-bottom:40px;
	padding-left:4px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
        .fl-node-6c74han01zw2 .pp-row-separator {
            position: absolute;
            left: 0;
            width: 100%;
            z-index: 1;
        }
        .pp-previewing .fl-node-6c74han01zw2 .pp-row-separator {
            z-index: 2001;
        }
        .fl-node-6c74han01zw2 .pp-row-separator svg {
            position: absolute;
            left: 0;
            width: 100%;
        }
        .fl-node-6c74han01zw2 .pp-row-separator-top {
            margin-top: -1px;
        }
        .fl-node-6c74han01zw2 .pp-row-separator-top,
        .fl-node-6c74han01zw2 .pp-row-separator-top svg {
            top: 0;
            bottom: auto;
        }
        .fl-node-6c74han01zw2 .pp-row-separator-bottom {
            margin-bottom: -1px;
        }
        .fl-node-6c74han01zw2 .pp-row-separator-bottom,
        .fl-node-6c74han01zw2 .pp-row-separator-bottom svg {
            top: auto;
            bottom: 0;
        }
        .fl-node-6c74han01zw2 .pp-row-separator-bottom svg.pp-big-triangle,
        .fl-node-6c74han01zw2 .pp-row-separator-bottom svg.pp-big-triangle-shadow,
        .fl-node-6c74han01zw2 .pp-row-separator-top svg.pp-big-triangle-left,
        .fl-node-6c74han01zw2 .pp-row-separator-top svg.pp-big-triangle-right,
        .fl-node-6c74han01zw2 .pp-row-separator-bottom svg.pp-small-triangle,
        .fl-node-6c74han01zw2 .pp-row-separator-top svg.pp-tilt-right,
        .fl-node-6c74han01zw2 .pp-row-separator-bottom svg.pp-tilt-right,
        .fl-node-6c74han01zw2 .pp-row-separator-bottom svg.pp-curve,
        .fl-node-6c74han01zw2 .pp-row-separator-bottom svg.pp-twin-curves,
        .fl-node-6c74han01zw2 .pp-row-separator-bottom svg.pp-wave,
        .fl-node-6c74han01zw2 .pp-row-separator-top svg.pp-cloud,
        .fl-node-6c74han01zw2 .pp-row-separator-bottom svg.pp-slit,
        .fl-node-6c74han01zw2 .pp-row-separator-bottom svg.pp-water-separator {
            transform: scaleY(-1);
        }
        
        .fl-node-6c74han01zw2 .pp-row-separator-bottom svg.pp-big-triangle-right,
        .fl-node-6c74han01zw2 .pp-row-separator-bottom svg.pp-tilt-right {
            transform: scaleX(-1);
        }

        .fl-node-6c74han01zw2 .pp-row-separator-top svg.pp-tilt-left {
            transform: scale(-1);
        }

        
        
        
                @media only screen and (max-width: 1200px) {
                                                        }
                @media only screen and (max-width: 1000px) {
            .fl-node-6c74han01zw2 .pp-row-separator-top,
            .fl-node-6c74han01zw2 .pp-row-separator-bottom {
                display: block;
            }
                        .fl-node-6c74han01zw2 .pp-row-separator-top {
                display: none;
            }
                                    .fl-node-6c74han01zw2 .pp-row-separator-bottom {
                display: none;
            }
                                            }
        @media only screen and (max-width: 768px) {
            .fl-node-6c74han01zw2 .pp-row-separator-top,
            .fl-node-6c74han01zw2 .pp-row-separator-bottom {
                display: block;
            }
                        .fl-node-6c74han01zw2 .pp-row-separator-top {
                display: none;
            }
                                    .fl-node-6c74han01zw2 .pp-row-separator-bottom {
                display: none;
            }
                                            }
    
    
    
    	
	
    
    
    
    





.fl-node-akquhjm09tnz > .fl-row-content-wrap {
	background-color: #00414A;
}
.fl-node-akquhjm09tnz .fl-row-content {
	max-width: 1480px;
}
 .fl-node-akquhjm09tnz > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:80px;
}
@media ( max-width: 1200px ) {
 .fl-node-akquhjm09tnz.fl-row > .fl-row-content-wrap {
	padding-top:24px;
	padding-bottom:60px;
}
}
@media ( max-width: 1000px ) {
 .fl-node-akquhjm09tnz.fl-row > .fl-row-content-wrap {
	padding-top:30px;
}
}
@media ( max-width: 768px ) {
 .fl-node-akquhjm09tnz.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:4px;
	padding-bottom:40px;
	padding-left:4px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
        .fl-node-akquhjm09tnz .pp-row-separator {
            position: absolute;
            left: 0;
            width: 100%;
            z-index: 1;
        }
        .pp-previewing .fl-node-akquhjm09tnz .pp-row-separator {
            z-index: 2001;
        }
        .fl-node-akquhjm09tnz .pp-row-separator svg {
            position: absolute;
            left: 0;
            width: 100%;
        }
        .fl-node-akquhjm09tnz .pp-row-separator-top {
            margin-top: -1px;
        }
        .fl-node-akquhjm09tnz .pp-row-separator-top,
        .fl-node-akquhjm09tnz .pp-row-separator-top svg {
            top: 0;
            bottom: auto;
        }
        .fl-node-akquhjm09tnz .pp-row-separator-bottom {
            margin-bottom: -1px;
        }
        .fl-node-akquhjm09tnz .pp-row-separator-bottom,
        .fl-node-akquhjm09tnz .pp-row-separator-bottom svg {
            top: auto;
            bottom: 0;
        }
        .fl-node-akquhjm09tnz .pp-row-separator-bottom svg.pp-big-triangle,
        .fl-node-akquhjm09tnz .pp-row-separator-bottom svg.pp-big-triangle-shadow,
        .fl-node-akquhjm09tnz .pp-row-separator-top svg.pp-big-triangle-left,
        .fl-node-akquhjm09tnz .pp-row-separator-top svg.pp-big-triangle-right,
        .fl-node-akquhjm09tnz .pp-row-separator-bottom svg.pp-small-triangle,
        .fl-node-akquhjm09tnz .pp-row-separator-top svg.pp-tilt-right,
        .fl-node-akquhjm09tnz .pp-row-separator-bottom svg.pp-tilt-right,
        .fl-node-akquhjm09tnz .pp-row-separator-bottom svg.pp-curve,
        .fl-node-akquhjm09tnz .pp-row-separator-bottom svg.pp-twin-curves,
        .fl-node-akquhjm09tnz .pp-row-separator-bottom svg.pp-wave,
        .fl-node-akquhjm09tnz .pp-row-separator-top svg.pp-cloud,
        .fl-node-akquhjm09tnz .pp-row-separator-bottom svg.pp-slit,
        .fl-node-akquhjm09tnz .pp-row-separator-bottom svg.pp-water-separator {
            transform: scaleY(-1);
        }
        
        .fl-node-akquhjm09tnz .pp-row-separator-bottom svg.pp-big-triangle-right,
        .fl-node-akquhjm09tnz .pp-row-separator-bottom svg.pp-tilt-right {
            transform: scaleX(-1);
        }

        .fl-node-akquhjm09tnz .pp-row-separator-top svg.pp-tilt-left {
            transform: scale(-1);
        }

        
        
        
                @media only screen and (max-width: 1200px) {
                                                        }
                @media only screen and (max-width: 1000px) {
            .fl-node-akquhjm09tnz .pp-row-separator-top,
            .fl-node-akquhjm09tnz .pp-row-separator-bottom {
                display: block;
            }
                        .fl-node-akquhjm09tnz .pp-row-separator-top {
                display: none;
            }
                                    .fl-node-akquhjm09tnz .pp-row-separator-bottom {
                display: none;
            }
                                            }
        @media only screen and (max-width: 768px) {
            .fl-node-akquhjm09tnz .pp-row-separator-top,
            .fl-node-akquhjm09tnz .pp-row-separator-bottom {
                display: block;
            }
                        .fl-node-akquhjm09tnz .pp-row-separator-top {
                display: none;
            }
                                    .fl-node-akquhjm09tnz .pp-row-separator-bottom {
                display: none;
            }
                                            }
    
    
    
    	
	
    
    
    
    





.fl-node-nmpfkejso2yu > .fl-row-content-wrap {
	background-image: url(https://cobbgalstaging.wpenginepowered.com/wp-content/uploads/2026/04/0006_DJI_0006.prettyclouds.webp);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}
.fl-node-nmpfkejso2yu .fl-row-content {
	max-width: 1100px;
}
.fl-node-nmpfkejso2yu .fl-builder-top-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: 100px;
	top: 0;
	bottom: auto;
	transform: scaleX(1) scaleY(1);
}
.fl-node-nmpfkejso2yu .fl-builder-top-edge-layer .fl-shape-content .fl-shape {
	fill: #00414A;
}
.fl-node-nmpfkejso2yu .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: 100px;
	top: auto;
	bottom: 0;
	transform: scaleX(-1) scaleY(-1);
}
.fl-node-nmpfkejso2yu .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: rgb(255, 255, 255);
}
@media(max-width: 1200px) {
	.fl-node-nmpfkejso2yu > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 1000px) {
	.fl-node-nmpfkejso2yu > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 768px) {
	.fl-node-nmpfkejso2yu > .fl-row-content-wrap {
		background-position: 50% 0%;
	}
}
 .fl-node-nmpfkejso2yu > .fl-row-content-wrap {
	padding-top:300px;
	padding-bottom:300px;
}
@media ( max-width: 1200px ) {
 .fl-node-nmpfkejso2yu.fl-row > .fl-row-content-wrap {
	padding-top:180px;
	padding-bottom:180px;
}
}
@media ( max-width: 768px ) {
 .fl-node-nmpfkejso2yu.fl-row > .fl-row-content-wrap {
	padding-top:144px;
	padding-right:20px;
	padding-bottom:144px;
	padding-left:20px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    





.fl-node-u5vy9t2i63m8 > .fl-row-content-wrap {
	background-color: rgb(255, 255, 255);
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.fl-node-u5vy9t2i63m8 .fl-row-content {
	max-width: 1480px;
}
.fl-node-u5vy9t2i63m8.fl-row .fl-row-content-wrap .fl-builder-layer, .fl-node-u5vy9t2i63m8.fl-row-bg-multiple .fl-row-content-wrap .fl-row-content, .fl-node-u5vy9t2i63m8.fl-row-bg-embed .fl-row-content-wrap .fl-bg-embed-code, .fl-node-u5vy9t2i63m8.fl-row-bg-slideshow .fl-row-content-wrap .fl-bg-slideshow, .fl-node-u5vy9t2i63m8.fl-row-bg-video .fl-row-content-wrap .fl-bg-video {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
 .fl-node-u5vy9t2i63m8 > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
 .fl-node-u5vy9t2i63m8 > .fl-row-content-wrap {
	padding-bottom:30px;
}
@media ( max-width: 768px ) {
 .fl-node-u5vy9t2i63m8.fl-row > .fl-row-content-wrap {
	padding-bottom:50px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    





.fl-node-oirtdlxjqgep > .fl-row-content-wrap {
	background-image: url(https://cobbgalstaging.wpenginepowered.com/wp-content/uploads/2026/04/EntryPlaza.webp);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
}
.fl-node-oirtdlxjqgep .fl-row-content {
	max-width: 1100px;
}
.fl-node-oirtdlxjqgep .fl-builder-top-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: 100px;
	top: 0;
	bottom: auto;
	transform: scaleX(1) scaleY(1);
}
.fl-node-oirtdlxjqgep .fl-builder-top-edge-layer .fl-shape-content .fl-shape {
	fill: rgb(255, 255, 255);
}
.fl-node-oirtdlxjqgep .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: 100px;
	top: auto;
	bottom: 0;
	transform: scaleX(-1) scaleY(-1);
}
.fl-node-oirtdlxjqgep .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #00414A;
}
@media(max-width: 1200px) {
	.fl-node-oirtdlxjqgep > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 1000px) {
	.fl-node-oirtdlxjqgep > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 768px) {
	.fl-node-oirtdlxjqgep > .fl-row-content-wrap {
		background-position: 50% 0%;
	}
}
 .fl-node-oirtdlxjqgep > .fl-row-content-wrap {
	padding-top:140px;
	padding-bottom:140px;
}
@media ( max-width: 1200px ) {
 .fl-node-oirtdlxjqgep.fl-row > .fl-row-content-wrap {
	padding-top:180px;
	padding-bottom:180px;
}
}
@media ( max-width: 768px ) {
 .fl-node-oirtdlxjqgep.fl-row > .fl-row-content-wrap {
	padding-top:140px;
	padding-right:20px;
	padding-bottom:140px;
	padding-left:20px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    





.fl-node-7c1jw2ivhfdt > .fl-row-content-wrap {
	background-color: #00414A;
}
.fl-node-7c1jw2ivhfdt .fl-row-content {
	max-width: 1480px;
}
 .fl-node-7c1jw2ivhfdt > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
 .fl-node-7c1jw2ivhfdt > .fl-row-content-wrap {
	padding-bottom:30px;
}
@media ( max-width: 768px ) {
 .fl-node-7c1jw2ivhfdt.fl-row > .fl-row-content-wrap {
	padding-bottom:0px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    





.fl-node-kspb0o9h8zn6 > .fl-row-content-wrap {
	background-color: #00414A;
}
.fl-node-kspb0o9h8zn6 .fl-row-content {
	max-width: 1480px;
}
 .fl-node-kspb0o9h8zn6 > .fl-row-content-wrap {
	margin-top:0px;
}
 .fl-node-kspb0o9h8zn6 > .fl-row-content-wrap {
	padding-top:0px;
	padding-bottom:50px;
}
@media ( max-width: 768px ) {
 .fl-node-kspb0o9h8zn6.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:24px;
	padding-bottom:40px;
	padding-left:14px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    





.fl-node-jub95kwcf0qr > .fl-row-content-wrap {
	background-color: #44437a;
}
 .fl-node-jub95kwcf0qr > .fl-row-content-wrap {
	margin-top:0px;
}
 .fl-node-jub95kwcf0qr > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:50px;
	padding-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-jub95kwcf0qr.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:4px;
	padding-bottom:24px;
	padding-left:4px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    





.fl-node-txg5ju0rlb32 > .fl-row-content-wrap {
	background-color: #29592C;
}
 .fl-node-txg5ju0rlb32 > .fl-row-content-wrap {
	margin-top:0px;
}
 .fl-node-txg5ju0rlb32 > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:50px;
}
@media ( max-width: 768px ) {
 .fl-node-txg5ju0rlb32.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-bottom:4px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    





.fl-node-l2d4gfwyh8up > .fl-row-content-wrap {
	background-color: #643015;
}
 .fl-node-l2d4gfwyh8up > .fl-row-content-wrap {
	margin-top:0px;
}
 .fl-node-l2d4gfwyh8up > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:50px;
}
@media ( max-width: 768px ) {
 .fl-node-l2d4gfwyh8up.fl-row > .fl-row-content-wrap {
	padding-top:24px;
	padding-bottom:40px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    
.fl-builder-content .fl-node-9g60v4izo3b8 :where(.fl-row-content-wrap) a {
	color: #AEC07C;
}

.fl-builder-content .fl-node-9g60v4izo3b8 :where(.fl-row-content-wrap) a:hover {
	color: #D1C0A9;
}




.fl-node-9g60v4izo3b8 > .fl-row-content-wrap {
	background-color: #643015;
	background-repeat: no-repeat;
	background-position: 190% 100%;
	background-attachment: scroll;
	background-size: auto;
}
.fl-node-9g60v4izo3b8 .fl-row-content {
	max-width: 1200px;
}
@media(max-width: 1200px) {
	.fl-node-9g60v4izo3b8 > .fl-row-content-wrap {
		background-position: 0% 0%;
	}
}
@media(max-width: 1000px) {
	.fl-node-9g60v4izo3b8 > .fl-row-content-wrap {
		background-position: 0% 0%;
	}
}
@media(max-width: 768px) {
	.fl-node-9g60v4izo3b8 > .fl-row-content-wrap {
		background-position: 0% 0%;
	}
}
 .fl-node-9g60v4izo3b8 > .fl-row-content-wrap {
	padding-top:80px;
	padding-bottom:60px;
}
@media ( max-width: 1000px ) {
 .fl-node-9g60v4izo3b8.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-9g60v4izo3b8.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
        .fl-node-9g60v4izo3b8 .pp-row-separator {
            position: absolute;
            left: 0;
            width: 100%;
            z-index: 1;
        }
        .pp-previewing .fl-node-9g60v4izo3b8 .pp-row-separator {
            z-index: 2001;
        }
        .fl-node-9g60v4izo3b8 .pp-row-separator svg {
            position: absolute;
            left: 0;
            width: 100%;
        }
        .fl-node-9g60v4izo3b8 .pp-row-separator-top {
            margin-top: -1px;
        }
        .fl-node-9g60v4izo3b8 .pp-row-separator-top,
        .fl-node-9g60v4izo3b8 .pp-row-separator-top svg {
            top: 0;
            bottom: auto;
        }
        .fl-node-9g60v4izo3b8 .pp-row-separator-bottom {
            margin-bottom: -1px;
        }
        .fl-node-9g60v4izo3b8 .pp-row-separator-bottom,
        .fl-node-9g60v4izo3b8 .pp-row-separator-bottom svg {
            top: auto;
            bottom: 0;
        }
        .fl-node-9g60v4izo3b8 .pp-row-separator-bottom svg.pp-big-triangle,
        .fl-node-9g60v4izo3b8 .pp-row-separator-bottom svg.pp-big-triangle-shadow,
        .fl-node-9g60v4izo3b8 .pp-row-separator-top svg.pp-big-triangle-left,
        .fl-node-9g60v4izo3b8 .pp-row-separator-top svg.pp-big-triangle-right,
        .fl-node-9g60v4izo3b8 .pp-row-separator-bottom svg.pp-small-triangle,
        .fl-node-9g60v4izo3b8 .pp-row-separator-top svg.pp-tilt-right,
        .fl-node-9g60v4izo3b8 .pp-row-separator-bottom svg.pp-tilt-right,
        .fl-node-9g60v4izo3b8 .pp-row-separator-bottom svg.pp-curve,
        .fl-node-9g60v4izo3b8 .pp-row-separator-bottom svg.pp-twin-curves,
        .fl-node-9g60v4izo3b8 .pp-row-separator-bottom svg.pp-wave,
        .fl-node-9g60v4izo3b8 .pp-row-separator-top svg.pp-cloud,
        .fl-node-9g60v4izo3b8 .pp-row-separator-bottom svg.pp-slit,
        .fl-node-9g60v4izo3b8 .pp-row-separator-bottom svg.pp-water-separator {
            transform: scaleY(-1);
        }
        
        .fl-node-9g60v4izo3b8 .pp-row-separator-bottom svg.pp-big-triangle-right,
        .fl-node-9g60v4izo3b8 .pp-row-separator-bottom svg.pp-tilt-right {
            transform: scaleX(-1);
        }

        .fl-node-9g60v4izo3b8 .pp-row-separator-top svg.pp-tilt-left {
            transform: scale(-1);
        }

        
        
        
                @media only screen and (max-width: 1200px) {
                                                        }
                @media only screen and (max-width: 1000px) {
            .fl-node-9g60v4izo3b8 .pp-row-separator-top,
            .fl-node-9g60v4izo3b8 .pp-row-separator-bottom {
                display: block;
            }
                        .fl-node-9g60v4izo3b8 .pp-row-separator-top {
                display: none;
            }
                                    .fl-node-9g60v4izo3b8 .pp-row-separator-bottom {
                display: none;
            }
                                            }
        @media only screen and (max-width: 768px) {
            .fl-node-9g60v4izo3b8 .pp-row-separator-top,
            .fl-node-9g60v4izo3b8 .pp-row-separator-bottom {
                display: block;
            }
                        .fl-node-9g60v4izo3b8 .pp-row-separator-top {
                display: none;
            }
                                    .fl-node-9g60v4izo3b8 .pp-row-separator-bottom {
                display: none;
            }
                                            }
    
    
                    .fl-node-9g60v4izo3b8 .fl-row-content-wrap {
                        display: none;
                    }
                .fl-node-9g60v4izo3b8 .pp-er {
            width: 100%;
        }
        .fl-node-9g60v4izo3b8 .pp-er .pp-er-wrap {
            width: 100%;
            background-color: rgba(100, 48, 21, 1);
            padding-top: 18px;
            padding-bottom: 18px;
            cursor: pointer;
            -webkit-user-select: none;
        }
        .fl-node-9g60v4izo3b8 .pp-er .pp-er-title-wrap {
            text-align: center;
            display: block;
            width: auto;
            margin: 0 auto;
        }
                .fl-node-9g60v4izo3b8 .pp-er .pp-er-title {
            display: block;
            color: inherit;
                            color: #ffffff;
                        font-family: "Mulish", sans-serif;font-weight: 600;            font-size: 24px;            margin-bottom: 0px;
            margin-right: 0px;
            text-transform: none;
            vertical-align: middle;
        }
        .fl-node-9g60v4izo3b8 .pp-er .pp-er-arrow {
            display: block;
            color: inherit;
                            color: #ffffff;
                        font-size: 12px;            vertical-align: middle;
        }
                .fl-node-9g60v4izo3b8 .pp-er .pp-er-arrow:before {
            display: inline-block;
                    }
        .fl-node-9g60v4izo3b8 .pp-er-open .pp-er-arrow:before {
                        content: "\f077";
                    }
        .fl-node-9g60v4izo3b8 .pp-er .pp-er-wrap:hover .pp-er-title {
                            color: #d1c0aa;
                    }
        .fl-node-9g60v4izo3b8 .pp-er .pp-er-wrap:hover .pp-er-arrow {
                            color: #d1c0aa;
                    }
        .fl-node-9g60v4izo3b8 .pp-er .pp-er-wrap:hover .pp-er-arrow:before {
                                        border-color: ;
                    }
    
    	
	
    
    
    
    
.fl-builder-content .fl-node-arh65qluowgd :where(.fl-row-content-wrap) a {
	color: #AEC07C;
}

.fl-builder-content .fl-node-arh65qluowgd :where(.fl-row-content-wrap) a:hover {
	color: #D1C0A9;
}




.fl-node-arh65qluowgd > .fl-row-content-wrap {
	background-color: #643015;
}
.fl-node-arh65qluowgd .fl-row-content {
	max-width: 1200px;
}
 .fl-node-arh65qluowgd > .fl-row-content-wrap {
	padding-top:80px;
	padding-bottom:60px;
}
@media ( max-width: 1000px ) {
 .fl-node-arh65qluowgd.fl-row > .fl-row-content-wrap {
	padding-top:40px;
	padding-bottom:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-arh65qluowgd.fl-row > .fl-row-content-wrap {
	padding-top:20px;
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
        .fl-node-arh65qluowgd .pp-row-separator {
            position: absolute;
            left: 0;
            width: 100%;
            z-index: 1;
        }
        .pp-previewing .fl-node-arh65qluowgd .pp-row-separator {
            z-index: 2001;
        }
        .fl-node-arh65qluowgd .pp-row-separator svg {
            position: absolute;
            left: 0;
            width: 100%;
        }
        .fl-node-arh65qluowgd .pp-row-separator-top {
            margin-top: -1px;
        }
        .fl-node-arh65qluowgd .pp-row-separator-top,
        .fl-node-arh65qluowgd .pp-row-separator-top svg {
            top: 0;
            bottom: auto;
        }
        .fl-node-arh65qluowgd .pp-row-separator-bottom {
            margin-bottom: -1px;
        }
        .fl-node-arh65qluowgd .pp-row-separator-bottom,
        .fl-node-arh65qluowgd .pp-row-separator-bottom svg {
            top: auto;
            bottom: 0;
        }
        .fl-node-arh65qluowgd .pp-row-separator-bottom svg.pp-big-triangle,
        .fl-node-arh65qluowgd .pp-row-separator-bottom svg.pp-big-triangle-shadow,
        .fl-node-arh65qluowgd .pp-row-separator-top svg.pp-big-triangle-left,
        .fl-node-arh65qluowgd .pp-row-separator-top svg.pp-big-triangle-right,
        .fl-node-arh65qluowgd .pp-row-separator-bottom svg.pp-small-triangle,
        .fl-node-arh65qluowgd .pp-row-separator-top svg.pp-tilt-right,
        .fl-node-arh65qluowgd .pp-row-separator-bottom svg.pp-tilt-right,
        .fl-node-arh65qluowgd .pp-row-separator-bottom svg.pp-curve,
        .fl-node-arh65qluowgd .pp-row-separator-bottom svg.pp-twin-curves,
        .fl-node-arh65qluowgd .pp-row-separator-bottom svg.pp-wave,
        .fl-node-arh65qluowgd .pp-row-separator-top svg.pp-cloud,
        .fl-node-arh65qluowgd .pp-row-separator-bottom svg.pp-slit,
        .fl-node-arh65qluowgd .pp-row-separator-bottom svg.pp-water-separator {
            transform: scaleY(-1);
        }
        
        .fl-node-arh65qluowgd .pp-row-separator-bottom svg.pp-big-triangle-right,
        .fl-node-arh65qluowgd .pp-row-separator-bottom svg.pp-tilt-right {
            transform: scaleX(-1);
        }

        .fl-node-arh65qluowgd .pp-row-separator-top svg.pp-tilt-left {
            transform: scale(-1);
        }

        
        
        
                @media only screen and (max-width: 1200px) {
                                                        }
                @media only screen and (max-width: 1000px) {
            .fl-node-arh65qluowgd .pp-row-separator-top,
            .fl-node-arh65qluowgd .pp-row-separator-bottom {
                display: block;
            }
                        .fl-node-arh65qluowgd .pp-row-separator-top {
                display: none;
            }
                                    .fl-node-arh65qluowgd .pp-row-separator-bottom {
                display: none;
            }
                                            }
        @media only screen and (max-width: 768px) {
            .fl-node-arh65qluowgd .pp-row-separator-top,
            .fl-node-arh65qluowgd .pp-row-separator-bottom {
                display: block;
            }
                        .fl-node-arh65qluowgd .pp-row-separator-top {
                display: none;
            }
                                    .fl-node-arh65qluowgd .pp-row-separator-bottom {
                display: none;
            }
                                            }
    
    
                    .fl-node-arh65qluowgd .fl-row-content-wrap {
                        display: none;
                    }
                .fl-node-arh65qluowgd .pp-er {
            width: 100%;
        }
        .fl-node-arh65qluowgd .pp-er .pp-er-wrap {
            width: 100%;
            background-color: rgba(100, 48, 21, 1);
            padding-top: 18px;
            padding-bottom: 18px;
            cursor: pointer;
            -webkit-user-select: none;
        }
        .fl-node-arh65qluowgd .pp-er .pp-er-title-wrap {
            text-align: center;
            display: block;
            width: auto;
            margin: 0 auto;
        }
                .fl-node-arh65qluowgd .pp-er .pp-er-title {
            display: block;
            color: inherit;
                            color: #ffffff;
                        font-family: "Mulish", sans-serif;font-weight: 600;            font-size: 24px;            margin-bottom: 0px;
            margin-right: 0px;
            text-transform: none;
            vertical-align: middle;
        }
        .fl-node-arh65qluowgd .pp-er .pp-er-arrow {
            display: block;
            color: inherit;
                            color: #ffffff;
                        font-size: 12px;            vertical-align: middle;
        }
                .fl-node-arh65qluowgd .pp-er .pp-er-arrow:before {
            display: inline-block;
                    }
        .fl-node-arh65qluowgd .pp-er-open .pp-er-arrow:before {
                        content: "\f077";
                    }
        .fl-node-arh65qluowgd .pp-er .pp-er-wrap:hover .pp-er-title {
                            color: #d1c0aa;
                    }
        .fl-node-arh65qluowgd .pp-er .pp-er-wrap:hover .pp-er-arrow {
                            color: #d1c0aa;
                    }
        .fl-node-arh65qluowgd .pp-er .pp-er-wrap:hover .pp-er-arrow:before {
                                        border-color: ;
                    }
    
    	
	
    
    
    
    





.fl-node-whn6qbf1va2t > .fl-row-content-wrap {
	background-image: url(https://cobbgalstaging.wpenginepowered.com/wp-content/uploads/2025/12/Rotunda-Light-Fixture2.webp);
	background-repeat: no-repeat;
	background-position: 100% 60%;
	background-attachment: fixed;
	background-size: cover;
}
.fl-node-whn6qbf1va2t .fl-row-content {
	max-width: 1480px;
}
.fl-node-whn6qbf1va2t .fl-builder-top-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: 100px;
	top: 0;
	bottom: auto;
	transform: scaleX(1) scaleY(1);
}
.fl-node-whn6qbf1va2t .fl-builder-top-edge-layer .fl-shape-content .fl-shape {
	fill: #643015;
}
.fl-node-whn6qbf1va2t .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: 100px;
	top: auto;
	bottom: 0;
	transform: scaleX(-1) scaleY(-1);
}
.fl-node-whn6qbf1va2t .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #00414A;
}
@media(max-width: 1200px) {
	.fl-node-whn6qbf1va2t > .fl-row-content-wrap {
		background-position: 0% 0%;
	}
}
@media(max-width: 1000px) {
	.fl-node-whn6qbf1va2t > .fl-row-content-wrap {
		background-position: 0% 0%;
	}
}
@media(max-width: 768px) {
	.fl-node-whn6qbf1va2t > .fl-row-content-wrap {
		background-position: 50% 0%;
	}
}
 .fl-node-whn6qbf1va2t > .fl-row-content-wrap {
	padding-top:140px;
	padding-bottom:140px;
}
@media ( max-width: 1200px ) {
 .fl-node-whn6qbf1va2t.fl-row > .fl-row-content-wrap {
	padding-top:180px;
	padding-bottom:180px;
}
}
@media ( max-width: 768px ) {
 .fl-node-whn6qbf1va2t.fl-row > .fl-row-content-wrap {
	padding-top:140px;
	padding-right:20px;
	padding-bottom:140px;
	padding-left:20px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    





.fl-node-9sunh7fptcya > .fl-row-content-wrap {
	background-color: #00414A;
}
.fl-node-9sunh7fptcya .fl-row-content {
	max-width: 1596px;
}
 .fl-node-9sunh7fptcya > .fl-row-content-wrap {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
 .fl-node-9sunh7fptcya > .fl-row-content-wrap {
	padding-bottom:30px;
}
@media ( max-width: 768px ) {
 .fl-node-9sunh7fptcya.fl-row > .fl-row-content-wrap {
	padding-right:20px;
	padding-bottom:20px;
	padding-left:20px;
}
}

                
    
    .fl-builder-row-settings #fl-field-separator_position {
        display: none !important;
    }
    
    
    
    	
	
    
    
    
    



.fl-node-egzbkt5im93s {
	width: 100%;
}
.fl-node-egzbkt5im93s > .fl-col-content {
	background-color: rgba(255, 255, 255, 0.87);
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
 .fl-node-egzbkt5im93s > .fl-col-content {
	padding-top:30px;
	padding-right:44px;
	padding-bottom:30px;
	padding-left:44px;
}
@media ( max-width: 768px ) {
 .fl-node-egzbkt5im93s.fl-col > .fl-col-content {
	padding-top:4px;
	padding-right:24px;
	padding-bottom:24px;
	padding-left:24px;
}
}
.fl-animated.fl-fade-in {
	animation: fl-fade-in 1s ease;
	-webkit-animation: fl-fade-in 1s ease;
}
@-webkit-keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fl-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}




.fl-node-eqs0yb4jglhm {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-eqs0yb4jglhm {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-eiluzs86qhk0 {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-eiluzs86qhk0 {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-eiluzs86qhk0 > .fl-col-content {
	padding-left:44px;
}
@media ( max-width: 1000px ) {
 .fl-node-eiluzs86qhk0.fl-col > .fl-col-content {
	padding-left:10px;
}
}




.fl-node-nhwrv0qyo5uf {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-nhwrv0qyo5uf {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-w9g3xzcd5l46 {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-w9g3xzcd5l46 {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-vgshwja7dr8l {
	width: 50%;
}
.fl-node-vgshwja7dr8l > .fl-col-content {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-vgshwja7dr8l {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-3jgqn514vzek {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-3jgqn514vzek {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
.fl-animated.fl-fade-up {
	animation: fl-fade-up 1s ease;
	-webkit-animation: fl-fade-up 1s ease;
}
@-webkit-keyframes fl-fade-up {
  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-up {
  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);
  }
}




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




.fl-node-78ym1hduzf5t {
	width: 100%;
}
.fl-node-78ym1hduzf5t > .fl-col-content {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
 .fl-node-78ym1hduzf5t > .fl-col-content {
	margin-left:20px;
}
 .fl-node-78ym1hduzf5t > .fl-col-content {
	padding-top:30px;
	padding-bottom:0px;
}




.fl-node-j71t0yeasrq3 {
	width: 33.333%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-j71t0yeasrq3 {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-j71t0yeasrq3 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-0re87ztbv1gc {
	width: 100%;
}




.fl-node-adzyxef4w52h {
	width: 33.333%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-adzyxef4w52h {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-adzyxef4w52h {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-5n8xfiv0qh19 {
	width: 33.333%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-5n8xfiv0qh19 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-tk406yansrpg {
	width: 29%;
}




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




.fl-node-82u5dvbmq4lo {
	width: 50%;
}




.fl-node-vp958fnagihm {
	width: 33.33%;
}




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




.fl-node-u0iw6nk4rghm {
	width: 33.33%;
}




.fl-node-2or3gatb4lup {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-2or3gatb4lup {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-0be2gniyqz7h {
	width: 100%;
}




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




.fl-node-32dy4jewbxn1 {
	width: 50%;
}
.fl-node-32dy4jewbxn1 > .fl-col-content {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-32dy4jewbxn1 {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media ( max-width: 1000px ) {
 .fl-node-32dy4jewbxn1.fl-col > .fl-col-content {
	margin-bottom:20px;
}
}




.fl-node-vgxlbz67kqde {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-vgxlbz67kqde {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-vgxlbz67kqde > .fl-col-content {
	margin-top:20px;
}




.fl-node-v7dyl5w0qxau {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-v7dyl5w0qxau {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




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




.fl-node-va7wscfh34lq {
	width: 50%;
}
.fl-node-va7wscfh34lq > .fl-col-content {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-va7wscfh34lq {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-49lsoxvnc5ut {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-49lsoxvnc5ut {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-49lsoxvnc5ut > .fl-col-content {
	margin-top:20px;
}




.fl-node-zylke6097u13 {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-zylke6097u13 {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-93z1hioc4vfg {
	width: 50%;
}




.fl-node-7ct8f2n436me {
	width: 50%;
}




.fl-node-73m0p8uwld5y {
	width: 50%;
}




.fl-node-mdx63rcb5qof {
	width: 100%;
}
 .fl-node-mdx63rcb5qof > .fl-col-content {
	padding-top:16px;
	padding-right:32px;
	padding-bottom:16px;
	padding-left:32px;
}
@media ( max-width: 1000px ) {
 .fl-node-mdx63rcb5qof.fl-col > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-mdx63rcb5qof.fl-col > .fl-col-content {
	padding-right:0px;
	padding-left:0px;
}
}




.fl-node-bfsdvyo6u1rj {
	width: 33.333%;
}
 .fl-node-bfsdvyo6u1rj > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}




.fl-node-bvf6os7p5qwg {
	width: 20%;
}
 .fl-node-bvf6os7p5qwg > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}




.fl-node-3pk9r78m0dit {
	width: 20%;
}
 .fl-node-3pk9r78m0dit > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}




.fl-node-pxnljash62id {
	width: 100%;
}
 .fl-node-pxnljash62id > .fl-col-content {
	padding-top:16px;
	padding-right:32px;
	padding-bottom:16px;
	padding-left:32px;
}
@media ( max-width: 1000px ) {
 .fl-node-pxnljash62id.fl-col > .fl-col-content {
	padding-right:20px;
	padding-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-pxnljash62id.fl-col > .fl-col-content {
	padding-right:0px;
	padding-left:0px;
}
}




.fl-node-gf1ytu96j2ai {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-gf1ytu96j2ai {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-gf1ytu96j2ai > .fl-col-content {
	padding-right:44px;
}
@media ( max-width: 1000px ) {
 .fl-node-gf1ytu96j2ai.fl-col > .fl-col-content {
	padding-right:20px;
	padding-left:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-gf1ytu96j2ai.fl-col > .fl-col-content {
	padding-right:0px;
	padding-left:20px;
}
}




.fl-node-dk1aq3s5vz42 {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-dk1aq3s5vz42 {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-05vl73g6xkre {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-05vl73g6xkre {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-sy98oqnxua1v {
	width: 50%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-sy98oqnxua1v {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-icqj9u8og5lh {
	width: 33.334%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-icqj9u8og5lh {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-icqj9u8og5lh {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-r49xkctdjn3i {
	width: 33.334%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-r49xkctdjn3i {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-r49xkctdjn3i {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-rxov3jwt2n9i {
	width: 16.607%;
}




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




.fl-node-7j6khtpsc2ye {
	width: 20.93%;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-7j6khtpsc2ye {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
@media ( max-width: 768px ) {
 .fl-node-7j6khtpsc2ye.fl-col > .fl-col-content {
	margin-right:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-7j6khtpsc2ye.fl-col > .fl-col-content {
	padding-right:0px;
}
}




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




.fl-node-pvn2103dkzsh {
	width: 16.66%;
}




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




.fl-node-j9q65dyxas8e {
	width: 16.67%;
}




.fl-node-sn5j18ek2mxq {
	width: 50%;
}
.fl-node-sn5j18ek2mxq > .fl-col-content {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-sn5j18ek2mxq {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-sn5j18ek2mxq > .fl-col-content {
	margin-top:20px;
	margin-left:20px;
}
@media ( max-width: 1000px ) {
 .fl-node-sn5j18ek2mxq.fl-col > .fl-col-content {
	margin-left:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-sn5j18ek2mxq.fl-col > .fl-col-content {
	margin-left:20px;
}
}




.fl-node-6ksoiynwzu8f {
	width: 50%;
}
.fl-node-6ksoiynwzu8f > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-6ksoiynwzu8f {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-6ksoiynwzu8f > .fl-col-content {
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
@media ( max-width: 1000px ) {
 .fl-node-6ksoiynwzu8f.fl-col > .fl-col-content {
	margin-left:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-6ksoiynwzu8f.fl-col > .fl-col-content {
	margin-right:20px;
	margin-left:20px;
}
}
 .fl-node-6ksoiynwzu8f > .fl-col-content {
	padding-top:0px;
	padding-bottom:0px;
}




.fl-node-ql1gm5arutjz {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-ql1gm5arutjz {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media ( max-width: 1000px ) {
 .fl-node-ql1gm5arutjz.fl-col > .fl-col-content {
	padding-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ql1gm5arutjz.fl-col > .fl-col-content {
	padding-left:0px;
}
}




.fl-node-y2po7l64uq8f {
	width: 50%;
}
.fl-node-y2po7l64uq8f > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-y2po7l64uq8f {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-y2po7l64uq8f > .fl-col-content {
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-y2po7l64uq8f.fl-col > .fl-col-content {
	margin-right:20px;
	margin-left:20px;
}
}
 .fl-node-y2po7l64uq8f > .fl-col-content {
	padding-top:0px;
	padding-bottom:0px;
}




.fl-node-42zqgbyu0hn1 {
	width: 50%;
}
.fl-node-42zqgbyu0hn1 > .fl-col-content {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-42zqgbyu0hn1 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-42zqgbyu0hn1 > .fl-col-content {
	margin-top:40px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-42zqgbyu0hn1.fl-col > .fl-col-content {
	margin-left:20px;
}
}




.fl-node-7lsgv2em5w4t {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-7lsgv2em5w4t {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




.fl-node-nf78yhxwutgv {
	width: 50%;
}
.fl-node-nf78yhxwutgv > .fl-col-content {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-nf78yhxwutgv {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-nf78yhxwutgv > .fl-col-content {
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-nf78yhxwutgv.fl-col > .fl-col-content {
	margin-right:20px;
	margin-left:20px;
}
}
 .fl-node-nf78yhxwutgv > .fl-col-content {
	padding-top:0px;
	padding-bottom:20px;
}




.fl-node-f86vzyret912 {
	width: 50%;
}
.fl-node-f86vzyret912 > .fl-col-content {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-f86vzyret912 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-f86vzyret912 > .fl-col-content {
	margin-top:40px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-f86vzyret912.fl-col > .fl-col-content {
	margin-left:20px;
}
}




.fl-node-4vouf0nk3aqr {
	width: 50%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-4vouf0nk3aqr {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}




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




.fl-node-5yqml0fvh486 {
	width: 50%;
}




.fl-node-69ydkhbeugzi {
	width: 50%;
}




.fl-node-noa6qwjbfu23 {
	width: 33.333%;
}
 .fl-node-noa6qwjbfu23 > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}




.fl-node-u6gybt95ldoq {
	width: 20%;
}
 .fl-node-u6gybt95ldoq > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}




.fl-node-n1fkiotujp9r {
	width: 20%;
}
 .fl-node-n1fkiotujp9r > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}




.fl-node-sqtf69wkpvyb {
	width: 33.333%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-sqtf69wkpvyb {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-sqtf69wkpvyb {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-57qzcxmskuld {
	width: 33.333%;
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-57qzcxmskuld {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-57qzcxmskuld {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}




.fl-node-ye4l629qh3n7 {
	width: 50.06%;
}




.fl-node-vl5a682wh0by {
	width: 50.07%;
}




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




.fl-node-94yq537obihs {
	width: 50%;
}




.fl-node-ifrl9hk6e48t {
	width: 33.333%;
}
 .fl-node-ifrl9hk6e48t > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}




.fl-node-cmi5tv18hsgb {
	width: 20%;
}
 .fl-node-cmi5tv18hsgb > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}




.fl-node-lw5qkb9vcp71 {
	width: 20%;
}
 .fl-node-lw5qkb9vcp71 > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}




.fl-node-l13vnzefs208 {
	width: 100%;
}
@media(max-width: 1200px) {
	.fl-builder-content .fl-node-l13vnzefs208 {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 1000px) {
	.fl-builder-content .fl-node-l13vnzefs208 {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
 .fl-node-l13vnzefs208 > .fl-col-content {
	padding-top:40px;
	padding-right:40px;
	padding-bottom:40px;
	padding-left:10px;
}
@media ( max-width: 1200px ) {
 .fl-node-l13vnzefs208.fl-col > .fl-col-content {
	padding-top:6em;
	padding-right:3em;
	padding-left:.6em;
}
}
@media ( max-width: 1000px ) {
 .fl-node-l13vnzefs208.fl-col > .fl-col-content {
	padding-top:1em;
	padding-right:.6em;
	padding-bottom:7em;
}
}
@media ( max-width: 768px ) {
 .fl-node-l13vnzefs208.fl-col > .fl-col-content {
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




.fl-node-ckaw45qtf1rj {
	width: 20%;
}
 .fl-node-ckaw45qtf1rj > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}




.fl-node-c5evi2kjn3sl {
	width: 20%;
}
 .fl-node-c5evi2kjn3sl > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}




.fl-node-v41m6he7ftsq {
	width: 20%;
}
 .fl-node-v41m6he7ftsq > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}




.fl-node-9fp8o1c0v2qd {
	width: 20%;
}
 .fl-node-9fp8o1c0v2qd > .fl-col-content {
	padding-right:10px;
	padding-left:10px;
}




.fl-node-to5gyaz0pkrq {
	width: 100%;
}
.fl-node-to5gyaz0pkrq > .fl-col-content {
	background-color: rgba(255, 255, 255, 0.87);
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
 .fl-node-to5gyaz0pkrq > .fl-col-content {
	padding-top:30px;
	padding-right:44px;
	padding-bottom:30px;
	padding-left:44px;
}
@media ( max-width: 768px ) {
 .fl-node-to5gyaz0pkrq.fl-col > .fl-col-content {
	padding-top:24px;
	padding-right:24px;
	padding-bottom:24px;
	padding-left:24px;
}
}




.fl-node-spc5uboxlqdn {
	width: 100%;
}
.fl-node-spc5uboxlqdn > .fl-col-content {
	background-color: rgba(255, 255, 255, 0.87);
}
 .fl-node-spc5uboxlqdn > .fl-col-content {
	padding-top:40px;
	padding-bottom:40px;
}
@media ( max-width: 768px ) {
 .fl-node-spc5uboxlqdn.fl-col > .fl-col-content {
	padding-top:24px;
	padding-right:4px;
	padding-bottom:20px;
	padding-left:4px;
}
}
.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-tkmqd7pb3roz .pp-heading-content .pp-heading-prefix {
		color: rgb(255, 255, 255);
	}

div.fl-node-tkmqd7pb3roz .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgb(255, 255, 255);
									display: inline;
	}
div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-sub-heading,
div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-sub-heading p {
		color: #03182b;
	}

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

div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-tkmqd7pb3roz .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-tkmqd7pb3roz .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


@media only screen and (max-width: 1000px) {
	div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-tkmqd7pb3roz .pp-heading-content {
				text-align: left;
			}
	div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading-separator .pp-separator-line {
												float: left;
									}
	div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading-prefix {
							padding-left: 0 !important;
							}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-tkmqd7pb3roz .pp-heading-content {
				text-align: ;
			}
	div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading-prefix {
	font-weight: 500;
	font-size: 19px;
	text-transform: uppercase;
}
div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading .heading-title {
	font-size: 78px;
	line-height: 1.15em;
}
div.fl-node-tkmqd7pb3roz div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-tkmqd7pb3roz div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-tkmqd7pb3roz div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-tkmqd7pb3roz div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-sub-heading, div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-sub-heading p {
	font-size: 19px;
}
div.fl-node-tkmqd7pb3roz .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-tkmqd7pb3roz .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading-prefix {
		font-size: 18px;
	}
	div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading .heading-title {
		font-size: 60px;
	}
	div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-sub-heading, div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
@media(max-width: 1000px) {
	div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading-prefix {
		font-size: 16px;
	}
	div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
@media(max-width: 768px) {
	div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-heading .heading-title {
		font-size: 38px;
	}
	div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-sub-heading, div.fl-node-tkmqd7pb3roz .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
 .fl-node-tkmqd7pb3roz > .fl-module-content {
	margin-right:20px;
	margin-bottom:10px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-tkmqd7pb3roz.fl-module > .fl-module-content {
	margin-right:20px;
	margin-left: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-vzy3r61ma7u8, .fl-node-vzy3r61ma7u8 .fl-photo {
	text-align: left;
}
.fl-node-vzy3r61ma7u8 .fl-photo-content, .fl-node-vzy3r61ma7u8 .fl-photo-img {
	width: 480px;
}
 .fl-node-vzy3r61ma7u8.fl-module-photo {
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}

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

div.fl-node-jodbeks82hyi .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgb(37, 35, 41);
									display: inline;
	}
div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-jodbeks82hyi .pp-heading-content .pp-sub-heading,
div.fl-node-jodbeks82hyi .pp-heading-content .pp-sub-heading p {
		color: #03182b;
	}

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

div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-jodbeks82hyi .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-jodbeks82hyi .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-jodbeks82hyi .pp-heading-content {
				text-align: ;
			}
	div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading-prefix {
	font-weight: 500;
	font-size: 24px;
}
div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading .heading-title {
	font-size: 34px;
	line-height: 1.15em;
}
div.fl-node-jodbeks82hyi div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-jodbeks82hyi div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-jodbeks82hyi div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-jodbeks82hyi div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-jodbeks82hyi .pp-heading-content .pp-sub-heading, div.fl-node-jodbeks82hyi .pp-heading-content .pp-sub-heading p {
	font-size: 19px;
}
div.fl-node-jodbeks82hyi .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-jodbeks82hyi .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading .heading-title {
		font-size: 36px;
	}
	div.fl-node-jodbeks82hyi .pp-heading-content .pp-sub-heading, div.fl-node-jodbeks82hyi .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
@media(max-width: 1000px) {
	div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
@media(max-width: 768px) {
	div.fl-node-jodbeks82hyi .pp-heading-content .pp-heading .heading-title {
		font-size: 38px;
	}
	div.fl-node-jodbeks82hyi .pp-heading-content .pp-sub-heading, div.fl-node-jodbeks82hyi .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
 .fl-node-jodbeks82hyi > .fl-module-content {
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 1000px ) {
 .fl-node-jodbeks82hyi.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-jodbeks82hyi.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-module-box:before,
.fl-module-box:after {
	position: absolute;
}
a.fl-module-box {
	text-decoration: none;
}

/* Zero margins for child modules */
.fl-module-box :where( .fl-module ),
.fl-module-box :where( .fl-module-content ),
.fl-module-box.fl-block > * {
	margin: 0;
}

/* Prevent sliders and carousels from blowing out flex layouts */
:where(.fl-module-box:has(
    [class*="slide"],
    [class*="carousel"],
    [class*="swiper"]
)) {
    min-width: 0;
}
.fl-builder-content-8113 .fl-node-volj28z64m0q {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	background: linear-gradient(#b1dae3, #b1dae3);
}
@media(max-width: 1000px) {
	.fl-builder-content-8113 .fl-node-volj28z64m0q {
		flex-direction: column;
		align-items: start;
		gap: 24px;
	}
}
.fl-node-37bf6kvpiuqn, .fl-node-37bf6kvpiuqn .fl-photo {
	text-align: center;
}
.fl-node-37bf6kvpiuqn .fl-photo-content, .fl-node-37bf6kvpiuqn .fl-photo-img {
	width: 450px;
}
@media(max-width: 1000px) {
	.fl-node-37bf6kvpiuqn, .fl-node-37bf6kvpiuqn .fl-photo {
		text-align: left;
	}
	.fl-node-37bf6kvpiuqn .fl-photo-content, .fl-node-37bf6kvpiuqn .fl-photo-img {
		width: 200px;
	}
}
@media(max-width: 768px) {
	.fl-node-37bf6kvpiuqn .fl-photo-content, .fl-node-37bf6kvpiuqn .fl-photo-img {
		width: 100%;
	}
}

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

div.fl-node-k9m7igo4eqpl .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-k9m7igo4eqpl .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-k9m7igo4eqpl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-k9m7igo4eqpl .pp-heading-content {
				text-align: ;
			}
	div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading-prefix {
	font-size: 18px;
	text-transform: uppercase;
}
div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading .heading-title {
	font-size: 32px;
}
div.fl-node-k9m7igo4eqpl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-k9m7igo4eqpl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-k9m7igo4eqpl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-k9m7igo4eqpl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-k9m7igo4eqpl .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-k9m7igo4eqpl .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading .heading-title {
		font-size: 26px;
	}
}
@media(max-width: 1000px) {
	div.fl-node-k9m7igo4eqpl .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
	}
}
 .fl-node-k9m7igo4eqpl > .fl-module-content {
	margin-top:0px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-k9m7igo4eqpl.fl-module > .fl-module-content {
	margin-top:12px;
	margin-right:24px;
	margin-left:24px;
}
}
@media ( max-width: 1000px ) {
 .fl-node-k9m7igo4eqpl.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:20px;
	margin-left:20px;
}
}
.fl-node-jw6nura2kevq, .fl-node-jw6nura2kevq .fl-photo {
	text-align: center;
}
.fl-node-jw6nura2kevq .fl-photo-content, .fl-node-jw6nura2kevq .fl-photo-img {
	width: 450px;
}
@media(max-width: 768px) {
	.fl-node-jw6nura2kevq .fl-photo-content, .fl-node-jw6nura2kevq .fl-photo-img {
		width: 100%;
	}
}

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

div.fl-node-gp2efzhvic6l .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-gp2efzhvic6l .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-gp2efzhvic6l .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-gp2efzhvic6l .pp-heading-content {
				text-align: ;
			}
	div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading-prefix {
	font-size: 18px;
	text-transform: uppercase;
}
div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading .heading-title {
	font-size: 32px;
}
div.fl-node-gp2efzhvic6l div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-gp2efzhvic6l div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-gp2efzhvic6l div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-gp2efzhvic6l div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-gp2efzhvic6l .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-gp2efzhvic6l .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading .heading-title {
		font-size: 26px;
	}
}
@media(max-width: 1000px) {
	div.fl-node-gp2efzhvic6l .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
	}
}
 .fl-node-gp2efzhvic6l > .fl-module-content {
	margin-top:0px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-gp2efzhvic6l.fl-module > .fl-module-content {
	margin-top:12px;
	margin-right:24px;
	margin-left:24px;
}
}
@media ( max-width: 1000px ) {
 .fl-node-gp2efzhvic6l.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:20px;
	margin-left:20px;
}
}
.fl-node-80bpynsdvhj2, .fl-node-80bpynsdvhj2 .fl-photo {
	text-align: center;
}
.fl-node-80bpynsdvhj2 .fl-photo-content, .fl-node-80bpynsdvhj2 .fl-photo-img {
	width: 450px;
}
@media(max-width: 768px) {
	.fl-node-80bpynsdvhj2 .fl-photo-content, .fl-node-80bpynsdvhj2 .fl-photo-img {
		width: 100%;
	}
}

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

div.fl-node-6nu0wxr29os8 .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

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

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

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

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

div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-6nu0wxr29os8 .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-6nu0wxr29os8 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-6nu0wxr29os8 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading-prefix {
	font-size: 18px;
	text-transform: uppercase;
}
div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading .heading-title {
	font-size: 32px;
}
div.fl-node-6nu0wxr29os8 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-6nu0wxr29os8 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-6nu0wxr29os8 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-6nu0wxr29os8 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-6nu0wxr29os8 .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-6nu0wxr29os8 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading .heading-title {
		font-size: 26px;
	}
}
@media(max-width: 1000px) {
	div.fl-node-6nu0wxr29os8 .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
	}
}
 .fl-node-6nu0wxr29os8 > .fl-module-content {
	margin-top:0px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-6nu0wxr29os8.fl-module > .fl-module-content {
	margin-top:12px;
	margin-right:24px;
	margin-left:24px;
}
}
@media ( max-width: 1000px ) {
 .fl-node-6nu0wxr29os8.fl-module > .fl-module-content {
	margin-top:10px;
	margin-right:20px;
	margin-left:20px;
}
}
.fl-node-ctxh5pdrw3um, .fl-node-ctxh5pdrw3um .fl-photo {
	text-align: left;
}
.fl-node-ctxh5pdrw3um .fl-photo-content, .fl-node-ctxh5pdrw3um .fl-photo-img {
	width: 480px;
}
 .fl-node-ctxh5pdrw3um.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-ctxh5pdrw3um.fl-module-photo.fl-module {
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ctxh5pdrw3um.fl-module-photo.fl-module {
	margin-top:0px;
}
}

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

div.fl-node-bvcpxor05nf1 .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgb(37, 35, 41);
									display: inline;
	}
div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-sub-heading,
div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-sub-heading p {
		color: #03182b;
	}

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

div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-bvcpxor05nf1 .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-bvcpxor05nf1 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


@media only screen and (max-width: 1000px) {
	div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-bvcpxor05nf1 .pp-heading-content {
				text-align: left;
			}
	div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading-separator .pp-separator-line {
												float: left;
									}
	div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading-prefix {
							padding-left: 0 !important;
							}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-bvcpxor05nf1 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading-prefix {
	font-weight: 500;
	font-size: 24px;
}
div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading .heading-title {
	font-size: 34px;
	line-height: 1.15em;
}
div.fl-node-bvcpxor05nf1 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-bvcpxor05nf1 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-bvcpxor05nf1 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-bvcpxor05nf1 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-sub-heading, div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-sub-heading p {
	font-size: 19px;
}
div.fl-node-bvcpxor05nf1 .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-bvcpxor05nf1 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading .heading-title {
		font-size: 36px;
	}
	div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-sub-heading, div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
@media(max-width: 1000px) {
	div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
@media(max-width: 768px) {
	div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-heading .heading-title {
		font-size: 38px;
	}
	div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-sub-heading, div.fl-node-bvcpxor05nf1 .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
 .fl-node-bvcpxor05nf1 > .fl-module-content {
	margin-top:5px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 1000px ) {
 .fl-node-bvcpxor05nf1.fl-module > .fl-module-content {
	margin-right:20px;
	margin-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-bvcpxor05nf1.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-node-2vehf8urydq0, .fl-node-2vehf8urydq0 .fl-photo {
	text-align: left;
}
 .fl-node-2vehf8urydq0.fl-module-photo {
	margin-left:0px;
}
.fl-builder-content-8113 .fl-node-vzl95hwgfb6x {
	display: grid;
	flex-direction: column;
	justify-items: center;
	align-items: center;
	padding-top: 44px;
	padding-right: 44px;
	padding-bottom: 44px;
	padding-left: 44px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #00414A;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	max-height: 1024px;
}
:where( .fl-builder-content-8113 .fl-node-vzl95hwgfb6x > :not( .fl-block-overlay, .fl-drop-target ) ) {
	grid-column: 1 / -1;
	grid-row: 1 / -1;
	z-index: 1;
}
@media(max-width: 1000px) {
	.fl-builder-content-8113 .fl-node-vzl95hwgfb6x {
		display: flex;
		flex-direction: column;
	}
}
@media(max-width: 768px) {
	.fl-builder-content-8113 .fl-node-vzl95hwgfb6x {
		padding-top: 24px;
		padding-right: 24px;
		padding-bottom: 24px;
		padding-left: 24px;
	}
}
.fl-builder-content-8113 .fl-node-usxfbw2odj47 {
	display: flex;
	flex-direction: row;
	gap: 10px;
	background-color: #44437a;
	aspect-ratio: 1/1;
	height: 60vh;
	margin-inline: 0 auto !important;
}
@media(max-width: 1000px) {
	.fl-builder-content-8113 .fl-node-usxfbw2odj47 {
		width: 50%;
	}
}
.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);
  }
}

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

div.fl-node-p6tcrwogj5k0 .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-p6tcrwogj5k0 .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-p6tcrwogj5k0 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-p6tcrwogj5k0 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading .heading-title {
	font-size: 46px;
}
div.fl-node-p6tcrwogj5k0 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-p6tcrwogj5k0 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-p6tcrwogj5k0 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-p6tcrwogj5k0 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-p6tcrwogj5k0 .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-p6tcrwogj5k0 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 768px) {
	div.fl-node-p6tcrwogj5k0 .pp-heading-content .pp-heading .heading-title {
		font-size: 38px;
		line-height: 1.2em;
	}
}
 .fl-node-p6tcrwogj5k0 > .fl-module-content {
	margin-top:20px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 768px ) {
 .fl-node-p6tcrwogj5k0.fl-module > .fl-module-content {
	margin-top:4px;
}
}
@media (max-width: 768px) { .fl-node-p6tcrwogj5k0 > .fl-module-content { margin-left:20px;margin-right:20px; } }.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-builder-content .fl-node-71vqs568nzlk.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-71vqs568nzlk.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	 .fl-node-71vqs568nzlk.fl-module-rich-text {
	margin-top:24px;
	margin-left:42px;
}
@media (max-width: 768px) { .fl-node-71vqs568nzlk.fl-module-rich-text { margin-top:20px;margin-left:20px; } }.fl-embed-video iframe {
	max-width: 100%;
}
.fl-wp-video {
	position: relative;
	height: 0;
	overflow: hidden;
	padding: 0 0 56.25%;
}
.fl-wp-video .wp-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}


.mfp-container .fl-video-lightbox-content .wp-video {
    margin-left: auto;
    margin-right: auto;
}

.mfp-container .fl-video-lightbox-content .fluid-width-video-wrapper iframe {
	width: 80%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.fl-module-video .fl-video-poster {
	cursor: pointer;
}

.fl-wp-video .wp-video .mejs-container,
.fl-wp-video .wp-video .mejs-inner,
.fl-wp-video .wp-video .mejs-layers,
.fl-wp-video .wp-video .mejs-layer,
.fl-wp-video .wp-video-shortcode,
.fl-wp-video .me-plugin,
.fl-wp-video .me-plugin * {
	width: 100% !important;
	height: 100% !important;
}

.fl-video-sticky {
	position: fixed;
    top: 20px;
	z-index: 11;
}

.fl-wp-video img{
	width: 100%;
}
@media (max-width: 768px) {  }







.fl-node-zynekd1jihm8 .fl-video-poster {
	display: none;
}



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

div.fl-node-dof78paw52bl .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-dof78paw52bl .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgb(255, 255, 255);
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-dof78paw52bl .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-dof78paw52bl .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-dof78paw52bl .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-dof78paw52bl .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-dof78paw52bl .pp-heading-content .pp-sub-heading,
div.fl-node-dof78paw52bl .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

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

div.fl-node-dof78paw52bl .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-dof78paw52bl .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-dof78paw52bl .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-dof78paw52bl .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-dof78paw52bl .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-dof78paw52bl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-dof78paw52bl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


@media only screen and (max-width: 1000px) {
	div.fl-node-dof78paw52bl .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-dof78paw52bl .pp-heading-content {
				text-align: left;
			}
	div.fl-node-dof78paw52bl .pp-heading-content .pp-heading-separator .pp-separator-line {
												float: left;
									}
	div.fl-node-dof78paw52bl .pp-heading-content .pp-heading-prefix {
							padding-left: 0 !important;
							}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-dof78paw52bl .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-dof78paw52bl .pp-heading-content {
				text-align: ;
			}
	div.fl-node-dof78paw52bl .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-dof78paw52bl .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-dof78paw52bl .pp-heading-content .pp-heading-prefix {
	font-weight: 500;
	font-size: 24px;
}
div.fl-node-dof78paw52bl .pp-heading-content .pp-heading .heading-title {
	font-size: 34px;
	line-height: 1.15em;
}
div.fl-node-dof78paw52bl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-dof78paw52bl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-dof78paw52bl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-dof78paw52bl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-dof78paw52bl .pp-heading-content .pp-sub-heading, div.fl-node-dof78paw52bl .pp-heading-content .pp-sub-heading p {
	font-size: 19px;
}
div.fl-node-dof78paw52bl .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-dof78paw52bl .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-dof78paw52bl .pp-heading-content .pp-heading .heading-title {
		font-size: 36px;
	}
	div.fl-node-dof78paw52bl .pp-heading-content .pp-sub-heading, div.fl-node-dof78paw52bl .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
@media(max-width: 1000px) {
	div.fl-node-dof78paw52bl .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
@media(max-width: 768px) {
	div.fl-node-dof78paw52bl .pp-heading-content .pp-heading .heading-title {
		font-size: 38px;
	}
	div.fl-node-dof78paw52bl .pp-heading-content .pp-sub-heading, div.fl-node-dof78paw52bl .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
 .fl-node-dof78paw52bl > .fl-module-content {
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 1000px ) {
 .fl-node-dof78paw52bl.fl-module > .fl-module-content {
	margin-right:20px;
	margin-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-dof78paw52bl.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-left:20px;
}
}
.fl-builder-content-8113 .fl-node-3cgzl9ajht6e {
	display: grid;
	flex-direction: column;
	justify-items: center;
	align-items: center;
	padding-top: 44px;
	padding-right: 44px;
	padding-bottom: 44px;
	padding-left: 44px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 0px;
	border-left-width: 2px;
	max-height: 1024px;
}
:where( .fl-builder-content-8113 .fl-node-3cgzl9ajht6e > :not( .fl-block-overlay, .fl-drop-target ) ) {
	grid-column: 1 / -1;
	grid-row: 1 / -1;
	z-index: 1;
}
@media(max-width: 768px) {
	.fl-builder-content-8113 .fl-node-3cgzl9ajht6e {
		display: flex;
		flex-direction: column;
		gap: 24px;
		padding-top: 24px;
		padding-right: 24px;
		padding-left: 24px;
	}
	:where( .fl-builder-content-8113 .fl-node-3cgzl9ajht6e > :not( .fl-block-overlay, .fl-drop-target ) ) {
		width: 100%;
	}
}
.fl-builder-content-8113 .fl-node-h4ngk3jmqbaw {
	display: flex;
	flex-direction: row;
	gap: 10px;
	background-color: #9dc5ce;
	aspect-ratio: 1/1;
	height: 70vh;
	margin-inline: auto 0 !important;
}
@media(max-width: 1000px) {
	.fl-builder-content-8113 .fl-node-h4ngk3jmqbaw {
		justify-content: center;
		aspect-ratio: 1/1;
		width: 100%;
		height: 340px;
		margin-inline: 0 auto !important;
	}
}
@media ( max-width: 1000px ) {
 .fl-node-h4ngk3jmqbaw.fl-module-box.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading-prefix {
		color: #d1c0aa;
	}

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

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

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


div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

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

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

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

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

div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


div.fl-node-f2lyduebps15 .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-f2lyduebps15 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-f2lyduebps15 .pp-heading-content {
				text-align: left;
			}
	div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading-separator .pp-separator-line {
												float: left;
									}
	div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading-prefix {
							padding-left: 0 !important;
							}
	}
div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading-prefix {
	font-size: 16px;
	text-transform: uppercase;
}
div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading .heading-title {
	font-size: 46px;
	line-height: 1.15;
}
div.fl-node-f2lyduebps15 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-f2lyduebps15 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-f2lyduebps15 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-f2lyduebps15 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-f2lyduebps15 .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-f2lyduebps15 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
@media(max-width: 1000px) {
	div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading .heading-title {
		font-size: 28px;
	}
}
@media(max-width: 768px) {
	div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading-prefix {
		font-size: 16px;
	}
	div.fl-node-f2lyduebps15 .pp-heading-content .pp-heading .heading-title {
		font-size: 22px;
	}
}
 .fl-node-f2lyduebps15 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-f2lyduebps15.fl-module > .fl-module-content {
	margin-right:100px;
	margin-left:100px;
}
}
@media ( max-width: 1000px ) {
 .fl-node-f2lyduebps15.fl-module > .fl-module-content {
	margin-right:20px;
	margin-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-f2lyduebps15.fl-module > .fl-module-content {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}

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

div.fl-node-lz5j81tdsqh6 .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-lz5j81tdsqh6 .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-lz5j81tdsqh6 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-lz5j81tdsqh6 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading .heading-title {
	font-size: 32px;
}
div.fl-node-lz5j81tdsqh6 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-lz5j81tdsqh6 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-lz5j81tdsqh6 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-lz5j81tdsqh6 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-lz5j81tdsqh6 .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-lz5j81tdsqh6 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-lz5j81tdsqh6 .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
 .fl-node-lz5j81tdsqh6 > .fl-module-content {
	margin-top:0px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 1200px ) {
 .fl-node-lz5j81tdsqh6.fl-module > .fl-module-content {
	margin-left:5px;
}
}
@media ( max-width: 1000px ) {
 .fl-node-lz5j81tdsqh6.fl-module > .fl-module-content {
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-lz5j81tdsqh6.fl-module > .fl-module-content {
	margin-left:10px;
}
}
@media (max-width: 768px) { .fl-node-lz5j81tdsqh6 > .fl-module-content { margin-right:20px; } }
div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading-prefix {
	}

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

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

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


div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

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

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

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

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

div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


div.fl-node-uac7b1yn8lo5 .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-uac7b1yn8lo5 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-uac7b1yn8lo5 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading .heading-title {
	font-size: 22px;
}
div.fl-node-uac7b1yn8lo5 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-uac7b1yn8lo5 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-uac7b1yn8lo5 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-uac7b1yn8lo5 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-uac7b1yn8lo5 .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-uac7b1yn8lo5 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-uac7b1yn8lo5 .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
}
 .fl-node-uac7b1yn8lo5 > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:10px;
	margin-left:40px;
}
@media (max-width: 768px) { .fl-node-uac7b1yn8lo5 > .fl-module-content { margin-top:20px;margin-left:20px;margin-right:20px; } }
div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading-prefix {
	}

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

div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading {
		}

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


div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

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

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

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

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

div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


div.fl-node-37tzjvlscqyn .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-37tzjvlscqyn .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-37tzjvlscqyn .pp-heading-content {
				text-align: ;
			}
	div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading .heading-title {
	font-size: 22px;
}
div.fl-node-37tzjvlscqyn div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-37tzjvlscqyn div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-37tzjvlscqyn div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-37tzjvlscqyn div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-37tzjvlscqyn .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-37tzjvlscqyn .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-37tzjvlscqyn .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
}
 .fl-node-37tzjvlscqyn > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:10px;
	margin-left:40px;
}
@media (max-width: 768px) { .fl-node-37tzjvlscqyn > .fl-module-content { margin-top:20px;margin-left:20px;margin-right:20px; } }
div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading-prefix {
	}

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

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

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


div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

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

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

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

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

div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


div.fl-node-1p29e7co5vyl .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-1p29e7co5vyl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-1p29e7co5vyl .pp-heading-content {
				text-align: ;
			}
	div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading .heading-title {
	font-size: 22px;
}
div.fl-node-1p29e7co5vyl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-1p29e7co5vyl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-1p29e7co5vyl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-1p29e7co5vyl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-1p29e7co5vyl .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-1p29e7co5vyl .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-1p29e7co5vyl .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
}
 .fl-node-1p29e7co5vyl > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:10px;
	margin-left:40px;
}
@media (max-width: 768px) { .fl-node-1p29e7co5vyl > .fl-module-content { margin-top:20px;margin-left:20px;margin-right:20px; } }
div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading-prefix {
	}

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

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

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


div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

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

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

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

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

div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


div.fl-node-kcby6vep75wm .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-kcby6vep75wm .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-kcby6vep75wm .pp-heading-content {
				text-align: ;
			}
	div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading .heading-title {
	font-size: 22px;
}
div.fl-node-kcby6vep75wm div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-kcby6vep75wm div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-kcby6vep75wm div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-kcby6vep75wm div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-kcby6vep75wm .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-kcby6vep75wm .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-kcby6vep75wm .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
}
 .fl-node-kcby6vep75wm > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:10px;
	margin-left:40px;
}
@media (max-width: 768px) { .fl-node-kcby6vep75wm > .fl-module-content { margin-top:20px;margin-left:20px;margin-right:20px; } }
div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading-prefix {
	}

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

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

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


div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

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

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

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

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

div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


div.fl-node-dfy2sz6kwtx1 .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-dfy2sz6kwtx1 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-dfy2sz6kwtx1 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading .heading-title {
	font-size: 22px;
}
div.fl-node-dfy2sz6kwtx1 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-dfy2sz6kwtx1 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-dfy2sz6kwtx1 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-dfy2sz6kwtx1 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-dfy2sz6kwtx1 .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-dfy2sz6kwtx1 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-dfy2sz6kwtx1 .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
}
 .fl-node-dfy2sz6kwtx1 > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:10px;
	margin-left:40px;
}
@media (max-width: 768px) { .fl-node-dfy2sz6kwtx1 > .fl-module-content { margin-top:20px;margin-left:20px;margin-right:20px; } }
div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading-prefix {
	}

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

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

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


div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

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

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

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

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

div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


div.fl-node-lhd6801aqtro .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-lhd6801aqtro .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-lhd6801aqtro .pp-heading-content {
				text-align: ;
			}
	div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading .heading-title {
	font-size: 22px;
}
div.fl-node-lhd6801aqtro div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-lhd6801aqtro div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-lhd6801aqtro div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-lhd6801aqtro div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-lhd6801aqtro .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-lhd6801aqtro .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-lhd6801aqtro .pp-heading-content .pp-heading .heading-title {
		font-size: 18px;
	}
}
 .fl-node-lhd6801aqtro > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:10px;
	margin-left:40px;
}
@media (max-width: 768px) { .fl-node-lhd6801aqtro > .fl-module-content { margin-top:20px;margin-left:20px;margin-right:20px; } }	.fl-builder-content .fl-node-ih8re6u1g03o.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-ih8re6u1g03o.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-ih8re6u1g03o.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-ih8re6u1g03o.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 16px;
	line-height: 1;
	text-align: left;
	font-style: italic;
}
 .fl-node-ih8re6u1g03o.fl-module-rich-text {
	margin-top:10px;
	margin-bottom:0px;
	margin-left:80px;
}
@media ( max-width: 768px ) {
 .fl-node-ih8re6u1g03o.fl-module-rich-text.fl-module {
	margin-left:10px;
}
}
	.fl-builder-content .fl-node-mgjoc6uz7ht3.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-mgjoc6uz7ht3.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-mgjoc6uz7ht3.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-mgjoc6uz7ht3.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 16px;
	line-height: 1;
	text-align: right;
	font-style: normal;
}
 .fl-node-mgjoc6uz7ht3.fl-module-rich-text {
	margin-top:10px;
	margin-bottom:0px;
	margin-left:80px;
}
@media ( max-width: 768px ) {
 .fl-node-mgjoc6uz7ht3.fl-module-rich-text.fl-module {
	margin-right:0px;
}
}
@media (max-width: 768px) { .fl-node-mgjoc6uz7ht3.fl-module-rich-text { margin-left:20px; } }
div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-g1dxy3jhbtwa .pp-heading-content {
	text-align: right;
}

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

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


div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100%;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100%;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100%;
			border-bottom-style: solid;
			border-bottom-color: #d1c0aa;
			border-bottom-width: 1px;
	}

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


div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-sub-heading,
div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

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

div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: right;
	}

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

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

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

div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100%;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

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

div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #d1c0aa;
			width: 100%;
			float: right;
	}

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


div.fl-node-g1dxy3jhbtwa .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-g1dxy3jhbtwa .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-g1dxy3jhbtwa .pp-heading-content {
				text-align: ;
			}
	div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading .heading-title {
	font-size: 32px;
}
div.fl-node-g1dxy3jhbtwa div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-g1dxy3jhbtwa div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-g1dxy3jhbtwa div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-g1dxy3jhbtwa div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-g1dxy3jhbtwa .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-g1dxy3jhbtwa .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-g1dxy3jhbtwa .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
 .fl-node-g1dxy3jhbtwa > .fl-module-content {
	margin-top:10px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 768px ) {
 .fl-node-g1dxy3jhbtwa.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:10px;
}
}
	.fl-builder-content .fl-node-xk6zv1nfia4m.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-xk6zv1nfia4m.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-xk6zv1nfia4m.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-xk6zv1nfia4m.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 16px;
	line-height: 1;
	text-align: left;
	font-style: normal;
}
 .fl-node-xk6zv1nfia4m.fl-module-rich-text {
	margin-top:10px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 768px ) {
 .fl-node-xk6zv1nfia4m.fl-module-rich-text.fl-module {
	margin-left:10px;
}
}
	.fl-builder-content .fl-node-6q2cg09ow4v1.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-6q2cg09ow4v1.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-6q2cg09ow4v1.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-6q2cg09ow4v1.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 16px;
	line-height: 1;
	text-align: right;
	font-style: normal;
}
 .fl-node-6q2cg09ow4v1.fl-module-rich-text {
	margin-top:10px;
	margin-bottom:0px;
	margin-left:80px;
}
@media ( max-width: 768px ) {
 .fl-node-6q2cg09ow4v1.fl-module-rich-text.fl-module {
	margin-right:0px;
	margin-left:10px;
}
}

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

div.fl-node-j4ondb23twhg .pp-heading-content {
	text-align: right;
}

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

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


div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100%;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100%;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100%;
			border-bottom-style: solid;
			border-bottom-color: #d1c0aa;
			border-bottom-width: 1px;
	}

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


div.fl-node-j4ondb23twhg .pp-heading-content .pp-sub-heading,
div.fl-node-j4ondb23twhg .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

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

div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: right;
	}

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

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

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

div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100%;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

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

div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #d1c0aa;
			width: 100%;
			float: right;
	}

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


div.fl-node-j4ondb23twhg .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-j4ondb23twhg .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-j4ondb23twhg .pp-heading-content {
				text-align: ;
			}
	div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading .heading-title {
	font-size: 32px;
}
div.fl-node-j4ondb23twhg div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-j4ondb23twhg div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-j4ondb23twhg div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-j4ondb23twhg div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-j4ondb23twhg .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-j4ondb23twhg .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-j4ondb23twhg .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
 .fl-node-j4ondb23twhg > .fl-module-content {
	margin-top:10px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 768px ) {
 .fl-node-j4ondb23twhg.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:10px;
}
}
	.fl-builder-content .fl-node-jsi9orpt843c.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-jsi9orpt843c.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-jsi9orpt843c.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-jsi9orpt843c.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 16px;
	line-height: 1;
	text-align: left;
	font-style: normal;
}
 .fl-node-jsi9orpt843c.fl-module-rich-text {
	margin-top:10px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 768px ) {
 .fl-node-jsi9orpt843c.fl-module-rich-text.fl-module {
	margin-left:0px;
}
}
	.fl-builder-content .fl-node-kj0cdgmwfuvr.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-kj0cdgmwfuvr.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-kj0cdgmwfuvr.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-kj0cdgmwfuvr.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 16px;
	line-height: 1;
	text-align: right;
	font-style: normal;
}
 .fl-node-kj0cdgmwfuvr.fl-module-rich-text {
	margin-top:10px;
	margin-bottom:0px;
	margin-left:80px;
}
@media ( max-width: 768px ) {
 .fl-node-kj0cdgmwfuvr.fl-module-rich-text.fl-module {
	margin-right:0px;
}
}
@media (max-width: 768px) { .fl-node-kj0cdgmwfuvr.fl-module-rich-text { margin-left:20px; } }.fl-node-czi21oers50a .fl-separator {
	border-top-width: 1px;
	max-width: 100%;
	width: 100%;
	margin: auto;
}

			.fl-node-czi21oers50a .fl-separator {
	border-top-color: #d1c0aa;
	border-top-style: solid;
}
 .fl-node-czi21oers50a.fl-module-separator {
	margin-left:40px;
}
@media ( max-width: 768px ) {
 .fl-node-czi21oers50a.fl-module-separator.fl-module {
	margin-right:0px;
	margin-left:10px;
}
}
	.fl-builder-content .fl-node-j0dmafzbsp1t.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-j0dmafzbsp1t.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-j0dmafzbsp1t.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-j0dmafzbsp1t.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 16px;
	line-height: 1;
	text-align: left;
	font-style: normal;
}
 .fl-node-j0dmafzbsp1t.fl-module-rich-text {
	margin-top:10px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 768px ) {
 .fl-node-j0dmafzbsp1t.fl-module-rich-text.fl-module {
	margin-left:10px;
}
}
	.fl-builder-content .fl-node-8d0zvtihyxjp.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-8d0zvtihyxjp.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-8d0zvtihyxjp.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-8d0zvtihyxjp.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 16px;
	line-height: 1;
	text-align: right;
	font-style: normal;
}
 .fl-node-8d0zvtihyxjp.fl-module-rich-text {
	margin-top:10px;
	margin-bottom:0px;
	margin-left:80px;
}
@media ( max-width: 768px ) {
 .fl-node-8d0zvtihyxjp.fl-module-rich-text.fl-module {
	margin-right:0px;
	margin-bottom:20px;
}
}
@media (max-width: 768px) { .fl-node-8d0zvtihyxjp.fl-module-rich-text { margin-left:20px; } }
div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading-prefix {
	}

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

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

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


div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

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

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

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

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

div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


div.fl-node-k8e4z26wl5m7 .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-k8e4z26wl5m7 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-k8e4z26wl5m7 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading .heading-title {
	font-size: 24px;
}
div.fl-node-k8e4z26wl5m7 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-k8e4z26wl5m7 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-k8e4z26wl5m7 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-k8e4z26wl5m7 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-k8e4z26wl5m7 .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-k8e4z26wl5m7 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-k8e4z26wl5m7 .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
 .fl-node-k8e4z26wl5m7 > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-k8e4z26wl5m7.fl-module > .fl-module-content {
	margin-top:20px;
}
}
@media (max-width: 768px) { .fl-node-k8e4z26wl5m7 > .fl-module-content { margin-left:20px;margin-right:20px; } }.fl-node-ko2lnxc5zsb0, .fl-node-ko2lnxc5zsb0 .fl-photo {
	text-align: center;
}
 .fl-node-ko2lnxc5zsb0.fl-module-photo {
	margin-top:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-ko2lnxc5zsb0.fl-module-photo.fl-module {
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-zj2pkvboxi3s {
	display: grid;
	flex-direction: column;
	justify-items: center;
	align-items: center;
	padding-top: 44px;
	padding-right: 44px;
	padding-bottom: 44px;
	padding-left: 44px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #C17157;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	max-height: 1024px;
}
:where( .fl-builder-content-8113 .fl-node-zj2pkvboxi3s > :not( .fl-block-overlay, .fl-drop-target ) ) {
	grid-column: 1 / -1;
	grid-row: 1 / -1;
	z-index: 1;
}
@media(max-width: 768px) {
	.fl-builder-content-8113 .fl-node-zj2pkvboxi3s {
		padding-top: 24px;
		padding-right: 24px;
		padding-bottom: 24px;
		padding-left: 24px;
	}
}
.fl-builder-content-8113 .fl-node-o06tvpafj4qd {
	display: flex;
	flex-direction: row;
	gap: 10px;
	background-color: #b1dae3;
	aspect-ratio: 1/1;
	height: 60vh;
	margin-inline: 0 auto !important;
}
.fl-node-yt2ojefzw5gd, .fl-node-yt2ojefzw5gd .fl-photo {
	text-align: left;
}
 .fl-node-yt2ojefzw5gd.fl-module-photo {
	margin-left:0px;
}
.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-builder-content .fl-node-x8gv9jn6l1a0 .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-x8gv9jn6l1a0 .fl-module-content .fl-number-string {
		color: #c27258;
	}

	.fl-builder-content .fl-node-x8gv9jn6l1a0 .fl-module-content .fl-number-before-text,
	.fl-builder-content .fl-node-x8gv9jn6l1a0 .fl-module-content .fl-number-after-text {
		color: rgb(255, 255, 255);
	}



.fl-node-x8gv9jn6l1a0 .fl-number .fl-number-text .fl-number-before-text, .fl-node-x8gv9jn6l1a0 .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
}
.fl-node-x8gv9jn6l1a0 .fl-number .fl-number-text .fl-number-string, .fl-node-x8gv9jn6l1a0 .fl-number .fl-number-text .fl-number-string span {
	font-weight: 600;
	font-size: 26px;
}
@media(max-width: 768px) {
	.fl-node-x8gv9jn6l1a0 .fl-number .fl-number-text .fl-number-before-text, .fl-node-x8gv9jn6l1a0 .fl-number .fl-number-text .fl-number-after-text {
		font-size: 16px;
	}
	.fl-node-x8gv9jn6l1a0 .fl-number .fl-number-text .fl-number-string, .fl-node-x8gv9jn6l1a0 .fl-number .fl-number-text .fl-number-string span {
		font-size: 20px;
	}
}
 .fl-node-x8gv9jn6l1a0 > .fl-module-content {
	margin-top:0px;
	margin-left:20px;
}
@media ( max-width: 1200px ) {
 .fl-node-x8gv9jn6l1a0.fl-module > .fl-module-content {
	margin-left:0px;
}
}

	.fl-builder-content .fl-node-fqp69csk3enh .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-fqp69csk3enh .fl-module-content .fl-number-string {
		color: #AEC07C;
	}

	.fl-builder-content .fl-node-fqp69csk3enh .fl-module-content .fl-number-before-text,
	.fl-builder-content .fl-node-fqp69csk3enh .fl-module-content .fl-number-after-text {
		color: rgb(255, 255, 255);
	}



.fl-node-fqp69csk3enh .fl-number .fl-number-text .fl-number-before-text, .fl-node-fqp69csk3enh .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
}
.fl-node-fqp69csk3enh .fl-number .fl-number-text .fl-number-string, .fl-node-fqp69csk3enh .fl-number .fl-number-text .fl-number-string span {
	font-weight: 600;
	font-size: 26px;
}
@media(max-width: 768px) {
	.fl-node-fqp69csk3enh .fl-number .fl-number-text .fl-number-before-text, .fl-node-fqp69csk3enh .fl-number .fl-number-text .fl-number-after-text {
		font-size: 16px;
	}
	.fl-node-fqp69csk3enh .fl-number .fl-number-text .fl-number-string, .fl-node-fqp69csk3enh .fl-number .fl-number-text .fl-number-string span {
		font-size: 20px;
	}
}
 .fl-node-fqp69csk3enh > .fl-module-content {
	margin-top:0px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-fqp69csk3enh.fl-module > .fl-module-content {
	margin-left:0px;
}
}

	.fl-builder-content .fl-node-vb1krzcjx6p5 .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-vb1krzcjx6p5 .fl-module-content .fl-number-string {
		color: #b1dae3;
	}

	.fl-builder-content .fl-node-vb1krzcjx6p5 .fl-module-content .fl-number-before-text,
	.fl-builder-content .fl-node-vb1krzcjx6p5 .fl-module-content .fl-number-after-text {
		color: rgb(255, 255, 255);
	}



.fl-node-vb1krzcjx6p5 .fl-number .fl-number-text .fl-number-before-text, .fl-node-vb1krzcjx6p5 .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
}
.fl-node-vb1krzcjx6p5 .fl-number .fl-number-text .fl-number-string, .fl-node-vb1krzcjx6p5 .fl-number .fl-number-text .fl-number-string span {
	font-weight: 600;
	font-size: 26px;
}
@media(max-width: 768px) {
	.fl-node-vb1krzcjx6p5 .fl-number .fl-number-text .fl-number-before-text, .fl-node-vb1krzcjx6p5 .fl-number .fl-number-text .fl-number-after-text {
		font-size: 16px;
	}
	.fl-node-vb1krzcjx6p5 .fl-number .fl-number-text .fl-number-string, .fl-node-vb1krzcjx6p5 .fl-number .fl-number-text .fl-number-string span {
		font-size: 20px;
	}
}
 .fl-node-vb1krzcjx6p5 > .fl-module-content {
	margin-top:0px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-vb1krzcjx6p5.fl-module > .fl-module-content {
	margin-left:0px;
}
}

	.fl-builder-content .fl-node-hwgy6b2it49s .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-hwgy6b2it49s .fl-module-content .fl-number-string {
		color: #c27258;
	}

	.fl-builder-content .fl-node-hwgy6b2it49s .fl-module-content .fl-number-before-text,
	.fl-builder-content .fl-node-hwgy6b2it49s .fl-module-content .fl-number-after-text {
		color: rgb(255, 255, 255);
	}



.fl-node-hwgy6b2it49s .fl-number .fl-number-text .fl-number-before-text, .fl-node-hwgy6b2it49s .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
}
.fl-node-hwgy6b2it49s .fl-number .fl-number-text .fl-number-string, .fl-node-hwgy6b2it49s .fl-number .fl-number-text .fl-number-string span {
	font-weight: 600;
	font-size: 26px;
}
@media(max-width: 768px) {
	.fl-node-hwgy6b2it49s .fl-number .fl-number-text .fl-number-before-text, .fl-node-hwgy6b2it49s .fl-number .fl-number-text .fl-number-after-text {
		font-size: 16px;
	}
	.fl-node-hwgy6b2it49s .fl-number .fl-number-text .fl-number-string, .fl-node-hwgy6b2it49s .fl-number .fl-number-text .fl-number-string span {
		font-size: 20px;
	}
}
 .fl-node-hwgy6b2it49s > .fl-module-content {
	margin-top:0px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-hwgy6b2it49s.fl-module > .fl-module-content {
	margin-left:0px;
}
}

	.fl-builder-content .fl-node-tj249dxck5ew .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-tj249dxck5ew .fl-module-content .fl-number-string {
		color: #AEC07C;
	}

	.fl-builder-content .fl-node-tj249dxck5ew .fl-module-content .fl-number-before-text,
	.fl-builder-content .fl-node-tj249dxck5ew .fl-module-content .fl-number-after-text {
		color: rgb(255, 255, 255);
	}



.fl-node-tj249dxck5ew .fl-number .fl-number-text .fl-number-before-text, .fl-node-tj249dxck5ew .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
}
.fl-node-tj249dxck5ew .fl-number .fl-number-text .fl-number-string, .fl-node-tj249dxck5ew .fl-number .fl-number-text .fl-number-string span {
	font-weight: 600;
	font-size: 26px;
}
@media(max-width: 768px) {
	.fl-node-tj249dxck5ew .fl-number .fl-number-text .fl-number-before-text, .fl-node-tj249dxck5ew .fl-number .fl-number-text .fl-number-after-text {
		font-size: 16px;
	}
	.fl-node-tj249dxck5ew .fl-number .fl-number-text .fl-number-string, .fl-node-tj249dxck5ew .fl-number .fl-number-text .fl-number-string span {
		font-size: 20px;
	}
}
 .fl-node-tj249dxck5ew > .fl-module-content {
	margin-top:0px;
	margin-left:20px;
}

	.fl-builder-content .fl-node-qxzim45ljo8u .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-qxzim45ljo8u .fl-module-content .fl-number-string {
		color: #b1dae3;
	}

	.fl-builder-content .fl-node-qxzim45ljo8u .fl-module-content .fl-number-before-text,
	.fl-builder-content .fl-node-qxzim45ljo8u .fl-module-content .fl-number-after-text {
		color: rgb(255, 255, 255);
	}



.fl-node-qxzim45ljo8u .fl-number .fl-number-text .fl-number-before-text, .fl-node-qxzim45ljo8u .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
}
.fl-node-qxzim45ljo8u .fl-number .fl-number-text .fl-number-string, .fl-node-qxzim45ljo8u .fl-number .fl-number-text .fl-number-string span {
	font-weight: 600;
	font-size: 26px;
}
@media(max-width: 768px) {
	.fl-node-qxzim45ljo8u .fl-number .fl-number-text .fl-number-before-text, .fl-node-qxzim45ljo8u .fl-number .fl-number-text .fl-number-after-text {
		font-size: 16px;
	}
	.fl-node-qxzim45ljo8u .fl-number .fl-number-text .fl-number-string, .fl-node-qxzim45ljo8u .fl-number .fl-number-text .fl-number-string span {
		font-size: 20px;
	}
}
 .fl-node-qxzim45ljo8u > .fl-module-content {
	margin-top:0px;
	margin-left:20px;
}
.fl-node-ozbuxyli8nf2, .fl-node-ozbuxyli8nf2 .fl-photo {
	text-align: center;
}
 .fl-node-ozbuxyli8nf2.fl-module-photo {
	margin-top:-350px;
}
@media ( max-width: 1000px ) {
 .fl-node-ozbuxyli8nf2.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ozbuxyli8nf2.fl-module-photo.fl-module {
	margin-right:0px;
	margin-bottom:0px;
	margin-left:10px;
}
}
/* .fl-module-pp-video .fl-module-content {
	overflow: hidden;
} */
.fancybox-container .pp-video-container {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.pp-video-lightbox .fancybox-content {
	background: none;
    width: 100%;
    height: 100%;
}

.pp-fit-aspect-ratio {
	position: relative;
	background: none;
}

.pp-aspect-ratio-219 .pp-fit-aspect-ratio {
	aspect-ratio: 21/9;
}
  
.pp-aspect-ratio-169 .pp-fit-aspect-ratio {
	aspect-ratio: 16/9;
}
.pp-aspect-ratio-916 .pp-fit-aspect-ratio {
	aspect-ratio: 9/16;
}
  
.pp-aspect-ratio-43 .pp-fit-aspect-ratio {
	aspect-ratio: 4/3;
}

.pp-aspect-ratio-45 .pp-fit-aspect-ratio {
	aspect-ratio: 4/5;
}
  
.pp-aspect-ratio-32 .pp-fit-aspect-ratio {
	aspect-ratio: 3/2;
}
  
.pp-aspect-ratio-11 .pp-fit-aspect-ratio {
	aspect-ratio: 1/1;
}

.pp-aspect-ratio-auto .pp-fit-aspect-ratio {
	height: auto;
}
  
.pp-fit-aspect-ratio iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	border: 0;
	background-color: #000;
}
.pp-fit-aspect-ratio video {
	width: 100%;
}
.pp-video-wrapper {
	background-color: transparent;
	overflow: hidden;
}
.pp-video-wrapper video,
.pp-video-wrapper iframe {
    max-width: 100%;
    width: 100%;
    margin: 0;
    line-height: 1;
    border: none;
}
.pp-video-wrapper .pp-video-player {
	-o-object-fit: cover;
    object-fit: cover;
}

.pp-aspect-ratio-219 .pp-video-player {
	aspect-ratio: 21/9;
}
  
.pp-aspect-ratio-169 .pp-video-player {
	aspect-ratio: 16/9;
}

.pp-aspect-ratio-916 .pp-video-player {
	aspect-ratio: 9/16;
}
  
.pp-aspect-ratio-43 .pp-video-player {
	aspect-ratio: 4/3;
}

.pp-aspect-ratio-45 .pp-video-player {
	aspect-ratio: 4/5;
}
  
.pp-aspect-ratio-32 .pp-video-player {
	aspect-ratio: 3/2;
}
  
.pp-aspect-ratio-11 .pp-video-player {
	aspect-ratio: 1/1;
}

.pp-video-image-overlay {
	text-align: center;
	position: relative;
}
.pp-video-wrapper:not(.pp-video-has-lightbox) .pp-video-image-overlay {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: 50%;
	display: flex;
}
.pp-video-wrapper:not(.pp-video-has-lightbox) .pp-video-image-overlay picture {
	display: flex;
}
.pp-video-wrapper:not(.pp-video-has-lightbox) .pp-video-image-overlay img {
	object-fit: cover;
	width: 100%;
	aspect-ratio: auto;
}

.pp-video-play-icon {
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	display: inline-block;
    line-height: 0;
    padding: 20px;
    border-radius: 100%;
	background: #fff;
	cursor: pointer;
}
.pp-video-play-icon svg {
	width: 30px;
    height: 30px;
    transform: translateX(3px);
}

.pp-video-play-icon i {
	font-size: 100px;
    color: #fff;
    opacity: 0.8;
    text-shadow: 1px 0 6px rgba(0, 0, 0, 0.3);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.pp-video-play-icon.play-icon-default {
	background: rgba(0, 0, 0, 0.33);
}
.pp-video-play-icon.play-icon-default svg {
	fill: #f1f1f1;
	width: 20px;
	height: 20px;
}

/*
.pp-video-source-youtube .pp-video-play-icon.play-icon-default {
	background: #f00;
	width: 68px;
    height: 48px;
	border-radius: 10px;
	display: flex;
	align-items: center;
}
.pp-video-source-youtube .pp-video-play-icon.play-icon-default svg {
	fill: #fff;
	width: 22px;
    height: 22px;
}
*/

.pp-video-wrapper .pp-screen-only {
	position: absolute;
    top: -10000em;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media only screen and (min-width: 1025px) {
	.fancybox-container .pp-video-container {
		width: 75%;
	}
}
@media only screen and (max-width: 1024px) {
	.fancybox-container .pp-video-container {
		width: 100%;
	}
}.fl-node-ikp2s97hwm5q .pp-video-play-icon {
		}
.fl-node-ikp2s97hwm5q .pp-video-play-icon:hover {
		}
.fl-node-ikp2s97hwm5q .pp-video-image-overlay {
	cursor: pointer;
}
.fl-node-ikp2s97hwm5q .pp-video-play-icon svg {
	}
.fl-node-ikp2s97hwm5q .pp-video-play-icon:hover svg {
	}


.fancybox-ikp2s97hwm5q button.fancybox-button {
	padding: 10px;
	border-radius: 0;
    box-shadow: none;
	border: none !important;
}
.fancybox-ikp2s97hwm5q .pp-aspect-ratio-169 {
	background: none;
	width: 100%;
	height: 100%;
}
.fancybox-ikp2s97hwm5q .pp-video-container {
	}
.fancybox-ikp2s97hwm5q .fancybox-close-small {
	color: #fff;
	height: 60px;
	width: 60px;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	padding: 5px !important;
}
.fancybox-ikp2s97hwm5q .fancybox-close-small:hover,
.fancybox-ikp2s97hwm5q .fancybox-close-small:focus {
	color: #fff;
}
.fancybox-ikp2s97hwm5q .fancybox-close-small,
.fancybox-ikp2s97hwm5q .fancybox-close-small:focus {
	position: absolute;
	top: 0;
	right: 0;
}
.admin-bar .fancybox-ikp2s97hwm5q .fancybox-close-small {
	top: 32px;
}
.fancybox-ikp2s97hwm5q-overlay {
	}

@media only screen and (min-width: 1025px) {
	.fancybox-ikp2s97hwm5q .pp-video-container {
			}
}

@media only screen and (max-width: 1000px) {
	.fl-node-ikp2s97hwm5q .pp-video-play-icon {
			}
}
@media only screen and (max-width: 768px) {
	.fl-node-ikp2s97hwm5q .pp-video-play-icon {
			}
} .fl-node-ikp2s97hwm5q > .fl-module-content {
	margin-top:0px;
	margin-left:40px;
}
@media (max-width: 768px) { .fl-node-ikp2s97hwm5q > .fl-module-content { margin-left:20px; } }.fl-mosaicflow-content {
	visibility: hidden;
	list-style: none;
	padding: 0;
	margin: 0;
}
.fl-mosaicflow-col {
	float:left;
}
.fl-gallery {
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
}
.fl-gallery-item {
	display: none;
	min-height: 150px;
	width: 150px;
}
.fl-node-jukl52fypxtv .fl-mosaicflow {
	margin-left: -20px;
}
.fl-mosaicflow-item {
	margin: 0 0 20px 20px;
}
 .fl-node-jukl52fypxtv > .fl-module-content {
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-jukl52fypxtv.fl-module > .fl-module-content {
	margin-bottom:0px;
	margin-left:14px;
}
}

div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-7pg3by5i9xuj .pp-heading-content {
	text-align: left;
}

div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading {
		}

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


div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-7pg3by5i9xuj .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-7pg3by5i9xuj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-7pg3by5i9xuj .pp-heading-content {
				text-align: ;
			}
	div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading .heading-title {
	font-size: 46px;
}
div.fl-node-7pg3by5i9xuj div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-7pg3by5i9xuj div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-7pg3by5i9xuj div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-7pg3by5i9xuj div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-7pg3by5i9xuj .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-7pg3by5i9xuj .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 768px) {
	div.fl-node-7pg3by5i9xuj .pp-heading-content .pp-heading .heading-title {
		font-size: 38px;
		line-height: 1.1em;
	}
}
 .fl-node-7pg3by5i9xuj > .fl-module-content {
	margin-top:20px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 768px ) {
 .fl-node-7pg3by5i9xuj.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:20px;
}
}
@media (max-width: 768px) { .fl-node-7pg3by5i9xuj > .fl-module-content { margin-left:20px;margin-right:20px; } }
div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading-prefix {
	}

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

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

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


div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

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

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

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

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

div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


div.fl-node-j56g8umi2yz1 .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-j56g8umi2yz1 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-j56g8umi2yz1 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading .heading-title {
	font-size: 24px;
}
div.fl-node-j56g8umi2yz1 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-j56g8umi2yz1 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-j56g8umi2yz1 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-j56g8umi2yz1 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-j56g8umi2yz1 .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-j56g8umi2yz1 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-j56g8umi2yz1 .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
 .fl-node-j56g8umi2yz1 > .fl-module-content {
	margin-top:40px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-j56g8umi2yz1.fl-module > .fl-module-content {
	margin-top:20px;
}
}
@media (max-width: 768px) { .fl-node-j56g8umi2yz1 > .fl-module-content { margin-left:20px;margin-right:20px; } }	.fl-builder-content .fl-node-gvaitnkbw482.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-gvaitnkbw482.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	 .fl-node-gvaitnkbw482.fl-module-rich-text {
	margin-left:42px;
}
@media ( max-width: 1000px ) {
 .fl-node-gvaitnkbw482.fl-module-rich-text.fl-module {
	margin-left:20px;
}
}
.fl-node-vpcrhljxk8a1, .fl-node-vpcrhljxk8a1 .fl-photo {
	text-align: center;
}
 .fl-node-vpcrhljxk8a1.fl-module-photo {
	margin-top:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-s1vg9mbep465 .fl-mosaicflow {
	margin-left: -20px;
}
.fl-mosaicflow-item {
	margin: 0 0 20px 20px;
}
 .fl-node-s1vg9mbep465 > .fl-module-content {
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-s1vg9mbep465.fl-module > .fl-module-content {
	margin-left:16px;
}
}

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

div.fl-node-kqmuxgtson6w .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-kqmuxgtson6w .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-kqmuxgtson6w .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-kqmuxgtson6w .pp-heading-content {
				text-align: ;
			}
	div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading .heading-title {
	font-size: 46px;
}
div.fl-node-kqmuxgtson6w div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-kqmuxgtson6w div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-kqmuxgtson6w div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-kqmuxgtson6w div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-kqmuxgtson6w .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-kqmuxgtson6w .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 768px) {
	div.fl-node-kqmuxgtson6w .pp-heading-content .pp-heading .heading-title {
		font-size: 38px;
		line-height: 1.1em;
	}
}
 .fl-node-kqmuxgtson6w > .fl-module-content {
	margin-top:20px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 1000px ) {
 .fl-node-kqmuxgtson6w.fl-module > .fl-module-content {
	margin-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-kqmuxgtson6w.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:12px;
}
}
@media (max-width: 768px) { .fl-node-kqmuxgtson6w > .fl-module-content { margin-right:20px; } }.fl-node-s56oz07ljvc1, .fl-node-s56oz07ljvc1 .fl-photo {
	text-align: center;
}
 .fl-node-s56oz07ljvc1.fl-module-photo {
	margin-top:0px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 1000px ) {
 .fl-node-s56oz07ljvc1.fl-module-photo.fl-module {
	margin-left:20px;
}
}

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

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

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

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


div.fl-node-wro4hvf1q5iu .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-wro4hvf1q5iu .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-wro4hvf1q5iu .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-wro4hvf1q5iu .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-wro4hvf1q5iu .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


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

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

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

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

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

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

div.fl-node-wro4hvf1q5iu .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-wro4hvf1q5iu .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-wro4hvf1q5iu .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			margin: 0 auto;
	}

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


div.fl-node-wro4hvf1q5iu .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-wro4hvf1q5iu .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-wro4hvf1q5iu .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-wro4hvf1q5iu .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-wro4hvf1q5iu .pp-heading-content {
				text-align: ;
			}
	div.fl-node-wro4hvf1q5iu .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-wro4hvf1q5iu .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-wro4hvf1q5iu .pp-heading-content .pp-heading .heading-title {
	font-size: 24px;
}
div.fl-node-wro4hvf1q5iu div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-wro4hvf1q5iu div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-wro4hvf1q5iu div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-wro4hvf1q5iu div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-wro4hvf1q5iu .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-wro4hvf1q5iu .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-wro4hvf1q5iu .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
 .fl-node-wro4hvf1q5iu > .fl-module-content {
	margin-top:20px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media (max-width: 768px) { .fl-node-wro4hvf1q5iu > .fl-module-content { margin-left:20px;margin-right:20px; } }.uabb-number .uabb-number-string {
	margin: 0;
	line-height: 1;
	word-wrap: normal;
}

.uabb-number,
.uabb-number .uabb-number-circle-container,
.uabb-number .uabb-number-semi-circle-container {
	margin: 0 auto;
}

.uabb-number.uabb-number-photo-left,
.uabb-number.uabb-number-photo-right,
.uabb-number.uabb-number-icon-left,
.uabb-number.uabb-number-icon-right,

/*.uabb-number.uabb-number-icon-left-title,*/

.uabb-number.uabb-number-icon-left-right
/*,.uabb-number.uabb-number-photo-left-title,.uabb-number.uabb-number-photo-left-right*/

{
	display: inline-block;
}

.uabb-number-before-text,
.uabb-number-after-text {
	display: block;
}

.uabb-number-before-text {
	margin-bottom: 10px;
}

.uabb-number-after-text {
	margin-top: 10px;
}

.uabb-counter-before-text {
	float: left;
}

.uabb-counter-after-text {
	float: right;
}

.uabb-number-icon-left-title .uabb-number-text,
.uabb-number-icon-right-title .uabb-number-text,
.uabb-number-photo-left-title .uabb-number-text,
.uabb-number-photo-right-title .uabb-number-text,
.uabb-number-icon-left.uabb-number,
.uabb-number-icon-right.uabb-number,
.uabb-number-photo-left.uabb-number,
.uabb-number-photo-right.uabb-number {
	width: 100%;
}

.uabb-number .uabb-number-text,
.uabb-number .uabb-number-circle-container,
.uabb-number .uabb-number-semi-circle-container {
	position: relative;
	z-index: 4;
}

.uabb-number .uabb-number-circle-container .uabb-number-text,
.uabb-number .uabb-number-semi-circle-container .uabb-number-text {
	text-align: center;
}

.uabb-number-icon-left .uabb-imgicon-wrap,
.uabb-number-icon-left .uabb-number-text,
.uabb-number-photo-left .uabb-imgicon-wrap,
.uabb-number-photo-left .uabb-number-text,
.uabb-number-icon-left-title .uabb-imgicon-wrap,
.uabb-number-icon-left-title .uabb-number-string,
.uabb-number-photo-left-title .uabb-imgicon-wrap,
.uabb-number-photo-left-title .uabb-number-string {
	display: inline-block;
	vertical-align: middle;
	text-align: left;
}

.uabb-number-icon-right .uabb-imgicon-wrap,
.uabb-number-icon-right .uabb-number-text,
.uabb-number-photo-right .uabb-imgicon-wrap,
.uabb-number-photo-right .uabb-number-text,
.uabb-number-icon-right-title .uabb-imgicon-wrap,
.uabb-number-icon-right-title .uabb-number-string,
.uabb-number-photo-right-title .uabb-imgicon-wrap,
.uabb-number-photo-right-title .uabb-number-string {
	display: inline-block;
	vertical-align: middle;
	text-align: right;
}

.uabb-number-icon-left .uabb-imgicon-wrap,
.uabb-number-photo-left .uabb-imgicon-wrap,
.uabb-number-icon-left-title .uabb-imgicon-wrap,
.uabb-number-photo-left-title .uabb-imgicon-wrap {
	padding-right: 20px;
}

.uabb-number-icon-right .uabb-imgicon-wrap,
.uabb-number-photo-right .uabb-imgicon-wrap,
.uabb-number-icon-right-title .uabb-imgicon-wrap,
.uabb-number-photo-right-title .uabb-imgicon-wrap {
	padding-left: 20px;
}

.uabb-number-icon-above-title .uabb-imgicon-wrap,
.uabb-number-photo-above-title .uabb-imgicon-wrap {
	margin-bottom: 15px;
}

.uabb-number-icon-below-title .uabb-imgicon-wrap,
.uabb-number-photo-below-title .uabb-imgicon-wrap {
	margin-top: 15px;
}

.uabb-number-icon-left .uabb-number-string,
.uabb-number-icon-right .uabb-number-string,
.uabb-number-photo-left .uabb-number-string,
.uabb-number-photo-right .uabb-number-string {
	margin: 0;
	line-height: 1em;
}

.uabb-number-icon-below-title .uabb-number-string,
.uabb-number-icon-above-title .uabb-number-string,
.uabb-number-photo-below-title .uabb-number-string,
.uabb-number-photo-above-title .uabb-number-string {
	margin: 0;
}

.uabb-number .uabb-number-bar {
	padding: 5px;
}

.uabb-number .uabb-number-position-above .uabb-number-bar {
	margin-top: 5px;
}

.uabb-number .uabb-number-position-below .uabb-number-bar {
	margin-bottom: 5px;
}

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

.uabb-number .svg-container .svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}/* Global Number Counter CSS */
/* Alignment */
		.fl-node-9fs4bq6n5wy7 .fl-module-content {
			text-align: center;
		}
		

/* Number Text Typography */


	.fl-node-9fs4bq6n5wy7 h2.uabb-number-string {
					color: rgb(255, 255, 255);
			}

/* Before After Text Typography */


	.fl-node-9fs4bq6n5wy7 .uabb-number-before-text,
	.fl-node-9fs4bq6n5wy7 .uabb-number-after-text,
	.fl-node-9fs4bq6n5wy7 .uabb-counter-before-text,
	.fl-node-9fs4bq6n5wy7 .uabb-counter-after-text {
					color: #b1dae3;
			}

/* Custom Spacing Style Css */
						.fl-node-9fs4bq6n5wy7 h2.uabb-number-string {
				margin-bottom: 5px;		}
	
/* Icon Margin */
/* Image Margin */


/* Icon Image Render */


/* Render Seperator */



/* Calculation Width */


/* Responsive Typography */

	.fl-node-9fs4bq6n5wy7 .fl-module-content.fl-node-content .uabb-number-string {
	font-size: 28px;
}
.fl-node-9fs4bq6n5wy7 .fl-module-content.fl-node-content .uabb-number-before-text, .fl-node-9fs4bq6n5wy7 .fl-module-content.fl-node-content .uabb-number-after-text, .fl-node-9fs4bq6n5wy7 .fl-module-content.fl-node-content .uabb-counter-before-text, .fl-node-9fs4bq6n5wy7 .fl-module-content.fl-node-content .uabb-counter-after-text {
	font-size: 16px;
	line-height: 1em;
}
 .fl-node-9fs4bq6n5wy7 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
	.fl-builder-content .fl-node-vyckz315uj42.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-vyckz315uj42.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	 .fl-node-vyckz315uj42.fl-module-rich-text {
	margin-left:42px;
}
@media ( max-width: 1000px ) {
 .fl-node-vyckz315uj42.fl-module-rich-text.fl-module {
	margin-left:20px;
}
}
.fl-node-g73z1mlfcind, .fl-node-g73z1mlfcind .fl-photo {
	text-align: center;
}
 .fl-node-g73z1mlfcind.fl-module-photo {
	margin-top:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-j2me7bcho5pv .fl-mosaicflow {
	margin-left: -20px;
}
.fl-mosaicflow-item {
	margin: 0 0 20px 20px;
}
 .fl-node-j2me7bcho5pv > .fl-module-content {
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-j2me7bcho5pv.fl-module > .fl-module-content {
	margin-bottom:0px;
	margin-left:16px;
}
}
/* Global Number Counter CSS */
/* Alignment */
		.fl-node-su7xac0rempj .fl-module-content {
			text-align: center;
		}
		

/* Number Text Typography */


	.fl-node-su7xac0rempj h2.uabb-number-string {
					color: rgb(255, 255, 255);
			}

/* Before After Text Typography */


	.fl-node-su7xac0rempj .uabb-number-before-text,
	.fl-node-su7xac0rempj .uabb-number-after-text,
	.fl-node-su7xac0rempj .uabb-counter-before-text,
	.fl-node-su7xac0rempj .uabb-counter-after-text {
					color: #b1dae3;
			}

/* Custom Spacing Style Css */
						.fl-node-su7xac0rempj h2.uabb-number-string {
				margin-bottom: 5px;		}
	
/* Icon Margin */
/* Image Margin */


/* Icon Image Render */


/* Render Seperator */



/* Calculation Width */


/* Responsive Typography */

	.fl-node-su7xac0rempj .fl-module-content.fl-node-content .uabb-number-string {
	font-size: 28px;
}
.fl-node-su7xac0rempj .fl-module-content.fl-node-content .uabb-number-before-text, .fl-node-su7xac0rempj .fl-module-content.fl-node-content .uabb-number-after-text, .fl-node-su7xac0rempj .fl-module-content.fl-node-content .uabb-counter-before-text, .fl-node-su7xac0rempj .fl-module-content.fl-node-content .uabb-counter-after-text {
	font-size: 16px;
	line-height: 1em;
}
 .fl-node-su7xac0rempj > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
/* Global Number Counter CSS */
/* Alignment */
		.fl-node-35jsokf4caq9 .fl-module-content {
			text-align: center;
		}
		

/* Number Text Typography */


	.fl-node-35jsokf4caq9 h2.uabb-number-string {
					color: rgb(255, 255, 255);
			}

/* Before After Text Typography */


	.fl-node-35jsokf4caq9 .uabb-number-before-text,
	.fl-node-35jsokf4caq9 .uabb-number-after-text,
	.fl-node-35jsokf4caq9 .uabb-counter-before-text,
	.fl-node-35jsokf4caq9 .uabb-counter-after-text {
					color: #b1dae3;
			}

/* Custom Spacing Style Css */
						.fl-node-35jsokf4caq9 h2.uabb-number-string {
				margin-bottom: 5px;		}
	
/* Icon Margin */
/* Image Margin */


/* Icon Image Render */


/* Render Seperator */



/* Calculation Width */


/* Responsive Typography */

	.fl-node-35jsokf4caq9 .fl-module-content.fl-node-content .uabb-number-string {
	font-size: 28px;
}
.fl-node-35jsokf4caq9 .fl-module-content.fl-node-content .uabb-number-before-text, .fl-node-35jsokf4caq9 .fl-module-content.fl-node-content .uabb-number-after-text, .fl-node-35jsokf4caq9 .fl-module-content.fl-node-content .uabb-counter-before-text, .fl-node-35jsokf4caq9 .fl-module-content.fl-node-content .uabb-counter-after-text {
	font-size: 16px;
	line-height: 1em;
}
 .fl-node-35jsokf4caq9 > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
/* Global Number Counter CSS */
/* Alignment */
		.fl-node-8g60klyd1pco .fl-module-content {
			text-align: center;
		}
		

/* Number Text Typography */


	.fl-node-8g60klyd1pco h2.uabb-number-string {
					color: rgb(255, 255, 255);
			}

/* Before After Text Typography */


	.fl-node-8g60klyd1pco .uabb-number-before-text,
	.fl-node-8g60klyd1pco .uabb-number-after-text,
	.fl-node-8g60klyd1pco .uabb-counter-before-text,
	.fl-node-8g60klyd1pco .uabb-counter-after-text {
					color: #b1dae3;
			}

/* Custom Spacing Style Css */
						.fl-node-8g60klyd1pco h2.uabb-number-string {
				margin-bottom: 5px;		}
	
/* Icon Margin */
/* Image Margin */


/* Icon Image Render */


/* Render Seperator */



/* Calculation Width */


/* Responsive Typography */

	.fl-node-8g60klyd1pco .fl-module-content.fl-node-content .uabb-number-string {
	font-size: 28px;
}
.fl-node-8g60klyd1pco .fl-module-content.fl-node-content .uabb-number-before-text, .fl-node-8g60klyd1pco .fl-module-content.fl-node-content .uabb-number-after-text, .fl-node-8g60klyd1pco .fl-module-content.fl-node-content .uabb-counter-before-text, .fl-node-8g60klyd1pco .fl-module-content.fl-node-content .uabb-counter-after-text {
	font-size: 16px;
	line-height: 1em;
}
 .fl-node-8g60klyd1pco > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
/* Global Number Counter CSS */
/* Alignment */
		.fl-node-93f0g2su7ahr .fl-module-content {
			text-align: center;
		}
		

/* Number Text Typography */


	.fl-node-93f0g2su7ahr h2.uabb-number-string {
					color: rgb(255, 255, 255);
			}

/* Before After Text Typography */


	.fl-node-93f0g2su7ahr .uabb-number-before-text,
	.fl-node-93f0g2su7ahr .uabb-number-after-text,
	.fl-node-93f0g2su7ahr .uabb-counter-before-text,
	.fl-node-93f0g2su7ahr .uabb-counter-after-text {
					color: #b1dae3;
			}

/* Custom Spacing Style Css */
						.fl-node-93f0g2su7ahr h2.uabb-number-string {
				margin-bottom: 5px;		}
	
/* Icon Margin */
/* Image Margin */


/* Icon Image Render */


/* Render Seperator */



/* Calculation Width */


/* Responsive Typography */

	.fl-node-93f0g2su7ahr .fl-module-content.fl-node-content .uabb-number-string {
	font-size: 28px;
}
.fl-node-93f0g2su7ahr .fl-module-content.fl-node-content .uabb-number-before-text, .fl-node-93f0g2su7ahr .fl-module-content.fl-node-content .uabb-number-after-text, .fl-node-93f0g2su7ahr .fl-module-content.fl-node-content .uabb-counter-before-text, .fl-node-93f0g2su7ahr .fl-module-content.fl-node-content .uabb-counter-after-text {
	font-size: 16px;
	line-height: 1em;
}
 .fl-node-93f0g2su7ahr > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}
/* Global Number Counter CSS */
/* Alignment */
		.fl-node-vs2pjad56kih .fl-module-content {
			text-align: center;
		}
		

/* Number Text Typography */


	.fl-node-vs2pjad56kih h2.uabb-number-string {
					color: rgb(255, 255, 255);
			}

/* Before After Text Typography */


	.fl-node-vs2pjad56kih .uabb-number-before-text,
	.fl-node-vs2pjad56kih .uabb-number-after-text,
	.fl-node-vs2pjad56kih .uabb-counter-before-text,
	.fl-node-vs2pjad56kih .uabb-counter-after-text {
					color: #b1dae3;
			}

/* Custom Spacing Style Css */
						.fl-node-vs2pjad56kih h2.uabb-number-string {
				margin-bottom: 5px;		}
	
/* Icon Margin */
/* Image Margin */


/* Icon Image Render */


/* Render Seperator */



/* Calculation Width */


/* Responsive Typography */

	.fl-node-vs2pjad56kih .fl-module-content.fl-node-content .uabb-number-string {
	font-size: 28px;
}
.fl-node-vs2pjad56kih .fl-module-content.fl-node-content .uabb-number-before-text, .fl-node-vs2pjad56kih .fl-module-content.fl-node-content .uabb-number-after-text, .fl-node-vs2pjad56kih .fl-module-content.fl-node-content .uabb-counter-before-text, .fl-node-vs2pjad56kih .fl-module-content.fl-node-content .uabb-counter-after-text {
	font-size: 16px;
	line-height: 1em;
}
 .fl-node-vs2pjad56kih > .fl-module-content {
	margin-top:10px;
	margin-bottom:10px;
}

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

div.fl-node-a1vczpw6y2xo .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgb(37, 35, 41);
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-sub-heading,
div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-sub-heading p {
		color: #03182b;
	}

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

div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-a1vczpw6y2xo .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-a1vczpw6y2xo .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


@media only screen and (max-width: 1000px) {
	div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-a1vczpw6y2xo .pp-heading-content {
				text-align: left;
			}
	div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading-separator .pp-separator-line {
												float: left;
									}
	div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading-prefix {
							padding-left: 0 !important;
							}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-a1vczpw6y2xo .pp-heading-content {
				text-align: ;
			}
	div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading-prefix {
	font-weight: 500;
	font-size: 24px;
}
div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading .heading-title {
	font-size: 43px;
	line-height: 1.15em;
}
div.fl-node-a1vczpw6y2xo div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-a1vczpw6y2xo div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-a1vczpw6y2xo div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-a1vczpw6y2xo div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-sub-heading, div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-sub-heading p {
	font-size: 19px;
}
div.fl-node-a1vczpw6y2xo .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-a1vczpw6y2xo .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading .heading-title {
		font-size: 36px;
	}
	div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-sub-heading, div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
@media(max-width: 1000px) {
	div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
@media(max-width: 768px) {
	div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-heading .heading-title {
		font-size: 38px;
	}
	div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-sub-heading, div.fl-node-a1vczpw6y2xo .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
 .fl-node-a1vczpw6y2xo > .fl-module-content {
	margin-top:0px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 1000px ) {
 .fl-node-a1vczpw6y2xo.fl-module > .fl-module-content {
	margin-right:20px;
	margin-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-a1vczpw6y2xo.fl-module > .fl-module-content {
	margin-right:20px;
	margin-left:20px;
}
}
.fl-node-ykjq3nvhfosp, .fl-node-ykjq3nvhfosp .fl-photo {
	text-align: center;
}
 .fl-node-ykjq3nvhfosp.fl-module-photo {
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content-8113 .fl-node-i9fu4y1z6o2r {
	display: grid;
	flex-direction: column;
	justify-items: center;
	align-items: center;
	padding-top: 44px;
	padding-right: 44px;
	padding-bottom: 44px;
	padding-left: 44px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	max-height: 1024px;
}
:where( .fl-builder-content-8113 .fl-node-i9fu4y1z6o2r > :not( .fl-block-overlay, .fl-drop-target ) ) {
	grid-column: 1 / -1;
	grid-row: 1 / -1;
	z-index: 1;
}
@media(max-width: 768px) {
	.fl-builder-content-8113 .fl-node-i9fu4y1z6o2r {
		padding-top: 24px;
		padding-right: 4px;
		padding-bottom: 24px;
		padding-left: 24px;
		min-height: 0px;
		max-height: 1800px;
	}
}
@media ( max-width: 1200px ) {
 .fl-node-i9fu4y1z6o2r.fl-module-box.fl-module {
	margin-right:10px;
	margin-left:10px;
}
}
.fl-builder-content-8113 .fl-node-5abp6827j4si {
	display: flex;
	flex-direction: row;
	gap: 10px;
	background-color: #c27258;
	aspect-ratio: 1/1;
	height: 60vh;
	margin-inline: auto 0 !important;
}

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

div.fl-node-bfnckwjlzaqu .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgb(255, 255, 255);
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-sub-heading,
div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

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

div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-bfnckwjlzaqu .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-bfnckwjlzaqu .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


@media only screen and (max-width: 1000px) {
	div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-bfnckwjlzaqu .pp-heading-content {
				text-align: left;
			}
	div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading-separator .pp-separator-line {
												float: left;
									}
	div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading-prefix {
							padding-left: 0 !important;
							}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-bfnckwjlzaqu .pp-heading-content {
				text-align: ;
			}
	div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading-prefix {
	font-weight: 500;
	font-size: 24px;
}
div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading .heading-title {
	font-size: 43px;
	line-height: 1.15em;
}
div.fl-node-bfnckwjlzaqu div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-bfnckwjlzaqu div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-bfnckwjlzaqu div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-bfnckwjlzaqu div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-bfnckwjlzaqu .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-bfnckwjlzaqu .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading .heading-title {
		font-size: 44px;
	}
	div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-sub-heading, div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
@media(max-width: 1000px) {
	div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
@media(max-width: 768px) {
	div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-heading .heading-title {
		font-size: 38px;
	}
	div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-sub-heading, div.fl-node-bfnckwjlzaqu .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
 .fl-node-bfnckwjlzaqu > .fl-module-content {
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 1000px ) {
 .fl-node-bfnckwjlzaqu.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-bfnckwjlzaqu.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

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

div.fl-node-guih7362qtbk .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-guih7362qtbk .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-guih7362qtbk .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-guih7362qtbk .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-guih7362qtbk .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-guih7362qtbk .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-guih7362qtbk .pp-heading-content .pp-sub-heading,
div.fl-node-guih7362qtbk .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

div.fl-node-guih7362qtbk .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-guih7362qtbk .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-guih7362qtbk .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-guih7362qtbk .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-guih7362qtbk .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-guih7362qtbk .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-guih7362qtbk .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-guih7362qtbk .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-guih7362qtbk .pp-heading-content {
				text-align: ;
			}
	div.fl-node-guih7362qtbk .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-guih7362qtbk .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-guih7362qtbk div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-guih7362qtbk div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-guih7362qtbk div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-guih7362qtbk div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-guih7362qtbk .pp-heading-content .pp-sub-heading, div.fl-node-guih7362qtbk .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-guih7362qtbk .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-guih7362qtbk .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-guih7362qtbk > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-guih7362qtbk.fl-module > .fl-module-content {
	margin-bottom:16px;
}
}
@media ( max-width: 768px ) {
 .fl-node-guih7362qtbk.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-htmsglwyqija img.fl-photo-img {
	object-position: left center;
}
.fl-node-htmsglwyqija, .fl-node-htmsglwyqija .fl-photo {
	text-align: center;
}
.fl-node-htmsglwyqija .fl-photo-img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
 .fl-node-htmsglwyqija.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-htmsglwyqija.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-htmsglwyqija.fl-module-photo.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-node-wq9opkuhyngt .pp-video-play-icon {
		}
.fl-node-wq9opkuhyngt .pp-video-play-icon:hover {
		}
.fl-node-wq9opkuhyngt .pp-video-image-overlay {
	cursor: pointer;
}
.fl-node-wq9opkuhyngt .pp-video-play-icon svg {
	}
.fl-node-wq9opkuhyngt .pp-video-play-icon:hover svg {
	}


.fancybox-wq9opkuhyngt button.fancybox-button {
	padding: 10px;
	border-radius: 0;
    box-shadow: none;
	border: none !important;
}
.fancybox-wq9opkuhyngt .pp-aspect-ratio-169 {
	background: none;
	width: 100%;
	height: 100%;
}
.fancybox-wq9opkuhyngt .pp-video-container {
	}
.fancybox-wq9opkuhyngt .fancybox-close-small {
	color: #fff;
	height: 60px;
	width: 60px;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	padding: 5px !important;
}
.fancybox-wq9opkuhyngt .fancybox-close-small:hover,
.fancybox-wq9opkuhyngt .fancybox-close-small:focus {
	color: #fff;
}
.fancybox-wq9opkuhyngt .fancybox-close-small,
.fancybox-wq9opkuhyngt .fancybox-close-small:focus {
	position: absolute;
	top: 0;
	right: 0;
}
.admin-bar .fancybox-wq9opkuhyngt .fancybox-close-small {
	top: 32px;
}
.fancybox-wq9opkuhyngt-overlay {
	}

@media only screen and (min-width: 1025px) {
	.fancybox-wq9opkuhyngt .pp-video-container {
			}
}

@media only screen and (max-width: 1000px) {
	.fl-node-wq9opkuhyngt .pp-video-play-icon {
			}
}
@media only screen and (max-width: 768px) {
	.fl-node-wq9opkuhyngt .pp-video-play-icon {
			}
} .fl-node-wq9opkuhyngt > .fl-module-content {
	margin-top:0px;
	margin-left:40px;
}
@media ( max-width: 1000px ) {
 .fl-node-wq9opkuhyngt.fl-module > .fl-module-content {
	margin-left:20px;
}
}
	.fl-builder-content .fl-node-7nep9f6at0br.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-7nep9f6at0br.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-7nep9f6at0br.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-7nep9f6at0br.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 14px;
	font-style: italic;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-7nep9f6at0br.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-7nep9f6at0br.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 16px;
	}
}
 .fl-node-7nep9f6at0br.fl-module-rich-text {
	margin-top:0px;
	margin-left:49px;
}
@media ( max-width: 768px ) {
 .fl-node-7nep9f6at0br.fl-module-rich-text.fl-module {
	margin-top:20px;
	margin-bottom:-10px;
}
}
@media (max-width: 768px) { .fl-node-7nep9f6at0br.fl-module-rich-text { margin-left:20px; } }	.fl-builder-content .fl-node-1yg4tl96fk8b.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-1yg4tl96fk8b.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-1yg4tl96fk8b.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-1yg4tl96fk8b.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 14px;
	font-style: italic;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-1yg4tl96fk8b.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-1yg4tl96fk8b.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 16px;
	}
}
 .fl-node-1yg4tl96fk8b.fl-module-rich-text {
	margin-top:0px;
	margin-left:49px;
}
@media ( max-width: 768px ) {
 .fl-node-1yg4tl96fk8b.fl-module-rich-text.fl-module {
	margin-top:20px;
	margin-bottom:-10px;
}
}
@media (max-width: 768px) { .fl-node-1yg4tl96fk8b.fl-module-rich-text { margin-left:20px; } }	.fl-builder-content .fl-node-d3fjw8v4zqu0.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-d3fjw8v4zqu0.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-d3fjw8v4zqu0.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-d3fjw8v4zqu0.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 14px;
	font-style: italic;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-d3fjw8v4zqu0.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-d3fjw8v4zqu0.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 16px;
	}
}
 .fl-node-d3fjw8v4zqu0.fl-module-rich-text {
	margin-top:0px;
	margin-left:49px;
}
@media ( max-width: 768px ) {
 .fl-node-d3fjw8v4zqu0.fl-module-rich-text.fl-module {
	margin-top:20px;
	margin-bottom:-10px;
}
}
@media (max-width: 768px) { .fl-node-d3fjw8v4zqu0.fl-module-rich-text { margin-left:20px; } }
div.fl-node-qm96t523pvlx .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-qm96t523pvlx .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-qm96t523pvlx .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-qm96t523pvlx .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-qm96t523pvlx .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-qm96t523pvlx .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-qm96t523pvlx .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-qm96t523pvlx .pp-heading-content .pp-sub-heading,
div.fl-node-qm96t523pvlx .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

div.fl-node-qm96t523pvlx .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-qm96t523pvlx .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-qm96t523pvlx .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-qm96t523pvlx .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-qm96t523pvlx .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-qm96t523pvlx .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-qm96t523pvlx .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-qm96t523pvlx .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-qm96t523pvlx .pp-heading-content {
				text-align: ;
			}
	div.fl-node-qm96t523pvlx .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-qm96t523pvlx .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-qm96t523pvlx div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-qm96t523pvlx div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-qm96t523pvlx div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-qm96t523pvlx div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-qm96t523pvlx .pp-heading-content .pp-sub-heading, div.fl-node-qm96t523pvlx .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-qm96t523pvlx .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-qm96t523pvlx .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-qm96t523pvlx > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-qm96t523pvlx.fl-module > .fl-module-content {
	margin-bottom:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-qm96t523pvlx.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.pp-accordion-item {
	/* border-radius doesn't work without overflow hidden */
	overflow: hidden;
}
.pp-accordion-button {
	display: flex;
	align-items: center;
	width: 100%;
	cursor: pointer;
	overflow: hidden;
	padding: 10px;
}
.pp-accordion-button-label {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 0;
	margin-bottom: 0;
	color: inherit;
}
.pp-accordion-button-label p {
	margin-bottom: 0;
}
span.pp-accordion-button-icon {
	display: table-cell;
	vertical-align: middle;
}
.pp-accordion-content {
	display: none;
	padding: 15px;
}

.pp-accordion-item .pp-accordion-button,
.pp-accordion-item .pp-accordion-button:hover {
	transition: all 0.1s ease-in;
	-webkit-transition: all 0.1s ease-in;
	-moz-transition: all 0.1s ease-in;
	-ms-transition: all 0.1s ease-in;
	-o-transition: all 0.1s ease-in;
}

/* Small */
.pp-accordion-small .pp-accordion-button {
	padding: 10px 15px;
}
.pp-accordion-small .pp-accordion-content {
	padding: 0 30px 10px 15px;
}

/* Medium */
.pp-accordion-medium .pp-accordion-button {
	padding: 15px 20px;
}
.pp-accordion-medium .pp-accordion-button-label {
	font-size: 20px;
}
.pp-accordion-medium .pp-accordion-content {
	padding: 0 40px 15px 20px;
}

/* Large */
.pp-accordion-large .pp-accordion-button {
	padding: 20px 25px;
}
.pp-accordion-large .pp-accordion-button-label {
	font-size: 26px;
}
.pp-accordion-large .pp-accordion-content {
	padding: 0 50px 25px 25px;
}

.pp-accordion span.pp-accordion-icon {
    padding-right: 10px;
    width: 20px;
	height: auto;
	line-height: 1.4;
    display: table-cell;
	vertical-align: middle;
    text-align: center;
    font-size: 16px;
}

.pp-accordion-button-icon.pp-accordion-close {
	display: none;
}

.pp-accordion-item.pp-accordion-item-active > .pp-accordion-button .pp-accordion-close {
	display: table-cell;
}

.pp-accordion-item.pp-accordion-item-active > .pp-accordion-button .pp-accordion-open {
	display: none;
}
.fl-node-gvqw9p7zb4hi .pp-accordion-item {
		margin-bottom: 10px;
	}

 
.fl-node-gvqw9p7zb4hi .pp-accordion-item .pp-accordion-button {
			color: #03182b;
		}

.fl-node-gvqw9p7zb4hi .pp-accordion-item .pp-accordion-button:hover,
.fl-node-gvqw9p7zb4hi .pp-accordion-item.pp-accordion-item-active .pp-accordion-button {
		}


.fl-node-gvqw9p7zb4hi .pp-accordion-item .pp-accordion-button-icon.pp-accordion-icon-right {
	padding-left: 15px;
}
.fl-node-gvqw9p7zb4hi .pp-accordion-item .pp-accordion-button-icon.pp-accordion-icon-left {
	padding-right: 15px;
}
 






.fl-node-gvqw9p7zb4hi .pp-accordion-item .pp-accordion-content {
			color: #03182b;
							}


.fl-node-gvqw9p7zb4hi .pp-accordion-item .pp-accordion-button-icon,
.fl-node-gvqw9p7zb4hi .pp-accordion-item .pp-accordion-button-icon:before {
	font-size: 14px;
}

.fl-node-gvqw9p7zb4hi .pp-accordion-item .pp-accordion-icon {
		font-size: 15px;
	width: 18.75px;
			color: #03182b;
		}


.fl-node-gvqw9p7zb4hi .pp-accordion-item .pp-accordion-icon:before {
	font-size: 15px;
}

										.fl-node-gvqw9p7zb4hi .pp-accordion-item .pp-accordion-button .pp-accordion-button-label {
	font-size: 18px;
}
@media(max-width: 768px) {
	.fl-node-gvqw9p7zb4hi .pp-accordion-item .pp-accordion-button .pp-accordion-button-label {
		font-size: 16px;
	}
	.fl-node-gvqw9p7zb4hi .pp-accordion-item .pp-accordion-content {
		font-size: 16px;
	}
}
 .fl-node-gvqw9p7zb4hi > .fl-module-content {
	margin-top:10px;
	margin-bottom:0px;
	margin-left:10px;
}
@media ( max-width: 1000px ) {
 .fl-node-gvqw9p7zb4hi.fl-module > .fl-module-content {
	margin-left:-10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-gvqw9p7zb4hi.fl-module > .fl-module-content {
	margin-right:10px;
}
}
@media (max-width: 768px) { .fl-node-gvqw9p7zb4hi > .fl-module-content { margin-left:20px; } }.fl-builder-content-8113 .fl-node-jkmzwrgaltcu {
	display: grid;
	grid-template-columns: repeat(1,1fr);
	grid-template-rows: repeat(1,1fr);
	flex-direction: row;
	row-gap: 40px;
	column-gap: 40px;
	padding-right: 44px;
	padding-bottom: 44px;
	padding-left: 46px;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
:where( .fl-builder-content-8113 .fl-node-jkmzwrgaltcu > :not( .fl-block-overlay, .fl-drop-target ) ) {
	background-color: #D1C0A9;
}
@media(max-width: 1200px) {
	.fl-builder-content-8113 .fl-node-jkmzwrgaltcu {
		column-gap: 20px;
	}
}
@media(max-width: 768px) {
	.fl-builder-content-8113 .fl-node-jkmzwrgaltcu {
		display: flex;
		flex-direction: column;
		gap: 20px;
		padding-right: 24px;
		padding-bottom: 24px;
		padding-left: 24px;
	}
}
 .fl-node-jkmzwrgaltcu.fl-module-box {
	margin-top:-20px;
}
@media ( max-width: 768px ) {
 .fl-node-jkmzwrgaltcu.fl-module-box.fl-module {
	margin-top:-20px;
}
}
.fl-builder-content-8113 .fl-node-9gi3p0vzq7sb {
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	gap: 10px;
	background: linear-gradient(rgb(195, 209, 159), rgb(195, 209, 159));
}
@media(max-width: 768px) {
	.fl-builder-content-8113 .fl-node-9gi3p0vzq7sb {
		flex-direction: column;
	}
}

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

div.fl-node-fnyb1juleaiw .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgb(37, 35, 41);
									display: inline;
	}
div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-fnyb1juleaiw .pp-heading-content .pp-sub-heading,
div.fl-node-fnyb1juleaiw .pp-heading-content .pp-sub-heading p {
		color: #03182b;
	}

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

div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-fnyb1juleaiw .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-fnyb1juleaiw .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-fnyb1juleaiw .pp-heading-content {
				text-align: ;
			}
	div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading-prefix {
	font-weight: 500;
	font-size: 24px;
}
div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading .heading-title {
	font-size: 34px;
	line-height: 1.15em;
}
div.fl-node-fnyb1juleaiw div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-fnyb1juleaiw div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-fnyb1juleaiw div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-fnyb1juleaiw div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-fnyb1juleaiw .pp-heading-content .pp-sub-heading, div.fl-node-fnyb1juleaiw .pp-heading-content .pp-sub-heading p {
	font-size: 19px;
}
div.fl-node-fnyb1juleaiw .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-fnyb1juleaiw .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading .heading-title {
		font-size: 36px;
	}
	div.fl-node-fnyb1juleaiw .pp-heading-content .pp-sub-heading, div.fl-node-fnyb1juleaiw .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
@media(max-width: 1000px) {
	div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
@media(max-width: 768px) {
	div.fl-node-fnyb1juleaiw .pp-heading-content .pp-heading .heading-title {
		font-size: 38px;
	}
	div.fl-node-fnyb1juleaiw .pp-heading-content .pp-sub-heading, div.fl-node-fnyb1juleaiw .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
 .fl-node-fnyb1juleaiw > .fl-module-content {
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 1000px ) {
 .fl-node-fnyb1juleaiw.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-fnyb1juleaiw.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-myrfqos68b45 {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-template-rows: repeat(1,1fr);
	flex-direction: row;
	align-items: center;
	row-gap: 10px;
	column-gap: 20px;
}
@media(max-width: 1000px) {
	.fl-builder-content-8113 .fl-node-myrfqos68b45 {
		display: flex;
		flex-direction: column;
	}
}
 .fl-node-myrfqos68b45.fl-module-box {
	margin-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-myrfqos68b45.fl-module-box.fl-module {
	margin-left:20px;
}
}
@media ( max-width: 1000px ) {
 .fl-node-myrfqos68b45.fl-module-box.fl-module {
	margin-left:0px;
}
}
/**
 * Horizontal Layout
 */
.fl-button-group-layout-horizontal .fl-button-group-buttons,
.fl-button-group-layout-horizontal.fl-button-group-buttons {
    display: flex;
    flex-wrap: wrap;
}

.fl-button-group-layout-horizontal .fl-button-wrap {
    display: inline-block;
}

/**
 * Vertical Layout
 */
.fl-button-group-layout-vertical .fl-button-group-buttons,
.fl-button-group-layout-vertical.fl-button-group-buttons {
    display: block;
}

.fl-button-group-layout-vertical .fl-button-wrap {
    display: block;
}

.fl-node-n1hprzf5mws4 .fl-button-group-layout-vertical .fl-button-group-buttons .fl-button:is(a, button),
.fl-node-n1hprzf5mws4 .fl-button-group-layout-horizontal .fl-button-group-buttons .fl-button:is(a, button) {
	width: 200px;
}
.fl-node-n1hprzf5mws4 .fl-button-group-layout-horizontal .fl-button-group-buttons {
		justify-content: flex-start}



.fl-builder-content .fl-node-n1hprzf5mws4 .fl-button-group .fl-button-group-buttons .fl-button:is(a, button):hover,
.fl-builder-content .fl-node-n1hprzf5mws4 .fl-button-group .fl-button-group-buttons .fl-button:is(a, button):focus {

	background: #f58220;

	}
			#fl-button-group-button-n1hprzf5mws4-0 .fl-button:is(a, button) > span,
		#fl-button-group-button-n1hprzf5mws4-0 .fl-button:is(a, button) > i {
			color: rgb(255, 255, 255);
		}
				#fl-button-group-button-n1hprzf5mws4-0 .fl-button:is(a, button):hover > span,
		#fl-button-group-button-n1hprzf5mws4-0 .fl-button:is(a, button):focus > span,
		#fl-button-group-button-n1hprzf5mws4-0 .fl-button:is(a, button):hover > i,
		#fl-button-group-button-n1hprzf5mws4-0 .fl-button:is(a, button):focus > i {
			color: #000000;
		}
		
	#fl-button-group-button-n1hprzf5mws4-0 .fl-button:is(a, button) {
									background: rgba(131,49,74,0);
					
			}

			#fl-button-group-button-n1hprzf5mws4-0 .fl-button:is(a, button):hover,
		#fl-button-group-button-n1hprzf5mws4-0 .fl-button:is(a, button):focus {
			background: #f58220;
					}
				#fl-button-group-button-n1hprzf5mws4-0 .fl-button:is(a, button):hover {
			border-color: #f58220;
		}
			.fl-builder-content .fl-node-n1hprzf5mws4 .fl-button,
	.fl-builder-content .fl-node-n1hprzf5mws4 .fl-button * {
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
	}
.fl-node-n1hprzf5mws4 .fl-button-group-layout-vertical .fl-button-group-buttons .fl-button-group-button .fl-button-wrap {
	text-align: left;
}
.fl-node-n1hprzf5mws4 .fl-button-group-layout-horizontal .fl-button-group-buttons {
	justify-content: flex-start;
}
.fl-builder-content .fl-node-n1hprzf5mws4 .fl-button-group .fl-button-group-buttons .fl-button-group-button {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-builder-content .fl-node-n1hprzf5mws4 .fl-button-group .fl-button-group-buttons .fl-button:is(a, button) {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #f3f3f3;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
.fl-builder-content .fl-node-n1hprzf5mws4 .fl-button-group .fl-button-group-buttons .fl-button:is(a, button):hover {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #979797;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
#fl-button-group-button-n1hprzf5mws4-0 .fl-button:is(a, button) {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	background-image: linear-gradient(180deg, #F15732 0%, #643015 100%);
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #f58220;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
#fl-button-group-button-n1hprzf5mws4-0 .fl-button:is(a, button), #fl-button-group-button-n1hprzf5mws4-0 a.fl-button:visited {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
 .fl-node-n1hprzf5mws4 > .fl-module-content {
	margin-top:8px;
	margin-right:0px;
	margin-bottom:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-n1hprzf5mws4.fl-module > .fl-module-content {
	margin-bottom:10px;
	margin-left:15px;
}
}
.fl-node-m438d97cln1r .pp-accordion-item {
		margin-bottom: 10px;
	}

 
.fl-node-m438d97cln1r .pp-accordion-item .pp-accordion-button {
			color: rgb(255, 255, 255);
		}

.fl-node-m438d97cln1r .pp-accordion-item .pp-accordion-button:hover,
.fl-node-m438d97cln1r .pp-accordion-item.pp-accordion-item-active .pp-accordion-button {
			color: rgb(255, 255, 255);
	}

.fl-node-m438d97cln1r .pp-accordion-item.pp-accordion-item-active .pp-accordion-button-icon,
.fl-node-m438d97cln1r .pp-accordion-item:hover .pp-accordion-button-icon {
	color: rgb(255, 255, 255);
}

.fl-node-m438d97cln1r .pp-accordion-item .pp-accordion-button-icon.pp-accordion-icon-right {
	padding-left: 15px;
}
.fl-node-m438d97cln1r .pp-accordion-item .pp-accordion-button-icon.pp-accordion-icon-left {
	padding-right: 15px;
}
 






.fl-node-m438d97cln1r .pp-accordion-item .pp-accordion-content {
			color: rgb(255, 255, 255);
							}

.fl-node-m438d97cln1r .pp-accordion-item .pp-accordion-button-icon {
	color: rgb(255, 255, 255);
}

.fl-node-m438d97cln1r .pp-accordion-item .pp-accordion-button-icon,
.fl-node-m438d97cln1r .pp-accordion-item .pp-accordion-button-icon:before {
	font-size: 14px;
}

.fl-node-m438d97cln1r .pp-accordion-item .pp-accordion-icon {
		font-size: 15px;
	width: 18.75px;
			color: rgb(255, 255, 255);
		}

.fl-node-m438d97cln1r .pp-accordion-item .pp-accordion-button:hover .pp-accordion-icon,
.fl-node-m438d97cln1r .pp-accordion-item.pp-accordion-item-active .pp-accordion-icon {
	color: rgb(255, 255, 255);
}

.fl-node-m438d97cln1r .pp-accordion-item .pp-accordion-icon:before {
	font-size: 15px;
}

										.fl-node-m438d97cln1r .pp-accordion-item .pp-accordion-button .pp-accordion-button-label {
	font-size: 18px;
}
 .fl-node-m438d97cln1r > .fl-module-content {
	margin-top:10px;
	margin-bottom:32px;
	margin-left:32px;
}
@media ( max-width: 768px ) {
 .fl-node-m438d97cln1r.fl-module > .fl-module-content {
	margin-left:10px;
}
}
@media (max-width: 768px) { .fl-node-m438d97cln1r > .fl-module-content { margin-bottom:20px; } }.fl-node-mj581gewdtlx, .fl-node-mj581gewdtlx .fl-photo {
	text-align: left;
}
.fl-node-mj581gewdtlx .fl-photo-content, .fl-node-mj581gewdtlx .fl-photo-img {
	width: 55vw;
}
@media(max-width: 1200px) {
	.fl-node-mj581gewdtlx, .fl-node-mj581gewdtlx .fl-photo {
		text-align: left;
	}
}
@media(max-width: 1000px) {
	.fl-node-mj581gewdtlx, .fl-node-mj581gewdtlx .fl-photo {
		text-align: center;
	}
}
@media(max-width: 768px) {
	.fl-node-mj581gewdtlx .fl-photo-content, .fl-node-mj581gewdtlx .fl-photo-img {
		width: 500px;
	}
}
 .fl-node-mj581gewdtlx.fl-module-photo {
	margin-right:390px;
}
@media ( max-width: 1200px ) {
 .fl-node-mj581gewdtlx.fl-module-photo.fl-module {
	margin-right:25%;
}
}
@media ( max-width: 1000px ) {
 .fl-node-mj581gewdtlx.fl-module-photo.fl-module {
	margin-right:40px;
	margin-left:40px;
}
}
@media ( max-width: 768px ) {
 .fl-node-mj581gewdtlx.fl-module-photo.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-4tb3w2q8knyg .pp-heading-content {
	text-align: left;
}

div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading {
		}

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


div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100%;
			border-style: solid;
			border-color: #b1dae3;
			border-bottom-width: 3px;
	}

div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100%;
			border-style: solid;
			border-color: #b1dae3;
			border-bottom-width: 3px;
	}

div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100%;
			border-bottom-style: solid;
			border-bottom-color: #b1dae3;
			border-bottom-width: 3px;
	}

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


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

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

div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100%;
			border-style: solid;
			border-color: #b1dae3;
			border-bottom-width: 3px;
	}

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

div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 3px;
			border-bottom-color: #b1dae3;
			width: 100%;
			float: left;
	}

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


div.fl-node-4tb3w2q8knyg .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-4tb3w2q8knyg .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-4tb3w2q8knyg .pp-heading-content {
				text-align: ;
			}
	div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading .heading-title {
	font-size: 26px;
}
div.fl-node-4tb3w2q8knyg div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-4tb3w2q8knyg div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-4tb3w2q8knyg div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-4tb3w2q8knyg div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-4tb3w2q8knyg .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-4tb3w2q8knyg .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
@media(max-width: 768px) {
	div.fl-node-4tb3w2q8knyg .pp-heading-content .pp-heading .heading-title {
		font-size: 24px;
	}
}
 .fl-node-4tb3w2q8knyg > .fl-module-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 1200px ) {
 .fl-node-4tb3w2q8knyg.fl-module > .fl-module-content {
	margin-left:5px;
}
}
@media ( max-width: 1000px ) {
 .fl-node-4tb3w2q8knyg.fl-module > .fl-module-content {
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-4tb3w2q8knyg.fl-module > .fl-module-content {
	margin-right:10px;
	margin-left:10px;
}
}
.uabb-layout-circular,
.uabb-layout-semi-circular {
    text-align: center;
}
.uabb-pb-container .uabb-pb-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.uabb-pb-container .uabb-pb-list li {
    margin: 0;
}
.uabb-progress-bar-wrapper.uabb-layout-circular,
.uabb-progress-bar-wrapper.uabb-layout-semi-circular {
    position: relative;
    z-index: 10;
    margin: auto;
}

.uabb-layout-circular .uabb-percent-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 3;
}

.uabb-layout-semi-circular .uabb-percent-wrap {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%,-100%);
    -moz-transform: translate(-50%,-100%);
    -ms-transform: translate(-50%,-100%);
    transform: translate(-50%,-100%);
    z-index: 3;
}

.uabb-layout-semi-circular .uabb-svg-wrap {
    padding-bottom: 50%;
}

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

.uabb-svg-wrap svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.uabb-layout-semi-circular .uabb-svg-wrap svg,
.uabb-layout-circular .uabb-svg-wrap svg {
    height: 100%;
}

.uabb-layout-circular .uabb-svg-wrap svg {
    border-radius: 50%;
}

.uabb-vertical-center .uabb-progress-info {
	display: table;
    width: 100%;
    min-width: 0;
}

.uabb-layout-horizontal.uabb-progress-bar-style-style4 .uabb-progress-value span {
    transform: translateX(50%);
    display: inline-block;
}

.uabb-vertical-center .uabb-progress-title,
.uabb-vertical-center .uabb-progress-value {
	display: table-cell;
    vertical-align: middle;
}

.uabb-progress-value {
	/*padding: 10px;*/
    font-size: 16px;
    line-height: 1.3;
    padding-left: .5em;
    white-space: nowrap;
    text-align: right;
    width: 1px;
}

.uabb-semi-progress-before {
    float: left;
}

.uabb-semi-progress-after {
    float: right;
}

.uabb-progress-title {
	/*padding: 10px;*/
    line-height: 1.3;
    text-align: left;
    text-transform: uppercase;
   	margin: 0 !important;
}

.uabb-progress-box {
	position: relative;
    width: 100%;
    height: 100%;
}

.uabb-progress-bar {
	position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

.uabb-layout-vertical .uabb-progress-bar {
    height: 0;
}

.uabb-progress-bar-style-style3 .uabb-progress-box .uabb-progress-info,
.uabb-progress-bar-style-style4 .uabb-progress-box .uabb-progress-info {
    position: relative;
    height: 100%;
}

.uabb-progress-bar-style-style3 .uabb-progress-value {
    text-align: center;
}

.uabb-layout-horizontal.uabb-progress-bar-style-style2 .uabb-progress-bar,
.uabb-layout-horizontal.uabb-progress-bar-style-style1 .uabb-progress-bar {
    height: 100%;
}


.fl-node-cjpkzlnmdt5f .uabb-pb-list{
	text-align: center;
}

.fl-node-cjpkzlnmdt5f .uabb-pb-list li {
	display: inline-block;

			margin: 0 5px 30px 5px;
				width: 200px;
		max-width: 100%;
	}

	
.fl-node-cjpkzlnmdt5f .uabb-progress-wrap {
	overflow: hidden;
}


.fl-node-cjpkzlnmdt5f .uabb-progress-title {
	color: rgb(255, 255, 255);
	padding: 10px 0;}
.fl-node-cjpkzlnmdt5f .uabb-ba-text {
	color: #000000;
}
.fl-node-cjpkzlnmdt5f .uabb-progress-value,
.fl-node-cjpkzlnmdt5f .uabb-percent-counter {
	color: #000000;
	padding: 10px;}


.fl-node-cjpkzlnmdt5f .uabb-progress-bar-0 .uabb-progress-wrap {
	background: rgba(0, 0, 0, 0);
}

			
.fl-node-cjpkzlnmdt5f .uabb-layout-vertical.uabb-progress-bar-0 .uabb-progress-bar {
	width: 100%;
						background-color: #c27258;
		background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		-webkit-background-size: 40px 40px;

		background-size: 40px 40px;

	}

				.fl-node-cjpkzlnmdt5f .uabb-progress-bar-1 .uabb-progress-wrap {
	background: rgba(0, 0, 0, 0);
}

			
.fl-node-cjpkzlnmdt5f .uabb-layout-vertical.uabb-progress-bar-1 .uabb-progress-bar {
	width: 100%;
						background-color: #c27258;
		background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		-webkit-background-size: 40px 40px;

		background-size: 40px 40px;

	}

				.fl-node-cjpkzlnmdt5f .uabb-progress-bar-wrapper.uabb-layout-circular {
	max-width: 300px;
	max-height: 300px;
}

.fl-node-cjpkzlnmdt5f .uabb-progress-bar-wrapper.uabb-layout-semi-circular {
	max-width: 300px;
	max-height: 150px;
}

.fl-node-cjpkzlnmdt5f .uabb-layout-vertical.uabb-progress-bar-style-style3 .uabb-progress-title {
	text-align: center;
}

.fl-node-cjpkzlnmdt5f .uabb-layout-vertical .uabb-progress-wrap {
	height: 400px;
}

.fl-node-cjpkzlnmdt5f .uabb-layout-horizontal.uabb-progress-bar-style-style2 .uabb-progress-box,
.fl-node-cjpkzlnmdt5f .uabb-layout-horizontal.uabb-progress-bar-style-style1 .uabb-progress-box {
	height: 20px;
}

.fl-node-cjpkzlnmdt5f .uabb-layout-horizontal.uabb-progress-bar-style-style4 .uabb-progress-box .uabb-progress-info {
	width: 100%;
}

	@media ( max-width: 1000px ) {
	
	
	
			}

	@media ( max-width: 768px ) {

	
	
		}
	 .fl-node-cjpkzlnmdt5f > .fl-module-content {
	margin-top:0px;
}
@media ( max-width: 768px ) {
 .fl-node-cjpkzlnmdt5f.fl-module > .fl-module-content {
	margin-right:0px;
	margin-bottom:-20px;
	margin-left:0px;
}
}


.fl-node-r43kwe8d76yx .uabb-pb-list{
	text-align: center;
}

.fl-node-r43kwe8d76yx .uabb-pb-list li {
	display: inline-block;

			margin: 0 5px 30px 5px;
				width: 200px;
		max-width: 100%;
	}

	
.fl-node-r43kwe8d76yx .uabb-progress-wrap {
	overflow: hidden;
}


.fl-node-r43kwe8d76yx .uabb-progress-title {
	color: rgb(255, 255, 255);
	padding: 10px 0;}
.fl-node-r43kwe8d76yx .uabb-ba-text {
	color: #000000;
}
.fl-node-r43kwe8d76yx .uabb-progress-value,
.fl-node-r43kwe8d76yx .uabb-percent-counter {
	color: #000000;
	padding: 10px;}


.fl-node-r43kwe8d76yx .uabb-progress-bar-0 .uabb-progress-wrap {
	background: rgba(0, 0, 0, 0);
}

			
.fl-node-r43kwe8d76yx .uabb-layout-vertical.uabb-progress-bar-0 .uabb-progress-bar {
	width: 100%;
						background-color: #AEC07C;
		background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		-webkit-background-size: 40px 40px;

		background-size: 40px 40px;

	}

				.fl-node-r43kwe8d76yx .uabb-progress-bar-1 .uabb-progress-wrap {
	background: rgba(0, 0, 0, 0);
}

			
.fl-node-r43kwe8d76yx .uabb-layout-vertical.uabb-progress-bar-1 .uabb-progress-bar {
	width: 100%;
						background-color: #AEC07C;
		background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		-webkit-background-size: 40px 40px;

		background-size: 40px 40px;

	}

				.fl-node-r43kwe8d76yx .uabb-progress-bar-wrapper.uabb-layout-circular {
	max-width: 300px;
	max-height: 300px;
}

.fl-node-r43kwe8d76yx .uabb-progress-bar-wrapper.uabb-layout-semi-circular {
	max-width: 300px;
	max-height: 150px;
}

.fl-node-r43kwe8d76yx .uabb-layout-vertical.uabb-progress-bar-style-style3 .uabb-progress-title {
	text-align: center;
}

.fl-node-r43kwe8d76yx .uabb-layout-vertical .uabb-progress-wrap {
	height: 400px;
}

.fl-node-r43kwe8d76yx .uabb-layout-horizontal.uabb-progress-bar-style-style2 .uabb-progress-box,
.fl-node-r43kwe8d76yx .uabb-layout-horizontal.uabb-progress-bar-style-style1 .uabb-progress-box {
	height: 20px;
}

.fl-node-r43kwe8d76yx .uabb-layout-horizontal.uabb-progress-bar-style-style4 .uabb-progress-box .uabb-progress-info {
	width: 100%;
}

	@media ( max-width: 1000px ) {
	
	
	
			}

	@media ( max-width: 768px ) {

	
	
		}
	 .fl-node-r43kwe8d76yx > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-r43kwe8d76yx.fl-module > .fl-module-content {
	margin-bottom:-20px;
	margin-left:0px;
}
}


.fl-node-5e30g98umfiq .uabb-pb-list{
	text-align: center;
}

.fl-node-5e30g98umfiq .uabb-pb-list li {
	display: inline-block;

			margin: 0 5px 30px 5px;
				width: 200px;
		max-width: 100%;
	}

	
.fl-node-5e30g98umfiq .uabb-progress-wrap {
	overflow: hidden;
}


.fl-node-5e30g98umfiq .uabb-progress-title {
	color: rgb(255, 255, 255);
	padding: 10px 0;}
.fl-node-5e30g98umfiq .uabb-ba-text {
	color: #000000;
}
.fl-node-5e30g98umfiq .uabb-progress-value,
.fl-node-5e30g98umfiq .uabb-percent-counter {
	color: #000000;
	padding: 10px;}


.fl-node-5e30g98umfiq .uabb-progress-bar-0 .uabb-progress-wrap {
	background: rgba(0, 0, 0, 0);
}

			
.fl-node-5e30g98umfiq .uabb-layout-vertical.uabb-progress-bar-0 .uabb-progress-bar {
	width: 100%;
						background-color: #b1dae3;
		background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		-webkit-background-size: 40px 40px;

		background-size: 40px 40px;

	}

				.fl-node-5e30g98umfiq .uabb-progress-bar-1 .uabb-progress-wrap {
	background: rgba(0, 0, 0, 0);
}

			
.fl-node-5e30g98umfiq .uabb-layout-vertical.uabb-progress-bar-1 .uabb-progress-bar {
	width: 100%;
						background-color: #b1dae3;
		background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		-webkit-background-size: 40px 40px;

		background-size: 40px 40px;

	}

				.fl-node-5e30g98umfiq .uabb-progress-bar-wrapper.uabb-layout-circular {
	max-width: 300px;
	max-height: 300px;
}

.fl-node-5e30g98umfiq .uabb-progress-bar-wrapper.uabb-layout-semi-circular {
	max-width: 300px;
	max-height: 150px;
}

.fl-node-5e30g98umfiq .uabb-layout-vertical.uabb-progress-bar-style-style3 .uabb-progress-title {
	text-align: center;
}

.fl-node-5e30g98umfiq .uabb-layout-vertical .uabb-progress-wrap {
	height: 400px;
}

.fl-node-5e30g98umfiq .uabb-layout-horizontal.uabb-progress-bar-style-style2 .uabb-progress-box,
.fl-node-5e30g98umfiq .uabb-layout-horizontal.uabb-progress-bar-style-style1 .uabb-progress-box {
	height: 20px;
}

.fl-node-5e30g98umfiq .uabb-layout-horizontal.uabb-progress-bar-style-style4 .uabb-progress-box .uabb-progress-info {
	width: 100%;
}

	@media ( max-width: 1000px ) {
	
	
	
			}

	@media ( max-width: 768px ) {

	
	
		}
	 .fl-node-5e30g98umfiq > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-5e30g98umfiq.fl-module > .fl-module-content {
	margin-bottom:-20px;
}
}

div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-7f24vwmjnqk5 .pp-heading-content {
	text-align: left;
}

div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading {
		}

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


div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100%;
			border-style: solid;
			border-color: #b1dae3;
			border-bottom-width: 3px;
	}

div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100%;
			border-style: solid;
			border-color: #b1dae3;
			border-bottom-width: 3px;
	}

div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100%;
			border-bottom-style: solid;
			border-bottom-color: #b1dae3;
			border-bottom-width: 3px;
	}

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


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

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

div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100%;
			border-style: solid;
			border-color: #b1dae3;
			border-bottom-width: 3px;
	}

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

div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 3px;
			border-bottom-color: #b1dae3;
			width: 100%;
			float: left;
	}

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


div.fl-node-7f24vwmjnqk5 .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-7f24vwmjnqk5 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-7f24vwmjnqk5 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading .heading-title {
	font-size: 26px;
}
div.fl-node-7f24vwmjnqk5 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-7f24vwmjnqk5 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-7f24vwmjnqk5 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-7f24vwmjnqk5 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-7f24vwmjnqk5 .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-7f24vwmjnqk5 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-7f24vwmjnqk5 .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
 .fl-node-7f24vwmjnqk5 > .fl-module-content {
	margin-top:20px;
	margin-bottom:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-7f24vwmjnqk5.fl-module > .fl-module-content {
	margin-left:10px;
}
}


.fl-node-2j54dkonu8z0 .uabb-pb-list{
	text-align: center;
}

.fl-node-2j54dkonu8z0 .uabb-pb-list li {
	display: inline-block;

			margin: 0 5px 30px 5px;
				width: 200px;
		max-width: 100%;
	}

	
.fl-node-2j54dkonu8z0 .uabb-progress-wrap {
	overflow: hidden;
}


.fl-node-2j54dkonu8z0 .uabb-progress-title {
	color: rgb(255, 255, 255);
	padding: 10px 0;}
.fl-node-2j54dkonu8z0 .uabb-ba-text {
	color: #000000;
}
.fl-node-2j54dkonu8z0 .uabb-progress-value,
.fl-node-2j54dkonu8z0 .uabb-percent-counter {
	color: #000000;
	padding: 10px;}


.fl-node-2j54dkonu8z0 .uabb-progress-bar-0 .uabb-progress-wrap {
	background: rgba(0, 0, 0, 0);
}

			
.fl-node-2j54dkonu8z0 .uabb-layout-vertical.uabb-progress-bar-0 .uabb-progress-bar {
	width: 100%;
						background-color: #c27258;
		background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		-webkit-background-size: 40px 40px;

		background-size: 40px 40px;

	}

				.fl-node-2j54dkonu8z0 .uabb-progress-bar-1 .uabb-progress-wrap {
	background: rgba(0, 0, 0, 0);
}

			
.fl-node-2j54dkonu8z0 .uabb-layout-vertical.uabb-progress-bar-1 .uabb-progress-bar {
	width: 100%;
						background-color: #c27258;
		background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		-webkit-background-size: 40px 40px;

		background-size: 40px 40px;

	}

				.fl-node-2j54dkonu8z0 .uabb-progress-bar-wrapper.uabb-layout-circular {
	max-width: 300px;
	max-height: 300px;
}

.fl-node-2j54dkonu8z0 .uabb-progress-bar-wrapper.uabb-layout-semi-circular {
	max-width: 300px;
	max-height: 150px;
}

.fl-node-2j54dkonu8z0 .uabb-layout-vertical.uabb-progress-bar-style-style3 .uabb-progress-title {
	text-align: center;
}

.fl-node-2j54dkonu8z0 .uabb-layout-vertical .uabb-progress-wrap {
	height: 400px;
}

.fl-node-2j54dkonu8z0 .uabb-layout-horizontal.uabb-progress-bar-style-style2 .uabb-progress-box,
.fl-node-2j54dkonu8z0 .uabb-layout-horizontal.uabb-progress-bar-style-style1 .uabb-progress-box {
	height: 20px;
}

.fl-node-2j54dkonu8z0 .uabb-layout-horizontal.uabb-progress-bar-style-style4 .uabb-progress-box .uabb-progress-info {
	width: 100%;
}

	@media ( max-width: 1000px ) {
	
	
	
			}

	@media ( max-width: 768px ) {

	
	
		}
	 .fl-node-2j54dkonu8z0 > .fl-module-content {
	margin-top:0px;
}
@media ( max-width: 768px ) {
 .fl-node-2j54dkonu8z0.fl-module > .fl-module-content {
	margin-right:0px;
	margin-bottom:-20px;
	margin-left:0px;
}
}


.fl-node-m7kb528cj01l .uabb-pb-list{
	text-align: center;
}

.fl-node-m7kb528cj01l .uabb-pb-list li {
	display: inline-block;

			margin: 0 5px 30px 5px;
				width: 200px;
		max-width: 100%;
	}

	
.fl-node-m7kb528cj01l .uabb-progress-wrap {
	overflow: hidden;
}


.fl-node-m7kb528cj01l .uabb-progress-title {
	color: rgb(255, 255, 255);
	padding: 10px 0;}
.fl-node-m7kb528cj01l .uabb-ba-text {
	color: #000000;
}
.fl-node-m7kb528cj01l .uabb-progress-value,
.fl-node-m7kb528cj01l .uabb-percent-counter {
	color: #000000;
	padding: 10px;}


.fl-node-m7kb528cj01l .uabb-progress-bar-0 .uabb-progress-wrap {
	background: rgba(0, 0, 0, 0);
}

			
.fl-node-m7kb528cj01l .uabb-layout-vertical.uabb-progress-bar-0 .uabb-progress-bar {
	width: 100%;
						background-color: #AEC07C;
		background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		-webkit-background-size: 40px 40px;

		background-size: 40px 40px;

	}

				.fl-node-m7kb528cj01l .uabb-progress-bar-1 .uabb-progress-wrap {
	background: rgba(0, 0, 0, 0);
}

			
.fl-node-m7kb528cj01l .uabb-layout-vertical.uabb-progress-bar-1 .uabb-progress-bar {
	width: 100%;
						background-color: #AEC07C;
		background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		-webkit-background-size: 40px 40px;

		background-size: 40px 40px;

	}

				.fl-node-m7kb528cj01l .uabb-progress-bar-wrapper.uabb-layout-circular {
	max-width: 300px;
	max-height: 300px;
}

.fl-node-m7kb528cj01l .uabb-progress-bar-wrapper.uabb-layout-semi-circular {
	max-width: 300px;
	max-height: 150px;
}

.fl-node-m7kb528cj01l .uabb-layout-vertical.uabb-progress-bar-style-style3 .uabb-progress-title {
	text-align: center;
}

.fl-node-m7kb528cj01l .uabb-layout-vertical .uabb-progress-wrap {
	height: 400px;
}

.fl-node-m7kb528cj01l .uabb-layout-horizontal.uabb-progress-bar-style-style2 .uabb-progress-box,
.fl-node-m7kb528cj01l .uabb-layout-horizontal.uabb-progress-bar-style-style1 .uabb-progress-box {
	height: 20px;
}

.fl-node-m7kb528cj01l .uabb-layout-horizontal.uabb-progress-bar-style-style4 .uabb-progress-box .uabb-progress-info {
	width: 100%;
}

	@media ( max-width: 1000px ) {
	
	
	
			}

	@media ( max-width: 768px ) {

	
	
		}
	 .fl-node-m7kb528cj01l > .fl-module-content {
	margin-top:0px;
}
@media ( max-width: 768px ) {
 .fl-node-m7kb528cj01l.fl-module > .fl-module-content {
	margin-right:0px;
	margin-bottom:-20px;
	margin-left:0px;
}
}


.fl-node-3nvt7ij12uzq .uabb-pb-list{
	text-align: center;
}

.fl-node-3nvt7ij12uzq .uabb-pb-list li {
	display: inline-block;

			margin: 0 5px 30px 5px;
				width: 200px;
		max-width: 100%;
	}

	
.fl-node-3nvt7ij12uzq .uabb-progress-wrap {
	overflow: hidden;
}


.fl-node-3nvt7ij12uzq .uabb-progress-title {
	color: rgb(255, 255, 255);
	padding: 10px 0;}
.fl-node-3nvt7ij12uzq .uabb-ba-text {
	color: #000000;
}
.fl-node-3nvt7ij12uzq .uabb-progress-value,
.fl-node-3nvt7ij12uzq .uabb-percent-counter {
	color: #000000;
	padding: 10px;}


.fl-node-3nvt7ij12uzq .uabb-progress-bar-0 .uabb-progress-wrap {
	background: rgba(0, 0, 0, 0);
}

			
.fl-node-3nvt7ij12uzq .uabb-layout-vertical.uabb-progress-bar-0 .uabb-progress-bar {
	width: 100%;
						background-color: #b1dae3;
		background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		-webkit-background-size: 40px 40px;

		background-size: 40px 40px;

	}

				.fl-node-3nvt7ij12uzq .uabb-progress-bar-1 .uabb-progress-wrap {
	background: rgba(0, 0, 0, 0);
}

			
.fl-node-3nvt7ij12uzq .uabb-layout-vertical.uabb-progress-bar-1 .uabb-progress-bar {
	width: 100%;
						background-color: #b1dae3;
		background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);

		-webkit-background-size: 40px 40px;

		background-size: 40px 40px;

	}

				.fl-node-3nvt7ij12uzq .uabb-progress-bar-wrapper.uabb-layout-circular {
	max-width: 300px;
	max-height: 300px;
}

.fl-node-3nvt7ij12uzq .uabb-progress-bar-wrapper.uabb-layout-semi-circular {
	max-width: 300px;
	max-height: 150px;
}

.fl-node-3nvt7ij12uzq .uabb-layout-vertical.uabb-progress-bar-style-style3 .uabb-progress-title {
	text-align: center;
}

.fl-node-3nvt7ij12uzq .uabb-layout-vertical .uabb-progress-wrap {
	height: 400px;
}

.fl-node-3nvt7ij12uzq .uabb-layout-horizontal.uabb-progress-bar-style-style2 .uabb-progress-box,
.fl-node-3nvt7ij12uzq .uabb-layout-horizontal.uabb-progress-bar-style-style1 .uabb-progress-box {
	height: 20px;
}

.fl-node-3nvt7ij12uzq .uabb-layout-horizontal.uabb-progress-bar-style-style4 .uabb-progress-box .uabb-progress-info {
	width: 100%;
}

	@media ( max-width: 1000px ) {
	
	
	
			}

	@media ( max-width: 768px ) {

	
	
		}
	 .fl-node-3nvt7ij12uzq > .fl-module-content {
	margin-top:0px;
}
@media ( max-width: 768px ) {
 .fl-node-3nvt7ij12uzq.fl-module > .fl-module-content {
	margin-right:0px;
	margin-bottom:-20px;
	margin-left:0px;
}
}
/* Global Number Counter CSS */
/* Alignment */
		.fl-node-jkxo79854inw .fl-module-content {
			text-align: center;
		}
		

/* Number Text Typography */


	.fl-node-jkxo79854inw h2.uabb-number-string {
					color: rgb(255, 255, 255);
			}

/* Before After Text Typography */


	.fl-node-jkxo79854inw .uabb-number-before-text,
	.fl-node-jkxo79854inw .uabb-number-after-text,
	.fl-node-jkxo79854inw .uabb-counter-before-text,
	.fl-node-jkxo79854inw .uabb-counter-after-text {
					color: #b1dae3;
			}

/* Custom Spacing Style Css */
	
/* Icon Margin */
/* Image Margin */


/* Icon Image Render */


/* Render Seperator */



/* Calculation Width */


/* Responsive Typography */

	 .fl-node-ognxupteyvas.fl-module-rich-text {
	margin-top:8px;
}

.fl-node-rzgjpc0q4xnb .fl-button-group-layout-vertical .fl-button-group-buttons .fl-button:is(a, button),
.fl-node-rzgjpc0q4xnb .fl-button-group-layout-horizontal .fl-button-group-buttons .fl-button:is(a, button) {
	width: 200px;
}
.fl-node-rzgjpc0q4xnb .fl-button-group-layout-horizontal .fl-button-group-buttons {
		justify-content: flex-start}



.fl-builder-content .fl-node-rzgjpc0q4xnb .fl-button-group .fl-button-group-buttons .fl-button:is(a, button):hover,
.fl-builder-content .fl-node-rzgjpc0q4xnb .fl-button-group .fl-button-group-buttons .fl-button:is(a, button):focus {

	background: #f58220;

	}
			#fl-button-group-button-rzgjpc0q4xnb-0 .fl-button:is(a, button) > span,
		#fl-button-group-button-rzgjpc0q4xnb-0 .fl-button:is(a, button) > i {
			color: rgb(255, 255, 255);
		}
				#fl-button-group-button-rzgjpc0q4xnb-0 .fl-button:is(a, button):hover > span,
		#fl-button-group-button-rzgjpc0q4xnb-0 .fl-button:is(a, button):focus > span,
		#fl-button-group-button-rzgjpc0q4xnb-0 .fl-button:is(a, button):hover > i,
		#fl-button-group-button-rzgjpc0q4xnb-0 .fl-button:is(a, button):focus > i {
			color: #000000;
		}
		
	#fl-button-group-button-rzgjpc0q4xnb-0 .fl-button:is(a, button) {
									background: rgba(131,49,74,0);
					
			}

			#fl-button-group-button-rzgjpc0q4xnb-0 .fl-button:is(a, button):hover,
		#fl-button-group-button-rzgjpc0q4xnb-0 .fl-button:is(a, button):focus {
			background: #f58220;
					}
				#fl-button-group-button-rzgjpc0q4xnb-0 .fl-button:is(a, button):hover {
			border-color: #f58220;
		}
			.fl-builder-content .fl-node-rzgjpc0q4xnb .fl-button,
	.fl-builder-content .fl-node-rzgjpc0q4xnb .fl-button * {
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
	}
.fl-node-rzgjpc0q4xnb .fl-button-group-layout-vertical .fl-button-group-buttons .fl-button-group-button .fl-button-wrap {
	text-align: left;
}
.fl-node-rzgjpc0q4xnb .fl-button-group-layout-horizontal .fl-button-group-buttons {
	justify-content: flex-start;
}
.fl-builder-content .fl-node-rzgjpc0q4xnb .fl-button-group .fl-button-group-buttons .fl-button-group-button {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-builder-content .fl-node-rzgjpc0q4xnb .fl-button-group .fl-button-group-buttons .fl-button:is(a, button) {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #f3f3f3;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
.fl-builder-content .fl-node-rzgjpc0q4xnb .fl-button-group .fl-button-group-buttons .fl-button:is(a, button):hover {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #979797;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
#fl-button-group-button-rzgjpc0q4xnb-0 .fl-button:is(a, button) {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	background-image: linear-gradient(180deg, #F15732 0%, #643015 100%);
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #f58220;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
#fl-button-group-button-rzgjpc0q4xnb-0 .fl-button:is(a, button), #fl-button-group-button-rzgjpc0q4xnb-0 a.fl-button:visited {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
 .fl-node-rzgjpc0q4xnb > .fl-module-content {
	margin-top:8px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:35px;
}
@media ( max-width: 1000px ) {
 .fl-node-rzgjpc0q4xnb.fl-module > .fl-module-content {
	margin-bottom:10px;
	margin-left:5px;
}
}
.fl-builder-content-8113 .fl-node-b0l3762ypuxw {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.fl-node-qrpc64xsa8fl .fl-button-group-layout-vertical .fl-button-group-buttons .fl-button:is(a, button),
.fl-node-qrpc64xsa8fl .fl-button-group-layout-horizontal .fl-button-group-buttons .fl-button:is(a, button) {
	width: 200px;
}
.fl-node-qrpc64xsa8fl .fl-button-group-layout-horizontal .fl-button-group-buttons {
		justify-content: flex-start}



.fl-builder-content .fl-node-qrpc64xsa8fl .fl-button-group .fl-button-group-buttons .fl-button:is(a, button):hover,
.fl-builder-content .fl-node-qrpc64xsa8fl .fl-button-group .fl-button-group-buttons .fl-button:is(a, button):focus {

	background: #f58220;

	}
			#fl-button-group-button-qrpc64xsa8fl-0 .fl-button:is(a, button) > span,
		#fl-button-group-button-qrpc64xsa8fl-0 .fl-button:is(a, button) > i {
			color: rgb(255, 255, 255);
		}
				#fl-button-group-button-qrpc64xsa8fl-0 .fl-button:is(a, button):hover > span,
		#fl-button-group-button-qrpc64xsa8fl-0 .fl-button:is(a, button):focus > span,
		#fl-button-group-button-qrpc64xsa8fl-0 .fl-button:is(a, button):hover > i,
		#fl-button-group-button-qrpc64xsa8fl-0 .fl-button:is(a, button):focus > i {
			color: #000000;
		}
		
	#fl-button-group-button-qrpc64xsa8fl-0 .fl-button:is(a, button) {
									background: rgba(131,49,74,0);
					
			}

			#fl-button-group-button-qrpc64xsa8fl-0 .fl-button:is(a, button):hover,
		#fl-button-group-button-qrpc64xsa8fl-0 .fl-button:is(a, button):focus {
			background: #f58220;
					}
				#fl-button-group-button-qrpc64xsa8fl-0 .fl-button:is(a, button):hover {
			border-color: #f58220;
		}
			.fl-builder-content .fl-node-qrpc64xsa8fl .fl-button,
	.fl-builder-content .fl-node-qrpc64xsa8fl .fl-button * {
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
	}
.fl-node-qrpc64xsa8fl .fl-button-group-layout-vertical .fl-button-group-buttons .fl-button-group-button .fl-button-wrap {
	text-align: left;
}
.fl-node-qrpc64xsa8fl .fl-button-group-layout-horizontal .fl-button-group-buttons {
	justify-content: flex-start;
}
.fl-builder-content .fl-node-qrpc64xsa8fl .fl-button-group .fl-button-group-buttons .fl-button-group-button {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-builder-content .fl-node-qrpc64xsa8fl .fl-button-group .fl-button-group-buttons .fl-button:is(a, button) {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #f3f3f3;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
.fl-builder-content .fl-node-qrpc64xsa8fl .fl-button-group .fl-button-group-buttons .fl-button:is(a, button):hover {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #979797;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
#fl-button-group-button-qrpc64xsa8fl-0 .fl-button:is(a, button) {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	background-image: linear-gradient(180deg, #F15732 0%, #643015 100%);
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #f58220;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
#fl-button-group-button-qrpc64xsa8fl-0 .fl-button:is(a, button), #fl-button-group-button-qrpc64xsa8fl-0 a.fl-button:visited {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
 .fl-node-qrpc64xsa8fl > .fl-module-content {
	margin-top:8px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:35px;
}
@media ( max-width: 1000px ) {
 .fl-node-qrpc64xsa8fl.fl-module > .fl-module-content {
	margin-bottom:10px;
	margin-left:5px;
}
}
.fl-builder-content-8113 .fl-node-yz6v7k8hgcl4 {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-builder-content-8113 .fl-node-rzfagqms8ndk {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.fl-node-g8sj9om0x3qk .fl-button-group-layout-vertical .fl-button-group-buttons .fl-button:is(a, button),
.fl-node-g8sj9om0x3qk .fl-button-group-layout-horizontal .fl-button-group-buttons .fl-button:is(a, button) {
	width: 200px;
}
.fl-node-g8sj9om0x3qk .fl-button-group-layout-horizontal .fl-button-group-buttons {
		justify-content: flex-start}



.fl-builder-content .fl-node-g8sj9om0x3qk .fl-button-group .fl-button-group-buttons .fl-button:is(a, button):hover,
.fl-builder-content .fl-node-g8sj9om0x3qk .fl-button-group .fl-button-group-buttons .fl-button:is(a, button):focus {

	background: #f58220;

	}
			#fl-button-group-button-g8sj9om0x3qk-0 .fl-button:is(a, button) > span,
		#fl-button-group-button-g8sj9om0x3qk-0 .fl-button:is(a, button) > i {
			color: rgb(255, 255, 255);
		}
				#fl-button-group-button-g8sj9om0x3qk-0 .fl-button:is(a, button):hover > span,
		#fl-button-group-button-g8sj9om0x3qk-0 .fl-button:is(a, button):focus > span,
		#fl-button-group-button-g8sj9om0x3qk-0 .fl-button:is(a, button):hover > i,
		#fl-button-group-button-g8sj9om0x3qk-0 .fl-button:is(a, button):focus > i {
			color: #000000;
		}
		
	#fl-button-group-button-g8sj9om0x3qk-0 .fl-button:is(a, button) {
									background: rgba(131,49,74,0);
					
			}

			#fl-button-group-button-g8sj9om0x3qk-0 .fl-button:is(a, button):hover,
		#fl-button-group-button-g8sj9om0x3qk-0 .fl-button:is(a, button):focus {
			background: #f58220;
					}
				#fl-button-group-button-g8sj9om0x3qk-0 .fl-button:is(a, button):hover {
			border-color: #f58220;
		}
			.fl-builder-content .fl-node-g8sj9om0x3qk .fl-button,
	.fl-builder-content .fl-node-g8sj9om0x3qk .fl-button * {
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
	}
.fl-node-g8sj9om0x3qk .fl-button-group-layout-vertical .fl-button-group-buttons .fl-button-group-button .fl-button-wrap {
	text-align: left;
}
.fl-node-g8sj9om0x3qk .fl-button-group-layout-horizontal .fl-button-group-buttons {
	justify-content: flex-start;
}
.fl-builder-content .fl-node-g8sj9om0x3qk .fl-button-group .fl-button-group-buttons .fl-button-group-button {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-builder-content .fl-node-g8sj9om0x3qk .fl-button-group .fl-button-group-buttons .fl-button:is(a, button) {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #f3f3f3;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
.fl-builder-content .fl-node-g8sj9om0x3qk .fl-button-group .fl-button-group-buttons .fl-button:is(a, button):hover {
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #979797;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
}
#fl-button-group-button-g8sj9om0x3qk-0 .fl-button:is(a, button) {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	background-image: linear-gradient(180deg, #F15732 0%, #643015 100%);
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-color: #f58220;
	border-top-width: 3px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 3px;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
#fl-button-group-button-g8sj9om0x3qk-0 .fl-button:is(a, button), #fl-button-group-button-g8sj9om0x3qk-0 a.fl-button:visited {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
 .fl-node-g8sj9om0x3qk > .fl-module-content {
	margin-top:8px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:35px;
}
@media ( max-width: 1000px ) {
 .fl-node-g8sj9om0x3qk.fl-module > .fl-module-content {
	margin-bottom:10px;
	margin-left:5px;
}
}
.fl-builder-content-8113 .fl-node-tzo9jw4kp3if {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-template-rows: repeat(1,1fr);
	flex-direction: row;
	align-items: center;
	row-gap: 10px;
	column-gap: 20px;
}
@media(max-width: 1000px) {
	.fl-builder-content-8113 .fl-node-tzo9jw4kp3if {
		display: flex;
		flex-direction: column;
	}
}
 .fl-node-tzo9jw4kp3if.fl-module-box {
	margin-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-tzo9jw4kp3if.fl-module-box.fl-module {
	margin-left:20px;
}
}
@media ( max-width: 1000px ) {
 .fl-node-tzo9jw4kp3if.fl-module-box.fl-module {
	margin-left:0px;
}
}

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

div.fl-node-svdlrpmfjn3q .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgb(255, 255, 255);
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-sub-heading,
div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

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

div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-svdlrpmfjn3q .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-svdlrpmfjn3q .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


@media only screen and (max-width: 1000px) {
	div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-svdlrpmfjn3q .pp-heading-content {
				text-align: left;
			}
	div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading-separator .pp-separator-line {
												float: left;
									}
	div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading-prefix {
							padding-left: 0 !important;
							}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-svdlrpmfjn3q .pp-heading-content {
				text-align: ;
			}
	div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading-prefix {
	font-weight: 500;
	font-size: 24px;
}
div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading .heading-title {
	font-size: 45px;
	line-height: 1.15em;
}
div.fl-node-svdlrpmfjn3q div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-svdlrpmfjn3q div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-svdlrpmfjn3q div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-svdlrpmfjn3q div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-sub-heading, div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-sub-heading p {
	font-size: 19px;
}
div.fl-node-svdlrpmfjn3q .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-svdlrpmfjn3q .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading .heading-title {
		font-size: 44px;
	}
	div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-sub-heading, div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
@media(max-width: 1000px) {
	div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
}
@media(max-width: 768px) {
	div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-heading .heading-title {
		font-size: 38px;
	}
	div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-sub-heading, div.fl-node-svdlrpmfjn3q .pp-heading-content .pp-sub-heading p {
		font-size: 16px;
	}
}
 .fl-node-svdlrpmfjn3q > .fl-module-content {
	margin-right:20px;
	margin-bottom:0px;
	margin-left:20px;
}
@media ( max-width: 1000px ) {
 .fl-node-svdlrpmfjn3q.fl-module > .fl-module-content {
	margin-right:20px;
	margin-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-svdlrpmfjn3q.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

	.fl-builder-content .fl-node-gvfhxcuio7a6 .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-gvfhxcuio7a6 .fl-module-content .fl-number-string {
		color: #c27258;
	}

	.fl-builder-content .fl-node-gvfhxcuio7a6 .fl-module-content .fl-number-before-text,
	.fl-builder-content .fl-node-gvfhxcuio7a6 .fl-module-content .fl-number-after-text {
		color: rgb(255, 255, 255);
	}



.fl-node-gvfhxcuio7a6 .fl-number .fl-number-text .fl-number-before-text, .fl-node-gvfhxcuio7a6 .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
}
.fl-node-gvfhxcuio7a6 .fl-number .fl-number-text .fl-number-string, .fl-node-gvfhxcuio7a6 .fl-number .fl-number-text .fl-number-string span {
	font-weight: 600;
	font-size: 26px;
}
@media(max-width: 768px) {
	.fl-node-gvfhxcuio7a6 .fl-number .fl-number-text .fl-number-before-text, .fl-node-gvfhxcuio7a6 .fl-number .fl-number-text .fl-number-after-text {
		font-size: 16px;
	}
	.fl-node-gvfhxcuio7a6 .fl-number .fl-number-text .fl-number-string, .fl-node-gvfhxcuio7a6 .fl-number .fl-number-text .fl-number-string span {
		font-size: 20px;
	}
}
 .fl-node-gvfhxcuio7a6 > .fl-module-content {
	margin-top:0px;
}

	.fl-builder-content .fl-node-lfx95wkzmus6 .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-lfx95wkzmus6 .fl-module-content .fl-number-string {
		color: #AEC07C;
	}

	.fl-builder-content .fl-node-lfx95wkzmus6 .fl-module-content .fl-number-before-text,
	.fl-builder-content .fl-node-lfx95wkzmus6 .fl-module-content .fl-number-after-text {
		color: rgb(255, 255, 255);
	}



.fl-node-lfx95wkzmus6 .fl-number .fl-number-text .fl-number-before-text, .fl-node-lfx95wkzmus6 .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
}
.fl-node-lfx95wkzmus6 .fl-number .fl-number-text .fl-number-string, .fl-node-lfx95wkzmus6 .fl-number .fl-number-text .fl-number-string span {
	font-weight: 600;
	font-size: 26px;
}
@media(max-width: 768px) {
	.fl-node-lfx95wkzmus6 .fl-number .fl-number-text .fl-number-before-text, .fl-node-lfx95wkzmus6 .fl-number .fl-number-text .fl-number-after-text {
		font-size: 16px;
	}
	.fl-node-lfx95wkzmus6 .fl-number .fl-number-text .fl-number-string, .fl-node-lfx95wkzmus6 .fl-number .fl-number-text .fl-number-string span {
		font-size: 20px;
	}
}
 .fl-node-lfx95wkzmus6 > .fl-module-content {
	margin-top:0px;
}
@media ( max-width: 768px ) {
 .fl-node-lfx95wkzmus6.fl-module > .fl-module-content {
	margin-left:20px;
}
}

	.fl-builder-content .fl-node-bh63vketl0yg .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-bh63vketl0yg .fl-module-content .fl-number-string {
		color: #b1dae3;
	}

	.fl-builder-content .fl-node-bh63vketl0yg .fl-module-content .fl-number-before-text,
	.fl-builder-content .fl-node-bh63vketl0yg .fl-module-content .fl-number-after-text {
		color: rgb(255, 255, 255);
	}



.fl-node-bh63vketl0yg .fl-number .fl-number-text .fl-number-before-text, .fl-node-bh63vketl0yg .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
}
.fl-node-bh63vketl0yg .fl-number .fl-number-text .fl-number-string, .fl-node-bh63vketl0yg .fl-number .fl-number-text .fl-number-string span {
	font-weight: 600;
	font-size: 26px;
}
@media(max-width: 768px) {
	.fl-node-bh63vketl0yg .fl-number .fl-number-text .fl-number-before-text, .fl-node-bh63vketl0yg .fl-number .fl-number-text .fl-number-after-text {
		font-size: 16px;
	}
	.fl-node-bh63vketl0yg .fl-number .fl-number-text .fl-number-string, .fl-node-bh63vketl0yg .fl-number .fl-number-text .fl-number-string span {
		font-size: 20px;
	}
}
 .fl-node-bh63vketl0yg > .fl-module-content {
	margin-top:0px;
}
@media ( max-width: 768px ) {
 .fl-node-bh63vketl0yg.fl-module > .fl-module-content {
	margin-left:20px;
}
}

	.fl-builder-content .fl-node-yq9ld6c05stf .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-yq9ld6c05stf .fl-module-content .fl-number-string {
		color: #c27258;
	}

	.fl-builder-content .fl-node-yq9ld6c05stf .fl-module-content .fl-number-before-text,
	.fl-builder-content .fl-node-yq9ld6c05stf .fl-module-content .fl-number-after-text {
		color: rgb(255, 255, 255);
	}



.fl-node-yq9ld6c05stf .fl-number .fl-number-text .fl-number-before-text, .fl-node-yq9ld6c05stf .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
}
.fl-node-yq9ld6c05stf .fl-number .fl-number-text .fl-number-string, .fl-node-yq9ld6c05stf .fl-number .fl-number-text .fl-number-string span {
	font-weight: 600;
	font-size: 26px;
}
@media(max-width: 768px) {
	.fl-node-yq9ld6c05stf .fl-number .fl-number-text .fl-number-before-text, .fl-node-yq9ld6c05stf .fl-number .fl-number-text .fl-number-after-text {
		font-size: 16px;
	}
	.fl-node-yq9ld6c05stf .fl-number .fl-number-text .fl-number-string, .fl-node-yq9ld6c05stf .fl-number .fl-number-text .fl-number-string span {
		font-size: 20px;
	}
}
 .fl-node-yq9ld6c05stf > .fl-module-content {
	margin-top:0px;
}
@media ( max-width: 768px ) {
 .fl-node-yq9ld6c05stf.fl-module > .fl-module-content {
	margin-right:0px;
}
}

	.fl-builder-content .fl-node-pjhk9y2cla1s .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-pjhk9y2cla1s .fl-module-content .fl-number-string {
		color: #AEC07C;
	}

	.fl-builder-content .fl-node-pjhk9y2cla1s .fl-module-content .fl-number-before-text,
	.fl-builder-content .fl-node-pjhk9y2cla1s .fl-module-content .fl-number-after-text {
		color: rgb(255, 255, 255);
	}



.fl-node-pjhk9y2cla1s .fl-number .fl-number-text .fl-number-before-text, .fl-node-pjhk9y2cla1s .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
}
.fl-node-pjhk9y2cla1s .fl-number .fl-number-text .fl-number-string, .fl-node-pjhk9y2cla1s .fl-number .fl-number-text .fl-number-string span {
	font-weight: 600;
	font-size: 26px;
}
@media(max-width: 768px) {
	.fl-node-pjhk9y2cla1s .fl-number .fl-number-text .fl-number-before-text, .fl-node-pjhk9y2cla1s .fl-number .fl-number-text .fl-number-after-text {
		font-size: 16px;
	}
	.fl-node-pjhk9y2cla1s .fl-number .fl-number-text .fl-number-string, .fl-node-pjhk9y2cla1s .fl-number .fl-number-text .fl-number-string span {
		font-size: 20px;
	}
}
 .fl-node-pjhk9y2cla1s > .fl-module-content {
	margin-top:0px;
}
@media ( max-width: 768px ) {
 .fl-node-pjhk9y2cla1s.fl-module > .fl-module-content {
	margin-left:20px;
}
}

	.fl-builder-content .fl-node-1erto2zv87jl .fl-module-content .fl-number-int,
	.fl-builder-content .fl-node-1erto2zv87jl .fl-module-content .fl-number-string {
		color: #b1dae3;
	}

	.fl-builder-content .fl-node-1erto2zv87jl .fl-module-content .fl-number-before-text,
	.fl-builder-content .fl-node-1erto2zv87jl .fl-module-content .fl-number-after-text {
		color: rgb(255, 255, 255);
	}



.fl-node-1erto2zv87jl .fl-number .fl-number-text .fl-number-before-text, .fl-node-1erto2zv87jl .fl-number .fl-number-text .fl-number-after-text {
	font-size: 16px;
}
.fl-node-1erto2zv87jl .fl-number .fl-number-text .fl-number-string, .fl-node-1erto2zv87jl .fl-number .fl-number-text .fl-number-string span {
	font-weight: 600;
	font-size: 26px;
}
@media(max-width: 768px) {
	.fl-node-1erto2zv87jl .fl-number .fl-number-text .fl-number-before-text, .fl-node-1erto2zv87jl .fl-number .fl-number-text .fl-number-after-text {
		font-size: 16px;
	}
	.fl-node-1erto2zv87jl .fl-number .fl-number-text .fl-number-string, .fl-node-1erto2zv87jl .fl-number .fl-number-text .fl-number-string span {
		font-size: 20px;
	}
}
 .fl-node-1erto2zv87jl > .fl-module-content {
	margin-top:0px;
}
.pp-table-wrap .tablesaw-sortable .tablesaw-sortable-head button {
	background: none !important;
}

.pp-table-content thead {
	border: 0;
	background: none;
}

.pp-table-content thead tr th {
	font-size: 14px;
}

.pp-table-content thead tr:first-child th {
	font-family: inherit;
	text-shadow: none;
}

.pp-table-content tbody tr th,
.pp-table-content tbody tr td {
	font-size: 14px;
}

.pp-table-content .pp-table-row th[colspan] + .is-empty,
.pp-table-content .pp-table-row td[colspan] + .is-empty {
    display: none;
}

.pp-table-content th button,
.pp-table-content.tablesaw-sortable th.tablesaw-sortable-head button {
	box-shadow: none !important;
	padding: 0;
}

.pp-builder-message {
	padding: 10px;
	background-color: #ffeed5;
	font-family: monospace;
	font-size: 15px;
	border: 1px solid #ffd18c;
	color: #000 !important;
}
.pp-builder-message h4 {
	margin-top: 0;
	font-family: monospace;
	font-size: 18px;
	font-style: normal;
	color: #000 !important;
}.fl-node-1nqpi8mw46v5 .tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn {
	float: none !important;
}

.fl-node-1nqpi8mw46v5 .pp-table-content thead th,
.fl-node-1nqpi8mw46v5 .pp-table-content.tablesaw thead th,
.fl-node-1nqpi8mw46v5 .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head button {
    background: #44437a;
	border: 0;
}

.fl-node-1nqpi8mw46v5 .pp-table-content thead tr th,
.fl-node-1nqpi8mw46v5 .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head,
.fl-node-1nqpi8mw46v5 .pp-table-content.tablesaw-sortable tr:first-child th.tablesaw-sortable-head button {
    color: #ffffff;
}

.fl-node-1nqpi8mw46v5 .pp-table-content thead tr th {
	vertical-align: middle;
}





.fl-node-1nqpi8mw46v5 .pp-table-content tbody tr {
	background: #44437a;
	border-bottom: 0;
}

.fl-node-1nqpi8mw46v5 .pp-table-content tbody tr th,
.fl-node-1nqpi8mw46v5 .pp-table-content tbody tr td {
	vertical-align: middle;
	color: rgb(255, 255, 255);
}

.fl-node-1nqpi8mw46v5 .pp-table-content .pp-table-cell-inner {
	display: flex;
	align-items: center;
										}



.fl-node-1nqpi8mw46v5 .tablesaw-sortable .tablesaw-sortable-head button {
		text-align: ;
	}

.fl-node-1nqpi8mw46v5 .pp-table-content tbody tr:nth-child(odd) {
    background: #44437a;}

.fl-node-1nqpi8mw46v5 .pp-table-content tbody tr:nth-child(odd) th,
.fl-node-1nqpi8mw46v5 .pp-table-content tbody tr:nth-child(odd) td {
    color: rgb(255, 255, 255);}

.fl-node-1nqpi8mw46v5 .pp-table-content tbody tr:nth-child(even) {
    background: #44437a;}

.fl-node-1nqpi8mw46v5 .pp-table-content tbody tr:nth-child(even) th,
.fl-node-1nqpi8mw46v5 .pp-table-content tbody tr:nth-child(even) td {
    color: rgb(255, 255, 255);}

@media only screen and (max-width: 1000px) {
	.fl-node-1nqpi8mw46v5 .pp-table-content .pp-table-header-inner {
									}

	.fl-node-1nqpi8mw46v5 .pp-table-content .pp-table-cell-inner {
									}
}

@media only screen and (max-width: 768px) {
	.fl-node-1nqpi8mw46v5 .pp-table-content .pp-table-header-inner {
									}

	.fl-node-1nqpi8mw46v5 .pp-table-content .pp-table-cell-inner {
									}
}

@media only screen and (max-width: 639px) {
	.fl-node-1nqpi8mw46v5 .pp-table-content-cell-label {
									font-size: px;
									text-transform: ;
						}
}
.fl-node-1nqpi8mw46v5 .pp-table-content thead tr th,
						.fl-node-1nqpi8mw46v5 .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head,
						.fl-node-1nqpi8mw46v5 .pp-table-content.tablesaw-sortable tr:first-child th.tablesaw-sortable-head {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-size: 14px;
	text-transform: capitalize;
	font-style: italic;
}
.fl-node-1nqpi8mw46v5 .pp-table-content .pp-table-header-icon {
	margin-right: 10px;
}
.fl-node-1nqpi8mw46v5 .pp-table-content thead tr th, .fl-node-1nqpi8mw46v5 .pp-table-content.tablesaw thead th {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-1nqpi8mw46v5 .pp-table-content .pp-table-cell-icon {
	margin-right: 10px;
}
.fl-node-1nqpi8mw46v5 .pp-table-content tbody tr th, .fl-node-1nqpi8mw46v5 .pp-table-content tbody tr td {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-1nqpi8mw46v5 > .fl-module-content {
	margin-bottom:0px;
	margin-left:50px;
}
@media (max-width: 768px) { .fl-node-1nqpi8mw46v5 > .fl-module-content { margin-left:20px; } }/* Global Number Counter CSS */
/* Alignment */
		.fl-node-xpwhjastfvr9 .fl-module-content {
			text-align: center;
		}
		

/* Number Text Typography */


	.fl-node-xpwhjastfvr9 h2.uabb-number-string {
					color: rgb(255, 255, 255);
			}

/* Before After Text Typography */


	.fl-node-xpwhjastfvr9 .uabb-number-before-text,
	.fl-node-xpwhjastfvr9 .uabb-number-after-text,
	.fl-node-xpwhjastfvr9 .uabb-counter-before-text,
	.fl-node-xpwhjastfvr9 .uabb-counter-after-text {
					color: #b1dae3;
			}

/* Custom Spacing Style Css */
	
/* Icon Margin */
/* Image Margin */


/* Icon Image Render */


/* Render Seperator */



/* Calculation Width */


/* Responsive Typography */

	.fl-node-40ul5z8f23hy .pp-accordion-item {
		margin-bottom: 10px;
	}

 
.fl-node-40ul5z8f23hy .pp-accordion-item .pp-accordion-button {
			color: rgb(255, 255, 255);
		}

.fl-node-40ul5z8f23hy .pp-accordion-item .pp-accordion-button:hover,
.fl-node-40ul5z8f23hy .pp-accordion-item.pp-accordion-item-active .pp-accordion-button {
			color: rgb(255, 255, 255);
	}

.fl-node-40ul5z8f23hy .pp-accordion-item.pp-accordion-item-active .pp-accordion-button-icon,
.fl-node-40ul5z8f23hy .pp-accordion-item:hover .pp-accordion-button-icon {
	color: rgb(255, 255, 255);
}

.fl-node-40ul5z8f23hy .pp-accordion-item .pp-accordion-button-icon.pp-accordion-icon-right {
	padding-left: 15px;
}
.fl-node-40ul5z8f23hy .pp-accordion-item .pp-accordion-button-icon.pp-accordion-icon-left {
	padding-right: 15px;
}
 






.fl-node-40ul5z8f23hy .pp-accordion-item .pp-accordion-content {
			color: rgb(255, 255, 255);
							}

.fl-node-40ul5z8f23hy .pp-accordion-item .pp-accordion-button-icon {
	color: rgb(255, 255, 255);
}

.fl-node-40ul5z8f23hy .pp-accordion-item .pp-accordion-button-icon,
.fl-node-40ul5z8f23hy .pp-accordion-item .pp-accordion-button-icon:before {
	font-size: 14px;
}

.fl-node-40ul5z8f23hy .pp-accordion-item .pp-accordion-icon {
		font-size: 15px;
	width: 18.75px;
			color: rgb(255, 255, 255);
		}

.fl-node-40ul5z8f23hy .pp-accordion-item .pp-accordion-button:hover .pp-accordion-icon,
.fl-node-40ul5z8f23hy .pp-accordion-item.pp-accordion-item-active .pp-accordion-icon {
	color: rgb(255, 255, 255);
}

.fl-node-40ul5z8f23hy .pp-accordion-item .pp-accordion-icon:before {
	font-size: 15px;
}

										.fl-node-40ul5z8f23hy .pp-accordion-item .pp-accordion-button .pp-accordion-button-label {
	font-size: 18px;
}
@media(max-width: 768px) {
	.fl-node-40ul5z8f23hy .pp-accordion-item .pp-accordion-button .pp-accordion-button-label {
		font-size: 16px;
	}
	.fl-node-40ul5z8f23hy .pp-accordion-item .pp-accordion-content {
		font-size: 16px;
	}
}
 .fl-node-40ul5z8f23hy > .fl-module-content {
	margin-top:10px;
	margin-bottom:20px;
	margin-left:32px;
}
@media ( max-width: 1000px ) {
 .fl-node-40ul5z8f23hy.fl-module > .fl-module-content {
	margin-left:12px;
}
}
.fl-node-18perlac2fqx .tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn {
	float: none !important;
}

.fl-node-18perlac2fqx .pp-table-content thead th,
.fl-node-18perlac2fqx .pp-table-content.tablesaw thead th,
.fl-node-18perlac2fqx .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head button {
    background: #29592C;
	border: 0;
}

.fl-node-18perlac2fqx .pp-table-content thead tr th,
.fl-node-18perlac2fqx .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head,
.fl-node-18perlac2fqx .pp-table-content.tablesaw-sortable tr:first-child th.tablesaw-sortable-head button {
    color: #ffffff;
}

.fl-node-18perlac2fqx .pp-table-content thead tr th {
	vertical-align: middle;
}





.fl-node-18perlac2fqx .pp-table-content tbody tr {
	background: #29592C;
	border-bottom: 0;
}

.fl-node-18perlac2fqx .pp-table-content tbody tr th,
.fl-node-18perlac2fqx .pp-table-content tbody tr td {
	vertical-align: middle;
	color: rgb(255, 255, 255);
}

.fl-node-18perlac2fqx .pp-table-content .pp-table-cell-inner {
	display: flex;
	align-items: center;
										}



.fl-node-18perlac2fqx .tablesaw-sortable .tablesaw-sortable-head button {
		text-align: ;
	}

.fl-node-18perlac2fqx .pp-table-content tbody tr:nth-child(odd) {
    background: #29592C;}

.fl-node-18perlac2fqx .pp-table-content tbody tr:nth-child(odd) th,
.fl-node-18perlac2fqx .pp-table-content tbody tr:nth-child(odd) td {
    color: rgb(255, 255, 255);}

.fl-node-18perlac2fqx .pp-table-content tbody tr:nth-child(even) {
    background: #29592C;}

.fl-node-18perlac2fqx .pp-table-content tbody tr:nth-child(even) th,
.fl-node-18perlac2fqx .pp-table-content tbody tr:nth-child(even) td {
    color: rgb(255, 255, 255);}

@media only screen and (max-width: 1000px) {
	.fl-node-18perlac2fqx .pp-table-content .pp-table-header-inner {
									}

	.fl-node-18perlac2fqx .pp-table-content .pp-table-cell-inner {
									}
}

@media only screen and (max-width: 768px) {
	.fl-node-18perlac2fqx .pp-table-content .pp-table-header-inner {
									}

	.fl-node-18perlac2fqx .pp-table-content .pp-table-cell-inner {
									}
}

@media only screen and (max-width: 639px) {
	.fl-node-18perlac2fqx .pp-table-content-cell-label {
									font-size: px;
									text-transform: ;
						}
}
.fl-node-18perlac2fqx .pp-table-content thead tr th,
						.fl-node-18perlac2fqx .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head,
						.fl-node-18perlac2fqx .pp-table-content.tablesaw-sortable tr:first-child th.tablesaw-sortable-head {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-size: 14px;
	text-transform: capitalize;
	font-style: italic;
}
.fl-node-18perlac2fqx .pp-table-content .pp-table-header-icon {
	margin-right: 10px;
}
.fl-node-18perlac2fqx .pp-table-content thead tr th, .fl-node-18perlac2fqx .pp-table-content.tablesaw thead th {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-18perlac2fqx .pp-table-content .pp-table-cell-icon {
	margin-right: 10px;
}
.fl-node-18perlac2fqx .pp-table-content tbody tr th, .fl-node-18perlac2fqx .pp-table-content tbody tr td {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-18perlac2fqx > .fl-module-content {
	margin-bottom:0px;
	margin-left:50px;
}
@media ( max-width: 1000px ) {
 .fl-node-18perlac2fqx.fl-module > .fl-module-content {
	margin-left:20px;
}
}
.fl-node-wbtzvgoai491 .pp-accordion-item {
		margin-bottom: 10px;
	}

 
.fl-node-wbtzvgoai491 .pp-accordion-item .pp-accordion-button {
			color: rgb(255, 255, 255);
		}

.fl-node-wbtzvgoai491 .pp-accordion-item .pp-accordion-button:hover,
.fl-node-wbtzvgoai491 .pp-accordion-item.pp-accordion-item-active .pp-accordion-button {
			color: rgb(255, 255, 255);
	}

.fl-node-wbtzvgoai491 .pp-accordion-item.pp-accordion-item-active .pp-accordion-button-icon,
.fl-node-wbtzvgoai491 .pp-accordion-item:hover .pp-accordion-button-icon {
	color: rgb(255, 255, 255);
}

.fl-node-wbtzvgoai491 .pp-accordion-item .pp-accordion-button-icon.pp-accordion-icon-right {
	padding-left: 15px;
}
.fl-node-wbtzvgoai491 .pp-accordion-item .pp-accordion-button-icon.pp-accordion-icon-left {
	padding-right: 15px;
}
 






.fl-node-wbtzvgoai491 .pp-accordion-item .pp-accordion-content {
			color: rgb(255, 255, 255);
							}

.fl-node-wbtzvgoai491 .pp-accordion-item .pp-accordion-button-icon {
	color: rgb(255, 255, 255);
}

.fl-node-wbtzvgoai491 .pp-accordion-item .pp-accordion-button-icon,
.fl-node-wbtzvgoai491 .pp-accordion-item .pp-accordion-button-icon:before {
	font-size: 14px;
}

.fl-node-wbtzvgoai491 .pp-accordion-item .pp-accordion-icon {
		font-size: 15px;
	width: 18.75px;
			color: rgb(255, 255, 255);
		}

.fl-node-wbtzvgoai491 .pp-accordion-item .pp-accordion-button:hover .pp-accordion-icon,
.fl-node-wbtzvgoai491 .pp-accordion-item.pp-accordion-item-active .pp-accordion-icon {
	color: rgb(255, 255, 255);
}

.fl-node-wbtzvgoai491 .pp-accordion-item .pp-accordion-icon:before {
	font-size: 15px;
}

										.fl-node-wbtzvgoai491 .pp-accordion-item .pp-accordion-button .pp-accordion-button-label {
	font-size: 18px;
}
@media(max-width: 768px) {
	.fl-node-wbtzvgoai491 .pp-accordion-item .pp-accordion-button .pp-accordion-button-label {
		font-size: 16px;
	}
	.fl-node-wbtzvgoai491 .pp-accordion-item .pp-accordion-content {
		font-size: 16px;
	}
}
 .fl-node-wbtzvgoai491 > .fl-module-content {
	margin-top:10px;
	margin-bottom:20px;
	margin-left:12px;
}
@media ( max-width: 768px ) {
 .fl-node-wbtzvgoai491.fl-module > .fl-module-content {
	margin-top:0px;
}
}
.fl-node-zy1bju7qvhgx .tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn {
	float: none !important;
}

.fl-node-zy1bju7qvhgx .pp-table-content thead th,
.fl-node-zy1bju7qvhgx .pp-table-content.tablesaw thead th,
.fl-node-zy1bju7qvhgx .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head button {
    background: #643015;
	border: 0;
}

.fl-node-zy1bju7qvhgx .pp-table-content thead tr th,
.fl-node-zy1bju7qvhgx .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head,
.fl-node-zy1bju7qvhgx .pp-table-content.tablesaw-sortable tr:first-child th.tablesaw-sortable-head button {
    color: #ffffff;
}

.fl-node-zy1bju7qvhgx .pp-table-content thead tr th {
	vertical-align: middle;
}





.fl-node-zy1bju7qvhgx .pp-table-content tbody tr {
	background: #643015;
	border-bottom: 0;
}

.fl-node-zy1bju7qvhgx .pp-table-content tbody tr th,
.fl-node-zy1bju7qvhgx .pp-table-content tbody tr td {
	vertical-align: middle;
	color: rgb(255, 255, 255);
}

.fl-node-zy1bju7qvhgx .pp-table-content .pp-table-cell-inner {
	display: flex;
	align-items: center;
										}



.fl-node-zy1bju7qvhgx .tablesaw-sortable .tablesaw-sortable-head button {
		text-align: ;
	}

.fl-node-zy1bju7qvhgx .pp-table-content tbody tr:nth-child(odd) {
    background: #643015;}

.fl-node-zy1bju7qvhgx .pp-table-content tbody tr:nth-child(odd) th,
.fl-node-zy1bju7qvhgx .pp-table-content tbody tr:nth-child(odd) td {
    color: rgb(255, 255, 255);}

.fl-node-zy1bju7qvhgx .pp-table-content tbody tr:nth-child(even) {
    background: #643015;}

.fl-node-zy1bju7qvhgx .pp-table-content tbody tr:nth-child(even) th,
.fl-node-zy1bju7qvhgx .pp-table-content tbody tr:nth-child(even) td {
    color: rgb(255, 255, 255);}

@media only screen and (max-width: 1000px) {
	.fl-node-zy1bju7qvhgx .pp-table-content .pp-table-header-inner {
									}

	.fl-node-zy1bju7qvhgx .pp-table-content .pp-table-cell-inner {
									}
}

@media only screen and (max-width: 768px) {
	.fl-node-zy1bju7qvhgx .pp-table-content .pp-table-header-inner {
									}

	.fl-node-zy1bju7qvhgx .pp-table-content .pp-table-cell-inner {
									}
}

@media only screen and (max-width: 639px) {
	.fl-node-zy1bju7qvhgx .pp-table-content-cell-label {
									font-size: px;
									text-transform: ;
						}
}
.fl-node-zy1bju7qvhgx .pp-table-content thead tr th,
						.fl-node-zy1bju7qvhgx .pp-table-content.tablesaw-sortable th.tablesaw-sortable-head,
						.fl-node-zy1bju7qvhgx .pp-table-content.tablesaw-sortable tr:first-child th.tablesaw-sortable-head {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-size: 14px;
	text-transform: capitalize;
	font-style: italic;
}
.fl-node-zy1bju7qvhgx .pp-table-content .pp-table-header-icon {
	margin-right: 10px;
}
.fl-node-zy1bju7qvhgx .pp-table-content thead tr th, .fl-node-zy1bju7qvhgx .pp-table-content.tablesaw thead th {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
.fl-node-zy1bju7qvhgx .pp-table-content .pp-table-cell-icon {
	margin-right: 10px;
}
.fl-node-zy1bju7qvhgx .pp-table-content tbody tr th, .fl-node-zy1bju7qvhgx .pp-table-content tbody tr td {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #d1c0aa;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
}
 .fl-node-zy1bju7qvhgx > .fl-module-content {
	margin-bottom:0px;
	margin-left:50px;
}
@media ( max-width: 1000px ) {
 .fl-node-zy1bju7qvhgx.fl-module > .fl-module-content {
	margin-left:20px;
}
}

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

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

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

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


div.fl-node-skwe6ql1vpt9 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
									display: inline;
	}
div.fl-node-skwe6ql1vpt9 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-skwe6ql1vpt9 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-skwe6ql1vpt9 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-skwe6ql1vpt9 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
			border-bottom-color: #d1c0aa;
			border-bottom-width: 1px;
	}

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


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

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

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

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

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

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

div.fl-node-skwe6ql1vpt9 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-skwe6ql1vpt9 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

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

div.fl-node-skwe6ql1vpt9 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #d1c0aa;
			width: 100px;
			margin: 0 auto;
	}

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


div.fl-node-skwe6ql1vpt9 .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-skwe6ql1vpt9 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-skwe6ql1vpt9 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-skwe6ql1vpt9 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-skwe6ql1vpt9 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-skwe6ql1vpt9 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-skwe6ql1vpt9 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-skwe6ql1vpt9 .pp-heading-content .pp-heading .heading-title {
	font-size: 20px;
}
div.fl-node-skwe6ql1vpt9 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-skwe6ql1vpt9 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-skwe6ql1vpt9 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-skwe6ql1vpt9 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-skwe6ql1vpt9 .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-skwe6ql1vpt9 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-skwe6ql1vpt9 .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
 .fl-node-skwe6ql1vpt9 > .fl-module-content {
	margin-top:20px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media (max-width: 768px) { .fl-node-skwe6ql1vpt9 > .fl-module-content { margin-left:20px;margin-right:20px; } }.fl-builder-content .fl-node-woviget1lpha.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-woviget1lpha.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 16px;
}
 .fl-node-woviget1lpha.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-left:0px;
}
.fl-node-hc4vqje2z6yx, .fl-node-hc4vqje2z6yx .fl-photo {
	text-align: center;
}
 .fl-node-hc4vqje2z6yx.fl-module-photo {
	margin-top:44px;
	margin-bottom:0px;
	margin-left:0px;
}
@media (max-width: 768px) { .fl-node-hc4vqje2z6yx.fl-module-photo { margin-top:20px; } }.fl-builder-content-8113 .fl-node-8i2o90spjy6h {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	grid-template-rows: repeat(1,1fr);
	flex-direction: row;
	align-items: center;
	row-gap: 10px;
	column-gap: 20px;
}
@media(max-width: 1000px) {
	.fl-builder-content-8113 .fl-node-8i2o90spjy6h {
		display: flex;
		flex-direction: column-reverse;
	}
}
 .fl-node-8i2o90spjy6h.fl-module-box {
	margin-right:40px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-8i2o90spjy6h.fl-module-box.fl-module {
	margin-right:20px;
}
}
.fl-node-gwderhmvy1s5, .fl-node-gwderhmvy1s5 .fl-photo {
	text-align: left;
}
 .fl-node-gwderhmvy1s5.fl-module-photo {
	margin-left:0px;
}

div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-heading-prefix {
		color: #ffffff;
	}

div.fl-node-fbqtzc81rwlx .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-sub-heading,
div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-fbqtzc81rwlx .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-fbqtzc81rwlx .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-fbqtzc81rwlx .pp-heading-content {
				text-align: ;
			}
	div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-fbqtzc81rwlx div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-fbqtzc81rwlx div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-fbqtzc81rwlx div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-fbqtzc81rwlx div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-sub-heading, div.fl-node-fbqtzc81rwlx .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-fbqtzc81rwlx .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-fbqtzc81rwlx .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-fbqtzc81rwlx > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-fbqtzc81rwlx.fl-module > .fl-module-content {
	margin-bottom:16px;
}
}
@media ( max-width: 768px ) {
 .fl-node-fbqtzc81rwlx.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-pykurfjohqv1 img.fl-photo-img {
	object-position: left center;
}
.fl-node-pykurfjohqv1, .fl-node-pykurfjohqv1 .fl-photo {
	text-align: center;
}
.fl-node-pykurfjohqv1 .fl-photo-img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
 .fl-node-pykurfjohqv1.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-pykurfjohqv1.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-pykurfjohqv1.fl-module-photo.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}

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

div.fl-node-onqjy2tzidmp .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-onqjy2tzidmp .pp-heading-content .pp-sub-heading,
div.fl-node-onqjy2tzidmp .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

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

div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-onqjy2tzidmp .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-onqjy2tzidmp .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-onqjy2tzidmp .pp-heading-content {
				text-align: ;
			}
	div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading .heading-title {
	font-size: 28px;
}
div.fl-node-onqjy2tzidmp div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-onqjy2tzidmp div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-onqjy2tzidmp div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-onqjy2tzidmp div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-onqjy2tzidmp .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-onqjy2tzidmp .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1000px) {
	div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
	}
}
@media(max-width: 768px) {
	div.fl-node-onqjy2tzidmp .pp-heading-content .pp-heading .heading-title {
		font-size: 24px;
		line-height: 1.1em;
	}
}
 .fl-node-onqjy2tzidmp > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-onqjy2tzidmp.fl-module > .fl-module-content {
	margin-top:0px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-onqjy2tzidmp.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:12px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-bwocvdy46r9i {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	background: linear-gradient(rgb(216, 208, 197), rgb(216, 208, 197));
}
@media(max-width: 768px) {
	.fl-builder-content-8113 .fl-node-bwocvdy46r9i {
		flex-direction: column;
	}
}
.fl-builder-content-8113 .fl-node-a6wmdg509hf8 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding-top: 44px;
	padding-right: 44px;
	padding-bottom: 44px;
	padding-left: 44px;
	background-color: #33383C;
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #9dc5ce;
	border-right-width: 40px;
	min-width: 600px;
	max-height: 250px;
	margin-inline: auto 0 !important;
	order: 1;
}
@media(max-width: 1000px) {
	.fl-builder-content-8113 .fl-node-a6wmdg509hf8 {
		justify-content: center;
		margin-inline: auto !important;
	}
}
@media(max-width: 768px) {
	.fl-builder-content-8113 .fl-node-a6wmdg509hf8 {
		display: flex;
		flex-direction: column;
		padding-right: 20px;
		padding-left: 20px;
		border-style: none;
		border-width: 0;
		background-clip: border-box;
		min-width: 100%;
		max-width: 0px;
	}
}
 .fl-node-a6wmdg509hf8.fl-module-box {
	margin-right:80px;
}
@media ( max-width: 1000px ) {
 .fl-node-a6wmdg509hf8.fl-module-box.fl-module {
	margin-right:40px;
	margin-left:80px;
}
}
@media ( max-width: 768px ) {
 .fl-node-a6wmdg509hf8.fl-module-box.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
/* Global Number Counter CSS */
/* Alignment */
		.fl-node-fb1u6vi3aqnz .fl-module-content {
			text-align: center;
		}
		

/* Number Text Typography */


	.fl-node-fb1u6vi3aqnz h2.uabb-number-string {
					color: rgb(255, 255, 255);
			}

/* Before After Text Typography */


	.fl-node-fb1u6vi3aqnz .uabb-number-before-text,
	.fl-node-fb1u6vi3aqnz .uabb-number-after-text,
	.fl-node-fb1u6vi3aqnz .uabb-counter-before-text,
	.fl-node-fb1u6vi3aqnz .uabb-counter-after-text {
					color: #b1dae3;
			}

/* Custom Spacing Style Css */
	
/* Icon Margin */
/* Image Margin */


/* Icon Image Render */


/* Render Seperator */



/* Calculation Width */


/* Responsive Typography */

	.fl-builder-content-8113 .fl-node-bakoi6nfurhz {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 0px;
}
@media(max-width: 1200px) {
	.fl-builder-content-8113 .fl-node-bakoi6nfurhz {
		gap: 10px;
	}
}
 .fl-node-bakoi6nfurhz.fl-module-box {
	margin-top:-20px;
	margin-right:80px;
	margin-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-bakoi6nfurhz.fl-module-box.fl-module {
	margin-right:0px;
	margin-left:10px;
}
}
@media (max-width: 768px) { .fl-node-bakoi6nfurhz.fl-module-box { margin-top:20px; } }.fl-builder-content-8113 .fl-node-16q4y0pdtmcv {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 0px;
}
 .fl-node-16q4y0pdtmcv.fl-module-box {
	margin-top:-20px;
	margin-right:80px;
	margin-left:40px;
}
@media ( max-width: 768px ) {
 .fl-node-16q4y0pdtmcv.fl-module-box.fl-module {
	margin-right:0px;
}
}
@media (max-width: 768px) { .fl-node-16q4y0pdtmcv.fl-module-box { margin-top:20px;margin-left:20px; } }.fl-builder-content-8113 .fl-node-4s6xncohiv9r {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 0px;
}
@media(max-width: 768px) {
	.fl-builder-content-8113 .fl-node-4s6xncohiv9r {
		padding-right: 0px;
		padding-left: 0px;
	}
}
 .fl-node-4s6xncohiv9r.fl-module-box {
	margin-top:-20px;
	margin-right:80px;
	margin-left:40px;
}
@media ( max-width: 768px ) {
 .fl-node-4s6xncohiv9r.fl-module-box.fl-module {
	margin-right:0px;
	margin-left:20px;
}
}
@media (max-width: 768px) { .fl-node-4s6xncohiv9r.fl-module-box { margin-top:20px; } }.fl-builder-content-8113 .fl-node-lx570v8uhf4q {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 0px;
}
 .fl-node-lx570v8uhf4q.fl-module-box {
	margin-top:-20px;
	margin-right:80px;
	margin-left:40px;
}
@media ( max-width: 768px ) {
 .fl-node-lx570v8uhf4q.fl-module-box.fl-module {
	margin-right:10px;
}
}
@media (max-width: 768px) { .fl-node-lx570v8uhf4q.fl-module-box { margin-top:20px;margin-left:20px; } }.fl-builder-content-8113 .fl-node-hsj20c1g5v9y {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 0px;
}
 .fl-node-hsj20c1g5v9y.fl-module-box {
	margin-top:-20px;
	margin-right:80px;
	margin-left:40px;
}
@media ( max-width: 768px ) {
 .fl-node-hsj20c1g5v9y.fl-module-box.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
@media (max-width: 768px) { .fl-node-hsj20c1g5v9y.fl-module-box { margin-top:20px; } }.fl-builder-content-8113 .fl-node-0jg3ny1w4vhe {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 0px;
}
 .fl-node-0jg3ny1w4vhe.fl-module-box {
	margin-top:-20px;
	margin-right:80px;
	margin-left:40px;
}
@media ( max-width: 768px ) {
 .fl-node-0jg3ny1w4vhe.fl-module-box.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
@media (max-width: 768px) { .fl-node-0jg3ny1w4vhe.fl-module-box { margin-top:20px; } }	.fl-builder-content .fl-node-oq5dmfsg1ah2.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-oq5dmfsg1ah2.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-oq5dmfsg1ah2.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-oq5dmfsg1ah2.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 14px;
	font-style: italic;
}
 .fl-node-oq5dmfsg1ah2.fl-module-rich-text {
	margin-top:0px;
	margin-left:49px;
}
@media (max-width: 768px) { .fl-node-oq5dmfsg1ah2.fl-module-rich-text { margin-left:20px; } }/* Global Number Counter CSS */
/* Alignment */
		.fl-node-dapuqtsbmh03 .fl-module-content {
			text-align: center;
		}
		

/* Number Text Typography */


	.fl-node-dapuqtsbmh03 h2.uabb-number-string {
					color: rgb(255, 255, 255);
			}

/* Before After Text Typography */


	.fl-node-dapuqtsbmh03 .uabb-number-before-text,
	.fl-node-dapuqtsbmh03 .uabb-number-after-text,
	.fl-node-dapuqtsbmh03 .uabb-counter-before-text,
	.fl-node-dapuqtsbmh03 .uabb-counter-after-text {
					color: #b1dae3;
			}

/* Custom Spacing Style Css */
	
/* Icon Margin */
/* Image Margin */


/* Icon Image Render */


/* Render Seperator */



/* Calculation Width */


/* Responsive Typography */

		.fl-builder-content .fl-node-ixuhjs4fa5yl.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-ixuhjs4fa5yl.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-ixuhjs4fa5yl.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-ixuhjs4fa5yl.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 14px;
	font-style: italic;
}
 .fl-node-ixuhjs4fa5yl.fl-module-rich-text {
	margin-top:0px;
	margin-left:49px;
}
@media ( max-width: 1000px ) {
 .fl-node-ixuhjs4fa5yl.fl-module-rich-text.fl-module {
	margin-left:20px;
}
}
.fl-node-ohcprdm4ix8j, .fl-node-ohcprdm4ix8j .fl-photo {
	text-align: center;
}
 .fl-node-ohcprdm4ix8j.fl-module-photo {
	margin-top:44px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-ohcprdm4ix8j.fl-module-photo.fl-module {
	margin-bottom:4px;
}
}
@media (max-width: 768px) { .fl-node-ohcprdm4ix8j.fl-module-photo { margin-top:20px; } }
div.fl-node-5q328otchuiz .pp-heading-content .pp-heading-prefix {
		color: #ffffff;
	}

div.fl-node-5q328otchuiz .pp-heading-content {
	text-align: left;
}

div.fl-node-5q328otchuiz .pp-heading-content .pp-heading {
		}

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


div.fl-node-5q328otchuiz .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-5q328otchuiz .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-5q328otchuiz .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-5q328otchuiz .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-5q328otchuiz .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-5q328otchuiz .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-5q328otchuiz .pp-heading-content .pp-sub-heading,
div.fl-node-5q328otchuiz .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

div.fl-node-5q328otchuiz .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-5q328otchuiz .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-5q328otchuiz .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-5q328otchuiz .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-5q328otchuiz .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-5q328otchuiz .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-5q328otchuiz .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-5q328otchuiz .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-5q328otchuiz .pp-heading-content {
				text-align: ;
			}
	div.fl-node-5q328otchuiz .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-5q328otchuiz .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-5q328otchuiz div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-5q328otchuiz div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-5q328otchuiz div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-5q328otchuiz div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-5q328otchuiz .pp-heading-content .pp-sub-heading, div.fl-node-5q328otchuiz .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-5q328otchuiz .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-5q328otchuiz .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-5q328otchuiz > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-5q328otchuiz.fl-module > .fl-module-content {
	margin-bottom:16px;
}
}
@media ( max-width: 768px ) {
 .fl-node-5q328otchuiz.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-rnxhquyops3b img.fl-photo-img {
	object-position: left center;
}
.fl-node-rnxhquyops3b, .fl-node-rnxhquyops3b .fl-photo {
	text-align: center;
}
.fl-node-rnxhquyops3b .fl-photo-img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
 .fl-node-rnxhquyops3b.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-rnxhquyops3b.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-rnxhquyops3b.fl-module-photo.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-8516zqljbvo4 img.fl-photo-img {
	object-position: left center;
}
.fl-node-8516zqljbvo4, .fl-node-8516zqljbvo4 .fl-photo {
	text-align: center;
}
.fl-node-8516zqljbvo4 .fl-photo-img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
 .fl-node-8516zqljbvo4.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-8516zqljbvo4.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-8516zqljbvo4.fl-module-photo.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-u31e7vt9zqgf img.fl-photo-img {
	object-position: left center;
}
.fl-node-u31e7vt9zqgf, .fl-node-u31e7vt9zqgf .fl-photo {
	text-align: center;
}
.fl-node-u31e7vt9zqgf .fl-photo-img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
 .fl-node-u31e7vt9zqgf.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-u31e7vt9zqgf.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-u31e7vt9zqgf.fl-module-photo.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-awxh9ysjogbn img.fl-photo-img {
	object-position: left center;
}
.fl-node-awxh9ysjogbn, .fl-node-awxh9ysjogbn .fl-photo {
	text-align: center;
}
.fl-node-awxh9ysjogbn .fl-photo-img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
 .fl-node-awxh9ysjogbn.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-awxh9ysjogbn.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-awxh9ysjogbn.fl-module-photo.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-81dpjnit573e img.fl-photo-img {
	object-position: left center;
}
.fl-node-81dpjnit573e, .fl-node-81dpjnit573e .fl-photo {
	text-align: center;
}
.fl-node-81dpjnit573e .fl-photo-img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
 .fl-node-81dpjnit573e.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-81dpjnit573e.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-81dpjnit573e.fl-module-photo.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-wne5quo4mxhi img.fl-photo-img {
	object-position: left center;
}
.fl-node-wne5quo4mxhi, .fl-node-wne5quo4mxhi .fl-photo {
	text-align: center;
}
.fl-node-wne5quo4mxhi .fl-photo-img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
 .fl-node-wne5quo4mxhi.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-wne5quo4mxhi.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-wne5quo4mxhi.fl-module-photo.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-sfq0nmyulvj2 img.fl-photo-img {
	object-position: left center;
}
.fl-node-sfq0nmyulvj2, .fl-node-sfq0nmyulvj2 .fl-photo {
	text-align: center;
}
.fl-node-sfq0nmyulvj2 .fl-photo-img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
 .fl-node-sfq0nmyulvj2.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-sfq0nmyulvj2.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-sfq0nmyulvj2.fl-module-photo.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-7fl2nxtjoika img.fl-photo-img {
	object-position: left center;
}
.fl-node-7fl2nxtjoika, .fl-node-7fl2nxtjoika .fl-photo {
	text-align: center;
}
.fl-node-7fl2nxtjoika .fl-photo-img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
 .fl-node-7fl2nxtjoika.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-7fl2nxtjoika.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-7fl2nxtjoika.fl-module-photo.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-8x9u1bgj6q3y img.fl-photo-img {
	object-position: left center;
}
.fl-node-8x9u1bgj6q3y, .fl-node-8x9u1bgj6q3y .fl-photo {
	text-align: center;
}
.fl-node-8x9u1bgj6q3y .fl-photo-img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
 .fl-node-8x9u1bgj6q3y.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-8x9u1bgj6q3y.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-8x9u1bgj6q3y.fl-module-photo.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-vpt7g051hlu8 img.fl-photo-img {
	object-position: left center;
}
.fl-node-vpt7g051hlu8, .fl-node-vpt7g051hlu8 .fl-photo {
	text-align: center;
}
.fl-node-vpt7g051hlu8 .fl-photo-img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
 .fl-node-vpt7g051hlu8.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-vpt7g051hlu8.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-vpt7g051hlu8.fl-module-photo.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}
.fl-builder-content-8113 .fl-node-tn9ci8mkfy7x img.fl-photo-img {
	object-position: left center;
}
.fl-node-tn9ci8mkfy7x, .fl-node-tn9ci8mkfy7x .fl-photo {
	text-align: center;
}
.fl-node-tn9ci8mkfy7x .fl-photo-img {
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
 .fl-node-tn9ci8mkfy7x.fl-module-photo {
	margin-right:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-tn9ci8mkfy7x.fl-module-photo.fl-module {
	margin-top:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-tn9ci8mkfy7x.fl-module-photo.fl-module {
	margin-right:0px;
	margin-left:0px;
}
}

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

div.fl-node-elgfr0ck8pni .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-elgfr0ck8pni .pp-heading-content .pp-sub-heading,
div.fl-node-elgfr0ck8pni .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

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

div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-elgfr0ck8pni .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-elgfr0ck8pni .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-elgfr0ck8pni .pp-heading-content {
				text-align: ;
			}
	div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading .heading-title {
	font-size: 28px;
}
div.fl-node-elgfr0ck8pni div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-elgfr0ck8pni div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-elgfr0ck8pni div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-elgfr0ck8pni div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-elgfr0ck8pni .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-elgfr0ck8pni .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1000px) {
	div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
	}
}
@media(max-width: 768px) {
	div.fl-node-elgfr0ck8pni .pp-heading-content .pp-heading .heading-title {
		font-size: 24px;
		line-height: 1.1em;
	}
}
 .fl-node-elgfr0ck8pni > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-elgfr0ck8pni.fl-module > .fl-module-content {
	margin-top:20px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-elgfr0ck8pni.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:12px;
	margin-left:0px;
}
}
	.fl-builder-content .fl-node-l2xfw3a148dj.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-l2xfw3a148dj.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-l2xfw3a148dj.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-l2xfw3a148dj.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 18px;
	text-align: center;
	font-style: italic;
}
@media(max-width: 768px) {
	.fl-builder-content .fl-node-l2xfw3a148dj.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-l2xfw3a148dj.fl-module-rich-text.fl-rich-text *:not(b, strong) {
		font-size: 16px;
	}
}
 .fl-node-l2xfw3a148dj.fl-module-rich-text {
	margin-top:0px;
	margin-right:290px;
	margin-left:290px;
}
@media ( max-width: 1000px ) {
 .fl-node-l2xfw3a148dj.fl-module-rich-text.fl-module {
	margin-right:20px;
	margin-left:20px;
}
}

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

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

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

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


div.fl-node-v0uarn8dezfq .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
									display: inline;
	}
div.fl-node-v0uarn8dezfq .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-v0uarn8dezfq .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-v0uarn8dezfq .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-v0uarn8dezfq .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
			border-bottom-color: #d1c0aa;
			border-bottom-width: 1px;
	}

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


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

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

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

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

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

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

div.fl-node-v0uarn8dezfq .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-v0uarn8dezfq .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

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

div.fl-node-v0uarn8dezfq .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #d1c0aa;
			width: 100px;
			margin: 0 auto;
	}

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


div.fl-node-v0uarn8dezfq .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-v0uarn8dezfq .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-v0uarn8dezfq .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-v0uarn8dezfq .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-v0uarn8dezfq .pp-heading-content {
				text-align: ;
			}
	div.fl-node-v0uarn8dezfq .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-v0uarn8dezfq .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-v0uarn8dezfq .pp-heading-content .pp-heading .heading-title {
	font-size: 20px;
}
div.fl-node-v0uarn8dezfq div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-v0uarn8dezfq div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-v0uarn8dezfq div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-v0uarn8dezfq div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-v0uarn8dezfq .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-v0uarn8dezfq .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-v0uarn8dezfq .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
 .fl-node-v0uarn8dezfq > .fl-module-content {
	margin-top:20px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media (max-width: 768px) { .fl-node-v0uarn8dezfq > .fl-module-content { margin-left:20px;margin-right:20px; } }
div.fl-node-duby3tq9427c .pp-heading-content .pp-heading-prefix {
		color: #ffffff;
	}

div.fl-node-duby3tq9427c .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-duby3tq9427c .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-duby3tq9427c .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-duby3tq9427c .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-duby3tq9427c .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-duby3tq9427c .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-duby3tq9427c .pp-heading-content .pp-sub-heading,
div.fl-node-duby3tq9427c .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

div.fl-node-duby3tq9427c .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-duby3tq9427c .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-duby3tq9427c .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-duby3tq9427c .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-duby3tq9427c .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-duby3tq9427c .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-duby3tq9427c .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-duby3tq9427c .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-duby3tq9427c .pp-heading-content {
				text-align: ;
			}
	div.fl-node-duby3tq9427c .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-duby3tq9427c .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-duby3tq9427c div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-duby3tq9427c div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-duby3tq9427c div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-duby3tq9427c div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-duby3tq9427c .pp-heading-content .pp-sub-heading, div.fl-node-duby3tq9427c .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-duby3tq9427c .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-duby3tq9427c .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-duby3tq9427c > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-duby3tq9427c.fl-module > .fl-module-content {
	margin-bottom:16px;
}
}
@media ( max-width: 768px ) {
 .fl-node-duby3tq9427c.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading-prefix {
		color: #ffffff;
	}

div.fl-node-tqv15plx6uwb .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-tqv15plx6uwb .pp-heading-content .pp-sub-heading,
div.fl-node-tqv15plx6uwb .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-tqv15plx6uwb .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-tqv15plx6uwb .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-tqv15plx6uwb .pp-heading-content {
				text-align: ;
			}
	div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-tqv15plx6uwb .pp-heading-content .pp-heading .heading-title {
	font-size: 20px;
}
div.fl-node-tqv15plx6uwb div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-tqv15plx6uwb div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-tqv15plx6uwb div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-tqv15plx6uwb div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-tqv15plx6uwb .pp-heading-content .pp-sub-heading, div.fl-node-tqv15plx6uwb .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-tqv15plx6uwb .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-tqv15plx6uwb .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-tqv15plx6uwb > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-tqv15plx6uwb.fl-module > .fl-module-content {
	margin-bottom:16px;
}
}
@media ( max-width: 768px ) {
 .fl-node-tqv15plx6uwb.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading-prefix {
		color: #ffffff;
	}

div.fl-node-vews6qaf89nl .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-vews6qaf89nl .pp-heading-content .pp-sub-heading,
div.fl-node-vews6qaf89nl .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-vews6qaf89nl .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-vews6qaf89nl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-vews6qaf89nl .pp-heading-content {
				text-align: ;
			}
	div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-vews6qaf89nl .pp-heading-content .pp-heading .heading-title {
	font-size: 20px;
}
div.fl-node-vews6qaf89nl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-vews6qaf89nl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-vews6qaf89nl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-vews6qaf89nl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-vews6qaf89nl .pp-heading-content .pp-sub-heading, div.fl-node-vews6qaf89nl .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-vews6qaf89nl .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-vews6qaf89nl .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-vews6qaf89nl > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-vews6qaf89nl.fl-module > .fl-module-content {
	margin-bottom:16px;
}
}
@media ( max-width: 768px ) {
 .fl-node-vews6qaf89nl.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading-prefix {
		color: #ffffff;
	}

div.fl-node-mea9il8nfzwk .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-mea9il8nfzwk .pp-heading-content .pp-sub-heading,
div.fl-node-mea9il8nfzwk .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-mea9il8nfzwk .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-mea9il8nfzwk .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-mea9il8nfzwk .pp-heading-content {
				text-align: ;
			}
	div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-mea9il8nfzwk .pp-heading-content .pp-heading .heading-title {
	font-size: 20px;
}
div.fl-node-mea9il8nfzwk div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-mea9il8nfzwk div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-mea9il8nfzwk div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-mea9il8nfzwk div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-mea9il8nfzwk .pp-heading-content .pp-sub-heading, div.fl-node-mea9il8nfzwk .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-mea9il8nfzwk .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-mea9il8nfzwk .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-mea9il8nfzwk > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-mea9il8nfzwk.fl-module > .fl-module-content {
	margin-bottom:16px;
}
}
@media ( max-width: 768px ) {
 .fl-node-mea9il8nfzwk.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading-prefix {
		color: #ffffff;
	}

div.fl-node-2f9j4t8odxu7 .pp-heading-content {
	text-align: left;
}

div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading {
		}

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


div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-sub-heading,
div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-2f9j4t8odxu7 .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-2f9j4t8odxu7 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-2f9j4t8odxu7 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-heading .heading-title {
	font-size: 20px;
}
div.fl-node-2f9j4t8odxu7 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-2f9j4t8odxu7 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-2f9j4t8odxu7 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-2f9j4t8odxu7 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-sub-heading, div.fl-node-2f9j4t8odxu7 .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-2f9j4t8odxu7 .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-2f9j4t8odxu7 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-2f9j4t8odxu7 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-2f9j4t8odxu7.fl-module > .fl-module-content {
	margin-bottom:16px;
}
}
@media ( max-width: 768px ) {
 .fl-node-2f9j4t8odxu7.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-452ytewm3asl .pp-heading-content .pp-heading-prefix {
		color: #ffffff;
	}

div.fl-node-452ytewm3asl .pp-heading-content {
	text-align: left;
}

div.fl-node-452ytewm3asl .pp-heading-content .pp-heading {
		}

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


div.fl-node-452ytewm3asl .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-452ytewm3asl .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-452ytewm3asl .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-452ytewm3asl .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-452ytewm3asl .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-452ytewm3asl .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-452ytewm3asl .pp-heading-content .pp-sub-heading,
div.fl-node-452ytewm3asl .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

div.fl-node-452ytewm3asl .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-452ytewm3asl .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-452ytewm3asl .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-452ytewm3asl .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-452ytewm3asl .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-452ytewm3asl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-452ytewm3asl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-452ytewm3asl .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-452ytewm3asl .pp-heading-content {
				text-align: ;
			}
	div.fl-node-452ytewm3asl .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-452ytewm3asl .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-452ytewm3asl .pp-heading-content .pp-heading .heading-title {
	font-size: 20px;
}
div.fl-node-452ytewm3asl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-452ytewm3asl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-452ytewm3asl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-452ytewm3asl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-452ytewm3asl .pp-heading-content .pp-sub-heading, div.fl-node-452ytewm3asl .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-452ytewm3asl .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-452ytewm3asl .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-452ytewm3asl > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-452ytewm3asl.fl-module > .fl-module-content {
	margin-bottom:16px;
}
}
@media ( max-width: 768px ) {
 .fl-node-452ytewm3asl.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading-prefix {
		color: #ffffff;
	}

div.fl-node-ndc2k9hr8tmo .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-sub-heading,
div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-ndc2k9hr8tmo .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-ndc2k9hr8tmo .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-ndc2k9hr8tmo .pp-heading-content {
				text-align: ;
			}
	div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-heading .heading-title {
	font-size: 20px;
}
div.fl-node-ndc2k9hr8tmo div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-ndc2k9hr8tmo div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-ndc2k9hr8tmo div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-ndc2k9hr8tmo div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-sub-heading, div.fl-node-ndc2k9hr8tmo .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-ndc2k9hr8tmo .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-ndc2k9hr8tmo .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-ndc2k9hr8tmo > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-ndc2k9hr8tmo.fl-module > .fl-module-content {
	margin-bottom:16px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ndc2k9hr8tmo.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-heading-prefix {
		color: #ffffff;
	}

div.fl-node-1nvo4hlqjz0s .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-sub-heading,
div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

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

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

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

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

div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-1nvo4hlqjz0s .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-1nvo4hlqjz0s .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-1nvo4hlqjz0s .pp-heading-content {
				text-align: ;
			}
	div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-heading .heading-title {
	font-size: 20px;
}
div.fl-node-1nvo4hlqjz0s div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-1nvo4hlqjz0s div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-1nvo4hlqjz0s div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-1nvo4hlqjz0s div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-sub-heading, div.fl-node-1nvo4hlqjz0s .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-1nvo4hlqjz0s .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-1nvo4hlqjz0s .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-1nvo4hlqjz0s > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-1nvo4hlqjz0s.fl-module > .fl-module-content {
	margin-bottom:16px;
}
}
@media ( max-width: 768px ) {
 .fl-node-1nvo4hlqjz0s.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading-prefix {
		color: #ffffff;
	}

div.fl-node-ltvbgz6y8iru .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

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


div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-sub-heading,
div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

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

div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

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

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

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

div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

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

div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

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


div.fl-node-ltvbgz6y8iru .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-ltvbgz6y8iru .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-ltvbgz6y8iru .pp-heading-content {
				text-align: ;
			}
	div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-heading .heading-title {
	font-size: 20px;
}
div.fl-node-ltvbgz6y8iru div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-ltvbgz6y8iru div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-ltvbgz6y8iru div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-ltvbgz6y8iru div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-sub-heading, div.fl-node-ltvbgz6y8iru .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-ltvbgz6y8iru .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-ltvbgz6y8iru .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-ltvbgz6y8iru > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-ltvbgz6y8iru.fl-module > .fl-module-content {
	margin-bottom:16px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ltvbgz6y8iru.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-prefix {
		color: #ffffff;
	}

div.fl-node-y0svkh2u9fdc .pp-heading-content {
	text-align: left;
}

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

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


div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-sub-heading,
div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-y0svkh2u9fdc .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-y0svkh2u9fdc .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1000px) {
	div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-y0svkh2u9fdc .pp-heading-content {
				text-align: ;
			}
	div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-y0svkh2u9fdc .pp-heading-content {
				text-align: ;
			}
	div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-heading .heading-title {
	font-size: 20px;
}
div.fl-node-y0svkh2u9fdc div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-y0svkh2u9fdc div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-y0svkh2u9fdc div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-y0svkh2u9fdc div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-sub-heading, div.fl-node-y0svkh2u9fdc .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-y0svkh2u9fdc .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-y0svkh2u9fdc .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-y0svkh2u9fdc > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-y0svkh2u9fdc.fl-module > .fl-module-content {
	margin-bottom:16px;
}
}
@media ( max-width: 768px ) {
 .fl-node-y0svkh2u9fdc.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-prefix {
		color: #ffffff;
	}

div.fl-node-s7jh3igmlvap .pp-heading-content {
	text-align: left;
}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading {
		}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 0px;
			margin-bottom: 10px;
	}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-s7jh3igmlvap .pp-heading-content .pp-sub-heading,
div.fl-node-s7jh3igmlvap .pp-heading-content .pp-sub-heading p {
		color: #ffffff;
	}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-s7jh3igmlvap .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-s7jh3igmlvap .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1000px) {
	div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-s7jh3igmlvap .pp-heading-content {
				text-align: ;
			}
	div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-s7jh3igmlvap .pp-heading-content {
				text-align: ;
			}
	div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-s7jh3igmlvap .pp-heading-content .pp-heading .heading-title {
	font-size: 20px;
}
div.fl-node-s7jh3igmlvap div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-s7jh3igmlvap div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-s7jh3igmlvap div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-s7jh3igmlvap div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-s7jh3igmlvap .pp-heading-content .pp-sub-heading, div.fl-node-s7jh3igmlvap .pp-heading-content .pp-sub-heading p {
	font-size: 18px;
}
div.fl-node-s7jh3igmlvap .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-s7jh3igmlvap .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-s7jh3igmlvap > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-s7jh3igmlvap.fl-module > .fl-module-content {
	margin-bottom:16px;
}
}
@media ( max-width: 768px ) {
 .fl-node-s7jh3igmlvap.fl-module > .fl-module-content {
	margin-right:0px;
	margin-left:0px;
}
}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-ngp5jcs1felt .pp-heading-content {
	text-align: left;
}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading {
		}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-ngp5jcs1felt .pp-heading-content .pp-sub-heading,
div.fl-node-ngp5jcs1felt .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-ngp5jcs1felt .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-ngp5jcs1felt .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1000px) {
	div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-ngp5jcs1felt .pp-heading-content {
				text-align: ;
			}
	div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-ngp5jcs1felt .pp-heading-content {
				text-align: ;
			}
	div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading .heading-title {
	font-size: 28px;
}
div.fl-node-ngp5jcs1felt div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-ngp5jcs1felt div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-ngp5jcs1felt div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-ngp5jcs1felt div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-ngp5jcs1felt .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-ngp5jcs1felt .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1000px) {
	div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
	}
}
@media(max-width: 768px) {
	div.fl-node-ngp5jcs1felt .pp-heading-content .pp-heading .heading-title {
		font-size: 24px;
		line-height: 1.1em;
	}
}
 .fl-node-ngp5jcs1felt > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-ngp5jcs1felt.fl-module > .fl-module-content {
	margin-top:20px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ngp5jcs1felt.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:12px;
	margin-left:0px;
}
}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-mr0awxcbv2fq .pp-heading-content {
	text-align: left;
}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading {
		}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-sub-heading,
div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-sub-heading p {
	}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-mr0awxcbv2fq .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-mr0awxcbv2fq .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1000px) {
	div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-mr0awxcbv2fq .pp-heading-content {
				text-align: ;
			}
	div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-mr0awxcbv2fq .pp-heading-content {
				text-align: ;
			}
	div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading .heading-title {
	font-size: 32px;
}
div.fl-node-mr0awxcbv2fq div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-mr0awxcbv2fq div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-mr0awxcbv2fq div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-mr0awxcbv2fq div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-mr0awxcbv2fq .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-mr0awxcbv2fq .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-mr0awxcbv2fq .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
 .fl-node-mr0awxcbv2fq > .fl-module-content {
	margin-top:80px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 1000px ) {
 .fl-node-mr0awxcbv2fq.fl-module > .fl-module-content {
	margin-left:10px;
}
}
@media (max-width: 768px) { .fl-node-mr0awxcbv2fq > .fl-module-content { margin-top:20px;margin-right:20px; } }
div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-vyxqw8c2klhm .pp-heading-content {
	text-align: left;
}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading {
		}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-sub-heading,
div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-vyxqw8c2klhm .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-vyxqw8c2klhm .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1000px) {
	div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-vyxqw8c2klhm .pp-heading-content {
				text-align: ;
			}
	div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-vyxqw8c2klhm .pp-heading-content {
				text-align: ;
			}
	div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading .heading-title {
	font-size: 38px;
}
div.fl-node-vyxqw8c2klhm div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-vyxqw8c2klhm div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-vyxqw8c2klhm div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-vyxqw8c2klhm div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-vyxqw8c2klhm .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-vyxqw8c2klhm .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 768px) {
	div.fl-node-vyxqw8c2klhm .pp-heading-content .pp-heading .heading-title {
		font-size: 24px;
		line-height: 1.1em;
	}
}
 .fl-node-vyxqw8c2klhm > .fl-module-content {
	margin-top:40px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:10px;
}
@media ( max-width: 1000px ) {
 .fl-node-vyxqw8c2klhm.fl-module > .fl-module-content {
	margin-left:20px;
}
}
@media ( max-width: 768px ) {
 .fl-node-vyxqw8c2klhm.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:12px;
	margin-left:0px;
}
}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-ekrxa89ipsgo .pp-heading-content {
	text-align: left;
}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading {
		}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-sub-heading,
div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-ekrxa89ipsgo .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-ekrxa89ipsgo .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1000px) {
	div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-ekrxa89ipsgo .pp-heading-content {
				text-align: ;
			}
	div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-ekrxa89ipsgo .pp-heading-content {
				text-align: ;
			}
	div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading .heading-title {
	font-size: 28px;
}
div.fl-node-ekrxa89ipsgo div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-ekrxa89ipsgo div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-ekrxa89ipsgo div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-ekrxa89ipsgo div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-ekrxa89ipsgo .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-ekrxa89ipsgo .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1000px) {
	div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
	}
}
@media(max-width: 768px) {
	div.fl-node-ekrxa89ipsgo .pp-heading-content .pp-heading .heading-title {
		font-size: 24px;
		line-height: 1.1em;
	}
}
 .fl-node-ekrxa89ipsgo > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-ekrxa89ipsgo.fl-module > .fl-module-content {
	margin-top:20px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-ekrxa89ipsgo.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:12px;
	margin-left:0px;
}
}
 .fl-node-9rphfque87sn.fl-module-html {
	margin-right:45px;
	margin-left:45px;
}
@media ( max-width: 1000px ) {
 .fl-node-9rphfque87sn.fl-module-html.fl-module {
	margin-right:20px;
	margin-left:10px;
}
}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-tkpx3morq4jl .pp-heading-content {
	text-align: center;
}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading {
		}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
									display: inline;
	}
div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
			border-bottom-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-tkpx3morq4jl .pp-heading-content .pp-sub-heading,
div.fl-node-tkpx3morq4jl .pp-heading-content .pp-sub-heading p {
	}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: center;
	}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #d1c0aa;
			width: 100px;
			margin: 0 auto;
	}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-tkpx3morq4jl .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-tkpx3morq4jl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1000px) {
	div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-tkpx3morq4jl .pp-heading-content {
				text-align: ;
			}
	div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-tkpx3morq4jl .pp-heading-content {
				text-align: ;
			}
	div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading .heading-title {
	font-size: 20px;
}
div.fl-node-tkpx3morq4jl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-tkpx3morq4jl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-tkpx3morq4jl div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-tkpx3morq4jl div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-tkpx3morq4jl .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-tkpx3morq4jl .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-tkpx3morq4jl .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
 .fl-node-tkpx3morq4jl > .fl-module-content {
	margin-top:20px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media (max-width: 768px) { .fl-node-tkpx3morq4jl > .fl-module-content { margin-left:20px;margin-right:20px; } }
div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-0radshqxce3y .pp-heading-content {
	text-align: left;
}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading {
		}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-0radshqxce3y .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-0radshqxce3y .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-0radshqxce3y .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-0radshqxce3y .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-0radshqxce3y .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-0radshqxce3y .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-0radshqxce3y .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-0radshqxce3y .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-0radshqxce3y .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-0radshqxce3y .pp-heading-content .pp-sub-heading,
div.fl-node-0radshqxce3y .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

div.fl-node-0radshqxce3y .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-0radshqxce3y .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-0radshqxce3y .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1000px) {
	div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-0radshqxce3y .pp-heading-content {
				text-align: ;
			}
	div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-0radshqxce3y .pp-heading-content {
				text-align: ;
			}
	div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-0radshqxce3y .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-0radshqxce3y .pp-heading-content .pp-heading .heading-title {
	font-size: 28px;
}
div.fl-node-0radshqxce3y div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-0radshqxce3y div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-0radshqxce3y div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-0radshqxce3y div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-0radshqxce3y .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-0radshqxce3y .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1000px) {
	div.fl-node-0radshqxce3y .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
	}
}
@media(max-width: 768px) {
	div.fl-node-0radshqxce3y .pp-heading-content .pp-heading .heading-title {
		font-size: 24px;
		line-height: 1.1em;
	}
}
 .fl-node-0radshqxce3y > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-0radshqxce3y.fl-module > .fl-module-content {
	margin-top:20px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-0radshqxce3y.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:12px;
	margin-left:0px;
}
}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-eiwfocgt25d7 .pp-heading-content {
	text-align: left;
}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading {
		}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-sub-heading,
div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-eiwfocgt25d7 .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-eiwfocgt25d7 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1000px) {
	div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-eiwfocgt25d7 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-eiwfocgt25d7 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading .heading-title {
	font-size: 32px;
}
div.fl-node-eiwfocgt25d7 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-eiwfocgt25d7 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-eiwfocgt25d7 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-eiwfocgt25d7 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-eiwfocgt25d7 .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-eiwfocgt25d7 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-eiwfocgt25d7 .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
 .fl-node-eiwfocgt25d7 > .fl-module-content {
	margin-top:80px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 1000px ) {
 .fl-node-eiwfocgt25d7.fl-module > .fl-module-content {
	margin-left:10px;
}
}
@media (max-width: 768px) { .fl-node-eiwfocgt25d7 > .fl-module-content { margin-top:20px;margin-right:20px; } }
div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-4qc2s0kzupt3 .pp-heading-content {
	text-align: left;
}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading {
		}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-sub-heading,
div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-4qc2s0kzupt3 .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-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1000px) {
	div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-4qc2s0kzupt3 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-4qc2s0kzupt3 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading .heading-title {
	font-size: 28px;
}
div.fl-node-4qc2s0kzupt3 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-4qc2s0kzupt3 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-4qc2s0kzupt3 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-4qc2s0kzupt3 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-4qc2s0kzupt3 .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-4qc2s0kzupt3 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1000px) {
	div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
	}
}
@media(max-width: 768px) {
	div.fl-node-4qc2s0kzupt3 .pp-heading-content .pp-heading .heading-title {
		font-size: 24px;
		line-height: 1.1em;
	}
}
 .fl-node-4qc2s0kzupt3 > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-4qc2s0kzupt3.fl-module > .fl-module-content {
	margin-top:20px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-4qc2s0kzupt3.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:12px;
	margin-left:0px;
}
}
 .fl-node-vu4idh2me8fx.fl-module-html {
	margin-left:40px;
}
@media ( max-width: 1000px ) {
 .fl-node-vu4idh2me8fx.fl-module-html.fl-module {
	margin-left:10px;
}
}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-yzxqh91krbaj .pp-heading-content {
	text-align: left;
}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading {
		}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-yzxqh91krbaj .pp-heading-content .pp-sub-heading,
div.fl-node-yzxqh91krbaj .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-yzxqh91krbaj .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-yzxqh91krbaj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1000px) {
	div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-yzxqh91krbaj .pp-heading-content {
				text-align: ;
			}
	div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-yzxqh91krbaj .pp-heading-content {
				text-align: ;
			}
	div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading .heading-title {
	font-size: 28px;
}
div.fl-node-yzxqh91krbaj div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-yzxqh91krbaj div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-yzxqh91krbaj div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-yzxqh91krbaj div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-yzxqh91krbaj .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-yzxqh91krbaj .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1000px) {
	div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading .heading-title {
		font-size: 20px;
	}
}
@media(max-width: 768px) {
	div.fl-node-yzxqh91krbaj .pp-heading-content .pp-heading .heading-title {
		font-size: 24px;
		line-height: 1.1em;
	}
}
 .fl-node-yzxqh91krbaj > .fl-module-content {
	margin-top:10px;
	margin-right:10px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 1000px ) {
 .fl-node-yzxqh91krbaj.fl-module > .fl-module-content {
	margin-top:20px;
	margin-left:0px;
}
}
@media ( max-width: 768px ) {
 .fl-node-yzxqh91krbaj.fl-module > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:12px;
	margin-left:0px;
}
}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-tbsw6jg8p5nf .pp-heading-content {
	text-align: left;
}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading {
		}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100px;
			border-bottom-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-sub-heading,
div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100px;
			border-style: solid;
				border-bottom-width: 1px;
	}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
				width: 100px;
			float: left;
	}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-tbsw6jg8p5nf .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-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1000px) {
	div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-tbsw6jg8p5nf .pp-heading-content {
				text-align: ;
			}
	div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-tbsw6jg8p5nf .pp-heading-content {
				text-align: ;
			}
	div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading .heading-title {
	font-size: 32px;
}
div.fl-node-tbsw6jg8p5nf div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-tbsw6jg8p5nf div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-tbsw6jg8p5nf div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-tbsw6jg8p5nf div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-tbsw6jg8p5nf .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-tbsw6jg8p5nf .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
@media(max-width: 768px) {
	div.fl-node-tbsw6jg8p5nf .pp-heading-content .pp-heading .heading-title {
		font-size: 27px;
	}
}
 .fl-node-tbsw6jg8p5nf > .fl-module-content {
	margin-top:80px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 1000px ) {
 .fl-node-tbsw6jg8p5nf.fl-module > .fl-module-content {
	margin-right:20px;
	margin-left:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-tbsw6jg8p5nf.fl-module > .fl-module-content {
	margin-right:10px;
}
}
@media (max-width: 768px) { .fl-node-tbsw6jg8p5nf > .fl-module-content { margin-top:20px; } }	.fl-builder-content .fl-node-uk4pyihxvbtn.fl-module-rich-text.fl-rich-text,
	.fl-builder-content .fl-node-uk4pyihxvbtn.fl-module-rich-text.fl-rich-text * {
		color: rgb(255, 255, 255);
	}
	.fl-builder-content .fl-node-uk4pyihxvbtn.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-uk4pyihxvbtn.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 15px;
}
 .fl-node-uk4pyihxvbtn.fl-module-rich-text {
	margin-left:0px;
}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-prefix {
	}

div.fl-node-62nu37rloxwa .pp-heading-content {
	text-align: left;
}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading {
		}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading .heading-title span.title-text {
	display: inline;
	}


div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
								text-transform: uppercase;
					display: inline;
	}
div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
					display: inline;
		margin-left: 0px;
}
div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading.pp-separator--inline,
div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading:not(.pp-separator--inline) .heading-title {
		margin-top: 10px;
			margin-bottom: 10px;
	}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-primary-title,
div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading .heading-title.text-inline-block span.pp-secondary-title {
	display: inline-block;
}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 100%;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 100%;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 100%;
			border-bottom-style: solid;
			border-bottom-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


div.fl-node-62nu37rloxwa .pp-heading-content .pp-sub-heading,
div.fl-node-62nu37rloxwa .pp-heading-content .pp-sub-heading p {
		color: rgb(255, 255, 255);
	}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-sub-heading p:last-of-type {
	margin-bottom: 0;
}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator .pp-heading-separator-align {
		text-align: left;
	}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator.line_with_icon {
	}
div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator.line_with_icon:before {
		margin-right: 20px;
		}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator.line_with_icon:after {
		margin-left: 20px;
		}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator.line_with_icon.pp-left:after {
	left: 1%;
}
div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator.line_with_icon.pp-right:before {
	right: 1%;
}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 100%;
			border-style: solid;
			border-color: #d1c0aa;
			border-bottom-width: 1px;
	}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator .heading-icon-image {
	}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 1px;
			border-bottom-color: #d1c0aa;
			width: 100%;
			float: left;
	}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator:not(.inline) {
	}


div.fl-node-62nu37rloxwa .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-62nu37rloxwa .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i,
div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator .pp-heading-separator-icon i:before {
					font-size: 16px;
			}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator.icon_only span {
			border-radius: 100px;
			border-width: 0px;
			border-style: none;
		}

div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator.icon_only img,
div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator.line_with_icon img {
		border-radius: 100px;
	}


@media only screen and (max-width: 1000px) {
	div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-62nu37rloxwa .pp-heading-content {
				text-align: ;
			}
	div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-prefix {
									}
	}

@media only screen and (max-width: 768px) {
	div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-62nu37rloxwa .pp-heading-content {
				text-align: ;
			}
	div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading .heading-title {
	font-weight: 800;
	font-size: 26px;
}
div.fl-node-62nu37rloxwa div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-62nu37rloxwa div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-62nu37rloxwa div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-62nu37rloxwa div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-62nu37rloxwa .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-62nu37rloxwa .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
@media(max-width: 1200px) {
	div.fl-node-62nu37rloxwa .pp-heading-content .pp-heading .heading-title {
		font-size: 30px;
	}
}
 .fl-node-62nu37rloxwa > .fl-module-content {
	margin-top:20px;
	margin-right:40px;
	margin-bottom:0px;
	margin-left:40px;
}
@media ( max-width: 1000px ) {
 .fl-node-62nu37rloxwa.fl-module > .fl-module-content {
	margin-right:20px;
	margin-left:10px;
}
}
@media ( max-width: 768px ) {
 .fl-node-62nu37rloxwa.fl-module > .fl-module-content {
	margin-right:10px;
}
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */
@media screen and (min-width: 768px) {
.cobb-number-counter {
    padding-top: 110px !important;
}
.fl-node-c7sfri3jt2zx > .fl-row-content-wrap {
    background-position: -120px 110%!important;
}
}

.fl-node-2315tezhdaub .pp-subscribe-form .pp-form-button {
    margin-bottom: 10px;
}

.fl-node-c7sfri3jt2zx > .fl-row-content-wrap {
    background-position: -20% 200px!important;
}

.logo-bg {
    background-position: -120px -350%!important;
}


.stack-wrapper {
  position: relative;
}

@media screen and (min-width:769px) {
.stack-card {
  position: sticky;
  top: 60px; 
  transform: translateZ(0);
}
}

.card-1 {
  z-index: 1;

}

.card-2 {
  z-index: 2;
top:120px;
}

.card-3 {
  z-index: 3;
  top:160px;
}

.ccc-video {
    border-radius: 12px!important;
}
.uabb-progress-value, .uabb-progress-title {
    display: none !important;
}

.ccc25-annual-report-line-graph {
  --ccc25-text: #fff;
  --ccc25-grid: #d7ddd9;
  --ccc25-axis: #9aa7a1;
  --ccc25-combined: #9dc5ce!important;
  --ccc25-galleria: #c27258!important;
  --ccc25-energy: #AEC07C!important;
  --ccc25-tooltip-bg: rgba(3, 24, 43, 0.96);
  --ccc25-tooltip-text: #ffffff;
  color: var(--ccc25-text);
  font-family: inherit;
}
.ccc25-annual-report-line-graph__legend-btn{
    border:2px solid #00414A!important;
}
.ccc25-annual-report-line-graph__legend-btn:hover {
    background-color:#00414A!important;
    border: 2px solid #fff!important;
}

.fl-module-progress-bar .uabb-pb-list {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: flex-start !important;
  text-align: center;
}

.fl-module-progress-bar .uabb-pb-list > li {
  flex: 1 1 0 !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 50% !important;
}
@media screen and (max-width:768px) {
    .pp-table-header-text {
        display: none!important;
    }
}
/* End Layout CSS */

.fl-node-egzbkt5im93s .fl-node-3h0q9xfigk27 > .fl-col-content {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.fl-node-to5gyaz0pkrq .fl-node-3h0q9xfigk27 > .fl-col-content {
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
/* Equal height Column Bottom Alignment */
.fl-col-group-equal-height.fl-col-group-align-bottom .fl-col-content {
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
          -webkit-box-align: end;
           -webkit-box-pack: end;
              -ms-flex-pack: end;
}

/* H1-H6 Margin Reset in all Modules */
.uabb-module-content h1,
.uabb-module-content h2,
.uabb-module-content h3,
.uabb-module-content h4,
.uabb-module-content h5,
.uabb-module-content h6 {
    margin: 0;
    clear: both;
}

/* Anchor Tag Css */

.fl-module-content a,
.fl-module-content a:hover,
.fl-module-content a:focus {
    text-decoration: none;
}

/* Row Separator CSS */

.uabb-row-separator {
    position: absolute;
    width: 100%;
    left: 0;
}

.uabb-top-row-separator {
    top: 0;
    bottom: auto
}

.uabb-bottom-row-separator {
    top: auto;
    bottom: 0;
}

.fl-builder-content-editing .fl-visible-medium.uabb-row,
.fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
.fl-builder-content-editing .fl-visible-mobile.uabb-row {
    display: none !important;
}

@media (max-width: 992px) {

    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .fl-builder-content-editing .fl-visible-desktop.uabb-row,
    .fl-builder-content-editing .fl-visible-desktop-medium.uabb-row,
    .fl-builder-content-editing .fl-visible-medium.uabb-row {
        display: none !important;
    }

    .fl-builder-content-editing .fl-visible-medium-mobile.uabb-row,
    .fl-builder-content-editing .fl-visible-mobile.uabb-row {
        display: block !important;
    }
}

.fl-responsive-preview-content .fl-builder-content-editing {
    overflow-x: hidden;
    overflow-y: visible;
}

.uabb-row-separator svg {
    width: 100%;
}

.uabb-top-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    top: -1px;
    bottom: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-has-svg svg {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 50%;
    bottom: -1px;
    top: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
.uabb-bottom-row-separator.uabb-has-svg .uasvg-wave-separator {
    bottom: 0;
}
.uabb-top-row-separator.uabb-has-svg .uasvg-wave-separator {
    top: 0;
}

/**
 *
 *  Svg Triangle Separator
 *  Big Triangle Separator
 *  Big Triangle Left Separator
 *  Svg Half Circle Separator
 *  Curve Center Separator
 *  Waves Separator
 *  Stamp
 *  Grass
 *  Slime
 *  Grass Bend
 *  Wave Slide
 *  Muliple Triangles
 *  Pine Tree
 *  Pine Tree Bend
 *
 ***************************************/
.uabb-bottom-row-separator.uabb-svg-triangle svg,
.uabb-bottom-row-separator.uabb-xlarge-triangle svg,
.uabb-top-row-separator.uabb-xlarge-triangle-left svg,
.uabb-bottom-row-separator.uabb-svg-circle svg,
.uabb-top-row-separator.uabb-slime-separator svg,
.uabb-top-row-separator.uabb-grass-separator svg,
.uabb-top-row-separator.uabb-grass-bend-separator svg,
.uabb-bottom-row-separator.uabb-mul-triangles-separator svg,
.uabb-top-row-separator.uabb-wave-slide-separator svg,
.uabb-top-row-separator.uabb-pine-tree-separator svg,
.uabb-top-row-separator.uabb-pine-tree-bend-separator svg,
.uabb-bottom-row-separator.uabb-stamp-separator svg,
.uabb-bottom-row-separator.uabb-xlarge-circle svg,
.uabb-top-row-separator.uabb-wave-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

/*
 *  Big Triangle
*/
.uabb-bottom-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: scale(1) scaleY(-1) translateX(-50%);
       -moz-transform: scale(1) scaleY(-1) translateX(-50%);
        -ms-transform: scale(1) scaleY(-1) translateX(-50%);
         -o-transform: scale(1) scaleY(-1) translateX(-50%);
            transform: scale(1) scaleY(-1) translateX(-50%);
}

.uabb-top-row-separator.uabb-big-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1);
       -moz-transform: translateX(-50%) scale(1);
        -ms-transform: translateX(-50%) scale(1);
         -o-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
}

/**
 *
 *  Big Triangle Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-xlarge-triangle-right svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

/**
 *
 *  Curve Left Separator
 *  Curve Right Separator
 *
 ***************************************/
.uabb-top-row-separator.uabb-curve-up-separator svg {
    left: 50%;
     -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-top-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-bottom-row-separator.uabb-curve-down-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}


/**
 *
 *  Tilt Left Separator
 *  Tilt Right Separator
 *
 ***************************************/

.uabb-top-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scale(-1);
       -moz-transform: translateX(-50%) scale(-1);
        -ms-transform: translateX(-50%) scale(-1);
         -o-transform: translateX(-50%) scale(-1);
            transform: translateX(-50%) scale(-1);
}

.uabb-top-row-separator.uabb-tilt-right-separator svg{
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-tilt-left-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}

.uabb-bottom-row-separator.uabb-tilt-right-separator svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(-1);
       -moz-transform: translateX(-50%) scaleX(-1);
        -ms-transform: translateX(-50%) scaleX(-1);
         -o-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
}

.uabb-top-row-separator.uabb-tilt-left-separator,
.uabb-top-row-separator.uabb-tilt-right-separator {
    top: 0;
}

.uabb-bottom-row-separator.uabb-tilt-left-separator,
.uabb-bottom-row-separator.uabb-tilt-right-separator {
    bottom: 0;
}

/**
 *
 *  Clouds Separator
 *  Multi Triangle
 *  Arrow Inward
 *  Arrow Outward
 *
 ***************************************/

.uabb-top-row-separator.uabb-arrow-outward-separator svg,
.uabb-top-row-separator.uabb-arrow-inward-separator svg,
.uabb-top-row-separator.uabb-cloud-separator svg,
.uabb-top-row-separator.uabb-multi-triangle svg {
    left: 50%;
    -webkit-transform: translateX(-50%) scaleY(-1);
       -moz-transform: translateX(-50%) scaleY(-1);
        -ms-transform: translateX(-50%) scaleY(-1);
         -o-transform: translateX(-50%) scaleY(-1);
            transform: translateX(-50%) scaleY(-1);
}

.uabb-bottom-row-separator.uabb-multi-triangle svg {
    bottom: -2px;
}

.uabb-row-separator.uabb-round-split:after,
.uabb-row-separator.uabb-round-split:before {
    left: 0;
    width: 50%;
    background: inherit inherit/inherit inherit inherit inherit;
    content: '';
    position: absolute
}


/* Buttons
------------------------------------------------------ */

.uabb-button-wrap a,
.uabb-button-wrap a:visited {
    display: inline-block;
    font-size: 16px;
    line-height: 18px;
    text-decoration: none;
    text-shadow: none;
}

.fl-builder-content .uabb-button:hover {
    text-decoration: none;
}

.fl-builder-content .uabb-button-width-full .uabb-button {
    display: block;
    text-align: center;
}

.uabb-button-width-custom .uabb-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.fl-builder-content .uabb-button-left {
    text-align: left;
}
.fl-builder-content .uabb-button-center {
    text-align: center;
}
.fl-builder-content .uabb-infobox .uabb-button-center,
.fl-builder-content .uabb-modal-action-wrap .uabb-button-center,
.fl-builder-content .uabb-ultb3-box .uabb-button-center,
.fl-builder-content .uabb-slide-down .uabb-button-center,
.fl-builder-content .uabb-blog-post-content .uabb-button-center,
.fl-builder-content .uabb-cta-wrap .uabb-button-center,
.fl-builder-content .fl-module-uabb-off-canvas .uabb-button-wrap .uabb-button-center{ 
     text-align: inherit;
}

.fl-builder-content .uabb-button-right {
    text-align: right;
}

.fl-builder-content .uabb-button i,
.fl-builder-content .uabb-button i:before {
    font-size: 1em;
    height: 1em;
    line-height: 1em;
    width: 1em;
}

.uabb-button .uabb-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-button .uabb-button-icon-before {
    margin-left: 0;
    margin-right: 8px;
}
.uabb-button .uabb-button-icon-no-text {
    margin: 0;
}
.uabb-button-has-icon .uabb-button-text {
    vertical-align: middle;
}

/* Icons
------------------------------------------------------ */

.uabb-icon-wrap {
    display: inline-block;
}
.uabb-icon a {
    text-decoration: none;
}
.uabb-icon i {
    display: block;
}
.uabb-icon i:before {
    border: none !important;
    background: none !important;
}
.uabb-icon-text {
    display: table-cell;
    text-align: left;
    padding-left: 15px;
    vertical-align: middle;
}
.uabb-icon-text *:last-child {
    margin: 0 !important;
    padding: 0 !important;
}
.uabb-icon-text a {
    text-decoration: none;
}

/* Photos
------------------------------------------------------ */

.uabb-photo {
    line-height: 0;
    position: relative;
    z-index: 2;
}
.uabb-photo-align-left {
    text-align: left;
}
.uabb-photo-align-center {
    text-align: center;
}
.uabb-photo-align-right {
    text-align: right;
}
.uabb-photo-content {
    border-radius: 0;
    display: inline-block;
    line-height: 0;
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.uabb-photo-content img {
    border-radius: inherit;
    display: inline;
    height: auto;
    max-width: 100%;
    width: auto;
}
.fl-builder-content .uabb-photo-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-photo-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.uabb-photo-caption {
    font-size: 13px;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.uabb-photo-caption-below {
    padding-bottom: 20px;
    padding-top: 10px;
}
.uabb-photo-caption-hover {
    background: rgba(0,0,0,0.7);
    bottom: 0;
    color: #fff;
    left: 0;
    opacity: 0;
    visibility: hidden;
    filter: alpha(opacity = 0);
    padding: 10px 15px;
    position: absolute;
    right: 0;
    -webkit-transition:visibility 200ms linear;
    -moz-transition:visibility 200ms linear;
    transition:visibility 200ms linear;
}
.uabb-photo-content:hover .uabb-photo-caption-hover {
    opacity: 100;
    visibility: visible;
}

/* Panel & Buttons
------------------------------------------------------ */
.uabb-active-btn {
    background: #1e8cbe;
    border-color: #0074a2;
    -webkit-box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    box-shadow: inset 0 1px 0 rgba(120,200,230,.6);
    color: white;
}
.fl-builder-bar .fl-builder-add-content-button {
    display: block !important;
    opacity: 1 !important;
}

/* Image Icon Object */
.uabb-imgicon-wrap .uabb-icon {
    display: block;
}
.uabb-imgicon-wrap .uabb-icon i{
    float: none;
}

/* Photo */
.uabb-imgicon-wrap .uabb-image {
    line-height: 0;
    position: relative;
}
.uabb-imgicon-wrap .uabb-image-align-left {
    text-align: left;
}
.uabb-imgicon-wrap .uabb-image-align-center {
    text-align: center;
}
.uabb-imgicon-wrap .uabb-image-align-right {
    text-align: right;
}
.uabb-imgicon-wrap .uabb-image-content {
    display: inline-block;
    border-radius: 0;
    line-height: 0;
    position: relative;
    max-width: 100%;
}
.uabb-imgicon-wrap .uabb-image-content img {
    display: inline;
    height: auto !important;
    max-width: 100%;
    width: auto;
    border-radius: inherit;
    box-shadow: none;
    box-sizing: content-box;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-circle img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}
.fl-builder-content .uabb-imgicon-wrap .uabb-image-crop-square img {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}


/* Creative Button
___________________________________________________________________________*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    background: #fafafa;
    border: 1px solid #ccc;
    color: #333;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    overflow: hidden;
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
    position: relative;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;

}

.uabb-creative-button-wrap a:focus {
    text-decoration: none;
    text-shadow: none;
    box-shadow: none;
}

.uabb-creative-button-wrap a .uabb-creative-button-text,
.uabb-creative-button-wrap a .uabb-creative-button-icon,
.uabb-creative-button-wrap a:visited .uabb-creative-button-text,
.uabb-creative-button-wrap a:visited .uabb-creative-button-icon {
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button-wrap a:hover {
    text-decoration: none;
}

.uabb-creative-button-wrap .uabb-creative-button-width-full .uabb-creative-button {
    display: block;
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-width-custom .uabb-creative-button {
    display: inline-block;
    text-align: center;
    max-width: 100%;
}
.uabb-creative-button-wrap .uabb-creative-button-left {
    text-align: left;
}
.uabb-creative-button-wrap .uabb-creative-button-center {
    text-align: center;
}
.uabb-creative-button-wrap .uabb-creative-button-right {
    text-align: right;
}
.uabb-creative-button-wrap .uabb-creative-button i {
    font-size: 1.3em;
    height: auto;
    vertical-align: middle;
    width: auto;
}

.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-after {
    margin-left: 8px;
    margin-right: 0;
}
.uabb-creative-button-wrap .uabb-creative-button .uabb-creative-button-icon-before {
    margin-right: 8px;
    margin-left: 0;
}
.uabb-creative-button-wrap.uabb-creative-button-icon-no-text .uabb-creative-button i {
    margin: 0;
}

.uabb-creative-button-wrap .uabb-creative-button-has-icon .uabb-creative-button-text {
    vertical-align: middle;
}
.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
    padding: 12px 24px;
}

/*  Translate Button styles */

.uabb-creative-button.uabb-creative-transparent-btn {
    background: transparent;
}
.uabb-creative-button.uabb-creative-transparent-btn:after {
    content: '';
    position: absolute;
    z-index: 1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
}

/* transparent-fill-top, transparent-fill-bottom  */
.uabb-transparent-fill-top-btn:after,
.uabb-transparent-fill-bottom-btn:after {
    width: 100%;
    height: 0;
    left: 0;
}

/* transparent-fill-top */
.uabb-transparent-fill-top-btn:after {
    top: 0;
}
/* transparent-fill-bottom */
.uabb-transparent-fill-bottom-btn:after {
    bottom: 0;
}

/* transparent-fill-left, transparent-fill-right */
.uabb-transparent-fill-left-btn:after,
.uabb-transparent-fill-right-btn:after {
    width: 0;
    height: 100%;
    top: 0;
}

/* transparent-fill-left */
.uabb-transparent-fill-left-btn:after {
    left: 0;
}
/* transparent-fill-right */
.uabb-transparent-fill-right-btn:after {
    right: 0;
}


/* transparent-fill-center */
.uabb-transparent-fill-center-btn:after{
    width: 0;
    height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}

/*  transparent-fill-diagonal, transparent-fill-horizontal  */
.uabb-transparent-fill-diagonal-btn:after,
.uabb-transparent-fill-horizontal-btn:after {
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
}

/*  transparent-fill-diagonal */
.uabb-transparent-fill-diagonal-btn{
    overflow: hidden;
}
.uabb-transparent-fill-diagonal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
       -moz-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
        -ms-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
         -o-transform: translateX(-50%) translateY(-50%) rotate( 45deg );
            transform: translateX(-50%) translateY(-50%) rotate( 45deg );
}
/* transparent-fill-horizontal */
.uabb-transparent-fill-horizontal-btn:after{
    -webkit-transform: translateX(-50%) translateY(-50%);
       -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
         -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
}


/*  3D Button styles */
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_down-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_up-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_left-btn,
.uabb-creative-button-wrap .uabb-creative-threed-btn.uabb-threed_right-btn {
    -webkit-transition: none;
       -moz-transition: none;
        -ms-transition: none;
         -o-transition: none;
            transition: none;
}

.perspective {
    -webkit-perspective: 800px;
       -moz-perspective: 800px;
            perspective: 800px;
            margin: 0;
}
.uabb-creative-button.uabb-creative-threed-btn:after {
    content: '';
    position: absolute;
    z-index: -1;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
}

.uabb-creative-button.uabb-creative-threed-btn {
    outline: 1px solid transparent;
    -webkit-transform-style: preserve-3d;
       -moz-transform-style: preserve-3d;
            transform-style: preserve-3d;
}

/*  3D Button styles --- Animate to top */
.uabb-creative-threed-btn.uabb-animate_top-btn:after {
    height: 40%;
    left: 0;
    top: -40%;
    width: 100%;
    -webkit-transform-origin: 0% 100%;
       -moz-transform-origin: 0% 100%;
            transform-origin: 0% 100%;
    -webkit-transform: rotateX(90deg);
       -moz-transform: rotateX(90deg);
            transform: rotateX(90deg);
}

/*  3D Button styles --- Animate to bottom */
.uabb-creative-threed-btn.uabb-animate_bottom-btn:after {
    width: 100%;
    height: 40%;
    left: 0;
    top: 100%;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateX(-90deg);
       -moz-transform: rotateX(-90deg);
        -ms-transform: rotateX(-90deg);
            transform: rotateX(-90deg);
}

/*  3D Button styles --- Animate to Left */
.uabb-creative-threed-btn.uabb-animate_left-btn:after {
    width: 20%;
    height: 100%;
    left: -20%;
    top: 0;
    -webkit-transform-origin: 100% 0%;
       -moz-transform-origin: 100% 0%;
        -ms-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    -webkit-transform: rotateY(-60deg);
       -moz-transform: rotateY(-60deg);
        -ms-transform: rotateY(-60deg);
            transform: rotateY(-60deg);
}

/*  3D Button styles --- Animate to Right */
.uabb-creative-threed-btn.uabb-animate_right-btn:after {
    width: 20%;
    height: 100%;
    left: 104%;
    top: 0;
    -webkit-transform-origin: 0% 0%;
       -moz-transform-origin: 0% 0%;
        -ms-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
    -webkit-transform: rotateY(120deg);
       -moz-transform: rotateY(120deg);
        -ms-transform: rotateY(120deg);
            transform: rotateY(120deg);
}


/* Animate Top */
.uabb-animate_top-btn:hover{
    -webkit-transform: rotateX(-15deg);
       -moz-transform: rotateX(-15deg);
        -ms-transform: rotateX(-15deg);
         -o-transform: rotateX(-15deg);
            transform: rotateX(-15deg);

}

/* Animate Bottom */
.uabb-animate_bottom-btn:hover{
    -webkit-transform: rotateX(15deg);
       -moz-transform: rotateX(15deg);
        -ms-transform: rotateX(15deg);
         -o-transform: rotateX(15deg);
            transform: rotateX(15deg);

}

/* Animate Left */
.uabb-animate_left-btn:hover{
    -webkit-transform: rotateY(6deg);
       -moz-transform: rotateY(6deg);
        -ms-transform: rotateY(6deg);
         -o-transform: rotateY(6deg);
            transform: rotateY(6deg);
}

/* Animate Right */
.uabb-animate_right-btn:hover{
    -webkit-transform: rotateY(-6deg);
       -moz-transform: rotateY(-6deg);
        -ms-transform: rotateY(-6deg);
         -o-transform: rotateY(-6deg);
            transform: rotateY(-6deg);

}

/*  Flat Button styles  */

/*  Common Classes  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn,
.uabb-creative-flat-btn.uabb-animate_to_left-btn,
.uabb-creative-flat-btn.uabb-animate_from_top-btn,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn {
    overflow: hidden;
    position: relative;
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    bottom: 0;
    height: 100%;
    margin: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    width: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
         -o-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
}

.uabb-creative-flat-btn.uabb-animate_to_right-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_to_left-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_top-btn .uabb-button-text,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn .uabb-button-text {
    display: inline-block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 200ms linear;
       -moz-transition: all 200ms linear;
        -ms-transition: all 200ms linear;
         -o-transition: all 200ms linear;
            transition: all 200ms linear;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;
}

/*  Making Icon position center  */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i:before,
.uabb-creative-flat-btn.uabb-animate_to_left-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_top-btn i:before,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

/*  Common Hover Classes */
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover i {
    left: 0;
}
.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover i,
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover i {
    top: 0;
}

/*  Animate Icon to the right */
.uabb-creative-flat-btn.uabb-animate_to_right-btn i {
    top: 0;
    left: -100%;
}
.uabb-creative-flat-btn.uabb-animate_to_right-btn:hover .uabb-button-text {
    -webkit-transform: translateX(200%);
       -moz-transform: translateX(200%);
        -ms-transform: translateX(200%);
         -o-transform: translateX(200%);
            transform: translateX(200%);
}

/*  Animate Icon to the left */
.uabb-creative-flat-btn.uabb-animate_to_left-btn i {
    top: 0;
    left: 100%;
}

.uabb-creative-flat-btn.uabb-animate_to_left-btn:hover .uabb-button-text {
    -webkit-transform: translateX(-200%);
       -moz-transform: translateX(-200%);
        -ms-transform: translateX(-200%);
         -o-transform: translateX(-200%);
            transform: translateX(-200%);
}


/*  Animate Icon From the Top */
.uabb-creative-flat-btn.uabb-animate_from_top-btn i {
    top: -100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_top-btn:hover .uabb-button-text {
    -webkit-transform: translateY(400px);
       -moz-transform: translateY(400px);
        -ms-transform: translateY(400px);
         -o-transform: translateY(400px);
            transform: translateY(400px);
}

/*  Animate Icon From the Bottom */
.uabb-creative-flat-btn.uabb-animate_from_bottom-btn i {
    top: 100%;
    left: 0;
}

.uabb-creative-flat-btn.uabb-animate_from_bottom-btn:hover .uabb-button-text {
    -webkit-transform: translateY(-400px);
       -moz-transform: translateY(-400px);
        -ms-transform: translateY(-400px);
         -o-transform: translateY(-400px);
            transform: translateY(-400px);
}

/* Media/Video CSS */
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode, 
.uabb-tab-acc-content .mejs-container:not(.mejs-audio), 
.uabb-tab-acc-content .mejs-overlay.load,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode, 
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio), 
.uabb-adv-accordion-content .mejs-overlay.load {
    width: 100% !important;
    height: 100% !important;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio),
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) {
    padding-top: 56.25%;
}
.uabb-tab-acc-content .wp-video, 
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content .wp-video, 
.uabb-adv-accordion-content video.wp-video-shortcode {
    max-width: 100% !important;
}
.uabb-tab-acc-content video.wp-video-shortcode,
.uabb-adv-accordion-content video.wp-video-shortcode {
    position: relative;
}
.uabb-tab-acc-content .mejs-container:not(.mejs-audio) .mejs-mediaelement,
.uabb-adv-accordion-content .mejs-container:not(.mejs-audio) .mejs-mediaelement {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.uabb-tab-acc-content .mejs-overlay-play,
.uabb-adv-accordion-content .mejs-overlay-play {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto !important;
    height: auto !important;
}
.fl-row-content-wrap .uabb-row-particles-background,
.uabb-col-particles-background {
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
}
/* Theme Button
------------------------------------------------------ */
/*.fl-builder-content a.uabb-button,
.fl-builder-content a.uabb-button:visited,
.fl-builder-content a.uabb-creative-button,
.fl-builder-content a.uabb-creative-button:visited*/

.uabb-creative-button-wrap a,
.uabb-creative-button-wrap a:visited {
		
	
	
	
	}

.uabb-dual-button .uabb-btn,
.uabb-dual-button .uabb-btn:visited {
			
	
	
	}


/* Responsive Js Breakpoint Css */

.uabb-js-breakpoint {
	content:"default";
	display:none;
}
@media screen and (max-width: 1000px) {
	.uabb-js-breakpoint {
		content:"1000";
	}
}

@media screen and (max-width: 768px) {
	.uabb-js-breakpoint {
		content:"768";
	}
}


																																		
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																							
					
					
					
																
					
					
					
																							
					
					
					
																
					
					
					
																																																										
					
					
					
																														
					
					
					
																
					
					
					
																
					
					
					
																							
					
					
					
																
					
					
					
																
					
					
					
																																					
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																							
					
					
					
																
					
					
					
																
					
					
					
																							
					
					
					
																							
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																																					
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																							
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
																
					
					
					
												
        			.fl-node-ljmc5t1nwy6g .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-6c74han01zw2 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-akquhjm09tnz .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-nmpfkejso2yu .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-u5vy9t2i63m8 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-oirtdlxjqgep .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-7c1jw2ivhfdt .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-kspb0o9h8zn6 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-jub95kwcf0qr .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-txg5ju0rlb32 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-l2d4gfwyh8up .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-9g60v4izo3b8 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-arh65qluowgd .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-whn6qbf1va2t .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-9sunh7fptcya .fl-row-content {
				min-width: 0px;
			}
		