/**
 * 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: 992px) { /* Columns
------------------------------------------------------ */

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 768px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-row-fixed-width {
	max-width: 1100px;
}
.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-green: #cbd378;
	--fl-global-light-green: #e0e69e;
	--fl-global-pink: #fbbea9;
	--fl-global-light-pink: #f6ded6;
	--fl-global-orange: #f0c47a;
	--fl-global-light-orange: #f8ebd4;
	--fl-global-teal: #cadacb;
	--fl-global-light-teal: #e9f1e8;
	--fl-global-text: #444141;
	--fl-global-hyperlink-pink: #e19278;
	--fl-global-button-color: var(--fl-global-text);
	--fl-global-button-hover-color: var(--fl-global-text);
	--fl-global-button-background: var(--fl-global-pink);
	--fl-global-button-hover-background: var(--fl-global-light-pink);
	--fl-global-button-font-family: "Roboto Slab", serif;
	--fl-global-button-font-weight: 400;
	--fl-global-button-font-size: 15px;
	--fl-global-button-font-size-large: 13px;
	--fl-global-button-font-size-medium: 13px;
	--fl-global-button-border-style: none;
	--fl-global-button-background-clip: border-box;
	--fl-global-button-border-top-left-radius: 100px;
	--fl-global-button-border-top-right-radius: 100px;
	--fl-global-button-border-bottom-left-radius: 100px;
	--fl-global-button-border-bottom-right-radius: 100px;
}
.fl-builder-content button:not(.fl-content-ui-button), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content .fl-button:is(a, button), .fl-builder-content button:not(.fl-content-ui-button) *, .fl-builder-content input[type=button] *, .fl-builder-content input[type=submit] *, .fl-builder-content .fl-button:is(a, button) *, .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-builder-content button:visited *, .fl-builder-content input[type=button]:visited *, .fl-builder-content input[type=submit]:visited *, .fl-builder-content a.fl-button:visited *, .fl-page .fl-builder-content button:not(.fl-content-ui-button), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content .fl-button:is(a, button), .fl-page .fl-builder-content button:not(.fl-content-ui-button) *, .fl-page .fl-builder-content input[type=button] *, .fl-page .fl-builder-content input[type=submit] *, .fl-page .fl-builder-content .fl-button:is(a, button) *, .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content button:visited *, .fl-page .fl-builder-content input[type=button]:visited *, .fl-page .fl-builder-content input[type=submit]:visited *, .fl-page .fl-builder-content a.fl-button:visited * {
	color: var(--fl-global-text);
}
.fl-builder-content button:not(.fl-content-ui-button):hover, .fl-builder-content input[type=button]:hover, .fl-builder-content input[type=submit]:hover, .fl-builder-content .fl-button:is(a, button):hover, .fl-builder-content button:not(.fl-content-ui-button):hover *, .fl-builder-content input[type=button]:hover *, .fl-builder-content input[type=submit]:hover *, .fl-builder-content .fl-button:is(a, button):hover *, .fl-page .fl-builder-content button:not(.fl-content-ui-button):hover, .fl-page .fl-builder-content input[type=button]:hover, .fl-page .fl-builder-content input[type=submit]:hover, .fl-page .fl-builder-content .fl-button:is(a, button):hover, .fl-page .fl-builder-content button:not(.fl-content-ui-button):hover *, .fl-page .fl-builder-content input[type=button]:hover *, .fl-page .fl-builder-content input[type=submit]:hover *, .fl-page .fl-builder-content .fl-button:is(a, button):hover * {
	color: var(--fl-global-text);
}
.fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-content-ui-button), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content .fl-button:is(a, button), .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-content-ui-button), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content .fl-button:is(a, button), .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited {
	background-color: var(--fl-global-pink);
}
.fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-content-ui-button):hover, .fl-builder-content input[type=button]:hover, .fl-builder-content input[type=submit]:hover, .fl-builder-content .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-module-content:not(:has(.fl-inline-editor)) button:not(.fl-content-ui-button):hover, .fl-page .fl-builder-content input[type=button]:hover, .fl-page .fl-builder-content input[type=submit]:hover, .fl-page .fl-builder-content .fl-button:is(a, button):hover {
	background-color: var(--fl-global-light-pink);
}
.fl-builder-content button:not(.fl-content-ui-button), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content .fl-button:is(a, button), .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content button:not(.fl-content-ui-button), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content .fl-button:is(a, button), .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	font-size: 15px;
	border-style: none;
	border-width: 0;
	background-clip: border-box;
	border-top-left-radius: 100px;
	border-top-right-radius: 100px;
	border-bottom-left-radius: 100px;
	border-bottom-right-radius: 100px;
}
@media(max-width: 1200px) {
	.fl-builder-content button:not(.fl-content-ui-button), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content .fl-button:is(a, button), .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content button:not(.fl-content-ui-button), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content .fl-button:is(a, button), .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited {
		font-size: 13px;
	}
}
@media(max-width: 992px) {
	.fl-builder-content button:not(.fl-content-ui-button), .fl-builder-content input[type=button], .fl-builder-content input[type=submit], .fl-builder-content .fl-button:is(a, button), .fl-builder-content button:visited, .fl-builder-content input[type=button]:visited, .fl-builder-content input[type=submit]:visited, .fl-builder-content a.fl-button:visited, .fl-page .fl-builder-content button:not(.fl-content-ui-button), .fl-page .fl-builder-content input[type=button], .fl-page .fl-builder-content input[type=submit], .fl-page .fl-builder-content .fl-button:is(a, button), .fl-page .fl-builder-content button:visited, .fl-page .fl-builder-content input[type=button]:visited, .fl-page .fl-builder-content input[type=submit]:visited, .fl-page .fl-builder-content a.fl-button:visited {
		font-size: 13px;
	}
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





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

	.fl-builder-edit .fl-node-jqvkp9l0s6w8.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-jqvkp9l0s6w8.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-jqvkp9l0s6w8.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-jqvkp9l0s6w8.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-jqvkp9l0s6w8 > .fl-row-content-wrap {
	background-image: url(https://mealtimes.com.au/wp-content/uploads/2025/09/RaeFallon-DrKyla-1519412-scaled.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-jqvkp9l0s6w8.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 500px;
}
@media(max-width: 1200px) {
	.fl-node-jqvkp9l0s6w8 > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 992px) {
	.fl-node-jqvkp9l0s6w8 > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 768px) {
	.fl-node-jqvkp9l0s6w8 > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media ( max-width: 768px ) {
 .fl-node-jqvkp9l0s6w8.fl-row > .fl-row-content-wrap {
	padding-bottom:0px;
}
}






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

	.fl-builder-edit .fl-node-e1sg8i9yfaul.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-e1sg8i9yfaul.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-e1sg8i9yfaul.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-e1sg8i9yfaul.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-e1sg8i9yfaul.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 300px;
}






.fl-node-z8i4bm76hnyg > .fl-row-content-wrap {
	background-color: rgba(246, 221, 213, 0.04);
}
@media ( max-width: 768px ) {
 .fl-node-z8i4bm76hnyg.fl-row > .fl-row-content-wrap {
	margin-top:0px;
}
}
 .fl-node-z8i4bm76hnyg > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 768px ) {
 .fl-node-z8i4bm76hnyg.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}






.fl-node-83wq9j7ogsab > .fl-row-content-wrap {
	background-color: var(--fl-global-light-green);
}
.fl-node-83wq9j7ogsab .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: auto;
	top: auto;
	bottom: 0;
	transform: scaleX(1) scaleY(-1);
}
.fl-node-83wq9j7ogsab .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: rgb(255, 255, 255);
}
 .fl-node-83wq9j7ogsab > .fl-row-content-wrap {
	margin-bottom:100px;
}
 .fl-node-83wq9j7ogsab > .fl-row-content-wrap {
	padding-bottom:150px;
}
@media ( max-width: 768px ) {
 .fl-node-83wq9j7ogsab.fl-row > .fl-row-content-wrap {
	padding-bottom:20px;
}
}






.fl-node-eq2rucjfszad > .fl-row-content-wrap {
	background-color: rgba(224, 230, 158, 0.14);
}
 .fl-node-eq2rucjfszad > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}












.fl-node-lakfu40cdi93 > .fl-row-content-wrap {
	background-color: var(--fl-global-green);
}
.fl-node-lakfu40cdi93 .fl-row-content {
	max-width: 776px;
}
.fl-node-lakfu40cdi93 .fl-builder-bottom-edge-layer > * {
	width: 100%;
	left: auto;
	right: auto;
	height: auto;
	top: auto;
	bottom: 0;
	transform: scaleX(1) scaleY(-1);
}
.fl-node-lakfu40cdi93 .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: rgb(255, 255, 255);
}
 .fl-node-lakfu40cdi93 > .fl-row-content-wrap {
	padding-bottom:50px;
}






 .fl-node-7z4kmbex6lhs > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}






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

	.fl-builder-edit .fl-node-0g9kx3ilvae2.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-0g9kx3ilvae2.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-0g9kx3ilvae2.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-0g9kx3ilvae2.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-0g9kx3ilvae2 > .fl-row-content-wrap {
	background-color: rgba(224, 230, 158, 0.75);
}
.fl-node-0g9kx3ilvae2.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 350px;
}










