/**
 * 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: 1023px) { /* 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: 767px) { /* 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: 1024px) 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: 768px) and (max-width: 1023px) {
	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: 767px) {
	html .fl-visible-desktop:not(.fl-visible-mobile),
	html .fl-visible-large:not(.fl-visible-mobile),
	html .fl-visible-medium:not(.fl-visible-mobile) {
		display: none;
	}
}
.fl-col-content {
	display: flex;
	flex-direction: column;
}
.fl-row-fixed-width {
	max-width: 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;
}
.page .fl-post-header, .single-fl-builder-template .fl-post-header { display:none; }





.fl-node-lg20fuvmohs8 > .fl-row-content-wrap {
	background-image: linear-gradient(0deg, #f2f7ff 0%, rgba(255, 255, 255, 0) 100%);
}
.fl-node-lg20fuvmohs8 .fl-row-content {
	max-width: 1140px;
}
.fl-node-lg20fuvmohs8 .fl-builder-bottom-edge-layer {
	bottom: -95vw;
}
.fl-node-lg20fuvmohs8 .fl-builder-bottom-edge-layer > * {
	width: 250vw;
	left: calc( 50% - 125vw );
	right: auto;
	height: 100vw;
	top: auto;
	bottom: 0;
	transform: scaleX(1) scaleY(-1);
}
.fl-node-lg20fuvmohs8 .fl-builder-bottom-edge-layer .fl-shape-content .fl-shape {
	fill: #ffffff;
}
.fl-node-lg20fuvmohs8 .fl-row-content-wrap {
	overflow: hidden;
}
 .fl-node-lg20fuvmohs8 > .fl-row-content-wrap {
	margin-bottom:0px;
}
 .fl-node-lg20fuvmohs8 > .fl-row-content-wrap {
	padding-top:48px;
	padding-right:40px;
	padding-bottom:150px;
	padding-left:40px;
}
@media ( max-width: 1023px ) {
 .fl-node-lg20fuvmohs8.fl-row > .fl-row-content-wrap {
	padding-bottom:100px;
}
}
@media ( max-width: 767px ) {
 .fl-node-lg20fuvmohs8.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:60px;
	padding-left:30px;
}
}






.fl-node-bgtk2rzdyicv > .fl-row-content-wrap {
	background-color: #fff;
}
.fl-node-bgtk2rzdyicv .fl-row-content {
	max-width: 1140px;
}
 .fl-node-bgtk2rzdyicv > .fl-row-content-wrap {
	padding-top:32px;
	padding-right:40px;
	padding-bottom:48px;
	padding-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-bgtk2rzdyicv.fl-row > .fl-row-content-wrap {
	padding-top:32px;
}
}
@media ( max-width: 767px ) {
 .fl-node-bgtk2rzdyicv.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}






.fl-node-qk75h6ut8l01 > .fl-row-content-wrap {
	background-color: #fff;
}
.fl-node-qk75h6ut8l01 .fl-row-content {
	max-width: 1140px;
}
@media ( max-width: 767px ) {
 .fl-node-qk75h6ut8l01.fl-row > .fl-row-content-wrap {
	margin-top:24px;
}
}
 .fl-node-qk75h6ut8l01 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:40px;
	padding-bottom:48px;
	padding-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-qk75h6ut8l01.fl-row > .fl-row-content-wrap {
	padding-top:32px;
}
}
@media ( max-width: 767px ) {
 .fl-node-qk75h6ut8l01.fl-row > .fl-row-content-wrap {
	padding-top:24px;
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}






.fl-node-431u7qevaymt > .fl-row-content-wrap {
	background-color: #fff;
}
.fl-node-431u7qevaymt .fl-row-content {
	max-width: 1140px;
}
 .fl-node-431u7qevaymt > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:40px;
	padding-bottom:48px;
	padding-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-431u7qevaymt.fl-row > .fl-row-content-wrap {
	padding-top:32px;
}
}
@media ( max-width: 767px ) {
 .fl-node-431u7qevaymt.fl-row > .fl-row-content-wrap {
	padding-top:24px;
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}






.fl-node-4uybxa275cpl > .fl-row-content-wrap {
	background-color: #fff;
}
.fl-node-4uybxa275cpl .fl-row-content {
	max-width: 1140px;
}
 .fl-node-4uybxa275cpl > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:40px;
	padding-bottom:48px;
	padding-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-4uybxa275cpl.fl-row > .fl-row-content-wrap {
	padding-top:32px;
}
}
@media ( max-width: 767px ) {
 .fl-node-4uybxa275cpl.fl-row > .fl-row-content-wrap {
	padding-top:24px;
	padding-right:30px;
	padding-bottom:0px;
	padding-left:30px;
}
}






.fl-node-trihc8jx3de7 > .fl-row-content-wrap {
	background-color: #fff;
}
.fl-node-trihc8jx3de7 .fl-row-content {
	max-width: 1140px;
}
 .fl-node-trihc8jx3de7 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:40px;
	padding-bottom:80px;
	padding-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-trihc8jx3de7.fl-row > .fl-row-content-wrap {
	padding-top:32px;
}
}
@media ( max-width: 767px ) {
 .fl-node-trihc8jx3de7.fl-row > .fl-row-content-wrap {
	padding-top:24px;
	padding-right:30px;
	padding-bottom:60px;
	padding-left:30px;
}
}






.fl-node-krpq5ydn697x > .fl-row-content-wrap {
	background-color: #F8F9FA;
}
.fl-node-krpq5ydn697x .fl-row-content {
	max-width: 1140px;
}
 .fl-node-krpq5ydn697x > .fl-row-content-wrap {
	padding-top:48px;
	padding-right:40px;
	padding-bottom:48px;
	padding-left:40px;
}
@media ( max-width: 767px ) {
 .fl-node-krpq5ydn697x.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-left:30px;
}
}






.fl-node-5jhiked9ur4z > .fl-row-content-wrap {
	background-color: #fff;
}
.fl-node-5jhiked9ur4z .fl-row-content {
	max-width: 1140px;
}
 .fl-node-5jhiked9ur4z > .fl-row-content-wrap {
	padding-top:48px;
	padding-right:40px;
	padding-bottom:48px;
	padding-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-5jhiked9ur4z.fl-row > .fl-row-content-wrap {
	padding-top:32px;
}
}
@media ( max-width: 1023px ) {
 .fl-node-5jhiked9ur4z.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-5jhiked9ur4z.fl-row > .fl-row-content-wrap {
	padding-top:24px;
	padding-right:30px;
	padding-bottom:34px;
	padding-left:30px;
}
}






.fl-node-poavz510wihd > .fl-row-content-wrap {
	background-color: #F2F5FF;
}
.fl-node-poavz510wihd .fl-row-content {
	max-width: 1000px;
}
 .fl-node-poavz510wihd > .fl-row-content-wrap {
	padding-top:64px;
	padding-right:40px;
	padding-bottom:64px;
	padding-left:40px;
}
@media ( max-width: 767px ) {
 .fl-node-poavz510wihd.fl-row > .fl-row-content-wrap {
	padding-right:20px;
	padding-left:20px;
}
}






.fl-node-43dg2fmuc0kl > .fl-row-content-wrap {
	background-color: #F2F5FF;
}
.fl-node-43dg2fmuc0kl .fl-row-content {
	max-width: 1000px;
}
 .fl-node-43dg2fmuc0kl > .fl-row-content-wrap {
	padding-top:64px;
	padding-right:40px;
	padding-bottom:64px;
	padding-left:40px;
}
@media ( max-width: 767px ) {
 .fl-node-43dg2fmuc0kl.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-left:30px;
}
}






.fl-node-20xpni3y4ocd .fl-row-content {
	max-width: 1140px;
}
 .fl-node-20xpni3y4ocd > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:40px;
	padding-bottom:0px;
	padding-left:40px;
}
@media ( max-width: 767px ) {
 .fl-node-20xpni3y4ocd.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-left:30px;
}
}






.fl-node-r8h0zm6ecfnx > .fl-row-content-wrap {
	background-color: #fff;
}
.fl-node-r8h0zm6ecfnx .fl-row-content {
	max-width: 1140px;
}
 .fl-node-r8h0zm6ecfnx > .fl-row-content-wrap {
	padding-top:48px;
	padding-right:40px;
	padding-bottom:38px;
	padding-left:40px;
}
@media ( max-width: 1200px ) {
 .fl-node-r8h0zm6ecfnx.fl-row > .fl-row-content-wrap {
	padding-top:32px;
}
}
@media ( max-width: 1023px ) {
 .fl-node-r8h0zm6ecfnx.fl-row > .fl-row-content-wrap {
	padding-top:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-r8h0zm6ecfnx.fl-row > .fl-row-content-wrap {
	padding-top:24px;
	padding-right:30px;
	padding-bottom:38px;
	padding-left:30px;
}
}






.fl-node-tjuygz39dbc2 .fl-row-content {
	max-width: 750px;
}
 .fl-node-tjuygz39dbc2 > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:40px;
	padding-bottom:48px;
	padding-left:40px;
}
@media ( max-width: 767px ) {
 .fl-node-tjuygz39dbc2.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-left:30px;
}
}






.fl-node-q7ovhy4bdfc3 .fl-row-content {
	max-width: 1140px;
}
 .fl-node-q7ovhy4bdfc3 > .fl-row-content-wrap {
	padding-top:32px;
	padding-right:40px;
	padding-bottom:80px;
	padding-left:40px;
}
@media ( max-width: 767px ) {
 .fl-node-q7ovhy4bdfc3.fl-row > .fl-row-content-wrap {
	padding-top:0px;
	padding-right:30px;
	padding-bottom:48px;
	padding-left:30px;
}
}






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

	.fl-builder-edit .fl-node-9khei71mj3rp.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-9khei71mj3rp.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-9khei71mj3rp.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-9khei71mj3rp.fl-row-full-height > .fl-row-content-wrap {
			min-height: 500px;
		}
	}
.fl-node-9khei71mj3rp > .fl-row-content-wrap:after {
	background-image: linear-gradient(177deg, rgba(19, 46, 81, 0.00) 0.68%, rgba(19, 46, 81, 0.90) 94.47%);
}
.fl-node-9khei71mj3rp > .fl-row-content-wrap {
	background-image: url(https://parker-chase.com/wp-content/uploads/2022/12/schedule-tour.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
.fl-node-9khei71mj3rp.fl-row-custom-height > .fl-row-content-wrap {
	min-height: 700px;
}
.fl-node-9khei71mj3rp .fl-row-content {
	max-width: 650px;
}
@media(max-width: 1200px) {
	.fl-node-9khei71mj3rp > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 1023px) {
	.fl-node-9khei71mj3rp > .fl-row-content-wrap {
		background-position: center center;
	}
}
@media(max-width: 767px) {
	.fl-node-9khei71mj3rp > .fl-row-content-wrap {
		background-image: url(https://parker-chase.com/wp-content/uploads/2022/12/schedule-a-tour.jpg);
		background-position: center center;
	}
}
 .fl-node-9khei71mj3rp > .fl-row-content-wrap {
	margin-right:0px;
	margin-left:0px;
}
 .fl-node-9khei71mj3rp > .fl-row-content-wrap {
	padding-top:50px;
	padding-right:0px;
	padding-bottom:50px;
	padding-left:0px;
}
@media ( max-width: 1023px ) {
 .fl-node-9khei71mj3rp.fl-row > .fl-row-content-wrap {
	padding-right:40px;
	padding-left:40px;
}
}
@media ( max-width: 767px ) {
 .fl-node-9khei71mj3rp.fl-row > .fl-row-content-wrap {
	padding-right:30px;
	padding-left:30px;
}
}

.fl-builder-content .fl-node-nwy1kieu6xog .fl-col-content a {
	color: #495057;
}

.fl-builder-content .fl-node-nwy1kieu6xog .fl-col-content a:hover {
	color: #0D8BD7;
}


.fl-node-nwy1kieu6xog {
	width: 48.5%;
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-nwy1kieu6xog {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-nwy1kieu6xog > .fl-col-content {
	margin-right:20px;
}




.fl-node-fsug7b1mdvnh {
	width: 50%;
}
.fl-node-fsug7b1mdvnh > .fl-col-content {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-fsug7b1mdvnh {
		width: 60% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-fsug7b1mdvnh {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-fsug7b1mdvnh > .fl-col-content {
	margin-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-fsug7b1mdvnh.fl-col > .fl-col-content {
	margin-top:0px;
}
}
 .fl-node-fsug7b1mdvnh > .fl-col-content {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-fsug7b1mdvnh.fl-col > .fl-col-content {
	padding-right:0px;
	padding-left:0px;
}
}




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




.fl-node-vx3hq0nl4bmw {
	width: 20%;
}
.fl-node-vx3hq0nl4bmw > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.12);
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-vx3hq0nl4bmw {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-vx3hq0nl4bmw {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-vx3hq0nl4bmw > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:32px;
	margin-left:0px;
}
@media ( max-width: 1023px ) {
 .fl-node-vx3hq0nl4bmw.fl-col > .fl-col-content {
	margin-right:16px;
}
}
@media ( max-width: 767px ) {
 .fl-node-vx3hq0nl4bmw.fl-col > .fl-col-content {
	margin-right:0px;
	margin-bottom:0px;
}
}
 .fl-node-vx3hq0nl4bmw > .fl-col-content {
	padding-top:16px;
	padding-right:16px;
	padding-bottom:16px;
	padding-left:16px;
}
@media ( max-width: 767px ) {
 .fl-node-vx3hq0nl4bmw.fl-col > .fl-col-content {
	padding-top:16px;
	padding-right:16px;
	padding-bottom:16px;
	padding-left:16px;
}
}




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




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




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




.fl-node-fb8imy20k6v1 {
	width: 50%;
}
.fl-node-fb8imy20k6v1 > .fl-col-content {
	background-image: url(https://parker-chase.com/wp-content/uploads/2025/10/art-music-piano-kindergarten.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
.fl-builder-content .fl-node-fb8imy20k6v1 > .fl-col-content {
	min-height: 400px;
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-fb8imy20k6v1 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-builder-content .fl-node-fb8imy20k6v1 > .fl-col-content {
		min-height: 300px;
	}
}
 .fl-node-fb8imy20k6v1 > .fl-col-content {
	margin-right:20px;
}
@media ( max-width: 767px ) {
 .fl-node-fb8imy20k6v1.fl-col > .fl-col-content {
	margin-bottom:24px;
}
}




.fl-node-b8g2rl460dcf {
	width: 50%;
}
.fl-node-b8g2rl460dcf > .fl-col-content {
	background-image: url(https://parker-chase.com/wp-content/uploads/2025/10/science-dinosaur.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
.fl-builder-content .fl-node-b8g2rl460dcf > .fl-col-content {
	min-height: 400px;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-b8g2rl460dcf {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-b8g2rl460dcf {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-builder-content .fl-node-b8g2rl460dcf > .fl-col-content {
		min-height: 300px;
	}
}
 .fl-node-b8g2rl460dcf > .fl-col-content {
	margin-right:20px;
	margin-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-b8g2rl460dcf.fl-col > .fl-col-content {
	margin-top:0px;
}
}
 .fl-node-b8g2rl460dcf > .fl-col-content {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-b8g2rl460dcf.fl-col > .fl-col-content {
	padding-right:0px;
	padding-left:0px;
}
}




.fl-node-sv1rgd49xulc {
	width: 52%;
}
.fl-node-sv1rgd49xulc > .fl-col-content {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-sv1rgd49xulc {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-sv1rgd49xulc {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-sv1rgd49xulc > .fl-col-content {
	margin-right:20px;
	margin-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-sv1rgd49xulc.fl-col > .fl-col-content {
	margin-top:30px;
}
}
 .fl-node-sv1rgd49xulc > .fl-col-content {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-sv1rgd49xulc.fl-col > .fl-col-content {
	padding-right:0px;
	padding-left:0px;
}
}




.fl-node-coxd4pzrlsea {
	width: 50%;
}
.fl-node-coxd4pzrlsea > .fl-col-content {
	background-image: url(https://parker-chase.com/wp-content/uploads/2025/10/life-skills-recycling-kindergarten.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
.fl-builder-content .fl-node-coxd4pzrlsea > .fl-col-content {
	min-height: 400px;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-coxd4pzrlsea {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-coxd4pzrlsea {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-builder-content .fl-node-coxd4pzrlsea > .fl-col-content {
		min-height: 300px;
	}
}
 .fl-node-coxd4pzrlsea > .fl-col-content {
	margin-right:20px;
	margin-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-coxd4pzrlsea.fl-col > .fl-col-content {
	margin-top:0px;
}
}
 .fl-node-coxd4pzrlsea > .fl-col-content {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-coxd4pzrlsea.fl-col > .fl-col-content {
	padding-right:0px;
	padding-left:0px;
}
}




.fl-node-4wvq9j6gnihb {
	width: 50%;
}
.fl-node-4wvq9j6gnihb > .fl-col-content {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-4wvq9j6gnihb {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-4wvq9j6gnihb {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-4wvq9j6gnihb > .fl-col-content {
	margin-right:20px;
	margin-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-4wvq9j6gnihb.fl-col > .fl-col-content {
	margin-top:24px;
}
}
 .fl-node-4wvq9j6gnihb > .fl-col-content {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-4wvq9j6gnihb.fl-col > .fl-col-content {
	padding-right:0px;
	padding-left:0px;
}
}




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




.fl-node-mr3hpvky0sfw {
	width: 50%;
}
.fl-node-mr3hpvky0sfw > .fl-col-content {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-mr3hpvky0sfw {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-mr3hpvky0sfw {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-mr3hpvky0sfw > .fl-col-content {
	margin-right:20px;
	margin-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-mr3hpvky0sfw.fl-col > .fl-col-content {
	margin-top:24px;
}
}
 .fl-node-mr3hpvky0sfw > .fl-col-content {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-mr3hpvky0sfw.fl-col > .fl-col-content {
	padding-right:0px;
	padding-left:0px;
}
}




.fl-node-nw4bqzgjhc2a {
	width: 50%;
}
.fl-node-nw4bqzgjhc2a > .fl-col-content {
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-nw4bqzgjhc2a {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-nw4bqzgjhc2a {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-nw4bqzgjhc2a > .fl-col-content {
	margin-right:20px;
	margin-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-nw4bqzgjhc2a.fl-col > .fl-col-content {
	margin-top:24px;
}
}
 .fl-node-nw4bqzgjhc2a > .fl-col-content {
	padding-top:0px;
	padding-right:20px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-nw4bqzgjhc2a.fl-col > .fl-col-content {
	padding-right:0px;
	padding-left:0px;
}
}




.fl-node-4pybwvj387a9 {
	width: 100%;
}




.fl-node-nl9kg2epxf05 {
	width: 51.5%;
}
.fl-node-nl9kg2epxf05 > .fl-col-content {
	background-image: url(https://parker-chase.com/wp-content/uploads/2025/10/summer-program-new-1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-left-radius: 32px;
	border-top-right-radius: 32px;
	border-bottom-left-radius: 32px;
	border-bottom-right-radius: 32px;
}
.fl-builder-content .fl-node-nl9kg2epxf05 > .fl-col-content {
	min-height: 400px;
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-nl9kg2epxf05 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-builder-content .fl-node-nl9kg2epxf05 > .fl-col-content {
		min-height: 300px;
	}
}
 .fl-node-nl9kg2epxf05 > .fl-col-content {
	margin-right:0px;
	margin-left:20px;
}
@media ( max-width: 767px ) {
 .fl-node-nl9kg2epxf05.fl-col > .fl-col-content {
	margin-bottom:24px;
}
}




.fl-node-4ec3ilaksjd1 {
	width: 50%;
}
.fl-node-4ec3ilaksjd1 > .fl-col-content {
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-4ec3ilaksjd1 {
		width: 40% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-4ec3ilaksjd1 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
@media ( max-width: 767px ) {
 .fl-node-4ec3ilaksjd1.fl-col > .fl-col-content {
	margin-top:40px;
}
}
 .fl-node-4ec3ilaksjd1 > .fl-col-content {
	padding-left:20px;
}
@media ( max-width: 767px ) {
 .fl-node-4ec3ilaksjd1.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




.fl-node-qxp15uhjf234 {
	width: 50%;
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-qxp15uhjf234 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-qxp15uhjf234 > .fl-col-content {
	margin-left:20px;
}




.fl-node-s47vjn8oxiu5 {
	width: 50%;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-s47vjn8oxiu5 {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-s47vjn8oxiu5 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-s47vjn8oxiu5 > .fl-col-content {
	margin-left:20px;
}
@media ( max-width: 767px ) {
 .fl-node-s47vjn8oxiu5.fl-col > .fl-col-content {
	margin-top:24px;
}
}
@media ( max-width: 767px ) {
 .fl-node-s47vjn8oxiu5.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




.fl-node-q73dpcxset06 {
	width: 48%;
}
.fl-node-q73dpcxset06 > .fl-col-content {
	background-image: url(https://parker-chase.com/wp-content/uploads/2025/10/science-animals-snail-kindergarten.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-q73dpcxset06 {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-q73dpcxset06 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-builder-content .fl-node-q73dpcxset06 > .fl-col-content {
		min-height: 300px;
	}
}
 .fl-node-q73dpcxset06 > .fl-col-content {
	margin-left:20px;
}
@media ( max-width: 767px ) {
 .fl-node-q73dpcxset06.fl-col > .fl-col-content {
	margin-top:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-q73dpcxset06.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




.fl-node-erj0oc95h3xp {
	width: 50%;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-erj0oc95h3xp {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-erj0oc95h3xp {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-erj0oc95h3xp > .fl-col-content {
	margin-left:20px;
}
@media ( max-width: 767px ) {
 .fl-node-erj0oc95h3xp.fl-col > .fl-col-content {
	margin-top:24px;
}
}
@media ( max-width: 767px ) {
 .fl-node-erj0oc95h3xp.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




.fl-node-zl0g5pekth43 {
	width: 50%;
}
.fl-node-zl0g5pekth43 > .fl-col-content {
	background-image: url(https://parker-chase.com/wp-content/uploads/2025/10/art-theather-magic-kindergarten.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
.fl-builder-content .fl-node-zl0g5pekth43 > .fl-col-content {
	min-height: 400px;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-zl0g5pekth43 {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-zl0g5pekth43 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-builder-content .fl-node-zl0g5pekth43 > .fl-col-content {
		min-height: 300px;
	}
}
 .fl-node-zl0g5pekth43 > .fl-col-content {
	margin-left:20px;
}
@media ( max-width: 767px ) {
 .fl-node-zl0g5pekth43.fl-col > .fl-col-content {
	margin-top:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-zl0g5pekth43.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




.fl-node-uisxbyjmtde2 {
	width: 20%;
}
.fl-node-uisxbyjmtde2 > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.12);
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-uisxbyjmtde2 {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-uisxbyjmtde2 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-uisxbyjmtde2 > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:32px;
	margin-left:0px;
}
@media ( max-width: 1023px ) {
 .fl-node-uisxbyjmtde2.fl-col > .fl-col-content {
	margin-right:16px;
}
}
@media ( max-width: 767px ) {
 .fl-node-uisxbyjmtde2.fl-col > .fl-col-content {
	margin-right:0px;
	margin-bottom:0px;
}
}
 .fl-node-uisxbyjmtde2 > .fl-col-content {
	padding-top:16px;
	padding-right:16px;
	padding-bottom:16px;
	padding-left:16px;
}
@media ( max-width: 767px ) {
 .fl-node-uisxbyjmtde2.fl-col > .fl-col-content {
	padding-top:16px;
	padding-right:16px;
	padding-bottom:16px;
	padding-left:16px;
}
}




.fl-node-qwa6i4mt98fd {
	width: 50%;
}
.fl-node-qwa6i4mt98fd > .fl-col-content {
	background-image: url(https://parker-chase.com/wp-content/uploads/2025/10/art-painting-kindergarten.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: scroll;
	background-size: cover;
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
.fl-builder-content .fl-node-qwa6i4mt98fd > .fl-col-content {
	min-height: 400px;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-qwa6i4mt98fd {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-qwa6i4mt98fd {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-builder-content .fl-node-qwa6i4mt98fd > .fl-col-content {
		min-height: 300px;
	}
}
 .fl-node-qwa6i4mt98fd > .fl-col-content {
	margin-left:20px;
}
@media ( max-width: 767px ) {
 .fl-node-qwa6i4mt98fd.fl-col > .fl-col-content {
	margin-top:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-qwa6i4mt98fd.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




.fl-node-v1pe2a3dkgf8 {
	width: 50%;
}
.fl-node-v1pe2a3dkgf8 > .fl-col-content {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-v1pe2a3dkgf8 {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-v1pe2a3dkgf8 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
	.fl-builder-content .fl-node-v1pe2a3dkgf8 > .fl-col-content {
		min-height: 300px;
	}
}
 .fl-node-v1pe2a3dkgf8 > .fl-col-content {
	margin-left:20px;
}
@media ( max-width: 767px ) {
 .fl-node-v1pe2a3dkgf8.fl-col > .fl-col-content {
	margin-top:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-v1pe2a3dkgf8.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}




.fl-node-qgw4ivlbctpd {
	width: 20%;
}
.fl-node-qgw4ivlbctpd > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.12);
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-qgw4ivlbctpd {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-qgw4ivlbctpd {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-qgw4ivlbctpd > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:32px;
	margin-left:0px;
}
@media ( max-width: 1023px ) {
 .fl-node-qgw4ivlbctpd.fl-col > .fl-col-content {
	margin-right:16px;
}
}
@media ( max-width: 767px ) {
 .fl-node-qgw4ivlbctpd.fl-col > .fl-col-content {
	margin-right:0px;
	margin-bottom:24px;
}
}
 .fl-node-qgw4ivlbctpd > .fl-col-content {
	padding-top:16px;
	padding-right:16px;
	padding-bottom:16px;
	padding-left:16px;
}
@media ( max-width: 767px ) {
 .fl-node-qgw4ivlbctpd.fl-col > .fl-col-content {
	padding-top:16px;
	padding-right:16px;
	padding-bottom:16px;
	padding-left:16px;
}
}




.fl-node-ps7n5ib6xuj9 {
	width: 20%;
}
.fl-node-ps7n5ib6xuj9 > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.12);
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-ps7n5ib6xuj9 {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-ps7n5ib6xuj9 {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-ps7n5ib6xuj9 > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:32px;
	margin-left:0px;
}
@media ( max-width: 1023px ) {
 .fl-node-ps7n5ib6xuj9.fl-col > .fl-col-content {
	margin-left:16px;
}
}
@media ( max-width: 767px ) {
 .fl-node-ps7n5ib6xuj9.fl-col > .fl-col-content {
	margin-bottom:24px;
	margin-left:0px;
}
}
 .fl-node-ps7n5ib6xuj9 > .fl-col-content {
	padding-top:16px;
	padding-right:16px;
	padding-bottom:16px;
	padding-left:16px;
}
@media ( max-width: 767px ) {
 .fl-node-ps7n5ib6xuj9.fl-col > .fl-col-content {
	padding-top:16px;
	padding-right:16px;
	padding-bottom:16px;
	padding-left:16px;
}
}




.fl-node-4sez79bry8cq {
	width: 20%;
}
.fl-node-4sez79bry8cq > .fl-col-content {
	background-color: #ffffff;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.12);
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-4sez79bry8cq {
		width: 50% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-4sez79bry8cq {
		width: 100% !important;
		max-width: none;
		clear: none;
		float: left;
	}
}
 .fl-node-4sez79bry8cq > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
@media ( max-width: 1023px ) {
 .fl-node-4sez79bry8cq.fl-col > .fl-col-content {
	margin-left:16px;
}
}
@media ( max-width: 767px ) {
 .fl-node-4sez79bry8cq.fl-col > .fl-col-content {
	margin-bottom:24px;
	margin-left:0px;
}
}
 .fl-node-4sez79bry8cq > .fl-col-content {
	padding-top:16px;
	padding-right:16px;
	padding-bottom:16px;
	padding-left:16px;
}
@media ( max-width: 767px ) {
 .fl-node-4sez79bry8cq.fl-col > .fl-col-content {
	padding-top:16px;
	padding-right:16px;
	padding-bottom:16px;
	padding-left:16px;
}
}




.fl-node-xhgpca2t8lfz {
	width: 100%;
}
.fl-node-xhgpca2t8lfz > .fl-col-content {
	background-color: rgba(255,255,255,0.75);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
@media(max-width: 1023px) {
	.fl-builder-content .fl-node-xhgpca2t8lfz {
		width: 100% !important;
		max-width: none;
		-webkit-box-flex: 0 1 auto;
		-moz-box-flex: 0 1 auto;
		-webkit-flex: 0 1 auto;
		-ms-flex: 0 1 auto;
		flex: 0 1 auto;
	}
}
@media ( max-width: 1023px ) {
 .fl-node-xhgpca2t8lfz.fl-col > .fl-col-content {
	margin-top:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-xhgpca2t8lfz.fl-col > .fl-col-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
}
 .fl-node-xhgpca2t8lfz > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
@media ( max-width: 767px ) {
 .fl-node-xhgpca2t8lfz.fl-col > .fl-col-content {
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
}
}
.fl-module-heading .fl-heading {
	padding: 0 !important;
	margin: 0 !important;
}.fl-node-scbp97iyx2t4.fl-module-heading, .fl-node-scbp97iyx2t4.fl-module-heading :where(a, q, p, span) {
	font-size: 32px;
}
 .fl-node-scbp97iyx2t4.fl-module-heading {
	margin-top:0px;
	margin-right:80px;
	margin-bottom:24px;
	margin-left:0px;
}
@media ( max-width: 1023px ) {
 .fl-node-scbp97iyx2t4.fl-module-heading.fl-module {
	margin-right:0px;
}
}
@media ( max-width: 767px ) {
 .fl-node-scbp97iyx2t4.fl-module-heading.fl-module {
	margin-top:0px;
}
}
@media (max-width: 767px) { .fl-node-scbp97iyx2t4.fl-module-heading { margin-bottom:20px; } }div.fancybox-container {
	z-index: 999992;
}
.pp-photo-gallery {
    position: relative;
	text-align: center;
	text-decoration: none;
	opacity: 0;
}
.pp-photo-gallery:before,
.pp-photo-gallery:after {
	content: " ";
	display: table;
}
.pp-photo-gallery:after {
	clear: both;
}
.pp-photo-gallery .pp-photo-gallery-item {
    float: left;
    text-align: center;
}
.pp-photo-gallery .pp-photo-gallery-content {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.pp-photo-gallery .pp-photo-gallery-content > a {
	display: block;
    padding: unset;
	isolation: isolate;
	overflow: hidden;
	transform: translateZ(0);
}

/* Overlay */
.pp-photo-gallery .pp-gallery-overlay {
	position: absolute;
	overflow: hidden;
	transition: .5s ease;
}