.fl-node-76hlegui2sq8 {
	width: 100%;
}




.fl-node-t9ghr0qb273o {
	width: 45%;
}
.fl-node-t9ghr0qb273o > .fl-col-content {
	background-image: url(https://mealtimes.com.au/wp-content/uploads/2022/03/dr-kyla-homepage-image-1.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}




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




.fl-node-9prv42wkze15 {
	width: 55%;
}
 .fl-node-9prv42wkze15 > .fl-col-content {
	margin-left:40px;
}




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




.fl-node-6ipxkw2ovya5 {
	width: 33.33%;
}
.fl-node-6ipxkw2ovya5 > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	box-shadow: 2px 2px 3px 1px rgb(204, 204, 204);
}
 .fl-node-6ipxkw2ovya5 > .fl-col-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:-200px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-6ipxkw2ovya5.fl-col > .fl-col-content {
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}




.fl-node-ytphqi0ecz3l {
	width: 33.34%;
}
.fl-node-ytphqi0ecz3l > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	box-shadow: 2px 2px 3px 1px rgb(204, 204, 204);
}
 .fl-node-ytphqi0ecz3l > .fl-col-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:-200px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-ytphqi0ecz3l.fl-col > .fl-col-content {
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}




.fl-node-cys5mfivx834 {
	width: 33.33%;
}
.fl-node-cys5mfivx834 > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	box-shadow: 2px 2px 3px 1px rgb(204, 204, 204);
}
 .fl-node-cys5mfivx834 > .fl-col-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:-200px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-cys5mfivx834.fl-col > .fl-col-content {
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}




.fl-node-c50tkq9fuw6m {
	width: 55%;
}
 .fl-node-c50tkq9fuw6m > .fl-col-content {
	margin-left:40px;
}




.fl-node-tlwefuh5nb3k {
	width: 45%;
}
.fl-node-tlwefuh5nb3k > .fl-col-content {
	background-image: url(https://mealtimes.com.au/wp-content/uploads/2025/09/RaeFallon-DrKyla-1768595_holding-hands.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}




.fl-node-a0ixwhq91okb {
	width: 40.73%;
}




.fl-node-1auo7yekct2i {
	width: 59.27%;
}




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




.fl-node-vl2wqcya73h1 {
	width: 50%;
}
.fl-node-vl2wqcya73h1 > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
 .fl-node-vl2wqcya73h1 > .fl-col-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-vl2wqcya73h1.fl-col > .fl-col-content {
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}




.fl-node-vakci3typzjx {
	width: 50%;
}
.fl-node-vakci3typzjx > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
 .fl-node-vakci3typzjx > .fl-col-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-vakci3typzjx.fl-col > .fl-col-content {
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}




.fl-node-x5m60vt7fiw9 {
	width: 100%;
}
.fl-node-x5m60vt7fiw9 > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
}
 .fl-node-x5m60vt7fiw9 > .fl-col-content {
	margin-top:20px;
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
@media ( max-width: 768px ) {
 .fl-node-x5m60vt7fiw9.fl-col > .fl-col-content {
	margin-right:20px;
	margin-bottom:20px;
	margin-left:20px;
}
}




.fl-node-dun4f78opjil {
	width: 44.99%;
}
.fl-node-dun4f78opjil > .fl-col-content {
	background-image: url(https://mealtimes.com.au/wp-content/uploads/2025/09/RaeFallon-DrKyla-1768763_family-dinner-baby-mum-scaled.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}




.fl-node-etjxkq34suw7 {
	width: 55.01%;
}
 .fl-node-etjxkq34suw7 > .fl-col-content {
	margin-left:40px;
}




.fl-node-9bnjyqk8t7ug {
	width: 100%;
}




.fl-node-hd9vui2rjq6o {
	width: 100%;
}
.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-prilu14od65f .pp-heading-content .pp-heading-prefix {
	}

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

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

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


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


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


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

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

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

/** Separators */


div.fl-node-prilu14od65f .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:before {
		width: 50%;
			border-style: solid;
			border-color: var(--fl-global-light-green);
			border-bottom-width: 5px;
	}

div.fl-node-prilu14od65f .pp-heading-content .pp-heading.pp-separator-inline .heading-title span:after {
		width: 50%;
			border-style: solid;
			border-color: var(--fl-global-light-green);
			border-bottom-width: 5px;
	}

div.fl-node-prilu14od65f .pp-heading-content .pp-heading.pp-separator--inline .pp-heading-separator span {
		width: 50%;
			border-bottom-style: solid;
			border-bottom-color: var(--fl-global-light-green);
			border-bottom-width: 5px;
	}

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


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

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

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

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

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

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

div.fl-node-prilu14od65f .pp-heading-content .pp-heading-separator.line_with_icon:before,
div.fl-node-prilu14od65f .pp-heading-content .pp-heading-separator.line_with_icon:after {
		width: 50%;
			border-style: solid;
			border-color: var(--fl-global-light-green);
			border-bottom-width: 5px;
	}

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

div.fl-node-prilu14od65f .pp-heading-content .pp-heading-separator .pp-separator-line {
		border-bottom-style: solid;
			border-bottom-width: 5px;
			border-bottom-color: var(--fl-global-light-green);
			width: 50%;
			margin: 0 auto;
	}

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-prilu14od65f .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-prilu14od65f .pp-heading-content {
				text-align: center;
			}
	div.fl-node-prilu14od65f .pp-heading-content .pp-heading-separator .pp-separator-line {
															margin: 0 auto;
				float: none;
						}
	div.fl-node-prilu14od65f .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-prilu14od65f div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-prilu14od65f div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-prilu14od65f div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-prilu14od65f div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-prilu14od65f .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-prilu14od65f .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-heading-prefix {
	}

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

div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-heading {
		}

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


div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #ffffff;
									display: inline;
	}
div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


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

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

div.fl-node-67qg2jwpnm5a .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-67qg2jwpnm5a .pp-heading-content .pp-sub-heading {
	margin-top: 20px;
	margin-bottom: 0px;
}


div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-sub-heading,
div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-sub-heading p {
		color: #e0e0e0;
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-67qg2jwpnm5a .pp-heading-content {
				text-align: ;
			}
	div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-heading .heading-title {
	font-size: 70px;
	line-height: 1;
}
div.fl-node-67qg2jwpnm5a div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-67qg2jwpnm5a div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-67qg2jwpnm5a div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-67qg2jwpnm5a div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-sub-heading, div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-sub-heading p {
	font-size: 26px;
}
div.fl-node-67qg2jwpnm5a .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-67qg2jwpnm5a .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-67qg2jwpnm5a .pp-heading-content .pp-heading .heading-title {
		font-size: 40px;
	}
	div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-sub-heading, div.fl-node-67qg2jwpnm5a .pp-heading-content .pp-sub-heading p {
		font-size: 18px;
	}
}
@media ( max-width: 768px ) {
 .fl-node-67qg2jwpnm5a.fl-module > .fl-module-content {
	margin-top:250px;
	margin-bottom:0px;
}
}
/**
 * This file should contain frontend styles that 
 * will be applied to all module instances.
 */@media (max-width: 768px) { /**
 * This file should contain frontend styles that 
 * will be applied to all module instances once
 * the responsive breakpoint has been reached. The
 * responsive breakpoint can be set in the global 
 * settings or individual page settings.
 */ }


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


@media only screen and (max-width: 992px) {
        .fl-node-12kfh7g56qed .pp-spacer-module {
        height: 15px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-12kfh7g56qed .pp-spacer-module {
        height: 350px;
    }
}
.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-tu107dnz3698.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-tu107dnz3698.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	text-align: center;
}
 .fl-node-tu107dnz3698.fl-module-rich-text {
	margin-top:60px;
}
@media ( max-width: 768px ) {
 .fl-node-tu107dnz3698.fl-module-rich-text.fl-module {
	margin-top:20px;
}
}
.pp-headline--style-highlight .pp-headline-dynamic-wrapper {
    overflow: visible;
}
.pp-headline--style-highlight .pp-headline-dynamic-text {
    z-index: 1;
}
.pp-headline--style-highlight .pp-headline-plain-text {
    z-index: 1;
    position: relative;
}
.pp-headline--style-highlight svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc( 100% + 20px);
    height: calc( 100% + 20px);
    transform: translate(-50%, -50%);
    overflow: visible;
}
.pp-headline--style-highlight svg path {
    stroke: red;
    stroke-width: 9;
    fill: none;
    opacity: 0;
    stroke-dasharray: 0 1500;
    transition: .3s;
}
.pp-headline.pp-headline-animated svg path {
    animation: pp-headline-dash forwards;
    animation-duration: var(--animation-duration, 1.2s);
    animation-iteration-count: 1
}
.pp-headline.pp-headline-animated svg path:nth-of-type(2) {
    animation-delay: calc(var(--animation-duration, 1.2s) / 2);
}
.pp-headline.pp-headline-hide-highlight svg path {
    opacity: 1;
	stroke-dasharray: 1500 1500;
	animation: hide-highlight .4s forwards;
	animation-iteration-count: 1
}
/* .pp-headline--style-highlight.pp-headline-loop svg path {
    -webkit-animation: pp-headline-dash 10s infinite;
    animation: pp-headline-dash 10s infinite;
}
.pp-headline--style-highlight svg path:nth-of-type(2) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
} */
@keyframes pp-headline-dash {
    0% {
		stroke-dasharray: 0 1500;
		opacity: 1
	}

	to {
		stroke-dasharray: 1500 1500;
		opacity: 1
	}
}
@keyframes pp-headline-dash-no-loop {
    0% {
        stroke-dasharray: 0 1500;
    }
    15% {
        stroke-dasharray: 1500 1500;
    }
    85% {
        opacity: 1;
    }
    90% {
        stroke-dasharray: 1500 1500;
        opacity: 1;
    }
    100% {
        stroke-dasharray: 1500 1500;
        opacity: 1;
    }
}
@keyframes hide-highlight {
	0% {
		opacity: 1;
		stroke-dasharray: 1500 1500
	}

	to {
		filter: blur(10px);
		opacity: 0
	}
}
.pp-headline-dynamic-wrapper {
    display: inline-block;
	position: relative;
	text-align: left;
	transition: width 0.3s ease;
}
.pp-headline-dynamic-wrapper.has-stopped {
	width: auto !important;
}
.pp-headline-dynamic-wrapper.has-stopped:after,
.pp-headline-dynamic-wrapper.has-stopped .pp-headline-dynamic-text:after {
	display: none;
}
.pp-headline-dynamic-wrapper .pp-headline-dynamic-text {
    display: inline-block;
    position: absolute;
	white-space: nowrap;
	top: 0;
	left: 0;
	right: 0;
}
.pp-headline-center.pp-headline-animation-type-wave .pp-headline-dynamic-wrapper .pp-headline-dynamic-text {
	left: 50%;
	transform: translateX(-50%);
}
.pp-headline-center .pp-headline-plain-text + .pp-headline-dynamic-wrapper .pp-headline-dynamic-text {
	left: 0;
	transform: translateX(0);
}
.pp-headline-dynamic-wrapper .pp-headline-dynamic-text.pp-headline-text-active {
    position: relative;
}
.pp-headline-dynamic-wrapper .pp-headline-dynamic-text i,
.pp-headline-dynamic-wrapper .pp-headline-dynamic-text i em {
    font-style: normal;
}
.pp-headline-animation-type-flip .pp-headline-dynamic-wrapper {
    -webkit-perspective: 300px;
    perspective: 300px;
}
.pp-headline-animation-type-flip .pp-headline-dynamic-text {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.pp-headline-animation-type-flip .pp-headline-dynamic-text.pp-headline-text-active {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-animation: pp-headline-flip-in 1.2s;
    animation: pp-headline-flip-in 1.2s;
}
.pp-headline-animation-type-flip .pp-headline-dynamic-text.pp-headline-text-inactive {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-animation: pp-headline-flip-out 1.2s;
    animation: pp-headline-flip-out 1.2s;
}
@-webkit-keyframes pp-headline-flip-in {
    0% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
    35% {
        -webkit-transform: rotateX(120deg);
        transform: rotateX(120deg);
        opacity: 0;
    }
    65% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
        opacity: 1;
    }
}
@keyframes pp-headline-flip-in {
    0% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
    35% {
        -webkit-transform: rotateX(120deg);
        transform: rotateX(120deg);
        opacity: 0;
    }
    65% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
        opacity: 1;
    }
}
@-webkit-keyframes pp-headline-flip-out {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
    35% {
        -webkit-transform: rotateX(-40deg);
        transform: rotateX(-40deg);
        opacity: 1;
    }
    65% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
}
@keyframes pp-headline-flip-out {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
    35% {
        -webkit-transform: rotateX(-40deg);
        transform: rotateX(-40deg);
        opacity: 1;
    }
    65% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0;
    }
}
.pp-headline-animation-type-typing .pp-headline-dynamic-wrapper {
    vertical-align: top;
    overflow: hidden;
}
.pp-headline-animation-type-typing .pp-headline-dynamic-wrapper::after {
    /* vertical bar */

    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 90%;
    width: 1px;
    background-color: #0d0d0d;
}
.pp-headline-animation-type-typing .pp-headline-dynamic-wrapper:not(.pp-headline-typing-selected):after {
    -webkit-animation: pp-headline-pulse 1s infinite;
    animation: pp-headline-pulse 1s infinite;
}
.pp-headline-animation-type-typing .pp-headline-dynamic-wrapper.pp-headline-typing-selected {
    background-color: #0d0d0d;
}
.pp-headline-animation-type-typing .pp-headline-dynamic-wrapper.pp-headline-typing-selected::after {
    visibility: hidden;
}
.pp-headline-animation-type-typing .pp-headline-dynamic-wrapper.pp-headline-typing-selected .pp-headline-dynamic-text {
    color: #aebcb9;
}
.pp-headline-animation-type-typing .pp-headline-dynamic-text:not(.pp-headline-text-active) {
    visibility: hidden;
}
.pp-headline-animation-type-typing .pp-headline-dynamic-letter:not(.pp-headline-animation-in) {
    position: absolute;
    visibility: hidden;
}
@-webkit-keyframes pp-headline-pulse {
    0% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    40% {
        -webkit-transform: translateY(-50%) scale(0.9);
        transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}
@keyframes pp-headline-pulse {
    0% {
        -webkit-transform: translateY(-50%) scale(1);
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    40% {
        -webkit-transform: translateY(-50%) scale(0.9);
        transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateY(-50%) scale(0);
        transform: translateY(-50%) scale(0);
        opacity: 0;
    }
}
.pp-headline-animation-type-swirl .pp-headline-dynamic-wrapper {
    -webkit-perspective: 300px;
    perspective: 300px;
}
.pp-headline-animation-type-swirl .pp-headline-dynamic-letter {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.pp-headline-animation-type-swirl .pp-headline-dynamic-text {
    opacity: 0;
}
.pp-headline-animation-type-swirl .pp-headline-dynamic-letter {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
    opacity: 0;
}
.pp-headline-text-active .pp-headline-animation-type-swirl .pp-headline-dynamic-letter {
    opacity: 1;
}
.pp-headline-animation-type-swirl .pp-headline-dynamic-letter.pp-headline-animation-in {
    -webkit-animation: pp-headline-swirl-in .4s forwards;
    animation: pp-headline-swirl-in .4s forwards;
}
.pp-headline-animation-type-swirl .pp-headline-dynamic-letter:not(.pp-headline-animation-in) {
    -webkit-animation: pp-headline-swirl-out .4s forwards;
    animation: pp-headline-swirl-out .4s forwards;
}
@-webkit-keyframes pp-headline-swirl-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(90deg);
        transform: translateZ(-20px) rotateX(90deg);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(-10deg);
        transform: translateZ(-20px) rotateX(-10deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0deg);
        transform: translateZ(-20px) rotateX(0deg);
    }
}
@keyframes pp-headline-swirl-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(90deg);
        transform: translateZ(-20px) rotateX(90deg);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(-10deg);
        transform: translateZ(-20px) rotateX(-10deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0deg);
        transform: translateZ(-20px) rotateX(0deg);
    }
}
@-webkit-keyframes pp-headline-swirl-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
        transform: translateZ(-20px) rotateX(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-100deg);
        transform: translateZ(-20px) rotateX(-100deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-90deg);
        transform: translateZ(-20px) rotateX(-90deg);
    }
}
@keyframes pp-headline-swirl-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
        transform: translateZ(-20px) rotateX(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-100deg);
        transform: translateZ(-20px) rotateX(-100deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-90deg);
        transform: translateZ(-20px) rotateX(-90deg);
    }
}
.pp-headline-animation-type-slide-down .pp-headline-text-wrapper {
    display: inline-block;
    padding: .2em 0;
}
.pp-headline-animation-type-slide-down .pp-headline-dynamic-wrapper {
    overflow: hidden;
    vertical-align: top;
}
.pp-headline-animation-type-slide-down .pp-headline-dynamic-text {
    opacity: 0;
    top: .2em;
}
.pp-headline-animation-type-slide-down .pp-headline-dynamic-text.pp-headline-text-active {
    top: 0;
    opacity: 1;
    -webkit-animation: pp-headline-slide-down-in .6s;
    animation: pp-headline-slide-down-in .6s;
}
.pp-headline-animation-type-slide-down .pp-headline-dynamic-text.pp-headline-text-inactive {
    -webkit-animation: pp-headline-slide-down-out .6s;
    animation: pp-headline-slide-down-out .6s;
}
@-webkit-keyframes pp-headline-slide-down-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes pp-headline-slide-down-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes pp-headline-slide-down-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        transform: translateY(120%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@keyframes pp-headline-slide-down-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        transform: translateY(120%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}
.pp-headline-animation-type-clip .pp-headline-text-wrapper {
    display: inline-block;
    padding: .2em 0;
}
.pp-headline-animation-type-clip .pp-headline-dynamic-wrapper {
    overflow: hidden;
    vertical-align: top;
}
.pp-headline-animation-type-clip .pp-headline-dynamic-wrapper::after {
    /* line */

    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: #0d0d0d;
}
.pp-headline-animation-type-clip .pp-headline-dynamic-text {
    opacity: 0;
}
.pp-headline-animation-type-clip .pp-headline-dynamic-text.pp-headline-text-active {
    opacity: 1;
}
.pp-headline-animation-type-drop-in .pp-headline-dynamic-wrapper {
    -webkit-perspective: 300px;
    perspective: 300px;
}
.pp-headline-animation-type-drop-in .pp-headline-dynamic-text {
    opacity: 0;
}
.pp-headline-animation-type-drop-in .pp-headline-dynamic-text.pp-headline-text-active {
    opacity: 1;
    -webkit-animation: pp-headline-drop-in-in .8s;
    animation: pp-headline-drop-in-in .8s;
}
.pp-headline-animation-type-drop-in .pp-headline-dynamic-text.pp-headline-text-inactive {
    -webkit-animation: pp-headline-drop-in-out .8s;
    animation: pp-headline-drop-in-out .8s;
}
@-webkit-keyframes pp-headline-drop-in-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(100px);
        transform: translateZ(100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@keyframes pp-headline-drop-in-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(100px);
        transform: translateZ(100px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}
@-webkit-keyframes pp-headline-drop-in-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateZ(-100px);
        transform: translateZ(-100px);
    }
}
@keyframes pp-headline-drop-in-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateZ(-100px);
        transform: translateZ(-100px);
    }
}
.pp-headline-animation-type-fade .pp-headline-dynamic-wrapper .pp-headline-dynamic-text {
    position: absolute !important;
    left: auto;
    right: auto;
    text-align: center;
    transform: translate(-50%, -50%);
}
.pp-headline-animation-type-fade .pp-headline-dynamic-text {
    opacity: 0;
}
.pp-headline-animation-type-fade .pp-headline-dynamic-text.pp-headline-text-active {
    opacity: 1;
    -webkit-animation: pp-headline-fade-in .8s;
    animation: pp-headline-fade-in .8s;
}
.pp-headline-animation-type-fade .pp-headline-dynamic-text.pp-headline-text-inactive {
    -webkit-animation: pp-headline-fade-out .8s;
    animation: pp-headline-fade-out .8s;
}
@-webkit-keyframes pp-headline-fade-in {
    0% {
        opacity: 0;
        display: none;
    }
    100% {
        opacity: 1;
        display: inline-block;
    }
}
@keyframes pp-headline-fade-in {
    0% {
        opacity: 0;
        display: none;
    }
    100% {
        opacity: 1;
        display: inline-block;
    }
}
@-webkit-keyframes pp-headline-fade-out {
    0% {
        opacity: 1;
        display: inline-block;
    }
    100% {
        opacity: 0;
        display: none;
    }
}
@keyframes pp-headline-fade-out {
    0% {
        opacity: 1;
        display: inline-block;
    }
    100% {
        opacity: 0;
        display: none;
    }
}
.pp-headline-animation-type-blinds .pp-headline-dynamic-wrapper {
    -webkit-perspective: 300px;
    perspective: 300px;
}
.pp-headline-animation-type-blinds .pp-headline-dynamic-text {
    opacity: 0;
}
.pp-headline-animation-type-blinds .pp-headline-dynamic-letter {
    display: inline-block;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.pp-headline-text-active .pp-headline-animation-type-blinds .pp-headline-dynamic-letter {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}
.pp-headline-animation-type-blinds .pp-headline-dynamic-letter.pp-headline-animation-in {
    -webkit-animation: pp-headline-blinds-in .6s forwards;
    animation: pp-headline-blinds-in .6s forwards;
}
.pp-headline-animation-type-blinds .pp-headline-dynamic-letter:not(.pp-headline-animation-in) {
    -webkit-animation: pp-headline-blinds-out .6s forwards;
    animation: pp-headline-blinds-out .6s forwards;
}
@-webkit-keyframes pp-headline-blinds-in {
    0% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    100% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}
@keyframes pp-headline-blinds-in {
    0% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }
    100% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}