.pp-photo-gallery .pp-gallery-overlay .pp-caption {
	margin-bottom: 10px;
}

.pp-photo-gallery .pp-photo-gallery-content .pp-gallery-img {
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    will-change: transform;
    width: 100%;
}

.pp-photo-gallery.justified-gallery > a,
.pp-photo-gallery.justified-gallery > div {
	opacity: 0;
	visibility: hidden !important;
}
.pp-photo-gallery.justified-gallery > .entry-visible {
	opacity: 1;
	visibility: visible !important;
}

.pp-photo-gallery.justified-gallery .pp-photo-gallery-content {
	height: 100%;
}

.pp-gallery-pagination .pp-gallery-load-more {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	-webkit-transition: 0.2s all ease-in-out;
	-moz-transition: 0.2s all ease-in-out;
	transition: 0.2s all ease-in-out;
}
.pp-gallery-pagination .pp-gallery-load-more.disabled {
	opacity: 0.5;
	pointer-events: none;
}
.pp-gallery-pagination a,
.pp-gallery-pagination a:visited {
	text-decoration: none;
}

.pp-gallery-fancybox-axis-x.fancybox-show-thumbs .fancybox-inner {
	right: 0;
	bottom: 95px;
}
.pp-gallery-fancybox-axis-x .fancybox-thumbs {
	top: auto;
	width: auto;
	bottom: 0;
	left: 0;
	right : 0;
	height: 95px;
	padding: 10px 10px 5px 10px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, 0.3);
}
.fancybox-p7qt83kw0x6a button.fancybox-button {
	padding: 10px;
	border-radius: 0;
    box-shadow: none;
	border: none !important;
}

	.fancybox-p7qt83kw0x6a .pp-fancybox-desc {
		display: none;
	}