@-webkit-keyframes pp-headline-blinds-out {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }
    100% {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
}
@keyframes pp-headline-blinds-out {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0);
    }
    100% {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
}
.pp-headline-animation-type-wave .pp-headline-dynamic-text {
    opacity: 0;
}
.pp-headline-animation-type-wave .pp-headline-dynamic-letter {
    display: inline-block;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}
.pp-headline-text-active .pp-headline-animation-type-wave .pp-headline-dynamic-letter {
    opacity: 1;
}
.pp-headline-animation-type-wave .pp-headline-dynamic-letter.pp-headline-animation-in {
    -webkit-animation: pp-headline-wave-up .6s forwards;
    animation: pp-headline-wave-up .6s forwards;
}
.pp-headline-animation-type-wave .pp-headline-dynamic-letter:not(.pp-headline-animation-in) {
    -webkit-animation: pp-headline-wave-down .6s forwards;
    animation: pp-headline-wave-down .6s forwards;
}
@-webkit-keyframes pp-headline-wave-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes pp-headline-wave-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
    60% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}
@-webkit-keyframes pp-headline-wave-down {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    60% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
}
@keyframes pp-headline-wave-down {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    60% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }
}
.pp-headline-animation-type-slide .pp-headline-dynamic-text {
    opacity: 0;
}
.pp-headline-animation-type-slide .pp-headline-dynamic-text.pp-headline-text-active {
    opacity: 1;
    -webkit-animation: pp-headline-slide-in .6s;
    animation: pp-headline-slide-in .6s;
}
.pp-headline-animation-type-slide .pp-headline-dynamic-text.pp-headline-text-inactive {
    -webkit-animation: pp-headline-slide-out .6s;
    animation: pp-headline-slide-out .6s;
}
@-webkit-keyframes pp-headline-slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(10%);
        transform: translateX(10%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes pp-headline-slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(10%);
        transform: translateX(10%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@-webkit-keyframes pp-headline-slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateX(110%);
        transform: translateX(110%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
@keyframes pp-headline-slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    60% {
        opacity: 0;
        -webkit-transform: translateX(110%);
        transform: translateX(110%);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}
.fl-node-9z3utj6lcwhi .pp-headline {
	text-align: left;
}
.fl-node-9z3utj6lcwhi .pp-headline,
.fl-node-9z3utj6lcwhi .pp-headline a {
			color: #e0e0e0;
	}
.fl-node-9z3utj6lcwhi .pp-headline-dynamic-wrapper {
			color: #e0e0e0;
	}
.fl-node-9z3utj6lcwhi .pp-headline-dynamic-wrapper.pp-headline-typing-selected {
	}
.fl-node-9z3utj6lcwhi .pp-headline-dynamic-wrapper.pp-headline-typing-selected .pp-headline-dynamic-text {
	}
.fl-node-9z3utj6lcwhi .pp-headline-dynamic-wrapper path {
		}.fl-node-9z3utj6lcwhi .pp-headline {
	font-size: 26px;
}
@media(max-width: 768px) {
	.fl-node-9z3utj6lcwhi .pp-headline {
		font-size: 18px;
	}
}
 .fl-node-9z3utj6lcwhi > .fl-module-content {
	margin-top:-10px;
}
@media ( max-width: 768px ) {
 .fl-node-9z3utj6lcwhi.fl-module > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
}

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

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

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

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


div.fl-node-gzx4vb95qlhr .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: #fbbea9;
									display: inline;
	}
div.fl-node-gzx4vb95qlhr .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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

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

div.fl-node-gzx4vb95qlhr .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-gzx4vb95qlhr .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-gzx4vb95qlhr .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-gzx4vb95qlhr .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

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

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

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

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


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


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


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

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

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

/** Separators */


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

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

div.fl-node-7oy6f0m9tp2z .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-7oy6f0m9tp2z .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-7oy6f0m9tp2z .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-7oy6f0m9tp2z .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-7oy6f0m9tp2z .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-7oy6f0m9tp2z .pp-heading-content {
				text-align: ;
			}
	div.fl-node-7oy6f0m9tp2z .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-7oy6f0m9tp2z .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-7oy6f0m9tp2z div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-7oy6f0m9tp2z div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-7oy6f0m9tp2z div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-7oy6f0m9tp2z div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-7oy6f0m9tp2z .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-7oy6f0m9tp2z .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.pp-photo-container .pp-photo-align-left {
    text-align: left;
}
.pp-photo-container .pp-photo-align-center {
    text-align: center;
}
.pp-photo-container .pp-photo-align-right {
    text-align: right;
}

.pp-photo {
	line-height: 0;
	position: relative;
}
.pp-photo-align-left {
	text-align: left;
}
.pp-photo-align-center {
	text-align: center;
}
.pp-photo-align-right {
	text-align: right;
}
.pp-photo-content {
	display: inline-block;
	line-height: 0;
	position: relative;
	max-width: 100%;
}
.pp-photo-content img {
	display: inline;
	max-width: 100%;
}
.fl-builder-content[data-shrink="1"] img.pp-photo-img:not([src$=".svg"]) {
    width: auto;
    height: auto;
}
.fl-builder-content[data-shrink="1"] .shrink-header-fix img.pp-photo-img:not([src$=".svg"]) {
	width: auto !important;
}
.pp-photo-crop-circle img {
	-webkit-border-radius: 100% !important;
	-moz-border-radius: 100% !important;
	border-radius: 100% !important;
}
.pp-photo-caption {
	font-size: 13px;
	line-height: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: normal;
    width: 100%;
}
.pp-photo-caption-below {
	padding-bottom: 20px;
	padding-top: 10px;
}
.pp-photo-align-center .pp-photo-caption-below {
	margin: 0 auto;
}
.pp-photo-caption-overlay {
	bottom: 0;
	color: #fff;
	left: 0;
	padding: 10px 15px;
	position: absolute;
	right: 0;
	transition:opacity 0.3s ease-in;
}
.pp-overlay-wrap .pp-overlay-bg {
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .3s linear;
}
.pp-photo-caption-hover {
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .3s linear;
}
.pp-photo-container .pp-photo-content:hover .pp-overlay-bg,
.pp-photo-container .pp-photo-content:hover .pp-photo-caption-hover,
.pp-photo-container .pp-photo-content.on-hover .pp-overlay-bg,
.pp-photo-container .pp-photo-content.on-hover .pp-photo-caption-hover {
    opacity: 1;
    transition: opacity .3s linear;
}
.pp-photo-container a:focus {
    outline: none;
}
.pp-photo-container .pp-photo-content .pp-photo-content-inner {
    overflow: hidden;
    position: relative;
}
.pp-photo-content-inner img {
	transition-duration: 0.3s;
}

.pp-photo-rollover .pp-photo-content {
	display: inline-grid;
    grid-template-columns: 1fr;
}
.pp-photo-rollover .pp-photo-content-inner {
	grid-row-start: 1;
    grid-column-start: 1;
	opacity: 1;
	/* transition: none !important; */
}
.pp-photo-rollover .pp-photo-content.is-hover .pp-photo-content-inner:first-child,
.pp-photo-rollover .pp-photo-content:not(.is-hover) .pp-photo-content-inner:last-of-type {
	opacity: 0;
	visibility: hidden;
}

.pp-photo-rollover .pp-overlay-bg,
.pp-photo-rollover .pp-photo-caption-hover {
	display: none !important;
}.fl-node-k7c19w0y52ji .pp-photo-container .pp-photo-content {
	}


.fl-node-k7c19w0y52ji .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	background-clip: border-box;
	transition: all 0.3s ease-in-out;
}

.fl-node-k7c19w0y52ji .pp-photo-container .pp-photo-content:hover .pp-photo-content-inner {
	}

.fl-node-k7c19w0y52ji .pp-photo-container .pp-photo-content .pp-photo-content-inner a {
    display: block;
    text-decoration: none !important;
}
    .fl-node-k7c19w0y52ji .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
        			border-color: #000000;
		        			border-width: 1px;
				border-style: none;
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }

.fl-node-k7c19w0y52ji .pp-photo-caption {
			background-color: #dddddd;
		    	color: #000000;
	}


.fl-node-k7c19w0y52ji .pp-overlay-wrap .pp-overlay-bg {
    			background-color: #dddddd;
	    		border-top-left-radius: px;
		border-top-right-radius: px;
		border-bottom-left-radius: px;
		border-bottom-right-radius: px;
	}

@media only screen and (max-width: 992px) {
	    .fl-node-k7c19w0y52ji .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}

@media only screen and (max-width: 768px) {
	.fl-node-k7c19w0y52ji .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-k7c19w0y52ji .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-k7c19w0y52ji .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-k7c19w0y52ji .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}.fl-node-k7c19w0y52ji .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-k7c19w0y52ji .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
	width: 150px;
}
.fl-node-k7c19w0y52ji .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-k7c19w0y52ji > .fl-module-content {
	margin-bottom:0px;
}

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

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

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

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


div.fl-node-rpad6kgnsm38 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
								}
div.fl-node-rpad6kgnsm38 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-rpad6kgnsm38 .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


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

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

div.fl-node-rpad6kgnsm38 .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-rpad6kgnsm38 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-rpad6kgnsm38 .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-rpad6kgnsm38 .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-rpad6kgnsm38 .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-rpad6kgnsm38 .pp-heading-content {
				text-align: ;
			}
	div.fl-node-rpad6kgnsm38 .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-rpad6kgnsm38 .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-rpad6kgnsm38 .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	padding-top: 0px;
	font-size: 20px;
}
div.fl-node-rpad6kgnsm38 .pp-heading-content .pp-heading .heading-title {
	font-size: 16px;
}
div.fl-node-rpad6kgnsm38 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-rpad6kgnsm38 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-rpad6kgnsm38 div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-rpad6kgnsm38 div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-rpad6kgnsm38 .pp-heading-content .pp-sub-heading, div.fl-node-rpad6kgnsm38 .pp-heading-content .pp-sub-heading p {
	font-size: 14px;
}
div.fl-node-rpad6kgnsm38 .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-rpad6kgnsm38 .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-rpad6kgnsm38 > .fl-module-content {
	margin-top:0px;
	margin-bottom:0px;
}
.fl-button:is(a, button) {
    cursor: pointer;
}








.fl-node-2qcmnsojv14a.fl-button-wrap, .fl-node-2qcmnsojv14a .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-2qcmnsojv14a .fl-button:is(a, button), .fl-builder-content .fl-node-2qcmnsojv14a .fl-button:is(a, button) * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
.fl-node-018jipu9btas .pp-photo-container .pp-photo-content {
	}


.fl-node-018jipu9btas .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	background-clip: border-box;
	transition: all 0.3s ease-in-out;
}

.fl-node-018jipu9btas .pp-photo-container .pp-photo-content:hover .pp-photo-content-inner {
	}

.fl-node-018jipu9btas .pp-photo-container .pp-photo-content .pp-photo-content-inner a {
    display: block;
    text-decoration: none !important;
}
    .fl-node-018jipu9btas .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
        			border-color: #000000;
		        			border-width: 1px;
				border-style: none;
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }

.fl-node-018jipu9btas .pp-photo-caption {
			background-color: #dddddd;
		    	color: #000000;
	}


.fl-node-018jipu9btas .pp-overlay-wrap .pp-overlay-bg {
    			background-color: #dddddd;
	    		border-top-left-radius: px;
		border-top-right-radius: px;
		border-bottom-left-radius: px;
		border-bottom-right-radius: px;
	}

@media only screen and (max-width: 992px) {
	    .fl-node-018jipu9btas .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}

@media only screen and (max-width: 768px) {
	.fl-node-018jipu9btas .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-018jipu9btas .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-018jipu9btas .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-018jipu9btas .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}.fl-node-018jipu9btas .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-018jipu9btas .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
	width: 150px;
}
.fl-node-018jipu9btas .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-018jipu9btas > .fl-module-content {
	margin-bottom:0px;
}

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

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

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

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


div.fl-node-t9pkbhmeonv2 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
								}
div.fl-node-t9pkbhmeonv2 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-t9pkbhmeonv2 .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


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

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

div.fl-node-t9pkbhmeonv2 .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-t9pkbhmeonv2 .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-t9pkbhmeonv2 .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-t9pkbhmeonv2 .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

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









.fl-node-ocms9g5pf71u.fl-button-wrap, .fl-node-ocms9g5pf71u .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-ocms9g5pf71u .fl-button:is(a, button), .fl-builder-content .fl-node-ocms9g5pf71u .fl-button:is(a, button) * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
.fl-node-bc93i60e2udg .pp-photo-container .pp-photo-content {
	}


.fl-node-bc93i60e2udg .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	background-clip: border-box;
	transition: all 0.3s ease-in-out;
}