.fl-node-p7qt83kw0x6a .pp-photo-gallery {
	opacity: 1;
}
.fl-node-p7qt83kw0x6a .pp-photo-gallery {
	}


.fl-node-p7qt83kw0x6a .pp-photo-gallery-item {
	width: 48.9%;
			margin-right: 2%;
		margin-bottom: 2%;
	}


.fl-node-p7qt83kw0x6a .pp-gallery-masonry-item {
	width: calc( 48.9% - 1px );
}

.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:hover {
	}
	.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n+1){
		clear: left;
	}
	.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n+0){
		clear: right;
	}
	.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n){
		margin-right: 0;
	}

.fl-node-p7qt83kw0x6a .pp-photo-gallery-item img,
.fl-node-p7qt83kw0x6a .pp-gallery-overlay,
.fl-node-p7qt83kw0x6a .pp-photo-gallery-content,
.fl-node-p7qt83kw0x6a .pp-photo-gallery-content > a {
	 border-top-left-radius: 12px; 	 border-bottom-left-radius: 12px; 	 border-top-right-radius: 12px; 	 border-bottom-right-radius: 12px; }


.fl-node-p7qt83kw0x6a .pp-photo-space {
	width: 2%;
}





.fl-node-p7qt83kw0x6a .pp-gallery-overlay .pp-overlay-icon span {
	width: auto;
	height: auto;
	color: ;
	font-size: 30px;
	background-color: ;
					}