.fl-node-bc93i60e2udg .pp-photo-container .pp-photo-content:hover .pp-photo-content-inner {
	}

.fl-node-bc93i60e2udg .pp-photo-container .pp-photo-content .pp-photo-content-inner a {
    display: block;
    text-decoration: none !important;
}
    .fl-node-bc93i60e2udg .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
        			border-color: #000000;
		        			border-width: 1px;
				border-style: none;
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }

.fl-node-bc93i60e2udg .pp-photo-caption {
			background-color: #dddddd;
		    	color: #000000;
	}


.fl-node-bc93i60e2udg .pp-overlay-wrap .pp-overlay-bg {
    			background-color: #dddddd;
	    		border-top-left-radius: px;
		border-top-right-radius: px;
		border-bottom-left-radius: px;
		border-bottom-right-radius: px;
	}

@media only screen and (max-width: 992px) {
	    .fl-node-bc93i60e2udg .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}

@media only screen and (max-width: 768px) {
	.fl-node-bc93i60e2udg .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-bc93i60e2udg .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-bc93i60e2udg .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-bc93i60e2udg .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}.fl-node-bc93i60e2udg .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
div.fl-node-bc93i60e2udg .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
	width: 150px;
}
.fl-node-bc93i60e2udg .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-bc93i60e2udg > .fl-module-content {
	margin-bottom:0px;
}

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

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

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

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


div.fl-node-7o6wab2msdjz .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
								}
div.fl-node-7o6wab2msdjz .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-7o6wab2msdjz .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


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

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

div.fl-node-7o6wab2msdjz .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-7o6wab2msdjz .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-7o6wab2msdjz .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-7o6wab2msdjz .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

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









.fl-node-unl9m7taeyfo.fl-button-wrap, .fl-node-unl9m7taeyfo .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-unl9m7taeyfo .fl-button:is(a, button), .fl-builder-content .fl-node-unl9m7taeyfo .fl-button:is(a, button) * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}

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

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

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

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


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


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


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

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

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

/** Separators */


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

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

div.fl-node-d6itfar7pn8c .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-d6itfar7pn8c .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-d6itfar7pn8c .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-d6itfar7pn8c .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-d6itfar7pn8c .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-d6itfar7pn8c .pp-heading-content {
				text-align: ;
			}
	div.fl-node-d6itfar7pn8c .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-d6itfar7pn8c .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-d6itfar7pn8c div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-d6itfar7pn8c div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-d6itfar7pn8c div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-d6itfar7pn8c div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-d6itfar7pn8c .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-d6itfar7pn8c .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-d6itfar7pn8c > .fl-module-content {
	margin-top:40px;
	margin-bottom:0px;
}
@media ( max-width: 768px ) {
 .fl-node-d6itfar7pn8c.fl-module > .fl-module-content {
	margin-top:20px;
}
}
.fl-module-list .fl-list-item .fl-list-item-wrapper {
  width: 100%;
}

.fl-module-list .fl-list {
  padding-inline-start: unset;
  margin-bottom: 0px;
}

.fl-module-list .fl-list-item {
  border-bottom: none;
}

.fl-module-list .fl-list-item-heading {
  display: table;
  width: 100%;
}

.fl-module-list .fl-list-item-heading .fl-list-item-heading-icon,
.fl-module-list .fl-list-item-heading .fl-list-item-heading-icon .fl-list-item-icon {
  display: inline-block;
}

.fl-module-list .fl-list-item-heading .fl-list-item-heading-text {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.fl-module-list .fl-list-item-content {
  display: table;
  width: 100%;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-icon {
  display: table-cell; 
  vertical-align: middle;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text {
  display: table-cell;
  vertical-align: middle; 
  width: 100%;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text p:last-child {
  margin-bottom: 0px;
}

.fl-module-list .fl-list-item-content .fl-list-item-content-text b,
.fl-module-list .fl-list-item-content .fl-list-item-content-text strong {
	font-weight: bold;
}
	.fl-node-dysit50l9q7n .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-dysit50l9q7n .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-dysit50l9q7n .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-dysit50l9q7n .fl-list-item-content-icon .fl-list-item-icon {
		color: rgb(255, 255, 255);
	}
		.fl-node-dysit50l9q7n .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-dysit50l9q7n .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-dysit50l9q7n .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-dysit50l9q7n .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 20px;
	}
		.fl-node-dysit50l9q7n .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-dysit50l9q7n .fl-list-item-content-icon .fl-list-item-icon {
		width: 30px;
		text-align: center;
	}
	
.fl-node-dysit50l9q7n ul.fl-list,
.fl-node-dysit50l9q7n ol.fl-list {
	list-style-type: none;
}


.fl-node-dysit50l9q7n .fl-list .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-dysit50l9q7n .fl-list {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-dysit50l9q7n .fl-list .fl-list-item {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-node-dysit50l9q7n .fl-list .fl-list-item-icon {
	padding-top: 5px;
	padding-right: 15px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-node-dysit50l9q7n .fl-list .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
@media(max-width: 768px) {
	.fl-node-dysit50l9q7n .fl-list .fl-list-item-icon {
		padding-left: 5px;
	}
}
 .fl-node-dysit50l9q7n.fl-module-list {
	margin-top:0px;
	margin-bottom:40px;
}
@media ( max-width: 768px ) {
 .fl-node-dysit50l9q7n.fl-module-list.fl-module {
	margin-bottom:20px;
}
}



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


@media only screen and (max-width: 992px) {
        .fl-node-417rx8havcde .pp-spacer-module {
        height: 15px;
    }
}
@media only screen and (max-width: 768px) {
        .fl-node-417rx8havcde .pp-spacer-module {
        height: 300px;
    }
}
.fl-node-oqmd4zckg7fx .pp-photo-container .pp-photo-content {
	}


.fl-node-oqmd4zckg7fx .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	background-clip: border-box;
	transition: all 0.3s ease-in-out;
}

.fl-node-oqmd4zckg7fx .pp-photo-container .pp-photo-content:hover .pp-photo-content-inner {
	}

.fl-node-oqmd4zckg7fx .pp-photo-container .pp-photo-content .pp-photo-content-inner a {
    display: block;
    text-decoration: none !important;
}
    .fl-node-oqmd4zckg7fx .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
        			border-color: #000000;
		        			border-width: 1px;
				border-style: none;
					border-top-left-radius: 15px;
			border-top-right-radius: 15px;
			border-bottom-left-radius: 15px;
			border-bottom-right-radius: 15px;
		    }

.fl-node-oqmd4zckg7fx .pp-photo-caption {
			background-color: #dddddd;
		    	color: #000000;
	}


.fl-node-oqmd4zckg7fx .pp-overlay-wrap .pp-overlay-bg {
    			background-color: #dddddd;
	    		border-top-left-radius: 15px;
		border-top-right-radius: 15px;
		border-bottom-left-radius: 15px;
		border-bottom-right-radius: 15px;
	}

@media only screen and (max-width: 992px) {
	    .fl-node-oqmd4zckg7fx .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}

@media only screen and (max-width: 768px) {
	.fl-node-oqmd4zckg7fx .pp-photo-container .pp-photo-align-responsive-left {
		text-align: left !important;
	}
	.fl-node-oqmd4zckg7fx .pp-photo-container .pp-photo-align-responsive-center {
		text-align: center !important;
	}
	.fl-node-oqmd4zckg7fx .pp-photo-container .pp-photo-align-responsive-right {
		text-align: right !important;
	}
	    .fl-node-oqmd4zckg7fx .pp-photo-container .pp-photo-content .pp-photo-content-inner img {
					border-top-left-radius: px;
			border-top-right-radius: px;
			border-bottom-left-radius: px;
			border-bottom-right-radius: px;
		    }
	}.fl-node-oqmd4zckg7fx .pp-photo-container .pp-photo-content .pp-photo-content-inner {
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	box-shadow: 15px 15px 0px 0px var(--fl-global-pink);
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-oqmd4zckg7fx .pp-photo-caption {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}

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

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

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

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


div.fl-node-xdj8scerlf9y .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
								}
div.fl-node-xdj8scerlf9y .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-xdj8scerlf9y .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


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

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

div.fl-node-xdj8scerlf9y .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-xdj8scerlf9y .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-xdj8scerlf9y .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-xdj8scerlf9y .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-xdj8scerlf9y .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-xdj8scerlf9y .pp-heading-content {
				text-align: ;
			}
	div.fl-node-xdj8scerlf9y .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-xdj8scerlf9y .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-xdj8scerlf9y .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	font-size: 18px;
}
div.fl-node-xdj8scerlf9y div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-xdj8scerlf9y div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-xdj8scerlf9y div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-xdj8scerlf9y div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-xdj8scerlf9y .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-xdj8scerlf9y .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-nstpxvu194wc .pp-headline {
	text-align: center;
}
.fl-node-nstpxvu194wc .pp-headline,
.fl-node-nstpxvu194wc .pp-headline a {
	}
.fl-node-nstpxvu194wc .pp-headline-dynamic-wrapper {
	}
.fl-node-nstpxvu194wc .pp-headline-dynamic-wrapper.pp-headline-typing-selected {
	}
.fl-node-nstpxvu194wc .pp-headline-dynamic-wrapper.pp-headline-typing-selected .pp-headline-dynamic-text {
	}
.fl-node-nstpxvu194wc .pp-headline-dynamic-wrapper path {
				stroke: var(--fl-global-green);
	}
div.fl-node-0c6z4ojhx58w .pp-heading-content .pp-heading-prefix {
	}

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

div.fl-node-0c6z4ojhx58w .pp-heading-content .pp-heading {
		}

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


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


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


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

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

div.fl-node-0c6z4ojhx58w .pp-heading-content .pp-heading .pp-heading-link {
}

/** Separators */


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

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

div.fl-node-0c6z4ojhx58w .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-0c6z4ojhx58w .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-0c6z4ojhx58w .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-0c6z4ojhx58w .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

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

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

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

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

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


div.fl-node-yw5ho2fvkdsn .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
								}
div.fl-node-yw5ho2fvkdsn .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-yw5ho2fvkdsn .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


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

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

div.fl-node-yw5ho2fvkdsn .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-yw5ho2fvkdsn .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-yw5ho2fvkdsn .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-yw5ho2fvkdsn .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

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

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

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

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

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


div.fl-node-nx74uz32brhd .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
								}
div.fl-node-nx74uz32brhd .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-nx74uz32brhd .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


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

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

div.fl-node-nx74uz32brhd .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-nx74uz32brhd .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-nx74uz32brhd .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-nx74uz32brhd .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

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









.fl-node-nybagrtuj1wo.fl-button-wrap, .fl-node-nybagrtuj1wo .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-nybagrtuj1wo .fl-button:is(a, button), .fl-builder-content .fl-node-nybagrtuj1wo .fl-button:is(a, button) * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
 .fl-node-nybagrtuj1wo.fl-module-button {
	margin-bottom:5px;
}

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

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

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

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


div.fl-node-lotm06ws98ae .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
								}