.fl-node-p7qt83kw0x6a .pp-gallery-overlay .pp-overlay-icon span:before {
	font-size: 30px;
	width: auto;
	height: auto;
}

.fl-node-p7qt83kw0x6a .pp-photo-gallery-caption,
.fl-node-p7qt83kw0x6a .pp-gallery-overlay .pp-caption {
	}















.fl-node-p7qt83kw0x6a .pp-gallery-pagination.pagination-scroll {
	display: none;
}
.fl-node-p7qt83kw0x6a .pp-gallery-pagination .pp-gallery-load-more {
			background-color: #eee;
		}
.fl-node-p7qt83kw0x6a .pp-gallery-pagination .pp-gallery-load-more:hover {
			}

.fancybox-p7qt83kw0x6a-overlay {
	background-image: none;
			background-color: rgba(0,0,0,0.5);
	}
.fancybox-is-open .fancybox-p7qt83kw0x6a-overlay {
	opacity: 1;
}

@media only screen and ( max-width: 1200px ) {
	
			.fl-node-p7qt83kw0x6a .pp-photo-gallery-item {
			width: 48.9%;
		}

					.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n+1){
				clear: none;
			}
			.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n+0){
				clear: none;
			}
			.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n){
				margin-right: 2%;
			}
							.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n+1){
					clear: left;
				}
				.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n+0){
					clear: right;
				}
						.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n){
				margin-right: 0;
			}
			}

@media only screen and ( max-width: 1023px ) {
	
			.fl-node-p7qt83kw0x6a .pp-photo-gallery-item {
			width: 48.9%;
		}

					.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n+1){
				clear: none;
			}
			.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n+0){
				clear: none;
			}
			.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n){
				margin-right: 2%;
			}
							.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n+1){
					clear: left;
				}
				.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n+0){
					clear: right;
				}
						.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n){
				margin-right: 0;
			}
			}

@media only screen and ( max-width: 767px ) {
			.fl-node-p7qt83kw0x6a .pp-photo-gallery-item {
			width: 48.9%;
		}
					.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n+1){
				clear: none;
			}
			.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n+0){
				clear: none;
			}
			.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n){
				margin-right: 2%;
			}
							.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n+1){
					clear: left;
				}
				.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n+0){
					clear: right;
				}
						.fl-node-p7qt83kw0x6a .pp-photo-gallery-item:nth-child(2n){
				margin-right: 0;
			}
			}
.fl-node-p7qt83kw0x6a .pp-photo-gallery-item {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
.fl-node-p7qt83kw0x6a .pp-photo-gallery-caption {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.fl-node-p7qt83kw0x6a .pp-gallery-pagination {
	text-align: left;
}
.fl-node-p7qt83kw0x6a .pp-gallery-pagination .pp-gallery-load-more {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
 .fl-node-p7qt83kw0x6a > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
img.mfp-img {
    padding-bottom: 40px !important;
}

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

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

@media (max-width: 767px) { /* Mobile Photo */
.fl-photo-content,
.fl-photo-img {
	max-width: 100%;
} }.fl-builder-content-58819 .fl-node-c6phiv7m4ero img.fl-photo-img {
	object-fit: cover;
	object-position: center;
}
.fl-node-c6phiv7m4ero, .fl-node-c6phiv7m4ero .fl-photo {
	text-align: left;
}
.fl-node-c6phiv7m4ero .fl-photo-content, .fl-node-c6phiv7m4ero .fl-photo-img {
	width: 100%;
}
.fl-node-c6phiv7m4ero .fl-photo-img {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
@media(max-width: 1023px) {
	.fl-node-c6phiv7m4ero .fl-photo-content, .fl-node-c6phiv7m4ero .fl-photo-img {
		width: 100%;
	}
}
 .fl-node-c6phiv7m4ero > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content-58819 .fl-node-d82ic3kfq40v img.fl-photo-img {
	object-fit: cover;
	object-position: center;
}
.fl-node-d82ic3kfq40v, .fl-node-d82ic3kfq40v .fl-photo {
	text-align: left;
}
.fl-node-d82ic3kfq40v .fl-photo-content, .fl-node-d82ic3kfq40v .fl-photo-img {
	width: 100%;
}
.fl-node-d82ic3kfq40v .fl-photo-img {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
@media(max-width: 1023px) {
	.fl-node-d82ic3kfq40v .fl-photo-content, .fl-node-d82ic3kfq40v .fl-photo-img {
		width: 100%;
	}
}
 .fl-node-d82ic3kfq40v > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content-58819 .fl-node-mwfkj7rapbyh img.fl-photo-img {
	object-fit: cover;
	object-position: center;
}
.fl-node-mwfkj7rapbyh, .fl-node-mwfkj7rapbyh .fl-photo {
	text-align: left;
}
.fl-node-mwfkj7rapbyh .fl-photo-content, .fl-node-mwfkj7rapbyh .fl-photo-img {
	width: 100%;
}
.fl-node-mwfkj7rapbyh .fl-photo-img {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
@media(max-width: 1023px) {
	.fl-node-mwfkj7rapbyh .fl-photo-content, .fl-node-mwfkj7rapbyh .fl-photo-img {
		width: 100%;
	}
}
 .fl-node-mwfkj7rapbyh > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-wotl0z82henb.fl-module-heading, .fl-node-wotl0z82henb.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 32px;
	line-height: 48px;
	text-align: center;
}
 .fl-node-wotl0z82henb.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:48px;
	margin-left:0px;
}
@media (max-width: 767px) { .fl-node-wotl0z82henb.fl-module-heading { margin-bottom:20px; } }.fl-node-fes5cmdgt17i.fl-module-heading, .fl-node-fes5cmdgt17i.fl-module-heading :where(a, q, p, span) {
	text-align: center;
}
 .fl-node-fes5cmdgt17i.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:40px;
	margin-left:0px;
}
@media (max-width: 767px) { .fl-node-fes5cmdgt17i.fl-module-heading { margin-bottom:20px; } }.fl-node-56o3jdq1hnlb.fl-module-heading, .fl-node-56o3jdq1hnlb.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 28px;
	line-height: 42px;
	text-align: center;
}
 .fl-node-56o3jdq1hnlb.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:12px;
	margin-left:0px;
}
.fl-node-6vmqdcgjkyfr.fl-module-heading, .fl-node-6vmqdcgjkyfr.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 32px;
	line-height: 48px;
	text-align: center;
}
 .fl-node-6vmqdcgjkyfr.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:48px;
	margin-left:0px;
}
@media (max-width: 767px) { .fl-node-6vmqdcgjkyfr.fl-module-heading { margin-bottom:20px; } }.fl-module-box:before,
.fl-module-box:after {
	position: absolute;
}
a.fl-module-box {
	text-decoration: none;
}

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

/* Ensure child modules size properly */
:where(.fl-module-box) { 
    min-width: 0;
}
.fl-builder-content-58819 .fl-node-wlmbera2pfio {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
 .fl-node-ha04jutbzvcd.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media (max-width: 767px) { .fl-node-ha04jutbzvcd.fl-module-heading { margin-bottom:20px; } }.fl-row .fl-col h4.fl-node-0dj6rkb8w4ye,
		.fl-row .fl-col h4.fl-node-0dj6rkb8w4ye a,
		h4.fl-node-0dj6rkb8w4ye,
		h4.fl-node-0dj6rkb8w4ye a {
	color: #061137;
}
.fl-node-0dj6rkb8w4ye.fl-module-heading, .fl-node-0dj6rkb8w4ye.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 30px;
}
 .fl-node-0dj6rkb8w4ye.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media (max-width: 767px) { .fl-node-0dj6rkb8w4ye.fl-module-heading { margin-bottom:20px; } }.fl-row .fl-col h4.fl-node-z0km374vdia1,
		.fl-row .fl-col h4.fl-node-z0km374vdia1 a,
		h4.fl-node-z0km374vdia1,
		h4.fl-node-z0km374vdia1 a {
	color: #061137;
}
.fl-node-z0km374vdia1.fl-module-heading, .fl-node-z0km374vdia1.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
}
 .fl-node-z0km374vdia1.fl-module-heading {
	margin-top:0px;
	margin-right:100px;
	margin-bottom:24px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-z0km374vdia1.fl-module-heading.fl-module {
	margin-right:0px;
}
}
@media (max-width: 767px) { .fl-node-z0km374vdia1.fl-module-heading { margin-bottom:20px; } }.fl-node-9suji1envr6h.fl-module-heading, .fl-node-9suji1envr6h.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
}
 .fl-node-9suji1envr6h.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-9suji1envr6h.fl-module-heading.fl-module {
	margin-right:0px;
}
}
@media (max-width: 767px) { .fl-node-9suji1envr6h.fl-module-heading { margin-bottom:20px; } }.fl-row .fl-col h4.fl-node-z703trcben61,
		.fl-row .fl-col h4.fl-node-z703trcben61 a,
		h4.fl-node-z703trcben61,
		h4.fl-node-z703trcben61 a {
	color: #061137;
}
.fl-node-z703trcben61.fl-module-heading, .fl-node-z703trcben61.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
}
 .fl-node-z703trcben61.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-z703trcben61.fl-module-heading.fl-module {
	margin-right:0px;
}
}
@media (max-width: 767px) { .fl-node-z703trcben61.fl-module-heading { margin-bottom:20px; } }.fl-builder-content-58819 .fl-node-9ox02za7fpqh img.fl-photo-img {
	object-fit: cover;
	object-position: center;
}
.fl-node-9ox02za7fpqh, .fl-node-9ox02za7fpqh .fl-photo {
	text-align: left;
}
.fl-node-9ox02za7fpqh .fl-photo-content, .fl-node-9ox02za7fpqh .fl-photo-img {
	width: 100%;
}
.fl-node-9ox02za7fpqh .fl-photo-img {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
@media(max-width: 1023px) {
	.fl-node-9ox02za7fpqh .fl-photo-content, .fl-node-9ox02za7fpqh .fl-photo-img {
		width: 100%;
	}
}
 .fl-node-9ox02za7fpqh > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content-58819 .fl-node-x0evwpb6rm1a img.fl-photo-img {
	object-fit: cover;
	object-position: center;
}
.fl-node-x0evwpb6rm1a, .fl-node-x0evwpb6rm1a .fl-photo {
	text-align: left;
}
.fl-node-x0evwpb6rm1a .fl-photo-content, .fl-node-x0evwpb6rm1a .fl-photo-img {
	width: 100%;
}
.fl-node-x0evwpb6rm1a .fl-photo-img {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
@media(max-width: 1023px) {
	.fl-node-x0evwpb6rm1a .fl-photo-content, .fl-node-x0evwpb6rm1a .fl-photo-img {
		width: 100%;
	}
}
 .fl-node-x0evwpb6rm1a > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content-58819 .fl-node-oiqecz85klsv img.fl-photo-img {
	object-fit: cover;
	object-position: center;
}
.fl-node-oiqecz85klsv, .fl-node-oiqecz85klsv .fl-photo {
	text-align: left;
}
.fl-node-oiqecz85klsv .fl-photo-content, .fl-node-oiqecz85klsv .fl-photo-img {
	width: 100%;
}
.fl-node-oiqecz85klsv .fl-photo-img {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
@media(max-width: 1023px) {
	.fl-node-oiqecz85klsv .fl-photo-content, .fl-node-oiqecz85klsv .fl-photo-img {
		width: 100%;
	}
}
 .fl-node-oiqecz85klsv > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-node-ai7jsv3q4k2x.fl-module-heading, .fl-node-ai7jsv3q4k2x.fl-module-heading :where(a, q, p, span) {
	font-size: 24px;
}
 .fl-node-ai7jsv3q4k2x.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media (max-width: 767px) { .fl-node-ai7jsv3q4k2x.fl-module-heading { margin-bottom:20px; } }.fl-builder-content-58819 .fl-node-n1vdpuhmaz2w img.fl-photo-img {
	object-fit: cover;
	object-position: center;
}
.fl-node-n1vdpuhmaz2w, .fl-node-n1vdpuhmaz2w .fl-photo {
	text-align: left;
}
.fl-node-n1vdpuhmaz2w .fl-photo-content, .fl-node-n1vdpuhmaz2w .fl-photo-img {
	width: 100%;
}
.fl-node-n1vdpuhmaz2w .fl-photo-img {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
@media(max-width: 1023px) {
	.fl-node-n1vdpuhmaz2w .fl-photo-content, .fl-node-n1vdpuhmaz2w .fl-photo-img {
		width: 100%;
	}
}
 .fl-node-n1vdpuhmaz2w > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content-58819 .fl-node-ihpc53780oxj img.fl-photo-img {
	object-fit: cover;
	object-position: center;
}
.fl-node-ihpc53780oxj, .fl-node-ihpc53780oxj .fl-photo {
	text-align: left;
}
.fl-node-ihpc53780oxj .fl-photo-content, .fl-node-ihpc53780oxj .fl-photo-img {
	width: 100%;
}
.fl-node-ihpc53780oxj .fl-photo-img {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
@media(max-width: 1023px) {
	.fl-node-ihpc53780oxj .fl-photo-content, .fl-node-ihpc53780oxj .fl-photo-img {
		width: 100%;
	}
}
 .fl-node-ihpc53780oxj > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content-58819 .fl-node-6slmc7f9q3xw img.fl-photo-img {
	object-fit: cover;
	object-position: center;
}
.fl-node-6slmc7f9q3xw, .fl-node-6slmc7f9q3xw .fl-photo {
	text-align: left;
}
.fl-node-6slmc7f9q3xw .fl-photo-content, .fl-node-6slmc7f9q3xw .fl-photo-img {
	width: 100%;
}
.fl-node-6slmc7f9q3xw .fl-photo-img {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
@media(max-width: 1023px) {
	.fl-node-6slmc7f9q3xw .fl-photo-content, .fl-node-6slmc7f9q3xw .fl-photo-img {
		width: 100%;
	}
}
 .fl-node-6slmc7f9q3xw > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content-58819 .fl-node-01juqdlzgfw6 img.fl-photo-img {
	object-fit: cover;
	object-position: center;
}
.fl-node-01juqdlzgfw6, .fl-node-01juqdlzgfw6 .fl-photo {
	text-align: left;
}
.fl-node-01juqdlzgfw6 .fl-photo-content, .fl-node-01juqdlzgfw6 .fl-photo-img {
	width: 100%;
}
.fl-node-01juqdlzgfw6 .fl-photo-img {
	border-top-left-radius: 12px;
	border-top-right-radius: 12px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}
@media(max-width: 1023px) {
	.fl-node-01juqdlzgfw6 .fl-photo-content, .fl-node-01juqdlzgfw6 .fl-photo-img {
		width: 100%;
	}
}
 .fl-node-01juqdlzgfw6 > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
 .fl-node-owsehtzmq58b.fl-module-html {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col h4.fl-node-ay4j5rnt7gcp,
		.fl-row .fl-col h4.fl-node-ay4j5rnt7gcp a,
		h4.fl-node-ay4j5rnt7gcp,
		h4.fl-node-ay4j5rnt7gcp a {
	color: #061137;
}
.fl-node-ay4j5rnt7gcp.fl-module-heading, .fl-node-ay4j5rnt7gcp.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
}
 .fl-node-ay4j5rnt7gcp.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-ay4j5rnt7gcp.fl-module-heading.fl-module {
	margin-right:0px;
}
}
@media (max-width: 767px) { .fl-node-ay4j5rnt7gcp.fl-module-heading { margin-bottom:20px; } }.fl-node-60ptn5fw1ri8.fl-module-heading, .fl-node-60ptn5fw1ri8.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 28px;
	line-height: 36px;
	text-align: center;
}
 .fl-node-60ptn5fw1ri8.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:40px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-60ptn5fw1ri8.fl-module-heading.fl-module {
	margin-right:0px;
}
}
@media (max-width: 767px) { .fl-node-60ptn5fw1ri8.fl-module-heading { margin-bottom:20px; } }.fl-row .fl-col h4.fl-node-s09h34ipdwya,
		.fl-row .fl-col h4.fl-node-s09h34ipdwya a,
		h4.fl-node-s09h34ipdwya,
		h4.fl-node-s09h34ipdwya a {
	color: #061137;
}
.fl-node-s09h34ipdwya.fl-module-heading, .fl-node-s09h34ipdwya.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
}
 .fl-node-s09h34ipdwya.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-s09h34ipdwya.fl-module-heading.fl-module {
	margin-right:0px;
}
}
@media (max-width: 767px) { .fl-node-s09h34ipdwya.fl-module-heading { margin-bottom:20px; } }.fl-row .fl-col h4.fl-node-l6capogjw7hu,
		.fl-row .fl-col h4.fl-node-l6capogjw7hu a,
		h4.fl-node-l6capogjw7hu,
		h4.fl-node-l6capogjw7hu a {
	color: #061137;
}
.fl-node-l6capogjw7hu.fl-module-heading, .fl-node-l6capogjw7hu.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
}
 .fl-node-l6capogjw7hu.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-l6capogjw7hu.fl-module-heading.fl-module {
	margin-right:0px;
}
}
@media (max-width: 767px) { .fl-node-l6capogjw7hu.fl-module-heading { margin-bottom:20px; } }.fl-builder-content .fl-rich-text strong {
	font-weight: bold;
}