div.fl-node-lotm06ws98ae .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-lotm06ws98ae .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


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

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

div.fl-node-lotm06ws98ae .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-lotm06ws98ae .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-lotm06ws98ae .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-lotm06ws98ae .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

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

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

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

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

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


div.fl-node-rhp50dx2agwv .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
								}
div.fl-node-rhp50dx2agwv .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-rhp50dx2agwv .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


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

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

div.fl-node-rhp50dx2agwv .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-rhp50dx2agwv .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-rhp50dx2agwv .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-rhp50dx2agwv .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

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









.fl-node-sqpix4j06dzl.fl-button-wrap, .fl-node-sqpix4j06dzl .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-sqpix4j06dzl .fl-button:is(a, button), .fl-builder-content .fl-node-sqpix4j06dzl .fl-button:is(a, button) * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
 .fl-node-sqpix4j06dzl.fl-module-button {
	margin-bottom:5px;
}

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

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

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

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


div.fl-node-h2u0bfctje6g .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
								}
div.fl-node-h2u0bfctje6g .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-h2u0bfctje6g .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


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

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

div.fl-node-h2u0bfctje6g .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-h2u0bfctje6g .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-h2u0bfctje6g .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-h2u0bfctje6g .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

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

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

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

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

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


div.fl-node-pvqfl65haw0c .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
								}
div.fl-node-pvqfl65haw0c .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

div.fl-node-pvqfl65haw0c .pp-heading-content .pp-heading .pp-heading-link {
	display: block;
}

/** Separators */


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

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

div.fl-node-pvqfl65haw0c .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-pvqfl65haw0c .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-pvqfl65haw0c .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-pvqfl65haw0c .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

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









.fl-node-9h5otcbk1zly.fl-button-wrap, .fl-node-9h5otcbk1zly .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-9h5otcbk1zly .fl-button:is(a, button), .fl-builder-content .fl-node-9h5otcbk1zly .fl-button:is(a, button) * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
 .fl-node-9h5otcbk1zly.fl-module-button {
	margin-bottom:5px;
}



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


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

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

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

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

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


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


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


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

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

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

/** Separators */


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

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

div.fl-node-sew371nofjru .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-sew371nofjru .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-sew371nofjru .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-sew371nofjru .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-sew371nofjru .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-sew371nofjru .pp-heading-content {
				text-align: ;
			}
	div.fl-node-sew371nofjru .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-sew371nofjru .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-sew371nofjru div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-sew371nofjru div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-sew371nofjru div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-sew371nofjru div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-sew371nofjru .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-sew371nofjru .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-sew371nofjru > .fl-module-content {
	margin-bottom:10px;
}
	.fl-node-t9wx6riahfs8 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-t9wx6riahfs8 .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-t9wx6riahfs8 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-t9wx6riahfs8 .fl-list-item-content-icon .fl-list-item-icon {
		color: rgb(255, 255, 255);
	}
		.fl-node-t9wx6riahfs8 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-t9wx6riahfs8 .fl-list-item-content-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-t9wx6riahfs8 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-row .fl-col .fl-node-t9wx6riahfs8 .fl-list-item-content-icon .fl-list-item-icon {
		font-size: 15px;
	}
		.fl-node-t9wx6riahfs8 .fl-list-item-heading-icon .fl-list-item-icon,
	.fl-node-t9wx6riahfs8 .fl-list-item-content-icon .fl-list-item-icon {
		width: 30px;
		text-align: center;
	}
	
.fl-node-t9wx6riahfs8 ul.fl-list,
.fl-node-t9wx6riahfs8 ol.fl-list {
	list-style-type: none;
}


.fl-node-t9wx6riahfs8 .fl-list .fl-list-item ~ .fl-list-item {
	border-top-style: none;
	border-top-color: transparent;
}