/**
 * Remove bottom margins from the last paragraph
 * in v2+ text editor modules.
 */
.fl-module.fl-rich-text p:last-child {
	margin-bottom: 0;
}
/* Handle overlays in the builder */
.fl-builder-edit .fl-module.fl-rich-text p:not(:has(~ *:not(.fl-block-overlay))) {
	margin-bottom: 0;
}
.fl-builder-content .fl-node-jtbkuqvzin3g.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-jtbkuqvzin3g.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-jtbkuqvzin3g.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-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-ag3bh18sw06o .pp-faq-item:not(:last-child) {
			margin-bottom: 10px;
	}

.fl-node-ag3bh18sw06o .pp-faq-item .pp-faq-button {
	}
.fl-node-ag3bh18sw06o .pp-faq-item .pp-faq-button .pp-faq-button-label {
		color: #495057;
	}
.fl-node-ag3bh18sw06o .pp-faq-item .pp-faq-button:hover,
.fl-node-ag3bh18sw06o .pp-faq-item.pp-faq-item-active .pp-faq-button {
	}
.fl-node-ag3bh18sw06o .pp-faq-item .pp-faq-button:hover .pp-faq-button-label,
.fl-node-ag3bh18sw06o .pp-faq-item.pp-faq-item-active .pp-faq-button .pp-faq-button-label {
	}

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


.fl-node-ag3bh18sw06o .pp-faq-item .pp-faq-content {
	background-color: ;
	color: ;
		border-bottom-left-radius: px;
	border-bottom-right-radius: px;
	}


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

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

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

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

	.fl-node-ag3bh18sw06o .pp-faq-item .pp-faq-button-icon,
	.fl-node-ag3bh18sw06o .pp-faq-item .pp-faq-button-icon:before {
		font-size: px;
	}
	.fl-node-ag3bh18sw06o .pp-faq-item:not(:last-child) {
					margin-bottom: px;
			}
}
.fl-node-ag3bh18sw06o .pp-faq-item .pp-faq-button {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.fl-node-ag3bh18sw06o .pp-faq-item {
	border-style: solid;
	border-width: 0;
	background-clip: border-box;
	border-color: #8FA0D7;
	border-bottom-width: 2px;
}
.fl-node-ag3bh18sw06o .pp-faq-item .pp-faq-content {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
}
 .fl-node-ag3bh18sw06o > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content-58819 .fl-node-e29h1bztowmd {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-template-rows: repeat(1,1fr);
	flex-direction: row;
	grid-auto-flow: row;
	row-gap: 40px;
	column-gap: 40px;
}
:where( .fl-builder-content-58819 .fl-node-e29h1bztowmd > :not( .fl-block-overlay, .fl-drop-target ) ) {
	padding-top: 16px;
	padding-right: 16px;
	padding-bottom: 16px;
	padding-left: 16px;
	background-color: #fff;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.12);
}
@media(max-width: 1023px) {
	.fl-builder-content-58819 .fl-node-e29h1bztowmd {
		grid-template-columns:  repeat(2,1fr);
	}
}
@media(max-width: 767px) {
	.fl-builder-content-58819 .fl-node-e29h1bztowmd {
		grid-template-columns:  repeat(1,1fr);
	}
}
.fl-node-grmhufpyxkot.fl-module-heading, .fl-node-grmhufpyxkot.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}
 .fl-node-grmhufpyxkot.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:8px;
	margin-left:0px;
}
 .fl-node-ku7nmer4l365.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content .fl-node-puq3l187w5ck.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-puq3l187w5ck.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-puq3l187w5ck.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media (max-width: 767px) { .fl-node-puq3l187w5ck.fl-module-rich-text { margin-bottom:20px; } }.fl-builder-content .fl-node-57jlrb04dhac.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-57jlrb04dhac.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-57jlrb04dhac.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media (max-width: 767px) { .fl-node-57jlrb04dhac.fl-module-rich-text { margin-bottom:20px; } }.fl-builder-content .fl-node-mvy743kadofx.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-mvy743kadofx.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-mvy743kadofx.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content .fl-node-ze8wdmitcxav.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-ze8wdmitcxav.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-ze8wdmitcxav.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.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: 767px) { /**
 * 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-4g9njdwsoz7r .pp-heading-content .pp-heading-prefix {
	}

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

div.fl-node-4g9njdwsoz7r .pp-heading-content .pp-heading {
		}

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


div.fl-node-4g9njdwsoz7r .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgba(0, 0, 0, 1);
								}
div.fl-node-4g9njdwsoz7r .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-4g9njdwsoz7r .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #495057;
					margin-left: 0px;
}
div.fl-node-4g9njdwsoz7r .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

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

/** Separators */


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


div.fl-node-4g9njdwsoz7r .pp-heading-content .pp-sub-heading,
div.fl-node-4g9njdwsoz7r .pp-heading-content .pp-sub-heading p {
		color: rgb(73, 80, 87);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

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

div.fl-node-84rybwx2aj5h .pp-heading-content .pp-heading-prefix {
	}

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

div.fl-node-84rybwx2aj5h .pp-heading-content .pp-heading {
		}

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


div.fl-node-84rybwx2aj5h .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgba(0, 0, 0, 1);
								}
div.fl-node-84rybwx2aj5h .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


div.fl-node-84rybwx2aj5h .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
		color: #495057;
					margin-left: 0px;
}
div.fl-node-84rybwx2aj5h .pp-heading-content .pp-heading .heading-title:hover span.pp-secondary-title {
		}


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

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

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

/** Separators */


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


div.fl-node-84rybwx2aj5h .pp-heading-content .pp-sub-heading,
div.fl-node-84rybwx2aj5h .pp-heading-content .pp-sub-heading p {
		color: rgb(73, 80, 87);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

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

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

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

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

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


div.fl-node-ju4bsyvldh98 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgba(0, 0, 0, 1);
								}
div.fl-node-ju4bsyvldh98 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


div.fl-node-ju4bsyvldh98 .pp-heading-content .pp-sub-heading,
div.fl-node-ju4bsyvldh98 .pp-heading-content .pp-sub-heading p {
		color: rgb(73, 80, 87);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

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

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

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

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

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


div.fl-node-rtga2dko7yz6 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgba(0, 0, 0, 1);
								}
div.fl-node-rtga2dko7yz6 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


div.fl-node-rtga2dko7yz6 .pp-heading-content .pp-sub-heading,
div.fl-node-rtga2dko7yz6 .pp-heading-content .pp-sub-heading p {
		color: rgb(73, 80, 87);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

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

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

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

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

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


div.fl-node-pfb9vycuwhqn .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgba(0, 0, 0, 1);
								}
div.fl-node-pfb9vycuwhqn .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


div.fl-node-pfb9vycuwhqn .pp-heading-content .pp-sub-heading,
div.fl-node-pfb9vycuwhqn .pp-heading-content .pp-sub-heading p {
		color: rgb(73, 80, 87);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

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

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

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

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

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


div.fl-node-jtioxn0kb1sg .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgba(0, 0, 0, 1);
								}
div.fl-node-jtioxn0kb1sg .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


div.fl-node-jtioxn0kb1sg .pp-heading-content .pp-sub-heading,
div.fl-node-jtioxn0kb1sg .pp-heading-content .pp-sub-heading p {
		color: rgb(73, 80, 87);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

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

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

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

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

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


div.fl-node-foh85w3d9pla .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgba(0, 0, 0, 1);
								}
div.fl-node-foh85w3d9pla .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


div.fl-node-foh85w3d9pla .pp-heading-content .pp-sub-heading,
div.fl-node-foh85w3d9pla .pp-heading-content .pp-sub-heading p {
		color: rgb(73, 80, 87);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

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

div.fl-node-0ro72fm94za3 .pp-heading-content .pp-heading-prefix {
	}

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

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

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


div.fl-node-0ro72fm94za3 .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgba(0, 0, 0, 1);
								}
div.fl-node-0ro72fm94za3 .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