.fl-node-t9wx6riahfs8 .fl-list {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-t9wx6riahfs8 .fl-list .fl-list-item {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-node-t9wx6riahfs8 .fl-list .fl-list-item-icon {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.fl-node-t9wx6riahfs8 .fl-list .fl-list-item ~ .fl-list-item {
	border-top-width: 0px;
}
@media(max-width: 768px) {
	.fl-node-t9wx6riahfs8 .fl-list .fl-list-item-icon {
		padding-left: 5px;
	}
}
 .fl-node-t9wx6riahfs8.fl-module-list {
	margin-top:0px;
	margin-bottom:40px;
}
@media ( max-width: 768px ) {
 .fl-node-t9wx6riahfs8.fl-module-list.fl-module {
	margin-bottom:20px;
}
}
.fl-node-w4yos83irzkf .pp-headline {
	text-align: center;
}
.fl-node-w4yos83irzkf .pp-headline,
.fl-node-w4yos83irzkf .pp-headline a {
	}
.fl-node-w4yos83irzkf .pp-headline-dynamic-wrapper {
	}
.fl-node-w4yos83irzkf .pp-headline-dynamic-wrapper.pp-headline-typing-selected {
	}
.fl-node-w4yos83irzkf .pp-headline-dynamic-wrapper.pp-headline-typing-selected .pp-headline-dynamic-text {
	}
.fl-node-w4yos83irzkf .pp-headline-dynamic-wrapper path {
				stroke: var(--fl-global-green);
	}








.fl-node-gvmwniq6z1ja.fl-button-wrap, .fl-node-gvmwniq6z1ja .fl-button-wrap {
	text-align: center;
}
.fl-builder-content .fl-node-gvmwniq6z1ja .fl-button:is(a, button):hover, .fl-builder-content .fl-node-gvmwniq6z1ja .fl-button:is(a, button):focus, .fl-page .fl-builder-content .fl-node-gvmwniq6z1ja .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-gvmwniq6z1ja .fl-button:is(a, button):focus {
	border: 1px solid var(--fl-global-pink);
}
.fl-builder-content .fl-node-gvmwniq6z1ja .fl-button:is(a, button), .fl-builder-content .fl-node-gvmwniq6z1ja a.fl-button:visited, .fl-page .fl-builder-content .fl-node-gvmwniq6z1ja .fl-button:is(a, button), .fl-page .fl-builder-content .fl-node-gvmwniq6z1ja a.fl-button:visited {
	background-color: var(--fl-global-green);
}
.fl-builder-content .fl-node-gvmwniq6z1ja .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-gvmwniq6z1ja .fl-button:is(a, button):hover, .fl-page .fl-builder-content .fl-node-gvmwniq6z1ja .fl-button:is(a, button):hover, .fl-page .fl-page .fl-builder-content .fl-node-gvmwniq6z1ja .fl-button:is(a, button):hover {
	background-color: var(--fl-global-pink);
}
.fl-builder-content .fl-node-gvmwniq6z1ja .fl-button:is(a, button), .fl-builder-content .fl-node-gvmwniq6z1ja .fl-button:is(a, button) * {
	transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
}
@media(max-width: 768px) {
	.fl-node-gvmwniq6z1ja.fl-button-wrap, .fl-node-gvmwniq6z1ja .fl-button-wrap {
		text-align: center;
	}
}
.fl-animated.fl-zoom-in {
	animation: fl-zoom-in 1s ease;
	-webkit-animation: fl-zoom-in 1s ease;
}
@-webkit-keyframes fl-zoom-in {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes fl-zoom-in {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

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

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

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

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


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


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


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

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

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

/** Separators */


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

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

div.fl-node-q49nalekt62v .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-q49nalekt62v .pp-heading-content .pp-sub-heading {
	margin-top: 0px;
	margin-bottom: 0px;
}


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

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

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

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

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

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

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

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

div.fl-node-q49nalekt62v .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-q49nalekt62v .pp-heading-content .pp-heading-separator:not(.inline) {
	}


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

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

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


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

@media only screen and (max-width: 768px) {
	div.fl-node-q49nalekt62v .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-q49nalekt62v .pp-heading-content {
				text-align: ;
			}
	div.fl-node-q49nalekt62v .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-q49nalekt62v .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-q49nalekt62v div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-q49nalekt62v div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-q49nalekt62v div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span, div.fl-node-q49nalekt62v div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-q49nalekt62v .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-q49nalekt62v .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.pp-faq-item,
.pp-faq-item .pp-faq-content {
	overflow: hidden;
}
.pp-faq-button {
	cursor: pointer;
	display: table;
}
.pp-faq-button-label {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}
.pp-faq-button-icon.pp-faq-icon-right {
	display: table-cell;
	padding-left: 15px;
	vertical-align: middle;
}
.pp-faq-button-icon.pp-faq-icon-left {
	display: table-cell;
	padding-right: 15px;
	vertical-align: middle;
}
.pp-faq-content {
	display: none;
}
.pp-faq-item .pp-faq-button {
	width: 100%;
}
.pp-faq-item .pp-faq-button,
.pp-faq-item .pp-faq-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.31ss ease-in;
}

/* Small */
.pp-faq-small .pp-faq-button {
	padding: 10px 15px;
}
.pp-faq-small .pp-faq-content {
	padding: 0 30px 10px 15px;
}

/* Medium */
.pp-faq-medium .pp-faq-button {
	padding: 15px 20px;
}
.pp-faq-medium .pp-faq-button-label {
	font-size: 20px;
}
.pp-faq-medium .pp-faq-content {
	padding: 0 40px 15px 20px;
}

/* Large */
.pp-faq-large .pp-faq-button {
	padding: 20px 25px;
}
.pp-faq-large .pp-faq-button-label {
	font-size: 26px;
}
.pp-faq-large .pp-faq-content {
	padding: 0 50px 25px 25px;
}

.pp-faq-button-icon.pp-faq-close {
	display: none;
}

.pp-faq-item.pp-faq-item-active .pp-faq-close {
	display: table-cell;
}

.pp-faq-item.pp-faq-item-active .pp-faq-open {
	display: none;
}
.fl-node-pgn29u84e7lw .pp-faq-item:not(:last-child) {
			margin-bottom: 10px;
	}

.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button {
		background-color: var(--fl-global-green);
	}
.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button .pp-faq-button-label {
	}
.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button:hover,
.fl-node-pgn29u84e7lw .pp-faq-item.pp-faq-item-active .pp-faq-button {
	}
.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button:hover .pp-faq-button-label,
.fl-node-pgn29u84e7lw .pp-faq-item.pp-faq-item-active .pp-faq-button .pp-faq-button-label {
	}

	/* .fl-node-pgn29u84e7lw .pp-faq-item.pp-faq-item-active .pp-faq-button {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		transition: none;
	} */


.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-content {
	background-color: rgb(255, 255, 255);
	color: ;
		border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}


.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button-icon {
	font-size: 14px;
	color: ;
}
.fl-node-pgn29u84e7lw .pp-faq-item.pp-faq-item-active .pp-faq-button-icon,
.fl-node-pgn29u84e7lw .pp-faq-item:hover .pp-faq-button-icon {
	}
.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button-icon:before {
	font-size: 14px;
}

.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button-icon.pp-faq-icon-right {
	padding-left: 15px;
}
.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button-icon.pp-faq-icon-left {
	padding-right: 15px;
}

@media only screen and (max-width: 992px) {
	.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button-icon.pp-faq-icon-right {
		padding-left: px;
	}
	.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button-icon.pp-faq-icon-left {
		padding-right: px;
	}
	.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button-icon,
	.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button-icon:before {
		font-size: px;
	}
	.fl-node-pgn29u84e7lw .pp-faq-item:not(:last-child) {
					margin-bottom: px;
			}
}

@media only screen and (max-width: 768px) {
	.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button-icon.pp-faq-icon-right {
		padding-left: px;
	}
	.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button-icon.pp-faq-icon-left {
		padding-right: px;
	}

	.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button-icon,
	.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button-icon:before {
		font-size: px;
	}
	.fl-node-pgn29u84e7lw .pp-faq-item:not(:last-child) {
					margin-bottom: px;
			}
}
.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-pgn29u84e7lw .pp-faq-item {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: var(--fl-global-green);
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	box-shadow: 5px 5px 3px 2px rgba(204, 204, 204, 0.16);
}
.fl-node-pgn29u84e7lw .pp-faq-item .pp-faq-content {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}

/* Start Global CSS */

/* End Global CSS */


/* Start Global Nodes CSS */

/* End Global Nodes CSS */


/* Start Layout CSS */


/* Scrolling Banner */

.marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    padding: 10px 0;
    position: relative;
}

.marquee-content {
    display: inline-block;
    animation: scroll 320s linear infinite; 

}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}


/* End Layout CSS */

.fl-node-jqvkp9l0s6w8 {
  /* 1) Base: put the overlay on the whole row */
  /* Ensure row content sits above the overlay */
  /* 2) Mobile: start the gradient from the bottom */
}
.fl-node-jqvkp9l0s6w8 .fl-row-content-wrap {
  position: relative;
}
.fl-node-jqvkp9l0s6w8 .fl-row-content-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  /* top/right/bottom/left: 0 */
  pointer-events: none;
  /* clicks pass through */
  z-index: 1;
  /* sits above the bg image */
  background: linear-gradient(90deg, rgba(35, 35, 35, 0.85) 0%, transparent 100%);
}
.fl-node-jqvkp9l0s6w8 .fl-row-content {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .fl-node-jqvkp9l0s6w8 .fl-row-content-wrap::before {
    /* bottom to top */
    background: linear-gradient(0deg, rgba(35, 35, 35, 0.85) 0%, transparent 100%);
    /* or: background: linear-gradient(to top, rgba(35,35,35,0.85), transparent); */
  }
}
.fl-node-gzx4vb95qlhr .highlight-pink {
  background-color: rgba(246, 221, 213, 0.45);
}
.fl-node-dysit50l9q7n .fl-list-item-icon {
  background-color: #cbd378;
  border-radius: 60px;
  margin-right: 20px;
}
.fl-node-dysit50l9q7n .fl-list .fl-list-item-icon {
  padding: 5px 5px 5px 5px;
}
.fl-node-t9wx6riahfs8 .fl-list-item-icon {
  background-color: #cbd378;
  border-radius: 60px;
  margin-right: 20px;
}
.fl-node-t9wx6riahfs8 .fl-list .fl-list-item-icon {
  padding: 8px 8px 8px 8px;
}

                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        			.fl-node-jqvkp9l0s6w8 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-e1sg8i9yfaul .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-83wq9j7ogsab .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-9azgtbyujqic .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-lakfu40cdi93 .fl-row-content {
				min-width: 0px;
			}
		
        
        			.fl-node-0g9kx3ilvae2 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-rptbymuaq0c3 .fl-row-content {
				min-width: 0px;
			}
		body:not(.fl-builder-edit) .fl-node-83wq9j7ogsab{z-index:10; position:relative;}body:not(.fl-builder-edit) .fl-node-lakfu40cdi93{z-index:10; position:relative;}@media screen and (min-width:768px){
            .fl-node-76hlegui2sq8>.fl-col-content{
              padding-right: calc(100% - 600px + 0px ) !important;
            }
          }
          @media screen and (min-width:768px){
            .fl-node-9prv42wkze15>.fl-col-content{
              padding-right: calc(100% - 800px + 0px ) !important;
            }
          }
          @media screen and (min-width:768px){
            .fl-node-c50tkq9fuw6m>.fl-col-content{
              padding-right: calc(100% - 800px + 0px ) !important;
            }
          }
          @media screen and (min-width:768px){
            .fl-node-etjxkq34suw7>.fl-col-content{
              padding-right: calc(100% - 700px + 0px ) !important;
            }
          }
          