div.fl-node-0ro72fm94za3 .pp-heading-content .pp-sub-heading,
div.fl-node-0ro72fm94za3 .pp-heading-content .pp-sub-heading p {
		color: rgb(73, 80, 87);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

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

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

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

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

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


div.fl-node-f79k3hs5t4zy .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgba(0, 0, 0, 1);
								}
div.fl-node-f79k3hs5t4zy .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


div.fl-node-f79k3hs5t4zy .pp-heading-content .pp-sub-heading,
div.fl-node-f79k3hs5t4zy .pp-heading-content .pp-sub-heading p {
		color: rgb(73, 80, 87);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 767px) {
	div.fl-node-f79k3hs5t4zy .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-f79k3hs5t4zy .pp-heading-content {
				text-align: ;
			}
	div.fl-node-f79k3hs5t4zy .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-f79k3hs5t4zy .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-f79k3hs5t4zy .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-weight: 400;
	font-size: 16px;
	line-height: 32px;
}
div.fl-node-f79k3hs5t4zy .pp-heading-content .pp-heading .heading-title {
	font-weight: 600;
	font-size: 18px;
}
div.fl-node-f79k3hs5t4zy div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-f79k3hs5t4zy div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-f79k3hs5t4zy div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-f79k3hs5t4zy div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-f79k3hs5t4zy .pp-heading-content .pp-sub-heading, div.fl-node-f79k3hs5t4zy .pp-heading-content .pp-sub-heading p {
	font-weight: 400;
	font-size: 16px;
	line-height: 32px;
}
div.fl-node-f79k3hs5t4zy .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-f79k3hs5t4zy .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-f79k3hs5t4zy > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:8px;
}
.fl-builder-content-58819 .fl-node-u8tfdrb1l0ai {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

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

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

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

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


div.fl-node-zghdunrfy6ws .pp-heading-content .pp-heading .heading-title span.pp-primary-title {
			color: rgba(0, 0, 0, 1);
								}
div.fl-node-zghdunrfy6ws .pp-heading-content .pp-heading .heading-title:hover span.pp-primary-title {
		}


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


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

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

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

/** Separators */


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


div.fl-node-zghdunrfy6ws .pp-heading-content .pp-sub-heading,
div.fl-node-zghdunrfy6ws .pp-heading-content .pp-sub-heading p {
		color: rgb(73, 80, 87);
	}

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

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

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

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

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

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

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

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

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


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

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

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


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

@media only screen and (max-width: 767px) {
	div.fl-node-zghdunrfy6ws .pp-heading-content .pp-heading-separator .pp-heading-separator-align,
	div.fl-node-zghdunrfy6ws .pp-heading-content {
				text-align: ;
			}
	div.fl-node-zghdunrfy6ws .pp-heading-content .pp-heading-separator .pp-separator-line {
														}
	div.fl-node-zghdunrfy6ws .pp-heading-content .pp-heading-prefix {
									}
	}
div.fl-node-zghdunrfy6ws .pp-heading-content .pp-heading .heading-title span.pp-secondary-title {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-weight: 400;
	font-size: 16px;
	line-height: 32px;
}
div.fl-node-zghdunrfy6ws .pp-heading-content .pp-heading .heading-title {
	font-weight: 600;
	font-size: 18px;
}
div.fl-node-zghdunrfy6ws div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-primary-title, div.fl-node-zghdunrfy6ws div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:last-of-type {
	padding-left: 20px;
}
div.fl-node-zghdunrfy6ws div.pp-heading-content .pp-heading.pp-separator-inline .heading-title span.pp-secondary-title, div.fl-node-zghdunrfy6ws div.pp-heading-content .pp-heading.pp-separator--inline > .pp-heading-separator:first-of-type {
	padding-right: 20px;
}
div.fl-node-zghdunrfy6ws .pp-heading-content .pp-sub-heading, div.fl-node-zghdunrfy6ws .pp-heading-content .pp-sub-heading p {
	font-weight: 400;
	font-size: 16px;
	line-height: 32px;
}
div.fl-node-zghdunrfy6ws .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-zghdunrfy6ws .pp-heading-content .pp-heading-separator.icon_only span {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
 .fl-node-zghdunrfy6ws > .fl-module-content {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:8px;
}
.fl-builder-content .fl-node-z5hwdpixmke9.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-z5hwdpixmke9.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	font-size: 20px;
	text-align: center;
}
 .fl-node-z5hwdpixmke9.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content .fl-node-1oewz6s03pld.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-1oewz6s03pld.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-1oewz6s03pld.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content .fl-node-yauh0fkijw1g.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-yauh0fkijw1g.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-yauh0fkijw1g.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-builder-content .fl-node-i2gtad0kxnwq.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-i2gtad0kxnwq.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-i2gtad0kxnwq.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-builder-content-58819 .fl-node-n1rfcd5o23ev {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-builder-content .fl-node-h5znmuyal39x.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-h5znmuyal39x.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-h5znmuyal39x.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-builder-content .fl-node-ryt2q1e5w7go.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-ryt2q1e5w7go.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-ryt2q1e5w7go.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content .fl-node-z3ifam9kbe8x.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-z3ifam9kbe8x.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-z3ifam9kbe8x.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
/**
 * Horizontal Layout
 */
.fl-button-group-layout-horizontal .fl-button-group-buttons,
.fl-button-group-layout-horizontal.fl-button-group-buttons {
    display: flex;
    flex-wrap: wrap;
}

.fl-button-group-layout-horizontal .fl-button-wrap {
    display: inline-block;
}

/**
 * Vertical Layout
 */
.fl-button-group-layout-vertical .fl-button-group-buttons,
.fl-button-group-layout-vertical.fl-button-group-buttons {
    display: block;
}

.fl-button-group-layout-vertical .fl-button-wrap {
    display: block;
}

.fl-node-t75q31rf2k6v.fl-button-group-layout-vertical.fl-button-group-buttons .fl-button:is(a, button),
.fl-node-t75q31rf2k6v.fl-button-group-layout-horizontal.fl-button-group-buttons .fl-button:is(a, button) {
	width: 100%;
}
.fl-node-t75q31rf2k6v.fl-button-group-layout-horizontal.fl-button-group-buttons {
		justify-content: center}




	#fl-button-group-button-t75q31rf2k6v-0 .fl-button:is(a, button) {
		
			}

	
	#fl-button-group-button-t75q31rf2k6v-1 .fl-button:is(a, button) {
		
			}

	
	#fl-button-group-button-t75q31rf2k6v-2 .fl-button:is(a, button) {
		
			}

	
	#fl-button-group-button-t75q31rf2k6v-3 .fl-button:is(a, button) {
		
			}

	
	#fl-button-group-button-t75q31rf2k6v-4 .fl-button:is(a, button) {
		
			}

	
	#fl-button-group-button-t75q31rf2k6v-5 .fl-button:is(a, button) {
		
			}

	
	#fl-button-group-button-t75q31rf2k6v-6 .fl-button:is(a, button) {
		
			}

	
	#fl-button-group-button-t75q31rf2k6v-7 .fl-button:is(a, button) {
		
			}

		.fl-builder-content .fl-node-t75q31rf2k6v .fl-button,
	.fl-builder-content .fl-node-t75q31rf2k6v .fl-button * {
		transition: none;
		-moz-transition: none;
		-webkit-transition: none;
		-o-transition: none;
	}
.fl-node-t75q31rf2k6v.fl-button-group-layout-vertical.fl-button-group-buttons .fl-button-group-button .fl-button-wrap {
	text-align: center;
}
.fl-node-t75q31rf2k6v.fl-button-group-layout-horizontal.fl-button-group-buttons {
	justify-content: center;
}
.fl-builder-content .fl-node-t75q31rf2k6v.fl-button-group.fl-button-group-buttons .fl-button-group-button {
	padding-top: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
}
.fl-builder-content .fl-node-t75q31rf2k6v.fl-button-group .fl-button:is(a, button), .fl-builder-content .fl-node-t75q31rf2k6v.fl-button-group a.fl-button:visited {
	font-size: 16px;
	line-height: 28px;
}
.fl-builder-content .fl-node-t75q31rf2k6v.fl-button-group.fl-button-group-buttons .fl-button-group-button .fl-button:is(a, button) {
	padding-top: 10px;
	padding-right: 16px;
	padding-bottom: 10px;
	padding-left: 16px;
}
#fl-button-group-button-t75q31rf2k6v-0 .fl-button:is(a, button) {
	padding-top: 10px;
	padding-right: 16px;
	padding-bottom: 10px;
	padding-left: 16px;
}
#fl-button-group-button-t75q31rf2k6v-1 .fl-button:is(a, button) {
	padding-top: 10px;
	padding-right: 16px;
	padding-bottom: 10px;
	padding-left: 16px;
}
#fl-button-group-button-t75q31rf2k6v-2 .fl-button:is(a, button) {
	padding-top: 10px;
	padding-right: 16px;
	padding-bottom: 10px;
	padding-left: 16px;
}
#fl-button-group-button-t75q31rf2k6v-3 .fl-button:is(a, button) {
	padding-top: 10px;
	padding-right: 16px;
	padding-bottom: 10px;
	padding-left: 16px;
}
#fl-button-group-button-t75q31rf2k6v-4 .fl-button:is(a, button) {
	padding-top: 10px;
	padding-right: 16px;
	padding-bottom: 10px;
	padding-left: 16px;
}
#fl-button-group-button-t75q31rf2k6v-5 .fl-button:is(a, button) {
	padding-top: 10px;
	padding-right: 16px;
	padding-bottom: 10px;
	padding-left: 16px;
}
#fl-button-group-button-t75q31rf2k6v-6 .fl-button:is(a, button) {
	padding-top: 10px;
	padding-right: 16px;
	padding-bottom: 10px;
	padding-left: 16px;
}
#fl-button-group-button-t75q31rf2k6v-7 .fl-button:is(a, button) {
	padding-top: 10px;
	padding-right: 16px;
	padding-bottom: 10px;
	padding-left: 16px;
}
@media(max-width: 767px) {
	.fl-builder-content .fl-node-t75q31rf2k6v.fl-button-group .fl-button:is(a, button), .fl-builder-content .fl-node-t75q31rf2k6v.fl-button-group a.fl-button:visited {
		text-align: left;
	}
}
 .fl-node-t75q31rf2k6v.fl-module-button-group {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-row .fl-col h4.fl-node-zm8bag37cv6j,
		.fl-row .fl-col h4.fl-node-zm8bag37cv6j a,
		h4.fl-node-zm8bag37cv6j,
		h4.fl-node-zm8bag37cv6j a {
	color: #061137;
}
.fl-node-zm8bag37cv6j.fl-module-heading, .fl-node-zm8bag37cv6j.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
}
 .fl-node-zm8bag37cv6j.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-zm8bag37cv6j.fl-module-heading.fl-module {
	margin-right:0px;
}
}
@media (max-width: 767px) { .fl-node-zm8bag37cv6j.fl-module-heading { margin-bottom:20px; } }.fl-row .fl-col h4.fl-node-hr8il5g4t6xz,
		.fl-row .fl-col h4.fl-node-hr8il5g4t6xz a,
		h4.fl-node-hr8il5g4t6xz,
		h4.fl-node-hr8il5g4t6xz a {
	color: #061137;
}
.fl-node-hr8il5g4t6xz.fl-module-heading, .fl-node-hr8il5g4t6xz.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
}
 .fl-node-hr8il5g4t6xz.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-hr8il5g4t6xz.fl-module-heading.fl-module {
	margin-right:0px;
}
}
@media (max-width: 767px) { .fl-node-hr8il5g4t6xz.fl-module-heading { margin-bottom:20px; } }.fl-node-mp5ol82xjc7k.fl-module-heading, .fl-node-mp5ol82xjc7k.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}
 .fl-node-mp5ol82xjc7k.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:8px;
	margin-left:0px;
}
.fl-builder-content .fl-node-qe0lms97acr8.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-qe0lms97acr8.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	text-align: center;
}
 .fl-node-qe0lms97acr8.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media (max-width: 767px) { .fl-node-qe0lms97acr8.fl-module-rich-text { margin-bottom:20px; } }.fl-builder-content-58819 .fl-node-3j1awfy6czbx {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-builder-content .fl-node-yefs6vlikobu.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-yefs6vlikobu.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-yefs6vlikobu.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-builder-content .fl-node-qdnf56r0hp49.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-qdnf56r0hp49.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-qdnf56r0hp49.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-builder-content .fl-node-tb5i1ur8l7xg.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-tb5i1ur8l7xg.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-tb5i1ur8l7xg.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-builder-content-58819 .fl-node-xldjna5sc8zo {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fl-row .fl-col h4.fl-node-85hktnp0lxaf,
		.fl-row .fl-col h4.fl-node-85hktnp0lxaf a,
		h4.fl-node-85hktnp0lxaf,
		h4.fl-node-85hktnp0lxaf a {
	color: #061137;
}
.fl-node-85hktnp0lxaf.fl-module-heading, .fl-node-85hktnp0lxaf.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
}
 .fl-node-85hktnp0lxaf.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-85hktnp0lxaf.fl-module-heading.fl-module {
	margin-right:0px;
}
}
@media (max-width: 767px) { .fl-node-85hktnp0lxaf.fl-module-heading { margin-bottom:20px; } }.fl-row .fl-col h4.fl-node-h0vczse4otb7,
		.fl-row .fl-col h4.fl-node-h0vczse4otb7 a,
		h4.fl-node-h0vczse4otb7,
		h4.fl-node-h0vczse4otb7 a {
	color: #061137;
}
.fl-node-h0vczse4otb7.fl-module-heading, .fl-node-h0vczse4otb7.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
}
 .fl-node-h0vczse4otb7.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-h0vczse4otb7.fl-module-heading.fl-module {
	margin-right:0px;
}
}
@media (max-width: 767px) { .fl-node-h0vczse4otb7.fl-module-heading { margin-bottom:20px; } }.fl-node-9f3t7sxekcmw.fl-module-heading, .fl-node-9f3t7sxekcmw.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}
 .fl-node-9f3t7sxekcmw.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:8px;
	margin-left:0px;
}
.fl-builder-content .fl-node-wi4vut72skl0.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-wi4vut72skl0.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-wi4vut72skl0.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-builder-content .fl-node-36doh0l15zat.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-36doh0l15zat.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-36doh0l15zat.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-builder-content .fl-node-gyxl0v39odqr.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-gyxl0v39odqr.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-gyxl0v39odqr.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:10px;
	margin-left:0px;
}
.fl-row .fl-col h4.fl-node-z5lqryfopmc9,
		.fl-row .fl-col h4.fl-node-z5lqryfopmc9 a,
		h4.fl-node-z5lqryfopmc9,
		h4.fl-node-z5lqryfopmc9 a {
	color: #061137;
}
.fl-node-z5lqryfopmc9.fl-module-heading, .fl-node-z5lqryfopmc9.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 24px;
	line-height: 36px;
}
 .fl-node-z5lqryfopmc9.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media ( max-width: 1200px ) {
 .fl-node-z5lqryfopmc9.fl-module-heading.fl-module {
	margin-right:0px;
}
}
@media (max-width: 767px) { .fl-node-z5lqryfopmc9.fl-module-heading { margin-bottom:20px; } }.fl-node-4may6xlejhk5.fl-module-heading, .fl-node-4may6xlejhk5.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}
 .fl-node-4may6xlejhk5.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:8px;
	margin-left:0px;
}
.fl-builder-content .fl-node-7nv5lgsw64zp.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-7nv5lgsw64zp.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-7nv5lgsw64zp.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}
.fl-builder-content .fl-node-tak72mgd4qhu.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-tak72mgd4qhu.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-tak72mgd4qhu.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media (max-width: 767px) { .fl-node-tak72mgd4qhu.fl-module-rich-text { margin-bottom:20px; } }.fl-node-2xznc0gsdlk5.fl-module-heading, .fl-node-2xznc0gsdlk5.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}
 .fl-node-2xznc0gsdlk5.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:8px;
	margin-left:0px;
}
.fl-builder-content .fl-node-vfjt9xis723r.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-vfjt9xis723r.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-vfjt9xis723r.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media (max-width: 767px) { .fl-node-vfjt9xis723r.fl-module-rich-text { margin-bottom:20px; } }.fl-node-p3cnxdsq1u4o.fl-module-heading, .fl-node-p3cnxdsq1u4o.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}
 .fl-node-p3cnxdsq1u4o.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:8px;
	margin-left:0px;
}
.fl-builder-content .fl-node-6tye4dhugxpl.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-6tye4dhugxpl.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-6tye4dhugxpl.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:24px;
	margin-left:0px;
}
@media (max-width: 767px) { .fl-node-6tye4dhugxpl.fl-module-rich-text { margin-bottom:20px; } }.fl-node-oenazjg0fm4d.fl-module-heading, .fl-node-oenazjg0fm4d.fl-module-heading :where(a, q, p, span) {
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
}
 .fl-node-oenazjg0fm4d.fl-module-heading {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:8px;
	margin-left:0px;
}
.fl-builder-content .fl-node-okwyfsxbp6vl.fl-module-rich-text.fl-rich-text, .fl-builder-content .fl-node-okwyfsxbp6vl.fl-module-rich-text.fl-rich-text *:not(b, strong) {
	line-height: 32px;
}
 .fl-node-okwyfsxbp6vl.fl-module-rich-text {
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
}

/* Start Global CSS */
.fl-builder-edit .sticky-footer
{
    position: unset !important;
}
/* End Global CSS */


/* Start Global Nodes CSS */
/*schedule a tour form css*/
.home-page-form #input_1_8, #input_1_9 {
	border: none !important;
}
.home-page-form .ginput_container.ginput_container_date {
	background: #fff !important;
	border: 1px solid #DEE2E6 !important;
	border-radius: 4px !important;
}
.home-page-form .ui-datepicker-trigger {
	padding-right: 8px !important;
}
.home-page-form p, .home-page-form h3{
  	margin-bottom: 0px !important;  
}
.home-page-form p{
    margin-bottom: 10px !important;
}
.home-page-form #input_1_6, .home-page-form #input_1_10 {
	border: none !important;
}
/* End Global Nodes CSS */


/* Start Layout CSS */
.summer-camp-information-section p {
	margin: 0;
}
/* End Layout CSS */

body:not(.fl-builder-edit) .fl-node-bgtk2rzdyicv{z-index:99; position:relative;}body:not(.fl-builder-edit) .fl-node-qk75h6ut8l01{z-index:99; position:relative;}body:not(.fl-builder-edit) .fl-node-431u7qevaymt{z-index:99; position:relative;}body:not(.fl-builder-edit) .fl-node-4uybxa275cpl{z-index:99; position:relative;}body:not(.fl-builder-edit) .fl-node-trihc8jx3de7{z-index:99; position:relative;}body:not(.fl-builder-edit) .fl-node-5jhiked9ur4z{z-index:99; position:relative;}body:not(.fl-builder-edit) .fl-node-r8h0zm6ecfnx{z-index:99; position:relative;}@media screen and (max-width: 767px) {
  .fl-node-43dg2fmuc0kl #small-sec {
    max-width: 500px !important;
    margin: 0 auto;
  }
}

                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
                                
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        .fl-builder-row-settings #fl-field-separator_position {
            display: none !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
		
        
        			.fl-node-lg20fuvmohs8 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-bgtk2rzdyicv .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-qk75h6ut8l01 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-431u7qevaymt .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-4uybxa275cpl .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-trihc8jx3de7 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-krpq5ydn697x .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-5jhiked9ur4z .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-poavz510wihd .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-43dg2fmuc0kl .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-20xpni3y4ocd .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-r8h0zm6ecfnx .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-tjuygz39dbc2 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-q7ovhy4bdfc3 .fl-row-content {
				min-width: 0px;
			}
		
        			.fl-node-9khei71mj3rp .fl-row-content {
				min-width: 0px;
			}
		